File tree Expand file tree Collapse file tree 8 files changed +89
-0
lines changed Expand file tree Collapse file tree 8 files changed +89
-0
lines changed Original file line number Diff line number Diff line change 126
126
# CDK experimental package
127
127
/src /cdk-experimental /* @ jelbourn
128
128
/src /cdk-experimental /column-resize /** @ kseamon @ andrewseguin
129
+ /src /cdk-experimental /combobox /** @ nielsr98 @ jelbourn
129
130
/src /cdk-experimental /dialog /** @ jelbourn @ crisbeto
130
131
/src /cdk-experimental /menu /** @ jelbourn @ andy9775
131
132
/src /cdk-experimental /popover-edit /** @ kseamon @ andrewseguin
Original file line number Diff line number Diff line change
1
+ load ("//tools:defaults.bzl" , "ng_module" )
2
+
3
+ package (default_visibility = ["//visibility:public" ])
4
+
5
+ ng_module (
6
+ name = "combobox" ,
7
+ srcs = glob (
8
+ ["**/*.ts" ],
9
+ exclude = ["**/*.spec.ts" ],
10
+ ),
11
+ module_name = "@angular/cdk-experimental/combobox" ,
12
+ )
Original file line number Diff line number Diff line change
1
+ /**
2
+ * @license
3
+ * Copyright Google LLC All Rights Reserved.
4
+ *
5
+ * Use of this source code is governed by an MIT-style license that can be
6
+ * found in the LICENSE file at https://angular.io/license
7
+ */
8
+
9
+ import { NgModule } from '@angular/core' ;
10
+ import { CdkCombobox } from './combobox' ;
11
+ import { CdkComboboxPanel } from './combobox-panel' ;
12
+
13
+ const EXPORTED_DECLARATIONS = [ CdkCombobox , CdkComboboxPanel ] ;
14
+ @NgModule ( {
15
+ exports : EXPORTED_DECLARATIONS ,
16
+ declarations : EXPORTED_DECLARATIONS ,
17
+ } )
18
+ export class CdkComboboxModule { }
Original file line number Diff line number Diff line change
1
+ /**
2
+ * @license
3
+ * Copyright Google LLC All Rights Reserved.
4
+ *
5
+ * Use of this source code is governed by an MIT-style license that can be
6
+ * found in the LICENSE file at https://angular.io/license
7
+ */
8
+
9
+ import { Directive } from '@angular/core' ;
10
+
11
+ @Directive ( {
12
+ selector : 'ng-template[cdkComboboxPanel]' ,
13
+ exportAs : 'cdkComboboxPanel' ,
14
+ } )
15
+ export class CdkComboboxPanel < T = unknown > {
16
+
17
+ }
Original file line number Diff line number Diff line change
1
+ /**
2
+ * @license
3
+ * Copyright Google LLC All Rights Reserved.
4
+ *
5
+ * Use of this source code is governed by an MIT-style license that can be
6
+ * found in the LICENSE file at https://angular.io/license
7
+ */
8
+
9
+ import { Directive } from '@angular/core' ;
10
+
11
+ @Directive ( {
12
+ selector : '[cdkCombobox]' ,
13
+ exportAs : 'cdkCombobox' ,
14
+ host : {
15
+ 'role' : 'combobox'
16
+ }
17
+ } )
18
+ export class CdkCombobox < T = unknown > {
19
+
20
+ }
Original file line number Diff line number Diff line change
1
+ /**
2
+ * @license
3
+ * Copyright Google LLC All Rights Reserved.
4
+ *
5
+ * Use of this source code is governed by an MIT-style license that can be
6
+ * found in the LICENSE file at https://angular.io/license
7
+ */
8
+
9
+ export * from './public-api' ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * @license
3
+ * Copyright Google LLC All Rights Reserved.
4
+ *
5
+ * Use of this source code is governed by an MIT-style license that can be
6
+ * found in the LICENSE file at https://angular.io/license
7
+ */
8
+
9
+ export * from './combobox' ;
10
+ export * from './combobox-panel' ;
11
+ export * from './combobox-module' ;
Original file line number Diff line number Diff line change 1
1
# List of all entry-points of the Angular cdk-experimental package.
2
2
CDK_EXPERIMENTAL_ENTRYPOINTS = [
3
3
"column-resize" ,
4
+ "combobox" ,
4
5
"dialog" ,
5
6
"menu" ,
6
7
"listbox" ,
You can’t perform that action at this time.
0 commit comments