@qualcomm-ui/angular-core 1.4.1 → 1.5.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/checkbox/index.d.ts +19 -1
- package/checkbox/index.d.ts.map +1 -1
- package/fesm2022/qualcomm-ui-angular-core-accordion.mjs +27 -27
- package/fesm2022/qualcomm-ui-angular-core-avatar.mjs +15 -15
- package/fesm2022/qualcomm-ui-angular-core-checkbox.mjs +50 -25
- package/fesm2022/qualcomm-ui-angular-core-checkbox.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-core-collapsible.mjs +12 -12
- package/fesm2022/qualcomm-ui-angular-core-combobox.mjs +60 -60
- package/fesm2022/qualcomm-ui-angular-core-dialog.mjs +33 -33
- package/fesm2022/qualcomm-ui-angular-core-dom.mjs +12 -12
- package/fesm2022/qualcomm-ui-angular-core-events.mjs +3 -3
- package/fesm2022/qualcomm-ui-angular-core-highlight.mjs +3 -3
- package/fesm2022/qualcomm-ui-angular-core-inline-notification.mjs +21 -21
- package/fesm2022/qualcomm-ui-angular-core-input.mjs +9 -9
- package/fesm2022/qualcomm-ui-angular-core-locale.mjs +3 -3
- package/fesm2022/qualcomm-ui-angular-core-lorem-ipsum.mjs +3 -3
- package/fesm2022/qualcomm-ui-angular-core-machine.mjs +9 -9
- package/fesm2022/qualcomm-ui-angular-core-menu.mjs +69 -69
- package/fesm2022/qualcomm-ui-angular-core-number-input.mjs +61 -37
- package/fesm2022/qualcomm-ui-angular-core-number-input.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-core-observers.mjs +3 -3
- package/fesm2022/qualcomm-ui-angular-core-pagination.mjs +27 -27
- package/fesm2022/qualcomm-ui-angular-core-password-input.mjs +30 -30
- package/fesm2022/qualcomm-ui-angular-core-popover.mjs +33 -33
- package/fesm2022/qualcomm-ui-angular-core-popover.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-core-portal.mjs +9 -9
- package/fesm2022/qualcomm-ui-angular-core-presence.mjs +9 -9
- package/fesm2022/qualcomm-ui-angular-core-progress-ring.mjs +24 -24
- package/fesm2022/qualcomm-ui-angular-core-progress.mjs +27 -27
- package/fesm2022/qualcomm-ui-angular-core-radio.mjs +86 -34
- package/fesm2022/qualcomm-ui-angular-core-radio.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-core-segmented-control.mjs +15 -15
- package/fesm2022/qualcomm-ui-angular-core-select.mjs +51 -51
- package/fesm2022/qualcomm-ui-angular-core-side-nav.mjs +21 -21
- package/fesm2022/qualcomm-ui-angular-core-signals.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-core-slider.mjs +51 -51
- package/fesm2022/qualcomm-ui-angular-core-switch.mjs +47 -22
- package/fesm2022/qualcomm-ui-angular-core-switch.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-core-tabs.mjs +27 -27
- package/fesm2022/qualcomm-ui-angular-core-text-area.mjs +21 -21
- package/fesm2022/qualcomm-ui-angular-core-text-input.mjs +27 -27
- package/fesm2022/qualcomm-ui-angular-core-toast.mjs +24 -24
- package/fesm2022/qualcomm-ui-angular-core-tooltip.mjs +21 -21
- package/fesm2022/qualcomm-ui-angular-core-tree.mjs +48 -48
- package/fesm2022/qualcomm-ui-angular-core-virtual.mjs.map +1 -1
- package/number-input/index.d.ts +18 -2
- package/number-input/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/popover/index.d.ts +8 -2
- package/popover/index.d.ts.map +1 -1
- package/radio/index.d.ts +38 -1
- package/radio/index.d.ts.map +1 -1
- package/signals/index.d.ts +2 -2
- package/switch/index.d.ts +19 -1
- package/switch/index.d.ts.map +1 -1
package/checkbox/index.d.ts
CHANGED
|
@@ -128,6 +128,24 @@ declare class CoreCheckboxErrorTextDirective implements OnInit {
|
|
|
128
128
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreCheckboxErrorTextDirective, never, never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
+
declare class CoreCheckboxHintDirective implements OnInit {
|
|
132
|
+
/**
|
|
133
|
+
* {@link https://www.w3schools.com/html/html_id.asp id attribute}. If
|
|
134
|
+
* omitted, a unique identifier will be generated for accessibility.
|
|
135
|
+
*/
|
|
136
|
+
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
137
|
+
protected readonly checkboxContext: () => _qualcomm_ui_core_checkbox.CheckboxApi;
|
|
138
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
139
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
140
|
+
setDisabled: (disabled: boolean) => void;
|
|
141
|
+
};
|
|
142
|
+
private readonly hostId;
|
|
143
|
+
private readonly onDestroy;
|
|
144
|
+
ngOnInit(): void;
|
|
145
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreCheckboxHintDirective, never>;
|
|
146
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreCheckboxHintDirective, never, never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
147
|
+
}
|
|
148
|
+
|
|
131
149
|
declare class CoreCheckboxHiddenInputDirective implements OnInit {
|
|
132
150
|
/**
|
|
133
151
|
* {@link https://www.w3schools.com/html/html_id.asp id attribute}. If
|
|
@@ -245,6 +263,6 @@ interface CheckboxGroupState {
|
|
|
245
263
|
}
|
|
246
264
|
declare function useCheckboxGroup(props?: UseCheckboxGroupProps): CheckboxGroupState;
|
|
247
265
|
|
|
248
|
-
export { AbstractCheckboxFormControlDirective, CHECKBOX_CONTEXT, CheckboxContextService, CoreCheckboxControlDirective, CoreCheckboxErrorTextDirective, CoreCheckboxHiddenInputDirective, CoreCheckboxIndicatorDirective, CoreCheckboxLabelDirective, CoreCheckboxRootDirective, provideCheckboxContext, useCheckboxContext, useCheckboxGroup };
|
|
266
|
+
export { AbstractCheckboxFormControlDirective, CHECKBOX_CONTEXT, CheckboxContextService, CoreCheckboxControlDirective, CoreCheckboxErrorTextDirective, CoreCheckboxHiddenInputDirective, CoreCheckboxHintDirective, CoreCheckboxIndicatorDirective, CoreCheckboxLabelDirective, CoreCheckboxRootDirective, provideCheckboxContext, useCheckboxContext, useCheckboxGroup };
|
|
249
267
|
export type { CheckboxGroupState, UseCheckboxGroupProps };
|
|
250
268
|
//# sourceMappingURL=index.d.ts.map
|
package/checkbox/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sources":["../../src/checkbox/abstract-checkbox-form-control.directive.ts","../../src/checkbox/checkbox-context.service.ts","../../src/checkbox/core-checkbox-control.directive.ts","../../src/checkbox/core-checkbox-error-text.directive.ts","../../src/checkbox/core-checkbox-hidden-input.directive.ts","../../src/checkbox/core-checkbox-indicator.directive.ts","../../src/checkbox/core-checkbox-label.directive.ts","../../src/checkbox/core-checkbox-root.directive.ts","../../src/checkbox/use-checkbox-group.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null],"names":[],"mappings":";;;;;;;;;;;;AAwCA;AAIE;;;;AAIG;;AAKH;;;;AAIG;;AAKH;;AAEG;;AAGH;;;AAGG;;AAKH;;;AAGG;;AAKH;;;;AAIG;;AAIH;AACA;AACA;AACA;AAGA;;AAOA;AAIA;;;AAGG;AACH;;;;;;;;;;AA4JA;AAIA;;AAEG;AACH;AA2BA;AAKA;;;AAWA;AAIA;;;;AAIG;AACH;;;AAGD;;AC9TD;;;AACiF;AAEjF;AACkB;AACE;;ACPpB;AAEE;;;AAGG;;AAGH;;;;AAOC;AAED;AAEA;;;;AAKD;;ACxBD;AAEE;;;AAGG;;AAGH;;;;AAOC;AAED;AAEA;;;;AAKD;;ACxBD;AAEE;;;AAGG;;AAGH;;;;AAOC;AAED;AAEA;;;;AAKD;;ACzBD;AAEE;;;;AAIC;;;;AAKF;;ACVD;AAEE;;;AAGG;;AAGH;;;;AAOC;AAED;AAEA;;;;AAKD;;ACDD;AAQE;;;;AAIG;;AAGH;;;AAGG;;AAKH;;;AAGG;;AAKH;;;AAGG;;AAGH;;;AAGG;;AAGH;AACA;AAEA;;;;AAGC;;;;AAgDF;;;AC1HC;;AAEG;AACH;AAEA;;AAEG;AACH;AAEA;;AAEG;AACH;AAEA;;AAEG;AACH;AAEA;;AAEG;;AAEJ;;;AAIC;;AAEA;AACA;AACD;AAED;;;"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sources":["../../src/checkbox/abstract-checkbox-form-control.directive.ts","../../src/checkbox/checkbox-context.service.ts","../../src/checkbox/core-checkbox-control.directive.ts","../../src/checkbox/core-checkbox-error-text.directive.ts","../../src/checkbox/core-checkbox-hint.directive.ts","../../src/checkbox/core-checkbox-hidden-input.directive.ts","../../src/checkbox/core-checkbox-indicator.directive.ts","../../src/checkbox/core-checkbox-label.directive.ts","../../src/checkbox/core-checkbox-root.directive.ts","../../src/checkbox/use-checkbox-group.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null],"names":[],"mappings":";;;;;;;;;;;;AAwCA;AAIE;;;;AAIG;;AAKH;;;;AAIG;;AAKH;;AAEG;;AAGH;;;AAGG;;AAKH;;;AAGG;;AAKH;;;;AAIG;;AAIH;AACA;AACA;AACA;AAGA;;AAOA;AAIA;;;AAGG;AACH;;;;;;;;;;AA4JA;AAIA;;AAEG;AACH;AA2BA;AAKA;;;AAWA;AAIA;;;;AAIG;AACH;;;AAGD;;AC9TD;;;AACiF;AAEjF;AACkB;AACE;;ACPpB;AAEE;;;AAGG;;AAGH;;;;AAOC;AAED;AAEA;;;;AAKD;;ACxBD;AAEE;;;AAGG;;AAGH;;;;AAOC;AAED;AAEA;;;;AAKD;;ACxBD;AAEE;;;AAGG;;AAGH;;;;AAOC;AAED;AAEA;;;;AAKD;;ACxBD;AAEE;;;AAGG;;AAGH;;;;AAOC;AAED;AAEA;;;;AAKD;;ACzBD;AAEE;;;;AAIC;;;;AAKF;;ACVD;AAEE;;;AAGG;;AAGH;;;;AAOC;AAED;AAEA;;;;AAKD;;ACDD;AAQE;;;;AAIG;;AAGH;;;AAGG;;AAKH;;;AAGG;;AAKH;;;AAGG;;AAGH;;;AAGG;;AAGH;AACA;AAEA;;;;AAGC;;;;AAgDF;;;AC1HC;;AAEG;AACH;AAEA;;AAEG;AACH;AAEA;;AAEG;AACH;AAEA;;AAEG;AACH;AAEA;;AAEG;;AAEJ;;;AAIC;;AAEA;AACA;AACD;AAED;;;"}
|
|
@@ -7,10 +7,10 @@ import { accordionMachine, createAccordionApi } from '@qualcomm-ui/core/accordio
|
|
|
7
7
|
// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
8
8
|
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
9
9
|
class AccordionContextService extends BaseApiContextService {
|
|
10
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
11
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
10
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AccordionContextService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
11
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AccordionContextService });
|
|
12
12
|
}
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AccordionContextService, decorators: [{
|
|
14
14
|
type: Injectable
|
|
15
15
|
}] });
|
|
16
16
|
const [ACCORDION_CONTEXT, useAccordionContext, provideAccordionContext] = createApiContext("AccordionContext", AccordionContextService);
|
|
@@ -18,10 +18,10 @@ const [ACCORDION_CONTEXT, useAccordionContext, provideAccordionContext] = create
|
|
|
18
18
|
// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
19
19
|
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
20
20
|
class AccordionItemContextService extends BaseApiContextService {
|
|
21
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
22
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
21
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AccordionItemContextService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
22
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AccordionItemContextService });
|
|
23
23
|
}
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
24
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AccordionItemContextService, decorators: [{
|
|
25
25
|
type: Injectable
|
|
26
26
|
}] });
|
|
27
27
|
const [ACCORDION_ITEM_CONTEXT, useAccordionItemContext, provideAccordionItemContext,] = createApiContext("AccordionItemContext", AccordionItemContextService);
|
|
@@ -47,10 +47,10 @@ class CoreAccordionItemContentDirective {
|
|
|
47
47
|
ngOnInit() {
|
|
48
48
|
this.trackBindings();
|
|
49
49
|
}
|
|
50
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
51
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
50
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionItemContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
51
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreAccordionItemContentDirective, isStandalone: true, inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
52
52
|
}
|
|
53
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
53
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionItemContentDirective, decorators: [{
|
|
54
54
|
type: Directive
|
|
55
55
|
}], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }] } });
|
|
56
56
|
|
|
@@ -66,10 +66,10 @@ class CoreAccordionItemTriggerIndicatorDirective {
|
|
|
66
66
|
ngOnInit() {
|
|
67
67
|
this.trackBindings();
|
|
68
68
|
}
|
|
69
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
70
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
69
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionItemTriggerIndicatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
70
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.16", type: CoreAccordionItemTriggerIndicatorDirective, isStandalone: true, ngImport: i0 });
|
|
71
71
|
}
|
|
72
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
72
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionItemTriggerIndicatorDirective, decorators: [{
|
|
73
73
|
type: Directive
|
|
74
74
|
}] });
|
|
75
75
|
|
|
@@ -85,10 +85,10 @@ class CoreAccordionItemTriggerSecondaryDirective {
|
|
|
85
85
|
ngOnInit() {
|
|
86
86
|
this.trackBindings();
|
|
87
87
|
}
|
|
88
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
89
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
88
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionItemTriggerSecondaryDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
89
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.16", type: CoreAccordionItemTriggerSecondaryDirective, isStandalone: true, ngImport: i0 });
|
|
90
90
|
}
|
|
91
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
91
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionItemTriggerSecondaryDirective, decorators: [{
|
|
92
92
|
type: Directive
|
|
93
93
|
}] });
|
|
94
94
|
|
|
@@ -104,10 +104,10 @@ class CoreAccordionItemTriggerTitleDirective {
|
|
|
104
104
|
ngOnInit() {
|
|
105
105
|
this.trackBindings();
|
|
106
106
|
}
|
|
107
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
108
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
107
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionItemTriggerTitleDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
108
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.16", type: CoreAccordionItemTriggerTitleDirective, isStandalone: true, ngImport: i0 });
|
|
109
109
|
}
|
|
110
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
110
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionItemTriggerTitleDirective, decorators: [{
|
|
111
111
|
type: Directive
|
|
112
112
|
}] });
|
|
113
113
|
|
|
@@ -130,10 +130,10 @@ class CoreAccordionItemTriggerDirective {
|
|
|
130
130
|
ngOnInit() {
|
|
131
131
|
this.trackBindings();
|
|
132
132
|
}
|
|
133
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
134
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
133
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionItemTriggerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
134
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreAccordionItemTriggerDirective, isStandalone: true, inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
135
135
|
}
|
|
136
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
136
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionItemTriggerDirective, decorators: [{
|
|
137
137
|
type: Directive
|
|
138
138
|
}], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }] } });
|
|
139
139
|
|
|
@@ -169,10 +169,10 @@ class CoreAccordionItemDirective {
|
|
|
169
169
|
})));
|
|
170
170
|
this.trackBindings();
|
|
171
171
|
}
|
|
172
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
173
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
172
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionItemDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
173
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreAccordionItemDirective, isStandalone: true, inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
174
174
|
}
|
|
175
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
175
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionItemDirective, decorators: [{
|
|
176
176
|
type: Directive
|
|
177
177
|
}], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }] } });
|
|
178
178
|
|
|
@@ -254,10 +254,10 @@ class CoreAccordionRootDirective {
|
|
|
254
254
|
this.accordionContext.init(computed(() => createAccordionApi(machine, normalizeProps)));
|
|
255
255
|
this.trackBindings();
|
|
256
256
|
}
|
|
257
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
258
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
257
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionRootDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
258
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreAccordionRootDirective, isStandalone: true, inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, collapsible: { classPropertyName: "collapsible", publicName: "collapsible", isSignal: true, isRequired: false, transformFunction: null }, defaultValue: { classPropertyName: "defaultValue", publicName: "defaultValue", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, multiple: { classPropertyName: "multiple", publicName: "multiple", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { focusChanged: "focusChanged", valueChanged: "valueChanged" }, ngImport: i0 });
|
|
259
259
|
}
|
|
260
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
260
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAccordionRootDirective, decorators: [{
|
|
261
261
|
type: Directive
|
|
262
262
|
}], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], collapsible: [{ type: i0.Input, args: [{ isSignal: true, alias: "collapsible", required: false }] }], defaultValue: [{ type: i0.Input, args: [{ isSignal: true, alias: "defaultValue", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], multiple: [{ type: i0.Input, args: [{ isSignal: true, alias: "multiple", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }], focusChanged: [{ type: i0.Output, args: ["focusChanged"] }], valueChanged: [{ type: i0.Output, args: ["valueChanged"] }] } });
|
|
263
263
|
|
|
@@ -7,10 +7,10 @@ import { avatarMachine, createAvatarApi } from '@qualcomm-ui/core/avatar';
|
|
|
7
7
|
// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
8
8
|
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
9
9
|
class AvatarContextService extends BaseApiContextService {
|
|
10
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
11
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
10
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AvatarContextService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
11
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AvatarContextService });
|
|
12
12
|
}
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AvatarContextService, decorators: [{
|
|
14
14
|
type: Injectable
|
|
15
15
|
}] });
|
|
16
16
|
const [AVATAR_CONTEXT, useAvatarContext, provideAvatarContext] = createApiContext("AvatarContext", AvatarContextService);
|
|
@@ -33,10 +33,10 @@ class CoreAvatarContentDirective {
|
|
|
33
33
|
ngOnInit() {
|
|
34
34
|
this.trackBindings();
|
|
35
35
|
}
|
|
36
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
37
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
36
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAvatarContentDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
37
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreAvatarContentDirective, isStandalone: true, inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
38
38
|
}
|
|
39
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAvatarContentDirective, decorators: [{
|
|
40
40
|
type: Directive
|
|
41
41
|
}], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }] } });
|
|
42
42
|
|
|
@@ -58,10 +58,10 @@ class CoreAvatarImageDirective {
|
|
|
58
58
|
ngOnInit() {
|
|
59
59
|
this.trackBindings();
|
|
60
60
|
}
|
|
61
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
62
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
61
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAvatarImageDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
62
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreAvatarImageDirective, isStandalone: true, inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
63
63
|
}
|
|
64
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
64
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAvatarImageDirective, decorators: [{
|
|
65
65
|
type: Directive
|
|
66
66
|
}], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }] } });
|
|
67
67
|
|
|
@@ -103,10 +103,10 @@ class CoreAvatarRootDirective {
|
|
|
103
103
|
this.avatarContext.init(computed(() => createAvatarApi(machine, normalizeProps)));
|
|
104
104
|
this.trackBindings();
|
|
105
105
|
}
|
|
106
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
107
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
106
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAvatarRootDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
107
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreAvatarRootDirective, isStandalone: true, inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { stateChanged: "stateChanged" }, ngImport: i0 });
|
|
108
108
|
}
|
|
109
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAvatarRootDirective, decorators: [{
|
|
110
110
|
type: Directive
|
|
111
111
|
}], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }], dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], stateChanged: [{ type: i0.Output, args: ["stateChanged"] }] } });
|
|
112
112
|
|
|
@@ -128,10 +128,10 @@ class CoreAvatarStatusDirective {
|
|
|
128
128
|
ngOnInit() {
|
|
129
129
|
this.trackBindings();
|
|
130
130
|
}
|
|
131
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
132
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
131
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAvatarStatusDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
132
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreAvatarStatusDirective, isStandalone: true, inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
133
133
|
}
|
|
134
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreAvatarStatusDirective, decorators: [{
|
|
135
135
|
type: Directive
|
|
136
136
|
}], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }] } });
|
|
137
137
|
|
|
@@ -261,20 +261,20 @@ class AbstractCheckboxFormControlDirective {
|
|
|
261
261
|
setDisabledState(isDisabled) {
|
|
262
262
|
this.isDisabled.set(isDisabled);
|
|
263
263
|
}
|
|
264
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
265
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
264
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AbstractCheckboxFormControlDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
265
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: AbstractCheckboxFormControlDirective, isStandalone: true, inputs: { defaultChecked: { classPropertyName: "defaultChecked", publicName: "defaultChecked", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null }, readOnly: { classPropertyName: "readOnly", publicName: "readOnly", isSignal: true, isRequired: false, transformFunction: null }, required: { classPropertyName: "required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { checkedChanged: "checkedChanged" }, ngImport: i0 });
|
|
266
266
|
}
|
|
267
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
267
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: AbstractCheckboxFormControlDirective, decorators: [{
|
|
268
268
|
type: Directive
|
|
269
269
|
}], ctorParameters: () => [], propDecorators: { defaultChecked: [{ type: i0.Input, args: [{ isSignal: true, alias: "defaultChecked", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], name: [{ type: i0.Input, args: [{ isSignal: true, alias: "name", required: false }] }], readOnly: [{ type: i0.Input, args: [{ isSignal: true, alias: "readOnly", required: false }] }], required: [{ type: i0.Input, args: [{ isSignal: true, alias: "required", required: false }] }], checkedChanged: [{ type: i0.Output, args: ["checkedChanged"] }] } });
|
|
270
270
|
|
|
271
271
|
// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
272
272
|
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
273
273
|
class CheckboxContextService extends BaseApiContextService {
|
|
274
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
275
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.
|
|
274
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CheckboxContextService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
275
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CheckboxContextService });
|
|
276
276
|
}
|
|
277
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
277
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CheckboxContextService, decorators: [{
|
|
278
278
|
type: Injectable
|
|
279
279
|
}] });
|
|
280
280
|
const [CHECKBOX_CONTEXT, useCheckboxContext, provideCheckboxContext,] = createApiContext("CheckboxContext", CheckboxContextService);
|
|
@@ -297,10 +297,10 @@ class CoreCheckboxControlDirective {
|
|
|
297
297
|
ngOnInit() {
|
|
298
298
|
this.trackBindings();
|
|
299
299
|
}
|
|
300
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
301
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
300
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxControlDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
301
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreCheckboxControlDirective, isStandalone: true, inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
302
302
|
}
|
|
303
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxControlDirective, decorators: [{
|
|
304
304
|
type: Directive
|
|
305
305
|
}], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }] } });
|
|
306
306
|
|
|
@@ -322,10 +322,35 @@ class CoreCheckboxErrorTextDirective {
|
|
|
322
322
|
ngOnInit() {
|
|
323
323
|
this.trackBindings();
|
|
324
324
|
}
|
|
325
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
326
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
325
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxErrorTextDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
326
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreCheckboxErrorTextDirective, isStandalone: true, inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
327
327
|
}
|
|
328
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxErrorTextDirective, decorators: [{
|
|
329
|
+
type: Directive
|
|
330
|
+
}], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }] } });
|
|
331
|
+
|
|
332
|
+
// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
333
|
+
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
334
|
+
class CoreCheckboxHintDirective {
|
|
335
|
+
/**
|
|
336
|
+
* {@link https://www.w3schools.com/html/html_id.asp id attribute}. If
|
|
337
|
+
* omitted, a unique identifier will be generated for accessibility.
|
|
338
|
+
*/
|
|
339
|
+
id = input(...(ngDevMode ? [undefined, { debugName: "id" }] : []));
|
|
340
|
+
checkboxContext = useCheckboxContext();
|
|
341
|
+
trackBindings = useTrackBindings(() => this.checkboxContext().getHintBindings({
|
|
342
|
+
id: this.hostId(),
|
|
343
|
+
onDestroy: this.onDestroy,
|
|
344
|
+
}));
|
|
345
|
+
hostId = computed(() => useId(this, this.id()), ...(ngDevMode ? [{ debugName: "hostId" }] : []));
|
|
346
|
+
onDestroy = useOnDestroy();
|
|
347
|
+
ngOnInit() {
|
|
348
|
+
this.trackBindings();
|
|
349
|
+
}
|
|
350
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxHintDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
351
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreCheckboxHintDirective, isStandalone: true, inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
352
|
+
}
|
|
353
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxHintDirective, decorators: [{
|
|
329
354
|
type: Directive
|
|
330
355
|
}], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }] } });
|
|
331
356
|
|
|
@@ -347,10 +372,10 @@ class CoreCheckboxHiddenInputDirective {
|
|
|
347
372
|
ngOnInit() {
|
|
348
373
|
this.trackBindings();
|
|
349
374
|
}
|
|
350
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
351
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
375
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxHiddenInputDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
376
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreCheckboxHiddenInputDirective, isStandalone: true, inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
352
377
|
}
|
|
353
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
378
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxHiddenInputDirective, decorators: [{
|
|
354
379
|
type: Directive
|
|
355
380
|
}], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }] } });
|
|
356
381
|
|
|
@@ -362,10 +387,10 @@ class CoreCheckboxIndicatorDirective {
|
|
|
362
387
|
ngOnInit() {
|
|
363
388
|
this.trackBindings();
|
|
364
389
|
}
|
|
365
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
366
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.
|
|
390
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxIndicatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
391
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.16", type: CoreCheckboxIndicatorDirective, isStandalone: true, ngImport: i0 });
|
|
367
392
|
}
|
|
368
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
393
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxIndicatorDirective, decorators: [{
|
|
369
394
|
type: Directive
|
|
370
395
|
}] });
|
|
371
396
|
|
|
@@ -387,10 +412,10 @@ class CoreCheckboxLabelDirective {
|
|
|
387
412
|
ngOnInit() {
|
|
388
413
|
this.trackBindings();
|
|
389
414
|
}
|
|
390
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
391
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
415
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxLabelDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
416
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreCheckboxLabelDirective, isStandalone: true, inputs: { id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 });
|
|
392
417
|
}
|
|
393
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
418
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxLabelDirective, decorators: [{
|
|
394
419
|
type: Directive
|
|
395
420
|
}], propDecorators: { id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }] } });
|
|
396
421
|
|
|
@@ -466,10 +491,10 @@ class CoreCheckboxRootDirective extends AbstractCheckboxFormControlDirective {
|
|
|
466
491
|
this.checkboxContextService.init(computed(() => createCheckboxApi(machine, normalizeProps)));
|
|
467
492
|
this.trackBindings();
|
|
468
493
|
}
|
|
469
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.
|
|
470
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.
|
|
494
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxRootDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
495
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.3.16", type: CoreCheckboxRootDirective, isStandalone: true, inputs: { dir: { classPropertyName: "dir", publicName: "dir", isSignal: true, isRequired: false, transformFunction: null }, getRootNode: { classPropertyName: "getRootNode", publicName: "getRootNode", isSignal: true, isRequired: false, transformFunction: null }, indeterminate: { classPropertyName: "indeterminate", publicName: "indeterminate", isSignal: true, isRequired: false, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null } }, usesInheritance: true, ngImport: i0 });
|
|
471
496
|
}
|
|
472
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.
|
|
497
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: CoreCheckboxRootDirective, decorators: [{
|
|
473
498
|
type: Directive
|
|
474
499
|
}], propDecorators: { dir: [{ type: i0.Input, args: [{ isSignal: true, alias: "dir", required: false }] }], getRootNode: [{ type: i0.Input, args: [{ isSignal: true, alias: "getRootNode", required: false }] }], indeterminate: [{ type: i0.Input, args: [{ isSignal: true, alias: "indeterminate", required: false }] }], id: [{ type: i0.Input, args: [{ isSignal: true, alias: "id", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: false }] }] } });
|
|
475
500
|
|
|
@@ -537,5 +562,5 @@ function access(value) {
|
|
|
537
562
|
* Generated bundle index. Do not edit.
|
|
538
563
|
*/
|
|
539
564
|
|
|
540
|
-
export { AbstractCheckboxFormControlDirective, CHECKBOX_CONTEXT, CheckboxContextService, CoreCheckboxControlDirective, CoreCheckboxErrorTextDirective, CoreCheckboxHiddenInputDirective, CoreCheckboxIndicatorDirective, CoreCheckboxLabelDirective, CoreCheckboxRootDirective, provideCheckboxContext, useCheckboxContext, useCheckboxGroup };
|
|
565
|
+
export { AbstractCheckboxFormControlDirective, CHECKBOX_CONTEXT, CheckboxContextService, CoreCheckboxControlDirective, CoreCheckboxErrorTextDirective, CoreCheckboxHiddenInputDirective, CoreCheckboxHintDirective, CoreCheckboxIndicatorDirective, CoreCheckboxLabelDirective, CoreCheckboxRootDirective, provideCheckboxContext, useCheckboxContext, useCheckboxGroup };
|
|
541
566
|
//# sourceMappingURL=qualcomm-ui-angular-core-checkbox.mjs.map
|