@valtimo/components 13.42.0 → 13.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/valtimo-components.mjs +116 -42
- package/fesm2022/valtimo-components.mjs.map +1 -1
- package/lib/components/date-time-picker/date-time-picker.component.d.ts +13 -1
- package/lib/components/date-time-picker/date-time-picker.component.d.ts.map +1 -1
- package/lib/components/form-io/components/form-io-iban/iban.component.d.ts +2 -2
- package/lib/components/form-io/components/form-io-iban/iban.component.d.ts.map +1 -1
- package/lib/components/form-io/components/form-io-iban/iban.formio.d.ts.map +1 -1
- package/lib/components/form-io/components/form-io-iban/iban.validators.d.ts +6 -1
- package/lib/components/form-io/components/form-io-iban/iban.validators.d.ts.map +1 -1
- package/lib/components/overflow-menu/overflow-menu-trigger/overflow-menu-trigger.component.d.ts +2 -1
- package/lib/components/overflow-menu/overflow-menu-trigger/overflow-menu-trigger.component.d.ts.map +1 -1
- package/lib/modules/custom-formio-component/create-custom-component.d.ts +1 -0
- package/lib/modules/custom-formio-component/create-custom-component.d.ts.map +1 -1
- package/lib/modules/custom-formio-component/elements.common.d.ts +5 -0
- package/lib/modules/custom-formio-component/elements.common.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -20,12 +20,22 @@ export declare class DateTimePickerComponent implements AfterViewInit, OnDestroy
|
|
|
20
20
|
datePlaceholder: string;
|
|
21
21
|
timePlaceholder: string;
|
|
22
22
|
labelText: string;
|
|
23
|
+
/**
|
|
24
|
+
* Format of the emitted value. Use `iso` when the value is passed on to an API. Defaults to the
|
|
25
|
+
* localised format the input shows, which is what existing consumers expect.
|
|
26
|
+
*/
|
|
27
|
+
valueFormat: 'display' | 'iso';
|
|
23
28
|
set defaultDate(value: string | null);
|
|
24
29
|
defaultDateIsToday: boolean;
|
|
25
30
|
clear$: Observable<null>;
|
|
26
31
|
valueChange: EventEmitter<string>;
|
|
32
|
+
/** Holds the date as `yyyy-mm-dd`, independent of how `dateFormat` renders it. */
|
|
27
33
|
readonly dateValue$: BehaviorSubject<string>;
|
|
28
34
|
readonly timeValue$: BehaviorSubject<string>;
|
|
35
|
+
/** The Carbon date picker parses strings with `dateFormat`, so it is fed a date object instead. */
|
|
36
|
+
readonly pickerDates$: Observable<Array<Date>>;
|
|
37
|
+
private readonly ISO_DATE_PATTERN;
|
|
38
|
+
private readonly DAY_FIRST_DATE_PATTERN;
|
|
29
39
|
private readonly subscriptions;
|
|
30
40
|
ngAfterViewInit(): void;
|
|
31
41
|
ngOnDestroy(): void;
|
|
@@ -35,7 +45,9 @@ export declare class DateTimePickerComponent implements AfterViewInit, OnDestroy
|
|
|
35
45
|
private splitDateTime;
|
|
36
46
|
private normalizeDate;
|
|
37
47
|
private formatDate;
|
|
48
|
+
private formatDisplayDate;
|
|
49
|
+
private joinDate;
|
|
38
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateTimePickerComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateTimePickerComponent, "valtimo-date-time-picker", never, { "fullWidth": { "alias": "fullWidth"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "name": { "alias": "name"; "required": false; }; "title": { "alias": "title"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "titleTranslationKey": { "alias": "titleTranslationKey"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "required": { "alias": "required"; "required": false; }; "smallLabel": { "alias": "smallLabel"; "required": false; }; "enableTime": { "alias": "enableTime"; "required": false; }; "carbonTheme": { "alias": "carbonTheme"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "showFieldLabel": { "alias": "showFieldLabel"; "required": false; }; "datePlaceholder": { "alias": "datePlaceholder"; "required": false; }; "timePlaceholder": { "alias": "timePlaceholder"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "defaultDate": { "alias": "defaultDate"; "required": false; }; "defaultDateIsToday": { "alias": "defaultDateIsToday"; "required": false; }; "clear$": { "alias": "clear$"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateTimePickerComponent, "valtimo-date-time-picker", never, { "fullWidth": { "alias": "fullWidth"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "name": { "alias": "name"; "required": false; }; "title": { "alias": "title"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "titleTranslationKey": { "alias": "titleTranslationKey"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "required": { "alias": "required"; "required": false; }; "smallLabel": { "alias": "smallLabel"; "required": false; }; "enableTime": { "alias": "enableTime"; "required": false; }; "carbonTheme": { "alias": "carbonTheme"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "showFieldLabel": { "alias": "showFieldLabel"; "required": false; }; "datePlaceholder": { "alias": "datePlaceholder"; "required": false; }; "timePlaceholder": { "alias": "timePlaceholder"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "valueFormat": { "alias": "valueFormat"; "required": false; }; "defaultDate": { "alias": "defaultDate"; "required": false; }; "defaultDateIsToday": { "alias": "defaultDateIsToday"; "required": false; }; "clear$": { "alias": "clear$"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
40
52
|
}
|
|
41
53
|
//# sourceMappingURL=date-time-picker.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-time-picker.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/components/src/lib/components/date-time-picker/date-time-picker.component.ts"],"names":[],"mappings":"AAiBA,OAAO,EACL,aAAa,EAEb,YAAY,EAGZ,SAAS,EAEV,MAAM,eAAe,CAAC;AASvB,OAAO,EAAC,eAAe,
|
|
1
|
+
{"version":3,"file":"date-time-picker.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/components/src/lib/components/date-time-picker/date-time-picker.component.ts"],"names":[],"mappings":"AAiBA,OAAO,EACL,aAAa,EAEb,YAAY,EAGZ,SAAS,EAEV,MAAM,eAAe,CAAC;AASvB,OAAO,EAAC,eAAe,EAAsB,UAAU,EAAe,MAAM,MAAM,CAAC;;AAGnF,qBAgBa,uBAAwB,YAAW,aAAa,EAAE,SAAS;IAEtE,QAAQ,CAAC,SAAS,QAAQ;IAI1B,SAAS,UAAS;IAIlB,MAAM,UAAS;IAEN,IAAI,SAAM;IACV,KAAK,SAAM;IACX,WAAW,SAAM;IACjB,mBAAmB,SAAM;IACzB,QAAQ,UAAS;IACjB,OAAO,SAAM;IACb,QAAQ,UAAS;IACjB,UAAU,UAAS;IACnB,UAAU,UAAS;IACnB,WAAW,SAAW;IACtB,UAAU,SAAW;IACrB,cAAc,UAAQ;IACtB,eAAe,SAAgB;IAC/B,eAAe,SAAW;IAC1B,SAAS,SAAM;IAExB;;;OAGG;IACM,WAAW,EAAE,SAAS,GAAG,KAAK,CAAa;IAEpD,IAAa,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,EAK5C;IAEQ,kBAAkB,UAAS;IAC3B,MAAM,EAAG,UAAU,CAAC,IAAI,CAAC,CAAC;IAEzB,WAAW,uBAA8B;IAEnD,kFAAkF;IAClF,SAAgB,UAAU,0BAAmC;IAC7D,SAAgB,UAAU,0BAAmC;IAE7D,mGAAmG;IACnG,SAAgB,YAAY,EAAE,UAAU,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAEnD;IAEF,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAmC;IACpE,OAAO,CAAC,QAAQ,CAAC,sBAAsB,CAAyC;IAEhF,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAsB;IAE7C,eAAe,IAAI,IAAI;IA4BvB,WAAW,IAAI,IAAI;IAInB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,EAAE,GAAG,IAAI;IAK5C,cAAc,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAIvC,OAAO,CAAC,aAAa;IASrB,OAAO,CAAC,aAAa;IAWrB,OAAO,CAAC,aAAa;IAoBrB,OAAO,CAAC,UAAU;IAIlB,OAAO,CAAC,iBAAiB;IAKzB,OAAO,CAAC,QAAQ;yCAtJL,uBAAuB;2CAAvB,uBAAuB;CAyJnC"}
|
|
@@ -5,11 +5,11 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
/**
|
|
6
6
|
* Custom formio component for iban bank accounts.
|
|
7
7
|
*/
|
|
8
|
-
export declare class FormIoIbanComponent implements FormioCustomComponent<
|
|
8
|
+
export declare class FormIoIbanComponent implements FormioCustomComponent<string>, AfterViewInit, OnDestroy {
|
|
9
9
|
value: string;
|
|
10
10
|
disabled: boolean;
|
|
11
11
|
required: boolean;
|
|
12
|
-
valueChange: EventEmitter<
|
|
12
|
+
valueChange: EventEmitter<string>;
|
|
13
13
|
ibanForm: FormGroup<{
|
|
14
14
|
iban: FormControl<string>;
|
|
15
15
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"iban.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/components/src/lib/components/form-io/components/form-io-iban/iban.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,aAAa,EAAa,YAAY,EAAS,SAAS,EAAS,MAAM,eAAe,CAAC;AAC/F,OAAO,EAAC,WAAW,EAAE,SAAS,EAAa,MAAM,gBAAgB,CAAC;AAGlE,OAAO,EAAC,qBAAqB,EAAC,MAAM,qBAAqB,CAAC;;AAE1D;;GAEG;AACH,qBAMa,
|
|
1
|
+
{"version":3,"file":"iban.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/components/src/lib/components/form-io/components/form-io-iban/iban.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,aAAa,EAAa,YAAY,EAAS,SAAS,EAAS,MAAM,eAAe,CAAC;AAC/F,OAAO,EAAC,WAAW,EAAE,SAAS,EAAa,MAAM,gBAAgB,CAAC;AAGlE,OAAO,EAAC,qBAAqB,EAAC,MAAM,qBAAqB,CAAC;;AAE1D;;GAEG;AACH,qBAMa,mBACX,YAAW,qBAAqB,CAAC,MAAM,CAAC,EAAE,aAAa,EAAE,SAAS;IAElD,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,UAAS;IACjB,QAAQ,UAAS;IAChB,WAAW,uBAA8B;IACnD,QAAQ;;OAEZ;IACH,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAsB;IAE9C,eAAe,IAAI,IAAI;IA4BvB,WAAW,IAAI,IAAI;IAI1B,OAAO,CAAC,aAAa;yCA5CV,mBAAmB;2CAAnB,mBAAmB;CAkD/B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"iban.formio.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/components/src/lib/components/form-io/components/form-io-iban/iban.formio.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,QAAQ,EAAC,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"iban.formio.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/components/src/lib/components/form-io/components/form-io-iban/iban.formio.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,QAAQ,EAAC,MAAM,eAAe,CAAC;AA6BvC,wBAAgB,2BAA2B,CAAC,QAAQ,EAAE,QAAQ,QAE7D"}
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
import { ValidatorFn } from '@angular/forms';
|
|
2
2
|
/**
|
|
3
|
-
* Custom iban validator for angular forms.
|
|
4
3
|
* Checks if the iban is valid.
|
|
5
4
|
* First move the first four chracters from the beginngin to the end of the string.
|
|
6
5
|
* Change the letter to a numeric representation.
|
|
7
6
|
* Calculate the modulo in a parts, because javascript cannot accuratly calculate the modulus for large numbers.
|
|
8
7
|
*
|
|
8
|
+
* @returns True if the iban is valid or the value is empty.
|
|
9
|
+
*/
|
|
10
|
+
export declare function isValidIban(value: unknown): boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Custom iban validator for angular forms.
|
|
13
|
+
*
|
|
9
14
|
* @returns Null if the iban is valid or the value is an empty string, else return an object with isIbanValid property.
|
|
10
15
|
*/
|
|
11
16
|
export declare function ibanValidator(): ValidatorFn;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"iban.validators.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/components/src/lib/components/form-io/components/form-io-iban/iban.validators.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAkB,WAAW,EAAmB,MAAM,gBAAgB,CAAC;AAE9E
|
|
1
|
+
{"version":3,"file":"iban.validators.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/components/src/lib/components/form-io/components/form-io-iban/iban.validators.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAkB,WAAW,EAAmB,MAAM,gBAAgB,CAAC;AAE9E;;;;;;;GAOG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAcnD;AAED;;;;GAIG;AACH,wBAAgB,aAAa,IAAI,WAAW,CAG3C"}
|
package/lib/components/overflow-menu/overflow-menu-trigger/overflow-menu-trigger.component.d.ts
CHANGED
|
@@ -3,8 +3,9 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class OverflowMenuTriggerComponent {
|
|
4
4
|
private readonly _iconService;
|
|
5
5
|
compact: boolean;
|
|
6
|
+
label: string;
|
|
6
7
|
constructor(_iconService: IconService);
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<OverflowMenuTriggerComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OverflowMenuTriggerComponent, "v-overflow-menu-trigger", never, { "compact": { "alias": "compact"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OverflowMenuTriggerComponent, "v-overflow-menu-trigger", never, { "compact": { "alias": "compact"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
10
|
}
|
|
10
11
|
//# sourceMappingURL=overflow-menu-trigger.component.d.ts.map
|
package/lib/components/overflow-menu/overflow-menu-trigger/overflow-menu-trigger.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"overflow-menu-trigger.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/components/src/lib/components/overflow-menu/overflow-menu-trigger/overflow-menu-trigger.component.ts"],"names":[],"mappings":"AAkBA,OAAO,EAAa,WAAW,EAAC,MAAM,2BAA2B,CAAC;;AAElE,qBAQa,4BAA4B;
|
|
1
|
+
{"version":3,"file":"overflow-menu-trigger.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/components/src/lib/components/overflow-menu/overflow-menu-trigger/overflow-menu-trigger.component.ts"],"names":[],"mappings":"AAkBA,OAAO,EAAa,WAAW,EAAC,MAAM,2BAA2B,CAAC;;AAElE,qBAQa,4BAA4B;IAI3B,OAAO,CAAC,QAAQ,CAAC,YAAY;IAHzB,OAAO,UAAS;IAChB,KAAK,SAAM;gBAEE,YAAY,EAAE,WAAW;yCAJ3C,4BAA4B;2CAA5B,4BAA4B;CAOxC"}
|
|
@@ -20,6 +20,7 @@ export declare function createCustomFormioComponent(customComponentOptions: Form
|
|
|
20
20
|
component: ExtendedComponentSchema;
|
|
21
21
|
renderElement(value: any, index: number): any;
|
|
22
22
|
attach(element: HTMLElement): any;
|
|
23
|
+
checkComponentValidity(data: any, dirty: boolean, row: any, options?: any): any;
|
|
23
24
|
useWrapper(): boolean;
|
|
24
25
|
setValue(value: any): boolean;
|
|
25
26
|
bindCustomOptions(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-custom-component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/components/src/lib/modules/custom-formio-component/create-custom-component.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,yBAAyB,EAAE,mBAAmB,EAAc,MAAM,mBAAmB,CAAC;AAE9F,OAAO,EAAC,WAAW,EAAE,uBAAuB,EAAC,MAAM,cAAc,CAAC;AAKlE,wBAAgB,2BAA2B,CAAC,sBAAsB,EAAE,yBAAyB;oBA0ErE,uBAAuB,WAChC,GAAG,QACN,GAAG;;;+BArEa,mBAAmB;;;;;;;;;;;;;mBAmEvB,uBAAuB;6BAoBf,GAAG,SAAS,MAAM;wBASvB,WAAW;;
|
|
1
|
+
{"version":3,"file":"create-custom-component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/components/src/lib/modules/custom-formio-component/create-custom-component.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,yBAAyB,EAAE,mBAAmB,EAAc,MAAM,mBAAmB,CAAC;AAE9F,OAAO,EAAC,WAAW,EAAE,uBAAuB,EAAC,MAAM,cAAc,CAAC;AAKlE,wBAAgB,2BAA2B,CAAC,sBAAsB,EAAE,yBAAyB;oBA0ErE,uBAAuB,WAChC,GAAG,QACN,GAAG;;;+BArEa,mBAAmB;;;;;;;;;;;;;mBAmEvB,uBAAuB;6BAoBf,GAAG,SAAS,MAAM;wBASvB,WAAW;qCAuFE,GAAG,SAAS,OAAO,OAAO,GAAG,YAAW,GAAG;;8BAuCvD,OAAO;6BAmBH,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0BA9NC,WAAW;;EAiP/C"}
|
|
@@ -12,6 +12,11 @@ export interface FormioCustomComponentInfo extends BuilderInfo {
|
|
|
12
12
|
editForm?: () => {
|
|
13
13
|
components: ExtendedComponentSchema[];
|
|
14
14
|
};
|
|
15
|
+
/**
|
|
16
|
+
* Validates the value within form.io itself. Returns an error message to reject the value, or
|
|
17
|
+
* null to accept it. Empty values are not passed in; use the `required` validation for those.
|
|
18
|
+
*/
|
|
19
|
+
customValidator?: (value: any) => string | null;
|
|
15
20
|
}
|
|
16
21
|
export type FormioCustomElement = NgElement & WithProperties<{
|
|
17
22
|
value: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"elements.common.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/components/src/lib/modules/custom-formio-component/elements.common.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,YAAY,EAAC,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAC,SAAS,EAAE,cAAc,EAAC,MAAM,mBAAmB,CAAC;AAC5D,OAAO,EAAC,WAAW,EAAE,uBAAuB,EAAE,eAAe,EAAC,MAAM,cAAc,CAAC;AAGnF,MAAM,WAAW,yBAA0B,SAAQ,WAAW;IAC5D,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,eAAe,CAAC,EAAE,CAAC,MAAM,eAAe,CAAC,EAAE,CAAC;IAC5C,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM;QAAC,UAAU,EAAE,uBAAuB,EAAE,CAAA;KAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"elements.common.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/components/src/lib/modules/custom-formio-component/elements.common.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,YAAY,EAAC,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAC,SAAS,EAAE,cAAc,EAAC,MAAM,mBAAmB,CAAC;AAC5D,OAAO,EAAC,WAAW,EAAE,uBAAuB,EAAE,eAAe,EAAC,MAAM,cAAc,CAAC;AAGnF,MAAM,WAAW,yBAA0B,SAAQ,WAAW;IAC5D,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,eAAe,CAAC,EAAE,CAAC,MAAM,eAAe,CAAC,EAAE,CAAC;IAC5C,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM;QAAC,UAAU,EAAE,uBAAuB,EAAE,CAAA;KAAC,CAAC;IACzD;;;OAGG;IACH,eAAe,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,MAAM,GAAG,IAAI,CAAC;CACjD;AAED,MAAM,MAAM,mBAAmB,GAAG,SAAS,GACzC,cAAc,CAAC;IAAC,KAAK,EAAE,GAAG,CAAA;CAAC,GAAG,uBAAuB,CAAC,CAAC;AAEzD,MAAM,WAAW,WAAW;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE;QACL,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KACpB,CAAC;CACH;AAED,MAAM,WAAW,qBAAqB,CAAC,CAAC;IACtC,KAAK,EAAE,CAAC,CAAC;IACT,WAAW,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC;IAC7B,QAAQ,EAAE,OAAO,CAAC;IAClB,WAAW,CAAC,EAAE,YAAY,CAAC,WAAW,CAAC,CAAC;CACzC"}
|