@quartzds/core-angular 1.0.0-beta.12 → 1.0.0-beta.13
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/lib/generated/boolean-value-accessor.d.ts +3 -0
- package/lib/generated/boolean-value-accessor.d.ts.map +1 -1
- package/lib/generated/boolean-value-accessor.js +28 -21
- package/lib/generated/boolean-value-accessor.js.map +1 -1
- package/lib/generated/number-value-accessor.d.ts +3 -0
- package/lib/generated/number-value-accessor.d.ts.map +1 -1
- package/lib/generated/number-value-accessor.js +28 -21
- package/lib/generated/number-value-accessor.js.map +1 -1
- package/lib/generated/proxies.d.ts +40 -9
- package/lib/generated/proxies.d.ts.map +1 -1
- package/lib/generated/proxies.js +181 -105
- package/lib/generated/proxies.js.map +1 -1
- package/lib/generated/text-value-accessor.d.ts +3 -0
- package/lib/generated/text-value-accessor.d.ts.map +1 -1
- package/lib/generated/text-value-accessor.js +28 -21
- package/lib/generated/text-value-accessor.js.map +1 -1
- package/lib/generated/value-accessor.d.ts +3 -0
- package/lib/generated/value-accessor.d.ts.map +1 -1
- package/lib/generated/value-accessor.js +12 -13
- package/lib/generated/value-accessor.js.map +1 -1
- package/lib/quartz.module.d.ts +8 -0
- package/lib/quartz.module.d.ts.map +1 -1
- package/lib/quartz.module.js +19 -10
- package/lib/quartz.module.js.map +1 -1
- package/package.json +8 -3
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
2
|
import { ValueAccessor } from './value-accessor';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class BooleanValueAccessor extends ValueAccessor {
|
|
4
5
|
constructor(el: ElementRef);
|
|
5
6
|
writeValue(value: any): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BooleanValueAccessor, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BooleanValueAccessor, "qds-checkbox", never, {}, {}, never, never, false, never>;
|
|
6
9
|
}
|
|
7
10
|
//# sourceMappingURL=boolean-value-accessor.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"boolean-value-accessor.d.ts","sourceRoot":"","sources":["../../src/generated/boolean-value-accessor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,eAAe,CAAC;AAGtD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC
|
|
1
|
+
{"version":3,"file":"boolean-value-accessor.d.ts","sourceRoot":"","sources":["../../src/generated/boolean-value-accessor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,eAAe,CAAC;AAGtD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;;AAEjD,qBAca,oBAAqB,SAAQ,aAAa;gBACzC,EAAE,EAAE,UAAU;IAG1B,UAAU,CAAC,KAAK,EAAE,GAAG;yCAJV,oBAAoB;2CAApB,oBAAoB;CAOhC"}
|
|
@@ -1,31 +1,38 @@
|
|
|
1
|
-
var BooleanValueAccessor_1;
|
|
2
|
-
import { __decorate, __metadata } from "tslib";
|
|
3
1
|
import { Directive, ElementRef } from '@angular/core';
|
|
4
2
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
5
3
|
import { ValueAccessor } from './value-accessor';
|
|
6
|
-
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class BooleanValueAccessor extends ValueAccessor {
|
|
7
6
|
constructor(el) {
|
|
8
7
|
super(el);
|
|
9
8
|
}
|
|
10
9
|
writeValue(value) {
|
|
11
10
|
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
12
11
|
}
|
|
13
|
-
}
|
|
14
|
-
BooleanValueAccessor =
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
12
|
+
}
|
|
13
|
+
BooleanValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
14
|
+
BooleanValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.6", type: BooleanValueAccessor, selector: "qds-checkbox", host: { listeners: { "qdsChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
15
|
+
{
|
|
16
|
+
provide: NG_VALUE_ACCESSOR,
|
|
17
|
+
useExisting: BooleanValueAccessor,
|
|
18
|
+
multi: true
|
|
19
|
+
}
|
|
20
|
+
], usesInheritance: true, ngImport: i0 });
|
|
21
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
22
|
+
type: Directive,
|
|
23
|
+
args: [{
|
|
24
|
+
/* tslint:disable-next-line:directive-selector */
|
|
25
|
+
selector: 'qds-checkbox',
|
|
26
|
+
host: {
|
|
27
|
+
'(qdsChange)': 'handleChangeEvent($event.target.checked)'
|
|
28
|
+
},
|
|
29
|
+
providers: [
|
|
30
|
+
{
|
|
31
|
+
provide: NG_VALUE_ACCESSOR,
|
|
32
|
+
useExisting: BooleanValueAccessor,
|
|
33
|
+
multi: true
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}]
|
|
37
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
31
38
|
//# sourceMappingURL=boolean-value-accessor.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"boolean-value-accessor.js","sourceRoot":"","sources":["../../src/generated/boolean-value-accessor.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"boolean-value-accessor.js","sourceRoot":"","sources":["../../src/generated/boolean-value-accessor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAEnD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;;AAgBjD,MAAM,OAAO,oBAAqB,SAAQ,aAAa;IACrD,YAAY,EAAc;QACxB,KAAK,CAAC,EAAE,CAAC,CAAC;IACZ,CAAC;IACD,UAAU,CAAC,KAAU;QACnB,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC,OAAO,GAAG,IAAI,CAAC,SAAS,GAAG,KAAK,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC;IACjF,CAAC;;iHANU,oBAAoB;qGAApB,oBAAoB,yHARpB;QACT;YACE,OAAO,EAAE,iBAAiB;YAC1B,WAAW,EAAE,oBAAoB;YACjC,KAAK,EAAE,IAAI;SACZ;KACF;2FAEU,oBAAoB;kBAdhC,SAAS;mBAAC;oBACT,iDAAiD;oBACjD,QAAQ,EAAE,cAAc;oBACxB,IAAI,EAAE;wBACJ,aAAa,EAAE,0CAA0C;qBAC1D;oBACD,SAAS,EAAE;wBACT;4BACE,OAAO,EAAE,iBAAiB;4BAC1B,WAAW,sBAAsB;4BACjC,KAAK,EAAE,IAAI;yBACZ;qBACF;iBACF"}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
2
|
import { ValueAccessor } from './value-accessor';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class NumericValueAccessor extends ValueAccessor {
|
|
4
5
|
constructor(el: ElementRef);
|
|
5
6
|
registerOnChange(fn: (_: number | null) => void): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumericValueAccessor, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NumericValueAccessor, "qds-input[type=number]", never, {}, {}, never, never, false, never>;
|
|
6
9
|
}
|
|
7
10
|
//# sourceMappingURL=number-value-accessor.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"number-value-accessor.d.ts","sourceRoot":"","sources":["../../src/generated/number-value-accessor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,eAAe,CAAC;AAGtD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC
|
|
1
|
+
{"version":3,"file":"number-value-accessor.d.ts","sourceRoot":"","sources":["../../src/generated/number-value-accessor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,eAAe,CAAC;AAGtD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;;AAEjD,qBAca,oBAAqB,SAAQ,aAAa;gBACzC,EAAE,EAAE,UAAU;IAG1B,gBAAgB,CAAC,EAAE,EAAE,CAAC,CAAC,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI;yCAJpC,oBAAoB;2CAApB,oBAAoB;CAShC"}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
var NumericValueAccessor_1;
|
|
2
|
-
import { __decorate, __metadata } from "tslib";
|
|
3
1
|
import { Directive, ElementRef } from '@angular/core';
|
|
4
2
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
5
3
|
import { ValueAccessor } from './value-accessor';
|
|
6
|
-
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class NumericValueAccessor extends ValueAccessor {
|
|
7
6
|
constructor(el) {
|
|
8
7
|
super(el);
|
|
9
8
|
}
|
|
@@ -12,22 +11,30 @@ export let NumericValueAccessor = NumericValueAccessor_1 = class NumericValueAcc
|
|
|
12
11
|
fn(value === '' ? null : parseFloat(value));
|
|
13
12
|
});
|
|
14
13
|
}
|
|
15
|
-
}
|
|
16
|
-
NumericValueAccessor =
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
14
|
+
}
|
|
15
|
+
NumericValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
16
|
+
NumericValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.6", type: NumericValueAccessor, selector: "qds-input[type=number]", host: { listeners: { "qdsChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
17
|
+
{
|
|
18
|
+
provide: NG_VALUE_ACCESSOR,
|
|
19
|
+
useExisting: NumericValueAccessor,
|
|
20
|
+
multi: true
|
|
21
|
+
}
|
|
22
|
+
], usesInheritance: true, ngImport: i0 });
|
|
23
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: NumericValueAccessor, decorators: [{
|
|
24
|
+
type: Directive,
|
|
25
|
+
args: [{
|
|
26
|
+
/* tslint:disable-next-line:directive-selector */
|
|
27
|
+
selector: 'qds-input[type=number]',
|
|
28
|
+
host: {
|
|
29
|
+
'(qdsChange)': 'handleChangeEvent($event.target.value)'
|
|
30
|
+
},
|
|
31
|
+
providers: [
|
|
32
|
+
{
|
|
33
|
+
provide: NG_VALUE_ACCESSOR,
|
|
34
|
+
useExisting: NumericValueAccessor,
|
|
35
|
+
multi: true
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}]
|
|
39
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
33
40
|
//# sourceMappingURL=number-value-accessor.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"number-value-accessor.js","sourceRoot":"","sources":["../../src/generated/number-value-accessor.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"number-value-accessor.js","sourceRoot":"","sources":["../../src/generated/number-value-accessor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAEnD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;;AAgBjD,MAAM,OAAO,oBAAqB,SAAQ,aAAa;IACrD,YAAY,EAAc;QACxB,KAAK,CAAC,EAAE,CAAC,CAAC;IACZ,CAAC;IACD,gBAAgB,CAAC,EAA8B;QAC7C,KAAK,CAAC,gBAAgB,CAAC,KAAK,CAAC,EAAE;YAC7B,EAAE,CAAC,KAAK,KAAK,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC;QAC9C,CAAC,CAAC,CAAC;IACL,CAAC;;iHARU,oBAAoB;qGAApB,oBAAoB,iIARpB;QACT;YACE,OAAO,EAAE,iBAAiB;YAC1B,WAAW,EAAE,oBAAoB;YACjC,KAAK,EAAE,IAAI;SACZ;KACF;2FAEU,oBAAoB;kBAdhC,SAAS;mBAAC;oBACT,iDAAiD;oBACjD,QAAQ,EAAE,wBAAwB;oBAClC,IAAI,EAAE;wBACJ,aAAa,EAAE,wCAAwC;qBACxD;oBACD,SAAS,EAAE;wBACT;4BACE,OAAO,EAAE,iBAAiB;4BAC1B,WAAW,sBAAsB;4BACjC,KAAK,EAAE,IAAI;yBACZ;qBACF;iBACF"}
|
|
@@ -1,11 +1,22 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
2
|
import type { Components } from '@quartzds/core/components';
|
|
3
|
+
import type { QdsFocusEventDetail as IQdsButtonQdsFocusEventDetail } from '@quartzds/core/components';
|
|
4
|
+
import type { QdsFocusEventDetail as IQdsCheckboxQdsFocusEventDetail } from '@quartzds/core/components';
|
|
5
|
+
import type { QdsFocusEventDetail as IQdsInlineLinkQdsFocusEventDetail } from '@quartzds/core/components';
|
|
6
|
+
import type { QdsFocusEventDetail as IQdsInputQdsFocusEventDetail } from '@quartzds/core/components';
|
|
7
|
+
import type { QdsInputEventDetail as IQdsInputQdsInputEventDetail } from '@quartzds/core/components';
|
|
8
|
+
import type { QdsFocusEventDetail as IQdsRadioQdsFocusEventDetail } from '@quartzds/core/components';
|
|
9
|
+
import type { QdsFocusEventDetail as IQdsSwitchQdsFocusEventDetail } from '@quartzds/core/components';
|
|
10
|
+
import type { QdsFocusEventDetail as IQdsTextareaQdsFocusEventDetail } from '@quartzds/core/components';
|
|
11
|
+
import type { QdsInputEventDetail as IQdsTextareaQdsInputEventDetail } from '@quartzds/core/components';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
3
13
|
export declare class QdsButton {
|
|
4
14
|
protected z: NgZone;
|
|
5
15
|
protected el: HTMLElement;
|
|
6
16
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsButton, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsButton, "qds-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "form": { "alias": "form"; "required": false; }; "formAction": { "alias": "formAction"; "required": false; }; "formMethod": { "alias": "formMethod"; "required": false; }; "formNoValidate": { "alias": "formNoValidate"; "required": false; }; "formTarget": { "alias": "formTarget"; "required": false; }; "href": { "alias": "href"; "required": false; }; "iconLibrary": { "alias": "iconLibrary"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "importance": { "alias": "importance"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "target": { "alias": "target"; "required": false; }; "text": { "alias": "text"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
7
19
|
}
|
|
8
|
-
import type { QdsFocusEventDetail as IQdsButtonQdsFocusEventDetail } from '@quartzds/core/components';
|
|
9
20
|
export declare interface QdsButton extends Components.QdsButton {
|
|
10
21
|
/**
|
|
11
22
|
* Emitted when the button loses focus.
|
|
@@ -20,8 +31,9 @@ export declare class QdsCheckbox {
|
|
|
20
31
|
protected z: NgZone;
|
|
21
32
|
protected el: HTMLElement;
|
|
22
33
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsCheckbox, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsCheckbox, "qds-checkbox", never, { "autoFocus": { "alias": "autoFocus"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "size": { "alias": "size"; "required": false; }; "text": { "alias": "text"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
23
36
|
}
|
|
24
|
-
import type { QdsFocusEventDetail as IQdsCheckboxQdsFocusEventDetail } from '@quartzds/core/components';
|
|
25
37
|
export declare interface QdsCheckbox extends Components.QdsCheckbox {
|
|
26
38
|
/**
|
|
27
39
|
* Emitted when the checkbox loses focus.
|
|
@@ -40,6 +52,8 @@ export declare class QdsDialog {
|
|
|
40
52
|
protected z: NgZone;
|
|
41
53
|
protected el: HTMLElement;
|
|
42
54
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsDialog, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsDialog, "qds-dialog", never, { "open": { "alias": "open"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
43
57
|
}
|
|
44
58
|
export declare interface QdsDialog extends Components.QdsDialog {
|
|
45
59
|
/**
|
|
@@ -60,6 +74,8 @@ export declare class QdsDivider {
|
|
|
60
74
|
protected z: NgZone;
|
|
61
75
|
protected el: HTMLElement;
|
|
62
76
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
77
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsDivider, never>;
|
|
78
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsDivider, "qds-divider", never, { "importance": { "alias": "importance"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
63
79
|
}
|
|
64
80
|
export declare interface QdsDivider extends Components.QdsDivider {
|
|
65
81
|
}
|
|
@@ -67,6 +83,8 @@ export declare class QdsDropdown {
|
|
|
67
83
|
protected z: NgZone;
|
|
68
84
|
protected el: HTMLElement;
|
|
69
85
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
86
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsDropdown, never>;
|
|
87
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsDropdown, "qds-dropdown", never, { "autoUpdateOptions": { "alias": "autoUpdateOptions"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "flipOptions": { "alias": "flipOptions"; "required": false; }; "noFlip": { "alias": "noFlip"; "required": false; }; "noShift": { "alias": "noShift"; "required": false; }; "offsetOptions": { "alias": "offsetOptions"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "shiftOptions": { "alias": "shiftOptions"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
70
88
|
}
|
|
71
89
|
export declare interface QdsDropdown extends Components.QdsDropdown {
|
|
72
90
|
/**
|
|
@@ -86,6 +104,8 @@ export declare class QdsFormMessage {
|
|
|
86
104
|
protected z: NgZone;
|
|
87
105
|
protected el: HTMLElement;
|
|
88
106
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
107
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsFormMessage, never>;
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsFormMessage, "qds-form-message", never, { "inline": { "alias": "inline"; "required": false; }; "size": { "alias": "size"; "required": false; }; "status": { "alias": "status"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
89
109
|
}
|
|
90
110
|
export declare interface QdsFormMessage extends Components.QdsFormMessage {
|
|
91
111
|
}
|
|
@@ -93,6 +113,8 @@ export declare class QdsIcon {
|
|
|
93
113
|
protected z: NgZone;
|
|
94
114
|
protected el: HTMLElement;
|
|
95
115
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
116
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsIcon, never>;
|
|
117
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsIcon, "qds-icon", never, { "library": { "alias": "library"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
96
118
|
}
|
|
97
119
|
export declare interface QdsIcon extends Components.QdsIcon {
|
|
98
120
|
/**
|
|
@@ -108,8 +130,9 @@ export declare class QdsInlineLink {
|
|
|
108
130
|
protected z: NgZone;
|
|
109
131
|
protected el: HTMLElement;
|
|
110
132
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
133
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsInlineLink, never>;
|
|
134
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsInlineLink, "qds-inline-link", never, { "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "hreflang": { "alias": "hreflang"; "required": false; }; "referrerPolicy": { "alias": "referrerPolicy"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
111
135
|
}
|
|
112
|
-
import type { QdsFocusEventDetail as IQdsInlineLinkQdsFocusEventDetail } from '@quartzds/core/components';
|
|
113
136
|
export declare interface QdsInlineLink extends Components.QdsInlineLink {
|
|
114
137
|
/**
|
|
115
138
|
* Emitted when the inline link loses focus.
|
|
@@ -124,9 +147,9 @@ export declare class QdsInput {
|
|
|
124
147
|
protected z: NgZone;
|
|
125
148
|
protected el: HTMLElement;
|
|
126
149
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
150
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsInput, never>;
|
|
151
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsInput, "qds-input", never, { "autoCapitalize": { "alias": "autoCapitalize"; "required": false; }; "autoComplete": { "alias": "autoComplete"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enterkeyhint": { "alias": "enterkeyhint"; "required": false; }; "form": { "alias": "form"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "max": { "alias": "max"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "size": { "alias": "size"; "required": false; }; "spellCheck": { "alias": "spellCheck"; "required": false; }; "step": { "alias": "step"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
127
152
|
}
|
|
128
|
-
import type { QdsFocusEventDetail as IQdsInputQdsFocusEventDetail } from '@quartzds/core/components';
|
|
129
|
-
import type { QdsInputEventDetail as IQdsInputQdsInputEventDetail } from '@quartzds/core/components';
|
|
130
153
|
export declare interface QdsInput extends Components.QdsInput {
|
|
131
154
|
/**
|
|
132
155
|
* Emitted when the input loses focus.
|
|
@@ -149,6 +172,8 @@ export declare class QdsLabel {
|
|
|
149
172
|
protected z: NgZone;
|
|
150
173
|
protected el: HTMLElement;
|
|
151
174
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
175
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsLabel, never>;
|
|
176
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsLabel, "qds-label", never, { "inline": { "alias": "inline"; "required": false; }; "required": { "alias": "required"; "required": false; }; "size": { "alias": "size"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
152
177
|
}
|
|
153
178
|
export declare interface QdsLabel extends Components.QdsLabel {
|
|
154
179
|
}
|
|
@@ -156,8 +181,9 @@ export declare class QdsRadio {
|
|
|
156
181
|
protected z: NgZone;
|
|
157
182
|
protected el: HTMLElement;
|
|
158
183
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
184
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsRadio, never>;
|
|
185
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsRadio, "qds-radio", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "size": { "alias": "size"; "required": false; }; "text": { "alias": "text"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
159
186
|
}
|
|
160
|
-
import type { QdsFocusEventDetail as IQdsRadioQdsFocusEventDetail } from '@quartzds/core/components';
|
|
161
187
|
export declare interface QdsRadio extends Components.QdsRadio {
|
|
162
188
|
/**
|
|
163
189
|
* Emitted when the radio button loses focus.
|
|
@@ -176,8 +202,9 @@ export declare class QdsSwitch {
|
|
|
176
202
|
protected z: NgZone;
|
|
177
203
|
protected el: HTMLElement;
|
|
178
204
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
205
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsSwitch, never>;
|
|
206
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsSwitch, "qds-switch", never, { "autoFocus": { "alias": "autoFocus"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "iconCheckedLibrary": { "alias": "iconCheckedLibrary"; "required": false; }; "iconCheckedName": { "alias": "iconCheckedName"; "required": false; }; "iconUncheckedLibrary": { "alias": "iconUncheckedLibrary"; "required": false; }; "iconUncheckedName": { "alias": "iconUncheckedName"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "textChecked": { "alias": "textChecked"; "required": false; }; "textUnchecked": { "alias": "textUnchecked"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
179
207
|
}
|
|
180
|
-
import type { QdsFocusEventDetail as IQdsSwitchQdsFocusEventDetail } from '@quartzds/core/components';
|
|
181
208
|
export declare interface QdsSwitch extends Components.QdsSwitch {
|
|
182
209
|
/**
|
|
183
210
|
* Emitted when the switch loses focus.
|
|
@@ -196,9 +223,9 @@ export declare class QdsTextarea {
|
|
|
196
223
|
protected z: NgZone;
|
|
197
224
|
protected el: HTMLElement;
|
|
198
225
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
226
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsTextarea, never>;
|
|
227
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsTextarea, "qds-textarea", never, { "autoCapitalize": { "alias": "autoCapitalize"; "required": false; }; "autoComplete": { "alias": "autoComplete"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enterkeyhint": { "alias": "enterkeyhint"; "required": false; }; "form": { "alias": "form"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "size": { "alias": "size"; "required": false; }; "spellCheck": { "alias": "spellCheck"; "required": false; }; "value": { "alias": "value"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
199
228
|
}
|
|
200
|
-
import type { QdsFocusEventDetail as IQdsTextareaQdsFocusEventDetail } from '@quartzds/core/components';
|
|
201
|
-
import type { QdsInputEventDetail as IQdsTextareaQdsInputEventDetail } from '@quartzds/core/components';
|
|
202
229
|
export declare interface QdsTextarea extends Components.QdsTextarea {
|
|
203
230
|
/**
|
|
204
231
|
* Emitted when the textarea loses focus.
|
|
@@ -222,6 +249,8 @@ export declare class QdsTitle {
|
|
|
222
249
|
protected z: NgZone;
|
|
223
250
|
protected el: HTMLElement;
|
|
224
251
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
252
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsTitle, never>;
|
|
253
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsTitle, "qds-title", never, { "iconLibrary": { "alias": "iconLibrary"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "kicker": { "alias": "kicker"; "required": false; }; "layer": { "alias": "layer"; "required": false; }; "level": { "alias": "level"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
225
254
|
}
|
|
226
255
|
export declare interface QdsTitle extends Components.QdsTitle {
|
|
227
256
|
}
|
|
@@ -229,6 +258,8 @@ export declare class QdsTooltip {
|
|
|
229
258
|
protected z: NgZone;
|
|
230
259
|
protected el: HTMLElement;
|
|
231
260
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
261
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsTooltip, never>;
|
|
262
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<QdsTooltip, "qds-tooltip", never, { "autoUpdateOptions": { "alias": "autoUpdateOptions"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "flipOptions": { "alias": "flipOptions"; "required": false; }; "noFlip": { "alias": "noFlip"; "required": false; }; "noShift": { "alias": "noShift"; "required": false; }; "offsetOptions": { "alias": "offsetOptions"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "shiftOptions": { "alias": "shiftOptions"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
232
263
|
}
|
|
233
264
|
export declare interface QdsTooltip extends Components.QdsTooltip {
|
|
234
265
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"proxies.d.ts","sourceRoot":"","sources":["../../src/generated/proxies.ts"],"names":[],"mappings":"AAEA,OAAO,EAA2B,iBAAiB,EAAa,UAAU,EAAE,YAAY,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAIxH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;
|
|
1
|
+
{"version":3,"file":"proxies.d.ts","sourceRoot":"","sources":["../../src/generated/proxies.ts"],"names":[],"mappings":"AAEA,OAAO,EAA2B,iBAAiB,EAAa,UAAU,EAAE,YAAY,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAIxH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAsC5D,OAAO,KAAK,EAAE,mBAAmB,IAAI,6BAA6B,EAAE,MAAM,2BAA2B,CAAC;AAoCtG,OAAO,KAAK,EAAE,mBAAmB,IAAI,+BAA+B,EAAE,MAAM,2BAA2B,CAAC;AAmMxG,OAAO,KAAK,EAAE,mBAAmB,IAAI,iCAAiC,EAAE,MAAM,2BAA2B,CAAC;AAoC1G,OAAO,KAAK,EAAE,mBAAmB,IAAI,4BAA4B,EAAE,MAAM,2BAA2B,CAAC;AACrG,OAAO,KAAK,EAAE,mBAAmB,IAAI,4BAA4B,EAAE,MAAM,2BAA2B,CAAC;AAkErG,OAAO,KAAK,EAAE,mBAAmB,IAAI,4BAA4B,EAAE,MAAM,2BAA2B,CAAC;AAuCrG,OAAO,KAAK,EAAE,mBAAmB,IAAI,6BAA6B,EAAE,MAAM,2BAA2B,CAAC;AAwCtG,OAAO,KAAK,EAAE,mBAAmB,IAAI,+BAA+B,EAAE,MAAM,2BAA2B,CAAC;AACxG,OAAO,KAAK,EAAE,mBAAmB,IAAI,+BAA+B,EAAE,MAAM,2BAA2B,CAAC;;AAnbxG,qBAWa,SAAS;IAE6B,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,SAAS;2CAAT,SAAS;CAOrB;AAKD,MAAM,CAAC,OAAO,WAAW,SAAU,SAAQ,UAAU,CAAC,SAAS;IAC7D;;OAEG;IACH,OAAO,EAAE,YAAY,CAAC,WAAW,CAAC,6BAA6B,CAAC,CAAC,CAAC;IAClE;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,6BAA6B,CAAC,CAAC,CAAC;CACpE;AAGD,qBAYa,WAAW;IAE2B,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,WAAW;2CAAX,WAAW;CAOvB;AAKD,MAAM,CAAC,OAAO,WAAW,WAAY,SAAQ,UAAU,CAAC,WAAW;IACjE;;OAEG;IACH,OAAO,EAAE,YAAY,CAAC,WAAW,CAAC,+BAA+B,CAAC,CAAC,CAAC;IACpE;;OAEG;IACH,SAAS,EAAE,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;IAC3C;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,+BAA+B,CAAC,CAAC,CAAC;CACtE;AAGD,qBAYa,SAAS;IAE6B,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,SAAS;2CAAT,SAAS;CAOrB;AAGD,MAAM,CAAC,OAAO,WAAW,SAAU,SAAQ,UAAU,CAAC,SAAS;IAC7D;;;;;;;OAOG;IACH,SAAS,EAAE,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;IAC3C;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;CAC3C;AAGD,qBAWa,UAAU;IAE4B,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,UAAU;2CAAV,UAAU;CAMtB;AAGD,MAAM,CAAC,OAAO,WAAW,UAAW,SAAQ,UAAU,CAAC,UAAU;CAAG;AAGpE,qBAYa,WAAW;IAE2B,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,WAAW;2CAAX,WAAW;CAOvB;AAGD,MAAM,CAAC,OAAO,WAAW,WAAY,SAAQ,UAAU,CAAC,WAAW;IACjE;;;;;;OAMG;IACH,SAAS,EAAE,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;IAC3C;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;CAC3C;AAGD,qBAWa,cAAc;IAEwB,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,cAAc;2CAAd,cAAc;CAM1B;AAGD,MAAM,CAAC,OAAO,WAAW,cAAe,SAAQ,UAAU,CAAC,cAAc;CAAG;AAG5E,qBAWa,OAAO;IAE+B,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,OAAO;2CAAP,OAAO;CAOnB;AAGD,MAAM,CAAC,OAAO,WAAW,OAAQ,SAAQ,UAAU,CAAC,OAAO;IACzD;;OAEG;IACH,OAAO,EAAE,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;IACzC;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;CAC3C;AAGD,qBAWa,aAAa;IAEyB,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,aAAa;2CAAb,aAAa;CAOzB;AAKD,MAAM,CAAC,OAAO,WAAW,aAAc,SAAQ,UAAU,CAAC,aAAa;IACrE;;OAEG;IACH,OAAO,EAAE,YAAY,CAAC,WAAW,CAAC,iCAAiC,CAAC,CAAC,CAAC;IACtE;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,iCAAiC,CAAC,CAAC,CAAC;CACxE;AAGD,qBAYa,QAAQ;IAE8B,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,QAAQ;2CAAR,QAAQ;CAOpB;AAMD,MAAM,CAAC,OAAO,WAAW,QAAS,SAAQ,UAAU,CAAC,QAAQ;IAC3D;;OAEG;IACH,OAAO,EAAE,YAAY,CAAC,WAAW,CAAC,4BAA4B,CAAC,CAAC,CAAC;IACjE;;OAEG;IACH,SAAS,EAAE,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;IAC3C;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,4BAA4B,CAAC,CAAC,CAAC;IAClE;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,4BAA4B,CAAC,CAAC,CAAC;CACnE;AAGD,qBAWa,QAAQ;IAE8B,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,QAAQ;2CAAR,QAAQ;CAMpB;AAGD,MAAM,CAAC,OAAO,WAAW,QAAS,SAAQ,UAAU,CAAC,QAAQ;CAAG;AAGhE,qBAWa,QAAQ;IAE8B,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,QAAQ;2CAAR,QAAQ;CAOpB;AAKD,MAAM,CAAC,OAAO,WAAW,QAAS,SAAQ,UAAU,CAAC,QAAQ;IAC3D;;OAEG;IACH,OAAO,EAAE,YAAY,CAAC,WAAW,CAAC,4BAA4B,CAAC,CAAC,CAAC;IACjE;;OAEG;IACH,SAAS,EAAE,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;IAC3C;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,4BAA4B,CAAC,CAAC,CAAC;CACnE;AAGD,qBAWa,SAAS;IAE6B,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,SAAS;2CAAT,SAAS;CAOrB;AAKD,MAAM,CAAC,OAAO,WAAW,SAAU,SAAQ,UAAU,CAAC,SAAS;IAC7D;;OAEG;IACH,OAAO,EAAE,YAAY,CAAC,WAAW,CAAC,6BAA6B,CAAC,CAAC,CAAC;IAClE;;OAEG;IACH,SAAS,EAAE,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;IAC3C;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,6BAA6B,CAAC,CAAC,CAAC;CACpE;AAGD,qBAYa,WAAW;IAE2B,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,WAAW;2CAAX,WAAW;CAOvB;AAMD,MAAM,CAAC,OAAO,WAAW,WAAY,SAAQ,UAAU,CAAC,WAAW;IACjE;;OAEG;IACH,OAAO,EAAE,YAAY,CAAC,WAAW,CAAC,+BAA+B,CAAC,CAAC,CAAC;IACpE;;;OAGG;IACH,SAAS,EAAE,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;IAC3C;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,+BAA+B,CAAC,CAAC,CAAC;IACrE;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,+BAA+B,CAAC,CAAC,CAAC;CACtE;AAGD,qBAWa,QAAQ;IAE8B,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,QAAQ;2CAAR,QAAQ;CAMpB;AAGD,MAAM,CAAC,OAAO,WAAW,QAAS,SAAQ,UAAU,CAAC,QAAQ;CAAG;AAGhE,qBAYa,UAAU;IAE4B,SAAS,CAAC,CAAC,EAAE,MAAM;IADpE,SAAS,CAAC,EAAE,EAAE,WAAW,CAAC;gBACd,CAAC,EAAE,iBAAiB,EAAE,CAAC,EAAE,UAAU,EAAY,CAAC,EAAE,MAAM;yCAFzD,UAAU;2CAAV,UAAU;CAOtB;AAGD,MAAM,CAAC,OAAO,WAAW,UAAW,SAAQ,UAAU,CAAC,UAAU;IAC/D;;OAEG;IACH,QAAQ,EAAE,YAAY,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;CAC3C"}
|