@progress/kendo-angular-dropdowns 17.0.0-develop.9 → 17.0.0
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/README.md +40 -99
- package/autocomplete/autocomplete.component.d.ts +1 -1
- package/autocomplete/autocomplete.module.d.ts +1 -1
- package/comboboxes/combobox-column/combobox-column.component.d.ts +1 -1
- package/comboboxes/combobox.component.d.ts +1 -1
- package/comboboxes/combobox.module.d.ts +1 -1
- package/common/action-sheet.component.d.ts +1 -1
- package/common/disabled-items/item-disabled.d.ts +1 -1
- package/common/filter-input.directive.d.ts +1 -1
- package/common/filtering/filter.directive.d.ts +1 -1
- package/common/list.component.d.ts +1 -1
- package/common/localization/messages.d.ts +1 -1
- package/common/models/direction.d.ts +1 -1
- package/common/models/fillmode.d.ts +1 -1
- package/common/models/list-type.d.ts +1 -1
- package/common/models/rounded.d.ts +1 -1
- package/common/models/size.d.ts +1 -1
- package/common/searchbar.component.d.ts +1 -1
- package/common/selection/selectable.directive.d.ts +1 -1
- package/common/shared-events.directive.d.ts +1 -1
- package/common/taglist.component.d.ts +2 -2
- package/common/util.d.ts +2 -2
- package/dropdownlist/dropdownlist.component.d.ts +1 -1
- package/dropdowns.module.d.ts +1 -1
- package/dropdowntrees/checked-state/base-check.directive.d.ts +1 -1
- package/dropdowntrees/checked-state/check-all.directive.d.ts +1 -1
- package/dropdowntrees/checked-state/check.directive.d.ts +1 -1
- package/dropdowntrees/data-binding/dropdowntree/flat-binding.directive.d.ts +1 -1
- package/dropdowntrees/data-binding/dropdowntree/hierarchy-binding.directive.d.ts +1 -1
- package/dropdowntrees/data-binding/multiselecttree/flat-binding.directive.d.ts +1 -1
- package/dropdowntrees/data-binding/multiselecttree/hierarchy-binding.directive.d.ts +1 -1
- package/dropdowntrees/dropdowntree.component.d.ts +1 -1
- package/dropdowntrees/expanded-state/expand.directive.d.ts +1 -1
- package/dropdowntrees/multiselecttree.component.d.ts +1 -1
- package/dropdowntrees/summary-tag/summary-tag.directive.d.ts +1 -1
- package/{esm2020 → esm2022}/autocomplete/autocomplete.component.mjs +235 -173
- package/{esm2020 → esm2022}/autocomplete/autocomplete.module.mjs +11 -11
- package/{esm2020 → esm2022}/comboboxes/combobox-column/column-cell-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/comboboxes/combobox-column/column-header-template.directive.mjs +4 -3
- package/esm2022/comboboxes/combobox-column/combobox-column.component.mjs +105 -0
- package/{esm2020 → esm2022}/comboboxes/combobox.component.mjs +326 -248
- package/{esm2020 → esm2022}/comboboxes/combobox.module.mjs +11 -11
- package/{esm2020 → esm2022}/comboboxes/multicolumncombobox.component.mjs +53 -48
- package/{esm2020 → esm2022}/common/action-sheet.component.mjs +26 -14
- package/{esm2020 → esm2022}/common/data.service.mjs +8 -7
- package/{esm2020 → esm2022}/common/disabled-items/disabled-items.service.mjs +6 -4
- package/{esm2020 → esm2022}/common/filter-input.directive.mjs +6 -3
- package/{esm2020 → esm2022}/common/filtering/filter.directive.mjs +20 -13
- package/{esm2020 → esm2022}/common/filtering/filterable-component.mjs +21 -0
- package/{esm2020 → esm2022}/common/list-item.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/list.component.mjs +72 -36
- package/{esm2020 → esm2022}/common/localization/custom-messages.component.mjs +9 -8
- package/{esm2020 → esm2022}/common/localization/localized-messages.directive.mjs +9 -8
- package/esm2022/common/localization/messages.mjs +65 -0
- package/{esm2020 → esm2022}/common/models/preventable-event.mjs +1 -3
- package/{esm2020 → esm2022}/common/models/remove-tag-event.mjs +4 -0
- package/{esm2020 → esm2022}/common/navigation/navigation.service.mjs +27 -23
- package/{esm2020 → esm2022}/common/searchbar.component.mjs +45 -28
- package/{esm2020 → esm2022}/common/selection/selectable.directive.mjs +9 -5
- package/{esm2020 → esm2022}/common/selection/selection.service.mjs +13 -10
- package/{esm2020 → esm2022}/common/shared-events.directive.mjs +13 -7
- package/{esm2020 → esm2022}/common/taglist.component.mjs +36 -27
- package/{esm2020 → esm2022}/common/templates/custom-item-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/fixed-group-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/footer-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/group-tag-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/group-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/header-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/item-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/no-data-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/tag-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/common/templates/value-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/dropdownlist/dropdownlist.component.mjs +259 -184
- package/{esm2020 → esm2022}/dropdownlist/dropdownlist.module.mjs +8 -8
- package/esm2022/dropdowns.module.mjs +87 -0
- package/{esm2020 → esm2022}/dropdowntrees/checked-state/base-check.directive.mjs +10 -3
- package/{esm2020 → esm2022}/dropdowntrees/checked-state/check-all.directive.mjs +38 -21
- package/{esm2020 → esm2022}/dropdowntrees/checked-state/check.directive.mjs +31 -15
- package/{esm2020 → esm2022}/dropdowntrees/data-binding/dropdowntree/flat-binding.directive.mjs +12 -7
- package/{esm2020 → esm2022}/dropdowntrees/data-binding/dropdowntree/hierarchy-binding.directive.mjs +8 -7
- package/{esm2020 → esm2022}/dropdowntrees/data-binding/multiselecttree/flat-binding.directive.mjs +12 -7
- package/{esm2020 → esm2022}/dropdowntrees/data-binding/multiselecttree/hierarchy-binding.directive.mjs +8 -7
- package/{esm2020 → esm2022}/dropdowntrees/dropdowntree.component.mjs +309 -232
- package/{esm2020 → esm2022}/dropdowntrees/dropdowntrees.module.mjs +12 -12
- package/{esm2020 → esm2022}/dropdowntrees/expanded-state/expand.directive.mjs +8 -7
- package/{esm2020 → esm2022}/dropdowntrees/lookup/lookup.service.mjs +4 -6
- package/{esm2020 → esm2022}/dropdowntrees/multiselecttree.component.mjs +324 -254
- package/{esm2020 → esm2022}/dropdowntrees/summary-tag/summary-tag.directive.mjs +8 -7
- package/{esm2020 → esm2022}/dropdowntrees/templates/node-template.directive.mjs +4 -3
- package/{esm2020 → esm2022}/index.mjs +0 -2
- package/{esm2020 → esm2022}/multiselect/multiselect.component.mjs +328 -254
- package/{esm2020 → esm2022}/multiselect/multiselect.module.mjs +11 -11
- package/{esm2020 → esm2022}/multiselect/summary-tag.directive.mjs +8 -7
- package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
- package/{fesm2020 → fesm2022}/progress-kendo-angular-dropdowns.mjs +2528 -1927
- package/index.d.ts +0 -2
- package/multiselect/multiselect.component.d.ts +1 -1
- package/multiselect/multiselect.module.d.ts +1 -1
- package/multiselect/summary-tag.directive.d.ts +1 -1
- package/package.json +18 -24
- package/schematics/ngAdd/index.js +3 -3
- package/common/shared-directives.module.d.ts +0 -37
- package/common/shared.module.d.ts +0 -29
- package/esm2020/comboboxes/combobox-column/combobox-column.component.mjs +0 -60
- package/esm2020/common/localization/messages.mjs +0 -33
- package/esm2020/common/shared-directives.module.mjs +0 -84
- package/esm2020/common/shared.module.mjs +0 -68
- package/esm2020/dropdowns.module.mjs +0 -87
- package/fesm2015/progress-kendo-angular-dropdowns.mjs +0 -17609
- /package/{esm2020 → esm2022}/comboboxes/combobox-column/util.mjs +0 -0
- /package/{esm2020 → esm2022}/common/constants/error-messages.mjs +0 -0
- /package/{esm2020 → esm2022}/common/disabled-items/item-disabled.mjs +0 -0
- /package/{esm2020 → esm2022}/common/filtering/filter-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/checkboxes-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/direction.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/fillmode.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/list-type.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/page-change-event.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/popup-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/rounded.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/size.mjs +0 -0
- /package/{esm2020 → esm2022}/common/models/virtualization-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/common/navigation/navigation-action.mjs +0 -0
- /package/{esm2020 → esm2022}/common/util.mjs +0 -0
- /package/{esm2020 → esm2022}/directives.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdowntrees/checked-state/checkable-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdowntrees/checked-state/checked-item.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdowntrees/lookup/lookup.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-kendo-angular-dropdowns.mjs +0 -0
package/index.d.ts
CHANGED
|
@@ -48,11 +48,9 @@ export { CustomMessagesComponent } from './common/localization/custom-messages.c
|
|
|
48
48
|
export { FilterInputDirective } from './common/filter-input.directive';
|
|
49
49
|
export { DropDownsModule } from './dropdowns.module';
|
|
50
50
|
export { MultiSelectModule } from './multiselect/multiselect.module';
|
|
51
|
-
export { SharedModule } from './common/shared.module';
|
|
52
51
|
export { AutoCompleteModule } from './autocomplete/autocomplete.module';
|
|
53
52
|
export { ComboBoxModule } from './comboboxes/combobox.module';
|
|
54
53
|
export { DropDownListModule } from './dropdownlist/dropdownlist.module';
|
|
55
|
-
export { SharedDirectivesModule } from './common/shared-directives.module';
|
|
56
54
|
export { ListComponent } from './common/list.component';
|
|
57
55
|
export { ResponsiveRendererComponent } from './common/action-sheet.component';
|
|
58
56
|
export { PopupSettings } from './common/models/popup-settings';
|
|
@@ -699,5 +699,5 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
699
699
|
private closeActionSheet;
|
|
700
700
|
private openActionSheet;
|
|
701
701
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
|
702
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "kendo-multiselect", ["kendoMultiSelect"], { "showStickyHeader": "showStickyHeader"; "focusableId": "focusableId"; "autoClose": "autoClose"; "loading": "loading"; "data": "data"; "value": "value"; "valueField": "valueField"; "textField": "textField"; "tabindex": "tabindex"; "tabIndex": "tabIndex"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "placeholder": "placeholder"; "adaptiveMode": "adaptiveMode"; "title": "title"; "subtitle": "subtitle"; "disabled": "disabled"; "itemDisabled": "itemDisabled"; "checkboxes": "checkboxes"; "readonly": "readonly"; "filterable": "filterable"; "virtual": "virtual"; "popupSettings": "popupSettings"; "listHeight": "listHeight"; "valuePrimitive": "valuePrimitive"; "clearButton": "clearButton"; "tagMapper": "tagMapper"; "allowCustom": "allowCustom"; "valueNormalizer": "valueNormalizer"; "inputAttributes": "inputAttributes"; }, { "filterChange": "filterChange"; "valueChange": "valueChange"; "open": "open"; "opened": "opened"; "close": "close"; "closed": "closed"; "onFocus": "focus"; "onBlur": "blur"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "removeTag": "removeTag"; }, ["template", "customItemTemplate", "groupTemplate", "fixedGroupTemplate", "headerTemplate", "footerTemplate", "tagTemplate", "groupTagTemplate", "noDataTemplate", "suffixTemplate", "prefixTemplate"], never, true, never>;
|
|
702
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "kendo-multiselect", ["kendoMultiSelect"], { "showStickyHeader": { "alias": "showStickyHeader"; "required": false; }; "focusableId": { "alias": "focusableId"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "data": { "alias": "data"; "required": false; }; "value": { "alias": "value"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "itemDisabled": { "alias": "itemDisabled"; "required": false; }; "checkboxes": { "alias": "checkboxes"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "virtual": { "alias": "virtual"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "listHeight": { "alias": "listHeight"; "required": false; }; "valuePrimitive": { "alias": "valuePrimitive"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "tagMapper": { "alias": "tagMapper"; "required": false; }; "allowCustom": { "alias": "allowCustom"; "required": false; }; "valueNormalizer": { "alias": "valueNormalizer"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; }, { "filterChange": "filterChange"; "valueChange": "valueChange"; "open": "open"; "opened": "opened"; "close": "close"; "closed": "closed"; "onFocus": "focus"; "onBlur": "blur"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "removeTag": "removeTag"; }, ["template", "customItemTemplate", "groupTemplate", "fixedGroupTemplate", "headerTemplate", "footerTemplate", "tagTemplate", "groupTagTemplate", "noDataTemplate", "suffixTemplate", "prefixTemplate"], never, true, never>;
|
|
703
703
|
}
|
|
@@ -41,6 +41,6 @@ import * as i14 from "@progress/kendo-angular-common";
|
|
|
41
41
|
*/
|
|
42
42
|
export declare class MultiSelectModule {
|
|
43
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectModule, never>;
|
|
44
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MultiSelectModule, never, [typeof i1.MultiSelectComponent, typeof i2.SummaryTagDirective, typeof i3.CustomItemTemplateDirective, typeof i4.FixedGroupTemplateDirective, typeof i5.FooterTemplateDirective, typeof i6.GroupTemplateDirective, typeof i7.GroupTagTemplateDirective, typeof i8.TagTemplateDirective, typeof i9.HeaderTemplateDirective, typeof i10.ItemTemplateDirective, typeof i11.NoDataTemplateDirective, typeof i12.FilterDirective, typeof i13.CustomMessagesComponent, typeof i14.SuffixTemplateDirective, typeof i14.PrefixTemplateDirective, typeof i14.SeparatorComponent], [typeof i1.MultiSelectComponent, typeof i2.SummaryTagDirective, typeof i3.CustomItemTemplateDirective, typeof i4.FixedGroupTemplateDirective, typeof i5.FooterTemplateDirective, typeof i6.GroupTemplateDirective, typeof i7.GroupTagTemplateDirective, typeof i8.TagTemplateDirective, typeof i9.HeaderTemplateDirective, typeof i10.ItemTemplateDirective, typeof i11.NoDataTemplateDirective, typeof i12.FilterDirective, typeof i13.CustomMessagesComponent, typeof i14.SuffixTemplateDirective, typeof i14.PrefixTemplateDirective, typeof i14.SeparatorComponent, typeof i14.
|
|
44
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MultiSelectModule, never, [typeof i1.MultiSelectComponent, typeof i2.SummaryTagDirective, typeof i3.CustomItemTemplateDirective, typeof i4.FixedGroupTemplateDirective, typeof i5.FooterTemplateDirective, typeof i6.GroupTemplateDirective, typeof i7.GroupTagTemplateDirective, typeof i8.TagTemplateDirective, typeof i9.HeaderTemplateDirective, typeof i10.ItemTemplateDirective, typeof i11.NoDataTemplateDirective, typeof i12.FilterDirective, typeof i13.CustomMessagesComponent, typeof i14.SuffixTemplateDirective, typeof i14.PrefixTemplateDirective, typeof i14.SeparatorComponent, typeof i14.PrefixTemplateDirective, typeof i14.SuffixTemplateDirective, typeof i14.SeparatorComponent], [typeof i1.MultiSelectComponent, typeof i2.SummaryTagDirective, typeof i3.CustomItemTemplateDirective, typeof i4.FixedGroupTemplateDirective, typeof i5.FooterTemplateDirective, typeof i6.GroupTemplateDirective, typeof i7.GroupTagTemplateDirective, typeof i8.TagTemplateDirective, typeof i9.HeaderTemplateDirective, typeof i10.ItemTemplateDirective, typeof i11.NoDataTemplateDirective, typeof i12.FilterDirective, typeof i13.CustomMessagesComponent, typeof i14.SuffixTemplateDirective, typeof i14.PrefixTemplateDirective, typeof i14.SeparatorComponent, typeof i14.PrefixTemplateDirective, typeof i14.SuffixTemplateDirective, typeof i14.SeparatorComponent]>;
|
|
45
45
|
static ɵinj: i0.ɵɵInjectorDeclaration<MultiSelectModule>;
|
|
46
46
|
}
|
|
@@ -30,5 +30,5 @@ export declare class SummaryTagDirective implements OnChanges {
|
|
|
30
30
|
ngOnChanges(changes: any): void;
|
|
31
31
|
private createTagMapper;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<SummaryTagDirective, never>;
|
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SummaryTagDirective, "[kendoMultiSelectSummaryTag]", never, { "showAfter": "kendoMultiSelectSummaryTag"; }, {}, never, never, true, never>;
|
|
33
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SummaryTagDirective, "[kendoMultiSelectSummaryTag]", never, { "showAfter": { "alias": "kendoMultiSelectSummaryTag"; "required": false; }; }, {}, never, never, true, never>;
|
|
34
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "17.0.0
|
|
3
|
+
"version": "17.0.0",
|
|
4
4
|
"description": "A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree ",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -19,31 +19,27 @@
|
|
|
19
19
|
"friendlyName": "Dropdowns"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@angular/animations": "
|
|
23
|
-
"@angular/common": "
|
|
24
|
-
"@angular/core": "
|
|
25
|
-
"@angular/forms": "
|
|
26
|
-
"@angular/platform-browser": "
|
|
22
|
+
"@angular/animations": "16 - 18",
|
|
23
|
+
"@angular/common": "16 - 18",
|
|
24
|
+
"@angular/core": "16 - 18",
|
|
25
|
+
"@angular/forms": "16 - 18",
|
|
26
|
+
"@angular/platform-browser": "16 - 18",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-common": "17.0.0
|
|
29
|
-
"@progress/kendo-angular-l10n": "17.0.0
|
|
30
|
-
"@progress/kendo-angular-navigation": "17.0.0
|
|
31
|
-
"@progress/kendo-angular-popup": "17.0.0
|
|
32
|
-
"@progress/kendo-angular-icons": "17.0.0
|
|
33
|
-
"@progress/kendo-angular-treeview": "17.0.0
|
|
28
|
+
"@progress/kendo-angular-common": "17.0.0",
|
|
29
|
+
"@progress/kendo-angular-l10n": "17.0.0",
|
|
30
|
+
"@progress/kendo-angular-navigation": "17.0.0",
|
|
31
|
+
"@progress/kendo-angular-popup": "17.0.0",
|
|
32
|
+
"@progress/kendo-angular-icons": "17.0.0",
|
|
33
|
+
"@progress/kendo-angular-treeview": "17.0.0",
|
|
34
34
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"tslib": "^2.3.1",
|
|
38
|
-
"@progress/kendo-angular-schematics": "17.0.0
|
|
39
|
-
"@progress/kendo-common": "^0.
|
|
38
|
+
"@progress/kendo-angular-schematics": "17.0.0",
|
|
39
|
+
"@progress/kendo-common": "^1.0.1"
|
|
40
40
|
},
|
|
41
41
|
"schematics": "./schematics/collection.json",
|
|
42
|
-
"module": "
|
|
43
|
-
"es2020": "fesm2020/progress-kendo-angular-dropdowns.mjs",
|
|
44
|
-
"esm2020": "esm2020/progress-kendo-angular-dropdowns.mjs",
|
|
45
|
-
"fesm2020": "fesm2020/progress-kendo-angular-dropdowns.mjs",
|
|
46
|
-
"fesm2015": "fesm2015/progress-kendo-angular-dropdowns.mjs",
|
|
42
|
+
"module": "fesm2022/progress-kendo-angular-dropdowns.mjs",
|
|
47
43
|
"typings": "index.d.ts",
|
|
48
44
|
"exports": {
|
|
49
45
|
"./package.json": {
|
|
@@ -51,11 +47,9 @@
|
|
|
51
47
|
},
|
|
52
48
|
".": {
|
|
53
49
|
"types": "./index.d.ts",
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"node": "./fesm2015/progress-kendo-angular-dropdowns.mjs",
|
|
58
|
-
"default": "./fesm2020/progress-kendo-angular-dropdowns.mjs"
|
|
50
|
+
"esm2022": "./esm2022/progress-kendo-angular-dropdowns.mjs",
|
|
51
|
+
"esm": "./esm2022/progress-kendo-angular-dropdowns.mjs",
|
|
52
|
+
"default": "./fesm2022/progress-kendo-angular-dropdowns.mjs"
|
|
59
53
|
}
|
|
60
54
|
},
|
|
61
55
|
"sideEffects": false
|
|
@@ -4,12 +4,12 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
|
|
6
6
|
// peers of the treeview
|
|
7
|
-
'@progress/kendo-angular-inputs': '17.0.0
|
|
7
|
+
'@progress/kendo-angular-inputs': '17.0.0',
|
|
8
8
|
// peers of inputs
|
|
9
|
-
'@progress/kendo-angular-intl': '17.0.0
|
|
9
|
+
'@progress/kendo-angular-intl': '17.0.0',
|
|
10
10
|
'@progress/kendo-drawing': '^1.17.2',
|
|
11
11
|
// Peer dependency of icons
|
|
12
|
-
'@progress/kendo-svg-icons': '^
|
|
12
|
+
'@progress/kendo-svg-icons': '^4.0.0'
|
|
13
13
|
} });
|
|
14
14
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
15
15
|
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./templates/header-template.directive";
|
|
7
|
-
import * as i2 from "./templates/footer-template.directive";
|
|
8
|
-
import * as i3 from "./templates/item-template.directive";
|
|
9
|
-
import * as i4 from "./templates/group-template.directive";
|
|
10
|
-
import * as i5 from "./templates/fixed-group-template.directive";
|
|
11
|
-
import * as i6 from "./templates/no-data-template.directive";
|
|
12
|
-
import * as i7 from "./templates/value-template.directive";
|
|
13
|
-
import * as i8 from "./templates/tag-template.directive";
|
|
14
|
-
import * as i9 from "./templates/group-tag-template.directive";
|
|
15
|
-
import * as i10 from "./localization/localized-messages.directive";
|
|
16
|
-
import * as i11 from "./localization/custom-messages.component";
|
|
17
|
-
import * as i12 from "./filtering/filter.directive";
|
|
18
|
-
import * as i13 from "./filter-input.directive";
|
|
19
|
-
/**
|
|
20
|
-
* @hidden
|
|
21
|
-
*
|
|
22
|
-
* The exported package module.
|
|
23
|
-
*
|
|
24
|
-
* The package exports:
|
|
25
|
-
* - `ItemTemplateDirective`—The item template directive.
|
|
26
|
-
* - `ValueTemplateDirective`—The value template directive.
|
|
27
|
-
* - `HeaderTemplateDirective`—The header template directive.
|
|
28
|
-
* - `FooterTemplateDirective`—The footer template directive.
|
|
29
|
-
* - `NoDataTemplateDirective`—The noData template directive.
|
|
30
|
-
* - `TagTemplateDirective`—The tag template directive.
|
|
31
|
-
* - `SummaryTagTemplateDirective`—The summary tag template directive.
|
|
32
|
-
*/
|
|
33
|
-
export declare class SharedDirectivesModule {
|
|
34
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SharedDirectivesModule, never>;
|
|
35
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedDirectivesModule, never, [typeof i1.HeaderTemplateDirective, typeof i2.FooterTemplateDirective, typeof i3.ItemTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.FixedGroupTemplateDirective, typeof i6.NoDataTemplateDirective, typeof i7.ValueTemplateDirective, typeof i8.TagTemplateDirective, typeof i9.GroupTagTemplateDirective, typeof i10.LocalizedMessagesDirective, typeof i11.CustomMessagesComponent, typeof i12.FilterDirective, typeof i13.FilterInputDirective], [typeof i1.HeaderTemplateDirective, typeof i2.FooterTemplateDirective, typeof i3.ItemTemplateDirective, typeof i4.GroupTemplateDirective, typeof i5.FixedGroupTemplateDirective, typeof i6.NoDataTemplateDirective, typeof i7.ValueTemplateDirective, typeof i8.TagTemplateDirective, typeof i9.GroupTagTemplateDirective, typeof i10.LocalizedMessagesDirective, typeof i11.CustomMessagesComponent, typeof i12.FilterDirective, typeof i13.FilterInputDirective]>;
|
|
36
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SharedDirectivesModule>;
|
|
37
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./list.component";
|
|
7
|
-
import * as i2 from "./list-item.directive";
|
|
8
|
-
import * as i3 from "./selection/selectable.directive";
|
|
9
|
-
import * as i4 from "./searchbar.component";
|
|
10
|
-
import * as i5 from "@progress/kendo-angular-common";
|
|
11
|
-
import * as i6 from "./taglist.component";
|
|
12
|
-
import * as i7 from "../dropdowntrees/checked-state/check.directive";
|
|
13
|
-
import * as i8 from "../dropdowntrees/checked-state/check-all.directive";
|
|
14
|
-
import * as i9 from "./action-sheet.component";
|
|
15
|
-
import * as i10 from "@angular/forms";
|
|
16
|
-
import * as i11 from "@progress/kendo-angular-popup";
|
|
17
|
-
import * as i12 from "./shared-directives.module";
|
|
18
|
-
import * as i13 from "@progress/kendo-angular-icons";
|
|
19
|
-
import * as i14 from "@progress/kendo-angular-navigation";
|
|
20
|
-
import * as i15 from "@progress/kendo-angular-buttons";
|
|
21
|
-
import * as i16 from "@progress/kendo-angular-inputs";
|
|
22
|
-
/**
|
|
23
|
-
* @hidden
|
|
24
|
-
*/
|
|
25
|
-
export declare class SharedModule {
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
|
27
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof i1.ListComponent, typeof i2.ListItemDirective, typeof i3.SelectableDirective, typeof i4.SearchBarComponent, typeof i5.TemplateContextDirective, typeof i6.TagListComponent, typeof i7.CheckDirective, typeof i8.CheckAllDirective, typeof i9.ResponsiveRendererComponent, typeof i10.FormsModule, typeof i10.ReactiveFormsModule, typeof i11.PopupModule, typeof i5.ResizeSensorModule, typeof i12.SharedDirectivesModule, typeof i5.EventsModule, typeof i13.IconsModule, typeof i14.ActionSheetModule, typeof i15.ButtonModule, typeof i16.TextBoxModule], [typeof i1.ListComponent, typeof i2.ListItemDirective, typeof i3.SelectableDirective, typeof i4.SearchBarComponent, typeof i5.TemplateContextDirective, typeof i6.TagListComponent, typeof i7.CheckDirective, typeof i8.CheckAllDirective, typeof i9.ResponsiveRendererComponent, typeof i10.FormsModule, typeof i10.ReactiveFormsModule, typeof i11.PopupModule, typeof i5.ResizeSensorModule, typeof i12.SharedDirectivesModule, typeof i5.EventsModule, typeof i13.IconsModule, typeof i14.ActionSheetModule, typeof i15.ButtonModule, typeof i16.TextBoxModule]>;
|
|
28
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
|
29
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Component, ContentChild, Input } from '@angular/core';
|
|
6
|
-
import { ColumnCellTemplateDirective } from './column-cell-template.directive';
|
|
7
|
-
import { ColumnHeaderTemplateDirective } from './column-header-template.directive';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
/**
|
|
10
|
-
* Represents the column definition of the [MultiColumnComboBox]({% slug overview_multicolumncombobox %})
|
|
11
|
-
* ([see example]({% slug columns_multicolumncombobox %})).
|
|
12
|
-
*/
|
|
13
|
-
export class ComboBoxColumnComponent {
|
|
14
|
-
constructor() {
|
|
15
|
-
/**
|
|
16
|
-
* Sets the visibility of the column.
|
|
17
|
-
*
|
|
18
|
-
* @default false
|
|
19
|
-
*/
|
|
20
|
-
this.hidden = false;
|
|
21
|
-
/**
|
|
22
|
-
* @hidden
|
|
23
|
-
*/
|
|
24
|
-
this.matchesMedia = true;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
ComboBoxColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ComboBoxColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
28
|
-
ComboBoxColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ComboBoxColumnComponent, isStandalone: true, selector: "kendo-combobox-column", inputs: { field: "field", title: "title", width: "width", hidden: "hidden", style: "style", headerStyle: "headerStyle", class: "class", headerClass: "headerClass", media: "media" }, queries: [{ propertyName: "cellTemplate", first: true, predicate: ColumnCellTemplateDirective, descendants: true }, { propertyName: "headerTemplate", first: true, predicate: ColumnHeaderTemplateDirective, descendants: true }], ngImport: i0, template: '', isInline: true });
|
|
29
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ComboBoxColumnComponent, decorators: [{
|
|
30
|
-
type: Component,
|
|
31
|
-
args: [{
|
|
32
|
-
selector: 'kendo-combobox-column',
|
|
33
|
-
template: '',
|
|
34
|
-
standalone: true
|
|
35
|
-
}]
|
|
36
|
-
}], propDecorators: { cellTemplate: [{
|
|
37
|
-
type: ContentChild,
|
|
38
|
-
args: [ColumnCellTemplateDirective, { static: false }]
|
|
39
|
-
}], headerTemplate: [{
|
|
40
|
-
type: ContentChild,
|
|
41
|
-
args: [ColumnHeaderTemplateDirective, { static: false }]
|
|
42
|
-
}], field: [{
|
|
43
|
-
type: Input
|
|
44
|
-
}], title: [{
|
|
45
|
-
type: Input
|
|
46
|
-
}], width: [{
|
|
47
|
-
type: Input
|
|
48
|
-
}], hidden: [{
|
|
49
|
-
type: Input
|
|
50
|
-
}], style: [{
|
|
51
|
-
type: Input
|
|
52
|
-
}], headerStyle: [{
|
|
53
|
-
type: Input
|
|
54
|
-
}], class: [{
|
|
55
|
-
type: Input
|
|
56
|
-
}], headerClass: [{
|
|
57
|
-
type: Input
|
|
58
|
-
}], media: [{
|
|
59
|
-
type: Input
|
|
60
|
-
}] } });
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { Directive, Input } from '@angular/core';
|
|
6
|
-
import { ComponentMessages } from '@progress/kendo-angular-l10n';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
/**
|
|
9
|
-
* @hidden
|
|
10
|
-
*/
|
|
11
|
-
export class Messages extends ComponentMessages {
|
|
12
|
-
}
|
|
13
|
-
Messages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
14
|
-
Messages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: Messages, inputs: { noDataText: "noDataText", clearTitle: "clearTitle", checkAllText: "checkAllText", selectButtonText: "selectButtonText", filterInputLabel: "filterInputLabel", popupLabel: "popupLabel", applyButton: "applyButton", cancelButton: "cancelButton" }, usesInheritance: true, ngImport: i0 });
|
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: Messages, decorators: [{
|
|
16
|
-
type: Directive
|
|
17
|
-
}], propDecorators: { noDataText: [{
|
|
18
|
-
type: Input
|
|
19
|
-
}], clearTitle: [{
|
|
20
|
-
type: Input
|
|
21
|
-
}], checkAllText: [{
|
|
22
|
-
type: Input
|
|
23
|
-
}], selectButtonText: [{
|
|
24
|
-
type: Input
|
|
25
|
-
}], filterInputLabel: [{
|
|
26
|
-
type: Input
|
|
27
|
-
}], popupLabel: [{
|
|
28
|
-
type: Input
|
|
29
|
-
}], applyButton: [{
|
|
30
|
-
type: Input
|
|
31
|
-
}], cancelButton: [{
|
|
32
|
-
type: Input
|
|
33
|
-
}] } });
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgModule } from '@angular/core';
|
|
6
|
-
import { ItemTemplateDirective } from './templates/item-template.directive';
|
|
7
|
-
import { GroupTemplateDirective } from './templates/group-template.directive';
|
|
8
|
-
import { FixedGroupTemplateDirective } from './templates/fixed-group-template.directive';
|
|
9
|
-
import { HeaderTemplateDirective } from './templates/header-template.directive';
|
|
10
|
-
import { FooterTemplateDirective } from './templates/footer-template.directive';
|
|
11
|
-
import { NoDataTemplateDirective } from './templates/no-data-template.directive';
|
|
12
|
-
import { ValueTemplateDirective } from './templates/value-template.directive';
|
|
13
|
-
import { TagTemplateDirective } from './templates/tag-template.directive';
|
|
14
|
-
import { GroupTagTemplateDirective } from './templates/group-tag-template.directive';
|
|
15
|
-
import { LocalizedMessagesDirective } from './localization/localized-messages.directive';
|
|
16
|
-
import { CustomMessagesComponent } from './localization/custom-messages.component';
|
|
17
|
-
import { FilterDirective } from './filtering/filter.directive';
|
|
18
|
-
import { FilterInputDirective } from './filter-input.directive';
|
|
19
|
-
import * as i0 from "@angular/core";
|
|
20
|
-
const SHARED_DIRECTIVES = [
|
|
21
|
-
HeaderTemplateDirective,
|
|
22
|
-
FooterTemplateDirective,
|
|
23
|
-
ItemTemplateDirective,
|
|
24
|
-
GroupTemplateDirective,
|
|
25
|
-
FixedGroupTemplateDirective,
|
|
26
|
-
NoDataTemplateDirective,
|
|
27
|
-
ValueTemplateDirective,
|
|
28
|
-
TagTemplateDirective,
|
|
29
|
-
GroupTagTemplateDirective,
|
|
30
|
-
LocalizedMessagesDirective,
|
|
31
|
-
CustomMessagesComponent,
|
|
32
|
-
FilterDirective,
|
|
33
|
-
FilterInputDirective
|
|
34
|
-
];
|
|
35
|
-
/**
|
|
36
|
-
* @hidden
|
|
37
|
-
*
|
|
38
|
-
* The exported package module.
|
|
39
|
-
*
|
|
40
|
-
* The package exports:
|
|
41
|
-
* - `ItemTemplateDirective`—The item template directive.
|
|
42
|
-
* - `ValueTemplateDirective`—The value template directive.
|
|
43
|
-
* - `HeaderTemplateDirective`—The header template directive.
|
|
44
|
-
* - `FooterTemplateDirective`—The footer template directive.
|
|
45
|
-
* - `NoDataTemplateDirective`—The noData template directive.
|
|
46
|
-
* - `TagTemplateDirective`—The tag template directive.
|
|
47
|
-
* - `SummaryTagTemplateDirective`—The summary tag template directive.
|
|
48
|
-
*/
|
|
49
|
-
export class SharedDirectivesModule {
|
|
50
|
-
}
|
|
51
|
-
SharedDirectivesModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedDirectivesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
52
|
-
SharedDirectivesModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedDirectivesModule, imports: [HeaderTemplateDirective,
|
|
53
|
-
FooterTemplateDirective,
|
|
54
|
-
ItemTemplateDirective,
|
|
55
|
-
GroupTemplateDirective,
|
|
56
|
-
FixedGroupTemplateDirective,
|
|
57
|
-
NoDataTemplateDirective,
|
|
58
|
-
ValueTemplateDirective,
|
|
59
|
-
TagTemplateDirective,
|
|
60
|
-
GroupTagTemplateDirective,
|
|
61
|
-
LocalizedMessagesDirective,
|
|
62
|
-
CustomMessagesComponent,
|
|
63
|
-
FilterDirective,
|
|
64
|
-
FilterInputDirective], exports: [HeaderTemplateDirective,
|
|
65
|
-
FooterTemplateDirective,
|
|
66
|
-
ItemTemplateDirective,
|
|
67
|
-
GroupTemplateDirective,
|
|
68
|
-
FixedGroupTemplateDirective,
|
|
69
|
-
NoDataTemplateDirective,
|
|
70
|
-
ValueTemplateDirective,
|
|
71
|
-
TagTemplateDirective,
|
|
72
|
-
GroupTagTemplateDirective,
|
|
73
|
-
LocalizedMessagesDirective,
|
|
74
|
-
CustomMessagesComponent,
|
|
75
|
-
FilterDirective,
|
|
76
|
-
FilterInputDirective] });
|
|
77
|
-
SharedDirectivesModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedDirectivesModule, imports: [CustomMessagesComponent] });
|
|
78
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedDirectivesModule, decorators: [{
|
|
79
|
-
type: NgModule,
|
|
80
|
-
args: [{
|
|
81
|
-
imports: [SHARED_DIRECTIVES],
|
|
82
|
-
exports: [SHARED_DIRECTIVES]
|
|
83
|
-
}]
|
|
84
|
-
}] });
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgModule } from '@angular/core';
|
|
6
|
-
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
7
|
-
import { ListComponent } from './list.component';
|
|
8
|
-
import { SearchBarComponent } from './searchbar.component';
|
|
9
|
-
import { TagListComponent } from './taglist.component';
|
|
10
|
-
import { PopupModule, PopupService } from '@progress/kendo-angular-popup';
|
|
11
|
-
import { ResizeSensorModule, EventsModule, TemplateContextDirective, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
12
|
-
import { SharedDirectivesModule } from './shared-directives.module';
|
|
13
|
-
import { ListItemDirective } from './list-item.directive';
|
|
14
|
-
import { SelectableDirective } from './selection/selectable.directive';
|
|
15
|
-
import { CheckDirective } from '../dropdowntrees/checked-state/check.directive';
|
|
16
|
-
import { CheckAllDirective } from '../dropdowntrees/checked-state/check-all.directive';
|
|
17
|
-
import { IconsModule, IconsService } from '@progress/kendo-angular-icons';
|
|
18
|
-
import { ActionSheetModule } from '@progress/kendo-angular-navigation';
|
|
19
|
-
import { ButtonModule } from '@progress/kendo-angular-buttons';
|
|
20
|
-
import { TextBoxModule } from '@progress/kendo-angular-inputs';
|
|
21
|
-
import { ResponsiveRendererComponent } from './action-sheet.component';
|
|
22
|
-
import * as i0 from "@angular/core";
|
|
23
|
-
const INTERNAL_DIRECTIVES = [
|
|
24
|
-
ListComponent,
|
|
25
|
-
ListItemDirective,
|
|
26
|
-
SelectableDirective,
|
|
27
|
-
SearchBarComponent,
|
|
28
|
-
TemplateContextDirective,
|
|
29
|
-
TagListComponent,
|
|
30
|
-
CheckDirective,
|
|
31
|
-
CheckAllDirective,
|
|
32
|
-
ResponsiveRendererComponent
|
|
33
|
-
];
|
|
34
|
-
/**
|
|
35
|
-
* @hidden
|
|
36
|
-
*/
|
|
37
|
-
export class SharedModule {
|
|
38
|
-
}
|
|
39
|
-
SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
40
|
-
SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, imports: [ListComponent,
|
|
41
|
-
ListItemDirective,
|
|
42
|
-
SelectableDirective,
|
|
43
|
-
SearchBarComponent,
|
|
44
|
-
TemplateContextDirective,
|
|
45
|
-
TagListComponent,
|
|
46
|
-
CheckDirective,
|
|
47
|
-
CheckAllDirective,
|
|
48
|
-
ResponsiveRendererComponent, FormsModule, ReactiveFormsModule, PopupModule, ResizeSensorModule, SharedDirectivesModule, EventsModule, IconsModule, ActionSheetModule, ButtonModule, TextBoxModule], exports: [ListComponent,
|
|
49
|
-
ListItemDirective,
|
|
50
|
-
SelectableDirective,
|
|
51
|
-
SearchBarComponent,
|
|
52
|
-
TemplateContextDirective,
|
|
53
|
-
TagListComponent,
|
|
54
|
-
CheckDirective,
|
|
55
|
-
CheckAllDirective,
|
|
56
|
-
ResponsiveRendererComponent, FormsModule, ReactiveFormsModule, PopupModule, ResizeSensorModule, SharedDirectivesModule, EventsModule, IconsModule, ActionSheetModule, ButtonModule, TextBoxModule] });
|
|
57
|
-
SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, providers: [IconsService, PopupService, ResizeBatchService], imports: [ListComponent,
|
|
58
|
-
SearchBarComponent,
|
|
59
|
-
TagListComponent,
|
|
60
|
-
ResponsiveRendererComponent, FormsModule, ReactiveFormsModule, PopupModule, ResizeSensorModule, SharedDirectivesModule, EventsModule, IconsModule, ActionSheetModule, ButtonModule, TextBoxModule, FormsModule, ReactiveFormsModule, PopupModule, ResizeSensorModule, SharedDirectivesModule, EventsModule, IconsModule, ActionSheetModule, ButtonModule, TextBoxModule] });
|
|
61
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, decorators: [{
|
|
62
|
-
type: NgModule,
|
|
63
|
-
args: [{
|
|
64
|
-
imports: [INTERNAL_DIRECTIVES, FormsModule, ReactiveFormsModule, PopupModule, ResizeSensorModule, SharedDirectivesModule, EventsModule, IconsModule, ActionSheetModule, ButtonModule, TextBoxModule],
|
|
65
|
-
exports: [INTERNAL_DIRECTIVES, FormsModule, ReactiveFormsModule, PopupModule, ResizeSensorModule, SharedDirectivesModule, EventsModule, IconsModule, ActionSheetModule, ButtonModule, TextBoxModule],
|
|
66
|
-
providers: [IconsService, PopupService, ResizeBatchService]
|
|
67
|
-
}]
|
|
68
|
-
}] });
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { NgModule } from '@angular/core';
|
|
6
|
-
import { KENDO_DROPDOWNS } from './directives';
|
|
7
|
-
import { PopupService } from '@progress/kendo-angular-popup';
|
|
8
|
-
import { AdornmentsModule, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
9
|
-
import { IconsService } from '@progress/kendo-angular-icons';
|
|
10
|
-
import { DialogContainerService, DialogService, WindowContainerService, WindowService } from '@progress/kendo-angular-dialog';
|
|
11
|
-
import * as i0 from "@angular/core";
|
|
12
|
-
import * as i1 from "./autocomplete/autocomplete.component";
|
|
13
|
-
import * as i2 from "./common/templates/fixed-group-template.directive";
|
|
14
|
-
import * as i3 from "./common/templates/footer-template.directive";
|
|
15
|
-
import * as i4 from "./common/templates/group-template.directive";
|
|
16
|
-
import * as i5 from "./common/templates/header-template.directive";
|
|
17
|
-
import * as i6 from "./common/templates/item-template.directive";
|
|
18
|
-
import * as i7 from "./common/templates/no-data-template.directive";
|
|
19
|
-
import * as i8 from "./common/filtering/filter.directive";
|
|
20
|
-
import * as i9 from "./common/localization/custom-messages.component";
|
|
21
|
-
import * as i10 from "@progress/kendo-angular-common";
|
|
22
|
-
import * as i11 from "./comboboxes/combobox.component";
|
|
23
|
-
import * as i12 from "./comboboxes/multicolumncombobox.component";
|
|
24
|
-
import * as i13 from "./comboboxes/combobox-column/combobox-column.component";
|
|
25
|
-
import * as i14 from "./comboboxes/combobox-column/column-header-template.directive";
|
|
26
|
-
import * as i15 from "./comboboxes/combobox-column/column-cell-template.directive";
|
|
27
|
-
import * as i16 from "./dropdownlist/dropdownlist.component";
|
|
28
|
-
import * as i17 from "./common/templates/value-template.directive";
|
|
29
|
-
import * as i18 from "./multiselect/multiselect.component";
|
|
30
|
-
import * as i19 from "./multiselect/summary-tag.directive";
|
|
31
|
-
import * as i20 from "./common/templates/custom-item-template.directive";
|
|
32
|
-
import * as i21 from "./common/templates/group-tag-template.directive";
|
|
33
|
-
import * as i22 from "./common/templates/tag-template.directive";
|
|
34
|
-
import * as i23 from "./dropdowntrees/dropdowntree.component";
|
|
35
|
-
import * as i24 from "./dropdowntrees/data-binding/dropdowntree/flat-binding.directive";
|
|
36
|
-
import * as i25 from "./dropdowntrees/data-binding/dropdowntree/hierarchy-binding.directive";
|
|
37
|
-
import * as i26 from "./dropdowntrees/expanded-state/expand.directive";
|
|
38
|
-
import * as i27 from "./dropdowntrees/templates/node-template.directive";
|
|
39
|
-
import * as i28 from "./dropdowntrees/multiselecttree.component";
|
|
40
|
-
import * as i29 from "./dropdowntrees/data-binding/multiselecttree/flat-binding.directive";
|
|
41
|
-
import * as i30 from "./dropdowntrees/data-binding/multiselecttree/hierarchy-binding.directive";
|
|
42
|
-
import * as i31 from "./dropdowntrees/summary-tag/summary-tag.directive";
|
|
43
|
-
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
44
|
-
/**
|
|
45
|
-
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
46
|
-
* definition for the Dropdowns components.
|
|
47
|
-
*
|
|
48
|
-
* @example
|
|
49
|
-
*
|
|
50
|
-
* ```ts-no-run
|
|
51
|
-
* // Import the Dropdowns module
|
|
52
|
-
* import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
|
|
53
|
-
*
|
|
54
|
-
* // The browser platform with a compiler
|
|
55
|
-
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
56
|
-
*
|
|
57
|
-
* import { NgModule } from '@angular/core';
|
|
58
|
-
*
|
|
59
|
-
* // Import the app component
|
|
60
|
-
* import { AppComponent } from './app.component';
|
|
61
|
-
*
|
|
62
|
-
* // Define the app module
|
|
63
|
-
* _@NgModule({
|
|
64
|
-
* declarations: [AppComponent], // declare the app component
|
|
65
|
-
* imports: [BrowserModule, DropDownsModule], // import the Dropdowns module
|
|
66
|
-
* bootstrap: [AppComponent]
|
|
67
|
-
* })
|
|
68
|
-
* export class AppModule {}
|
|
69
|
-
*
|
|
70
|
-
* // Compile and launch the module
|
|
71
|
-
* platformBrowserDynamic().bootstrapModule(AppModule);
|
|
72
|
-
*
|
|
73
|
-
* ```
|
|
74
|
-
*/
|
|
75
|
-
export class DropDownsModule {
|
|
76
|
-
}
|
|
77
|
-
DropDownsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropDownsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
78
|
-
DropDownsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: DropDownsModule, imports: [i1.AutoCompleteComponent, i2.FixedGroupTemplateDirective, i3.FooterTemplateDirective, i4.GroupTemplateDirective, i5.HeaderTemplateDirective, i6.ItemTemplateDirective, i7.NoDataTemplateDirective, i8.FilterDirective, i9.CustomMessagesComponent, i10.SuffixTemplateDirective, i10.PrefixTemplateDirective, i10.SeparatorComponent, i11.ComboBoxComponent, i2.FixedGroupTemplateDirective, i3.FooterTemplateDirective, i4.GroupTemplateDirective, i5.HeaderTemplateDirective, i6.ItemTemplateDirective, i7.NoDataTemplateDirective, i8.FilterDirective, i9.CustomMessagesComponent, i10.SuffixTemplateDirective, i10.PrefixTemplateDirective, i10.SeparatorComponent, i12.MultiColumnComboBoxComponent, i13.ComboBoxColumnComponent, i14.ColumnHeaderTemplateDirective, i15.ColumnCellTemplateDirective, i2.FixedGroupTemplateDirective, i3.FooterTemplateDirective, i4.GroupTemplateDirective, i5.HeaderTemplateDirective, i6.ItemTemplateDirective, i7.NoDataTemplateDirective, i8.FilterDirective, i9.CustomMessagesComponent, i10.SuffixTemplateDirective, i10.PrefixTemplateDirective, i10.SeparatorComponent, i16.DropDownListComponent, i2.FixedGroupTemplateDirective, i3.FooterTemplateDirective, i4.GroupTemplateDirective, i5.HeaderTemplateDirective, i6.ItemTemplateDirective, i17.ValueTemplateDirective, i7.NoDataTemplateDirective, i8.FilterDirective, i9.CustomMessagesComponent, i18.MultiSelectComponent, i19.SummaryTagDirective, i20.CustomItemTemplateDirective, i2.FixedGroupTemplateDirective, i3.FooterTemplateDirective, i4.GroupTemplateDirective, i21.GroupTagTemplateDirective, i22.TagTemplateDirective, i5.HeaderTemplateDirective, i6.ItemTemplateDirective, i7.NoDataTemplateDirective, i8.FilterDirective, i9.CustomMessagesComponent, i10.SuffixTemplateDirective, i10.PrefixTemplateDirective, i10.SeparatorComponent, i23.DropDownTreeComponent, i24.DropDownTreeFlatBindingDirective, i25.DropDownTreeHierarchyBindingDirective, i26.DropDownTreesExpandDirective, i27.NodeTemplateDirective, i5.HeaderTemplateDirective, i3.FooterTemplateDirective, i17.ValueTemplateDirective, i7.NoDataTemplateDirective, i9.CustomMessagesComponent, i28.MultiSelectTreeComponent, i29.MultiSelectTreeFlatBindingDirective, i30.MultiSelectTreeHierarchyBindingDirective, i26.DropDownTreesExpandDirective, i27.NodeTemplateDirective, i31.MultiSelectTreeSummaryTagDirective, i21.GroupTagTemplateDirective, i22.TagTemplateDirective, i5.HeaderTemplateDirective, i3.FooterTemplateDirective, i17.ValueTemplateDirective, i7.NoDataTemplateDirective, i9.CustomMessagesComponent], exports: [i1.AutoCompleteComponent, i2.FixedGroupTemplateDirective, i3.FooterTemplateDirective, i4.GroupTemplateDirective, i5.HeaderTemplateDirective, i6.ItemTemplateDirective, i7.NoDataTemplateDirective, i8.FilterDirective, i9.CustomMessagesComponent, i10.SuffixTemplateDirective, i10.PrefixTemplateDirective, i10.SeparatorComponent, i11.ComboBoxComponent, i2.FixedGroupTemplateDirective, i3.FooterTemplateDirective, i4.GroupTemplateDirective, i5.HeaderTemplateDirective, i6.ItemTemplateDirective, i7.NoDataTemplateDirective, i8.FilterDirective, i9.CustomMessagesComponent, i10.SuffixTemplateDirective, i10.PrefixTemplateDirective, i10.SeparatorComponent, i12.MultiColumnComboBoxComponent, i13.ComboBoxColumnComponent, i14.ColumnHeaderTemplateDirective, i15.ColumnCellTemplateDirective, i2.FixedGroupTemplateDirective, i3.FooterTemplateDirective, i4.GroupTemplateDirective, i5.HeaderTemplateDirective, i6.ItemTemplateDirective, i7.NoDataTemplateDirective, i8.FilterDirective, i9.CustomMessagesComponent, i10.SuffixTemplateDirective, i10.PrefixTemplateDirective, i10.SeparatorComponent, i16.DropDownListComponent, i2.FixedGroupTemplateDirective, i3.FooterTemplateDirective, i4.GroupTemplateDirective, i5.HeaderTemplateDirective, i6.ItemTemplateDirective, i17.ValueTemplateDirective, i7.NoDataTemplateDirective, i8.FilterDirective, i9.CustomMessagesComponent, i18.MultiSelectComponent, i19.SummaryTagDirective, i20.CustomItemTemplateDirective, i2.FixedGroupTemplateDirective, i3.FooterTemplateDirective, i4.GroupTemplateDirective, i21.GroupTagTemplateDirective, i22.TagTemplateDirective, i5.HeaderTemplateDirective, i6.ItemTemplateDirective, i7.NoDataTemplateDirective, i8.FilterDirective, i9.CustomMessagesComponent, i10.SuffixTemplateDirective, i10.PrefixTemplateDirective, i10.SeparatorComponent, i23.DropDownTreeComponent, i24.DropDownTreeFlatBindingDirective, i25.DropDownTreeHierarchyBindingDirective, i26.DropDownTreesExpandDirective, i27.NodeTemplateDirective, i5.HeaderTemplateDirective, i3.FooterTemplateDirective, i17.ValueTemplateDirective, i7.NoDataTemplateDirective, i9.CustomMessagesComponent, i28.MultiSelectTreeComponent, i29.MultiSelectTreeFlatBindingDirective, i30.MultiSelectTreeHierarchyBindingDirective, i26.DropDownTreesExpandDirective, i27.NodeTemplateDirective, i31.MultiSelectTreeSummaryTagDirective, i21.GroupTagTemplateDirective, i22.TagTemplateDirective, i5.HeaderTemplateDirective, i3.FooterTemplateDirective, i17.ValueTemplateDirective, i7.NoDataTemplateDirective, i9.CustomMessagesComponent, AdornmentsModule] });
|
|
79
|
-
DropDownsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropDownsModule, providers: [PopupService, ResizeBatchService, IconsService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [i1.AutoCompleteComponent, i9.CustomMessagesComponent, i10.SeparatorComponent, i11.ComboBoxComponent, i9.CustomMessagesComponent, i10.SeparatorComponent, i12.MultiColumnComboBoxComponent, i13.ComboBoxColumnComponent, i9.CustomMessagesComponent, i10.SeparatorComponent, i16.DropDownListComponent, i9.CustomMessagesComponent, i18.MultiSelectComponent, i9.CustomMessagesComponent, i10.SeparatorComponent, i23.DropDownTreeComponent, i9.CustomMessagesComponent, i28.MultiSelectTreeComponent, i9.CustomMessagesComponent, AdornmentsModule] });
|
|
80
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropDownsModule, decorators: [{
|
|
81
|
-
type: NgModule,
|
|
82
|
-
args: [{
|
|
83
|
-
exports: [...KENDO_DROPDOWNS, AdornmentsModule],
|
|
84
|
-
imports: [...KENDO_DROPDOWNS],
|
|
85
|
-
providers: [PopupService, ResizeBatchService, IconsService, DialogContainerService, DialogService, WindowService, WindowContainerService]
|
|
86
|
-
}]
|
|
87
|
-
}] });
|