@syncfusion/ej2-angular-dropdowns 26.2.13-ngcc → 27.1.48-ngcc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@syncfusion/ej2-angular-dropdowns.es5.js +10 -5
- package/@syncfusion/ej2-angular-dropdowns.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-dropdowns.js +10 -5
- package/@syncfusion/ej2-angular-dropdowns.js.map +1 -1
- package/dist/ej2-angular-dropdowns.umd.js +11 -6
- package/dist/ej2-angular-dropdowns.umd.js.map +1 -1
- package/dist/ej2-angular-dropdowns.umd.min.js +2 -2
- package/dist/ej2-angular-dropdowns.umd.min.js.map +1 -1
- package/ej2-angular-dropdowns.metadata.json +1 -1
- package/package.json +9 -9
- package/schematics/collection.json +10 -9
- package/schematics/ng-add/index.d.ts +3 -0
- package/schematics/ng-add/index.js +9 -0
- package/schematics/ng-add/index.ts +10 -10
- package/schematics/ng-add/schema.d.ts +13 -0
- package/schematics/ng-add/schema.js +2 -0
- package/schematics/ng-add/schema.json +34 -34
- package/schematics/ng-add/schema.ts +30 -30
- package/schematics/tsconfig.json +25 -25
- package/schematics/utils/lib-details.d.ts +4 -0
- package/schematics/utils/lib-details.js +6 -0
- package/schematics/utils/lib-details.ts +2 -2
- package/src/drop-down-tree/dropdowntree.component.d.ts +10 -0
- package/styles/auto-complete/bootstrap5.3.css +1 -0
- package/styles/auto-complete/bootstrap5.3.scss +1 -0
- package/styles/bootstrap-dark-lite.css +1 -0
- package/styles/bootstrap-dark-lite.scss +1 -0
- package/styles/bootstrap-lite.css +1 -0
- package/styles/bootstrap-lite.scss +1 -0
- package/styles/bootstrap4-lite.css +1 -0
- package/styles/bootstrap4-lite.scss +1 -0
- package/styles/bootstrap5-dark-lite.css +1 -0
- package/styles/bootstrap5-dark-lite.scss +1 -0
- package/styles/bootstrap5-lite.css +1 -0
- package/styles/bootstrap5-lite.scss +1 -0
- package/styles/bootstrap5.3-lite.css +1 -0
- package/styles/bootstrap5.3-lite.scss +1 -0
- package/styles/bootstrap5.3.css +1 -0
- package/styles/bootstrap5.3.scss +8 -0
- package/styles/combo-box/bootstrap5.3.css +1 -0
- package/styles/combo-box/bootstrap5.3.scss +1 -0
- package/styles/drop-down-base/bootstrap5.3.css +1 -0
- package/styles/drop-down-base/bootstrap5.3.scss +1 -0
- package/styles/drop-down-list/bootstrap5.3.css +1 -0
- package/styles/drop-down-list/bootstrap5.3.scss +1 -0
- package/styles/drop-down-tree/bootstrap5.3.css +1 -0
- package/styles/drop-down-tree/bootstrap5.3.scss +1 -0
- package/styles/fabric-dark-lite.css +1 -0
- package/styles/fabric-dark-lite.scss +1 -0
- package/styles/fabric-lite.css +1 -0
- package/styles/fabric-lite.scss +1 -0
- package/styles/fluent-dark-lite.css +1 -0
- package/styles/fluent-dark-lite.scss +1 -0
- package/styles/fluent-lite.css +1 -0
- package/styles/fluent-lite.scss +1 -0
- package/styles/fluent2-lite.css +1 -0
- package/styles/fluent2-lite.scss +1 -0
- package/styles/highcontrast-light-lite.css +1 -0
- package/styles/highcontrast-light-lite.scss +1 -0
- package/styles/highcontrast-lite.css +1 -0
- package/styles/highcontrast-lite.scss +1 -0
- package/styles/list-box/bootstrap5.3.css +1 -0
- package/styles/list-box/bootstrap5.3.scss +1 -0
- package/styles/material-dark-lite.css +1 -0
- package/styles/material-dark-lite.scss +1 -0
- package/styles/material-lite.css +1 -0
- package/styles/material-lite.scss +1 -0
- package/styles/material3-dark-lite.css +1 -0
- package/styles/material3-dark-lite.scss +1 -0
- package/styles/material3-lite.css +1 -0
- package/styles/material3-lite.scss +1 -0
- package/styles/mention/bootstrap5.3.css +1 -0
- package/styles/mention/bootstrap5.3.scss +1 -0
- package/styles/multi-select/bootstrap5.3.css +1 -0
- package/styles/multi-select/bootstrap5.3.scss +1 -0
- package/styles/tailwind-dark-lite.css +1 -0
- package/styles/tailwind-dark-lite.scss +1 -0
- package/styles/tailwind-lite.css +1 -0
- package/styles/tailwind-lite.scss +1 -0
package/schematics/tsconfig.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"lib": ["es2017", "dom"],
|
|
4
|
-
"module": "commonjs",
|
|
5
|
-
"moduleResolution": "node",
|
|
6
|
-
"noEmitOnError": false,
|
|
7
|
-
"skipDefaultLibCheck": true,
|
|
8
|
-
"skipLibCheck": true,
|
|
9
|
-
"sourceMap": true,
|
|
10
|
-
"target": "es6",
|
|
11
|
-
"declaration": true,
|
|
12
|
-
"types": [
|
|
13
|
-
"jasmine",
|
|
14
|
-
"node"
|
|
15
|
-
]
|
|
16
|
-
},
|
|
17
|
-
"exclude": [
|
|
18
|
-
"node_modules",
|
|
19
|
-
"src",
|
|
20
|
-
"src/**/*.ts",
|
|
21
|
-
"spec",
|
|
22
|
-
"spec/**/*.ts",
|
|
23
|
-
"@typings"
|
|
24
|
-
]
|
|
25
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"lib": ["es2017", "dom"],
|
|
4
|
+
"module": "commonjs",
|
|
5
|
+
"moduleResolution": "node",
|
|
6
|
+
"noEmitOnError": false,
|
|
7
|
+
"skipDefaultLibCheck": true,
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
"sourceMap": true,
|
|
10
|
+
"target": "es6",
|
|
11
|
+
"declaration": true,
|
|
12
|
+
"types": [
|
|
13
|
+
"jasmine",
|
|
14
|
+
"node"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"exclude": [
|
|
18
|
+
"node_modules",
|
|
19
|
+
"src",
|
|
20
|
+
"src/**/*.ts",
|
|
21
|
+
"spec",
|
|
22
|
+
"spec/**/*.ts",
|
|
23
|
+
"@typings"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const pkgName = "@syncfusion/ej2-angular-dropdowns";
|
|
2
|
+
export declare const pkgVer = "^18.66.23";
|
|
3
|
+
export declare const moduleName = "DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule";
|
|
4
|
+
export declare const themeVer = "~18.66.23";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.pkgName = '@syncfusion/ej2-angular-dropdowns';
|
|
4
|
+
exports.pkgVer = '^27.1.48';
|
|
5
|
+
exports.moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
|
|
6
|
+
exports.themeVer = '~27.1.48';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-dropdowns';
|
|
2
|
-
export const pkgVer = '^
|
|
2
|
+
export const pkgVer = '^27.1.48';
|
|
3
3
|
export const moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
|
|
4
|
-
export const themeVer = '~
|
|
4
|
+
export const themeVer = '~27.1.48';
|
|
@@ -53,6 +53,16 @@ export declare class DropDownTreeComponent extends DropDownTree implements IComp
|
|
|
53
53
|
* @asptype string
|
|
54
54
|
*/
|
|
55
55
|
headerTemplate: any;
|
|
56
|
+
/**
|
|
57
|
+
* Specifies the way to customize the selected values in the Dropdown Tree component based on application needs. If the **valueTemplate** property is set, the template content overrides the displayed item text.
|
|
58
|
+
* The property accepts [template string] (https://ej2.syncfusion.com/documentation/common/template-engine/) or HTML element ID holding the content. The context for the valueTemplate comes from the data object passed to it.
|
|
59
|
+
* @default null
|
|
60
|
+
* @angulartype string | object
|
|
61
|
+
* @reacttype string | function | JSX.Element
|
|
62
|
+
* @vuetype string | function
|
|
63
|
+
* @asptype string
|
|
64
|
+
*/
|
|
65
|
+
valueTemplate: any;
|
|
56
66
|
/**
|
|
57
67
|
* Specifies a template to render customized content for all the items.
|
|
58
68
|
* If the **itemTemplate** property is set, the template content overrides the displayed item text.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/auto-complete/bootstrap5.3.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/auto-complete/bootstrap5.3.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/bootstrap-dark-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/bootstrap-dark-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/bootstrap-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/bootstrap-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/bootstrap4-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/bootstrap4-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/bootstrap5-dark-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/bootstrap5-dark-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/bootstrap5-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/bootstrap5-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/bootstrap5.3-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/bootstrap5.3-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/bootstrap5.3.css';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
@import 'drop-down-base/bootstrap5.3.scss';
|
|
2
|
+
@import 'drop-down-list/bootstrap5.3.scss';
|
|
3
|
+
@import 'drop-down-tree/bootstrap5.3.scss';
|
|
4
|
+
@import 'combo-box/bootstrap5.3.scss';
|
|
5
|
+
@import 'auto-complete/bootstrap5.3.scss';
|
|
6
|
+
@import 'multi-select/bootstrap5.3.scss';
|
|
7
|
+
@import 'list-box/bootstrap5.3.scss';
|
|
8
|
+
@import 'mention/bootstrap5.3.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/combo-box/bootstrap5.3.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/combo-box/bootstrap5.3.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/drop-down-base/bootstrap5.3.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/drop-down-base/bootstrap5.3.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/drop-down-list/bootstrap5.3.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5.3.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/drop-down-tree/bootstrap5.3.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/drop-down-tree/bootstrap5.3.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/fabric-dark-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/fabric-dark-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/fabric-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/fabric-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/fluent-dark-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/fluent-dark-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/fluent-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/fluent-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/fluent2-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/fluent2-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/highcontrast-light-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/highcontrast-light-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/highcontrast-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/highcontrast-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/list-box/bootstrap5.3.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/list-box/bootstrap5.3.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/material-dark-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/material-dark-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/material-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/material-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/material3-dark-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/material3-dark-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/material3-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/material3-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/mention/bootstrap5.3.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/mention/bootstrap5.3.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/multi-select/bootstrap5.3.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap5.3.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/tailwind-dark-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/tailwind-dark-lite.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@syncfusion/ej2-dropdowns/styles/tailwind-lite.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-dropdowns/styles/tailwind-lite.scss';
|