@liuk123/insui 0.0.1-alpha.1 → 0.0.1-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +79 -41
- package/fesm2022/liuk123-insui.mjs +178 -112
- package/fesm2022/liuk123-insui.mjs.map +1 -1
- package/index.d.ts +152 -157
- package/package.json +1 -1
- package/styles/ins-ui-global.css +1109 -1109
package/index.d.ts
CHANGED
|
@@ -4,10 +4,10 @@ import { SafeResourceUrl, SafeValue, EventManagerPlugin } from '@angular/platfor
|
|
|
4
4
|
import * as rxjs from 'rxjs';
|
|
5
5
|
import { Observable, BehaviorSubject, OperatorFunction, Observer, MonoTypeOperatorFunction, SchedulerLike, Subject } from 'rxjs';
|
|
6
6
|
import * as _liuk123_insui from '@liuk123/insui';
|
|
7
|
-
import { Validator, AbstractControl, ValidationErrors,
|
|
7
|
+
import { Validator, AbstractControl, ValidationErrors, ControlValueAccessor, NgControl, FormControlStatus, FormControl } from '@angular/forms';
|
|
8
8
|
|
|
9
9
|
declare class InsExpand implements OnInit {
|
|
10
|
-
protected readonly content: i0.Signal<TemplateRef<any
|
|
10
|
+
protected readonly content: i0.Signal<TemplateRef<any> | undefined>;
|
|
11
11
|
protected readonly open: i0.WritableSignal<boolean>;
|
|
12
12
|
protected expanded: i0.WritableSignal<boolean>;
|
|
13
13
|
set expandedSetter(expanded: boolean);
|
|
@@ -29,10 +29,10 @@ declare class InsTransitioned {
|
|
|
29
29
|
declare class InsAppearance {
|
|
30
30
|
protected readonly nothing: undefined;
|
|
31
31
|
readonly insAppearance: i0.ModelSignal<(Record<never, never> & string) | "accent" | "action-destructive" | "action-grayscale" | "action" | "flat-destructive" | "flat-grayscale" | "flat" | "glass" | "icon" | "info" | "negative" | "neutral" | "outline-destructive" | "outline-grayscale" | "outline" | "positive" | "primary-destructive" | "primary-grayscale" | "primary" | "secondary-destructive" | "secondary-grayscale" | "secondary" | "textfield">;
|
|
32
|
-
readonly insAppearanceState: i0.ModelSignal<InsInteractiveState>;
|
|
33
|
-
readonly insAppearanceFocus: i0.ModelSignal<boolean>;
|
|
34
|
-
readonly insAppearanceMode: i0.ModelSignal<string | readonly string[]>;
|
|
35
|
-
modes: i0.Signal<string |
|
|
32
|
+
readonly insAppearanceState: i0.ModelSignal<InsInteractiveState | null>;
|
|
33
|
+
readonly insAppearanceFocus: i0.ModelSignal<boolean | null>;
|
|
34
|
+
readonly insAppearanceMode: i0.ModelSignal<string | readonly string[] | null>;
|
|
35
|
+
modes: i0.Signal<string | null>;
|
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<InsAppearance, never>;
|
|
37
37
|
static ɵdir: i0.ɵɵDirectiveDeclaration<InsAppearance, "[insAppearance]", never, { "insAppearance": { "alias": "insAppearance"; "required": false; "isSignal": true; }; "insAppearanceState": { "alias": "insAppearanceState"; "required": false; "isSignal": true; }; "insAppearanceFocus": { "alias": "insAppearanceFocus"; "required": false; "isSignal": true; }; "insAppearanceMode": { "alias": "insAppearanceMode"; "required": false; "isSignal": true; }; }, { "insAppearance": "insAppearanceChange"; "insAppearanceState": "insAppearanceStateChange"; "insAppearanceFocus": "insAppearanceFocusChange"; "insAppearanceMode": "insAppearanceModeChange"; }, never, never, true, [{ directive: typeof InsTransitioned; inputs: {}; outputs: {}; }]>;
|
|
38
38
|
}
|
|
@@ -56,7 +56,7 @@ declare class InsIcons {
|
|
|
56
56
|
protected readonly nothing: undefined;
|
|
57
57
|
resolver: InsStringHandler<string>;
|
|
58
58
|
iconStartSrc: i0.WritableSignal<Icon>;
|
|
59
|
-
iconEndSrc: i0.WritableSignal<string>;
|
|
59
|
+
iconEndSrc: i0.WritableSignal<string | null>;
|
|
60
60
|
set iconStart(value: string);
|
|
61
61
|
set iconEnd(value: string);
|
|
62
62
|
resolve(value?: string | null): string | null;
|
|
@@ -99,7 +99,7 @@ declare class InsActiveZone implements OnDestroy {
|
|
|
99
99
|
private readonly el;
|
|
100
100
|
subActiveZones: readonly InsActiveZone[];
|
|
101
101
|
private readonly directParentActiveZone;
|
|
102
|
-
insActiveZoneParent: i0.WritableSignal<InsActiveZone>;
|
|
102
|
+
insActiveZoneParent: i0.WritableSignal<InsActiveZone | null>;
|
|
103
103
|
set insActiveZoneParentSetter(v: InsActiveZone | null);
|
|
104
104
|
readonly insActiveZoneChange: Observable<boolean>;
|
|
105
105
|
constructor();
|
|
@@ -114,8 +114,8 @@ declare class InsActiveZone implements OnDestroy {
|
|
|
114
114
|
|
|
115
115
|
declare class PolymorpheusComponent<T> {
|
|
116
116
|
readonly component: Type<T>;
|
|
117
|
-
readonly i?: Injector;
|
|
118
|
-
constructor(component: Type<T>, i?: Injector);
|
|
117
|
+
readonly i?: Injector | undefined;
|
|
118
|
+
constructor(component: Type<T>, i?: Injector | undefined);
|
|
119
119
|
createInjector<C>(injector: Injector, useValue?: C): Injector;
|
|
120
120
|
}
|
|
121
121
|
|
|
@@ -204,7 +204,7 @@ declare class InsDropdownDirective implements OnDestroy, InsPortalItem, InsRectA
|
|
|
204
204
|
readonly el: HTMLElement;
|
|
205
205
|
readonly type = "dropdown";
|
|
206
206
|
readonly component: PolymorpheusComponent<any>;
|
|
207
|
-
ref: i0.WritableSignal<ComponentRef<unknown
|
|
207
|
+
ref: i0.WritableSignal<ComponentRef<unknown> | null>;
|
|
208
208
|
content: i0.WritableSignal<PolymorpheusContent<InsContext<{
|
|
209
209
|
close: () => void;
|
|
210
210
|
data: any;
|
|
@@ -322,7 +322,7 @@ declare class InsDropdownOptionsDirective implements InsDropdownOptions {
|
|
|
322
322
|
private readonly options;
|
|
323
323
|
align: InsDropdownAlign;
|
|
324
324
|
appearance: string;
|
|
325
|
-
direction: InsVerticalDirection;
|
|
325
|
+
direction: InsVerticalDirection | null;
|
|
326
326
|
limitWidth: InsDropdownWidth;
|
|
327
327
|
minHeight: number;
|
|
328
328
|
maxHeight: number;
|
|
@@ -837,6 +837,52 @@ declare abstract class InsNotificationService<T, K = void> extends InsPortal<T,
|
|
|
837
837
|
static ɵprov: i0.ɵɵInjectableDeclaration<InsNotificationService<any, any>>;
|
|
838
838
|
}
|
|
839
839
|
|
|
840
|
+
declare abstract class InsValueTransformer<From, To = unknown> {
|
|
841
|
+
abstract toControlValue(componentValue: From): To;
|
|
842
|
+
abstract fromControlValue(controlValue: To): From;
|
|
843
|
+
}
|
|
844
|
+
declare function insValueTransformerFrom<T extends {
|
|
845
|
+
valueTransformer: InsValueTransformer<unknown>;
|
|
846
|
+
}>(token: ProviderToken<T>): FactoryProvider;
|
|
847
|
+
declare class InsNonNullableValueTransformer<T> extends InsValueTransformer<T | null, T> {
|
|
848
|
+
private prevValue;
|
|
849
|
+
fromControlValue(value: T): T;
|
|
850
|
+
toControlValue(value: T | null): T;
|
|
851
|
+
}
|
|
852
|
+
declare const INS_IDENTITY_VALUE_TRANSFORMER: InsValueTransformer<any, any>;
|
|
853
|
+
|
|
854
|
+
/**
|
|
855
|
+
* Basic ControlValueAccessor class to build form components upon
|
|
856
|
+
*/
|
|
857
|
+
declare abstract class InsControl<T> implements ControlValueAccessor {
|
|
858
|
+
private readonly fallback;
|
|
859
|
+
private readonly refresh$;
|
|
860
|
+
private readonly internal;
|
|
861
|
+
protected readonly control: NgControl;
|
|
862
|
+
protected readonly cdr: ChangeDetectorRef;
|
|
863
|
+
protected transformer: InsValueTransformer<any, any>;
|
|
864
|
+
readonly value: i0.Signal<T>;
|
|
865
|
+
readonly readOnly: i0.InputSignal<boolean>;
|
|
866
|
+
readonly pseudoInvalid: i0.InputSignal<boolean | null>;
|
|
867
|
+
readonly touched: i0.WritableSignal<boolean>;
|
|
868
|
+
readonly status: i0.WritableSignal<FormControlStatus | undefined>;
|
|
869
|
+
readonly disabled: i0.Signal<boolean>;
|
|
870
|
+
readonly interactive: i0.Signal<boolean>;
|
|
871
|
+
readonly invalid: i0.Signal<boolean>;
|
|
872
|
+
readonly mode: i0.Signal<"invalid" | "readonly" | "valid">;
|
|
873
|
+
onTouched: (...args: any[]) => void;
|
|
874
|
+
onChange: (value: T) => void;
|
|
875
|
+
constructor();
|
|
876
|
+
registerOnChange(onChange: (value: unknown) => void): void;
|
|
877
|
+
registerOnTouched(onTouched: () => void): void;
|
|
878
|
+
setDisabledState(): void;
|
|
879
|
+
writeValue(value: T | null): void;
|
|
880
|
+
private update;
|
|
881
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InsControl<any>, never>;
|
|
882
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<InsControl<any>, never, never, { "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "pseudoInvalid": { "alias": "invalid"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
883
|
+
}
|
|
884
|
+
declare function insAsControl<T>(control: Type<InsControl<T>>): Provider;
|
|
885
|
+
|
|
840
886
|
declare class InsDropdownHover extends InsDriver {
|
|
841
887
|
private readonly dropdownHost?;
|
|
842
888
|
private readonly el;
|
|
@@ -865,7 +911,7 @@ declare class InsDropdownSelection extends InsDriver implements InsRectAccessor,
|
|
|
865
911
|
private ghost?;
|
|
866
912
|
protected readonly doc: Document;
|
|
867
913
|
protected readonly vcr: ViewContainerRef;
|
|
868
|
-
protected readonly dropdown: InsDropdownDirective;
|
|
914
|
+
protected readonly dropdown: InsDropdownDirective | null;
|
|
869
915
|
protected readonly el: HTMLElement;
|
|
870
916
|
protected readonly handler: i0.Signal<InsBooleanHandler<Range>>;
|
|
871
917
|
protected readonly stream$: rxjs.Observable<boolean>;
|
|
@@ -931,7 +977,7 @@ declare function insDropdownHoverOptionsProvider(options: Partial<InsDropdownHov
|
|
|
931
977
|
|
|
932
978
|
declare const INS_CHEVRON: i0.InjectionToken<string>;
|
|
933
979
|
declare class InsChevron {
|
|
934
|
-
protected readonly dropdown: InsDropdownDirective;
|
|
980
|
+
protected readonly dropdown: InsDropdownDirective | null;
|
|
935
981
|
protected readonly nothing: undefined;
|
|
936
982
|
readonly chevron: i0.WritableSignal<boolean | "">;
|
|
937
983
|
protected isRotated: i0.Signal<boolean>;
|
|
@@ -1010,7 +1056,7 @@ declare class InsAlertComponent<O, I> {
|
|
|
1010
1056
|
private readonly el;
|
|
1011
1057
|
protected readonly icons: _liuk123_insui.InsCommonIcons;
|
|
1012
1058
|
protected readonly item: InsPortalContext<InsAlertOptions<I>, O>;
|
|
1013
|
-
protected readonly close: i0.Signal<string>;
|
|
1059
|
+
protected readonly close: i0.Signal<string | undefined>;
|
|
1014
1060
|
protected readonly sub: rxjs.Subscription;
|
|
1015
1061
|
static ɵfac: i0.ɵɵFactoryDeclaration<InsAlertComponent<any, any>, never>;
|
|
1016
1062
|
static ɵcmp: i0.ɵɵComponentDeclaration<InsAlertComponent<any, any>, "ins-alert", never, {}, {}, never, never, true, [{ directive: typeof InsAnimated; inputs: {}; outputs: {}; }, { directive: typeof InsNotificationDirective; inputs: {}; outputs: {}; }]>;
|
|
@@ -1063,8 +1109,8 @@ declare function insButtonOptionsProvider(options: Partial<InsButtonOptions>): F
|
|
|
1063
1109
|
declare class InsButtonLoading {
|
|
1064
1110
|
private readonly options;
|
|
1065
1111
|
size: i0.InputSignal<"s" | "m" | "l" | "xs">;
|
|
1066
|
-
loading: i0.InputSignal<string | boolean>;
|
|
1067
|
-
protected label: i0.Signal<string | boolean>;
|
|
1112
|
+
loading: i0.InputSignal<string | boolean | null>;
|
|
1113
|
+
protected label: i0.Signal<string | boolean | null>;
|
|
1068
1114
|
static ɵfac: i0.ɵɵFactoryDeclaration<InsButtonLoading, never>;
|
|
1069
1115
|
static ɵcmp: i0.ɵɵComponentDeclaration<InsButtonLoading, "[insButton][loading],[insIconButton][loading]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1070
1116
|
}
|
|
@@ -1142,7 +1188,7 @@ declare class InsDataListComponent<T> implements InsDataListAccessor {
|
|
|
1142
1188
|
private readonly nothing;
|
|
1143
1189
|
private readonly options;
|
|
1144
1190
|
protected readonly empty: i0.Signal<boolean>;
|
|
1145
|
-
protected readonly fallback: i0.Signal<string>;
|
|
1191
|
+
protected readonly fallback: i0.Signal<string | undefined>;
|
|
1146
1192
|
size: i0.InputSignal<"s" | "m" | "l" | "xs">;
|
|
1147
1193
|
emptyContent: i0.InputSignal<PolymorpheusContent<any>>;
|
|
1148
1194
|
onKeyDownArrow(current: HTMLElement, step: number): void;
|
|
@@ -1191,7 +1237,7 @@ declare class InsDialogComponent<O, I> {
|
|
|
1191
1237
|
protected readonly close$: Subject<void>;
|
|
1192
1238
|
protected readonly context: InsPortalContext<InsDialogOptions<I>, O>;
|
|
1193
1239
|
protected readonly icons: _liuk123_insui.InsCommonIcons;
|
|
1194
|
-
protected readonly close: i0.Signal<string>;
|
|
1240
|
+
protected readonly close: i0.Signal<string | undefined>;
|
|
1195
1241
|
protected readonly sub: rxjs.Subscription;
|
|
1196
1242
|
static ɵfac: i0.ɵɵFactoryDeclaration<InsDialogComponent<any, any>, never>;
|
|
1197
1243
|
static ɵcmp: i0.ɵɵComponentDeclaration<InsDialogComponent<any, any>, "ins-dialog", never, {}, {}, never, never, true, [{ directive: typeof InsAnimated; inputs: {}; outputs: {}; }]>;
|
|
@@ -1237,15 +1283,15 @@ declare class InsValidationError<T extends Record<string, any> = Record<string,
|
|
|
1237
1283
|
}
|
|
1238
1284
|
|
|
1239
1285
|
declare class InsError {
|
|
1240
|
-
protected readonly default: i0.Signal<string>;
|
|
1241
|
-
readonly error: i0.InputSignalWithTransform<InsValidationError<Record<string, unknown
|
|
1286
|
+
protected readonly default: i0.Signal<string | undefined>;
|
|
1287
|
+
readonly error: i0.InputSignalWithTransform<InsValidationError<Record<string, unknown>> | null, string | InsValidationError<Record<string, unknown>> | null>;
|
|
1242
1288
|
static ɵfac: i0.ɵɵFactoryDeclaration<InsError, never>;
|
|
1243
1289
|
static ɵcmp: i0.ɵɵComponentDeclaration<InsError, "ins-error", never, { "error": { "alias": "error"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1244
1290
|
}
|
|
1245
1291
|
|
|
1246
1292
|
declare class FieldErrorPipe implements PipeTransform {
|
|
1247
1293
|
errorInfo: Record<string, _liuk123_insui.PolymorpheusContent | rxjs.Observable<_liuk123_insui.PolymorpheusContent>>;
|
|
1248
|
-
transform(value: any): string;
|
|
1294
|
+
transform(value: any): string | null;
|
|
1249
1295
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldErrorPipe, never>;
|
|
1250
1296
|
static ɵpipe: i0.ɵɵPipeDeclaration<FieldErrorPipe, "fieldError", true>;
|
|
1251
1297
|
}
|
|
@@ -1292,7 +1338,7 @@ declare class InsIcon {
|
|
|
1292
1338
|
protected readonly icons: Record<string, string>;
|
|
1293
1339
|
protected nothing: undefined;
|
|
1294
1340
|
resolver(icon: string): string;
|
|
1295
|
-
readonly icon: i0.InputSignalWithTransform<string, string>;
|
|
1341
|
+
readonly icon: i0.InputSignalWithTransform<string | null, string>;
|
|
1296
1342
|
resolve(value?: string | null): string | null;
|
|
1297
1343
|
static ɵfac: i0.ɵɵFactoryDeclaration<InsIcon, never>;
|
|
1298
1344
|
static ɵcmp: i0.ɵɵComponentDeclaration<InsIcon, "ins-icon", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -1320,51 +1366,15 @@ interface InsTextFieldAccessor<T> {
|
|
|
1320
1366
|
}
|
|
1321
1367
|
declare const INS_TEXTFIELD_ACCESSOR: InjectionToken<InsTextFieldAccessor<unknown>>;
|
|
1322
1368
|
|
|
1323
|
-
declare abstract class InsValueTransformer<From, To = unknown> {
|
|
1324
|
-
abstract toControlValue(componentValue: From): To;
|
|
1325
|
-
abstract fromControlValue(controlValue: To): From;
|
|
1326
|
-
}
|
|
1327
|
-
|
|
1328
|
-
/**
|
|
1329
|
-
* Basic ControlValueAccessor class to build form components upon
|
|
1330
|
-
*/
|
|
1331
|
-
declare abstract class InsControl<T> implements ControlValueAccessor {
|
|
1332
|
-
private readonly fallback;
|
|
1333
|
-
private readonly refresh$;
|
|
1334
|
-
private readonly internal;
|
|
1335
|
-
protected readonly control: NgControl;
|
|
1336
|
-
protected readonly cdr: ChangeDetectorRef;
|
|
1337
|
-
protected transformer: InsValueTransformer<any, any>;
|
|
1338
|
-
readonly value: i0.Signal<T>;
|
|
1339
|
-
readonly readOnly: i0.InputSignal<boolean>;
|
|
1340
|
-
readonly pseudoInvalid: i0.InputSignal<boolean>;
|
|
1341
|
-
readonly touched: i0.WritableSignal<boolean>;
|
|
1342
|
-
readonly status: i0.WritableSignal<FormControlStatus>;
|
|
1343
|
-
readonly disabled: i0.Signal<boolean>;
|
|
1344
|
-
readonly interactive: i0.Signal<boolean>;
|
|
1345
|
-
readonly invalid: i0.Signal<boolean>;
|
|
1346
|
-
readonly mode: i0.Signal<"readonly" | "valid" | "invalid">;
|
|
1347
|
-
onTouched: (...args: any[]) => void;
|
|
1348
|
-
onChange: (value: T) => void;
|
|
1349
|
-
constructor();
|
|
1350
|
-
registerOnChange(onChange: (value: unknown) => void): void;
|
|
1351
|
-
registerOnTouched(onTouched: () => void): void;
|
|
1352
|
-
setDisabledState(): void;
|
|
1353
|
-
writeValue(value: T | null): void;
|
|
1354
|
-
private update;
|
|
1355
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InsControl<any>, never>;
|
|
1356
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<InsControl<any>, never, never, { "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "pseudoInvalid": { "alias": "invalid"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1357
|
-
}
|
|
1358
|
-
|
|
1359
1369
|
declare class InsTextfieldDirective {
|
|
1360
1370
|
private readonly textfield;
|
|
1361
1371
|
private readonly appearance;
|
|
1362
1372
|
readonly options: _liuk123_insui.InsTextfieldOptions;
|
|
1363
|
-
invalid: i0.InputSignal<boolean>;
|
|
1364
|
-
focused: i0.InputSignal<boolean>;
|
|
1373
|
+
invalid: i0.InputSignal<boolean | null>;
|
|
1374
|
+
focused: i0.InputSignal<boolean | null>;
|
|
1365
1375
|
readOnly: i0.InputSignal<boolean>;
|
|
1366
1376
|
disabled: i0.InputSignal<boolean>;
|
|
1367
|
-
mode: i0.Signal<"readonly" | "valid" |
|
|
1377
|
+
mode: i0.Signal<"invalid" | "readonly" | "valid" | null>;
|
|
1368
1378
|
constructor();
|
|
1369
1379
|
static ɵfac: i0.ɵɵFactoryDeclaration<InsTextfieldDirective, never>;
|
|
1370
1380
|
static ɵdir: i0.ɵɵDirectiveDeclaration<InsTextfieldDirective, never, never, { "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "focused": { "alias": "focused"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof InsWithAppearance; inputs: {}; outputs: {}; }, { directive: typeof InsNativeValidator; inputs: {}; outputs: {}; }]>;
|
|
@@ -1390,9 +1400,9 @@ declare class InsInputTagComponent<T> extends InsControl<T[]> implements InsText
|
|
|
1390
1400
|
disabledItemHandler: i0.InputSignal<InsBooleanHandler<any>>;
|
|
1391
1401
|
inputHidden: i0.InputSignal<boolean>;
|
|
1392
1402
|
placeholder: i0.InputSignal<string>;
|
|
1393
|
-
searchValue: FormControl<string>;
|
|
1403
|
+
searchValue: FormControl<string | null>;
|
|
1394
1404
|
searchChange: EventEmitter<string>;
|
|
1395
|
-
searchSignal: i0.Signal<string>;
|
|
1405
|
+
searchSignal: i0.Signal<string | null | undefined>;
|
|
1396
1406
|
computedPlaceholder: i0.Signal<string>;
|
|
1397
1407
|
showGhost: i0.Signal<"hidden" | "visible">;
|
|
1398
1408
|
ngOnInit(): void;
|
|
@@ -1578,7 +1588,7 @@ declare class InsRadioComponent implements DoCheck, OnInit {
|
|
|
1578
1588
|
private readonly el;
|
|
1579
1589
|
private readonly destroyRef;
|
|
1580
1590
|
private readonly cdr;
|
|
1581
|
-
protected readonly control: NgControl;
|
|
1591
|
+
protected readonly control: NgControl | null;
|
|
1582
1592
|
size: 's' | 'm' | 'l';
|
|
1583
1593
|
ngOnInit(): void;
|
|
1584
1594
|
ngDoCheck(): void;
|
|
@@ -1628,11 +1638,11 @@ declare class InsTextFieldSingleDataDirective<T> extends Observable<T[]> {
|
|
|
1628
1638
|
}
|
|
1629
1639
|
|
|
1630
1640
|
declare class InsSelectComponent<T> implements ControlValueAccessor, Validator, InsTextFieldAccessor<T>, OnInit {
|
|
1631
|
-
protected readonly optionsDataDirective: InsTextFieldSingleDataDirective<any
|
|
1641
|
+
protected readonly optionsDataDirective: InsTextFieldSingleDataDirective<any> | null;
|
|
1632
1642
|
protected readonly destroyRef: DestroyRef;
|
|
1633
|
-
value: i0.WritableSignal<T>;
|
|
1634
|
-
controlValue$: Subject<T>;
|
|
1635
|
-
writeValue$: Subject<T>;
|
|
1643
|
+
value: i0.WritableSignal<T | null>;
|
|
1644
|
+
controlValue$: Subject<T | null>;
|
|
1645
|
+
writeValue$: Subject<T | null>;
|
|
1636
1646
|
readOnly: i0.InputSignal<boolean>;
|
|
1637
1647
|
disabled: i0.InputSignal<boolean>;
|
|
1638
1648
|
placeholder: i0.InputSignal<string>;
|
|
@@ -1643,7 +1653,7 @@ declare class InsSelectComponent<T> implements ControlValueAccessor, Validator,
|
|
|
1643
1653
|
registerOnTouched(fn: any): void;
|
|
1644
1654
|
validate(): any;
|
|
1645
1655
|
ngOnInit(): void;
|
|
1646
|
-
mapOptionsToValues: ([dataValues, optionsArray]: [T, T[]]) => T;
|
|
1656
|
+
mapOptionsToValues: ([dataValues, optionsArray]: [T, T[]]) => NonNullable<T> | null;
|
|
1647
1657
|
setFocused(event: MouseEvent): void;
|
|
1648
1658
|
setValue(data: T | null): void;
|
|
1649
1659
|
getValue(): any;
|
|
@@ -1701,7 +1711,7 @@ declare class InsTabsWithMore implements AfterViewInit, OnInit {
|
|
|
1701
1711
|
private moreButton;
|
|
1702
1712
|
private readonly doc;
|
|
1703
1713
|
private readonly el;
|
|
1704
|
-
protected readonly moreWord: i0.Signal<string>;
|
|
1714
|
+
protected readonly moreWord: i0.Signal<string | undefined>;
|
|
1705
1715
|
protected readonly options: _liuk123_insui.InsTabsOptions;
|
|
1706
1716
|
private readonly injector;
|
|
1707
1717
|
tabsView: ElementRef;
|
|
@@ -1755,11 +1765,11 @@ declare const INS_TABS_OPTIONS: InjectionToken<InsTabsOptions>;
|
|
|
1755
1765
|
declare function insTabsOptionsProvider(options: Partial<InsTabsOptions>): Provider;
|
|
1756
1766
|
|
|
1757
1767
|
declare class InsTextfieldComponent<T> implements InsDataListHost<T> {
|
|
1758
|
-
protected readonly controller: i0.Signal<InsTextFieldAccessor<T
|
|
1768
|
+
protected readonly controller: i0.Signal<InsTextFieldAccessor<T> | undefined>;
|
|
1759
1769
|
readonly focused: i0.Signal<boolean>;
|
|
1760
1770
|
readonly options: _liuk123_insui.InsTextfieldOptions;
|
|
1761
1771
|
readonly icons: _liuk123_insui.InsCommonIcons;
|
|
1762
|
-
readonly clear: i0.Signal<string>;
|
|
1772
|
+
readonly clear: i0.Signal<string | undefined>;
|
|
1763
1773
|
cleaner: i0.WritableSignal<boolean>;
|
|
1764
1774
|
size: InputSignal<"s" | "m" | "l" | "xs">;
|
|
1765
1775
|
handleOption(option: T): void;
|
|
@@ -1776,7 +1786,7 @@ declare class InsTextfieldDropdownDirective {
|
|
|
1776
1786
|
declare class InsWithTextfieldDropdown {
|
|
1777
1787
|
private readonly dropdown;
|
|
1778
1788
|
private readonly textfield;
|
|
1779
|
-
protected temp: i0.Signal<TemplateRef<any
|
|
1789
|
+
protected temp: i0.Signal<TemplateRef<any> | undefined>;
|
|
1780
1790
|
constructor();
|
|
1781
1791
|
static ɵfac: i0.ɵɵFactoryDeclaration<InsWithTextfieldDropdown, never>;
|
|
1782
1792
|
static ɵdir: i0.ɵɵDirectiveDeclaration<InsWithTextfieldDropdown, "[insWithTextfieldDropdown]", never, {}, {}, ["temp"], never, true, [{ directive: typeof InsWithDropdownOpen; inputs: {}; outputs: {}; }, { directive: typeof InsDropdownDirective; inputs: {}; outputs: {}; }]>;
|
|
@@ -1838,7 +1848,7 @@ interface InsTreeLoader<T> {
|
|
|
1838
1848
|
declare class InsTreeItem<T> implements DoCheck, OnDestroy {
|
|
1839
1849
|
protected readonly nested: i0.Signal<readonly QueryList<unknown>[]>;
|
|
1840
1850
|
private readonly change$;
|
|
1841
|
-
protected readonly directive: InsTreeChildren<T
|
|
1851
|
+
protected readonly directive: InsTreeChildren<T> | null;
|
|
1842
1852
|
value: i0.InputSignal<T>;
|
|
1843
1853
|
trackBy: TrackByFunction<T>;
|
|
1844
1854
|
content: PolymorpheusContent<InsTreeContext<T>>;
|
|
@@ -1854,7 +1864,7 @@ declare class InsTreeItem<T> implements DoCheck, OnDestroy {
|
|
|
1854
1864
|
ngOnDestroy(): void;
|
|
1855
1865
|
ngDoCheck(): void;
|
|
1856
1866
|
protected readonly icons: _liuk123_insui.InsCommonIcons;
|
|
1857
|
-
protected readonly more: i0.Signal<string>;
|
|
1867
|
+
protected readonly more: i0.Signal<string | undefined>;
|
|
1858
1868
|
protected onClick(): void;
|
|
1859
1869
|
static ɵfac: i0.ɵɵFactoryDeclaration<InsTreeItem<any>, never>;
|
|
1860
1870
|
static ɵcmp: i0.ɵɵComponentDeclaration<InsTreeItem<any>, "ins-tree", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "trackBy": { "alias": "trackBy"; "required": false; }; "content": { "alias": "content"; "required": false; }; }, {}, ["nested"], ["*", "ins-tree"], true, never>;
|
|
@@ -2035,7 +2045,7 @@ declare class StopEventPlugin extends EventManagerPlugin {
|
|
|
2035
2045
|
static ɵprov: i0.ɵɵInjectableDeclaration<StopEventPlugin>;
|
|
2036
2046
|
}
|
|
2037
2047
|
|
|
2038
|
-
type InsLanguageName = '
|
|
2048
|
+
type InsLanguageName = 'chinese' | 'english' | 'french' | 'german' | 'japan' | (Record<never, never> & string);
|
|
2039
2049
|
|
|
2040
2050
|
interface InsLanguageCore {
|
|
2041
2051
|
close: string;
|
|
@@ -2087,84 +2097,71 @@ interface InsLanguageCore {
|
|
|
2087
2097
|
yes: string;
|
|
2088
2098
|
};
|
|
2089
2099
|
}
|
|
2090
|
-
interface
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
MDY: string;
|
|
2097
|
-
YMD: string;
|
|
2098
|
-
};
|
|
2099
|
-
digitalInformationUnits: [
|
|
2100
|
-
short_byte: string,
|
|
2101
|
-
short_kilobyte: string,
|
|
2102
|
-
short_megabyte: string
|
|
2103
|
-
];
|
|
2104
|
-
done: string;
|
|
2105
|
-
fileTexts: {
|
|
2106
|
-
loadingError: string;
|
|
2107
|
-
preview: string;
|
|
2108
|
-
remove: string;
|
|
2109
|
-
};
|
|
2110
|
-
hide: string;
|
|
2111
|
-
inputFileTexts: {
|
|
2112
|
-
defaultLabelMultiple: string;
|
|
2113
|
-
defaultLabelSingle: string;
|
|
2114
|
-
defaultLinkMultiple: string;
|
|
2115
|
-
defaultLinkSingle: string;
|
|
2116
|
-
drop: string;
|
|
2117
|
-
dropMultiple: string;
|
|
2118
|
-
formatRejectionReason: string;
|
|
2119
|
-
maxSizeRejectionReason: string;
|
|
2120
|
-
};
|
|
2121
|
-
mobileCalendarTexts: [choose_day: string, choose_range: string, choose_days: string];
|
|
2122
|
-
more: string;
|
|
2123
|
-
multiSelectTexts: {
|
|
2124
|
-
all: string;
|
|
2125
|
-
none: string;
|
|
2126
|
-
};
|
|
2127
|
-
otherDate: string;
|
|
2128
|
-
pagination: [previous_page: string, next_page: string];
|
|
2129
|
-
passwordTexts: [show_password: string, hide_password: string];
|
|
2130
|
-
confirm: {
|
|
2131
|
-
no: string;
|
|
2132
|
-
yes: string;
|
|
2133
|
-
};
|
|
2134
|
-
range: [from: string, to: string];
|
|
2135
|
-
shortCalendarMonths: [
|
|
2136
|
-
January: string,
|
|
2137
|
-
February: string,
|
|
2138
|
-
March: string,
|
|
2139
|
-
April: string,
|
|
2140
|
-
May: string,
|
|
2141
|
-
June: string,
|
|
2142
|
-
July: string,
|
|
2143
|
-
August: string,
|
|
2144
|
-
September: string,
|
|
2145
|
-
October: string,
|
|
2146
|
-
November: string,
|
|
2147
|
-
December: string
|
|
2148
|
-
];
|
|
2149
|
-
showAll: string;
|
|
2150
|
-
time: {
|
|
2151
|
-
'HH:MM': string;
|
|
2152
|
-
'HH:MM:SS': string;
|
|
2153
|
-
'HH:MM:SS.MSS': string;
|
|
2100
|
+
interface InsLanguageEditor {
|
|
2101
|
+
colorSelectorModeNames: [string, string];
|
|
2102
|
+
editorCodeOptions: [string, string];
|
|
2103
|
+
editorEditLink: {
|
|
2104
|
+
anchorExample: string;
|
|
2105
|
+
urlExample: string;
|
|
2154
2106
|
};
|
|
2155
|
-
|
|
2156
|
-
|
|
2107
|
+
editorFontOptions: {
|
|
2108
|
+
large: string;
|
|
2109
|
+
normal: string;
|
|
2110
|
+
small: string;
|
|
2111
|
+
subtitle: string;
|
|
2112
|
+
title: string;
|
|
2157
2113
|
};
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2114
|
+
editorTableCommands: [[string, string], [string, string], [string, string]];
|
|
2115
|
+
toolbarTools: {
|
|
2116
|
+
attach: string;
|
|
2117
|
+
backColor: string;
|
|
2118
|
+
bold: string;
|
|
2119
|
+
cellColor: string;
|
|
2120
|
+
clear: string;
|
|
2121
|
+
code: string;
|
|
2122
|
+
font: string;
|
|
2123
|
+
fontSize: string;
|
|
2124
|
+
fontStyle: string;
|
|
2125
|
+
foreColor: string;
|
|
2126
|
+
hiliteColor: string;
|
|
2127
|
+
hiliteGroup: string;
|
|
2128
|
+
image: string;
|
|
2129
|
+
indent: string;
|
|
2130
|
+
insertAnchor: string;
|
|
2131
|
+
insertGroup: string;
|
|
2132
|
+
insertHorizontalRule: string;
|
|
2133
|
+
insertTable: string;
|
|
2134
|
+
italic: string;
|
|
2135
|
+
justify: string;
|
|
2136
|
+
justifyCenter: string;
|
|
2137
|
+
justifyFull: string;
|
|
2138
|
+
justifyLeft: string;
|
|
2139
|
+
justifyRight: string;
|
|
2140
|
+
link: string;
|
|
2141
|
+
list: string;
|
|
2142
|
+
mergeCells: string;
|
|
2143
|
+
orderedList: string;
|
|
2144
|
+
outdent: string;
|
|
2145
|
+
quote: string;
|
|
2146
|
+
redo: string;
|
|
2147
|
+
removeDetails: string;
|
|
2148
|
+
removeGroup: string;
|
|
2149
|
+
rowsColumnsManaging: string;
|
|
2150
|
+
setDetails: string;
|
|
2151
|
+
splitCells: string;
|
|
2152
|
+
strikeThrough: string;
|
|
2153
|
+
subscript: string;
|
|
2154
|
+
superscript: string;
|
|
2155
|
+
tex: string;
|
|
2156
|
+
underline: string;
|
|
2157
|
+
undo: string;
|
|
2158
|
+
unorderedList: string;
|
|
2162
2159
|
};
|
|
2163
2160
|
}
|
|
2164
2161
|
interface InsLanguageMeta {
|
|
2165
2162
|
name: InsLanguageName;
|
|
2166
2163
|
}
|
|
2167
|
-
interface InsLanguage extends InsLanguageCore, InsLanguageMeta {
|
|
2164
|
+
interface InsLanguage extends InsLanguageCore, InsLanguageEditor, InsLanguageMeta {
|
|
2168
2165
|
}
|
|
2169
2166
|
|
|
2170
2167
|
declare const INS_CHINESE_LANGUAGE: InsLanguage;
|
|
@@ -2175,8 +2172,6 @@ declare const INS_DEFAULT_LANGUAGE: InjectionToken<InsLanguage>;
|
|
|
2175
2172
|
*/
|
|
2176
2173
|
declare const INS_LANGUAGE: InjectionToken<Observable<InsLanguage>>;
|
|
2177
2174
|
|
|
2178
|
-
type InsCountryIsoCode = 'AC' | 'AD' | 'AE' | 'AF' | 'AG' | 'AI' | 'AL' | 'AM' | 'AO' | 'AR' | 'AS' | 'AT' | 'AU' | 'AW' | 'AX' | 'AZ' | 'BA' | 'BB' | 'BD' | 'BE' | 'BF' | 'BG' | 'BH' | 'BI' | 'BJ' | 'BL' | 'BM' | 'BN' | 'BO' | 'BQ' | 'BR' | 'BS' | 'BT' | 'BW' | 'BY' | 'BZ' | 'CA' | 'CC' | 'CD' | 'CF' | 'CG' | 'CH' | 'CI' | 'CK' | 'CL' | 'CM' | 'CN' | 'CO' | 'CR' | 'CU' | 'CV' | 'CW' | 'CX' | 'CY' | 'CZ' | 'DE' | 'DJ' | 'DK' | 'DM' | 'DO' | 'DZ' | 'EC' | 'EE' | 'EG' | 'EH' | 'ER' | 'ES' | 'ET' | 'FI' | 'FJ' | 'FK' | 'FM' | 'FO' | 'FR' | 'GA' | 'GB' | 'GD' | 'GE' | 'GF' | 'GG' | 'GH' | 'GI' | 'GL' | 'GM' | 'GN' | 'GP' | 'GQ' | 'GR' | 'GT' | 'GU' | 'GW' | 'GY' | 'HK' | 'HN' | 'HR' | 'HT' | 'HU' | 'ID' | 'IE' | 'IL' | 'IM' | 'IN' | 'IO' | 'IQ' | 'IR' | 'IS' | 'IT' | 'JE' | 'JM' | 'JO' | 'JP' | 'KE' | 'KG' | 'KH' | 'KI' | 'KM' | 'KN' | 'KP' | 'KR' | 'KW' | 'KY' | 'KZ' | 'LA' | 'LB' | 'LC' | 'LI' | 'LK' | 'LR' | 'LS' | 'LT' | 'LU' | 'LV' | 'LY' | 'MA' | 'MC' | 'MD' | 'ME' | 'MF' | 'MG' | 'MH' | 'MK' | 'ML' | 'MM' | 'MN' | 'MO' | 'MP' | 'MQ' | 'MR' | 'MS' | 'MT' | 'MU' | 'MV' | 'MW' | 'MX' | 'MY' | 'MZ' | 'NA' | 'NC' | 'NE' | 'NF' | 'NG' | 'NI' | 'NL' | 'NO' | 'NP' | 'NR' | 'NU' | 'NZ' | 'OM' | 'PA' | 'PE' | 'PF' | 'PG' | 'PH' | 'PK' | 'PL' | 'PM' | 'PR' | 'PS' | 'PT' | 'PW' | 'PY' | 'QA' | 'RE' | 'RO' | 'RS' | 'RU' | 'RW' | 'SA' | 'SB' | 'SC' | 'SD' | 'SE' | 'SG' | 'SH' | 'SI' | 'SJ' | 'SK' | 'SL' | 'SM' | 'SN' | 'SO' | 'SR' | 'SS' | 'ST' | 'SV' | 'SX' | 'SY' | 'SZ' | 'TA' | 'TC' | 'TD' | 'TG' | 'TH' | 'TJ' | 'TK' | 'TL' | 'TM' | 'TN' | 'TO' | 'TR' | 'TT' | 'TV' | 'TW' | 'TZ' | 'UA' | 'UG' | 'US' | 'UY' | 'UZ' | 'VA' | 'VC' | 'VE' | 'VG' | 'VI' | 'VN' | 'VU' | 'WF' | 'WS' | 'XK' | 'YE' | 'YT' | 'ZA' | 'ZM' | 'ZW';
|
|
2179
|
-
|
|
2180
2175
|
declare function insExtractI18n<K extends keyof InsLanguage>(key: K): () => Observable<InsLanguage[K]>;
|
|
2181
2176
|
|
|
2182
2177
|
declare class InsCardLarge {
|
|
@@ -2215,7 +2210,7 @@ declare class InsMapperPipe implements PipeTransform {
|
|
|
2215
2210
|
/**
|
|
2216
2211
|
* Active element on the document for ActiveZone
|
|
2217
2212
|
*/
|
|
2218
|
-
declare const INS_ACTIVE_ELEMENT: i0.InjectionToken<Observable<EventTarget>>;
|
|
2213
|
+
declare const INS_ACTIVE_ELEMENT: i0.InjectionToken<Observable<EventTarget | null>>;
|
|
2219
2214
|
|
|
2220
2215
|
interface InsCommonIcons {
|
|
2221
2216
|
readonly check: string;
|
|
@@ -2260,7 +2255,7 @@ declare const INS_PAGINATION_TEXTS: i0.InjectionToken<rxjs.Observable<readonly [
|
|
|
2260
2255
|
|
|
2261
2256
|
declare const REDUCED_MOTION: i0.InjectionToken<boolean>;
|
|
2262
2257
|
|
|
2263
|
-
declare const INS_REMOVED_ELEMENT: InjectionToken<rxjs.Observable<
|
|
2258
|
+
declare const INS_REMOVED_ELEMENT: InjectionToken<rxjs.Observable<Element | null>>;
|
|
2264
2259
|
|
|
2265
2260
|
interface InsSpinIcons {
|
|
2266
2261
|
readonly decrement: string;
|
|
@@ -2348,7 +2343,7 @@ declare class ResizeObserver$1 {
|
|
|
2348
2343
|
}
|
|
2349
2344
|
|
|
2350
2345
|
declare class InsTableTd {
|
|
2351
|
-
protected readonly textfield: i0.Signal<InsTextfieldComponent<any
|
|
2346
|
+
protected readonly textfield: i0.Signal<InsTextfieldComponent<any> | undefined>;
|
|
2352
2347
|
static ɵfac: i0.ɵɵFactoryDeclaration<InsTableTd, never>;
|
|
2353
2348
|
static ɵcmp: i0.ɵɵComponentDeclaration<InsTableTd, "th[insTd], td[insTd]", never, {}, {}, ["textfield"], ["*"], true, never>;
|
|
2354
2349
|
}
|
|
@@ -2364,7 +2359,7 @@ declare class InsTableThGroup<T extends Partial<Record<keyof T, any>>> {
|
|
|
2364
2359
|
|
|
2365
2360
|
declare class InsTableTh<T extends Partial<Record<keyof T, any>>> {
|
|
2366
2361
|
private readonly options;
|
|
2367
|
-
protected width: i0.WritableSignal<number>;
|
|
2362
|
+
protected width: i0.WritableSignal<number | null>;
|
|
2368
2363
|
protected onResized(width: number): void;
|
|
2369
2364
|
resizable: i0.InputSignal<boolean>;
|
|
2370
2365
|
sticky: i0.InputSignal<boolean>;
|
|
@@ -2382,7 +2377,7 @@ declare class InsTableCell {
|
|
|
2382
2377
|
}
|
|
2383
2378
|
|
|
2384
2379
|
declare class InsStuck {
|
|
2385
|
-
protected readonly stuck: i0.Signal<boolean>;
|
|
2380
|
+
protected readonly stuck: i0.Signal<boolean | undefined>;
|
|
2386
2381
|
static ɵfac: i0.ɵɵFactoryDeclaration<InsStuck, never>;
|
|
2387
2382
|
static ɵdir: i0.ɵɵDirectiveDeclaration<InsStuck, "ins-stuck:never", never, {}, {}, never, never, true, never>;
|
|
2388
2383
|
}
|
|
@@ -2507,5 +2502,5 @@ declare class InsCheckboxTableDirective {
|
|
|
2507
2502
|
|
|
2508
2503
|
declare const InsTableControl: readonly [typeof InsCheckboxRowDirective, typeof InsCheckboxTableDirective, typeof InsTableControlDirective];
|
|
2509
2504
|
|
|
2510
|
-
export { ANIMATION_FRAME, EMPTY_ARRAY, EMPTY_CLIENT_RECT, EMPTY_FUNCTION, EMPTY_QUERY, FieldErrorPipe, INS_ACTIVE_ELEMENT, INS_ALERT_CONCURRENCY, INS_ALERT_DEFAULT_OPTIONS, INS_ALERT_OPTIONS, INS_APPEARANCE_DEFAULT_OPTIONS, INS_APPEARANCE_OPTIONS, INS_ASSETS_PATH, INS_AVATAR_DEFAULT_OPTIONS, INS_AVATAR_OPTIONS, INS_BUTTON_DEFAULT_OPTIONS, INS_BUTTON_OPTIONS, INS_CHECKBOX_DEFAULT_OPTIONS, INS_CHECKBOX_OPTIONS, INS_CHEVRON, INS_CHINESE_LANGUAGE, INS_CHIP_DEFAULT_OPTIONS, INS_CHIP_OPTIONS, INS_CLEAR_WORD, INS_CLOSE_WORD, INS_COMMON_ICONS, INS_DATA_LIST_ACCESSOR, INS_DATA_LIST_HOST, INS_DEFAULT_ERROR_MESSAGE, INS_DEFAULT_LANGUAGE, INS_DEFAULT_TREE_CONTROLLER, INS_DIALOG_DEFAULT_OPTIONS, INS_DIALOG_OPTIONS, INS_DROPDOWN_COMPONENT, INS_DROPDOWN_CONTEXT, INS_DROPDOWN_DEFAULT_OPTIONS, INS_DROPDOWN_HOVER_DEFAULT_OPTIONS, INS_DROPDOWN_HOVER_OPTIONS, INS_DROPDOWN_OPTIONS, INS_ENTER, INS_FORM_DEFAULT_OPTIONS, INS_FORM_OPTIONS, INS_GROUP_DEFAULT_OPTIONS, INS_GROUP_OPTIONS, INS_ICON_END, INS_ICON_START, INS_ICON_STARTS, INS_INPUT_TAG_DEFAULT_OPTIONS, INS_INPUT_TAG_OPTIONS, INS_LABEL_DEFAULT_OPTIONS, INS_LABEL_OPTIONS, INS_LANGUAGE, INS_LEAVE, INS_LINK_DEFAULT_OPTIONS, INS_LINK_OPTIONS, INS_LOADER_DEFAULT_OPTIONS, INS_LOADER_OPTIONS, INS_MEDIA, INS_MORE_WORD, INS_NOTHING_FOUND_MESSAGE, INS_NOTIFICATION_DEFAULT_OPTIONS, INS_NOTIFICATION_OPTIONS, INS_PAGINATION_TEXTS, INS_RADIO_DEFAULT_OPTIONS, INS_RADIO_OPTIONS, INS_REMOVED_ELEMENT, INS_SELECTION_STREAM, INS_SPIN_ICONS, INS_SWIPE_OPTIONS, INS_TABLE_DEFAULT_OPTIONS, INS_TABLE_OPTIONS, INS_TABS_DEFAULT_OPTIONS, INS_TABS_OPTIONS, INS_TAB_ACTIVATE, INS_TEXTAREA_DEFAULT_OPTIONS, INS_TEXTAREA_OPTIONS, INS_TEXTFIELD_ACCESSOR, INS_TEXTFIELD_DEFAULT_OPTIONS, INS_TEXTFIELD_OPTIONS, INS_TREE_ACCESSOR, INS_TREE_CONTROLLER, INS_TREE_LEVEL, INS_TREE_LOADER, INS_TREE_LOADING, INS_TREE_NODE, INS_TREE_START, INS_VALIDATION_ERRORS, INS_VIEWPORT, INS_ZOOM_OPTIONS, IS_IOS, InsAccessor, InsAccordion, InsAccordionComponent, InsAccordionDirective, InsActiveZone, InsAlert, InsAlertComponent, InsAlertService, InsAnimated, InsAppearance, InsAvatar, InsBreakpointService, InsButton, InsButtonLoading, InsCardLarge, InsCell, InsCheckbox, InsCheckboxRowDirective, InsCheckboxTableDirective, InsChevron, InsChip, InsCopyProcessor, InsDataList, InsDataListComponent, InsDialog, InsDialogComponent, InsDialogService, InsDriver, InsDriverDirective, InsDropdown, InsDropdownComponent, InsDropdownContent, InsDropdownDirective, InsDropdownDriver, InsDropdownDriverDirective, InsDropdownHover, InsDropdownOpen, InsDropdownOptionsDirective, InsDropdownPosition, InsDropdownPositionSided, InsDropdownSelection, InsError, InsExpand, InsFade, InsFocusTrap, InsForm, InsGroup, InsHeader, InsIcon, InsIcons, InsIdService, InsInputTagComponent, InsItem, InsLabel, InsLink, InsLoader, InsMapperPipe, InsModalComponent, InsModalService, InsNativeValidator, InsNoHostException, InsNotification, InsNotificationDirective, InsNotificationService, InsObscured, InsObscuredService, InsOptGroup, InsOption, InsPagination, InsPopup, InsPopupService, InsPopups, InsPortal, InsPortalDirective, InsPortalService, InsPortals, InsPositionAccessor, InsPositionService, InsPresent, InsRadio, InsRadioComponent, InsRadioDirective, InsRectAccessor, InsResize, InsRoot, InsSelectComponent, InsStuck, InsSwipe, InsSwipeService, InsTab, InsTable, InsTableCell, InsTableControl, InsTableControlDirective, InsTableDirective, InsTableExpand, InsTableHead, InsTableResized, InsTableTbody, InsTableTd, InsTableTh, InsTableThGroup, InsTableThead, InsTableTr, InsTabs, InsTabsDirective, InsTabsHorizontal, InsTabsStyles, InsTabsVertical, InsTabsWithMore, InsTextFieldController, InsTextFieldDataDirective, InsTextFieldSingleDataDirective, InsTextarea, InsTextareaCounterComponent, InsTextareaLimit, InsTextareaLimitComponent, InsTextfield, InsTextfieldComponent, InsTextfieldDirective, InsTextfieldDropdownDirective, InsTitle, InsTransitioned, InsTree, InsTreeChildren, InsTreeControllerDirective, InsTreeItem, InsTreeItemController, InsTreeService, InsValidationError, InsVehicle, InsWithAppearance, InsWithDropdownOpen, InsWithIcons, InsWithTextfieldDropdown, InsZoom, InsZoomService, LOCAL_STORAGE, MUTATION_OBSERVER_INIT, MutationObserver$1 as MutationObserver, MutationObserverService, NG_EVENT_PLUGINS, OptionsEventPlugin, POLYMORPHEUS_CONTEXT, PolymorpheusComponent, PolymorpheusContext, PolymorpheusOutlet, PolymorpheusTemplate, PreventEventPlugin, REDUCED_MOTION, RESIZE_OPTION_BOX, RESIZE_OPTION_BOX_DEFAULT, ResizeObserver$1 as ResizeObserver, ResizeObserverService, SafeObserver, SelfEventPlugin, SilentEventPlugin, StopEventPlugin, TextfieldOptionItem, WINDOW, commonIconsProvider, containsOrAfter, createToken, createTokenFromFactory, getActualTarget, getClosestFocusable, getDocumentOrShadowRoot, getNativeFocused, getViewportHeight, getViewportWidth, injectElement, insAlertOptionsProvider, insAppearanceOptionsProvider, insArrayRemove, insArrayToggle, insAsDataListAccessor, insAsDataListHost, insAsDriver, insAsPortal, insAsPositionAccessor, insAsRectAccessor, insAsVehicle, insAsViewport, insAssetsPathProvider, insAvatarOptionsProvider, insBlurNativeFocused, insButtonOptionsProvider, insCheckFixedPosition, insCheckboxOptionsProvider, insChipOptionsProvider, insClamp, insDropdownHoverOptionsProvider, insDropdownOptionsProvider, insExtractI18n, insFocusedIn, insFormOptionsProvider, insGetElementObscures, insGetSelectedText, insGetSemanticWordRange, insGetWordRange, insGroupOptionsProvider, insIconsProvider, insIfMap, insInjectIconResolver, insInjectId, insInputTagOptionsProvider, insIsElementEditable, insLabelOptionsProvider, insLinkOptionsProvider, insLoaderOptionsProvider, insMarkControlAsTouchedAndValidate, insMoveFocus, insNotificationOptionsProvider, insOverrideOptions, insProvide, insRadioOptionsProvider, insTableOptionsProvider, insTabsOptionsProvider, insTextareaOptionsProvider, insTextfieldOptionsProvider, insWithStyles, insZoneOptimized, insZonefree, insZonefreeScheduler, insZonefull, insZonefullScheduler, isEditingKey, isElement, isHTMLElement, isInput, isNativeFocused, isNativeFocusedIn, isNativeKeyboardFocusable, isNativeMouseFocusable, isPresent, isTextNode, isTextarea, isTextfield, provideMutationObserverInit, provideOptions, svgNodeFilter };
|
|
2511
|
-
export type { GetClosestFocusableOptions, InsAlertContext, InsAlertOptions, InsAppearanceOptions, InsAvatarOptions, InsBooleanHandler, InsBreakpointMediaKey, InsButtonOptions, InsCheckboxOptions, InsChipOptions, InsCommonIcons, InsContext,
|
|
2505
|
+
export { ANIMATION_FRAME, EMPTY_ARRAY, EMPTY_CLIENT_RECT, EMPTY_FUNCTION, EMPTY_QUERY, FieldErrorPipe, INS_ACTIVE_ELEMENT, INS_ALERT_CONCURRENCY, INS_ALERT_DEFAULT_OPTIONS, INS_ALERT_OPTIONS, INS_APPEARANCE_DEFAULT_OPTIONS, INS_APPEARANCE_OPTIONS, INS_ASSETS_PATH, INS_AVATAR_DEFAULT_OPTIONS, INS_AVATAR_OPTIONS, INS_BUTTON_DEFAULT_OPTIONS, INS_BUTTON_OPTIONS, INS_CHECKBOX_DEFAULT_OPTIONS, INS_CHECKBOX_OPTIONS, INS_CHEVRON, INS_CHINESE_LANGUAGE, INS_CHIP_DEFAULT_OPTIONS, INS_CHIP_OPTIONS, INS_CLEAR_WORD, INS_CLOSE_WORD, INS_COMMON_ICONS, INS_DATA_LIST_ACCESSOR, INS_DATA_LIST_HOST, INS_DEFAULT_ERROR_MESSAGE, INS_DEFAULT_LANGUAGE, INS_DEFAULT_TREE_CONTROLLER, INS_DIALOG_DEFAULT_OPTIONS, INS_DIALOG_OPTIONS, INS_DROPDOWN_COMPONENT, INS_DROPDOWN_CONTEXT, INS_DROPDOWN_DEFAULT_OPTIONS, INS_DROPDOWN_HOVER_DEFAULT_OPTIONS, INS_DROPDOWN_HOVER_OPTIONS, INS_DROPDOWN_OPTIONS, INS_ENTER, INS_FORM_DEFAULT_OPTIONS, INS_FORM_OPTIONS, INS_GROUP_DEFAULT_OPTIONS, INS_GROUP_OPTIONS, INS_ICON_END, INS_ICON_START, INS_ICON_STARTS, INS_IDENTITY_VALUE_TRANSFORMER, INS_INPUT_TAG_DEFAULT_OPTIONS, INS_INPUT_TAG_OPTIONS, INS_LABEL_DEFAULT_OPTIONS, INS_LABEL_OPTIONS, INS_LANGUAGE, INS_LEAVE, INS_LINK_DEFAULT_OPTIONS, INS_LINK_OPTIONS, INS_LOADER_DEFAULT_OPTIONS, INS_LOADER_OPTIONS, INS_MEDIA, INS_MORE_WORD, INS_NOTHING_FOUND_MESSAGE, INS_NOTIFICATION_DEFAULT_OPTIONS, INS_NOTIFICATION_OPTIONS, INS_PAGINATION_TEXTS, INS_RADIO_DEFAULT_OPTIONS, INS_RADIO_OPTIONS, INS_REMOVED_ELEMENT, INS_SELECTION_STREAM, INS_SPIN_ICONS, INS_SWIPE_OPTIONS, INS_TABLE_DEFAULT_OPTIONS, INS_TABLE_OPTIONS, INS_TABS_DEFAULT_OPTIONS, INS_TABS_OPTIONS, INS_TAB_ACTIVATE, INS_TEXTAREA_DEFAULT_OPTIONS, INS_TEXTAREA_OPTIONS, INS_TEXTFIELD_ACCESSOR, INS_TEXTFIELD_DEFAULT_OPTIONS, INS_TEXTFIELD_OPTIONS, INS_TREE_ACCESSOR, INS_TREE_CONTROLLER, INS_TREE_LEVEL, INS_TREE_LOADER, INS_TREE_LOADING, INS_TREE_NODE, INS_TREE_START, INS_VALIDATION_ERRORS, INS_VIEWPORT, INS_ZOOM_OPTIONS, IS_IOS, InsAccessor, InsAccordion, InsAccordionComponent, InsAccordionDirective, InsActiveZone, InsAlert, InsAlertComponent, InsAlertService, InsAnimated, InsAppearance, InsAvatar, InsBreakpointService, InsButton, InsButtonLoading, InsCardLarge, InsCell, InsCheckbox, InsCheckboxRowDirective, InsCheckboxTableDirective, InsChevron, InsChip, InsControl, InsCopyProcessor, InsDataList, InsDataListComponent, InsDialog, InsDialogComponent, InsDialogService, InsDriver, InsDriverDirective, InsDropdown, InsDropdownComponent, InsDropdownContent, InsDropdownDirective, InsDropdownDriver, InsDropdownDriverDirective, InsDropdownHover, InsDropdownOpen, InsDropdownOptionsDirective, InsDropdownPosition, InsDropdownPositionSided, InsDropdownSelection, InsError, InsExpand, InsFade, InsFocusTrap, InsForm, InsGroup, InsHeader, InsIcon, InsIcons, InsIdService, InsInputTagComponent, InsItem, InsLabel, InsLink, InsLoader, InsMapperPipe, InsModalComponent, InsModalService, InsNativeValidator, InsNoHostException, InsNonNullableValueTransformer, InsNotification, InsNotificationDirective, InsNotificationService, InsObscured, InsObscuredService, InsOptGroup, InsOption, InsPagination, InsPopup, InsPopupService, InsPopups, InsPortal, InsPortalDirective, InsPortalService, InsPortals, InsPositionAccessor, InsPositionService, InsPresent, InsRadio, InsRadioComponent, InsRadioDirective, InsRectAccessor, InsResize, InsRoot, InsSelectComponent, InsStuck, InsSwipe, InsSwipeService, InsTab, InsTable, InsTableCell, InsTableControl, InsTableControlDirective, InsTableDirective, InsTableExpand, InsTableHead, InsTableResized, InsTableTbody, InsTableTd, InsTableTh, InsTableThGroup, InsTableThead, InsTableTr, InsTabs, InsTabsDirective, InsTabsHorizontal, InsTabsStyles, InsTabsVertical, InsTabsWithMore, InsTextFieldController, InsTextFieldDataDirective, InsTextFieldSingleDataDirective, InsTextarea, InsTextareaCounterComponent, InsTextareaLimit, InsTextareaLimitComponent, InsTextfield, InsTextfieldComponent, InsTextfieldDirective, InsTextfieldDropdownDirective, InsTitle, InsTransitioned, InsTree, InsTreeChildren, InsTreeControllerDirective, InsTreeItem, InsTreeItemController, InsTreeService, InsValidationError, InsValueTransformer, InsVehicle, InsWithAppearance, InsWithDropdownOpen, InsWithIcons, InsWithTextfieldDropdown, InsZoom, InsZoomService, LOCAL_STORAGE, MUTATION_OBSERVER_INIT, MutationObserver$1 as MutationObserver, MutationObserverService, NG_EVENT_PLUGINS, OptionsEventPlugin, POLYMORPHEUS_CONTEXT, PolymorpheusComponent, PolymorpheusContext, PolymorpheusOutlet, PolymorpheusTemplate, PreventEventPlugin, REDUCED_MOTION, RESIZE_OPTION_BOX, RESIZE_OPTION_BOX_DEFAULT, ResizeObserver$1 as ResizeObserver, ResizeObserverService, SafeObserver, SelfEventPlugin, SilentEventPlugin, StopEventPlugin, TextfieldOptionItem, WINDOW, commonIconsProvider, containsOrAfter, createToken, createTokenFromFactory, getActualTarget, getClosestFocusable, getDocumentOrShadowRoot, getNativeFocused, getViewportHeight, getViewportWidth, injectElement, insAlertOptionsProvider, insAppearanceOptionsProvider, insArrayRemove, insArrayToggle, insAsControl, insAsDataListAccessor, insAsDataListHost, insAsDriver, insAsPortal, insAsPositionAccessor, insAsRectAccessor, insAsVehicle, insAsViewport, insAssetsPathProvider, insAvatarOptionsProvider, insBlurNativeFocused, insButtonOptionsProvider, insCheckFixedPosition, insCheckboxOptionsProvider, insChipOptionsProvider, insClamp, insDropdownHoverOptionsProvider, insDropdownOptionsProvider, insExtractI18n, insFocusedIn, insFormOptionsProvider, insGetElementObscures, insGetSelectedText, insGetSemanticWordRange, insGetWordRange, insGroupOptionsProvider, insIconsProvider, insIfMap, insInjectIconResolver, insInjectId, insInputTagOptionsProvider, insIsElementEditable, insLabelOptionsProvider, insLinkOptionsProvider, insLoaderOptionsProvider, insMarkControlAsTouchedAndValidate, insMoveFocus, insNotificationOptionsProvider, insOverrideOptions, insProvide, insRadioOptionsProvider, insTableOptionsProvider, insTabsOptionsProvider, insTextareaOptionsProvider, insTextfieldOptionsProvider, insValueTransformerFrom, insWithStyles, insZoneOptimized, insZonefree, insZonefreeScheduler, insZonefull, insZonefullScheduler, isEditingKey, isElement, isHTMLElement, isInput, isNativeFocused, isNativeFocusedIn, isNativeKeyboardFocusable, isNativeMouseFocusable, isPresent, isTextNode, isTextarea, isTextfield, provideMutationObserverInit, provideOptions, svgNodeFilter };
|
|
2506
|
+
export type { GetClosestFocusableOptions, InsAlertContext, InsAlertOptions, InsAppearanceOptions, InsAvatarOptions, InsBooleanHandler, InsBreakpointMediaKey, InsButtonOptions, InsCheckboxOptions, InsChipOptions, InsCommonIcons, InsContext, InsDataListAccessor, InsDataListHost, InsDialogContext, InsDialogOptions, InsDropdownAlign, InsDropdownHoverOptions, InsDropdownOptions, InsDropdownWidth, InsFileLike, InsFileState, InsFormOptions, InsGroupOptions, InsHandler, InsHorizontalDirection, InsIdentityMatcher, InsInputTagOptions, InsInteractiveState, InsLabelOptions, InsLanguage, InsLanguageCore, InsLanguageEditor, InsLanguageMeta, InsLanguageName, InsLinkOptions, InsLoaderOptions, InsMapper, InsMatcher, InsMedia, InsNotificationOptions, InsNumberHandler, InsPoint, InsPortalContext, InsPortalItem, InsPositionOptions, InsRadioOptions, InsSpinIcons, InsStringHandler, InsStringMatcher, InsSwipeDirection, InsSwipeEvent, InsSwipeOptions, InsTableOptions, InsTabsOptions, InsTextFieldAccessor, InsTextareaOptions, InsTextfieldOptions, InsTreeAccessor, InsTreeContext, InsTreeController, InsTreeItemContext, InsTreeLoader, InsVerticalDirection, InsZoomEvent, InsZoomOptions, PolymorpheusContent, PolymorpheusPrimitive, Storage };
|