ng-zenduit 2.3.4 → 2.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/ng-zenduit.mjs +268 -87
- package/fesm2022/ng-zenduit.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/common-form.scss +3 -12
- package/types/ng-zenduit.d.ts +78 -21
package/package.json
CHANGED
package/styles/common-form.scss
CHANGED
|
@@ -60,10 +60,7 @@
|
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
&.error {
|
|
63
|
-
|
|
64
|
-
color: #d92c21;
|
|
65
|
-
}
|
|
66
|
-
|
|
63
|
+
// Labels are never recoloured by form state — only the field reacts.
|
|
67
64
|
.material-input,
|
|
68
65
|
.zen-input,
|
|
69
66
|
.material-select,
|
|
@@ -95,10 +92,8 @@
|
|
|
95
92
|
}
|
|
96
93
|
|
|
97
94
|
&:hover {
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}
|
|
101
|
-
|
|
95
|
+
// Labels keep their static colour on hover/focus — no state highlight.
|
|
96
|
+
// (The field border still reacts; only the label is left untouched.)
|
|
102
97
|
.material-input,
|
|
103
98
|
.zen-input,
|
|
104
99
|
.app-select-toggle,
|
|
@@ -109,10 +104,6 @@
|
|
|
109
104
|
}
|
|
110
105
|
|
|
111
106
|
&:focus-within {
|
|
112
|
-
label {
|
|
113
|
-
color: $color-primary;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
107
|
.material-input,
|
|
117
108
|
.zen-input,
|
|
118
109
|
.app-select-toggle,
|
package/types/ng-zenduit.d.ts
CHANGED
|
@@ -334,6 +334,16 @@ declare class ZenduSelectComponent implements OnChanges {
|
|
|
334
334
|
* Label text above the select
|
|
335
335
|
*/
|
|
336
336
|
label?: string;
|
|
337
|
+
/**
|
|
338
|
+
* Show a help icon next to the label. On hover/keyboard-focus it reveals a
|
|
339
|
+
* self-contained tooltip with `helpTooltip` (the library does not depend on
|
|
340
|
+
* Angular Material).
|
|
341
|
+
*/
|
|
342
|
+
helpIcon: boolean;
|
|
343
|
+
/**
|
|
344
|
+
* Tooltip text shown on hover/focus of the label help icon. Translated.
|
|
345
|
+
*/
|
|
346
|
+
helpTooltip: string;
|
|
337
347
|
/**
|
|
338
348
|
* Supporting text below the select
|
|
339
349
|
*/
|
|
@@ -476,6 +486,8 @@ declare class ZenduSelectComponent implements OnChanges {
|
|
|
476
486
|
* State tracking
|
|
477
487
|
*/
|
|
478
488
|
isOpen: boolean;
|
|
489
|
+
helpTooltipAlign: 'center' | 'start' | 'end';
|
|
490
|
+
helpTooltipPlacement: 'above' | 'below';
|
|
479
491
|
searchText: string;
|
|
480
492
|
searchInputValue: string;
|
|
481
493
|
searchFocused: boolean;
|
|
@@ -524,6 +536,15 @@ declare class ZenduSelectComponent implements OnChanges {
|
|
|
524
536
|
/**
|
|
525
537
|
* Toggle dropdown
|
|
526
538
|
*/
|
|
539
|
+
/**
|
|
540
|
+
* Position the help tooltip so it never overflows the viewport. Horizontally:
|
|
541
|
+
* anchored to the icon's right edge near the right border, to its left edge near
|
|
542
|
+
* the left border, otherwise centered. Vertically: above by default, flipped
|
|
543
|
+
* below when there isn't room above and there's more room below (the label-row
|
|
544
|
+
* icon sits high in the layout). Computed from the icon rect synchronously
|
|
545
|
+
* (before paint) so the tooltip appears in its final spot without a flicker.
|
|
546
|
+
*/
|
|
547
|
+
updateHelpTooltipPlacement(event: Event): void;
|
|
527
548
|
toggleDropdown(): void;
|
|
528
549
|
/**
|
|
529
550
|
* Handle scroll on the options list — fetch the next page once the user
|
|
@@ -681,7 +702,7 @@ declare class ZenduSelectComponent implements OnChanges {
|
|
|
681
702
|
*/
|
|
682
703
|
private updateTreeSelectAllState;
|
|
683
704
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZenduSelectComponent, never>;
|
|
684
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ZenduSelectComponent, "zen-select", never, { "selectModel": { "alias": "selectModel"; "required": false; }; "options": { "alias": "options"; "required": false; }; "label": { "alias": "label"; "required": false; }; "supportingText": { "alias": "supportingText"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "leadingType": { "alias": "leadingType"; "required": false; }; "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "leadingAvatar": { "alias": "leadingAvatar"; "required": false; }; "leadingDotColor": { "alias": "leadingDotColor"; "required": false; }; "displayProp": { "alias": "displayProp"; "required": false; }; "idProp": { "alias": "idProp"; "required": false; }; "hasSearch": { "alias": "hasSearch"; "required": false; }; "isMultiselect": { "alias": "isMultiselect"; "required": false; }; "multiselect": { "alias": "multiselect"; "required": false; }; "hideSelectAll": { "alias": "hideSelectAll"; "required": false; }; "hideTreeSearch": { "alias": "hideTreeSearch"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "destructive": { "alias": "destructive"; "required": false; }; "size": { "alias": "size"; "required": false; }; "returnOption": { "alias": "returnOption"; "required": false; }; "isTruncate": { "alias": "isTruncate"; "required": false; }; "enableAddNewOption": { "alias": "enableAddNewOption"; "required": false; }; "showDefaultAddOption": { "alias": "showDefaultAddOption"; "required": false; }; "newOptionText": { "alias": "newOptionText"; "required": false; }; "enableRemoveOption": { "alias": "enableRemoveOption"; "required": false; }; "removeOptionText": { "alias": "removeOptionText"; "required": false; }; "isLazyLoading": { "alias": "isLazyLoading"; "required": false; }; "lazyLoader": { "alias": "lazyLoader"; "required": false; }; "preferredOpenDirection": { "alias": "preferredOpenDirection"; "required": false; }; }, { "selectModelChange": "selectModelChange"; "addNewOption": "addNewOption"; "removeOption": "removeOption"; "closed": "closed"; }, ["optionTemplate", "valueTemplate", "buttonTemplate"], never, false, never>;
|
|
705
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ZenduSelectComponent, "zen-select", never, { "selectModel": { "alias": "selectModel"; "required": false; }; "options": { "alias": "options"; "required": false; }; "label": { "alias": "label"; "required": false; }; "helpIcon": { "alias": "helpIcon"; "required": false; }; "helpTooltip": { "alias": "helpTooltip"; "required": false; }; "supportingText": { "alias": "supportingText"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "leadingType": { "alias": "leadingType"; "required": false; }; "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "leadingAvatar": { "alias": "leadingAvatar"; "required": false; }; "leadingDotColor": { "alias": "leadingDotColor"; "required": false; }; "displayProp": { "alias": "displayProp"; "required": false; }; "idProp": { "alias": "idProp"; "required": false; }; "hasSearch": { "alias": "hasSearch"; "required": false; }; "isMultiselect": { "alias": "isMultiselect"; "required": false; }; "multiselect": { "alias": "multiselect"; "required": false; }; "hideSelectAll": { "alias": "hideSelectAll"; "required": false; }; "hideTreeSearch": { "alias": "hideTreeSearch"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "destructive": { "alias": "destructive"; "required": false; }; "size": { "alias": "size"; "required": false; }; "returnOption": { "alias": "returnOption"; "required": false; }; "isTruncate": { "alias": "isTruncate"; "required": false; }; "enableAddNewOption": { "alias": "enableAddNewOption"; "required": false; }; "showDefaultAddOption": { "alias": "showDefaultAddOption"; "required": false; }; "newOptionText": { "alias": "newOptionText"; "required": false; }; "enableRemoveOption": { "alias": "enableRemoveOption"; "required": false; }; "removeOptionText": { "alias": "removeOptionText"; "required": false; }; "isLazyLoading": { "alias": "isLazyLoading"; "required": false; }; "lazyLoader": { "alias": "lazyLoader"; "required": false; }; "preferredOpenDirection": { "alias": "preferredOpenDirection"; "required": false; }; }, { "selectModelChange": "selectModelChange"; "addNewOption": "addNewOption"; "removeOption": "removeOption"; "closed": "closed"; }, ["optionTemplate", "valueTemplate", "buttonTemplate"], never, false, never>;
|
|
685
706
|
}
|
|
686
707
|
|
|
687
708
|
interface DatePickerDay {
|
|
@@ -1841,6 +1862,15 @@ declare class ZenduDatePickerDropdownComponent implements OnInit, OnChanges, OnD
|
|
|
1841
1862
|
* element, so an external control (e.g. a select) can drive it via open().
|
|
1842
1863
|
*/
|
|
1843
1864
|
hideTrigger: boolean;
|
|
1865
|
+
/** Field label rendered above the trigger. Pass an already-translated
|
|
1866
|
+
* string (e.g. `[label]="'Select Date' | translate"`) — not translated
|
|
1867
|
+
* internally. */
|
|
1868
|
+
label: string;
|
|
1869
|
+
/** Adds a red `*` to the label. */
|
|
1870
|
+
required: boolean;
|
|
1871
|
+
/** Trigger height: `md` (40px, default, matches the md button) or `form`
|
|
1872
|
+
* (46px, to sit flush in a 46px-tall form field row). */
|
|
1873
|
+
size: 'md' | 'form';
|
|
1844
1874
|
triggerBtn?: ElementRef;
|
|
1845
1875
|
mobile: boolean;
|
|
1846
1876
|
isOpen: boolean;
|
|
@@ -1870,6 +1900,11 @@ declare class ZenduDatePickerDropdownComponent implements OnInit, OnChanges, OnD
|
|
|
1870
1900
|
_period: 'AM' | 'PM';
|
|
1871
1901
|
_hoursDisplay: string;
|
|
1872
1902
|
_minutesDisplay: string;
|
|
1903
|
+
_endHours: number;
|
|
1904
|
+
_endMinutes: number;
|
|
1905
|
+
_endPeriod: 'AM' | 'PM';
|
|
1906
|
+
_endHoursDisplay: string;
|
|
1907
|
+
_endMinutesDisplay: string;
|
|
1873
1908
|
defaultPresets: DatePickerPreset[];
|
|
1874
1909
|
constructor(_element: ElementRef, _translate: TranslateService, globalPresets: DatePickerPreset[] | null);
|
|
1875
1910
|
ngOnInit(): void;
|
|
@@ -1904,17 +1939,17 @@ declare class ZenduDatePickerDropdownComponent implements OnInit, OnChanges, OnD
|
|
|
1904
1939
|
selectPreset(preset: DatePickerPreset): void;
|
|
1905
1940
|
goToToday(): void;
|
|
1906
1941
|
private formatNum;
|
|
1907
|
-
incrementHours(): void;
|
|
1908
|
-
decrementHours(): void;
|
|
1909
|
-
incrementMinutes(): void;
|
|
1910
|
-
decrementMinutes(): void;
|
|
1911
|
-
onHoursInput(event: Event): void;
|
|
1912
|
-
onMinutesInput(event: Event): void;
|
|
1913
|
-
clampHours(): void;
|
|
1914
|
-
clampMinutes(): void;
|
|
1942
|
+
incrementHours(target?: 'start' | 'end'): void;
|
|
1943
|
+
decrementHours(target?: 'start' | 'end'): void;
|
|
1944
|
+
incrementMinutes(target?: 'start' | 'end'): void;
|
|
1945
|
+
decrementMinutes(target?: 'start' | 'end'): void;
|
|
1946
|
+
onHoursInput(event: Event, target?: 'start' | 'end'): void;
|
|
1947
|
+
onMinutesInput(event: Event, target?: 'start' | 'end'): void;
|
|
1948
|
+
clampHours(target?: 'start' | 'end'): void;
|
|
1949
|
+
clampMinutes(target?: 'start' | 'end'): void;
|
|
1915
1950
|
onTimeFocus(event: Event): void;
|
|
1916
|
-
onTimeKeydown(event: KeyboardEvent, type: 'hours' | 'minutes'): void;
|
|
1917
|
-
setPeriod(period: 'AM' | 'PM'): void;
|
|
1951
|
+
onTimeKeydown(event: KeyboardEvent, type: 'hours' | 'minutes', target?: 'start' | 'end'): void;
|
|
1952
|
+
setPeriod(period: 'AM' | 'PM', target?: 'start' | 'end'): void;
|
|
1918
1953
|
private applyTimeToDate;
|
|
1919
1954
|
private initTimeFromDate;
|
|
1920
1955
|
apply(): void;
|
|
@@ -1928,7 +1963,7 @@ declare class ZenduDatePickerDropdownComponent implements OnInit, OnChanges, OnD
|
|
|
1928
1963
|
isRangeStart(day: DatePickerDay): boolean;
|
|
1929
1964
|
isRangeEnd(day: DatePickerDay): boolean;
|
|
1930
1965
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZenduDatePickerDropdownComponent, [null, null, { optional: true; }]>;
|
|
1931
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ZenduDatePickerDropdownComponent, "zen-date-picker-dropdown", never, { "type": { "alias": "type"; "required": false; }; "date": { "alias": "date"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "presets": { "alias": "presets"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dateMarkers": { "alias": "dateMarkers"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "mobileBreakpoint": { "alias": "mobileBreakpoint"; "required": false; }; "timePicker": { "alias": "timePicker"; "required": false; }; "autoApply": { "alias": "autoApply"; "required": false; }; "hideTrigger": { "alias": "hideTrigger"; "required": false; }; }, { "dateChange": "dateChange"; "startDateChange": "startDateChange"; "endDateChange": "endDateChange"; "rangeChange": "rangeChange"; }, never, never, false, never>;
|
|
1966
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ZenduDatePickerDropdownComponent, "zen-date-picker-dropdown", never, { "type": { "alias": "type"; "required": false; }; "date": { "alias": "date"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "presets": { "alias": "presets"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dateMarkers": { "alias": "dateMarkers"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "mobileBreakpoint": { "alias": "mobileBreakpoint"; "required": false; }; "timePicker": { "alias": "timePicker"; "required": false; }; "autoApply": { "alias": "autoApply"; "required": false; }; "hideTrigger": { "alias": "hideTrigger"; "required": false; }; "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "dateChange": "dateChange"; "startDateChange": "startDateChange"; "endDateChange": "endDateChange"; "rangeChange": "rangeChange"; }, never, never, false, never>;
|
|
1932
1967
|
}
|
|
1933
1968
|
|
|
1934
1969
|
interface FileUploadItem {
|
|
@@ -2089,11 +2124,11 @@ declare class ZenduInputComponent implements ControlValueAccessor, OnInit, OnCha
|
|
|
2089
2124
|
*/
|
|
2090
2125
|
leadingIcon: string;
|
|
2091
2126
|
/**
|
|
2092
|
-
* Show help icon
|
|
2127
|
+
* Show help icon. The tooltip is shown on hover / keyboard focus.
|
|
2093
2128
|
*/
|
|
2094
2129
|
helpIcon: boolean;
|
|
2095
2130
|
/**
|
|
2096
|
-
* Tooltip text for help icon
|
|
2131
|
+
* Tooltip text for the help icon (shown on hover / focus).
|
|
2097
2132
|
*/
|
|
2098
2133
|
helpTooltip: string;
|
|
2099
2134
|
/**
|
|
@@ -2124,6 +2159,23 @@ declare class ZenduInputComponent implements ControlValueAccessor, OnInit, OnCha
|
|
|
2124
2159
|
* Pattern for validation
|
|
2125
2160
|
*/
|
|
2126
2161
|
pattern: string;
|
|
2162
|
+
/**
|
|
2163
|
+
* Minimum value for `type="number"` inputs (maps to the native `min`
|
|
2164
|
+
* attribute). Applied to all single-line types but only meaningful for
|
|
2165
|
+
* `number`; the browser ignores it otherwise. Not applied to multiline.
|
|
2166
|
+
*/
|
|
2167
|
+
min?: number;
|
|
2168
|
+
/**
|
|
2169
|
+
* Maximum value for `type="number"` inputs (maps to the native `max`
|
|
2170
|
+
* attribute). Applied to all single-line types but only meaningful for
|
|
2171
|
+
* `number`; the browser ignores it otherwise. Not applied to multiline.
|
|
2172
|
+
*/
|
|
2173
|
+
max?: number;
|
|
2174
|
+
/**
|
|
2175
|
+
* Step increment for `type="number"` inputs (maps to the native `step`
|
|
2176
|
+
* attribute). Accepts a number or the literal `'any'`.
|
|
2177
|
+
*/
|
|
2178
|
+
step?: number | 'any';
|
|
2127
2179
|
/**
|
|
2128
2180
|
* Autocomplete attribute
|
|
2129
2181
|
*/
|
|
@@ -2248,10 +2300,6 @@ declare class ZenduInputComponent implements ControlValueAccessor, OnInit, OnCha
|
|
|
2248
2300
|
* Trailing dropdown value change event (for two-way binding)
|
|
2249
2301
|
*/
|
|
2250
2302
|
trailingDropdownValueChange: EventEmitter<string | number>;
|
|
2251
|
-
/**
|
|
2252
|
-
* Help icon click event
|
|
2253
|
-
*/
|
|
2254
|
-
helpIconClick: EventEmitter<MouseEvent>;
|
|
2255
2303
|
/**
|
|
2256
2304
|
* Phone change event
|
|
2257
2305
|
*/
|
|
@@ -2266,7 +2314,8 @@ declare class ZenduInputComponent implements ControlValueAccessor, OnInit, OnCha
|
|
|
2266
2314
|
leadingIconClick: EventEmitter<MouseEvent>;
|
|
2267
2315
|
value: string | number;
|
|
2268
2316
|
isFocused: boolean;
|
|
2269
|
-
|
|
2317
|
+
helpTooltipAlign: 'center' | 'start' | 'end';
|
|
2318
|
+
helpTooltipPlacement: 'above' | 'below';
|
|
2270
2319
|
leadingDropdownOpen: boolean;
|
|
2271
2320
|
trailingDropdownOpen: boolean;
|
|
2272
2321
|
phoneText: string;
|
|
@@ -2308,7 +2357,15 @@ declare class ZenduInputComponent implements ControlValueAccessor, OnInit, OnCha
|
|
|
2308
2357
|
onTrailingDropdownChange(value: string | number): void;
|
|
2309
2358
|
toggleLeadingDropdown(): void;
|
|
2310
2359
|
toggleTrailingDropdown(): void;
|
|
2311
|
-
|
|
2360
|
+
/**
|
|
2361
|
+
* Position the help tooltip so it never overflows the viewport. Horizontally:
|
|
2362
|
+
* anchored to the icon's right edge near the right border, to its left edge near
|
|
2363
|
+
* the left border, otherwise centered. Vertically: above by default, flipped
|
|
2364
|
+
* below when there isn't room above and there's more room below (e.g. an icon
|
|
2365
|
+
* near the top of the viewport). Computed from the icon rect synchronously
|
|
2366
|
+
* (before paint) so the tooltip appears in its final spot without a flicker.
|
|
2367
|
+
*/
|
|
2368
|
+
updateHelpTooltipPlacement(event: Event): void;
|
|
2312
2369
|
closeDropdowns(): void;
|
|
2313
2370
|
get hasValue(): boolean;
|
|
2314
2371
|
get showLabel(): boolean;
|
|
@@ -2333,7 +2390,7 @@ declare class ZenduInputComponent implements ControlValueAccessor, OnInit, OnCha
|
|
|
2333
2390
|
onPhoneInputChange(event: Event): void;
|
|
2334
2391
|
onLeadingIconClick(event: MouseEvent): void;
|
|
2335
2392
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZenduInputComponent, never>;
|
|
2336
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ZenduInputComponent, "zen-input", never, { "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "helpIcon": { "alias": "helpIcon"; "required": false; }; "helpTooltip": { "alias": "helpTooltip"; "required": false; }; "destructive": { "alias": "destructive"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "leadingDropdownOptions": { "alias": "leadingDropdownOptions"; "required": false; }; "leadingDropdownValue": { "alias": "leadingDropdownValue"; "required": false; }; "leadingDropdownPlaceholder": { "alias": "leadingDropdownPlaceholder"; "required": false; }; "trailingDropdownOptions": { "alias": "trailingDropdownOptions"; "required": false; }; "trailingDropdownValue": { "alias": "trailingDropdownValue"; "required": false; }; "trailingDropdownPlaceholder": { "alias": "trailingDropdownPlaceholder"; "required": false; }; "leadingText": { "alias": "leadingText"; "required": false; }; "trailingText": { "alias": "trailingText"; "required": false; }; "multiline": { "alias": "multiline"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "size": { "alias": "size"; "required": false; }; "showCharacterCount": { "alias": "showCharacterCount"; "required": false; }; "phoneMaxLength": { "alias": "phoneMaxLength"; "required": false; }; "phone": { "alias": "phone"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "valueChange": "valueChange"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "inputKeydown": "inputKeydown"; "inputKeyup": "inputKeyup"; "leadingDropdownChange": "leadingDropdownChange"; "leadingDropdownValueChange": "leadingDropdownValueChange"; "trailingDropdownChange": "trailingDropdownChange"; "trailingDropdownValueChange": "trailingDropdownValueChange"; "
|
|
2393
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ZenduInputComponent, "zen-input", never, { "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "hintText": { "alias": "hintText"; "required": false; }; "leadingIcon": { "alias": "leadingIcon"; "required": false; }; "helpIcon": { "alias": "helpIcon"; "required": false; }; "helpTooltip": { "alias": "helpTooltip"; "required": false; }; "destructive": { "alias": "destructive"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "leadingDropdownOptions": { "alias": "leadingDropdownOptions"; "required": false; }; "leadingDropdownValue": { "alias": "leadingDropdownValue"; "required": false; }; "leadingDropdownPlaceholder": { "alias": "leadingDropdownPlaceholder"; "required": false; }; "trailingDropdownOptions": { "alias": "trailingDropdownOptions"; "required": false; }; "trailingDropdownValue": { "alias": "trailingDropdownValue"; "required": false; }; "trailingDropdownPlaceholder": { "alias": "trailingDropdownPlaceholder"; "required": false; }; "leadingText": { "alias": "leadingText"; "required": false; }; "trailingText": { "alias": "trailingText"; "required": false; }; "multiline": { "alias": "multiline"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "size": { "alias": "size"; "required": false; }; "showCharacterCount": { "alias": "showCharacterCount"; "required": false; }; "phoneMaxLength": { "alias": "phoneMaxLength"; "required": false; }; "phone": { "alias": "phone"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "valueChange": "valueChange"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; "inputKeydown": "inputKeydown"; "inputKeyup": "inputKeyup"; "leadingDropdownChange": "leadingDropdownChange"; "leadingDropdownValueChange": "leadingDropdownValueChange"; "trailingDropdownChange": "trailingDropdownChange"; "trailingDropdownValueChange": "trailingDropdownValueChange"; "phoneChange": "phoneChange"; "validChange": "validChange"; "leadingIconClick": "leadingIconClick"; }, never, never, false, never>;
|
|
2337
2394
|
static ngAcceptInputType_multiline: unknown;
|
|
2338
2395
|
static ngAcceptInputType_rows: unknown;
|
|
2339
2396
|
static ngAcceptInputType_resizable: unknown;
|