@qualcomm-ui/angular 1.15.1 → 1.17.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/alert-banner/index.d.ts +176 -0
- package/alert-banner/index.d.ts.map +1 -0
- package/avatar/index.d.ts +8 -4
- package/avatar/index.d.ts.map +1 -1
- package/checkbox/index.d.ts +30 -6
- package/checkbox/index.d.ts.map +1 -1
- package/combobox/index.d.ts +10 -2
- package/combobox/index.d.ts.map +1 -1
- package/fesm2022/qualcomm-ui-angular-alert-banner.mjs +378 -0
- package/fesm2022/qualcomm-ui-angular-alert-banner.mjs.map +1 -0
- package/fesm2022/qualcomm-ui-angular-avatar.mjs +8 -3
- package/fesm2022/qualcomm-ui-angular-avatar.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-checkbox.mjs +59 -5
- package/fesm2022/qualcomm-ui-angular-checkbox.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-combobox.mjs +11 -2
- package/fesm2022/qualcomm-ui-angular-combobox.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-inline-notification.mjs +11 -6
- package/fesm2022/qualcomm-ui-angular-inline-notification.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-number-input.mjs +147 -6
- package/fesm2022/qualcomm-ui-angular-number-input.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-radio.mjs +107 -18
- package/fesm2022/qualcomm-ui-angular-radio.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-select.mjs +126 -16
- package/fesm2022/qualcomm-ui-angular-select.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-switch.mjs +59 -5
- package/fesm2022/qualcomm-ui-angular-switch.mjs.map +1 -1
- package/inline-notification/index.d.ts +8 -1
- package/inline-notification/index.d.ts.map +1 -1
- package/number-input/index.d.ts +36 -4
- package/number-input/index.d.ts.map +1 -1
- package/package.json +8 -4
- package/radio/index.d.ts +48 -5
- package/radio/index.d.ts.map +1 -1
- package/select/index.d.ts +34 -7
- package/select/index.d.ts.map +1 -1
- package/switch/index.d.ts +29 -5
- package/switch/index.d.ts.map +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Injectable, computed, Directive, input, Component, booleanAttribute, inject, NgModule } from '@angular/core';
|
|
3
3
|
import { BaseApiContextService, createApiContext, normalizeProps, QBindDirective } from '@qualcomm-ui/angular-core/machine';
|
|
4
|
-
import { CoreRadioItemControlDirective, CoreRadioGroupErrorTextDirective, CoreRadioGroupItemsDirective, CoreRadioGroupLabelDirective, CoreRadioGroupDirective, provideRadioContext, CoreRadioItemHiddenInputDirective, CoreRadioItemLabelDirective, CoreRadioRootDirective, provideRadioItemContext } from '@qualcomm-ui/angular-core/radio';
|
|
4
|
+
import { CoreRadioItemControlDirective, CoreRadioGroupErrorTextDirective, CoreRadioGroupHintDirective, CoreRadioGroupItemsDirective, CoreRadioGroupLabelDirective, CoreRadioGroupDirective, provideRadioContext, CoreRadioItemHiddenInputDirective, CoreRadioItemHintDirective, CoreRadioItemLabelDirective, CoreRadioRootDirective, provideRadioItemContext } from '@qualcomm-ui/angular-core/radio';
|
|
5
5
|
import { CircleAlert } from 'lucide-angular';
|
|
6
6
|
import * as i1 from '@qualcomm-ui/angular/icon';
|
|
7
7
|
import { IconDirective } from '@qualcomm-ui/angular/icon';
|
|
@@ -49,7 +49,7 @@ class RadioGroupErrorTextComponent extends CoreRadioGroupErrorTextDirective {
|
|
|
49
49
|
qdsRadioContext = useQdsRadioContext();
|
|
50
50
|
constructor() {
|
|
51
51
|
super();
|
|
52
|
-
this.trackBindings.extendWith(computed(() => this.qdsRadioContext().
|
|
52
|
+
this.trackBindings.extendWith(computed(() => this.qdsRadioContext().getGroupErrorTextBindings()));
|
|
53
53
|
}
|
|
54
54
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RadioGroupErrorTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
55
55
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.3.16", type: RadioGroupErrorTextComponent, isStandalone: false, selector: "[q-radio-group-error-text]", inputs: { icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null } }, usesInheritance: true, ngImport: i0, template: `
|
|
@@ -69,6 +69,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
69
69
|
}]
|
|
70
70
|
}], ctorParameters: () => [], propDecorators: { icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }] } });
|
|
71
71
|
|
|
72
|
+
// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
73
|
+
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
74
|
+
/**
|
|
75
|
+
* Hint text displayed below the radio group.
|
|
76
|
+
*/
|
|
77
|
+
class RadioGroupHintDirective extends CoreRadioGroupHintDirective {
|
|
78
|
+
qdsRadioContext = useQdsRadioContext();
|
|
79
|
+
constructor() {
|
|
80
|
+
super();
|
|
81
|
+
this.trackBindings.extendWith(computed(() => this.qdsRadioContext().getGroupHintBindings()));
|
|
82
|
+
}
|
|
83
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RadioGroupHintDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
84
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.16", type: RadioGroupHintDirective, isStandalone: false, selector: "[q-radio-group-hint]", usesInheritance: true, ngImport: i0 });
|
|
85
|
+
}
|
|
86
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RadioGroupHintDirective, decorators: [{
|
|
87
|
+
type: Directive,
|
|
88
|
+
args: [{
|
|
89
|
+
selector: "[q-radio-group-hint]",
|
|
90
|
+
standalone: false,
|
|
91
|
+
}]
|
|
92
|
+
}], ctorParameters: () => [] });
|
|
93
|
+
|
|
72
94
|
// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
73
95
|
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
74
96
|
class RadioGroupItemsDirective extends CoreRadioGroupItemsDirective {
|
|
@@ -160,6 +182,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
160
182
|
}]
|
|
161
183
|
}], ctorParameters: () => [] });
|
|
162
184
|
|
|
185
|
+
// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
186
|
+
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
187
|
+
/**
|
|
188
|
+
* Hint text displayed below the radio.
|
|
189
|
+
*/
|
|
190
|
+
class RadioHintDirective extends CoreRadioItemHintDirective {
|
|
191
|
+
qdsRadioContext = useQdsRadioContext();
|
|
192
|
+
constructor() {
|
|
193
|
+
super();
|
|
194
|
+
this.trackBindings.extendWith(computed(() => this.qdsRadioContext().getItemHintBindings()));
|
|
195
|
+
}
|
|
196
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RadioHintDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
197
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.16", type: RadioHintDirective, isStandalone: false, selector: "[q-radio-hint]", usesInheritance: true, ngImport: i0 });
|
|
198
|
+
}
|
|
199
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RadioHintDirective, decorators: [{
|
|
200
|
+
type: Directive,
|
|
201
|
+
args: [{
|
|
202
|
+
selector: "[q-radio-hint]",
|
|
203
|
+
standalone: false,
|
|
204
|
+
}]
|
|
205
|
+
}], ctorParameters: () => [] });
|
|
206
|
+
|
|
163
207
|
// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
164
208
|
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
165
209
|
class RadioLabelDirective extends CoreRadioItemLabelDirective {
|
|
@@ -217,13 +261,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
217
261
|
// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
218
262
|
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
219
263
|
class RadioComponent extends RadioRootDirective {
|
|
264
|
+
/**
|
|
265
|
+
* Optional hint text displayed below the radio. Hints are hidden when the
|
|
266
|
+
* radio is invalid.
|
|
267
|
+
*
|
|
268
|
+
* @remarks
|
|
269
|
+
* To customize the element, provide it using the directive instead:
|
|
270
|
+
*
|
|
271
|
+
* ```angular-html
|
|
272
|
+
* <label q-radio>
|
|
273
|
+
* <div q-radio-hint>...</div>
|
|
274
|
+
* </label>
|
|
275
|
+
* ```
|
|
276
|
+
*/
|
|
277
|
+
hint = input(...(ngDevMode ? [undefined, { debugName: "hint" }] : []));
|
|
220
278
|
/**
|
|
221
279
|
* Optional label describing the element. Recommended. This element is
|
|
222
280
|
* automatically associated with the component's input element for accessibility.
|
|
281
|
+
*
|
|
282
|
+
* @remarks
|
|
283
|
+
* To customize the element, provide it using the directive instead:
|
|
284
|
+
*
|
|
285
|
+
* ```angular-html
|
|
286
|
+
* <label q-radio>
|
|
287
|
+
* <div q-radio-label>...</div>
|
|
288
|
+
* </label>
|
|
289
|
+
* ```
|
|
223
290
|
*/
|
|
224
291
|
label = input(...(ngDevMode ? [undefined, { debugName: "label" }] : []));
|
|
225
292
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RadioComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
226
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.16", type: RadioComponent, isStandalone: false, selector: "[q-radio]", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null } }, providers: [provideRadioItemContext(), provideQdsRadioContext()], usesInheritance: true, ngImport: i0, template: `
|
|
293
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.16", type: RadioComponent, isStandalone: false, selector: "[q-radio]", inputs: { hint: { classPropertyName: "hint", publicName: "hint", isSignal: true, isRequired: false, transformFunction: null }, label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null } }, providers: [provideRadioItemContext(), provideQdsRadioContext()], usesInheritance: true, ngImport: i0, template: `
|
|
227
294
|
<ng-content select="[q-radio-hidden-input]">
|
|
228
295
|
<input q-radio-hidden-input />
|
|
229
296
|
</ng-content>
|
|
@@ -237,7 +304,14 @@ class RadioComponent extends RadioRootDirective {
|
|
|
237
304
|
</span>
|
|
238
305
|
}
|
|
239
306
|
</ng-content>
|
|
240
|
-
|
|
307
|
+
<ng-content select="[q-radio-hint]">
|
|
308
|
+
@if (hint()) {
|
|
309
|
+
<div q-radio-hint>
|
|
310
|
+
{{ hint() }}
|
|
311
|
+
</div>
|
|
312
|
+
}
|
|
313
|
+
</ng-content>
|
|
314
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: RadioControlDirective, selector: "[q-radio-control]" }, { kind: "directive", type: RadioHiddenInputDirective, selector: "input[q-radio-hidden-input]" }, { kind: "directive", type: RadioHintDirective, selector: "[q-radio-hint]" }, { kind: "directive", type: RadioLabelDirective, selector: "[q-radio-label]" }] });
|
|
241
315
|
}
|
|
242
316
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RadioComponent, decorators: [{
|
|
243
317
|
type: Component,
|
|
@@ -259,30 +333,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
259
333
|
</span>
|
|
260
334
|
}
|
|
261
335
|
</ng-content>
|
|
336
|
+
<ng-content select="[q-radio-hint]">
|
|
337
|
+
@if (hint()) {
|
|
338
|
+
<div q-radio-hint>
|
|
339
|
+
{{ hint() }}
|
|
340
|
+
</div>
|
|
341
|
+
}
|
|
342
|
+
</ng-content>
|
|
262
343
|
`,
|
|
263
344
|
}]
|
|
264
|
-
}], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }] } });
|
|
345
|
+
}], propDecorators: { hint: [{ type: i0.Input, args: [{ isSignal: true, alias: "hint", required: false }] }], label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }] } });
|
|
265
346
|
|
|
266
347
|
// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
|
|
267
348
|
// SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
268
349
|
class RadioModule {
|
|
269
350
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RadioModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
270
351
|
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.16", ngImport: i0, type: RadioModule, declarations: [RadioComponent,
|
|
271
|
-
|
|
352
|
+
RadioControlDirective,
|
|
272
353
|
RadioGroupDirective,
|
|
273
|
-
|
|
354
|
+
RadioGroupErrorTextComponent,
|
|
355
|
+
RadioGroupHintDirective,
|
|
274
356
|
RadioGroupItemsDirective,
|
|
357
|
+
RadioGroupLabelDirective,
|
|
275
358
|
RadioHiddenInputDirective,
|
|
359
|
+
RadioHintDirective,
|
|
276
360
|
RadioLabelDirective,
|
|
277
|
-
RadioControlDirective,
|
|
278
361
|
RadioRootDirective], imports: [QBindDirective, IconDirective], exports: [RadioComponent,
|
|
279
|
-
|
|
362
|
+
RadioControlDirective,
|
|
280
363
|
RadioGroupDirective,
|
|
281
|
-
|
|
364
|
+
RadioGroupErrorTextComponent,
|
|
365
|
+
RadioGroupHintDirective,
|
|
282
366
|
RadioGroupItemsDirective,
|
|
367
|
+
RadioGroupLabelDirective,
|
|
283
368
|
RadioHiddenInputDirective,
|
|
369
|
+
RadioHintDirective,
|
|
284
370
|
RadioLabelDirective,
|
|
285
|
-
RadioControlDirective,
|
|
286
371
|
RadioRootDirective] });
|
|
287
372
|
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: RadioModule });
|
|
288
373
|
}
|
|
@@ -291,24 +376,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
291
376
|
args: [{
|
|
292
377
|
declarations: [
|
|
293
378
|
RadioComponent,
|
|
294
|
-
|
|
379
|
+
RadioControlDirective,
|
|
295
380
|
RadioGroupDirective,
|
|
296
|
-
|
|
381
|
+
RadioGroupErrorTextComponent,
|
|
382
|
+
RadioGroupHintDirective,
|
|
297
383
|
RadioGroupItemsDirective,
|
|
384
|
+
RadioGroupLabelDirective,
|
|
298
385
|
RadioHiddenInputDirective,
|
|
386
|
+
RadioHintDirective,
|
|
299
387
|
RadioLabelDirective,
|
|
300
|
-
RadioControlDirective,
|
|
301
388
|
RadioRootDirective,
|
|
302
389
|
],
|
|
303
390
|
exports: [
|
|
304
391
|
RadioComponent,
|
|
305
|
-
|
|
392
|
+
RadioControlDirective,
|
|
306
393
|
RadioGroupDirective,
|
|
307
|
-
|
|
394
|
+
RadioGroupErrorTextComponent,
|
|
395
|
+
RadioGroupHintDirective,
|
|
308
396
|
RadioGroupItemsDirective,
|
|
397
|
+
RadioGroupLabelDirective,
|
|
309
398
|
RadioHiddenInputDirective,
|
|
399
|
+
RadioHintDirective,
|
|
310
400
|
RadioLabelDirective,
|
|
311
|
-
RadioControlDirective,
|
|
312
401
|
RadioRootDirective,
|
|
313
402
|
],
|
|
314
403
|
imports: [QBindDirective, IconDirective],
|
|
@@ -319,5 +408,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
319
408
|
* Generated bundle index. Do not edit.
|
|
320
409
|
*/
|
|
321
410
|
|
|
322
|
-
export { QDS_RADIO_CONTEXT, QdsRadioContextService, RadioComponent, RadioControlDirective, RadioGroupDirective, RadioGroupErrorTextComponent, RadioGroupItemsDirective, RadioGroupLabelDirective, RadioHiddenInputDirective, RadioLabelDirective, RadioModule, RadioRootDirective, provideQdsRadioContext, useQdsRadioContext };
|
|
411
|
+
export { QDS_RADIO_CONTEXT, QdsRadioContextService, RadioComponent, RadioControlDirective, RadioGroupDirective, RadioGroupErrorTextComponent, RadioGroupHintDirective, RadioGroupItemsDirective, RadioGroupLabelDirective, RadioHiddenInputDirective, RadioHintDirective, RadioLabelDirective, RadioModule, RadioRootDirective, provideQdsRadioContext, useQdsRadioContext };
|
|
323
412
|
//# sourceMappingURL=qualcomm-ui-angular-radio.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"qualcomm-ui-angular-radio.mjs","sources":["../../src/radio/qds-radio-context.service.ts","../../src/radio/radio-control.directive.ts","../../src/radio/radio-group/radio-group-error-text.component.ts","../../src/radio/radio-group/radio-group-items.directive.ts","../../src/radio/radio-group/radio-group-label.directive.ts","../../src/radio/radio-group/radio-group-root.directive.ts","../../src/radio/radio-hidden-input.directive.ts","../../src/radio/radio-label.directive.ts","../../src/radio/radio-root.directive.ts","../../src/radio/radio.component.ts","../../src/radio/radio.module.ts","../../src/radio/qualcomm-ui-angular-radio.ts"],"sourcesContent":["// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {Injectable} from \"@angular/core\"\n\nimport {\n type ApiContext,\n BaseApiContextService,\n createApiContext,\n} from \"@qualcomm-ui/angular-core/machine\"\nimport type {QdsRadioApi} from \"@qualcomm-ui/qds-core/radio\"\n\n@Injectable()\nexport class QdsRadioContextService extends BaseApiContextService<QdsRadioApi> {}\n\nexport const [\n QDS_RADIO_CONTEXT,\n useQdsRadioContext,\n provideQdsRadioContext,\n]: ApiContext<QdsRadioApi> = createApiContext<QdsRadioApi>(\n \"QdsRadioContext\",\n QdsRadioContextService,\n)\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive} from \"@angular/core\"\n\nimport {CoreRadioItemControlDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"./qds-radio-context.service\"\n\n@Directive({\n selector: \"[q-radio-control]\",\n standalone: false,\n})\nexport class RadioControlDirective extends CoreRadioItemControlDirective {\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getItemControlBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {Component, computed, input} from \"@angular/core\"\nimport {CircleAlert} from \"lucide-angular\"\n\nimport type {LucideIconOrString} from \"@qualcomm-ui/angular-core/lucide\"\nimport {CoreRadioGroupErrorTextDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"../qds-radio-context.service\"\n\n@Component({\n selector: \"[q-radio-group-error-text]\",\n standalone: false,\n template: `\n <svg [qIcon]=\"icon()!\" />\n <ng-content />\n `,\n})\nexport class RadioGroupErrorTextComponent extends CoreRadioGroupErrorTextDirective {\n /**\n * Error indicator icon.\n *\n * @default CircleAlert\n */\n readonly icon = input<LucideIconOrString>(CircleAlert)\n\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getErrorTextBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive} from \"@angular/core\"\n\nimport {CoreRadioGroupItemsDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"../qds-radio-context.service\"\n\n@Directive({\n selector: \"[q-radio-group-items]\",\n standalone: false,\n})\nexport class RadioGroupItemsDirective extends CoreRadioGroupItemsDirective {\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getGroupItemsBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive} from \"@angular/core\"\n\nimport {CoreRadioGroupLabelDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"../qds-radio-context.service\"\n\n@Directive({\n selector: \"[q-radio-group-label]\",\n standalone: false,\n})\nexport class RadioGroupLabelDirective extends CoreRadioGroupLabelDirective {\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getGroupLabelBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {\n booleanAttribute,\n computed,\n Directive,\n inject,\n input,\n} from \"@angular/core\"\n\nimport {normalizeProps} from \"@qualcomm-ui/angular-core/machine\"\nimport {\n CoreRadioGroupDirective,\n provideRadioContext,\n} from \"@qualcomm-ui/angular-core/radio\"\nimport type {SignalifyInput} from \"@qualcomm-ui/angular-core/signals\"\nimport {\n createQdsRadioApi,\n type QdsRadioApiProps,\n type QdsRadioSize,\n} from \"@qualcomm-ui/qds-core/radio\"\nimport type {Booleanish} from \"@qualcomm-ui/utils/coercion\"\n\nimport {\n provideQdsRadioContext,\n QdsRadioContextService,\n} from \"../qds-radio-context.service\"\n\n@Directive({\n providers: [provideRadioContext(), provideQdsRadioContext()],\n selector: \"[q-radio-group]\",\n standalone: false,\n})\nexport class RadioGroupDirective\n extends CoreRadioGroupDirective\n implements SignalifyInput<QdsRadioApiProps>\n{\n /**\n * Indents the radio items.\n * @default false\n */\n readonly indented = input<boolean | undefined, Booleanish>(undefined, {\n transform: booleanAttribute,\n })\n\n /**\n * The size of the radio and its elements. Governs properties like label font\n * size, control size, and indicator size.\n * @default 'md'\n */\n readonly size = input<QdsRadioSize | undefined>()\n\n readonly qdsRadioService = inject(QdsRadioContextService)\n\n override ngOnInit() {\n super.ngOnInit()\n\n this.qdsRadioService.init(\n computed(() =>\n createQdsRadioApi(\n {indented: this.indented(), size: this.size()},\n normalizeProps,\n ),\n ),\n )\n\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioService.context().getGroupBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive} from \"@angular/core\"\n\nimport {CoreRadioItemHiddenInputDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"./qds-radio-context.service\"\n\n@Directive({\n selector: \"input[q-radio-hidden-input]\",\n standalone: false,\n})\nexport class RadioHiddenInputDirective extends CoreRadioItemHiddenInputDirective {\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getItemHiddenInputBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive} from \"@angular/core\"\n\nimport {CoreRadioItemLabelDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"./qds-radio-context.service\"\n\n@Directive({\n selector: \"[q-radio-label]\",\n standalone: false,\n})\nexport class RadioLabelDirective extends CoreRadioItemLabelDirective {\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getItemLabelBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, inject, input} from \"@angular/core\"\n\nimport {normalizeProps} from \"@qualcomm-ui/angular-core/machine\"\nimport {\n CoreRadioRootDirective,\n provideRadioItemContext,\n} from \"@qualcomm-ui/angular-core/radio\"\nimport type {SignalifyInput} from \"@qualcomm-ui/angular-core/signals\"\nimport {\n createQdsRadioApi,\n type QdsRadioApiProps,\n type QdsRadioSize,\n} from \"@qualcomm-ui/qds-core/radio\"\n\nimport {\n provideQdsRadioContext,\n QdsRadioContextService,\n useQdsRadioContext,\n} from \"./qds-radio-context.service\"\n\n@Directive({\n providers: [provideRadioItemContext(), provideQdsRadioContext()],\n selector: \"[q-radio-root]\",\n standalone: false,\n})\nexport class RadioRootDirective\n extends CoreRadioRootDirective\n implements SignalifyInput<QdsRadioApiProps>\n{\n /**\n * @internal\n */\n readonly indented = input<boolean | undefined>()\n\n /**\n * The size of the radio and its elements. Governs properties like label font\n * size, control size, and indicator size.\n * @default 'md'\n */\n readonly size = input<QdsRadioSize | undefined>()\n\n readonly parentQdsRadioContext = useQdsRadioContext({\n optional: true,\n skipSelf: true,\n })\n readonly qdsRadioService = inject(QdsRadioContextService, {self: true})\n\n override ngOnInit() {\n super.ngOnInit()\n\n this.qdsRadioService.init(\n computed(() =>\n createQdsRadioApi(\n {size: this.size() || this.parentQdsRadioContext?.()?.size},\n normalizeProps,\n ),\n ),\n )\n\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioService.context().getItemBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {Component, input} from \"@angular/core\"\n\nimport {provideRadioItemContext} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {provideQdsRadioContext} from \"./qds-radio-context.service\"\nimport {RadioRootDirective} from \"./radio-root.directive\"\n\n@Component({\n providers: [provideRadioItemContext(), provideQdsRadioContext()],\n selector: \"[q-radio]\",\n standalone: false,\n template: `\n <ng-content select=\"[q-radio-hidden-input]\">\n <input q-radio-hidden-input />\n </ng-content>\n <ng-content select=\"[q-radio-control]\">\n <div q-radio-control></div>\n </ng-content>\n <ng-content select=\"[q-radio-label]\">\n @if (label()) {\n <span q-radio-label>\n {{ label() }}\n </span>\n }\n </ng-content>\n `,\n})\nexport class RadioComponent extends RadioRootDirective {\n /**\n * Optional label describing the element. Recommended. This element is\n * automatically associated with the component's input element for accessibility.\n */\n readonly label = input<string | undefined>()\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {NgModule} from \"@angular/core\"\n\nimport {IconDirective} from \"@qualcomm-ui/angular/icon\"\nimport {QBindDirective} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {RadioControlDirective} from \"./radio-control.directive\"\nimport {\n RadioGroupDirective,\n RadioGroupErrorTextComponent,\n RadioGroupItemsDirective,\n RadioGroupLabelDirective,\n} from \"./radio-group\"\nimport {RadioHiddenInputDirective} from \"./radio-hidden-input.directive\"\nimport {RadioLabelDirective} from \"./radio-label.directive\"\nimport {RadioRootDirective} from \"./radio-root.directive\"\nimport {RadioComponent} from \"./radio.component\"\n\n@NgModule({\n declarations: [\n RadioComponent,\n RadioGroupErrorTextComponent,\n RadioGroupDirective,\n RadioGroupLabelDirective,\n RadioGroupItemsDirective,\n RadioHiddenInputDirective,\n RadioLabelDirective,\n RadioControlDirective,\n RadioRootDirective,\n ],\n exports: [\n RadioComponent,\n RadioGroupErrorTextComponent,\n RadioGroupDirective,\n RadioGroupLabelDirective,\n RadioGroupItemsDirective,\n RadioHiddenInputDirective,\n RadioLabelDirective,\n RadioControlDirective,\n RadioRootDirective,\n ],\n imports: [QBindDirective, IconDirective],\n})\nexport class RadioModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1.RadioHiddenInputDirective","i2.RadioLabelDirective","i3.RadioControlDirective"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"qualcomm-ui-angular-radio.mjs","sources":["../../src/radio/qds-radio-context.service.ts","../../src/radio/radio-control.directive.ts","../../src/radio/radio-group/radio-group-error-text.component.ts","../../src/radio/radio-group/radio-group-hint.directive.ts","../../src/radio/radio-group/radio-group-items.directive.ts","../../src/radio/radio-group/radio-group-label.directive.ts","../../src/radio/radio-group/radio-group-root.directive.ts","../../src/radio/radio-hidden-input.directive.ts","../../src/radio/radio-hint.directive.ts","../../src/radio/radio-label.directive.ts","../../src/radio/radio-root.directive.ts","../../src/radio/radio.component.ts","../../src/radio/radio.module.ts","../../src/radio/qualcomm-ui-angular-radio.ts"],"sourcesContent":["// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {Injectable} from \"@angular/core\"\n\nimport {\n type ApiContext,\n BaseApiContextService,\n createApiContext,\n} from \"@qualcomm-ui/angular-core/machine\"\nimport type {QdsRadioApi} from \"@qualcomm-ui/qds-core/radio\"\n\n@Injectable()\nexport class QdsRadioContextService extends BaseApiContextService<QdsRadioApi> {}\n\nexport const [\n QDS_RADIO_CONTEXT,\n useQdsRadioContext,\n provideQdsRadioContext,\n]: ApiContext<QdsRadioApi> = createApiContext<QdsRadioApi>(\n \"QdsRadioContext\",\n QdsRadioContextService,\n)\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive} from \"@angular/core\"\n\nimport {CoreRadioItemControlDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"./qds-radio-context.service\"\n\n@Directive({\n selector: \"[q-radio-control]\",\n standalone: false,\n})\nexport class RadioControlDirective extends CoreRadioItemControlDirective {\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getItemControlBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {Component, computed, input} from \"@angular/core\"\nimport {CircleAlert} from \"lucide-angular\"\n\nimport type {LucideIconOrString} from \"@qualcomm-ui/angular-core/lucide\"\nimport {CoreRadioGroupErrorTextDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"../qds-radio-context.service\"\n\n@Component({\n selector: \"[q-radio-group-error-text]\",\n standalone: false,\n template: `\n <svg [qIcon]=\"icon()!\" />\n <ng-content />\n `,\n})\nexport class RadioGroupErrorTextComponent extends CoreRadioGroupErrorTextDirective {\n /**\n * Error indicator icon.\n *\n * @default CircleAlert\n */\n readonly icon = input<LucideIconOrString>(CircleAlert)\n\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getGroupErrorTextBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive} from \"@angular/core\"\n\nimport {CoreRadioGroupHintDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"../qds-radio-context.service\"\n\n/**\n * Hint text displayed below the radio group.\n */\n@Directive({\n selector: \"[q-radio-group-hint]\",\n standalone: false,\n})\nexport class RadioGroupHintDirective extends CoreRadioGroupHintDirective {\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getGroupHintBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive} from \"@angular/core\"\n\nimport {CoreRadioGroupItemsDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"../qds-radio-context.service\"\n\n@Directive({\n selector: \"[q-radio-group-items]\",\n standalone: false,\n})\nexport class RadioGroupItemsDirective extends CoreRadioGroupItemsDirective {\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getGroupItemsBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive} from \"@angular/core\"\n\nimport {CoreRadioGroupLabelDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"../qds-radio-context.service\"\n\n@Directive({\n selector: \"[q-radio-group-label]\",\n standalone: false,\n})\nexport class RadioGroupLabelDirective extends CoreRadioGroupLabelDirective {\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getGroupLabelBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {\n booleanAttribute,\n computed,\n Directive,\n inject,\n input,\n} from \"@angular/core\"\n\nimport {normalizeProps} from \"@qualcomm-ui/angular-core/machine\"\nimport {\n CoreRadioGroupDirective,\n provideRadioContext,\n} from \"@qualcomm-ui/angular-core/radio\"\nimport type {SignalifyInput} from \"@qualcomm-ui/angular-core/signals\"\nimport {\n createQdsRadioApi,\n type QdsRadioApiProps,\n type QdsRadioSize,\n} from \"@qualcomm-ui/qds-core/radio\"\nimport type {Booleanish} from \"@qualcomm-ui/utils/coercion\"\n\nimport {\n provideQdsRadioContext,\n QdsRadioContextService,\n} from \"../qds-radio-context.service\"\n\n@Directive({\n providers: [provideRadioContext(), provideQdsRadioContext()],\n selector: \"[q-radio-group]\",\n standalone: false,\n})\nexport class RadioGroupDirective\n extends CoreRadioGroupDirective\n implements SignalifyInput<QdsRadioApiProps>\n{\n /**\n * Indents the radio items.\n * @default false\n */\n readonly indented = input<boolean | undefined, Booleanish>(undefined, {\n transform: booleanAttribute,\n })\n\n /**\n * The size of the radio and its elements. Governs properties like label font\n * size, control size, and indicator size.\n * @default 'md'\n */\n readonly size = input<QdsRadioSize | undefined>()\n\n readonly qdsRadioService = inject(QdsRadioContextService)\n\n override ngOnInit() {\n super.ngOnInit()\n\n this.qdsRadioService.init(\n computed(() =>\n createQdsRadioApi(\n {indented: this.indented(), size: this.size()},\n normalizeProps,\n ),\n ),\n )\n\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioService.context().getGroupBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive} from \"@angular/core\"\n\nimport {CoreRadioItemHiddenInputDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"./qds-radio-context.service\"\n\n@Directive({\n selector: \"input[q-radio-hidden-input]\",\n standalone: false,\n})\nexport class RadioHiddenInputDirective extends CoreRadioItemHiddenInputDirective {\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getItemHiddenInputBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive} from \"@angular/core\"\n\nimport {CoreRadioItemHintDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"./qds-radio-context.service\"\n\n/**\n * Hint text displayed below the radio.\n */\n@Directive({\n selector: \"[q-radio-hint]\",\n standalone: false,\n})\nexport class RadioHintDirective extends CoreRadioItemHintDirective {\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getItemHintBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive} from \"@angular/core\"\n\nimport {CoreRadioItemLabelDirective} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {useQdsRadioContext} from \"./qds-radio-context.service\"\n\n@Directive({\n selector: \"[q-radio-label]\",\n standalone: false,\n})\nexport class RadioLabelDirective extends CoreRadioItemLabelDirective {\n protected readonly qdsRadioContext = useQdsRadioContext()\n\n constructor() {\n super()\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioContext().getItemLabelBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {computed, Directive, inject, input} from \"@angular/core\"\n\nimport {normalizeProps} from \"@qualcomm-ui/angular-core/machine\"\nimport {\n CoreRadioRootDirective,\n provideRadioItemContext,\n} from \"@qualcomm-ui/angular-core/radio\"\nimport type {SignalifyInput} from \"@qualcomm-ui/angular-core/signals\"\nimport {\n createQdsRadioApi,\n type QdsRadioApiProps,\n type QdsRadioSize,\n} from \"@qualcomm-ui/qds-core/radio\"\n\nimport {\n provideQdsRadioContext,\n QdsRadioContextService,\n useQdsRadioContext,\n} from \"./qds-radio-context.service\"\n\n@Directive({\n providers: [provideRadioItemContext(), provideQdsRadioContext()],\n selector: \"[q-radio-root]\",\n standalone: false,\n})\nexport class RadioRootDirective\n extends CoreRadioRootDirective\n implements SignalifyInput<QdsRadioApiProps>\n{\n /**\n * @internal\n */\n readonly indented = input<boolean | undefined>()\n\n /**\n * The size of the radio and its elements. Governs properties like label font\n * size, control size, and indicator size.\n * @default 'md'\n */\n readonly size = input<QdsRadioSize | undefined>()\n\n readonly parentQdsRadioContext = useQdsRadioContext({\n optional: true,\n skipSelf: true,\n })\n readonly qdsRadioService = inject(QdsRadioContextService, {self: true})\n\n override ngOnInit() {\n super.ngOnInit()\n\n this.qdsRadioService.init(\n computed(() =>\n createQdsRadioApi(\n {size: this.size() || this.parentQdsRadioContext?.()?.size},\n normalizeProps,\n ),\n ),\n )\n\n this.trackBindings.extendWith(\n computed(() => this.qdsRadioService.context().getItemBindings()),\n )\n }\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {Component, input} from \"@angular/core\"\n\nimport {provideRadioItemContext} from \"@qualcomm-ui/angular-core/radio\"\n\nimport {provideQdsRadioContext} from \"./qds-radio-context.service\"\nimport {RadioRootDirective} from \"./radio-root.directive\"\n\n@Component({\n providers: [provideRadioItemContext(), provideQdsRadioContext()],\n selector: \"[q-radio]\",\n standalone: false,\n template: `\n <ng-content select=\"[q-radio-hidden-input]\">\n <input q-radio-hidden-input />\n </ng-content>\n <ng-content select=\"[q-radio-control]\">\n <div q-radio-control></div>\n </ng-content>\n <ng-content select=\"[q-radio-label]\">\n @if (label()) {\n <span q-radio-label>\n {{ label() }}\n </span>\n }\n </ng-content>\n <ng-content select=\"[q-radio-hint]\">\n @if (hint()) {\n <div q-radio-hint>\n {{ hint() }}\n </div>\n }\n </ng-content>\n `,\n})\nexport class RadioComponent extends RadioRootDirective {\n /**\n * Optional hint text displayed below the radio. Hints are hidden when the\n * radio is invalid.\n *\n * @remarks\n * To customize the element, provide it using the directive instead:\n *\n * ```angular-html\n * <label q-radio>\n * <div q-radio-hint>...</div>\n * </label>\n * ```\n */\n readonly hint = input<string>()\n\n /**\n * Optional label describing the element. Recommended. This element is\n * automatically associated with the component's input element for accessibility.\n *\n * @remarks\n * To customize the element, provide it using the directive instead:\n *\n * ```angular-html\n * <label q-radio>\n * <div q-radio-label>...</div>\n * </label>\n * ```\n */\n readonly label = input<string | undefined>()\n}\n","// Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.\n// SPDX-License-Identifier: BSD-3-Clause-Clear\n\nimport {NgModule} from \"@angular/core\"\n\nimport {IconDirective} from \"@qualcomm-ui/angular/icon\"\nimport {QBindDirective} from \"@qualcomm-ui/angular-core/machine\"\n\nimport {RadioControlDirective} from \"./radio-control.directive\"\nimport {\n RadioGroupDirective,\n RadioGroupErrorTextComponent,\n RadioGroupHintDirective,\n RadioGroupItemsDirective,\n RadioGroupLabelDirective,\n} from \"./radio-group\"\nimport {RadioHiddenInputDirective} from \"./radio-hidden-input.directive\"\nimport {RadioHintDirective} from \"./radio-hint.directive\"\nimport {RadioLabelDirective} from \"./radio-label.directive\"\nimport {RadioRootDirective} from \"./radio-root.directive\"\nimport {RadioComponent} from \"./radio.component\"\n\n@NgModule({\n declarations: [\n RadioComponent,\n RadioControlDirective,\n RadioGroupDirective,\n RadioGroupErrorTextComponent,\n RadioGroupHintDirective,\n RadioGroupItemsDirective,\n RadioGroupLabelDirective,\n RadioHiddenInputDirective,\n RadioHintDirective,\n RadioLabelDirective,\n RadioRootDirective,\n ],\n exports: [\n RadioComponent,\n RadioControlDirective,\n RadioGroupDirective,\n RadioGroupErrorTextComponent,\n RadioGroupHintDirective,\n RadioGroupItemsDirective,\n RadioGroupLabelDirective,\n RadioHiddenInputDirective,\n RadioHintDirective,\n RadioLabelDirective,\n RadioRootDirective,\n ],\n imports: [QBindDirective, IconDirective],\n})\nexport class RadioModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1.RadioControlDirective","i2.RadioHiddenInputDirective","i3.RadioHintDirective","i4.RadioLabelDirective"],"mappings":"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"}
|