@kris701/ez-ui 1.0.10 → 1.1.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.
@@ -1,12 +1,14 @@
1
1
  import * as i0 from '@angular/core';
2
- import { EventEmitter, Output, Input, Component, signal, ViewChild, ContentChild, Directive } from '@angular/core';
2
+ import { EventEmitter, signal, Output, Input, Component, ViewChild, ContentChild, Directive } from '@angular/core';
3
3
  import * as i1 from '@angular/forms';
4
4
  import { FormsModule } from '@angular/forms';
5
+ import * as i3$3 from '@taiga-ui/addon-mobile';
6
+ import { TuiDropdownSheet } from '@taiga-ui/addon-mobile';
5
7
  import { TuiDay, TuiTime } from '@taiga-ui/cdk/date-time';
6
8
  import * as i3$1 from '@taiga-ui/core';
7
- import { TuiInput, TuiOption, TuiDropdown, TuiGroup, TuiButton, TuiScrollbar, TuiSelectLike, TuiDataList, TuiTextfield, TuiIcon, TuiHint, TuiLoader } from '@taiga-ui/core';
9
+ import { TuiInput, TuiButton, TuiDropdown, TuiOption, TuiGroup, TuiScrollbar, TuiSelectLike, TuiDataList, TuiTextfield, TuiIcon, TuiHint, TuiLoader } from '@taiga-ui/core';
8
10
  import * as i4$1 from '@taiga-ui/kit';
9
- import { TuiInputDate, TuiFiles, TuiChevron, TuiTextarea, TuiMultiSelect, TuiInputNumber, TuiInputChip, TuiPassword, TuiBadge, TuiStatus, TuiDataListWrapper, TuiButtonSelect, TuiBadgeNotification, TuiStringifyContentPipe, TuiBadgedContent, TuiInputDateTime, TUI_CONFIRM } from '@taiga-ui/kit';
11
+ import { TuiInputDate, TuiInputDateTime, TuiFiles, TuiChevron, TuiTextarea, TuiMultiSelect, TuiInputNumber, TuiInputChip, TuiPassword, TuiBadge, TuiStatus, TuiDataListWrapper, TuiButtonSelect, TuiBadgeNotification, TuiStringifyContentPipe, TuiBadgedContent, TUI_CONFIRM } from '@taiga-ui/kit';
10
12
  import * as i2 from '@taiga-ui/core/components/label';
11
13
  import * as i3 from '@taiga-ui/core/components/textfield';
12
14
  import * as i4 from '@taiga-ui/core/portals/dropdown';
@@ -23,7 +25,6 @@ import { TuiBlockStatus } from '@taiga-ui/layout';
23
25
  import { v4 } from 'uuid';
24
26
  import { firstValueFrom, switchMap } from 'rxjs';
25
27
  import * as i1$1 from '@angular/common/http';
26
- import * as i3$3 from '@taiga-ui/addon-mobile';
27
28
 
28
29
  class EzUIDateInput {
29
30
  icon = '';
@@ -35,43 +36,55 @@ class EzUIDateInput {
35
36
  TuiDay = TuiDay;
36
37
  value = new Date;
37
38
  valueChange = new EventEmitter();
38
- internalValue = null;
39
+ internalValue = signal(null, /* @ts-ignore */
40
+ ...(ngDevMode ? [{ debugName: "internalValue" }] : /* istanbul ignore next */ []));
39
41
  ngOnChanges(changes) {
40
42
  if (changes['value'] && changes['value'].currentValue != changes['value'].previousValue) {
41
43
  this.value = changes['value'].currentValue;
42
- this.value = new Date(this.value);
43
- this.internalValue = TuiDay.fromUtcNativeDate(this.value);
44
+ this.internalValue.set(this.toTuiDate(this.value));
44
45
  }
45
46
  }
46
47
  updateValue() {
47
48
  if (this.internalValue) {
48
- this.value = this.internalValue?.toUtcNativeDate();
49
+ this.value = this.fromTuiDate(this.internalValue());
49
50
  this.valueChange.emit(this.value);
50
51
  }
51
52
  }
53
+ toTuiDate(date) {
54
+ if (date)
55
+ return TuiDay.fromUtcNativeDate(date);
56
+ return null;
57
+ }
58
+ fromTuiDate(date) {
59
+ if (date) {
60
+ return date.toUtcNativeDate();
61
+ }
62
+ return null;
63
+ }
52
64
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EzUIDateInput, deps: [], target: i0.ɵɵFactoryTarget.Component });
53
65
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.7", type: EzUIDateInput, isStandalone: true, selector: "ezui-dateinput", inputs: { icon: "icon", label: "label", size: "size", disabled: "disabled", min: "min", max: "max", value: "value" }, outputs: { valueChange: "valueChange" }, usesOnChanges: true, ngImport: i0, template: `
54
- <tui-textfield [tuiTextfieldSize]="size" [iconStart]="icon">
66
+ <tui-textfield [tuiTextfieldSize]="size" [iconStart]="icon" tuiDropdownSheet>
55
67
  @if(label){
56
68
  <label tuiLabel>{{label}}</label>
57
69
  }
58
- <input tuiInputDate [(ngModel)]="internalValue" (ngModelChange)="updateValue()" [disabled]="disabled" [min]="min ? TuiDay.fromLocalNativeDate(min) : null" [max]="max ? TuiDay.fromLocalNativeDate(max) : null"/>
70
+ <input tuiInputDate [(ngModel)]="internalValue" (ngModelChange)="updateValue()" [disabled]="disabled" [min]="toTuiDate(min)" [max]="toTuiDate(max)"/>
59
71
  <tui-calendar *tuiDropdown />
60
72
  </tui-textfield>
61
- `, 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: "directive", type: i2.TuiLabel, selector: "label[tuiLabel]" }, { kind: "component", type: i3.TuiTextfieldComponent, selector: "tui-textfield:not([multi])", inputs: ["content", "filler"] }, { kind: "directive", type: i3.TuiTextfieldOptionsDirective, selector: "[tuiTextfieldAppearance],[tuiTextfieldSize],[tuiTextfieldCleaner]", inputs: ["tuiTextfieldAppearance", "tuiTextfieldSize", "tuiTextfieldCleaner"] }, { kind: "directive", type: i4.TuiDropdownContent, selector: "ng-template[tuiDropdown]" }, { kind: "directive", type: i4$1.TuiInputDateDirective, selector: "input[tuiInputDate]", inputs: ["max", "min"] }, { kind: "component", type: i6.TuiCalendar, selector: "tui-calendar:not([new])", inputs: ["minViewedMonth", "maxViewedMonth", "showAdjacent", "markerHandler", "initialView", "hoveredItem"], outputs: ["hoveredItemChange", "dayClick"] }] });
73
+ `, 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: "directive", type: i2.TuiLabel, selector: "label[tuiLabel]" }, { kind: "component", type: i3.TuiTextfieldComponent, selector: "tui-textfield:not([multi])", inputs: ["content", "filler"] }, { kind: "directive", type: i3.TuiTextfieldOptionsDirective, selector: "[tuiTextfieldAppearance],[tuiTextfieldSize],[tuiTextfieldCleaner]", inputs: ["tuiTextfieldAppearance", "tuiTextfieldSize", "tuiTextfieldCleaner"] }, { kind: "directive", type: i4.TuiDropdownContent, selector: "ng-template[tuiDropdown]" }, { kind: "directive", type: i4$1.TuiInputDateDirective, selector: "input[tuiInputDate]", inputs: ["max", "min"] }, { kind: "component", type: i6.TuiCalendar, selector: "tui-calendar:not([new])", inputs: ["minViewedMonth", "maxViewedMonth", "showAdjacent", "markerHandler", "initialView", "hoveredItem"], outputs: ["hoveredItemChange", "dayClick"] }, { kind: "directive", type: TuiDropdownSheet, selector: "[tuiDropdownSheet]", inputs: ["tuiDropdownSheet"] }] });
62
74
  }
63
75
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EzUIDateInput, decorators: [{
64
76
  type: Component,
65
77
  args: [{ selector: 'ezui-dateinput', imports: [
66
78
  FormsModule,
67
79
  TuiInput,
68
- TuiInputDate
80
+ TuiInputDate,
81
+ TuiDropdownSheet
69
82
  ], template: `
70
- <tui-textfield [tuiTextfieldSize]="size" [iconStart]="icon">
83
+ <tui-textfield [tuiTextfieldSize]="size" [iconStart]="icon" tuiDropdownSheet>
71
84
  @if(label){
72
85
  <label tuiLabel>{{label}}</label>
73
86
  }
74
- <input tuiInputDate [(ngModel)]="internalValue" (ngModelChange)="updateValue()" [disabled]="disabled" [min]="min ? TuiDay.fromLocalNativeDate(min) : null" [max]="max ? TuiDay.fromLocalNativeDate(max) : null"/>
87
+ <input tuiInputDate [(ngModel)]="internalValue" (ngModelChange)="updateValue()" [disabled]="disabled" [min]="toTuiDate(min)" [max]="toTuiDate(max)"/>
75
88
  <tui-calendar *tuiDropdown />
76
89
  </tui-textfield>
77
90
  ` }]
@@ -93,6 +106,186 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
93
106
  type: Output
94
107
  }] } });
95
108
 
