@smart-webcomponents-angular/combobox 9.2.73 → 12.0.37
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/combobox/index.d.ts +1 -0
- package/combobox/smart-webcomponents-angular-combobox.d.ts +2 -2
- package/combobox/smart.combobox.d.ts +6 -6
- package/combobox/smart.combobox.module.d.ts +7 -0
- package/combobox/smart.element.d.ts +4 -1
- package/combobox/smart.listitem.d.ts +3 -0
- package/combobox/smart.listitemsgroup.d.ts +3 -0
- package/common/i18n.phonenumbers.min.js +501 -0
- package/common/runtime.js +748 -0
- package/esm2020/combobox/index.mjs +2 -0
- package/{esm2015/combobox/public_api.js → esm2020/combobox/public_api.mjs} +1 -1
- package/{esm2015/combobox/smart-webcomponents-angular-combobox.js → esm2020/combobox/smart-webcomponents-angular-combobox.mjs} +2 -3
- package/esm2020/combobox/smart.combobox.mjs +1042 -0
- package/esm2020/combobox/smart.combobox.module.mjs +20 -0
- package/esm2020/combobox/smart.element.mjs +96 -0
- package/esm2020/combobox/smart.listitem.mjs +150 -0
- package/esm2020/combobox/smart.listitemsgroup.mjs +60 -0
- package/fesm2015/{smart-webcomponents-angular-combobox.js → smart-webcomponents-angular-combobox.mjs} +235 -146
- package/fesm2015/smart-webcomponents-angular-combobox.mjs.map +1 -0
- package/fesm2020/smart-webcomponents-angular-combobox.mjs +1366 -0
- package/fesm2020/smart-webcomponents-angular-combobox.mjs.map +1 -0
- package/images/flags.png +0 -0
- package/index.d.ts +31816 -28915
- package/package.json +26 -24
- package/source/modules/smart.combobox.js +1 -1
- package/source/smart.button.js +2 -2
- package/source/smart.checkbox.js +2 -2
- package/source/smart.combobox.js +2 -2
- package/source/smart.dropdownlist.js +2 -2
- package/source/smart.element.js +2 -2
- package/source/smart.listbox.js +2 -2
- package/source/smart.radiobutton.js +2 -2
- package/source/smart.scrollbar.js +2 -2
- package/styles/font/smart-icons.eot +0 -0
- package/styles/font/smart-icons.svg +64 -2
- package/styles/font/smart-icons.ttf +0 -0
- package/styles/font/smart-icons.woff +0 -0
- package/styles/font/smart-icons.woff2 +0 -0
- package/styles/smart.base.css +4 -4
- package/styles/smart.combobox.css +2 -2
- package/styles/smart.common.css +1 -1
- package/bundles/smart-webcomponents-angular-combobox.umd.js +0 -2011
- package/bundles/smart-webcomponents-angular-combobox.umd.min.js +0 -25
- package/combobox/smart-webcomponents-angular-combobox.metadata.json +0 -1
- package/esm2015/combobox/smart.combobox.js +0 -986
- package/esm2015/combobox/smart.combobox.module.js +0 -15
- package/esm2015/combobox/smart.element.js +0 -83
- package/esm2015/combobox/smart.listitem.js +0 -140
- package/esm2015/combobox/smart.listitemsgroup.js +0 -60
- package/fesm2015/smart-webcomponents-angular-combobox.js.map +0 -1
|
@@ -8,7 +8,8 @@ else {
|
|
|
8
8
|
import './../source/modules/smart.combobox';
|
|
9
9
|
|
|
10
10
|
import { __awaiter } from 'tslib';
|
|
11
|
-
import
|
|
11
|
+
import * as i0 from '@angular/core';
|
|
12
|
+
import { EventEmitter, Directive, Output, Input, forwardRef, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
12
13
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
13
14
|
|
|
14
15
|
class BaseElement {
|
|
@@ -80,17 +81,29 @@ class BaseElement {
|
|
|
80
81
|
this.nativeElement ? this.nativeElement.theme = value : undefined;
|
|
81
82
|
}
|
|
82
83
|
}
|
|
83
|
-
BaseElement
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
}
|
|
84
|
+
BaseElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: BaseElement, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
85
|
+
BaseElement.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: BaseElement, inputs: { locale: "locale", localizeFormatFunction: "localizeFormatFunction", messages: "messages", rightToLeft: "rightToLeft", theme: "theme" }, outputs: { onCreate: "onCreate", onReady: "onReady", onAttach: "onAttach", onDetach: "onDetach" }, ngImport: i0 });
|
|
86
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: BaseElement, decorators: [{
|
|
87
|
+
type: Directive
|
|
88
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { onCreate: [{
|
|
89
|
+
type: Output
|
|
90
|
+
}], onReady: [{
|
|
91
|
+
type: Output
|
|
92
|
+
}], onAttach: [{
|
|
93
|
+
type: Output
|
|
94
|
+
}], onDetach: [{
|
|
95
|
+
type: Output
|
|
96
|
+
}], locale: [{
|
|
97
|
+
type: Input
|
|
98
|
+
}], localizeFormatFunction: [{
|
|
99
|
+
type: Input
|
|
100
|
+
}], messages: [{
|
|
101
|
+
type: Input
|
|
102
|
+
}], rightToLeft: [{
|
|
103
|
+
type: Input
|
|
104
|
+
}], theme: [{
|
|
105
|
+
type: Input
|
|
106
|
+
}] } });
|
|
94
107
|
const Smart = window.Smart;
|
|
95
108
|
|
|
96
109
|
const CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR = {
|
|
@@ -176,13 +189,6 @@ class ComboBoxComponent extends BaseElement {
|
|
|
176
189
|
}
|
|
177
190
|
return this.nativeElement;
|
|
178
191
|
}
|
|
179
|
-
/** @description Sets or gets the animation mode. Animation is disabled when the property is set to 'none' */
|
|
180
|
-
get animation() {
|
|
181
|
-
return this.nativeElement ? this.nativeElement.animation : undefined;
|
|
182
|
-
}
|
|
183
|
-
set animation(value) {
|
|
184
|
-
this.nativeElement ? this.nativeElement.animation = value : undefined;
|
|
185
|
-
}
|
|
186
192
|
/** @description Used only when dropDownOpenMode is set to 'auto'. Determines the delay before the opened drop down closes if the pointer is not over the element. */
|
|
187
193
|
get autoCloseDelay() {
|
|
188
194
|
return this.nativeElement ? this.nativeElement.autoCloseDelay : undefined;
|
|
@@ -987,92 +993,163 @@ class ComboBoxComponent extends BaseElement {
|
|
|
987
993
|
}
|
|
988
994
|
}
|
|
989
995
|
}
|
|
990
|
-
ComboBoxComponent
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
]
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
];
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
996
|
+
ComboBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ComboBoxComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
997
|
+
ComboBoxComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: ComboBoxComponent, selector: "smart-combo-box, [smart-combo-box]", inputs: { autoCloseDelay: "autoCloseDelay", autoComplete: "autoComplete", autoCompleteDelay: "autoCompleteDelay", autoOpenShortcutKey: "autoOpenShortcutKey", dataSource: "dataSource", disabled: "disabled", displayLoadingIndicator: "displayLoadingIndicator", displayMember: "displayMember", dropDownAppendTo: "dropDownAppendTo", dropDownButtonPosition: "dropDownButtonPosition", dropDownHeight: "dropDownHeight", dropDownMaxHeight: "dropDownMaxHeight", dropDownMaxWidth: "dropDownMaxWidth", dropDownMinHeight: "dropDownMinHeight", dropDownMinWidth: "dropDownMinWidth", dropDownOpenMode: "dropDownOpenMode", dropDownOverlay: "dropDownOverlay", dropDownPlaceholder: "dropDownPlaceholder", dropDownPosition: "dropDownPosition", dropDownWidth: "dropDownWidth", escKeyMode: "escKeyMode", filterable: "filterable", filterInputPlaceholder: "filterInputPlaceholder", filterMode: "filterMode", grouped: "grouped", groupMember: "groupMember", hint: "hint", horizontalScrollBarVisibility: "horizontalScrollBarVisibility", inputMember: "inputMember", inputPurpose: "inputPurpose", incrementalSearchDelay: "incrementalSearchDelay", incrementalSearchMode: "incrementalSearchMode", itemHeight: "itemHeight", itemMeasureMode: "itemMeasureMode", items: "items", itemTemplate: "itemTemplate", label: "label", loadingIndicatorPlaceholder: "loadingIndicatorPlaceholder", loadingIndicatorPosition: "loadingIndicatorPosition", locale: "locale", localizeFormatFunction: "localizeFormatFunction", messages: "messages", minLength: "minLength", name: "name", opened: "opened", placeholder: "placeholder", readonly: "readonly", rightToLeft: "rightToLeft", resizeIndicator: "resizeIndicator", resizeMode: "resizeMode", selectionDisplayMode: "selectionDisplayMode", selectedIndexes: "selectedIndexes", selectedValues: "selectedValues", selectionMode: "selectionMode", sorted: "sorted", sortDirection: "sortDirection", theme: "theme", tokenTemplate: "tokenTemplate", unfocusable: "unfocusable", value: "value", valueMember: "valueMember", verticalScrollBarVisibility: "verticalScrollBarVisibility", virtualized: "virtualized" }, outputs: { onChange: "onChange", onClose: "onClose", onClosing: "onClosing", onItemClick: "onItemClick", onOpen: "onOpen", onOpening: "onOpening", onResizeStart: "onResizeStart", onResizeEnd: "onResizeEnd", onScrollBottomReached: "onScrollBottomReached", onScrollTopReached: "onScrollTopReached", onTokenClick: "onTokenClick" }, providers: [CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
998
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ComboBoxComponent, decorators: [{
|
|
999
|
+
type: Directive,
|
|
1000
|
+
args: [{
|
|
1001
|
+
selector: 'smart-combo-box, [smart-combo-box]',
|
|
1002
|
+
providers: [CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR]
|
|
1003
|
+
}]
|
|
1004
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { autoCloseDelay: [{
|
|
1005
|
+
type: Input
|
|
1006
|
+
}], autoComplete: [{
|
|
1007
|
+
type: Input
|
|
1008
|
+
}], autoCompleteDelay: [{
|
|
1009
|
+
type: Input
|
|
1010
|
+
}], autoOpenShortcutKey: [{
|
|
1011
|
+
type: Input
|
|
1012
|
+
}], dataSource: [{
|
|
1013
|
+
type: Input
|
|
1014
|
+
}], disabled: [{
|
|
1015
|
+
type: Input
|
|
1016
|
+
}], displayLoadingIndicator: [{
|
|
1017
|
+
type: Input
|
|
1018
|
+
}], displayMember: [{
|
|
1019
|
+
type: Input
|
|
1020
|
+
}], dropDownAppendTo: [{
|
|
1021
|
+
type: Input
|
|
1022
|
+
}], dropDownButtonPosition: [{
|
|
1023
|
+
type: Input
|
|
1024
|
+
}], dropDownHeight: [{
|
|
1025
|
+
type: Input
|
|
1026
|
+
}], dropDownMaxHeight: [{
|
|
1027
|
+
type: Input
|
|
1028
|
+
}], dropDownMaxWidth: [{
|
|
1029
|
+
type: Input
|
|
1030
|
+
}], dropDownMinHeight: [{
|
|
1031
|
+
type: Input
|
|
1032
|
+
}], dropDownMinWidth: [{
|
|
1033
|
+
type: Input
|
|
1034
|
+
}], dropDownOpenMode: [{
|
|
1035
|
+
type: Input
|
|
1036
|
+
}], dropDownOverlay: [{
|
|
1037
|
+
type: Input
|
|
1038
|
+
}], dropDownPlaceholder: [{
|
|
1039
|
+
type: Input
|
|
1040
|
+
}], dropDownPosition: [{
|
|
1041
|
+
type: Input
|
|
1042
|
+
}], dropDownWidth: [{
|
|
1043
|
+
type: Input
|
|
1044
|
+
}], escKeyMode: [{
|
|
1045
|
+
type: Input
|
|
1046
|
+
}], filterable: [{
|
|
1047
|
+
type: Input
|
|
1048
|
+
}], filterInputPlaceholder: [{
|
|
1049
|
+
type: Input
|
|
1050
|
+
}], filterMode: [{
|
|
1051
|
+
type: Input
|
|
1052
|
+
}], grouped: [{
|
|
1053
|
+
type: Input
|
|
1054
|
+
}], groupMember: [{
|
|
1055
|
+
type: Input
|
|
1056
|
+
}], hint: [{
|
|
1057
|
+
type: Input
|
|
1058
|
+
}], horizontalScrollBarVisibility: [{
|
|
1059
|
+
type: Input
|
|
1060
|
+
}], inputMember: [{
|
|
1061
|
+
type: Input
|
|
1062
|
+
}], inputPurpose: [{
|
|
1063
|
+
type: Input
|
|
1064
|
+
}], incrementalSearchDelay: [{
|
|
1065
|
+
type: Input
|
|
1066
|
+
}], incrementalSearchMode: [{
|
|
1067
|
+
type: Input
|
|
1068
|
+
}], itemHeight: [{
|
|
1069
|
+
type: Input
|
|
1070
|
+
}], itemMeasureMode: [{
|
|
1071
|
+
type: Input
|
|
1072
|
+
}], items: [{
|
|
1073
|
+
type: Input
|
|
1074
|
+
}], itemTemplate: [{
|
|
1075
|
+
type: Input
|
|
1076
|
+
}], label: [{
|
|
1077
|
+
type: Input
|
|
1078
|
+
}], loadingIndicatorPlaceholder: [{
|
|
1079
|
+
type: Input
|
|
1080
|
+
}], loadingIndicatorPosition: [{
|
|
1081
|
+
type: Input
|
|
1082
|
+
}], locale: [{
|
|
1083
|
+
type: Input
|
|
1084
|
+
}], localizeFormatFunction: [{
|
|
1085
|
+
type: Input
|
|
1086
|
+
}], messages: [{
|
|
1087
|
+
type: Input
|
|
1088
|
+
}], minLength: [{
|
|
1089
|
+
type: Input
|
|
1090
|
+
}], name: [{
|
|
1091
|
+
type: Input
|
|
1092
|
+
}], opened: [{
|
|
1093
|
+
type: Input
|
|
1094
|
+
}], placeholder: [{
|
|
1095
|
+
type: Input
|
|
1096
|
+
}], readonly: [{
|
|
1097
|
+
type: Input
|
|
1098
|
+
}], rightToLeft: [{
|
|
1099
|
+
type: Input
|
|
1100
|
+
}], resizeIndicator: [{
|
|
1101
|
+
type: Input
|
|
1102
|
+
}], resizeMode: [{
|
|
1103
|
+
type: Input
|
|
1104
|
+
}], selectionDisplayMode: [{
|
|
1105
|
+
type: Input
|
|
1106
|
+
}], selectedIndexes: [{
|
|
1107
|
+
type: Input
|
|
1108
|
+
}], selectedValues: [{
|
|
1109
|
+
type: Input
|
|
1110
|
+
}], selectionMode: [{
|
|
1111
|
+
type: Input
|
|
1112
|
+
}], sorted: [{
|
|
1113
|
+
type: Input
|
|
1114
|
+
}], sortDirection: [{
|
|
1115
|
+
type: Input
|
|
1116
|
+
}], theme: [{
|
|
1117
|
+
type: Input
|
|
1118
|
+
}], tokenTemplate: [{
|
|
1119
|
+
type: Input
|
|
1120
|
+
}], unfocusable: [{
|
|
1121
|
+
type: Input
|
|
1122
|
+
}], value: [{
|
|
1123
|
+
type: Input
|
|
1124
|
+
}], valueMember: [{
|
|
1125
|
+
type: Input
|
|
1126
|
+
}], verticalScrollBarVisibility: [{
|
|
1127
|
+
type: Input
|
|
1128
|
+
}], virtualized: [{
|
|
1129
|
+
type: Input
|
|
1130
|
+
}], onChange: [{
|
|
1131
|
+
type: Output
|
|
1132
|
+
}], onClose: [{
|
|
1133
|
+
type: Output
|
|
1134
|
+
}], onClosing: [{
|
|
1135
|
+
type: Output
|
|
1136
|
+
}], onItemClick: [{
|
|
1137
|
+
type: Output
|
|
1138
|
+
}], onOpen: [{
|
|
1139
|
+
type: Output
|
|
1140
|
+
}], onOpening: [{
|
|
1141
|
+
type: Output
|
|
1142
|
+
}], onResizeStart: [{
|
|
1143
|
+
type: Output
|
|
1144
|
+
}], onResizeEnd: [{
|
|
1145
|
+
type: Output
|
|
1146
|
+
}], onScrollBottomReached: [{
|
|
1147
|
+
type: Output
|
|
1148
|
+
}], onScrollTopReached: [{
|
|
1149
|
+
type: Output
|
|
1150
|
+
}], onTokenClick: [{
|
|
1151
|
+
type: Output
|
|
1152
|
+
}] } });
|
|
1076
1153
|
|
|
1077
1154
|
class ListItemComponent extends BaseElement {
|
|
1078
1155
|
constructor(ref) {
|
|
@@ -1189,27 +1266,36 @@ class ListItemComponent extends BaseElement {
|
|
|
1189
1266
|
}
|
|
1190
1267
|
}
|
|
1191
1268
|
}
|
|
1192
|
-
ListItemComponent
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
];
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1269
|
+
ListItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ListItemComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1270
|
+
ListItemComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: ListItemComponent, selector: "smart-list-item, [smart-list-item]", inputs: { alternationIndex: "alternationIndex", color: "color", displayMode: "displayMode", grouped: "grouped", selected: "selected", value: "value", label: "label", details: "details", group: "group", hidden: "hidden", readonly: "readonly" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
1271
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ListItemComponent, decorators: [{
|
|
1272
|
+
type: Directive,
|
|
1273
|
+
args: [{
|
|
1274
|
+
selector: 'smart-list-item, [smart-list-item]'
|
|
1275
|
+
}]
|
|
1276
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { alternationIndex: [{
|
|
1277
|
+
type: Input
|
|
1278
|
+
}], color: [{
|
|
1279
|
+
type: Input
|
|
1280
|
+
}], displayMode: [{
|
|
1281
|
+
type: Input
|
|
1282
|
+
}], grouped: [{
|
|
1283
|
+
type: Input
|
|
1284
|
+
}], selected: [{
|
|
1285
|
+
type: Input
|
|
1286
|
+
}], value: [{
|
|
1287
|
+
type: Input
|
|
1288
|
+
}], label: [{
|
|
1289
|
+
type: Input
|
|
1290
|
+
}], details: [{
|
|
1291
|
+
type: Input
|
|
1292
|
+
}], group: [{
|
|
1293
|
+
type: Input
|
|
1294
|
+
}], hidden: [{
|
|
1295
|
+
type: Input
|
|
1296
|
+
}], readonly: [{
|
|
1297
|
+
type: Input
|
|
1298
|
+
}] } });
|
|
1213
1299
|
|
|
1214
1300
|
class ListItemsGroupComponent extends BaseElement {
|
|
1215
1301
|
constructor(ref) {
|
|
@@ -1256,31 +1342,34 @@ class ListItemsGroupComponent extends BaseElement {
|
|
|
1256
1342
|
}
|
|
1257
1343
|
}
|
|
1258
1344
|
}
|
|
1259
|
-
ListItemsGroupComponent
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
];
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
};
|
|
1345
|
+
ListItemsGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ListItemsGroupComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1346
|
+
ListItemsGroupComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: ListItemsGroupComponent, selector: "smart-list-items-group, [smart-list-items-group]", inputs: { label: "label" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
1347
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ListItemsGroupComponent, decorators: [{
|
|
1348
|
+
type: Directive,
|
|
1349
|
+
args: [{
|
|
1350
|
+
selector: 'smart-list-items-group, [smart-list-items-group]'
|
|
1351
|
+
}]
|
|
1352
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { label: [{
|
|
1353
|
+
type: Input
|
|
1354
|
+
}] } });
|
|
1270
1355
|
|
|
1271
1356
|
class ComboBoxModule {
|
|
1272
1357
|
}
|
|
1273
|
-
ComboBoxModule
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
]
|
|
1358
|
+
ComboBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ComboBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1359
|
+
ComboBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ComboBoxModule, declarations: [ComboBoxComponent, ListItemComponent, ListItemsGroupComponent], exports: [ComboBoxComponent, ListItemComponent, ListItemsGroupComponent] });
|
|
1360
|
+
ComboBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ComboBoxModule });
|
|
1361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ComboBoxModule, decorators: [{
|
|
1362
|
+
type: NgModule,
|
|
1363
|
+
args: [{
|
|
1364
|
+
declarations: [ComboBoxComponent, ListItemComponent, ListItemsGroupComponent],
|
|
1365
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1366
|
+
exports: [ComboBoxComponent, ListItemComponent, ListItemsGroupComponent]
|
|
1367
|
+
}]
|
|
1368
|
+
}] });
|
|
1280
1369
|
|
|
1281
1370
|
/**
|
|
1282
1371
|
* Generated bundle index. Do not edit.
|
|
1283
1372
|
*/
|
|
1284
1373
|
|
|
1285
|
-
export { ComboBoxComponent, ComboBoxModule, ListItemComponent, ListItemsGroupComponent, Smart
|
|
1286
|
-
//# sourceMappingURL=smart-webcomponents-angular-combobox.
|
|
1374
|
+
export { ComboBoxComponent, ComboBoxModule, ListItemComponent, ListItemsGroupComponent, Smart };
|
|
1375
|
+
//# sourceMappingURL=smart-webcomponents-angular-combobox.mjs.map
|