@kris701/ez-ui 1.2.18 → 1.2.19
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.
|
@@ -20,7 +20,7 @@ import { TuiHeader, TuiElasticContainer, TuiBlockStatus, TuiNavigation, TuiAside
|
|
|
20
20
|
import { marked } from 'marked';
|
|
21
21
|
import Compressor from 'compressorjs';
|
|
22
22
|
import { TuiAutoFocus } from '@taiga-ui/cdk';
|
|
23
|
-
import * as
|
|
23
|
+
import * as i8 from '@taiga-ui/cdk/directives/item';
|
|
24
24
|
import * as i3$2 from '@taiga-ui/addon-table';
|
|
25
25
|
import { TuiTablePagination, TuiTable } from '@taiga-ui/addon-table';
|
|
26
26
|
import { v4 } from 'uuid';
|
|
@@ -2949,6 +2949,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.0", ngImpor
|
|
|
2949
2949
|
}] } });
|
|
2950
2950
|
|
|
2951
2951
|
class EzUIMultiSelect {
|
|
2952
|
+
itemTemplate;
|
|
2952
2953
|
icon = '';
|
|
2953
2954
|
label = '';
|
|
2954
2955
|
size = 'm';
|
|
@@ -2982,7 +2983,7 @@ class EzUIMultiSelect {
|
|
|
2982
2983
|
return item[this.optionValue];
|
|
2983
2984
|
}
|
|
2984
2985
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.0", ngImport: i0, type: EzUIMultiSelect, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2985
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.1.0", type: EzUIMultiSelect, isStandalone: true, selector: "ezui-multiselect", inputs: { icon: "icon", label: "label", size: "size", optionLabel: "optionLabel", optionValue: "optionValue", options: "options", disabled: "disabled", selected: "selected", appearanceMap: "appearanceMap", enableSearch: "enableSearch" }, outputs: { selectedChange: "selectedChange" }, usesOnChanges: true, ngImport: i0, template: `
|
|
2986
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.1.0", type: EzUIMultiSelect, isStandalone: true, selector: "ezui-multiselect", inputs: { icon: "icon", label: "label", size: "size", optionLabel: "optionLabel", optionValue: "optionValue", options: "options", disabled: "disabled", selected: "selected", appearanceMap: "appearanceMap", enableSearch: "enableSearch" }, outputs: { selectedChange: "selectedChange" }, queries: [{ propertyName: "itemTemplate", first: true, predicate: ["itemTemplate"], descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
2986
2987
|
<tui-textfield multi tuiChevron [stringify]="stringify" [tuiTextfieldSize]="size" [iconStart]="icon">
|
|
2987
2988
|
@if(label != '' && size != 's'){
|
|
2988
2989
|
<label tuiLabel>{{label}}</label>
|
|
@@ -3002,13 +3003,18 @@ class EzUIMultiSelect {
|
|
|
3002
3003
|
@if(!enableSearch || (searchValue == '' || label.includes(searchValue))){
|
|
3003
3004
|
@let value = getOptionValue(item);
|
|
3004
3005
|
<button tuiOption [value]="value" >
|
|
3005
|
-
|
|
3006
|
+
@if(itemTemplate){
|
|
3007
|
+
<ng-container [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ $implicit: item }"></ng-container>
|
|
3008
|
+
}
|
|
3009
|
+
@else {
|
|
3010
|
+
<span tuiChip size="xs" [appearance]="appearanceMap[value] ? appearanceMap[value] : 'neutral'">{{label}}</span>
|
|
3011
|
+
}
|
|
3006
3012
|
</button>
|
|
3007
3013
|
}
|
|
3008
3014
|
}
|
|
3009
3015
|
</tui-data-list>
|
|
3010
3016
|
</tui-textfield>
|
|
3011
|
-
`, isInline: true, styles: [""], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox]):not([ngNoCva])[formControlName],textarea:not([ngNoCva])[formControlName],input:not([type=checkbox]):not([ngNoCva])[formControl],textarea:not([ngNoCva])[formControl],input:not([type=checkbox]):not([ngNoCva])[ngModel],textarea:not([ngNoCva])[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i4$1.TuiMultiSelectGroupDirective, selector: "[tuiMultiSelectGroup]" }, { kind: "directive", type: i2.TuiLabel, selector: "label[tuiLabel]" }, { kind: "component", type: i3.TuiTextfieldComponent, selector: "tui-textfield:not([multi])", inputs: ["content", "filler", "invalid", "tuiAppearanceFocus", "tuiAppearanceState"] }, { kind: "directive", type: i3.TuiTextfieldOptionsDirective, selector: "[tuiTextfieldAppearance],[tuiTextfieldSize],[tuiTextfieldCleaner]", inputs: ["tuiTextfieldAppearance", "tuiTextfieldSize", "tuiTextfieldCleaner"] }, { kind: "directive", type: i4.TuiDropdownContent, selector: "ng-template[tuiDropdown]" }, { kind: "component", type: i3$1.TuiDataListComponent, selector: "tui-data-list", inputs: ["emptyContent", "size"] }, { kind: "directive", type: i3$1.TuiOption, selector: "button[tuiOption], a[tuiOption], label[tuiOption]", inputs: ["disabled"] }, { kind: "directive", type: i3$1.TuiOptionWithValue, selector: "button[tuiOption][value], a[tuiOption][value], label[tuiOption][value]", inputs: ["disabled", "value"] }, { kind: "directive", type:
|
|
3017
|
+
`, isInline: true, styles: [""], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox]):not([ngNoCva])[formControlName],textarea:not([ngNoCva])[formControlName],input:not([type=checkbox]):not([ngNoCva])[formControl],textarea:not([ngNoCva])[formControl],input:not([type=checkbox]):not([ngNoCva])[ngModel],textarea:not([ngNoCva])[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i4$1.TuiMultiSelectGroupDirective, selector: "[tuiMultiSelectGroup]" }, { kind: "directive", type: i2.TuiLabel, selector: "label[tuiLabel]" }, { kind: "component", type: i3.TuiTextfieldComponent, selector: "tui-textfield:not([multi])", inputs: ["content", "filler", "invalid", "tuiAppearanceFocus", "tuiAppearanceState"] }, { kind: "directive", type: i3.TuiTextfieldOptionsDirective, selector: "[tuiTextfieldAppearance],[tuiTextfieldSize],[tuiTextfieldCleaner]", inputs: ["tuiTextfieldAppearance", "tuiTextfieldSize", "tuiTextfieldCleaner"] }, { kind: "directive", type: i4.TuiDropdownContent, selector: "ng-template[tuiDropdown]" }, { kind: "component", type: i3$1.TuiDataListComponent, selector: "tui-data-list", inputs: ["emptyContent", "size"] }, { kind: "directive", type: i3$1.TuiOption, selector: "button[tuiOption], a[tuiOption], label[tuiOption]", inputs: ["disabled"] }, { kind: "directive", type: i3$1.TuiOptionWithValue, selector: "button[tuiOption][value], a[tuiOption][value], label[tuiOption][value]", inputs: ["disabled", "value"] }, { kind: "directive", type: i8.TuiItem, selector: "[tuiItem]" }, { kind: "component", type: i3$1.TuiTextfieldMultiComponent, selector: "tui-textfield[multi]", inputs: ["rows"] }, { kind: "directive", type: i4$1.TuiInputChipDirective, selector: "input[tuiInputChip]", inputs: ["separator", "unique"] }, { kind: "component", type: i4$1.TuiInputChipComponent, selector: "tui-input-chip", inputs: ["editable"] }, { kind: "directive", type: TuiSelectLike, selector: "[tuiSelectLike]" }, { kind: "directive", type: TuiChevron, selector: "[tuiChevron]", inputs: ["tuiChevron"] }, { kind: "directive", type: TuiChip, selector: "[tuiChip]", inputs: ["size"] }, { kind: "directive", type: TuiAutoFocus, selector: "[tuiAutoFocus]", inputs: ["tuiAutoFocus"] }, { kind: "directive", type: i3$1.TuiInputDirective, selector: "input[tuiInput]", inputs: ["readOnly", "readonly", "invalid", "focused", "state"] }] });
|
|
3012
3018
|
}
|
|
3013
3019
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.0", ngImport: i0, type: EzUIMultiSelect, decorators: [{
|
|
3014
3020
|
type: Component,
|
|
@@ -3047,14 +3053,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.0", ngImpor
|
|
|
3047
3053
|
@if(!enableSearch || (searchValue == '' || label.includes(searchValue))){
|
|
3048
3054
|
@let value = getOptionValue(item);
|
|
3049
3055
|
<button tuiOption [value]="value" >
|
|
3050
|
-
|
|
3056
|
+
@if(itemTemplate){
|
|
3057
|
+
<ng-container [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ $implicit: item }"></ng-container>
|
|
3058
|
+
}
|
|
3059
|
+
@else {
|
|
3060
|
+
<span tuiChip size="xs" [appearance]="appearanceMap[value] ? appearanceMap[value] : 'neutral'">{{label}}</span>
|
|
3061
|
+
}
|
|
3051
3062
|
</button>
|
|
3052
3063
|
}
|
|
3053
3064
|
}
|
|
3054
3065
|
</tui-data-list>
|
|
3055
3066
|
</tui-textfield>
|
|
3056
3067
|
` }]
|
|
3057
|
-
}], propDecorators: {
|
|
3068
|
+
}], propDecorators: { itemTemplate: [{
|
|
3069
|
+
type: ContentChild,
|
|
3070
|
+
args: ['itemTemplate', { static: false }]
|
|
3071
|
+
}], icon: [{
|
|
3058
3072
|
type: Input
|
|
3059
3073
|
}], label: [{
|
|
3060
3074
|
type: Input
|
|
@@ -3190,6 +3204,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.0", ngImpor
|
|
|
3190
3204
|
}] } });
|
|
3191
3205
|
|
|
3192
3206
|
class EzUISelect {
|
|
3207
|
+
selectedTemplate;
|
|
3208
|
+
itemTemplate;
|
|
3193
3209
|
icon = '';
|
|
3194
3210
|
label = '';
|
|
3195
3211
|
size = 'm';
|
|
@@ -3207,6 +3223,9 @@ class EzUISelect {
|
|
|
3207
3223
|
this.selected = changes['selected'].currentValue;
|
|
3208
3224
|
}
|
|
3209
3225
|
}
|
|
3226
|
+
getSelectedItem(value) {
|
|
3227
|
+
return this.options.find((item) => this.getOptionValue(item) === value);
|
|
3228
|
+
}
|
|
3210
3229
|
stringify = (value) => this.getOptionLabel(this.options.find((item) => this.getOptionValue(item) === value));
|
|
3211
3230
|
getOptionLabel(item) {
|
|
3212
3231
|
if (!item)
|
|
@@ -3223,7 +3242,7 @@ class EzUISelect {
|
|
|
3223
3242
|
return item[this.optionValue];
|
|
3224
3243
|
}
|
|
3225
3244
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.1.0", ngImport: i0, type: EzUISelect, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3226
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.1.0", type: EzUISelect, isStandalone: true, selector: "ezui-select", inputs: { icon: "icon", label: "label", size: "size", optionLabel: "optionLabel", optionValue: "optionValue", options: "options", disabled: "disabled", selected: "selected", appearanceMap: "appearanceMap", enableSearch: "enableSearch" }, outputs: { selectedChange: "selectedChange" }, usesOnChanges: true, ngImport: i0, template: `
|
|
3245
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.1.0", type: EzUISelect, isStandalone: true, selector: "ezui-select", inputs: { icon: "icon", label: "label", size: "size", optionLabel: "optionLabel", optionValue: "optionValue", options: "options", disabled: "disabled", selected: "selected", appearanceMap: "appearanceMap", enableSearch: "enableSearch" }, outputs: { selectedChange: "selectedChange" }, queries: [{ propertyName: "selectedTemplate", first: true, predicate: ["selectedTemplate"], descendants: true }, { propertyName: "itemTemplate", first: true, predicate: ["itemTemplate"], descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
3227
3246
|
<tui-textfield tuiChevron [content]="content" [tuiTextfieldSize]="size" [iconStart]="icon">
|
|
3228
3247
|
@if(label != '' && size != 's'){
|
|
3229
3248
|
<label tuiLabel>{{label}}</label>
|
|
@@ -3238,9 +3257,15 @@ class EzUISelect {
|
|
|
3238
3257
|
@for (item of options; track getOptionValue(item)) {
|
|
3239
3258
|
@let label = getOptionLabel(item);
|
|
3240
3259
|
@if(!enableSearch || (searchValue == '' || label.includes(searchValue))){
|
|
3260
|
+
|
|
3241
3261
|
@let value = getOptionValue(item);
|
|
3242
3262
|
<button tuiOption [value]="value" >
|
|
3263
|
+
@if(itemTemplate){
|
|
3264
|
+
<ng-container [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ $implicit: item }"></ng-container>
|
|
3265
|
+
}
|
|
3266
|
+
@else {
|
|
3243
3267
|
<span tuiChip size="xs" [appearance]="appearanceMap[value]">{{label}}</span>
|
|
3268
|
+
}
|
|
3244
3269
|
</button>
|
|
3245
3270
|
}
|
|
3246
3271
|
}
|
|
@@ -3248,9 +3273,14 @@ class EzUISelect {
|
|
|
3248
3273
|
</tui-textfield>
|
|
3249
3274
|
|
|
3250
3275
|
<ng-template #content>
|
|
3251
|
-
|
|
3276
|
+
@if(selectedTemplate){
|
|
3277
|
+
<ng-container [ngTemplateOutlet]="selectedTemplate" [ngTemplateOutletContext]="{ $implicit: getSelectedItem(selected) }"></ng-container>
|
|
3278
|
+
}
|
|
3279
|
+
@else {
|
|
3280
|
+
<span tuiChip [size]="label != '' ? 'xxs' : 'xs'" [appearance]="appearanceMap[selected]">{{stringify(selected)}}</span>
|
|
3281
|
+
}
|
|
3252
3282
|
</ng-template>
|
|
3253
|
-
`, isInline: true, styles: [""], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox]):not([ngNoCva])[formControlName],textarea:not([ngNoCva])[formControlName],input:not([type=checkbox]):not([ngNoCva])[formControl],textarea:not([ngNoCva])[formControl],input:not([type=checkbox]):not([ngNoCva])[ngModel],textarea:not([ngNoCva])[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i4$1.TuiSelectDirective, selector: "input[tuiSelect]" }, { kind: "directive", type: i2.TuiLabel, selector: "label[tuiLabel]" }, { kind: "component", type: i3.TuiTextfieldComponent, selector: "tui-textfield:not([multi])", inputs: ["content", "filler", "invalid", "tuiAppearanceFocus", "tuiAppearanceState"] }, { kind: "directive", type: i3.TuiTextfieldOptionsDirective, selector: "[tuiTextfieldAppearance],[tuiTextfieldSize],[tuiTextfieldCleaner]", inputs: ["tuiTextfieldAppearance", "tuiTextfieldSize", "tuiTextfieldCleaner"] }, { kind: "directive", type: i4.TuiDropdownContent, selector: "ng-template[tuiDropdown]" }, { kind: "component", type: i3$1.TuiDataListComponent, selector: "tui-data-list", inputs: ["emptyContent", "size"] }, { kind: "directive", type: i3$1.TuiOption, selector: "button[tuiOption], a[tuiOption], label[tuiOption]", inputs: ["disabled"] }, { kind: "directive", type: i3$1.TuiOptionWithValue, selector: "button[tuiOption][value], a[tuiOption][value], label[tuiOption][value]", inputs: ["disabled", "value"] }, { kind: "directive", type: TuiChevron, selector: "[tuiChevron]", inputs: ["tuiChevron"] }, { kind: "directive", type: i3$1.TuiInputDirective, selector: "input[tuiInput]", inputs: ["readOnly", "readonly", "invalid", "focused", "state"] }, { kind: "directive", type: TuiChip, selector: "[tuiChip]", inputs: ["size"] }, { kind: "directive", type: TuiAutoFocus, selector: "[tuiAutoFocus]", inputs: ["tuiAutoFocus"] }] });
|
|
3283
|
+
`, isInline: true, styles: [""], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox]):not([ngNoCva])[formControlName],textarea:not([ngNoCva])[formControlName],input:not([type=checkbox]):not([ngNoCva])[formControl],textarea:not([ngNoCva])[formControl],input:not([type=checkbox]):not([ngNoCva])[ngModel],textarea:not([ngNoCva])[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i4$1.TuiSelectDirective, selector: "input[tuiSelect]" }, { kind: "directive", type: i2.TuiLabel, selector: "label[tuiLabel]" }, { kind: "component", type: i3.TuiTextfieldComponent, selector: "tui-textfield:not([multi])", inputs: ["content", "filler", "invalid", "tuiAppearanceFocus", "tuiAppearanceState"] }, { kind: "directive", type: i3.TuiTextfieldOptionsDirective, selector: "[tuiTextfieldAppearance],[tuiTextfieldSize],[tuiTextfieldCleaner]", inputs: ["tuiTextfieldAppearance", "tuiTextfieldSize", "tuiTextfieldCleaner"] }, { kind: "directive", type: i4.TuiDropdownContent, selector: "ng-template[tuiDropdown]" }, { kind: "component", type: i3$1.TuiDataListComponent, selector: "tui-data-list", inputs: ["emptyContent", "size"] }, { kind: "directive", type: i3$1.TuiOption, selector: "button[tuiOption], a[tuiOption], label[tuiOption]", inputs: ["disabled"] }, { kind: "directive", type: i3$1.TuiOptionWithValue, selector: "button[tuiOption][value], a[tuiOption][value], label[tuiOption][value]", inputs: ["disabled", "value"] }, { kind: "directive", type: TuiChevron, selector: "[tuiChevron]", inputs: ["tuiChevron"] }, { kind: "directive", type: i3$1.TuiInputDirective, selector: "input[tuiInput]", inputs: ["readOnly", "readonly", "invalid", "focused", "state"] }, { kind: "directive", type: TuiChip, selector: "[tuiChip]", inputs: ["size"] }, { kind: "directive", type: TuiAutoFocus, selector: "[tuiAutoFocus]", inputs: ["tuiAutoFocus"] }] });
|
|
3254
3284
|
}
|
|
3255
3285
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.0", ngImport: i0, type: EzUISelect, decorators: [{
|
|
3256
3286
|
type: Component,
|
|
@@ -3280,9 +3310,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.0", ngImpor
|
|
|
3280
3310
|
@for (item of options; track getOptionValue(item)) {
|
|
3281
3311
|
@let label = getOptionLabel(item);
|
|
3282
3312
|
@if(!enableSearch || (searchValue == '' || label.includes(searchValue))){
|
|
3313
|
+
|
|
3283
3314
|
@let value = getOptionValue(item);
|
|
3284
3315
|
<button tuiOption [value]="value" >
|
|
3316
|
+
@if(itemTemplate){
|
|
3317
|
+
<ng-container [ngTemplateOutlet]="itemTemplate" [ngTemplateOutletContext]="{ $implicit: item }"></ng-container>
|
|
3318
|
+
}
|
|
3319
|
+
@else {
|
|
3285
3320
|
<span tuiChip size="xs" [appearance]="appearanceMap[value]">{{label}}</span>
|
|
3321
|
+
}
|
|
3286
3322
|
</button>
|
|
3287
3323
|
}
|
|
3288
3324
|
}
|
|
@@ -3290,10 +3326,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.0", ngImpor
|
|
|
3290
3326
|
</tui-textfield>
|
|
3291
3327
|
|
|
3292
3328
|
<ng-template #content>
|
|
3293
|
-
|
|
3329
|
+
@if(selectedTemplate){
|
|
3330
|
+
<ng-container [ngTemplateOutlet]="selectedTemplate" [ngTemplateOutletContext]="{ $implicit: getSelectedItem(selected) }"></ng-container>
|
|
3331
|
+
}
|
|
3332
|
+
@else {
|
|
3333
|
+
<span tuiChip [size]="label != '' ? 'xxs' : 'xs'" [appearance]="appearanceMap[selected]">{{stringify(selected)}}</span>
|
|
3334
|
+
}
|
|
3294
3335
|
</ng-template>
|
|
3295
3336
|
` }]
|
|
3296
|
-
}], propDecorators: {
|
|
3337
|
+
}], propDecorators: { selectedTemplate: [{
|
|
3338
|
+
type: ContentChild,
|
|
3339
|
+
args: ['selectedTemplate', { static: false }]
|
|
3340
|
+
}], itemTemplate: [{
|
|
3341
|
+
type: ContentChild,
|
|
3342
|
+
args: ['itemTemplate', { static: false }]
|
|
3343
|
+
}], icon: [{
|
|
3297
3344
|
type: Input
|
|
3298
3345
|
}], label: [{
|
|
3299
3346
|
type: Input
|