109
+ class EzUIDateTimeInput {
110
+ icon = '';
111
+ label = '';
112
+ size = 'm';
113
+ disabled = false;
114
+ min = null;
115
+ max = null;
116
+ TuiDay = TuiDay;
117
+ TuiTime = TuiTime;
118
+ showDate = signal(true, /* @ts-ignore */
119
+ ...(ngDevMode ? [{ debugName: "showDate" }] : /* istanbul ignore next */ []));
120
+ value = new Date();
121
+ valueChange = new EventEmitter();
122
+ internalValue = signal(null, /* @ts-ignore */
123
+ ...(ngDevMode ? [{ debugName: "internalValue" }] : /* istanbul ignore next */ []));
124
+ ngOnChanges(changes) {
125
+ if (changes['value'] && changes['value'].currentValue != changes['value'].previousValue) {
126
+ this.value = changes['value'].currentValue;
127
+ this.internalValue.set(this.toTuiDateTime(this.value));
128
+ const internal = this.internalValue();
129
+ if (!internal || !internal[1])
130
+ this.showDate.set(true);
131
+ }
132
+ }
133
+ updateValue() {
134
+ if (this.internalValue) {
135
+ let internal = this.internalValue();
136
+ if (internal) {
137
+ if (!internal[1]) {
138
+ internal[1] = new TuiTime(0, 0);
139
+ this.internalValue.set(internal);
140
+ }
141
+ this.value = this.fromTuiDateTime(this.internalValue());
142
+ }
143
+ else {
144
+ this.value = null;
145
+ }
146
+ this.valueChange.emit(this.value);
147
+ }
148
+ }
149
+ toTuiDateTime(date) {
150
+ if (date)
151
+ return [TuiDay.fromUtcNativeDate(date), TuiTime.fromLocalNativeDate(date)];
152
+ return null;
153
+ }
154
+ fromTuiDateTime(date) {
155
+ if (date) {
156
+ let value = date[0].toUtcNativeDate();
157
+ const { hours = 0, minutes = 0 } = date?.[1] ?? {};
158
+ value.setHours(hours, minutes);
159
+ return value;
160
+ }
161
+ return null;
162
+ }
163
+ setHours(value) {
164
+ let internal = this.internalValue();
165
+ if (internal && internal[1]) {
166
+ if (value > 23)
167
+ value = 0;
168
+ if (value < 0)
169
+ value = 23;
170
+ internal[1] = new TuiTime(value, internal[1].minutes);
171
+ this.internalValue.set(internal);
172
+ this.updateValue();
173
+ }
174
+ }
175
+ setMinutes(value) {
176
+ let internal = this.internalValue();
177
+ if (internal && internal[1]) {
178
+ if (value > 59)
179
+ value = 0;
180
+ if (value < 0)
181
+ value = 59;
182
+ internal[1] = new TuiTime(internal[1].hours, value);
183
+ this.internalValue.set(internal);
184
+ this.updateValue();
185
+ }
186
+ }
187
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EzUIDateTimeInput, deps: [], target: i0.ɵɵFactoryTarget.Component });
188
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.7", type: EzUIDateTimeInput, isStandalone: true, selector: "ezui-datetimeinput", inputs: { icon: "icon", label: "label", size: "size", disabled: "disabled", min: "min", max: "max", value: "value" }, outputs: { valueChange: "valueChange" }, usesOnChanges: true, ngImport: i0, template: `
189
+ <tui-textfield [tuiTextfieldSize]="size" [iconStart]="icon" tuiDropdownSheet>>
190
+ @if(label){
191
+ <label tuiLabel>{{label}}</label>
192
+ }
193
+ <input tuiInputDateTime [(ngModel)]="internalValue" (ngModelChange)="updateValue()" [disabled]="disabled" [min]="toTuiDateTime(min)" [max]="toTuiDateTime(max)"/>
194
+ <section *tuiDropdown class="datetime-dropdown">
195
+ @let internal = internalValue();
196
+ @if(showDate()){
197
+ @if(internal && internal[1]){
198
+ <button tuiButton iconStart="clock" (click)="showDate.set(false)" size="s">Set Time</button>
199
+ }
200
+
201
+ <tui-calendar/>
202
+ }
203
+ @else {
204
+ <button tuiButton iconStart="calendar" (click)="showDate.set(true)" size="s">Set Date</button>
205
+
206
+ @if(internal && internal[1]){
207
+ @let time = internal[1];
208
+ <div class="timeselector">
209
+ <div class="selector">
210
+ <button tuiButton (click)="setHours(time.hours + 1)" iconStart="plus" size="l"></button>
211
+ <span>{{time.hours}}</span>
212
+ <button tuiButton (click)="setHours(time.hours - 1)" iconStart="minus" size="l"></button>
213
+ </div>
214
+ <div class="selector">
215
+ <button tuiButton (click)="setMinutes(time.minutes + 1)" iconStart="plus" size="l"></button>
216
+ <span>{{time.minutes}}</span>
217
+ <button tuiButton (click)="setMinutes(time.minutes - 1)" iconStart="minus" size="l"></button>
218
+ </div>
219
+ </div>
220
+ }
221
+ }
222
+ </section>
223
+ </tui-textfield>
224
+ `, isInline: true, styles: [".datetime-dropdown{display:flex;flex-direction:column}.datetime-dropdown .timeselector{inline-size:12rem;display:flex;gap:10px;margin-top:10px;align-self:center}.datetime-dropdown .timeselector .selector{display:flex;flex-direction:column;align-self:center;width:100%}.datetime-dropdown .timeselector .selector span{text-align:center;font-size:40px}\n"], 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: "directive", type: i2.TuiLabel, selector: "label[tuiLabel]" }, { kind: "component", type: i3.TuiTextfieldComponent, selector: "tui-textfield:not([multi])", inputs: ["content", "filler"] }, { kind: "directive", type: i3.TuiTextfieldOptionsDirective, selector: "[tuiTextfieldAppearance],[tuiTextfieldSize],[tuiTextfieldCleaner]", inputs: ["tuiTextfieldAppearance", "tuiTextfieldSize", "tuiTextfieldCleaner"] }, { kind: "directive", type: i4.TuiDropdownContent, selector: "ng-template[tuiDropdown]" }, { kind: "directive", type: i4$1.TuiInputDateTimeDirective, selector: "input[tuiInputDateTime]", inputs: ["timeMode", "min", "max"] }, { kind: "component", type: i6.TuiCalendar, selector: "tui-calendar:not([new])", inputs: ["minViewedMonth", "maxViewedMonth", "showAdjacent", "markerHandler", "initialView", "hoveredItem"], outputs: ["hoveredItemChange", "dayClick"] }, { kind: "directive", type: TuiButton, selector: "a[tuiButton],button[tuiButton],a[tuiIconButton],button[tuiIconButton]", inputs: ["size"] }, { kind: "directive", type: TuiDropdownSheet, selector: "[tuiDropdownSheet]", inputs: ["tuiDropdownSheet"] }] });
225
+ }
226
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EzUIDateTimeInput, decorators: [{
227
+ type: Component,
228
+ args: [{ selector: 'ezui-datetimeinput', imports: [
229
+ FormsModule,
230
+ TuiInput,
231
+ TuiInputDateTime,
232
+ TuiButton,
233
+ TuiDropdownSheet
234
+ ], template: `
235
+ <tui-textfield [tuiTextfieldSize]="size" [iconStart]="icon" tuiDropdownSheet>>
236
+ @if(label){
237
+ <label tuiLabel>{{label}}</label>
238
+ }
239
+ <input tuiInputDateTime [(ngModel)]="internalValue" (ngModelChange)="updateValue()" [disabled]="disabled" [min]="toTuiDateTime(min)" [max]="toTuiDateTime(max)"/>
240
+ <section *tuiDropdown class="datetime-dropdown">
241
+ @let internal = internalValue();
242
+ @if(showDate()){
243
+ @if(internal && internal[1]){
244
+ <button tuiButton iconStart="clock" (click)="showDate.set(false)" size="s">Set Time</button>
245
+ }
246
+
247
+ <tui-calendar/>
248
+ }
249
+ @else {
250
+ <button tuiButton iconStart="calendar" (click)="showDate.set(true)" size="s">Set Date</button>
251
+
252
+ @if(internal && internal[1]){
253
+ @let time = internal[1];
254
+ <div class="timeselector">
255
+ <div class="selector">
256
+ <button tuiButton (click)="setHours(time.hours + 1)" iconStart="plus" size="l"></button>
257
+ <span>{{time.hours}}</span>
258
+ <button tuiButton (click)="setHours(time.hours - 1)" iconStart="minus" size="l"></button>
259
+ </div>
260
+ <div class="selector">
261
+ <button tuiButton (click)="setMinutes(time.minutes + 1)" iconStart="plus" size="l"></button>
262
+ <span>{{time.minutes}}</span>
263
+ <button tuiButton (click)="setMinutes(time.minutes - 1)" iconStart="minus" size="l"></button>
264
+ </div>
265
+ </div>
266
+ }
267
+ }
268
+ </section>
269
+ </tui-textfield>
270
+ `, styles: [".datetime-dropdown{display:flex;flex-direction:column}.datetime-dropdown .timeselector{inline-size:12rem;display:flex;gap:10px;margin-top:10px;align-self:center}.datetime-dropdown .timeselector .selector{display:flex;flex-direction:column;align-self:center;width:100%}.datetime-dropdown .timeselector .selector span{text-align:center;font-size:40px}\n"] }]
271
+ }], propDecorators: { icon: [{
272
+ type: Input
273
+ }], label: [{
274
+ type: Input
275
+ }], size: [{
276
+ type: Input
277
+ }], disabled: [{
278
+ type: Input
279
+ }], min: [{
280
+ type: Input
281
+ }], max: [{
282
+ type: Input
283
+ }], value: [{
284
+ type: Input
285
+ }], valueChange: [{
286
+ type: Output
287
+ }] } });
288
+
96
289
  class EzUIFileInput {
97
290
  files = signal([], /* @ts-ignore */
98
291
  ...(ngDevMode ? [{ debugName: "files" }] : /* istanbul ignore next */ []));
@@ -165,6 +358,1911 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
165
358
  }]
166
359
  }] });
167
360
 
361
+ const lucideicons = [
362
+ 'a-arrow-down',
363
+ 'a-arrow-up',
364
+ 'a-large-small',
365
+ 'accessibility',
366
+ 'activity',
367
+ 'ad',
368
+ 'air-vent',
369
+ 'airplay',
370
+ 'alarm-clock-check',
371
+ 'alarm-clock-minus',
372
+ 'alarm-clock-off',
373
+ 'alarm-clock-plus',
374
+ 'alarm-clock',
375
+ 'alarm-smoke',
376
+ 'album',
377
+ 'align-center-horizontal',
378
+ 'align-center-vertical',
379
+ 'align-end-horizontal',
380
+ 'align-end-vertical',
381
+ 'align-horizontal-distribute-center',
382
+ 'align-horizontal-distribute-end',
383
+ 'align-horizontal-distribute-start',
384
+ 'align-horizontal-justify-center',
385
+ 'align-horizontal-justify-end',
386
+ 'align-horizontal-justify-start',
387
+ 'align-horizontal-space-around',
388
+ 'align-horizontal-space-between',
389
+ 'align-start-horizontal',
390
+ 'align-start-vertical',
391
+ 'align-vertical-distribute-center',
392
+ 'align-vertical-distribute-end',
393
+ 'align-vertical-distribute-start',
394
+ 'align-vertical-justify-center',
395
+ 'align-vertical-justify-end',
396
+ 'align-vertical-justify-start',
397
+ 'align-vertical-space-around',
398
+ 'align-vertical-space-between',
399
+ 'ambulance',
400
+ 'ampersand',
401
+ 'ampersands',
402
+ 'amphora',
403
+ 'anchor',
404
+ 'angry',
405
+ 'annoyed',
406
+ 'antenna',
407
+ 'anvil',
408
+ 'aperture',
409
+ 'app-window-mac',
410
+ 'app-window',
411
+ 'apple',
412
+ 'archive-restore',
413
+ 'archive-x',
414
+ 'archive',
415
+ 'armchair',
416
+ 'arrow-big-down-dash',
417
+ 'arrow-big-down',
418
+ 'arrow-big-left-dash',
419
+ 'arrow-big-left',
420
+ 'arrow-big-right-dash',
421
+ 'arrow-big-right',
422
+ 'arrow-big-up-dash',
423
+ 'arrow-big-up',
424
+ 'arrow-down-0-1',
425
+ 'arrow-down-1-0',
426
+ 'arrow-down-a-z',
427
+ 'arrow-down-from-line',
428
+ 'arrow-down-left',
429
+ 'arrow-down-narrow-wide',
430
+ 'arrow-down-right',
431
+ 'arrow-down-to-dot',
432
+ 'arrow-down-to-line',
433
+ 'arrow-down-up',
434
+ 'arrow-down-wide-narrow',
435
+ 'arrow-down-z-a',
436
+ 'arrow-down',
437
+ 'arrow-left-from-line',
438
+ 'arrow-left-right',
439
+ 'arrow-left-to-line',
440
+ 'arrow-left',
441
+ 'arrow-right-from-line',
442
+ 'arrow-right-left',
443
+ 'arrow-right-to-line',
444
+ 'arrow-right',
445
+ 'arrow-up-0-1',
446
+ 'arrow-up-1-0',
447
+ 'arrow-up-a-z',
448
+ 'arrow-up-down',
449
+ 'arrow-up-from-dot',
450
+ 'arrow-up-from-line',
451
+ 'arrow-up-left',
452
+ 'arrow-up-narrow-wide',
453
+ 'arrow-up-right',
454
+ 'arrow-up-to-line',
455
+ 'arrow-up-wide-narrow',
456
+ 'arrow-up-z-a',
457
+ 'arrow-up',
458
+ 'arrows-up-from-line',
459
+ 'asterisk',
460
+ 'astroid',
461
+ 'at-sign',
462
+ 'atom',
463
+ 'audio-lines',
464
+ 'audio-waveform',
465
+ 'award',
466
+ 'axe',
467
+ 'axis-3d',
468
+ 'baby',
469
+ 'backpack',
470
+ 'badge-alert',
471
+ 'badge-cent',
472
+ 'badge-check',
473
+ 'badge-dollar-sign',
474
+ 'badge-euro',
475
+ 'badge-indian-rupee',
476
+ 'badge-info',
477
+ 'badge-japanese-yen',
478
+ 'badge-minus',
479
+ 'badge-percent',
480
+ 'badge-plus',
481
+ 'badge-pound-sterling',
482
+ 'badge-question-mark',
483
+ 'badge-russian-ruble',
484
+ 'badge-swiss-franc',
485
+ 'badge-turkish-lira',
486
+ 'badge-x',
487
+ 'badge',
488
+ 'baggage-claim',
489
+ 'balloon',
490
+ 'ban',
491
+ 'banana',
492
+ 'bandage',
493
+ 'banknote-arrow-down',
494
+ 'banknote-arrow-up',
495
+ 'banknote-check',
496
+ 'banknote-x',
497
+ 'banknote',
498
+ 'barcode',
499
+ 'barrel',
500
+ 'baseline',
501
+ 'bath',
502
+ 'battery-charging',
503
+ 'battery-full',
504
+ 'battery-low',
505
+ 'battery-medium',
506
+ 'battery-plus',
507
+ 'battery-warning',
508
+ 'battery',
509
+ 'beaker',
510
+ 'bean-off',
511
+ 'bean',
512
+ 'bed-double',
513
+ 'bed-single',
514
+ 'bed',
515
+ 'beef-off',
516
+ 'beef',
517
+ 'beer-off',
518
+ 'beer',
519
+ 'bell-check',
520
+ 'bell-dot',
521
+ 'bell-electric',
522
+ 'bell-minus',
523
+ 'bell-off',
524
+ 'bell-plus',
525
+ 'bell-ring',
526
+ 'bell',
527
+ 'between-horizontal-end',
528
+ 'between-horizontal-start',
529
+ 'between-vertical-end',
530
+ 'between-vertical-start',
531
+ 'biceps-flexed',
532
+ 'bike',
533
+ 'binary',
534
+ 'binoculars',
535
+ 'biohazard',
536
+ 'bird',
537
+ 'birdhouse',
538
+ 'bitcoin',
539
+ 'blend',
540
+ 'blender',
541
+ 'blinds',
542
+ 'blocks',
543
+ 'bluetooth-connected',
544
+ 'bluetooth-off',
545
+ 'bluetooth-searching',
546
+ 'bluetooth',
547
+ 'bold',
548
+ 'bolt',
549
+ 'bomb',
550
+ 'bone-fracture',
551
+ 'bone',
552
+ 'book-a',
553
+ 'book-alert',
554
+ 'book-audio',
555
+ 'book-check',
556
+ 'book-copy',
557
+ 'book-dashed',
558
+ 'book-down',
559
+ 'book-headphones',
560
+ 'book-heart',
561
+ 'book-image',
562
+ 'book-key',
563
+ 'book-lock',
564
+ 'book-marked',
565
+ 'book-minus',
566
+ 'book-open-check',
567
+ 'book-open-text',
568
+ 'book-open',
569
+ 'book-plus',
570
+ 'book-search',
571
+ 'book-text',
572
+ 'book-type',
573
+ 'book-up-2',
574
+ 'book-up',
575
+ 'book-user',
576
+ 'book-x',
577
+ 'book',
578
+ 'bookmark-check',
579
+ 'bookmark-minus',
580
+ 'bookmark-off',
581
+ 'bookmark-plus',
582
+ 'bookmark-x',
583
+ 'bookmark',
584
+ 'boom-box',
585
+ 'bot-message-square',
586
+ 'bot-off',
587
+ 'bot',
588
+ 'bottle-wine',
589
+ 'bow-arrow',
590
+ 'box',
591
+ 'boxes',
592
+ 'braces',
593
+ 'brackets',
594
+ 'brain-circuit',
595
+ 'brain-cog',
596
+ 'brain',
597
+ 'brick-wall-fire',
598
+ 'brick-wall-shield',
599
+ 'brick-wall',
600
+ 'briefcase-business',
601
+ 'briefcase-conveyor-belt',
602
+ 'briefcase-medical',
603
+ 'briefcase',
604
+ 'bring-to-front',
605
+ 'broccoli',
606
+ 'brush-cleaning',
607
+ 'brush',
608
+ 'bubbles',
609
+ 'bug-off',
610
+ 'bug-play',
611
+ 'bug',
612
+ 'building-2',
613
+ 'building',
614
+ 'bus-front',
615
+ 'bus',
616
+ 'cable-car',
617
+ 'cable',
618
+ 'cake-slice',
619
+ 'cake',
620
+ 'calculator',
621
+ 'calendar-1',
622
+ 'calendar-arrow-down',
623
+ 'calendar-arrow-up',
624
+ 'calendar-check-2',
625
+ 'calendar-check',
626
+ 'calendar-clock',
627
+ 'calendar-cog',
628
+ 'calendar-days',
629
+ 'calendar-fold',
630
+ 'calendar-heart',
631
+ 'calendar-minus-2',
632
+ 'calendar-minus',
633
+ 'calendar-off',
634
+ 'calendar-plus-2',
635
+ 'calendar-plus',
636
+ 'calendar-range',
637
+ 'calendar-search',
638
+ 'calendar-sync',
639
+ 'calendar-x-2',
640
+ 'calendar-x',
641
+ 'calendar',
642
+ 'calendars',
643
+ 'camera-off',
644
+ 'camera',
645
+ 'candy-cane',
646
+ 'candy-off',
647
+ 'candy',
648
+ 'cannabis-off',
649
+ 'cannabis',
650
+ 'captions-off',
651
+ 'captions',
652
+ 'car-front',
653
+ 'car-taxi-front',
654
+ 'car',
655
+ 'caravan',
656
+ 'card-sim',
657
+ 'carrot',
658
+ 'case-lower',
659
+ 'case-sensitive',
660
+ 'case-upper',
661
+ 'cassette-tape',
662
+ 'cast',
663
+ 'castle',
664
+ 'cat',
665
+ 'cctv-off',
666
+ 'cctv',
667
+ 'chart-area',
668
+ 'chart-bar-big',
669
+ 'chart-bar-decreasing',
670
+ 'chart-bar-increasing',
671
+ 'chart-bar-stacked',
672
+ 'chart-bar',
673
+ 'chart-candlestick',
674
+ 'chart-column-big',
675
+ 'chart-column-decreasing',
676
+ 'chart-column-increasing',
677
+ 'chart-column-stacked',
678
+ 'chart-column',
679
+ 'chart-gantt',
680
+ 'chart-line',
681
+ 'chart-network',
682
+ 'chart-no-axes-column-decreasing',
683
+ 'chart-no-axes-column-increasing',
684
+ 'chart-no-axes-column',
685
+ 'chart-no-axes-combined',
686
+ 'chart-no-axes-gantt',
687
+ 'chart-pie',
688
+ 'chart-scatter',
689
+ 'chart-spline',
690
+ 'check-check',
691
+ 'check-line',
692
+ 'check',
693
+ 'chef-hat',
694
+ 'cherry',
695
+ 'chess-bishop',
696
+ 'chess-king',
697
+ 'chess-knight',
698
+ 'chess-pawn',
699
+ 'chess-queen',
700
+ 'chess-rook',
701
+ 'chevron-down',
702
+ 'chevron-first',
703
+ 'chevron-last',
704
+ 'chevron-left',
705
+ 'chevron-right',
706
+ 'chevron-up',
707
+ 'chevrons-down-up',
708
+ 'chevrons-down',
709
+ 'chevrons-left-right-ellipsis',
710
+ 'chevrons-left-right',
711
+ 'chevrons-left',
712
+ 'chevrons-right-left',
713
+ 'chevrons-right',
714
+ 'chevrons-up-down',
715
+ 'chevrons-up',
716
+ 'church',
717
+ 'cigarette-off',
718
+ 'cigarette',
719
+ 'circle-alert',
720
+ 'circle-arrow-down',
721
+ 'circle-arrow-left',
722
+ 'circle-arrow-out-down-left',
723
+ 'circle-arrow-out-down-right',
724
+ 'circle-arrow-out-up-left',
725
+ 'circle-arrow-out-up-right',
726
+ 'circle-arrow-right',
727
+ 'circle-arrow-up',
728
+ 'circle-check-big',
729
+ 'circle-check',
730
+ 'circle-chevron-down',
731
+ 'circle-chevron-left',
732
+ 'circle-chevron-right',
733
+ 'circle-chevron-up',
734
+ 'circle-dashed',
735
+ 'circle-divide',
736
+ 'circle-dollar-sign',
737
+ 'circle-dot-dashed',
738
+ 'circle-dot',
739
+ 'circle-ellipsis',
740
+ 'circle-equal',
741
+ 'circle-euro',
742
+ 'circle-fading-arrow-up',
743
+ 'circle-fading-plus',
744
+ 'circle-gauge',
745
+ 'circle-minus',
746
+ 'circle-off',
747
+ 'circle-parking-off',
748
+ 'circle-parking',
749
+ 'circle-pause',
750
+ 'circle-percent',
751
+ 'circle-pile',
752
+ 'circle-play',
753
+ 'circle-plus',
754
+ 'circle-pound-sterling',
755
+ 'circle-power',
756
+ 'circle-question-mark',
757
+ 'circle-slash-2',
758
+ 'circle-slash',
759
+ 'circle-small',
760
+ 'circle-star',
761
+ 'circle-stop',
762
+ 'circle-user-round',
763
+ 'circle-user',
764
+ 'circle-x',
765
+ 'circle',
766
+ 'circuit-board',
767
+ 'citrus',
768
+ 'clapperboard',
769
+ 'clipboard-check',
770
+ 'clipboard-clock',
771
+ 'clipboard-copy',
772
+ 'clipboard-list',
773
+ 'clipboard-minus',
774
+ 'clipboard-paste',
775
+ 'clipboard-pen-line',
776
+ 'clipboard-pen',
777
+ 'clipboard-plus',
778
+ 'clipboard-type',
779
+ 'clipboard-x',
780
+ 'clipboard',
781
+ 'clock-1',
782
+ 'clock-10',
783
+ 'clock-11',
784
+ 'clock-12',
785
+ 'clock-2',
786
+ 'clock-3',
787
+ 'clock-4',
788
+ 'clock-5',
789
+ 'clock-6',
790
+ 'clock-7',
791
+ 'clock-8',
792
+ 'clock-9',
793
+ 'clock-alert',
794
+ 'clock-arrow-down',
795
+ 'clock-arrow-left',
796
+ 'clock-arrow-right',
797
+ 'clock-arrow-up',
798
+ 'clock-check',
799
+ 'clock-fading',
800
+ 'clock-plus',
801
+ 'clock',
802
+ 'closed-caption',
803
+ 'cloud-alert',
804
+ 'cloud-backup',
805
+ 'cloud-check',
806
+ 'cloud-cog',
807
+ 'cloud-download',
808
+ 'cloud-drizzle',
809
+ 'cloud-fog',
810
+ 'cloud-hail',
811
+ 'cloud-lightning',
812
+ 'cloud-moon-rain',
813
+ 'cloud-moon',
814
+ 'cloud-off',
815
+ 'cloud-rain-wind',
816
+ 'cloud-rain',
817
+ 'cloud-snow',
818
+ 'cloud-sun-rain',
819
+ 'cloud-sun',
820
+ 'cloud-sync',
821
+ 'cloud-upload',
822
+ 'cloud',
823
+ 'cloudy',
824
+ 'clover',
825
+ 'club',
826
+ 'code-xml',
827
+ 'code',
828
+ 'coffee',
829
+ 'cog',
830
+ 'coins',
831
+ 'columns-2',
832
+ 'columns-3-cog',
833
+ 'columns-3',
834
+ 'columns-4',
835
+ 'combine',
836
+ 'command',
837
+ 'compass',
838
+ 'component',
839
+ 'computer',
840
+ 'concierge-bell',
841
+ 'cone',
842
+ 'construction',
843
+ 'contact-round',
844
+ 'contact',
845
+ 'container',
846
+ 'contrast',
847
+ 'cookie',
848
+ 'cooking-pot',
849
+ 'copy-check',
850
+ 'copy-minus',
851
+ 'copy-plus',
852
+ 'copy-slash',
853
+ 'copy-x',
854
+ 'copy',
855
+ 'copyleft',
856
+ 'copyright',
857
+ 'corner-down-left',
858
+ 'corner-down-right',
859
+ 'corner-left-down',
860
+ 'corner-left-up',
861
+ 'corner-right-down',
862
+ 'corner-right-up',
863
+ 'corner-up-left',
864
+ 'corner-up-right',
865
+ 'cpu',
866
+ 'creative-commons',
867
+ 'credit-card',
868
+ 'croissant',
869
+ 'crop',
870
+ 'cross',
871
+ 'crosshair',
872
+ 'crown',
873
+ 'cuboid',
874
+ 'cup-soda',
875
+ 'currency',
876
+ 'cylinder',
877
+ 'dam',
878
+ 'database-arrow-down',
879
+ 'database-arrow-up',
880
+ 'database-backup',
881
+ 'database-check',
882
+ 'database-minus',
883
+ 'database-plus',
884
+ 'database-search',
885
+ 'database-x',
886
+ 'database-zap',
887
+ 'database',
888
+ 'decimals-arrow-left',
889
+ 'decimals-arrow-right',
890
+ 'delete',
891
+ 'dessert',
892
+ 'diameter',
893
+ 'diamond-minus',
894
+ 'diamond-percent',
895
+ 'diamond-plus',
896
+ 'diamond',
897
+ 'dice-1',
898
+ 'dice-2',
899
+ 'dice-3',
900
+ 'dice-4',
901
+ 'dice-5',
902
+ 'dice-6',
903
+ 'dices',
904
+ 'diff',
905
+ 'disc-2',
906
+ 'disc-3',
907
+ 'disc-album',
908
+ 'disc',
909
+ 'divide',
910
+ 'dna-off',
911
+ 'dna',
912
+ 'dock',
913
+ 'dog',
914
+ 'dollar-sign',
915
+ 'donut',
916
+ 'door-closed-locked',
917
+ 'door-closed',
918
+ 'door-open',
919
+ 'dot',
920
+ 'download',
921
+ 'drafting-compass',
922
+ 'drama',
923
+ 'drill',
924
+ 'drone',
925
+ 'droplet-off',
926
+ 'droplet',
927
+ 'droplets',
928
+ 'drum',
929
+ 'drumstick',
930
+ 'dumbbell',
931
+ 'ear-off',
932
+ 'ear',
933
+ 'earth-lock',
934
+ 'earth',
935
+ 'eclipse',
936
+ 'egg-fried',
937
+ 'egg-off',
938
+ 'egg',
939
+ 'ellipse',
940
+ 'ellipsis-vertical',
941
+ 'ellipsis',
942
+ 'equal-approximately',
943
+ 'equal-not',
944
+ 'equal',
945
+ 'eraser',
946
+ 'ethernet-port',
947
+ 'euro',
948
+ 'ev-charger',
949
+ 'expand',
950
+ 'external-link',
951
+ 'eye-closed',
952
+ 'eye-dashed',
953
+ 'eye-off',
954
+ 'eye',
955
+ 'factory',
956
+ 'fan',
957
+ 'fast-forward',
958
+ 'feather',
959
+ 'fence',
960
+ 'ferris-wheel',
961
+ 'file-archive',
962
+ 'file-axis-3d',
963
+ 'file-badge',
964
+ 'file-box',
965
+ 'file-braces-corner',
966
+ 'file-braces',
967
+ 'file-chart-column-increasing',
968
+ 'file-chart-column',
969
+ 'file-chart-line',
970
+ 'file-chart-pie',
971
+ 'file-check-corner',
972
+ 'file-check',
973
+ 'file-clock',
974
+ 'file-code-corner',
975
+ 'file-code',
976
+ 'file-cog',
977
+ 'file-diff',
978
+ 'file-digit',
979
+ 'file-down',
980
+ 'file-exclamation-point',
981
+ 'file-headphone',
982
+ 'file-heart',
983
+ 'file-image',
984
+ 'file-input',
985
+ 'file-key',
986
+ 'file-lock',
987
+ 'file-minus-corner',
988
+ 'file-minus',
989
+ 'file-music',
990
+ 'file-output',
991
+ 'file-pen-line',
992
+ 'file-pen',
993
+ 'file-play',
994
+ 'file-plus-corner',
995
+ 'file-plus',
996
+ 'file-question-mark',
997
+ 'file-scan',
998
+ 'file-search-corner',
999
+ 'file-search',
1000
+ 'file-signal',
1001
+ 'file-sliders',
1002
+ 'file-spreadsheet',
1003
+ 'file-stack',
1004
+ 'file-symlink',
1005
+ 'file-terminal',
1006
+ 'file-text',
1007
+ 'file-type-corner',
1008
+ 'file-type',
1009
+ 'file-up',
1010
+ 'file-user',
1011
+ 'file-video-camera',
1012
+ 'file-volume',
1013
+ 'file-x-corner',
1014
+ 'file-x',
1015
+ 'file',
1016
+ 'files',
1017
+ 'film',
1018
+ 'fingerprint-pattern',
1019
+ 'fire-extinguisher',
1020
+ 'fish-off',
1021
+ 'fish-symbol',
1022
+ 'fish',
1023
+ 'fishing-hook',
1024
+ 'fishing-rod',
1025
+ 'flag-off',
1026
+ 'flag-triangle-left',
1027
+ 'flag-triangle-right',
1028
+ 'flag',
1029
+ 'flame-kindling',
1030
+ 'flame',
1031
+ 'flashlight-off',
1032
+ 'flashlight',
1033
+ 'flask-conical-off',
1034
+ 'flask-conical',
1035
+ 'flask-round',
1036
+ 'flip-horizontal-2',
1037
+ 'flip-vertical-2',
1038
+ 'flower-2',
1039
+ 'flower',
1040
+ 'focus',
1041
+ 'fold-horizontal',
1042
+ 'fold-vertical',
1043
+ 'folder-archive',
1044
+ 'folder-bookmark',
1045
+ 'folder-check',
1046
+ 'folder-clock',
1047
+ 'folder-closed',
1048
+ 'folder-code',
1049
+ 'folder-cog',
1050
+ 'folder-dot',
1051
+ 'folder-down',
1052
+ 'folder-git-2',
1053
+ 'folder-git',
1054
+ 'folder-heart',
1055
+ 'folder-input',
1056
+ 'folder-kanban',
1057
+ 'folder-key',
1058
+ 'folder-lock',
1059
+ 'folder-minus',
1060
+ 'folder-open-dot',
1061
+ 'folder-open',
1062
+ 'folder-output',
1063
+ 'folder-pen',
1064
+ 'folder-plus',
1065
+ 'folder-root',
1066
+ 'folder-search-2',
1067
+ 'folder-search',
1068
+ 'folder-symlink',
1069
+ 'folder-sync',
1070
+ 'folder-tree',
1071
+ 'folder-up',
1072
+ 'folder-x',
1073
+ 'folder',
1074
+ 'folders',
1075
+ 'footprints',
1076
+ 'forklift',
1077
+ 'form',
1078
+ 'forward',
1079
+ 'frame',
1080
+ 'frown',
1081
+ 'fuel',
1082
+ 'fullscreen',
1083
+ 'funnel-plus',
1084
+ 'funnel-x',
1085
+ 'funnel',
1086
+ 'gallery-horizontal-end',
1087
+ 'gallery-horizontal',
1088
+ 'gallery-thumbnails',
1089
+ 'gallery-vertical-end',
1090
+ 'gallery-vertical',
1091
+ 'gamepad-2',
1092
+ 'gamepad-directional',
1093
+ 'gamepad',
1094
+ 'gauge',
1095
+ 'gavel',
1096
+ 'gem',
1097
+ 'georgian-lari',
1098
+ 'ghost',
1099
+ 'gift',
1100
+ 'git-branch-minus',
1101
+ 'git-branch-plus',
1102
+ 'git-branch',
1103
+ 'git-commit-horizontal',
1104
+ 'git-commit-vertical',
1105
+ 'git-compare-arrows',
1106
+ 'git-compare',
1107
+ 'git-fork',
1108
+ 'git-graph',
1109
+ 'git-merge-conflict',
1110
+ 'git-merge',
1111
+ 'git-pull-request-arrow',
1112
+ 'git-pull-request-closed',
1113
+ 'git-pull-request-create-arrow',
1114
+ 'git-pull-request-create',
1115
+ 'git-pull-request-draft',
1116
+ 'git-pull-request',
1117
+ 'glass-water',
1118
+ 'glasses',
1119
+ 'globe-check',
1120
+ 'globe-lock',
1121
+ 'globe-off',
1122
+ 'globe-x',
1123
+ 'globe',
1124
+ 'goal',
1125
+ 'gpu',
1126
+ 'graduation-cap',
1127
+ 'grape',
1128
+ 'grid-2x2-check',
1129
+ 'grid-2x2-plus',
1130
+ 'grid-2x2-x',
1131
+ 'grid-2x2',
1132
+ 'grid-3x2',
1133
+ 'grid-3x3',
1134
+ 'grip-horizontal',
1135
+ 'grip-vertical',
1136
+ 'grip',
1137
+ 'group',
1138
+ 'guitar',
1139
+ 'ham',
1140
+ 'hamburger',
1141
+ 'hammer',
1142
+ 'hand-coins',
1143
+ 'hand-fist',
1144
+ 'hand-grab',
1145
+ 'hand-heart',
1146
+ 'hand-helping',
1147
+ 'hand-metal',
1148
+ 'hand-platter',
1149
+ 'hand',
1150
+ 'handbag',
1151
+ 'handshake',
1152
+ 'hard-drive-download',
1153
+ 'hard-drive-upload',
1154
+ 'hard-drive',
1155
+ 'hard-hat',
1156
+ 'hash',
1157
+ 'hat-glasses',
1158
+ 'haze',
1159
+ 'hd',
1160
+ 'hdmi-port',
1161
+ 'heading-1',
1162
+ 'heading-2',
1163
+ 'heading-3',
1164
+ 'heading-4',
1165
+ 'heading-5',
1166
+ 'heading-6',
1167
+ 'heading',
1168
+ 'headphone-off',
1169
+ 'headphones',
1170
+ 'headset',
1171
+ 'heart-crack',
1172
+ 'heart-handshake',
1173
+ 'heart-minus',
1174
+ 'heart-off',
1175
+ 'heart-plus',
1176
+ 'heart-pulse',
1177
+ 'heart-x',
1178
+ 'heart',
1179
+ 'heater',
1180
+ 'helicopter',
1181
+ 'hexagon',
1182
+ 'highlighter',
1183
+ 'history',
1184
+ 'hop-off',
1185
+ 'hop',
1186
+ 'hospital',
1187
+ 'hotel',
1188
+ 'hourglass',
1189
+ 'house-heart',
1190
+ 'house-plug',
1191
+ 'house-plus',
1192
+ 'house-wifi',
1193
+ 'house',
1194
+ 'ice-cream-bowl',
1195
+ 'ice-cream-cone',
1196
+ 'id-card-lanyard',
1197
+ 'id-card',
1198
+ 'image-down',
1199
+ 'image-minus',
1200
+ 'image-off',
1201
+ 'image-play',
1202
+ 'image-plus',
1203
+ 'image-up',
1204
+ 'image-upscale',
1205
+ 'image',
1206
+ 'images',
1207
+ 'import',
1208
+ 'inbox',
1209
+ 'indian-rupee',
1210
+ 'infinity',
1211
+ 'info',
1212
+ 'inspection-panel',
1213
+ 'italic',
1214
+ 'iteration-ccw',
1215
+ 'iteration-cw',
1216
+ 'japanese-yen',
1217
+ 'joystick',
1218
+ 'kanban',
1219
+ 'kayak',
1220
+ 'key-round',
1221
+ 'key-square',
1222
+ 'key',
1223
+ 'keyboard-music',
1224
+ 'keyboard-off',
1225
+ 'keyboard',
1226
+ 'lamp-ceiling',
1227
+ 'lamp-desk',
1228
+ 'lamp-floor',
1229
+ 'lamp-wall-down',
1230
+ 'lamp-wall-up',
1231
+ 'lamp',
1232
+ 'land-plot',
1233
+ 'landmark',
1234
+ 'languages',
1235
+ 'laptop-minimal-check',
1236
+ 'laptop-minimal',
1237
+ 'laptop',
1238
+ 'lasso-select',
1239
+ 'lasso',
1240
+ 'laugh',
1241
+ 'layers-2',
1242
+ 'layers-minus',
1243
+ 'layers-plus',
1244
+ 'layers',
1245
+ 'layout-dashboard',
1246
+ 'layout-grid',
1247
+ 'layout-list',
1248
+ 'layout-panel-left',
1249
+ 'layout-panel-top',
1250
+ 'layout-template',
1251
+ 'leaf',
1252
+ 'leafy-green',
1253
+ 'lectern',
1254
+ 'lens-concave',
1255
+ 'lens-convex',
1256
+ 'library-big',
1257
+ 'library',
1258
+ 'life-buoy',
1259
+ 'ligature',
1260
+ 'lightbulb-off',
1261
+ 'lightbulb',
1262
+ 'line-dot-right-horizontal',
1263
+ 'line-squiggle',
1264
+ 'line-style',
1265
+ 'link-2-off',
1266
+ 'link-2',
1267
+ 'link',
1268
+ 'list-check',
1269
+ 'list-checks',
1270
+ 'list-chevrons-down-up',
1271
+ 'list-chevrons-up-down',
1272
+ 'list-collapse',
1273
+ 'list-end',
1274
+ 'list-filter-plus',
1275
+ 'list-filter',
1276
+ 'list-indent-decrease',
1277
+ 'list-indent-increase',
1278
+ 'list-minus',
1279
+ 'list-music',
1280
+ 'list-ordered',
1281
+ 'list-plus',
1282
+ 'list-restart',
1283
+ 'list-sort-ascending',
1284
+ 'list-sort-descending',
1285
+ 'list-start',
1286
+ 'list-todo',
1287
+ 'list-tree',
1288
+ 'list-video',
1289
+ 'list-x',
1290
+ 'list',
1291
+ 'loader-circle',
1292
+ 'loader-pinwheel',
1293
+ 'loader',
1294
+ 'locate-fixed',
1295
+ 'locate-off',
1296
+ 'locate',
1297
+ 'lock-keyhole-open',
1298
+ 'lock-keyhole',
1299
+ 'lock-open',
1300
+ 'lock',
1301
+ 'log-in',
1302
+ 'log-out',
1303
+ 'logs',
1304
+ 'lollipop',
1305
+ 'luggage',
1306
+ 'magnet',
1307
+ 'mail-check',
1308
+ 'mail-minus',
1309
+ 'mail-open',
1310
+ 'mail-plus',
1311
+ 'mail-question-mark',
1312
+ 'mail-search',
1313
+ 'mail-warning',
1314
+ 'mail-x',
1315
+ 'mail',
1316
+ 'mailbox',
1317
+ 'mails',
1318
+ 'map-minus',
1319
+ 'map-pin-check-inside',
1320
+ 'map-pin-check',
1321
+ 'map-pin-house',
1322
+ 'map-pin-minus-inside',
1323
+ 'map-pin-minus',
1324
+ 'map-pin-off',
1325
+ 'map-pin-pen',
1326
+ 'map-pin-plus-inside',
1327
+ 'map-pin-plus',
1328
+ 'map-pin-search',
1329
+ 'map-pin-x-inside',
1330
+ 'map-pin-x',
1331
+ 'map-pin',
1332
+ 'map-pinned',
1333
+ 'map-plus',
1334
+ 'map',
1335
+ 'mars-stroke',
1336
+ 'mars',
1337
+ 'martini',
1338
+ 'maximize-2',
1339
+ 'maximize',
1340
+ 'medal',
1341
+ 'megaphone-off',
1342
+ 'megaphone',
1343
+ 'meh',
1344
+ 'memory-stick',
1345
+ 'menu',
1346
+ 'merge',
1347
+ 'message-circle-check',
1348
+ 'message-circle-code',
1349
+ 'message-circle-dashed',
1350
+ 'message-circle-heart',
1351
+ 'message-circle-more',
1352
+ 'message-circle-off',
1353
+ 'message-circle-plus',
1354
+ 'message-circle-question-mark',
1355
+ 'message-circle-reply',
1356
+ 'message-circle-warning',
1357
+ 'message-circle-x',
1358
+ 'message-circle',
1359
+ 'message-square-check',
1360
+ 'message-square-code',
1361
+ 'message-square-dashed',
1362
+ 'message-square-diff',
1363
+ 'message-square-dot',
1364
+ 'message-square-heart',
1365
+ 'message-square-lock',
1366
+ 'message-square-more',
1367
+ 'message-square-off',
1368
+ 'message-square-plus',
1369
+ 'message-square-quote',
1370
+ 'message-square-reply',
1371
+ 'message-square-share',
1372
+ 'message-square-text',
1373
+ 'message-square-warning',
1374
+ 'message-square-x',
1375
+ 'message-square',
1376
+ 'messages-square',
1377
+ 'metronome',
1378
+ 'mic-off',
1379
+ 'mic-vocal',
1380
+ 'mic',
1381
+ 'microchip',
1382
+ 'microscope',
1383
+ 'microwave',
1384
+ 'milestone',
1385
+ 'milk-off',
1386
+ 'milk',
1387
+ 'minimize-2',
1388
+ 'minimize',
1389
+ 'minus',
1390
+ 'mirror-rectangular',
1391
+ 'mirror-round',
1392
+ 'monitor-check',
1393
+ 'monitor-cloud',
1394
+ 'monitor-cog',
1395
+ 'monitor-dot',
1396
+ 'monitor-down',
1397
+ 'monitor-off',
1398
+ 'monitor-pause',
1399
+ 'monitor-play',
1400
+ 'monitor-smartphone',
1401
+ 'monitor-speaker',
1402
+ 'monitor-stop',
1403
+ 'monitor-up',
1404
+ 'monitor-x',
1405
+ 'monitor',
1406
+ 'moon-star',
1407
+ 'moon',
1408
+ 'motorbike',
1409
+ 'mountain-snow',
1410
+ 'mountain',
1411
+ 'mouse-left',
1412
+ 'mouse-off',
1413
+ 'mouse-pointer-2-off',
1414
+ 'mouse-pointer-2',
1415
+ 'mouse-pointer-ban',
1416
+ 'mouse-pointer-click',
1417
+ 'mouse-pointer',
1418
+ 'mouse-right',
1419
+ 'mouse',
1420
+ 'move-3d',
1421
+ 'move-diagonal-2',
1422
+ 'move-diagonal',
1423
+ 'move-down-left',
1424
+ 'move-down-right',
1425
+ 'move-down',
1426
+ 'move-horizontal',
1427
+ 'move-left',
1428
+ 'move-right',
1429
+ 'move-up-left',
1430
+ 'move-up-right',
1431
+ 'move-up',
1432
+ 'move-vertical',
1433
+ 'move',
1434
+ 'music-2',
1435
+ 'music-3',
1436
+ 'music-4',
1437
+ 'music',
1438
+ 'navigation-2-off',
1439
+ 'navigation-2',
1440
+ 'navigation-off',
1441
+ 'navigation',
1442
+ 'network',
1443
+ 'newspaper',
1444
+ 'nfc',
1445
+ 'non-binary',
1446
+ 'notebook-pen',
1447
+ 'notebook-tabs',
1448
+ 'notebook-text',
1449
+ 'notebook',
1450
+ 'notepad-text-dashed',
1451
+ 'notepad-text',
1452
+ 'nut-off',
1453
+ 'nut',
1454
+ 'octagon-alert',
1455
+ 'octagon-minus',
1456
+ 'octagon-pause',
1457
+ 'octagon-x',
1458
+ 'octagon',
1459
+ 'omega',
1460
+ 'option',
1461
+ 'orbit',
1462
+ 'origami',
1463
+ 'package-2',
1464
+ 'package-check',
1465
+ 'package-minus',
1466
+ 'package-open',
1467
+ 'package-plus',
1468
+ 'package-search',
1469
+ 'package-x',
1470
+ 'package',
1471
+ 'paint-bucket',
1472
+ 'paint-roller',
1473
+ 'paintbrush-vertical',
1474
+ 'paintbrush',
1475
+ 'palette',
1476
+ 'panda',
1477
+ 'panel-bottom-close',
1478
+ 'panel-bottom-dashed',
1479
+ 'panel-bottom-open',
1480
+ 'panel-bottom',
1481
+ 'panel-left-close',
1482
+ 'panel-left-dashed',
1483
+ 'panel-left-open',
1484
+ 'panel-left-right-dashed',
1485
+ 'panel-left',
1486
+ 'panel-right-close',
1487
+ 'panel-right-dashed',
1488
+ 'panel-right-open',
1489
+ 'panel-right',
1490
+ 'panel-top-bottom-dashed',
1491
+ 'panel-top-close',
1492
+ 'panel-top-dashed',
1493
+ 'panel-top-open',
1494
+ 'panel-top',
1495
+ 'panels-left-bottom',
1496
+ 'panels-right-bottom',
1497
+ 'panels-top-left',
1498
+ 'paper-bag',
1499
+ 'paperclip',
1500
+ 'parasol',
1501
+ 'parentheses',
1502
+ 'parking-meter',
1503
+ 'party-popper',
1504
+ 'pause',
1505
+ 'paw-print',
1506
+ 'pc-case',
1507
+ 'pen-line',
1508
+ 'pen-off',
1509
+ 'pen-tool',
1510
+ 'pen',
1511
+ 'pencil-line',
1512
+ 'pencil-off',
1513
+ 'pencil-ruler',
1514
+ 'pencil-sparkles',
1515
+ 'pencil',
1516
+ 'pentagon',
1517
+ 'percent',
1518
+ 'person-standing',
1519
+ 'phi',
1520
+ 'philippine-peso',
1521
+ 'phone-call',
1522
+ 'phone-forwarded',
1523
+ 'phone-incoming',
1524
+ 'phone-missed',
1525
+ 'phone-off',
1526
+ 'phone-outgoing',
1527
+ 'phone',
1528
+ 'pi',
1529
+ 'piano',
1530
+ 'pickaxe',
1531
+ 'picture-in-picture-2',
1532
+ 'picture-in-picture',
1533
+ 'piggy-bank',
1534
+ 'pilcrow-left',
1535
+ 'pilcrow-right',
1536
+ 'pilcrow',
1537
+ 'pill-bottle',
1538
+ 'pill',
1539
+ 'pin-off',
1540
+ 'pin',
1541
+ 'pipette',
1542
+ 'pizza',
1543
+ 'plane-landing',
1544
+ 'plane-takeoff',
1545
+ 'plane',
1546
+ 'play-off',
1547
+ 'play',
1548
+ 'plug-2',
1549
+ 'plug-zap',
1550
+ 'plug',
1551
+ 'plus',
1552
+ 'pocket-knife',
1553
+ 'podcast',
1554
+ 'podium',
1555
+ 'pointer-off',
1556
+ 'pointer',
1557
+ 'popcorn',
1558
+ 'popsicle',
1559
+ 'pound-sterling',
1560
+ 'power-off',
1561
+ 'power',
1562
+ 'presentation',
1563
+ 'printer-check',
1564
+ 'printer-x',
1565
+ 'printer',
1566
+ 'projector',
1567
+ 'proportions',
1568
+ 'puzzle',
1569
+ 'pyramid',
1570
+ 'qr-code',
1571
+ 'quote',
1572
+ 'rabbit',
1573
+ 'radar',
1574
+ 'radiation',
1575
+ 'radical',
1576
+ 'radio-off',
1577
+ 'radio-receiver',
1578
+ 'radio-tower',
1579
+ 'radio',
1580
+ 'radius',
1581
+ 'rainbow',
1582
+ 'rat',
1583
+ 'ratio',
1584
+ 'receipt-cent',
1585
+ 'receipt-euro',
1586
+ 'receipt-indian-rupee',
1587
+ 'receipt-japanese-yen',
1588
+ 'receipt-pound-sterling',
1589
+ 'receipt-russian-ruble',
1590
+ 'receipt-swiss-franc',
1591
+ 'receipt-text',
1592
+ 'receipt-turkish-lira',
1593
+ 'receipt',
1594
+ 'rectangle-circle',
1595
+ 'rectangle-ellipsis',
1596
+ 'rectangle-goggles',
1597
+ 'rectangle-horizontal',
1598
+ 'rectangle-vertical',
1599
+ 'recycle',
1600
+ 'redo-2',
1601
+ 'redo-dot',
1602
+ 'redo',
1603
+ 'refresh-ccw-dot',
1604
+ 'refresh-ccw',
1605
+ 'refresh-cw-off',
1606
+ 'refresh-cw',
1607
+ 'refrigerator',
1608
+ 'regex',
1609
+ 'remove-formatting',
1610
+ 'repeat-1',
1611
+ 'repeat-2',
1612
+ 'repeat-off',
1613
+ 'repeat',
1614
+ 'replace-all',
1615
+ 'replace',
1616
+ 'reply-all',
1617
+ 'reply',
1618
+ 'rewind',
1619
+ 'ribbon',
1620
+ 'road',
1621
+ 'rocket',
1622
+ 'rocking-chair',
1623
+ 'roller-coaster',
1624
+ 'rose',
1625
+ 'rotate-3d',
1626
+ 'rotate-ccw-key',
1627
+ 'rotate-ccw-square',
1628
+ 'rotate-ccw',
1629
+ 'rotate-cw-square',
1630
+ 'rotate-cw',
1631
+ 'route-off',
1632
+ 'route',
1633
+ 'router',
1634
+ 'rows-2',
1635
+ 'rows-3',
1636
+ 'rows-4',
1637
+ 'rss',
1638
+ 'ruler-dimension-line',
1639
+ 'ruler',
1640
+ 'russian-ruble',
1641
+ 'sailboat',
1642
+ 'salad',
1643
+ 'sandwich',
1644
+ 'satellite-dish',
1645
+ 'satellite',
1646
+ 'saudi-riyal',
1647
+ 'save-all',
1648
+ 'save-check',
1649
+ 'save-off',
1650
+ 'save-pen',
1651
+ 'save-plus',
1652
+ 'save',
1653
+ 'scale-3d',
1654
+ 'scale',
1655
+ 'scaling',
1656
+ 'scan-barcode',
1657
+ 'scan-box',
1658
+ 'scan-eye',
1659
+ 'scan-face',
1660
+ 'scan-heart',
1661
+ 'scan-line',
1662
+ 'scan-qr-code',
1663
+ 'scan-search',
1664
+ 'scan-text',
1665
+ 'scan',
1666
+ 'school',
1667
+ 'scissors-line-dashed',
1668
+ 'scissors',
1669
+ 'scooter',
1670
+ 'screen-share-off',
1671
+ 'screen-share',
1672
+ 'scroll-text',
1673
+ 'scroll',
1674
+ 'search-alert',
1675
+ 'search-check',
1676
+ 'search-code',
1677
+ 'search-slash',
1678
+ 'search-x',
1679
+ 'search',
1680
+ 'section',
1681
+ 'send-horizontal',
1682
+ 'send-to-back',
1683
+ 'send',
1684
+ 'separator-horizontal',
1685
+ 'separator-vertical',
1686
+ 'server-cog',
1687
+ 'server-crash',
1688
+ 'server-off',
1689
+ 'server',
1690
+ 'settings-2',
1691
+ 'settings',
1692
+ 'shapes',
1693
+ 'share-2',
1694
+ 'share',
1695
+ 'sheet',
1696
+ 'shell',
1697
+ 'shelving-unit',
1698
+ 'shield-alert',
1699
+ 'shield-ban',
1700
+ 'shield-check',
1701
+ 'shield-cog-corner',
1702
+ 'shield-cog',
1703
+ 'shield-ellipsis',
1704
+ 'shield-half',
1705
+ 'shield-minus',
1706
+ 'shield-off',
1707
+ 'shield-plus',
1708
+ 'shield-question-mark',
1709
+ 'shield-user',
1710
+ 'shield-x',
1711
+ 'shield',
1712
+ 'ship-wheel',
1713
+ 'ship',
1714
+ 'shirt',
1715
+ 'shopping-bag',
1716
+ 'shopping-basket',
1717
+ 'shopping-cart',
1718
+ 'shovel',
1719
+ 'shower-head',
1720
+ 'shredder',
1721
+ 'shrimp',
1722
+ 'shrink',
1723
+ 'shrub',
1724
+ 'shuffle',
1725
+ 'sigma',
1726
+ 'signal-high',
1727
+ 'signal-low',
1728
+ 'signal-medium',
1729
+ 'signal-zero',
1730
+ 'signal',
1731
+ 'signature',
1732
+ 'signpost-big',
1733
+ 'signpost',
1734
+ 'siren',
1735
+ 'skip-back',
1736
+ 'skip-forward',
1737
+ 'skull',
1738
+ 'slash',
1739
+ 'slice',
1740
+ 'sliders-horizontal',
1741
+ 'sliders-vertical',
1742
+ 'smartphone-charging',
1743
+ 'smartphone-nfc',
1744
+ 'smartphone',
1745
+ 'smile-plus',
1746
+ 'smile',
1747
+ 'snail',
1748
+ 'snowflake',
1749
+ 'soap-dispenser-droplet',
1750
+ 'sofa',
1751
+ 'solar-panel',
1752
+ 'soup',
1753
+ 'space',
1754
+ 'spade',
1755
+ 'sparkle',
1756
+ 'sparkles',
1757
+ 'speaker',
1758
+ 'speech',
1759
+ 'spell-check-2',
1760
+ 'spell-check',
1761
+ 'spline-pointer',
1762
+ 'spline',
1763
+ 'split',
1764
+ 'spool',
1765
+ 'sport-shoe',
1766
+ 'spotlight',
1767
+ 'spray-can',
1768
+ 'sprout',
1769
+ 'square-activity',
1770
+ 'square-arrow-down-left',
1771
+ 'square-arrow-down-right',
1772
+ 'square-arrow-down',
1773
+ 'square-arrow-left',
1774
+ 'square-arrow-out-down-left',
1775
+ 'square-arrow-out-down-right',
1776
+ 'square-arrow-out-up-left',
1777
+ 'square-arrow-out-up-right',
1778
+ 'square-arrow-right-enter',
1779
+ 'square-arrow-right-exit',
1780
+ 'square-arrow-right',
1781
+ 'square-arrow-up-left',
1782
+ 'square-arrow-up-right',
1783
+ 'square-arrow-up',
1784
+ 'square-asterisk',
1785
+ 'square-bottom-dashed-scissors',
1786
+ 'square-centerline-dashed-horizontal',
1787
+ 'square-centerline-dashed-vertical',
1788
+ 'square-chart-gantt',
1789
+ 'square-check-big',
1790
+ 'square-check',
1791
+ 'square-chevron-down',
1792
+ 'square-chevron-left',
1793
+ 'square-chevron-right',
1794
+ 'square-chevron-up',
1795
+ 'square-code',
1796
+ 'square-dashed-bottom-code',
1797
+ 'square-dashed-bottom',
1798
+ 'square-dashed-kanban',
1799
+ 'square-dashed-mouse-pointer',
1800
+ 'square-dashed-text',
1801
+ 'square-dashed-top-solid',
1802
+ 'square-dashed',
1803
+ 'square-divide',
1804
+ 'square-dot',
1805
+ 'square-equal',
1806
+ 'square-function',
1807
+ 'square-kanban',
1808
+ 'square-library',
1809
+ 'square-m',
1810
+ 'square-menu',
1811
+ 'square-minus',
1812
+ 'square-mouse-pointer',
1813
+ 'square-parking-off',
1814
+ 'square-parking',
1815
+ 'square-pause',
1816
+ 'square-pen',
1817
+ 'square-percent',
1818
+ 'square-pi',
1819
+ 'square-pilcrow',
1820
+ 'square-play',
1821
+ 'square-plus',
1822
+ 'square-power',
1823
+ 'square-radical',
1824
+ 'square-round-corner',
1825
+ 'square-scissors',
1826
+ 'square-sigma',
1827
+ 'square-slash',
1828
+ 'square-split-horizontal',
1829
+ 'square-split-vertical',
1830
+ 'square-square',
1831
+ 'square-stack',
1832
+ 'square-star',
1833
+ 'square-stop',
1834
+ 'square-terminal',
1835
+ 'square-user-round',
1836
+ 'square-user',
1837
+ 'square-x',
1838
+ 'square',
1839
+ 'squares-exclude',
1840
+ 'squares-intersect',
1841
+ 'squares-subtract',
1842
+ 'squares-unite',
1843
+ 'squircle-dashed',
1844
+ 'squircle',
1845
+ 'squirrel',
1846
+ 'stamp',
1847
+ 'star-check',
1848
+ 'star-half',
1849
+ 'star-minus',
1850
+ 'star-off',
1851
+ 'star-plus',
1852
+ 'star-x',
1853
+ 'star',
1854
+ 'step-back',
1855
+ 'step-forward',
1856
+ 'stethoscope',
1857
+ 'sticker',
1858
+ 'sticky-note-check',
1859
+ 'sticky-note-minus',
1860
+ 'sticky-note-off',
1861
+ 'sticky-note-plus',
1862
+ 'sticky-note-x',
1863
+ 'sticky-note',
1864
+ 'sticky-notes',
1865
+ 'stone',
1866
+ 'store',
1867
+ 'stretch-horizontal',
1868
+ 'stretch-vertical',
1869
+ 'strikethrough',
1870
+ 'subscript',
1871
+ 'summary',
1872
+ 'sun-dim',
1873
+ 'sun-medium',
1874
+ 'sun-moon',
1875
+ 'sun-snow',
1876
+ 'sun',
1877
+ 'sunrise',
1878
+ 'sunset',
1879
+ 'superscript',
1880
+ 'swatch-book',
1881
+ 'swiss-franc',
1882
+ 'switch-camera',
1883
+ 'sword',
1884
+ 'swords',
1885
+ 'syringe',
1886
+ 'table-2',
1887
+ 'table-cells-merge',
1888
+ 'table-cells-split',
1889
+ 'table-columns-split',
1890
+ 'table-of-contents',
1891
+ 'table-properties',
1892
+ 'table-rows-split',
1893
+ 'table',
1894
+ 'tablet-smartphone',
1895
+ 'tablet',
1896
+ 'tablets',
1897
+ 'tag-plus',
1898
+ 'tag-x',
1899
+ 'tag',
1900
+ 'tags',
1901
+ 'tally-1',
1902
+ 'tally-2',
1903
+ 'tally-3',
1904
+ 'tally-4',
1905
+ 'tally-5',
1906
+ 'tangent',
1907
+ 'target',
1908
+ 'telescope',
1909
+ 'tent-tree',
1910
+ 'tent',
1911
+ 'terminal',
1912
+ 'test-tube-diagonal',
1913
+ 'test-tube',
1914
+ 'test-tubes',
1915
+ 'text-align-center',
1916
+ 'text-align-end',
1917
+ 'text-align-justify',
1918
+ 'text-align-start',
1919
+ 'text-cursor-input',
1920
+ 'text-cursor',
1921
+ 'text-initial',
1922
+ 'text-quote',
1923
+ 'text-search',
1924
+ 'text-wrap',
1925
+ 'theater',
1926
+ 'thermometer-snowflake',
1927
+ 'thermometer-sun',
1928
+ 'thermometer',
1929
+ 'thumbs-down',
1930
+ 'thumbs-up',
1931
+ 'ticket-check',
1932
+ 'ticket-minus',
1933
+ 'ticket-percent',
1934
+ 'ticket-plus',
1935
+ 'ticket-slash',
1936
+ 'ticket-x',
1937
+ 'ticket',
1938
+ 'tickets-plane',
1939
+ 'tickets',
1940
+ 'timeline',
1941
+ 'timer-off',
1942
+ 'timer-reset',
1943
+ 'timer',
1944
+ 'toggle-left',
1945
+ 'toggle-right',
1946
+ 'toilet',
1947
+ 'tool-case',
1948
+ 'toolbox',
1949
+ 'tornado',
1950
+ 'torus',
1951
+ 'touchpad-off',
1952
+ 'touchpad',
1953
+ 'towel-rack',
1954
+ 'tower-control',
1955
+ 'toy-brick',
1956
+ 'tractor',
1957
+ 'traffic-cone',
1958
+ 'train-front-tunnel',
1959
+ 'train-front',
1960
+ 'train-track',
1961
+ 'tram-front',
1962
+ 'transgender',
1963
+ 'trash-2',
1964
+ 'trash',
1965
+ 'tree-deciduous',
1966
+ 'tree-palm',
1967
+ 'tree-pine',
1968
+ 'trees',
1969
+ 'trending-down',
1970
+ 'trending-up-down',
1971
+ 'trending-up',
1972
+ 'triangle-alert',
1973
+ 'triangle-dashed',
1974
+ 'triangle-right',
1975
+ 'triangle',
1976
+ 'trophy',
1977
+ 'truck-electric',
1978
+ 'truck',
1979
+ 'turkish-lira',
1980
+ 'turntable',
1981
+ 'turtle',
1982
+ 'tv-minimal-play',
1983
+ 'tv-minimal',
1984
+ 'tv',
1985
+ 'type-outline',
1986
+ 'type',
1987
+ 'umbrella-off',
1988
+ 'umbrella',
1989
+ 'underline',
1990
+ 'undo-2',
1991
+ 'undo-dot',
1992
+ 'undo',
1993
+ 'unfold-horizontal',
1994
+ 'unfold-vertical',
1995
+ 'ungroup',
1996
+ 'university',
1997
+ 'unlink-2',
1998
+ 'unlink',
1999
+ 'unplug',
2000
+ 'upload',
2001
+ 'usb',
2002
+ 'user-check',
2003
+ 'user-cog',
2004
+ 'user-key',
2005
+ 'user-lock',
2006
+ 'user-minus',
2007
+ 'user-pen',
2008
+ 'user-plus',
2009
+ 'user-round-arrow-left',
2010
+ 'user-round-check',
2011
+ 'user-round-cog',
2012
+ 'user-round-key',
2013
+ 'user-round-minus',
2014
+ 'user-round-pen',
2015
+ 'user-round-plus',
2016
+ 'user-round-search',
2017
+ 'user-round-x',
2018
+ 'user-round',
2019
+ 'user-search',
2020
+ 'user-star',
2021
+ 'user-x',
2022
+ 'user',
2023
+ 'users-round',
2024
+ 'users',
2025
+ 'utensils-crossed',
2026
+ 'utensils',
2027
+ 'utility-pole',
2028
+ 'van',
2029
+ 'variable',
2030
+ 'vault',
2031
+ 'vector-square',
2032
+ 'vegan',
2033
+ 'venetian-mask',
2034
+ 'venus-and-mars',
2035
+ 'venus',
2036
+ 'vibrate-off',
2037
+ 'vibrate',
2038
+ 'video-off',
2039
+ 'video',
2040
+ 'videotape',
2041
+ 'view',
2042
+ 'voicemail',
2043
+ 'volleyball',
2044
+ 'volume-1',
2045
+ 'volume-2',
2046
+ 'volume-off',
2047
+ 'volume-x',
2048
+ 'volume',
2049
+ 'vote',
2050
+ 'wallet-cards',
2051
+ 'wallet-minimal',
2052
+ 'wallet',
2053
+ 'wallpaper',
2054
+ 'wand-sparkles',
2055
+ 'wand',
2056
+ 'warehouse',
2057
+ 'washing-machine',
2058
+ 'watch',
2059
+ 'waves-arrow-down',
2060
+ 'waves-arrow-up',
2061
+ 'waves-horizontal',
2062
+ 'waves-ladder',
2063
+ 'waves-vertical',
2064
+ 'waypoints',
2065
+ 'webcam-off',
2066
+ 'webcam',
2067
+ 'webhook-off',
2068
+ 'webhook',
2069
+ 'weight-tilde',
2070
+ 'weight',
2071
+ 'wheat-off',
2072
+ 'wheat',
2073
+ 'whole-word',
2074
+ 'wifi-cog',
2075
+ 'wifi-high',
2076
+ 'wifi-low',
2077
+ 'wifi-off',
2078
+ 'wifi-pen',
2079
+ 'wifi-sync',
2080
+ 'wifi-zero',
2081
+ 'wifi',
2082
+ 'wind-arrow-down',
2083
+ 'wind',
2084
+ 'wine-off',
2085
+ 'wine',
2086
+ 'workflow',
2087
+ 'worm',
2088
+ 'wrench-off',
2089
+ 'wrench',
2090
+ 'x-line-top',
2091
+ 'x',
2092
+ 'zap-off',
2093
+ 'zap',
2094
+ 'zodiac-aquarius',
2095
+ 'zodiac-aries',
2096
+ 'zodiac-cancer',
2097
+ 'zodiac-capricorn',
2098
+ 'zodiac-gemini',
2099
+ 'zodiac-leo',
2100
+ 'zodiac-libra',
2101
+ 'zodiac-ophiuchus',
2102
+ 'zodiac-pisces',
2103
+ 'zodiac-sagittarius',
2104
+ 'zodiac-scorpio',
2105
+ 'zodiac-taurus',
2106
+ 'zodiac-virgo',
2107
+ 'zoom-in',
2108
+ 'zoom-out',
2109
+ ];
2110
+
2111
+ class EzUITextInput {
2112
+ icon = '';
2113
+ label = '';
2114
+ size = 'm';
2115
+ disabled = false;
2116
+ value = "";
2117
+ valueChange = new EventEmitter();
2118
+ ngOnChanges(changes) {
2119
+ if (changes['value'] && changes['value'].currentValue != changes['value'].previousValue) {
2120
+ this.value = changes['value'].currentValue;
2121
+ }
2122
+ }
2123
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EzUITextInput, deps: [], target: i0.ɵɵFactoryTarget.Component });
2124
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.7", type: EzUITextInput, isStandalone: true, selector: "ezui-textinput", inputs: { icon: "icon", label: "label", size: "size", disabled: "disabled", value: "value" }, outputs: { valueChange: "valueChange" }, usesOnChanges: true, ngImport: i0, template: `
2125
+ <tui-textfield [tuiTextfieldSize]="size" [iconStart]="icon">
2126
+ @if(label){
2127
+ <label tuiLabel>{{label}}</label>
2128
+ }
2129
+ <input tuiInput [(ngModel)]="value" (ngModelChange)="valueChange.emit(value)" [disabled]="disabled"/>
2130
+ </tui-textfield>
2131
+ `, 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.TuiLabel, selector: "label[tuiLabel]" }, { kind: "component", type: i3.TuiTextfieldComponent, selector: "tui-textfield:not([multi])", inputs: ["content", "filler"] }, { kind: "directive", type: i3.TuiTextfieldOptionsDirective, selector: "[tuiTextfieldAppearance],[tuiTextfieldSize],[tuiTextfieldCleaner]", inputs: ["tuiTextfieldAppearance", "tuiTextfieldSize", "tuiTextfieldCleaner"] }, { kind: "directive", type: i3$1.TuiInputDirective, selector: "input[tuiInput]", inputs: ["readOnly", "invalid", "focused", "state"] }] });
2132
+ }
2133
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EzUITextInput, decorators: [{
2134
+ type: Component,
2135
+ args: [{ selector: 'ezui-textinput', imports: [
2136
+ FormsModule,
2137
+ CommonModule,
2138
+ TuiInput
2139
+ ], template: `
2140
+ <tui-textfield [tuiTextfieldSize]="size" [iconStart]="icon">
2141
+ @if(label){
2142
+ <label tuiLabel>{{label}}</label>
2143
+ }
2144
+ <input tuiInput [(ngModel)]="value" (ngModelChange)="valueChange.emit(value)" [disabled]="disabled"/>
2145
+ </tui-textfield>
2146
+ ` }]
2147
+ }], propDecorators: { icon: [{
2148
+ type: Input
2149
+ }], label: [{
2150
+ type: Input
2151
+ }], size: [{
2152
+ type: Input
2153
+ }], disabled: [{
2154
+ type: Input
2155
+ }], value: [{
2156
+ type: Input
2157
+ }], valueChange: [{
2158
+ type: Output
2159
+ }] } });
2160
+
2161
+ class EzUIIconSelector {
2162
+ currentOptions = [];
2163
+ disabled = false;
2164
+ size = 'm';
2165
+ open = signal(false, /* @ts-ignore */
2166
+ ...(ngDevMode ? [{ debugName: "open" }] : /* istanbul ignore next */ []));
2167
+ selected = 'circle';
2168
+ selectedChange = new EventEmitter();
2169
+ lucideicons = lucideicons;
2170
+ constructor() {
2171
+ this.currentOptions = [...lucideicons];
2172
+ }
2173
+ ngOnChanges(changes) {
2174
+ if (changes['selected'] && changes['selected'].currentValue != changes['selected'].previousValue) {
2175
+ this.selected = changes['selected'].currentValue;
2176
+ }
2177
+ }
2178
+ doSearch(text) {
2179
+ if (text)
2180
+ this.currentOptions = [...lucideicons.filter((x) => x.indexOf(text) != -1)];
2181
+ else
2182
+ this.currentOptions = [...lucideicons];
2183
+ }
2184
+ setIcon(value) {
2185
+ this.selected = value;
2186
+ this.selectedChange.emit(this.selected);
2187
+ }
2188
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EzUIIconSelector, deps: [], target: i0.ɵɵFactoryTarget.Component });
2189
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.7", type: EzUIIconSelector, isStandalone: true, selector: "ezui-iconselector", inputs: { disabled: "disabled", size: "size", selected: "selected" }, outputs: { selectedChange: "selectedChange" }, usesOnChanges: true, ngImport: i0, template: `
2190
+ <button
2191
+ tuiButton
2192
+ [iconStart]="selected"
2193
+ [size]="size"
2194
+ [tuiAppearanceState]="open() ? 'active' : null"
2195
+ [tuiDropdown]="dropdown"
2196
+ [(tuiDropdownOpen)]="open"
2197
+ [disabled]="disabled"
2198
+ ></button>
2199
+
2200
+ <ng-template #dropdown let-close>
2201
+ <div class="dropdown-container">
2202
+ <ezui-textinput #sch icon="search" label="Search" size="s" (valueChange)="doSearch(sch.value)"/>
2203
+ @if (currentOptions.length > 0) {
2204
+ <div class="icon-container">
2205
+ @for (icon of currentOptions.slice(0,100); track icon) {
2206
+ <button tuiButton [iconStart]="icon" size="s" appearance="flat" [tuiAppearanceFocus]='selected == icon ? true : null' (click)="setIcon(icon); close();currentOptions = [...lucideicons]"></button>
2207
+ }
2208
+ @if(currentOptions.length > 100){
2209
+ <p style="opacity:0.5;margin:0px;text-align:center;align-self:center">{{currentOptions.length - 100}} more icons...</p>
2210
+ }
2211
+ </div>
2212
+ } @else {
2213
+ <p>No icons match your search!</p>
2214
+ }
2215
+ </div>
2216
+ </ng-template>
2217
+ `, isInline: true, styles: [".dropdown-container{display:flex;flex-direction:column;padding:10px;min-width:10rem;gap:5px}.dropdown-container .icon-container{display:flex;flex-wrap:wrap;gap:5px;max-width:80vw;max-height:30vh}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "ngmodule", type: CommonModule }, { kind: "directive", type: TuiButton, selector: "a[tuiButton],button[tuiButton],a[tuiIconButton],button[tuiIconButton]", inputs: ["size"] }, { kind: "directive", type: i3$1.TuiDropdownDirective, selector: "[tuiDropdown]:not(ng-container):not(ng-template)", inputs: ["tuiDropdown"], exportAs: ["tuiDropdown"] }, { kind: "directive", type: i3$1.TuiDropdownOpen, selector: "[tuiDropdown][tuiDropdownAuto],[tuiDropdown][tuiDropdownOpen],[tuiDropdown][tuiDropdownOpenChange]", inputs: ["tuiDropdownEnabled", "tuiDropdownOpen"], outputs: ["tuiDropdownOpenChange"] }, { kind: "component", type: EzUITextInput, selector: "ezui-textinput", inputs: ["icon", "label", "size", "disabled", "value"], outputs: ["valueChange"] }] });
2218
+ }
2219
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EzUIIconSelector, decorators: [{
2220
+ type: Component,
2221
+ args: [{ selector: 'ezui-iconselector', imports: [
2222
+ FormsModule,
2223
+ CommonModule,
2224
+ TuiButton,
2225
+ TuiDropdown,
2226
+ EzUITextInput
2227
+ ], template: `
2228
+ <button
2229
+ tuiButton
2230
+ [iconStart]="selected"
2231
+ [size]="size"
2232
+ [tuiAppearanceState]="open() ? 'active' : null"
2233
+ [tuiDropdown]="dropdown"
2234
+ [(tuiDropdownOpen)]="open"
2235
+ [disabled]="disabled"
2236
+ ></button>
2237
+
2238
+ <ng-template #dropdown let-close>
2239
+ <div class="dropdown-container">
2240
+ <ezui-textinput #sch icon="search" label="Search" size="s" (valueChange)="doSearch(sch.value)"/>
2241
+ @if (currentOptions.length > 0) {
2242
+ <div class="icon-container">
2243
+ @for (icon of currentOptions.slice(0,100); track icon) {
2244
+ <button tuiButton [iconStart]="icon" size="s" appearance="flat" [tuiAppearanceFocus]='selected == icon ? true : null' (click)="setIcon(icon); close();currentOptions = [...lucideicons]"></button>
2245
+ }
2246
+ @if(currentOptions.length > 100){
2247
+ <p style="opacity:0.5;margin:0px;text-align:center;align-self:center">{{currentOptions.length - 100}} more icons...</p>
2248
+ }
2249
+ </div>
2250
+ } @else {
2251
+ <p>No icons match your search!</p>
2252
+ }
2253
+ </div>
2254
+ </ng-template>
2255
+ `, styles: [".dropdown-container{display:flex;flex-direction:column;padding:10px;min-width:10rem;gap:5px}.dropdown-container .icon-container{display:flex;flex-wrap:wrap;gap:5px;max-width:80vw;max-height:30vh}\n"] }]
2256
+ }], ctorParameters: () => [], propDecorators: { disabled: [{
2257
+ type: Input
2258
+ }], size: [{
2259
+ type: Input
2260
+ }], selected: [{
2261
+ type: Input
2262
+ }], selectedChange: [{
2263
+ type: Output
2264
+ }] } });
2265
+
168
2266
  const compressImage = async (file, quality, maxHeight, maxWidth, convertSize) => {
169
2267
  return await new Promise((resolve, reject) => {
170
2268
  new Compressor(file, {
@@ -185,6 +2283,7 @@ class EzUIMenuBarSubDataList {
185
2283
  @for(item of subdatalist; track $index){
186
2284
  @if(item.items){
187
2285
  <button
2286
+ class="subdatalistitem"
188
2287
  tuiOption
189
2288
  tuiChevron
190
2289
  [iconStart]="item.icon"
@@ -207,6 +2306,7 @@ class EzUIMenuBarSubDataList {
207
2306
  }
208
2307
  @else {
209
2308
  <button
2309
+ class="subdatalistitem"
210
2310
  tuiOption
211
2311
  [iconStart]="item.icon"
212
2312
  [disabled]="item.disabled"
@@ -217,7 +2317,7 @@ class EzUIMenuBarSubDataList {
217
2317
  </button>
218
2318
  }
219
2319
  }
220
- `, isInline: true, styles: [".subdatalist{display:flex;flex-direction:column}\n"], dependencies: [{ kind: "component", type: EzUIMenuBarSubDataList, selector: "tui-data-list[subdatalist]", inputs: ["subdatalist"] }, { kind: "directive", type: i3$1.TuiDropdownOptionsDirective, selector: "[tuiDropdownAlign], [tuiDropdownAppearance], [tuiDropdownDirection], [tuiDropdownLimitWidth], [tuiDropdownMinHeight], [tuiDropdownMaxHeight], [tuiDropdownOffset]", inputs: ["tuiDropdownAlign", "tuiDropdownAppearance", "tuiDropdownDirection", "tuiDropdownLimitWidth", "tuiDropdownMinHeight", "tuiDropdownMaxHeight", "tuiDropdownOffset"] }, { kind: "directive", type: i3$1.TuiDropdownDirective, selector: "[tuiDropdown]:not(ng-container):not(ng-template)", inputs: ["tuiDropdown"], exportAs: ["tuiDropdown"] }, { kind: "directive", type: i3$1.TuiDropdownOpen, selector: "[tuiDropdown][tuiDropdownAuto],[tuiDropdown][tuiDropdownOpen],[tuiDropdown][tuiDropdownOpenChange]", inputs: ["tuiDropdownEnabled", "tuiDropdownOpen"], outputs: ["tuiDropdownOpenChange"] }, { kind: "directive", type: i3$1.TuiDropdownPositionSided, selector: "[tuiDropdownSided]", inputs: ["tuiDropdownSided", "tuiDropdownSidedOffset"] }, { kind: "directive", type: TuiOption, selector: "button[tuiOption], a[tuiOption], label[tuiOption]", inputs: ["disabled"] }, { kind: "directive", type: TuiChevron, selector: "[tuiChevron]", inputs: ["tuiChevron"] }] });
2320
+ `, isInline: true, styles: [".subdatalist{display:flex;flex-direction:column}.subdatalistitem{padding:0 10px!important}\n"], dependencies: [{ kind: "component", type: EzUIMenuBarSubDataList, selector: "tui-data-list[subdatalist]", inputs: ["subdatalist"] }, { kind: "directive", type: i3$1.TuiDropdownOptionsDirective, selector: "[tuiDropdownAlign], [tuiDropdownAppearance], [tuiDropdownDirection], [tuiDropdownLimitWidth], [tuiDropdownMinHeight], [tuiDropdownMaxHeight], [tuiDropdownOffset]", inputs: ["tuiDropdownAlign", "tuiDropdownAppearance", "tuiDropdownDirection", "tuiDropdownLimitWidth", "tuiDropdownMinHeight", "tuiDropdownMaxHeight", "tuiDropdownOffset"] }, { kind: "directive", type: i3$1.TuiDropdownDirective, selector: "[tuiDropdown]:not(ng-container):not(ng-template)", inputs: ["tuiDropdown"], exportAs: ["tuiDropdown"] }, { kind: "directive", type: i3$1.TuiDropdownOpen, selector: "[tuiDropdown][tuiDropdownAuto],[tuiDropdown][tuiDropdownOpen],[tuiDropdown][tuiDropdownOpenChange]", inputs: ["tuiDropdownEnabled", "tuiDropdownOpen"], outputs: ["tuiDropdownOpenChange"] }, { kind: "directive", type: i3$1.TuiDropdownPositionSided, selector: "[tuiDropdownSided]", inputs: ["tuiDropdownSided", "tuiDropdownSidedOffset"] }, { kind: "directive", type: TuiOption, selector: "button[tuiOption], a[tuiOption], label[tuiOption]", inputs: ["disabled"] }, { kind: "directive", type: TuiChevron, selector: "[tuiChevron]", inputs: ["tuiChevron"] }] });
221
2321
  }
222
2322
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EzUIMenuBarSubDataList, decorators: [{
223
2323
  type: Component,
@@ -229,6 +2329,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
229
2329
  @for(item of subdatalist; track $index){
230
2330
  @if(item.items){
231
2331
  <button
2332
+ class="subdatalistitem"
232
2333
  tuiOption
233
2334
  tuiChevron
234
2335
  [iconStart]="item.icon"
@@ -251,6 +2352,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
251
2352
  }
252
2353
  @else {
253
2354
  <button
2355
+ class="subdatalistitem"
254
2356
  tuiOption
255
2357
  [iconStart]="item.icon"
256
2358
  [disabled]="item.disabled"
@@ -261,7 +2363,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
261
2363
  </button>
262
2364
  }
263
2365
  }
264
- `, styles: [".subdatalist{display:flex;flex-direction:column}\n"] }]
2366
+ `, styles: [".subdatalist{display:flex;flex-direction:column}.subdatalistitem{padding:0 10px!important}\n"] }]
265
2367
  }], propDecorators: { subdatalist: [{
266
2368
  type: Input
267
2369
  }] } });
@@ -2263,56 +4365,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
2263
4365
  type: Input
2264
4366
  }] } });
2265
4367
 
2266
- class EzUITextInput {
2267
- icon = '';
2268
- label = '';
2269
- size = 'm';
2270
- disabled = false;
2271
- value = "";
2272
- valueChange = new EventEmitter();
2273
- ngOnChanges(changes) {
2274
- if (changes['value'] && changes['value'].currentValue != changes['value'].previousValue) {
2275
- this.value = changes['value'].currentValue;
2276
- }
2277
- }
2278
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EzUITextInput, deps: [], target: i0.ɵɵFactoryTarget.Component });
2279
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.7", type: EzUITextInput, isStandalone: true, selector: "ezui-textinput", inputs: { icon: "icon", label: "label", size: "size", disabled: "disabled", value: "value" }, outputs: { valueChange: "valueChange" }, usesOnChanges: true, ngImport: i0, template: `
2280
- <tui-textfield [tuiTextfieldSize]="size" [iconStart]="icon">
2281
- @if(label){
2282
- <label tuiLabel>{{label}}</label>
2283
- }
2284
- <input tuiInput [(ngModel)]="value" (ngModelChange)="valueChange.emit(value)" [disabled]="disabled"/>
2285
- </tui-textfield>
2286
- `, 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.TuiLabel, selector: "label[tuiLabel]" }, { kind: "component", type: i3.TuiTextfieldComponent, selector: "tui-textfield:not([multi])", inputs: ["content", "filler"] }, { kind: "directive", type: i3.TuiTextfieldOptionsDirective, selector: "[tuiTextfieldAppearance],[tuiTextfieldSize],[tuiTextfieldCleaner]", inputs: ["tuiTextfieldAppearance", "tuiTextfieldSize", "tuiTextfieldCleaner"] }, { kind: "directive", type: i3$1.TuiInputDirective, selector: "input[tuiInput]", inputs: ["readOnly", "invalid", "focused", "state"] }] });
2287
- }
2288
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImport: i0, type: EzUITextInput, decorators: [{
2289
- type: Component,
2290
- args: [{ selector: 'ezui-textinput', imports: [
2291
- FormsModule,
2292
- CommonModule,
2293
- TuiInput
2294
- ], template: `
2295
- <tui-textfield [tuiTextfieldSize]="size" [iconStart]="icon">
2296
- @if(label){
2297
- <label tuiLabel>{{label}}</label>
2298
- }
2299
- <input tuiInput [(ngModel)]="value" (ngModelChange)="valueChange.emit(value)" [disabled]="disabled"/>
2300
- </tui-textfield>
2301
- ` }]
2302
- }], propDecorators: { icon: [{
2303
- type: Input
2304
- }], label: [{
2305
- type: Input
2306
- }], size: [{
2307
- type: Input
2308
- }], disabled: [{
2309
- type: Input
2310
- }], value: [{
2311
- type: Input
2312
- }], valueChange: [{
2313
- type: Output
2314
- }] } });
2315
-
2316
4368
  class BaseCRUDInterface {
2317
4369
  http;
2318
4370
  messageService;
@@ -2546,5 +4598,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.7", ngImpor
2546
4598
  * Generated bundle index. Do not edit.
2547
4599
  */
2548
4600
 
2549
- export { BaseCRUDInterface, BaseListInterface, EzUIDateInput, EzUIFileInput, EzUIFilterHelpers, EzUIMarkdownEditor, EzUIMenuBar, EzUIMenuBarSubDataList, EzUIMultiSelect, EzUINumberInput, EzUIPasswordInput, EzUITTableSortableColumn, EzUITable, EzUITableDateFilter, EzUITableFilterService, EzUITableSelectFilter, EzUITableTextFilter, EzUITextInput, compressImage };
4601
+ export { BaseCRUDInterface, BaseListInterface, EzUIDateInput, EzUIDateTimeInput, EzUIFileInput, EzUIFilterHelpers, EzUIIconSelector, EzUIMarkdownEditor, EzUIMenuBar, EzUIMenuBarSubDataList, EzUIMultiSelect, EzUINumberInput, EzUIPasswordInput, EzUITTableSortableColumn, EzUITable, EzUITableDateFilter, EzUITableFilterService, EzUITableSelectFilter, EzUITableTextFilter, EzUITextInput, compressImage };
2550
4602
  //# sourceMappingURL=kris701-ez-ui.mjs.map