@solcre-org/core-ui 2.16.0 → 2.16.3
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/assets/css/inc/components/bottom-alert.css +1 -1
- package/assets/css/inc/components/calendar.css +423 -14
- package/assets/css/inc/components/data-entry.general.css +1 -0
- package/assets/css/inc/components/header-mobile.css +12 -3
- package/assets/css/inc/components/modal.css +1 -1
- package/assets/css/inc/components/popup.css +5 -0
- package/assets/css/inc/components/table.css +8 -3
- package/assets/css/inc/generic/screen.css +3 -4
- package/assets/css/main.css +1 -0
- package/fesm2022/solcre-org-core-ui.mjs +904 -36
- package/fesm2022/solcre-org-core-ui.mjs.map +1 -1
- package/index.d.ts +315 -14
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -854,6 +854,43 @@ declare const ALL_COUNTRY_CODES: CountryCode[];
|
|
|
854
854
|
declare function isValidCountryCode(code: string): code is CountryCode;
|
|
855
855
|
declare function getCountryCodeStrings(): string[];
|
|
856
856
|
|
|
857
|
+
declare enum DayState {
|
|
858
|
+
DEFAULT = "default",
|
|
859
|
+
ACTIVE = "active",
|
|
860
|
+
CURRENT = "current",
|
|
861
|
+
DISABLED = "disabled",
|
|
862
|
+
SELECTED = "selected"
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
declare enum DayType {
|
|
866
|
+
PREVIOUS_MONTH = "previous",
|
|
867
|
+
CURRENT_MONTH = "current",
|
|
868
|
+
NEXT_MONTH = "next"
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
declare enum CalendarEventType {
|
|
872
|
+
BLOCKED = "blocked",
|
|
873
|
+
UNAVAILABLE = "unavailable",
|
|
874
|
+
EVENT = "event",
|
|
875
|
+
PENDING = "pending",
|
|
876
|
+
USER_EVENT = "user-event",
|
|
877
|
+
CONFIRMED = "confirmed",
|
|
878
|
+
CANCELLED = "cancelled",
|
|
879
|
+
COMPLETED = "completed",
|
|
880
|
+
REJECTED = "rejected",
|
|
881
|
+
EXPIRED = "expired"
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
declare enum WeekDay {
|
|
885
|
+
MONDAY = 0,
|
|
886
|
+
TUESDAY = 1,
|
|
887
|
+
WEDNESDAY = 2,
|
|
888
|
+
THURSDAY = 3,
|
|
889
|
+
FRIDAY = 4,
|
|
890
|
+
SATURDAY = 5,
|
|
891
|
+
SUNDAY = 6
|
|
892
|
+
}
|
|
893
|
+
|
|
857
894
|
interface CountryOption {
|
|
858
895
|
code: CountryCode;
|
|
859
896
|
phone: string;
|
|
@@ -1419,7 +1456,9 @@ interface ButtonConfig {
|
|
|
1419
1456
|
fragment?: string;
|
|
1420
1457
|
requiredPermission?: {
|
|
1421
1458
|
resource?: string;
|
|
1422
|
-
|
|
1459
|
+
resources?: string[];
|
|
1460
|
+
action?: string;
|
|
1461
|
+
actions?: string[];
|
|
1423
1462
|
custom_action?: string;
|
|
1424
1463
|
};
|
|
1425
1464
|
id?: string;
|
|
@@ -1447,6 +1486,7 @@ declare class GenericButtonComponent {
|
|
|
1447
1486
|
buttonClick: _angular_core.OutputEmitterRef<ButtonActionEvent>;
|
|
1448
1487
|
get hostClasses(): string;
|
|
1449
1488
|
isDisabled: _angular_core.Signal<boolean>;
|
|
1489
|
+
private checkRequiredPermission;
|
|
1450
1490
|
buttonClasses: _angular_core.Signal<string>;
|
|
1451
1491
|
isLink: _angular_core.Signal<boolean>;
|
|
1452
1492
|
isIconOnly: _angular_core.Signal<boolean>;
|
|
@@ -1947,7 +1987,9 @@ interface CustomAction<T> extends SwitchActionConfig {
|
|
|
1947
1987
|
callback: (row: T) => void;
|
|
1948
1988
|
requiredPermission?: {
|
|
1949
1989
|
resource?: string;
|
|
1950
|
-
|
|
1990
|
+
resources?: string[];
|
|
1991
|
+
action?: string;
|
|
1992
|
+
actions?: string[];
|
|
1951
1993
|
custom_action?: string;
|
|
1952
1994
|
};
|
|
1953
1995
|
buttonConfig?: Partial<ButtonConfig>;
|
|
@@ -1967,7 +2009,9 @@ interface TableActionConfig<T = any> {
|
|
|
1967
2009
|
tooltipPosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
1968
2010
|
requiredPermission?: {
|
|
1969
2011
|
resource?: string;
|
|
1970
|
-
|
|
2012
|
+
resources?: string[];
|
|
2013
|
+
action?: string;
|
|
2014
|
+
actions?: string[];
|
|
1971
2015
|
custom_action?: string;
|
|
1972
2016
|
};
|
|
1973
2017
|
shouldShow?: (row: T) => boolean;
|
|
@@ -2018,6 +2062,7 @@ declare class DropdownComponent<T> implements OnDestroy {
|
|
|
2018
2062
|
triggerAction(action: TableAction): void;
|
|
2019
2063
|
triggerCustomAction(action: CustomAction<T>): void;
|
|
2020
2064
|
hasPermission(action: TableActionConfig<T> | CustomAction<T>): boolean;
|
|
2065
|
+
private checkRequiredPermission;
|
|
2021
2066
|
shouldShowAction(actionConfig: TableActionConfig<T>): boolean;
|
|
2022
2067
|
shouldShowCustomAction(customAction: CustomAction<T>): boolean;
|
|
2023
2068
|
getActionLabel(action: TableAction): string;
|
|
@@ -2210,7 +2255,9 @@ interface GlobalAction<T> extends SwitchActionConfig {
|
|
|
2210
2255
|
maxSelection?: number;
|
|
2211
2256
|
requiredPermission?: {
|
|
2212
2257
|
resource?: string;
|
|
2213
|
-
|
|
2258
|
+
resources?: string[];
|
|
2259
|
+
action?: string;
|
|
2260
|
+
actions?: string[];
|
|
2214
2261
|
custom_action?: string;
|
|
2215
2262
|
};
|
|
2216
2263
|
execute?: (selectedRows: T[]) => void;
|
|
@@ -2273,7 +2320,9 @@ interface FixedActionConfig<T = any> {
|
|
|
2273
2320
|
buttonConfig?: Partial<ButtonConfig>;
|
|
2274
2321
|
requiredPermission?: {
|
|
2275
2322
|
resource?: string;
|
|
2276
|
-
|
|
2323
|
+
resources?: string[];
|
|
2324
|
+
action?: string;
|
|
2325
|
+
actions?: string[];
|
|
2277
2326
|
custom_action?: string;
|
|
2278
2327
|
};
|
|
2279
2328
|
shouldShow?: (row?: T) => boolean;
|
|
@@ -2888,6 +2937,7 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
|
|
|
2888
2937
|
emitDataEvent(data: T, mode: ModalMode): void;
|
|
2889
2938
|
getRowId(row: T): number;
|
|
2890
2939
|
hasPermission(action: TableActionConfig<T> | CustomAction<T> | GlobalAction<T>): boolean;
|
|
2940
|
+
private checkRequiredPermission;
|
|
2891
2941
|
showFiltersPopup(): void;
|
|
2892
2942
|
closeFiltersPopup(): void;
|
|
2893
2943
|
handleFilterChange(filterValues: Map<string, any>): void;
|
|
@@ -3253,7 +3303,9 @@ interface HeaderActionConfig {
|
|
|
3253
3303
|
tooltipPosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
3254
3304
|
requiredPermission?: {
|
|
3255
3305
|
resource?: string;
|
|
3256
|
-
|
|
3306
|
+
resources?: string[];
|
|
3307
|
+
action?: string;
|
|
3308
|
+
actions?: string[];
|
|
3257
3309
|
custom_action?: string;
|
|
3258
3310
|
};
|
|
3259
3311
|
mobileConfig?: MobileActionConfig;
|
|
@@ -3407,6 +3459,101 @@ interface RatingSubmitEvent {
|
|
|
3407
3459
|
endpoint?: string;
|
|
3408
3460
|
}
|
|
3409
3461
|
|
|
3462
|
+
interface CalendarConfig {
|
|
3463
|
+
showWeekNumbers?: boolean;
|
|
3464
|
+
startWeekOnMonday?: boolean;
|
|
3465
|
+
allowPastDates?: boolean;
|
|
3466
|
+
allowFutureDates?: boolean;
|
|
3467
|
+
minDate?: Date;
|
|
3468
|
+
maxDate?: Date;
|
|
3469
|
+
disabledDates?: Date[];
|
|
3470
|
+
highlightedDates?: Date[];
|
|
3471
|
+
holidays?: CalendarHoliday[];
|
|
3472
|
+
locale?: string;
|
|
3473
|
+
}
|
|
3474
|
+
interface CalendarHoliday {
|
|
3475
|
+
id?: string;
|
|
3476
|
+
name?: string;
|
|
3477
|
+
description?: string;
|
|
3478
|
+
date: Date | string;
|
|
3479
|
+
isRecurring?: boolean;
|
|
3480
|
+
is_recurring?: boolean;
|
|
3481
|
+
created_at?: string;
|
|
3482
|
+
updated_at?: string;
|
|
3483
|
+
deleted_at?: string | null;
|
|
3484
|
+
}
|
|
3485
|
+
|
|
3486
|
+
interface CalendarDay {
|
|
3487
|
+
date: Date;
|
|
3488
|
+
dayNumber: number;
|
|
3489
|
+
type: DayType;
|
|
3490
|
+
state: DayState;
|
|
3491
|
+
isToday: boolean;
|
|
3492
|
+
isWeekend: boolean;
|
|
3493
|
+
disabled: boolean;
|
|
3494
|
+
isHoliday?: boolean;
|
|
3495
|
+
holidayName?: string;
|
|
3496
|
+
}
|
|
3497
|
+
|
|
3498
|
+
interface CalendarEvent {
|
|
3499
|
+
id: string;
|
|
3500
|
+
columnId: string;
|
|
3501
|
+
type: CalendarEventType | string;
|
|
3502
|
+
title: string;
|
|
3503
|
+
startTime: string;
|
|
3504
|
+
endTime: string;
|
|
3505
|
+
date: Date;
|
|
3506
|
+
endDate: Date;
|
|
3507
|
+
duration: number;
|
|
3508
|
+
rowSpan: number;
|
|
3509
|
+
description?: string;
|
|
3510
|
+
subtitle?: string;
|
|
3511
|
+
peopleCount?: number;
|
|
3512
|
+
cost?: number;
|
|
3513
|
+
currency?: string;
|
|
3514
|
+
status?: 'confirmed' | 'pending' | 'cancelled' | 'completed' | 'rejected' | 'expired' | string;
|
|
3515
|
+
canCancel?: boolean;
|
|
3516
|
+
canApprove?: boolean;
|
|
3517
|
+
canReject?: boolean;
|
|
3518
|
+
canView?: boolean;
|
|
3519
|
+
isOtherUser?: boolean;
|
|
3520
|
+
metadata?: Record<string, any>;
|
|
3521
|
+
}
|
|
3522
|
+
interface SchedulerColumn {
|
|
3523
|
+
id: string;
|
|
3524
|
+
name: string;
|
|
3525
|
+
description?: string;
|
|
3526
|
+
capacity?: number;
|
|
3527
|
+
icon?: string;
|
|
3528
|
+
metadata?: Record<string, any>;
|
|
3529
|
+
}
|
|
3530
|
+
|
|
3531
|
+
interface TimeSlot {
|
|
3532
|
+
time: string;
|
|
3533
|
+
hour: number;
|
|
3534
|
+
minutes: number;
|
|
3535
|
+
isHalfHour: boolean;
|
|
3536
|
+
displayTime: boolean;
|
|
3537
|
+
}
|
|
3538
|
+
interface SchedulerTimeSlot {
|
|
3539
|
+
slot: TimeSlot;
|
|
3540
|
+
columnId: string;
|
|
3541
|
+
isAvailable: boolean;
|
|
3542
|
+
event?: any;
|
|
3543
|
+
}
|
|
3544
|
+
|
|
3545
|
+
interface DateNavigationEvent {
|
|
3546
|
+
type: 'previous' | 'next' | 'reset';
|
|
3547
|
+
currentDate: Date;
|
|
3548
|
+
newDate: Date;
|
|
3549
|
+
}
|
|
3550
|
+
|
|
3551
|
+
interface DateSelectionEvent {
|
|
3552
|
+
selectedDate: Date;
|
|
3553
|
+
calendarDay: CalendarDay;
|
|
3554
|
+
formattedDate: string;
|
|
3555
|
+
}
|
|
3556
|
+
|
|
3410
3557
|
type ComponentLoader = () => Promise<{
|
|
3411
3558
|
[key: string]: any;
|
|
3412
3559
|
}>;
|
|
@@ -3732,7 +3879,9 @@ declare class HeaderService {
|
|
|
3732
3879
|
callback: () => void;
|
|
3733
3880
|
requiredPermission: {
|
|
3734
3881
|
resource?: string;
|
|
3735
|
-
|
|
3882
|
+
resources?: string[];
|
|
3883
|
+
action?: string;
|
|
3884
|
+
actions?: string[];
|
|
3736
3885
|
custom_action?: string;
|
|
3737
3886
|
} | undefined;
|
|
3738
3887
|
visible: boolean | (() => boolean) | undefined;
|
|
@@ -3792,6 +3941,7 @@ declare class HeaderComponent implements OnInit {
|
|
|
3792
3941
|
getIndividualAction(element: any): any | null;
|
|
3793
3942
|
isIndividualActionSwitch(action: any): boolean;
|
|
3794
3943
|
hasIndividualActionPermission(action: any): boolean;
|
|
3944
|
+
private checkRequiredPermission;
|
|
3795
3945
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
3796
3946
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderComponent, "core-header", never, {}, { "filterRequested": "filterRequested"; "createRequested": "createRequested"; "globalActionTriggered": "globalActionTriggered"; }, never, never, true, [{ directive: typeof CoreHostDirective; inputs: {}; outputs: {}; }]>;
|
|
3797
3947
|
}
|
|
@@ -3906,8 +4056,11 @@ interface NavItem {
|
|
|
3906
4056
|
children?: NavItem[];
|
|
3907
4057
|
requiredPermission?: {
|
|
3908
4058
|
resource?: string;
|
|
3909
|
-
|
|
4059
|
+
resources?: string[];
|
|
4060
|
+
action?: string;
|
|
4061
|
+
actions?: string[];
|
|
3910
4062
|
custom_action?: string;
|
|
4063
|
+
match?: 'any' | 'all';
|
|
3911
4064
|
};
|
|
3912
4065
|
title?: string;
|
|
3913
4066
|
disabled?: boolean;
|
|
@@ -5139,6 +5292,7 @@ declare class FixedActionsMobileModalComponent {
|
|
|
5139
5292
|
onClose(): void;
|
|
5140
5293
|
onActionClick(action: FixedActionConfig): void;
|
|
5141
5294
|
onOverlayClick(event: MouseEvent): void;
|
|
5295
|
+
private checkRequiredPermission;
|
|
5142
5296
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FixedActionsMobileModalComponent, never>;
|
|
5143
5297
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FixedActionsMobileModalComponent, "core-fixed-actions-mobile-modal", never, {}, {}, never, never, true, never>;
|
|
5144
5298
|
}
|
|
@@ -5164,6 +5318,7 @@ declare class GenericFixedActionsComponent implements AfterViewInit {
|
|
|
5164
5318
|
isActionDisabled(action: FixedActionConfig): boolean;
|
|
5165
5319
|
onActionClick(action: FixedActionConfig): void;
|
|
5166
5320
|
openModalActions(): void;
|
|
5321
|
+
private checkRequiredPermission;
|
|
5167
5322
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GenericFixedActionsComponent, never>;
|
|
5168
5323
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericFixedActionsComponent, "core-generic-fixed-actions", never, { "externalActions": { "alias": "externalActions"; "required": false; "isSignal": true; }; "tableId": { "alias": "tableId"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5169
5324
|
}
|
|
@@ -5183,6 +5338,8 @@ interface AdAuthConfig {
|
|
|
5183
5338
|
cacheLocation?: 'sessionStorage' | 'localStorage';
|
|
5184
5339
|
enableLogging?: boolean;
|
|
5185
5340
|
logLevel?: 0 | 1 | 2 | 3;
|
|
5341
|
+
authorizationCodeOnly?: boolean;
|
|
5342
|
+
state?: string;
|
|
5186
5343
|
}
|
|
5187
5344
|
interface AdLoginButtonConfig {
|
|
5188
5345
|
loginText?: string;
|
|
@@ -5204,9 +5361,11 @@ interface AdAuthUser {
|
|
|
5204
5361
|
claims?: Record<string, any>;
|
|
5205
5362
|
}
|
|
5206
5363
|
interface AdAuthEvent {
|
|
5207
|
-
type: 'login-success' | 'login-error' | 'logout-success' | 'logout-error' | 'token-acquired';
|
|
5364
|
+
type: 'login-success' | 'login-error' | 'logout-success' | 'logout-error' | 'token-acquired' | 'code-received';
|
|
5208
5365
|
user?: AdAuthUser;
|
|
5209
5366
|
accessToken?: string;
|
|
5367
|
+
authorizationCode?: string;
|
|
5368
|
+
codeVerifier?: string;
|
|
5210
5369
|
error?: any;
|
|
5211
5370
|
message?: string;
|
|
5212
5371
|
}
|
|
@@ -5216,6 +5375,11 @@ interface AdAuthState {
|
|
|
5216
5375
|
isLoading: boolean;
|
|
5217
5376
|
error: any | null;
|
|
5218
5377
|
}
|
|
5378
|
+
interface AdAuthorizationCodeResponse {
|
|
5379
|
+
code: string;
|
|
5380
|
+
state?: string;
|
|
5381
|
+
codeVerifier?: string;
|
|
5382
|
+
}
|
|
5219
5383
|
|
|
5220
5384
|
type AccountInfo = any;
|
|
5221
5385
|
declare const AD_AUTH_CONFIG: InjectionToken<AdAuthConfig>;
|
|
@@ -5224,15 +5388,24 @@ declare class AdAuthService {
|
|
|
5224
5388
|
private msalInstance;
|
|
5225
5389
|
private msalModule;
|
|
5226
5390
|
private initializationPromise;
|
|
5391
|
+
private codeVerifier;
|
|
5227
5392
|
private authState;
|
|
5393
|
+
private _authorizationCode;
|
|
5394
|
+
readonly authorizationCode: _angular_core.Signal<AdAuthorizationCodeResponse | null>;
|
|
5228
5395
|
readonly isAuthenticated: _angular_core.Signal<boolean>;
|
|
5229
5396
|
readonly currentUser: _angular_core.Signal<AdAuthUser | null>;
|
|
5230
5397
|
readonly isLoading: _angular_core.Signal<boolean>;
|
|
5231
5398
|
readonly error: _angular_core.Signal<any>;
|
|
5232
5399
|
constructor();
|
|
5233
|
-
|
|
5234
|
-
|
|
5235
|
-
|
|
5400
|
+
private checkForAuthorizationCode;
|
|
5401
|
+
private cleanUrlParams;
|
|
5402
|
+
private generatePKCE;
|
|
5403
|
+
private base64UrlEncode;
|
|
5404
|
+
private generateState;
|
|
5405
|
+
redirectToAzureLogin(): Promise<void>;
|
|
5406
|
+
getAuthorizationCode(): AdAuthorizationCodeResponse | null;
|
|
5407
|
+
clearAuthorizationCode(): void;
|
|
5408
|
+
isAuthorizationCodeOnlyMode(): boolean;
|
|
5236
5409
|
private loadMsalModule;
|
|
5237
5410
|
private initializeMsal;
|
|
5238
5411
|
/**
|
|
@@ -5250,6 +5423,7 @@ declare class AdAuthService {
|
|
|
5250
5423
|
login(): Promise<AdAuthUser | null>;
|
|
5251
5424
|
logoutWithPopup(): Promise<void>;
|
|
5252
5425
|
logoutWithRedirect(): Promise<void>;
|
|
5426
|
+
logoutFromAzure(): Promise<void>;
|
|
5253
5427
|
logout(): Promise<void>;
|
|
5254
5428
|
acquireToken(scopes?: string[]): Promise<string | null>;
|
|
5255
5429
|
getAllAccounts(): Promise<AccountInfo[]>;
|
|
@@ -5297,6 +5471,133 @@ declare class AdLoginButtonComponent {
|
|
|
5297
5471
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AdLoginButtonComponent, "core-ad-login-button", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "authEvent": "authEvent"; }, never, never, true, never>;
|
|
5298
5472
|
}
|
|
5299
5473
|
|
|
5474
|
+
declare class GenericCalendarComponent {
|
|
5475
|
+
currentDate: _angular_core.InputSignal<Date>;
|
|
5476
|
+
selectedDate: _angular_core.InputSignal<Date | null>;
|
|
5477
|
+
config: _angular_core.InputSignal<CalendarConfig>;
|
|
5478
|
+
showNavigation: _angular_core.InputSignal<boolean>;
|
|
5479
|
+
showHeader: _angular_core.InputSignal<boolean>;
|
|
5480
|
+
locale: _angular_core.InputSignal<string>;
|
|
5481
|
+
dateSelected: _angular_core.OutputEmitterRef<DateSelectionEvent>;
|
|
5482
|
+
monthChanged: _angular_core.OutputEmitterRef<DateNavigationEvent>;
|
|
5483
|
+
displayDate: _angular_core.WritableSignal<Date>;
|
|
5484
|
+
calendarDays: _angular_core.WritableSignal<CalendarDay[]>;
|
|
5485
|
+
monthName: _angular_core.Signal<string>;
|
|
5486
|
+
year: _angular_core.Signal<number>;
|
|
5487
|
+
weekDayLabels: _angular_core.Signal<string[]>;
|
|
5488
|
+
constructor();
|
|
5489
|
+
private toUTCDate;
|
|
5490
|
+
private createUTCDate;
|
|
5491
|
+
private generateCalendarDays;
|
|
5492
|
+
private getDayType;
|
|
5493
|
+
private getDayState;
|
|
5494
|
+
private isDayDisabled;
|
|
5495
|
+
private isWeekend;
|
|
5496
|
+
private isSameDay;
|
|
5497
|
+
private getHolidaySets;
|
|
5498
|
+
private getHolidayInfo;
|
|
5499
|
+
private parseToUTCDate;
|
|
5500
|
+
private formatDateUTC;
|
|
5501
|
+
private formatMonthDayUTC;
|
|
5502
|
+
onDayClick(day: CalendarDay): void;
|
|
5503
|
+
onPreviousMonth(): void;
|
|
5504
|
+
onNextMonth(): void;
|
|
5505
|
+
resetToCurrentMonth(): void;
|
|
5506
|
+
getDayClasses(day: CalendarDay): string;
|
|
5507
|
+
getDayTitle(day: CalendarDay): string;
|
|
5508
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GenericCalendarComponent, never>;
|
|
5509
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericCalendarComponent, "core-generic-calendar", never, { "currentDate": { "alias": "currentDate"; "required": false; "isSignal": true; }; "selectedDate": { "alias": "selectedDate"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "showNavigation": { "alias": "showNavigation"; "required": false; "isSignal": true; }; "showHeader": { "alias": "showHeader"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; }, { "dateSelected": "dateSelected"; "monthChanged": "monthChanged"; }, never, never, true, never>;
|
|
5510
|
+
}
|
|
5511
|
+
|
|
5512
|
+
interface HolidaySets {
|
|
5513
|
+
exactDates: Set<string>;
|
|
5514
|
+
recurringMonthDays: Set<string>;
|
|
5515
|
+
holidayNames?: Map<string, string>;
|
|
5516
|
+
}
|
|
5517
|
+
|
|
5518
|
+
interface SchedulerConfig {
|
|
5519
|
+
startHour: number;
|
|
5520
|
+
endHour: number;
|
|
5521
|
+
slotDuration: number;
|
|
5522
|
+
rowHeightRem: number;
|
|
5523
|
+
showCurrentTimeLine: boolean;
|
|
5524
|
+
locale?: string;
|
|
5525
|
+
}
|
|
5526
|
+
interface SlotClickEvent {
|
|
5527
|
+
columnId: string;
|
|
5528
|
+
slot: TimeSlot;
|
|
5529
|
+
date: Date;
|
|
5530
|
+
}
|
|
5531
|
+
interface EventClickEvent {
|
|
5532
|
+
event: CalendarEvent;
|
|
5533
|
+
column: SchedulerColumn;
|
|
5534
|
+
}
|
|
5535
|
+
interface EventHoverEvent {
|
|
5536
|
+
event: CalendarEvent;
|
|
5537
|
+
position: {
|
|
5538
|
+
x: number;
|
|
5539
|
+
y: number;
|
|
5540
|
+
};
|
|
5541
|
+
}
|
|
5542
|
+
declare const DEFAULT_SCHEDULER_CONFIG: SchedulerConfig;
|
|
5543
|
+
|
|
5544
|
+
declare class GenericSchedulerComponent implements OnInit, OnDestroy {
|
|
5545
|
+
selectedDate: _angular_core.InputSignal<Date>;
|
|
5546
|
+
columns: _angular_core.InputSignal<SchedulerColumn[]>;
|
|
5547
|
+
events: _angular_core.InputSignal<CalendarEvent[]>;
|
|
5548
|
+
config: _angular_core.InputSignal<Partial<SchedulerConfig>>;
|
|
5549
|
+
showTimeColumn: _angular_core.InputSignal<boolean>;
|
|
5550
|
+
showHeader: _angular_core.InputSignal<boolean>;
|
|
5551
|
+
timeColumnLabel: _angular_core.InputSignal<string>;
|
|
5552
|
+
emptySlotLabel: _angular_core.InputSignal<string>;
|
|
5553
|
+
disabledSlotLabel: _angular_core.InputSignal<string>;
|
|
5554
|
+
todayLabel: _angular_core.InputSignal<string>;
|
|
5555
|
+
locale: _angular_core.InputSignal<string>;
|
|
5556
|
+
slotClick: _angular_core.OutputEmitterRef<SlotClickEvent>;
|
|
5557
|
+
eventClick: _angular_core.OutputEmitterRef<EventClickEvent>;
|
|
5558
|
+
eventHover: _angular_core.OutputEmitterRef<EventHoverEvent>;
|
|
5559
|
+
eventLeave: _angular_core.OutputEmitterRef<void>;
|
|
5560
|
+
todayClick: _angular_core.OutputEmitterRef<void>;
|
|
5561
|
+
previousDay: _angular_core.OutputEmitterRef<Date>;
|
|
5562
|
+
nextDay: _angular_core.OutputEmitterRef<Date>;
|
|
5563
|
+
timeSlots: _angular_core.WritableSignal<TimeSlot[]>;
|
|
5564
|
+
currentTime: _angular_core.WritableSignal<Date>;
|
|
5565
|
+
private timeUpdateInterval;
|
|
5566
|
+
mergedConfig: _angular_core.Signal<{
|
|
5567
|
+
startHour: number;
|
|
5568
|
+
endHour: number;
|
|
5569
|
+
slotDuration: number;
|
|
5570
|
+
rowHeightRem: number;
|
|
5571
|
+
showCurrentTimeLine: boolean;
|
|
5572
|
+
locale?: string;
|
|
5573
|
+
}>;
|
|
5574
|
+
isToday: _angular_core.Signal<boolean>;
|
|
5575
|
+
formattedDate: _angular_core.Signal<string>;
|
|
5576
|
+
currentTimePosition: _angular_core.Signal<number | null>;
|
|
5577
|
+
private eventMap;
|
|
5578
|
+
ngOnInit(): void;
|
|
5579
|
+
ngOnDestroy(): void;
|
|
5580
|
+
private initializeTimeSlots;
|
|
5581
|
+
private startTimeUpdater;
|
|
5582
|
+
private stopTimeUpdater;
|
|
5583
|
+
isSlotOccupied(columnId: string, slot: TimeSlot): boolean;
|
|
5584
|
+
shouldShowEvent(columnId: string, slot: TimeSlot): boolean;
|
|
5585
|
+
getEventForSlot(columnId: string, slot: TimeSlot): CalendarEvent | undefined;
|
|
5586
|
+
getEventRowSpan(event: CalendarEvent): number;
|
|
5587
|
+
private isTimeInEvent;
|
|
5588
|
+
isSlotDisabled(columnId: string, slot: TimeSlot): boolean;
|
|
5589
|
+
onSlotClick(columnId: string, slot: TimeSlot): void;
|
|
5590
|
+
onEventClick(event: CalendarEvent, column: SchedulerColumn): void;
|
|
5591
|
+
onEventHover(mouseEvent: MouseEvent, event: CalendarEvent): void;
|
|
5592
|
+
onEventLeave(): void;
|
|
5593
|
+
getEventClasses(event: CalendarEvent): string;
|
|
5594
|
+
onTodayClick(): void;
|
|
5595
|
+
onPreviousDay(): void;
|
|
5596
|
+
onNextDay(): void;
|
|
5597
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GenericSchedulerComponent, never>;
|
|
5598
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericSchedulerComponent, "core-generic-scheduler", never, { "selectedDate": { "alias": "selectedDate"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "events": { "alias": "events"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "showTimeColumn": { "alias": "showTimeColumn"; "required": false; "isSignal": true; }; "showHeader": { "alias": "showHeader"; "required": false; "isSignal": true; }; "timeColumnLabel": { "alias": "timeColumnLabel"; "required": false; "isSignal": true; }; "emptySlotLabel": { "alias": "emptySlotLabel"; "required": false; "isSignal": true; }; "disabledSlotLabel": { "alias": "disabledSlotLabel"; "required": false; "isSignal": true; }; "todayLabel": { "alias": "todayLabel"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; }, { "slotClick": "slotClick"; "eventClick": "eventClick"; "eventHover": "eventHover"; "eventLeave": "eventLeave"; "todayClick": "todayClick"; "previousDay": "previousDay"; "nextDay": "nextDay"; }, never, never, true, never>;
|
|
5599
|
+
}
|
|
5600
|
+
|
|
5300
5601
|
declare const DEFAULT_COUNTRIES: CountryOption[];
|
|
5301
5602
|
declare const LATIN_AMERICA_COUNTRIES: CountryOption[];
|
|
5302
5603
|
declare const COMMON_COUNTRIES: CountryOption[];
|
|
@@ -5814,5 +6115,5 @@ declare const AgeValidationHelper: {
|
|
|
5814
6115
|
|
|
5815
6116
|
declare const ageValidator: (minimumAge: number) => ValidatorFn;
|
|
5816
6117
|
|
|
5817
|
-
export { AD_AUTH_CONFIG, AD_AUTH_INTERCEPTOR_CONFIG, ALL_COUNTRY_CODES, ActiveFiltersComponent, AdAuthService, AdInteractionType, AdLoginButtonComponent, AgeValidationHelper, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, COMMON_COUNTRIES, CacheBustingInterceptor, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreManualRefreshComponent, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, CountryCode, CustomClassService, DEFAULT_AD_AUTH_INTERCEPTOR_CONFIG, DEFAULT_COUNTRIES, DataListComponent, DataListItemComponent, DataStoreService, DateFieldComponent, DateUtility, DatetimeFieldComponent, DialogActions, DocumentAction, DocumentDisplayMode, DocumentFieldComponent, DocumentFieldValidators, DocumentPayloadMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, DynamicFieldsHelper, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FilePreviewActionType, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, FixedActionPosition, FixedActionsMobileModalComponent, FixedActionsMobileModalService, GalleryAnimationType, GalleryLayoutType, GalleryModalComponent, GalleryModalGlobalService, GenericButtonComponent, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericFixedActionsComponent, GenericGalleryComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSidebarComponent, GenericSkeletonComponent, GenericStepsComponent, GenericSwitchComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, ImageModalService, ImagePreviewComponent, LATIN_AMERICA_COUNTRIES, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MODEL_REFERENCE_SORT_KEY, MainNavComponent, MainNavService, ManualRefreshService, MobileHeaderComponent, MobileResolutionService, ModalMode, ModelApiService, MultiEntryFieldComponent, MultiEntryOutputFormat, NumberFieldComponent, NumberFieldConfigType, NumberFieldType, NumberRange, PERMISSION_ACTIONS_PROVIDER, PERMISSION_PROVIDER, PERMISSION_RESOURCES_PROVIDER, PaginationService, PasswordFieldComponent, PermissionEnumsService, PermissionModel, PermissionService, PermissionWrapperService, PermissionsActions, PermissionsCustomActions, PermissionsInterceptor, PermissionsResources, PhoneFieldComponent, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, RedirectUrlService, ResetPasswordModel, RoleModel, SOUTH_AMERICA_COUNTRIES, SelectFieldComponent, ServerSelectFieldComponent, ServerSelectService, SidebarCustomModalComponent, SidebarCustomModalService, SidebarHeight, SidebarMobileModalService, SidebarMobileType, SidebarPosition, SidebarService, SidebarState, SidebarTemplateRegistryService, SidebarVisibility, SidebarWidth, SkeletonAnimation, SkeletonService, SkeletonSize, SkeletonType, SmartFieldComponent, SortDirection, SortMode, StepSize, StepStatus, StepType, StepsService, SwitchFieldComponent, TableAction, TableActionService, TableDataService, TableFixedActionsService, TableSortService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UruguayanDocumentValidationHelper, UsersModel, VERSION, adAuthGuard, adAuthInterceptor, adGuestGuard, adRoleGuard, ageValidator, calculateAge, equalToValidator, generateRandomUruguayanDocument, getCountryCodeStrings, getLatestBirthDateForAge, getRandomCi, getUruguayanDocumentValidationDigit, getValidationDigit, isSameDate, isValidCountryCode, provideAdAuth, provideAdAuthInterceptor, provideAdAuthWithInterceptor, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader, random, transform, transformUruguayanDocument, uruguayanDocumentValidator, validate, validateAge, validateCi, validateUruguayanDocument, validationDigit };
|
|
5818
|
-
export type { ActiveFilterItem, ActiveFiltersConfig, AdAuthConfig, AdAuthEvent, AdAuthInterceptorConfig, AdAuthState, AdAuthUser, AdLoginButtonConfig, AdditionalPermissionResources, AddressModel, AgeComparisonMode, AgeValidationInput, AgeValidationOptions, Alert, ApiConfig, ApiResponse, BottomNavItem, ButtonActionEvent, ButtonConfig, CarouselConfig, CarouselImage, ChatConfig, ChatMessage, CheckboxFieldConfig, CheckboxModalFieldConfig, CheckboxOption, ColumnConfig, ColumnDisabledConfig, CompanyInfo, ConfirmUploadRequest, ConfirmationDialogConfig, CountryOption, CustomAction, DataListItem, DateFieldConfig, DateModalFieldConfig, DocumentActionEvent, DocumentConfig, DocumentFieldConfig, DocumentFieldValue, DocumentItem, DocumentOption, DynamicFieldsHelperConfig, DynamicFieldsHelperMethods, DynamicFieldsHelperState, ExpansionConfig, ExtendedModalFieldConfig, ExtendedPermissionProvider, FileFieldConfig, FilePreviewAction, FilePreviewConfig, FilePreviewItem, FileUploadConfig, FilterConfig, FilterParams, FixedActionConfig, FixedActionsConfig, GalleryConfig, GalleryImage, GenericTab, GenericTabClickEvent, GenericTabConfig, GlobalAction, HeaderAction, HeaderActionConfig, HeaderConfig, HeaderElementConfig, HeaderOrderConfig, ImageModalData, InlineEditConfig, LayoutConfig, LayoutDataAttributes, LogoImagesConfig, ManualRefreshConfig, MobileBreakpointConfig, MobileHeaderConfig, MobileModalData, ModalButtonConfig, ModalFieldConfig, ModalStepConfig, ModalTabConfig, ModalValidationResult, MoreDataConfig, MultiEntryFieldConfig, MultiEntryFieldValue, NavConfig, NavItem, NavUserConfig, NumberFieldConfig, NumberModalFieldConfig, PaginatedResponse, PaginationEvent, PaginationInfo, PermissionActionsProvider, PermissionProvider, PermissionResourcesProvider, PhoneFieldConfig, PhoneModalFieldConfig, PresignedDownloadUrlResponse, PresignedUrlRequest, PresignedUrlResponse, PreviewFileUrl, RatingConfig, RatingStar, RatingSubmitEvent, RowStyleConfig, RowVisibilityConfig, SearchResponse, SelectServerSideConfig, SidebarBackButton, SidebarComponentConfig, SidebarComponentEvents, SidebarConfig, SidebarCustomModalConfig, SidebarItem, SidebarResponsiveConfig, SidebarSubItem, SidebarTemplateContext, SkeletonConfig, SkeletonItemConfig, SortConfig, StepChangeEvent, StepClickEvent, StepItemConfig, StepsConfig, SwitchFieldConfig, SwitchModalFieldConfig, SwitchOption, TableActionConfig, TableFixedActionsConfig, TableSortConfig, TimeFieldConfig, TimeFieldValue, TimeOption, TimelineConfig, TimelineItem, UruguayanDocumentInput };
|
|
6118
|
+
export { AD_AUTH_CONFIG, AD_AUTH_INTERCEPTOR_CONFIG, ALL_COUNTRY_CODES, ActiveFiltersComponent, AdAuthService, AdInteractionType, AdLoginButtonComponent, AgeValidationHelper, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, COMMON_COUNTRIES, CacheBustingInterceptor, CalendarEventType, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreManualRefreshComponent, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, CountryCode, CustomClassService, DEFAULT_AD_AUTH_INTERCEPTOR_CONFIG, DEFAULT_COUNTRIES, DEFAULT_SCHEDULER_CONFIG, DataListComponent, DataListItemComponent, DataStoreService, DateFieldComponent, DateUtility, DatetimeFieldComponent, DayState, DayType, DialogActions, DocumentAction, DocumentDisplayMode, DocumentFieldComponent, DocumentFieldValidators, DocumentPayloadMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, DynamicFieldsHelper, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FilePreviewActionType, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, FixedActionPosition, FixedActionsMobileModalComponent, FixedActionsMobileModalService, GalleryAnimationType, GalleryLayoutType, GalleryModalComponent, GalleryModalGlobalService, GenericButtonComponent, GenericCalendarComponent, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericFixedActionsComponent, GenericGalleryComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSchedulerComponent, GenericSidebarComponent, GenericSkeletonComponent, GenericStepsComponent, GenericSwitchComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, ImageModalService, ImagePreviewComponent, LATIN_AMERICA_COUNTRIES, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MODEL_REFERENCE_SORT_KEY, MainNavComponent, MainNavService, ManualRefreshService, MobileHeaderComponent, MobileResolutionService, ModalMode, ModelApiService, MultiEntryFieldComponent, MultiEntryOutputFormat, NumberFieldComponent, NumberFieldConfigType, NumberFieldType, NumberRange, PERMISSION_ACTIONS_PROVIDER, PERMISSION_PROVIDER, PERMISSION_RESOURCES_PROVIDER, PaginationService, PasswordFieldComponent, PermissionEnumsService, PermissionModel, PermissionService, PermissionWrapperService, PermissionsActions, PermissionsCustomActions, PermissionsInterceptor, PermissionsResources, PhoneFieldComponent, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, RedirectUrlService, ResetPasswordModel, RoleModel, SOUTH_AMERICA_COUNTRIES, SelectFieldComponent, ServerSelectFieldComponent, ServerSelectService, SidebarCustomModalComponent, SidebarCustomModalService, SidebarHeight, SidebarMobileModalService, SidebarMobileType, SidebarPosition, SidebarService, SidebarState, SidebarTemplateRegistryService, SidebarVisibility, SidebarWidth, SkeletonAnimation, SkeletonService, SkeletonSize, SkeletonType, SmartFieldComponent, SortDirection, SortMode, StepSize, StepStatus, StepType, StepsService, SwitchFieldComponent, TableAction, TableActionService, TableDataService, TableFixedActionsService, TableSortService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UruguayanDocumentValidationHelper, UsersModel, VERSION, WeekDay, adAuthGuard, adAuthInterceptor, adGuestGuard, adRoleGuard, ageValidator, calculateAge, equalToValidator, generateRandomUruguayanDocument, getCountryCodeStrings, getLatestBirthDateForAge, getRandomCi, getUruguayanDocumentValidationDigit, getValidationDigit, isSameDate, isValidCountryCode, provideAdAuth, provideAdAuthInterceptor, provideAdAuthWithInterceptor, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader, random, transform, transformUruguayanDocument, uruguayanDocumentValidator, validate, validateAge, validateCi, validateUruguayanDocument, validationDigit };
|
|
6119
|
+
export type { ActiveFilterItem, ActiveFiltersConfig, AdAuthConfig, AdAuthEvent, AdAuthInterceptorConfig, AdAuthState, AdAuthUser, AdAuthorizationCodeResponse, AdLoginButtonConfig, AdditionalPermissionResources, AddressModel, AgeComparisonMode, AgeValidationInput, AgeValidationOptions, Alert, ApiConfig, ApiResponse, BottomNavItem, ButtonActionEvent, ButtonConfig, CalendarConfig, CalendarDay, CalendarEvent, CalendarHoliday, CarouselConfig, CarouselImage, ChatConfig, ChatMessage, CheckboxFieldConfig, CheckboxModalFieldConfig, CheckboxOption, ColumnConfig, ColumnDisabledConfig, CompanyInfo, ConfirmUploadRequest, ConfirmationDialogConfig, CountryOption, CustomAction, DataListItem, DateFieldConfig, DateModalFieldConfig, DateNavigationEvent, DateSelectionEvent, DocumentActionEvent, DocumentConfig, DocumentFieldConfig, DocumentFieldValue, DocumentItem, DocumentOption, DynamicFieldsHelperConfig, DynamicFieldsHelperMethods, DynamicFieldsHelperState, EventClickEvent, EventHoverEvent, ExpansionConfig, ExtendedModalFieldConfig, ExtendedPermissionProvider, FileFieldConfig, FilePreviewAction, FilePreviewConfig, FilePreviewItem, FileUploadConfig, FilterConfig, FilterParams, FixedActionConfig, FixedActionsConfig, GalleryConfig, GalleryImage, GenericTab, GenericTabClickEvent, GenericTabConfig, GlobalAction, HeaderAction, HeaderActionConfig, HeaderConfig, HeaderElementConfig, HeaderOrderConfig, HolidaySets, ImageModalData, InlineEditConfig, LayoutConfig, LayoutDataAttributes, LogoImagesConfig, ManualRefreshConfig, MobileBreakpointConfig, MobileHeaderConfig, MobileModalData, ModalButtonConfig, ModalFieldConfig, ModalStepConfig, ModalTabConfig, ModalValidationResult, MoreDataConfig, MultiEntryFieldConfig, MultiEntryFieldValue, NavConfig, NavItem, NavUserConfig, NumberFieldConfig, NumberModalFieldConfig, PaginatedResponse, PaginationEvent, PaginationInfo, PermissionActionsProvider, PermissionProvider, PermissionResourcesProvider, PhoneFieldConfig, PhoneModalFieldConfig, PresignedDownloadUrlResponse, PresignedUrlRequest, PresignedUrlResponse, PreviewFileUrl, RatingConfig, RatingStar, RatingSubmitEvent, RowStyleConfig, RowVisibilityConfig, SchedulerColumn, SchedulerConfig, SchedulerTimeSlot, SearchResponse, SelectServerSideConfig, SidebarBackButton, SidebarComponentConfig, SidebarComponentEvents, SidebarConfig, SidebarCustomModalConfig, SidebarItem, SidebarResponsiveConfig, SidebarSubItem, SidebarTemplateContext, SkeletonConfig, SkeletonItemConfig, SlotClickEvent, SortConfig, StepChangeEvent, StepClickEvent, StepItemConfig, StepsConfig, SwitchFieldConfig, SwitchModalFieldConfig, SwitchOption, TableActionConfig, TableFixedActionsConfig, TableSortConfig, TimeFieldConfig, TimeFieldValue, TimeOption, TimeSlot, TimelineConfig, TimelineItem, UruguayanDocumentInput };
|