@tedi-design-system/angular 6.3.0-rc.1 → 6.3.0-rc.11
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/README.md +12 -0
- package/community/components/form/checkbox/checkbox/checkbox.component.d.ts +3 -0
- package/community/components/form/checkbox/checkbox/checkbox.component.d.ts.map +1 -1
- package/community/components/form/checkbox/checkbox-card-group/checkbox-card-group.component.d.ts +3 -0
- package/community/components/form/checkbox/checkbox-card-group/checkbox-card-group.component.d.ts.map +1 -1
- package/community/components/form/checkbox/checkbox-group/checkbox-group.component.d.ts +3 -0
- package/community/components/form/checkbox/checkbox-group/checkbox-group.component.d.ts.map +1 -1
- package/community/components/form/radio/radio/radio.component.d.ts +3 -0
- package/community/components/form/radio/radio/radio.component.d.ts.map +1 -1
- package/community/components/form/radio/radio-card-group/radio-card-group.component.d.ts +3 -0
- package/community/components/form/radio/radio-card-group/radio-card-group.component.d.ts.map +1 -1
- package/community/components/form/radio/radio-group/radio-group.component.d.ts +3 -0
- package/community/components/form/radio/radio-group/radio-group.component.d.ts.map +1 -1
- package/community/components/form/select/select.component.d.ts +3 -0
- package/community/components/form/select/select.component.d.ts.map +1 -1
- package/fesm2022/tedi-design-system-angular-community.mjs +39 -18
- package/fesm2022/tedi-design-system-angular-community.mjs.map +1 -1
- package/fesm2022/tedi-design-system-angular-tedi.mjs +1619 -229
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/index.css +1 -1
- package/package.json +2 -2
- package/tedi/components/base/icon/icon.component.d.ts +1 -1
- package/tedi/components/base/icon/icon.component.d.ts.map +1 -1
- package/tedi/components/form/checkbox-card/checkbox-card.component.d.ts +18 -0
- package/tedi/components/form/checkbox-card/checkbox-card.component.d.ts.map +1 -0
- package/tedi/components/form/checkbox-card-group/checkbox-card-group.component.d.ts +6 -0
- package/tedi/components/form/checkbox-card-group/checkbox-card-group.component.d.ts.map +1 -0
- package/tedi/components/form/checkbox-group/checkbox-group.component.d.ts +16 -0
- package/tedi/components/form/checkbox-group/checkbox-group.component.d.ts.map +1 -0
- package/tedi/components/form/form-field/form-field-control.d.ts +3 -4
- package/tedi/components/form/form-field/form-field-control.d.ts.map +1 -1
- package/tedi/components/form/form-field/form-field.component.d.ts +8 -2
- package/tedi/components/form/form-field/form-field.component.d.ts.map +1 -1
- package/tedi/components/form/index.d.ts +9 -0
- package/tedi/components/form/index.d.ts.map +1 -1
- package/tedi/components/form/radio/radio.component.d.ts +17 -0
- package/tedi/components/form/radio/radio.component.d.ts.map +1 -0
- package/tedi/components/form/radio-card/radio-card.component.d.ts +23 -0
- package/tedi/components/form/radio-card/radio-card.component.d.ts.map +1 -0
- package/tedi/components/form/radio-card-group/radio-card-group.component.d.ts +6 -0
- package/tedi/components/form/radio-card-group/radio-card-group.component.d.ts.map +1 -0
- package/tedi/components/form/radio-group/radio-group.component.d.ts +16 -0
- package/tedi/components/form/radio-group/radio-group.component.d.ts.map +1 -0
- package/tedi/components/form/select/index.d.ts +3 -0
- package/tedi/components/form/select/index.d.ts.map +1 -0
- package/tedi/components/form/select/select-templates.directive.d.ts +69 -0
- package/tedi/components/form/select/select-templates.directive.d.ts.map +1 -0
- package/tedi/components/form/select/select.component.d.ts +247 -0
- package/tedi/components/form/select/select.component.d.ts.map +1 -0
- package/tedi/components/form/text-field/text-field.component.d.ts +5 -5
- package/tedi/components/form/text-field/text-field.component.d.ts.map +1 -1
- package/tedi/components/helpers/index.d.ts +1 -0
- package/tedi/components/helpers/index.d.ts.map +1 -1
- package/tedi/components/helpers/scroll-fade/index.d.ts +3 -0
- package/tedi/components/helpers/scroll-fade/index.d.ts.map +1 -0
- package/tedi/components/helpers/scroll-fade/scroll-fade.component.d.ts +27 -0
- package/tedi/components/helpers/scroll-fade/scroll-fade.component.d.ts.map +1 -0
- package/tedi/components/overlay/dropdown/dropdown-content/dropdown-content.component.d.ts +2 -2
- package/tedi/components/overlay/dropdown/dropdown-content/dropdown-content.component.d.ts.map +1 -1
- package/tedi/components/overlay/dropdown/dropdown-item/dropdown-item.component.d.ts +7 -5
- package/tedi/components/overlay/dropdown/dropdown-item/dropdown-item.component.d.ts.map +1 -1
- package/tedi/components/overlay/dropdown/dropdown-item-value/dropdown-item-value-label.component.d.ts +6 -0
- package/tedi/components/overlay/dropdown/dropdown-item-value/dropdown-item-value-label.component.d.ts.map +1 -0
- package/tedi/components/overlay/dropdown/dropdown-item-value/dropdown-item-value-meta.component.d.ts +6 -0
- package/tedi/components/overlay/dropdown/dropdown-item-value/dropdown-item-value-meta.component.d.ts.map +1 -0
- package/tedi/components/overlay/dropdown/dropdown-item-value/dropdown-item-value.component.d.ts +36 -0
- package/tedi/components/overlay/dropdown/dropdown-item-value/dropdown-item-value.component.d.ts.map +1 -0
- package/tedi/components/overlay/dropdown/dropdown-item-value/index.d.ts +4 -0
- package/tedi/components/overlay/dropdown/dropdown-item-value/index.d.ts.map +1 -0
- package/tedi/components/overlay/dropdown/dropdown.component.d.ts.map +1 -1
- package/tedi/components/overlay/dropdown/dropdown.tokens.d.ts +30 -0
- package/tedi/components/overlay/dropdown/dropdown.tokens.d.ts.map +1 -0
- package/tedi/components/overlay/dropdown/index.d.ts +2 -0
- package/tedi/components/overlay/dropdown/index.d.ts.map +1 -1
- package/tedi/components/overlay/modal/index.d.ts +3 -0
- package/tedi/components/overlay/modal/index.d.ts.map +1 -1
- package/tedi/components/overlay/modal/modal-content/modal-content.component.d.ts.map +1 -1
- package/tedi/components/overlay/modal/modal-footer/modal-footer.component.d.ts.map +1 -1
- package/tedi/components/overlay/modal/modal-header/modal-header.component.d.ts +4 -1
- package/tedi/components/overlay/modal/modal-header/modal-header.component.d.ts.map +1 -1
- package/tedi/components/overlay/modal/modal-ref.d.ts +21 -0
- package/tedi/components/overlay/modal/modal-ref.d.ts.map +1 -0
- package/tedi/components/overlay/modal/modal.component.d.ts +25 -5
- package/tedi/components/overlay/modal/modal.component.d.ts.map +1 -1
- package/tedi/components/overlay/modal/modal.service.d.ts +35 -0
- package/tedi/components/overlay/modal/modal.service.d.ts.map +1 -0
- package/tedi/components/overlay/modal/modal.types.d.ts +36 -0
- package/tedi/components/overlay/modal/modal.types.d.ts.map +1 -0
- package/tedi/services/translation/translations.d.ts +7 -0
- package/tedi/services/translation/translations.d.ts.map +1 -1
- package/fonts/SpaceGrotesk-Light.woff +0 -0
- package/fonts/SpaceGrotesk-Light.woff2 +0 -0
package/README.md
CHANGED
|
@@ -60,6 +60,18 @@ When an Angular major reaches end-of-life (e.g. v19):
|
|
|
60
60
|
Check the [wiki](https://github.com/TEDI-Design-System/general) for component guidelines and coding standards.
|
|
61
61
|
Report issues or contribute via [GitHub Issues](https://github.com/TEDI-Design-System/angular/issues).
|
|
62
62
|
|
|
63
|
+
## AI Skills
|
|
64
|
+
|
|
65
|
+
This project ships with AI agent skills to help both contributors and consumers work with TEDI components.
|
|
66
|
+
|
|
67
|
+
### For consumers — `tedi-angular`
|
|
68
|
+
|
|
69
|
+
Helps you build UIs with `@tedi-design-system/angular`: component usage, forms integration, theming, and translation setup.
|
|
70
|
+
|
|
71
|
+
### For contributors — `contributing`
|
|
72
|
+
|
|
73
|
+
Guides development inside this repo: creating new components, running tests/lint, WCAG audits, refactoring, and Storybook stories. Available as `/contributing` when working in this repository.
|
|
74
|
+
|
|
63
75
|
---
|
|
64
76
|
|
|
65
77
|
## Visual Testing
|
|
@@ -3,6 +3,9 @@ import { ComponentInputs, FeedbackTextComponent } from "@tedi-design-system/angu
|
|
|
3
3
|
import { ControlValueAccessor } from "@angular/forms";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export type CheckboxSize = "default" | "large";
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated Use Checkbox from TEDI-ready instead. This component will be removed from future versions.
|
|
8
|
+
*/
|
|
6
9
|
export declare class CheckboxComponent implements ControlValueAccessor, OnInit {
|
|
7
10
|
inputId: import("@angular/core").InputSignal<string>;
|
|
8
11
|
checked: import("@angular/core").ModelSignal<boolean | null>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"checkbox.component.d.ts","sourceRoot":"","sources":["../../../../../../community/components/form/checkbox/checkbox/checkbox.component.ts"],"names":[],"mappings":"AAAA,OAAO,EASL,MAAM,EAGP,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,eAAe,EAEf,qBAAqB,EACtB,MAAM,kCAAkC,CAAC;AAE1C,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;;AAIzE,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,OAAO,CAAC;AAE/C,qBAqBa,iBAAkB,YAAW,oBAAoB,EAAE,MAAM;IAIpE,OAAO,8CAA4B;IAInC,OAAO,sDAA+B;IAItC,aAAa,2DAAoB;IAIjC,KAAK,0DAAmB;IAIxB,QAAQ,2DAAoB;IAI5B,IAAI,gEAAyB;IAI7B,QAAQ,2DAAoB;IAC5B;;OAEG;IACH,YAAY,0FAAmD;IAE/D,OAAO,CAAC,QAAQ,CAA6D;IAC7E,OAAO,CAAC,aAAa,CAAsD;IAC3E,OAAO,CAAC,iBAAiB,CAEtB;IAEH,OAAO,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"checkbox.component.d.ts","sourceRoot":"","sources":["../../../../../../community/components/form/checkbox/checkbox/checkbox.component.ts"],"names":[],"mappings":"AAAA,OAAO,EASL,MAAM,EAGP,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,eAAe,EAEf,qBAAqB,EACtB,MAAM,kCAAkC,CAAC;AAE1C,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;;AAIzE,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,OAAO,CAAC;AAE/C;;GAEG;AACH,qBAqBa,iBAAkB,YAAW,oBAAoB,EAAE,MAAM;IAIpE,OAAO,8CAA4B;IAInC,OAAO,sDAA+B;IAItC,aAAa,2DAAoB;IAIjC,KAAK,0DAAmB;IAIxB,QAAQ,2DAAoB;IAI5B,IAAI,gEAAyB;IAI7B,QAAQ,2DAAoB;IAC5B;;OAEG;IACH,YAAY,0FAAmD;IAE/D,OAAO,CAAC,QAAQ,CAA6D;IAC7E,OAAO,CAAC,aAAa,CAAsD;IAC3E,OAAO,CAAC,iBAAiB,CAEtB;IAEH,OAAO,CAAC,SAAS,CAAqC;IACtD,UAAU,EAAE,MAAM,IAAI,CAAa;IAEnC,cAAc,qDAKX;IAEH,aAAa,iEAQV;IAEH,YAAY,2DAET;IAEH,QAAQ,0CAEL;IAEH,gBAAgB,sDAEb;IAEH,KAAK;IAIL,UAAU,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI,GAAG,IAAI;IAIvC,gBAAgB,CAAC,EAAE,EAAE,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,GAAG,IAAI;IAIlD,iBAAiB,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,IAAI;IAIvC,gBAAgB,CAAC,UAAU,EAAE,OAAO,GAAG,IAAI;IAI3C,aAAa,CAAC,KAAK,EAAE,KAAK;IAQ1B,QAAQ;yCApGG,iBAAiB;2CAAjB,iBAAiB;CAyG7B"}
|
package/community/components/form/checkbox/checkbox-card-group/checkbox-card-group.component.d.ts
CHANGED
|
@@ -2,6 +2,9 @@ import { ControlValueAccessor } from "@angular/forms";
|
|
|
2
2
|
import { CheckboxGroupComponent } from "../checkbox-group/checkbox-group.component";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
import * as i1 from "../../choicegroup/choicegroup.directive";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated Use Checkbox with CheckboxCard label from TEDI-ready instead. This component will be removed from future versions.
|
|
7
|
+
*/
|
|
5
8
|
export declare class CheckboxCardGroupComponent extends CheckboxGroupComponent implements ControlValueAccessor {
|
|
6
9
|
direction: import("@angular/core").InputSignal<"row" | "column">;
|
|
7
10
|
value: import("@angular/core").ModelSignal<string[]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"checkbox-card-group.component.d.ts","sourceRoot":"","sources":["../../../../../../community/components/form/checkbox/checkbox-card-group/checkbox-card-group.component.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AAGzE,OAAO,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;;;AAGpF,qBA6Ba,0BACX,SAAQ,sBACR,YAAW,oBAAoB;IAItB,SAAS,wDAAkC;IAIpD,KAAK,gDAAuB;IAE5B,UAAU,iDAKR;IACF,OAAO,CAAC,gBAAgB,CAA0B;IAElD,OAAO,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"checkbox-card-group.component.d.ts","sourceRoot":"","sources":["../../../../../../community/components/form/checkbox/checkbox-card-group/checkbox-card-group.component.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AAGzE,OAAO,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;;;AAGpF;;GAEG;AACH,qBA6Ba,0BACX,SAAQ,sBACR,YAAW,oBAAoB;IAItB,SAAS,wDAAkC;IAIpD,KAAK,gDAAuB;IAE5B,UAAU,iDAKR;IACF,OAAO,CAAC,gBAAgB,CAA0B;IAElD,OAAO,CAAC,SAAS,CAAsC;IACvD,OAAO,CAAC,UAAU,CAAqC;IAE9C,aAAa,0CAEnB;IAEH,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,IAAI;IAIjC,gBAAgB,CAAC,EAAE,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,IAAI,GAAG,IAAI;IAGnD,iBAAiB,CAAC,EAAE,EAAE,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,GAAG,IAAI;IAGnD,gBAAgB,CAAC,UAAU,EAAE,OAAO,GAAG,IAAI;IAI3C,OAAO,CAAC,qBAAqB;IAQ7B,gBAAgB,CAAC,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM;yCAjDrC,0BAA0B;2CAA1B,0BAA0B;CA2DtC"}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { CheckboxSize } from "../checkbox/checkbox.component";
|
|
2
2
|
import { ComponentInputs, FeedbackTextComponent } from "@tedi-design-system/angular/tedi";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated Use Checkbox from TEDI-ready instead. This component will be removed from future versions.
|
|
6
|
+
*/
|
|
4
7
|
export declare class CheckboxGroupComponent {
|
|
5
8
|
/**
|
|
6
9
|
* Checkbox group label.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"checkbox-group.component.d.ts","sourceRoot":"","sources":["../../../../../../community/components/form/checkbox/checkbox-group/checkbox-group.component.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EACL,eAAe,EAEf,qBAAqB,EACtB,MAAM,kCAAkC,CAAC;;AAG1C,qBAca,sBAAsB;IACjC;;OAEG;IACH,KAAK,0DAAmB;IAIxB,QAAQ,2DAAoB;IAI5B,QAAQ,2DAAoB;IAI5B,IAAI,gEAAyB;IAI7B,SAAS,wDAAqC;IAK9C,OAAO,8CAAoB;IAC3B;;OAEG;IACH,YAAY,0FAAmD;IAE/D,OAAO,qDAKJ;IAEH,aAAa,sDAAmC;yCAtCrC,sBAAsB;2CAAtB,sBAAsB;CAuClC"}
|
|
1
|
+
{"version":3,"file":"checkbox-group.component.d.ts","sourceRoot":"","sources":["../../../../../../community/components/form/checkbox/checkbox-group/checkbox-group.component.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EACL,eAAe,EAEf,qBAAqB,EACtB,MAAM,kCAAkC,CAAC;;AAG1C;;GAEG;AACH,qBAca,sBAAsB;IACjC;;OAEG;IACH,KAAK,0DAAmB;IAIxB,QAAQ,2DAAoB;IAI5B,QAAQ,2DAAoB;IAI5B,IAAI,gEAAyB;IAI7B,SAAS,wDAAqC;IAK9C,OAAO,8CAAoB;IAC3B;;OAEG;IACH,YAAY,0FAAmD;IAE/D,OAAO,qDAKJ;IAEH,aAAa,sDAAmC;yCAtCrC,sBAAsB;2CAAtB,sBAAsB;CAuClC"}
|
|
@@ -2,6 +2,9 @@ import { OnInit } from "@angular/core";
|
|
|
2
2
|
import { ComponentInputs, FeedbackTextComponent } from "@tedi-design-system/angular/tedi";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export type RadioValue = string;
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated Use Radio from TEDI-ready instead. This component will be removed from future versions.
|
|
7
|
+
*/
|
|
5
8
|
export declare class RadioComponent implements OnInit {
|
|
6
9
|
inputId: import("@angular/core").InputSignal<string>;
|
|
7
10
|
checked: import("@angular/core").ModelSignal<boolean | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radio.component.d.ts","sourceRoot":"","sources":["../../../../../../community/components/form/radio/radio/radio.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAQL,MAAM,EAGP,MAAM,eAAe,CAAC;AAEvB,OAAO,EACL,eAAe,EACf,qBAAqB,EACtB,MAAM,kCAAkC,CAAC;;AAG1C,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC,qBAaa,cAAe,YAAW,MAAM;IAI3C,OAAO,8CAA4B;IAInC,OAAO,2DAAoB;IAI3B,KAAK,8CAA4B;IAIjC,QAAQ,2DAAoB;IAI5B,QAAQ,2DAAoB;IAC5B;;OAEG;IACH,YAAY,0FAAmD;IAE/D,OAAO,CAAC,QAAQ,CAA6D;IAC7E,OAAO,CAAC,UAAU,CAAmD;IAErE,aAAa,sDAEV;IAEH,SAAS,qDAEN;IAEH,YAAY,sDAET;IAEH,cAAc,qDAKX;IAEH,KAAK;IAIL,aAAa,CAAC,KAAK,EAAE,KAAK;IAK1B,QAAQ;yCAzDG,cAAc;2CAAd,cAAc;CA8D1B"}
|
|
1
|
+
{"version":3,"file":"radio.component.d.ts","sourceRoot":"","sources":["../../../../../../community/components/form/radio/radio/radio.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAQL,MAAM,EAGP,MAAM,eAAe,CAAC;AAEvB,OAAO,EACL,eAAe,EACf,qBAAqB,EACtB,MAAM,kCAAkC,CAAC;;AAG1C,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC;;GAEG;AACH,qBAaa,cAAe,YAAW,MAAM;IAI3C,OAAO,8CAA4B;IAInC,OAAO,2DAAoB;IAI3B,KAAK,8CAA4B;IAIjC,QAAQ,2DAAoB;IAI5B,QAAQ,2DAAoB;IAC5B;;OAEG;IACH,YAAY,0FAAmD;IAE/D,OAAO,CAAC,QAAQ,CAA6D;IAC7E,OAAO,CAAC,UAAU,CAAmD;IAErE,aAAa,sDAEV;IAEH,SAAS,qDAEN;IAEH,YAAY,sDAET;IAEH,cAAc,qDAKX;IAEH,KAAK;IAIL,aAAa,CAAC,KAAK,EAAE,KAAK;IAK1B,QAAQ;yCAzDG,cAAc;2CAAd,cAAc;CA8D1B"}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { RadioGroupComponent } from "../radio-group/radio-group.component";
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
import * as i1 from "../../choicegroup/choicegroup.directive";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated Use Radio with RadioCard label from TEDI-ready instead. This component will be removed from future versions.
|
|
6
|
+
*/
|
|
4
7
|
export declare class RadioCardGroupComponent extends RadioGroupComponent {
|
|
5
8
|
direction: import("@angular/core").InputSignal<"row" | "column">;
|
|
6
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioCardGroupComponent, never>;
|
package/community/components/form/radio/radio-card-group/radio-card-group.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radio-card-group.component.d.ts","sourceRoot":"","sources":["../../../../../../community/components/form/radio/radio-card-group/radio-card-group.component.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;;;
|
|
1
|
+
{"version":3,"file":"radio-card-group.component.d.ts","sourceRoot":"","sources":["../../../../../../community/components/form/radio/radio-card-group/radio-card-group.component.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;;;AAE3E;;GAEG;AACH,qBA8Ba,uBAAwB,SAAQ,mBAAmB;IAIrD,SAAS,wDAAkC;yCAJzC,uBAAuB;2CAAvB,uBAAuB;CAKnC"}
|
|
@@ -3,6 +3,9 @@ import { RadioValue } from "../radio/radio.component";
|
|
|
3
3
|
import { ComponentInputs, FeedbackTextComponent } from "@tedi-design-system/angular/tedi";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export type RadioGroupSize = "default" | "large";
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated Use Radio from TEDI-ready instead. This component will be removed from future versions.
|
|
8
|
+
*/
|
|
6
9
|
export declare class RadioGroupComponent implements ControlValueAccessor {
|
|
7
10
|
name: import("@angular/core").InputSignal<string>;
|
|
8
11
|
id: import("@angular/core").InputSignal<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radio-group.component.d.ts","sourceRoot":"","sources":["../../../../../../community/components/form/radio/radio-group/radio-group.component.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AACzE,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAE,eAAe,EAAkB,qBAAqB,EAAE,MAAM,kCAAkC,CAAC;;AAE1G,MAAM,MAAM,cAAc,GAAG,SAAS,GAAG,OAAO,CAAC;AAEjD,qBAoBa,mBAAoB,YAAW,oBAAoB;IAI9D,IAAI,8CAA4B;IAIhC,EAAE,8CAA4B;IAC9B;;OAEG;IACH,KAAK,0DAAmB;IAIxB,QAAQ,2DAAoB;IAI5B,QAAQ,2DAAoB;IAI5B,IAAI,sDAAoC;IAIxC,SAAS,wDAAqC;IAK9C,OAAO,8CAAoB;IAC3B;;OAEG;IACH,YAAY,0FAAmD;IAM/D,MAAM,mDAAwB;IAE9B,OAAO,CAAC,MAAM,CAA+B;IAC7C,OAAO,CAAC,gBAAgB,CAA0B;IAElD,aAAa,0CAEV;IACH,UAAU,gDAA4B;IAEtC,OAAO,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"radio-group.component.d.ts","sourceRoot":"","sources":["../../../../../../community/components/form/radio/radio-group/radio-group.component.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AACzE,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAE,eAAe,EAAkB,qBAAqB,EAAE,MAAM,kCAAkC,CAAC;;AAE1G,MAAM,MAAM,cAAc,GAAG,SAAS,GAAG,OAAO,CAAC;AAEjD;;GAEG;AACH,qBAoBa,mBAAoB,YAAW,oBAAoB;IAI9D,IAAI,8CAA4B;IAIhC,EAAE,8CAA4B;IAC9B;;OAEG;IACH,KAAK,0DAAmB;IAIxB,QAAQ,2DAAoB;IAI5B,QAAQ,2DAAoB;IAI5B,IAAI,sDAAoC;IAIxC,SAAS,wDAAqC;IAK9C,OAAO,8CAAoB;IAC3B;;OAEG;IACH,YAAY,0FAAmD;IAM/D,MAAM,mDAAwB;IAE9B,OAAO,CAAC,MAAM,CAA+B;IAC7C,OAAO,CAAC,gBAAgB,CAA0B;IAElD,aAAa,0CAEV;IACH,UAAU,gDAA4B;IAEtC,OAAO,CAAC,SAAS,CAAwC;IACzD,OAAO,CAAC,UAAU,CAAqC;IAEvD,UAAU,CAAC,KAAK,EAAE,UAAU,GAAG,IAAI,GAAG,IAAI;IAG1C,gBAAgB,CAAC,EAAE,EAAE,CAAC,GAAG,EAAE,UAAU,KAAK,IAAI,GAAG,IAAI;IAGrD,iBAAiB,CAAC,EAAE,EAAE,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,GAAG,IAAI;IAGnD,gBAAgB,CAAC,UAAU,EAAE,OAAO,GAAG,IAAI;IAI3C,WAAW,CAAC,KAAK,EAAE,MAAM;yCArEd,mBAAmB;2CAAnB,mBAAmB;CAyE/B"}
|
|
@@ -4,6 +4,9 @@ import { InputSize, InputState } from "../input/input.component";
|
|
|
4
4
|
import { SelectOptionComponent } from "./select-option.component";
|
|
5
5
|
import { ComponentInputs, FeedbackTextComponent } from "@tedi-design-system/angular/tedi";
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated Use Select from TEDI-ready instead. This component will be removed from future versions.
|
|
9
|
+
*/
|
|
7
10
|
export declare class SelectComponent implements AfterContentChecked, ControlValueAccessor {
|
|
8
11
|
/**
|
|
9
12
|
* The id of the select input (for label association).
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select.component.d.ts","sourceRoot":"","sources":["../../../../../community/components/form/select/select.component.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,mBAAmB,EAKnB,UAAU,EASX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AACzE,OAAO,EAEL,SAAS,EACT,UAAU,EACX,MAAM,0BAA0B,CAAC;AAElC,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAElE,OAAO,EAEL,eAAe,EACf,qBAAqB,EAKtB,MAAM,kCAAkC,CAAC;;AAG1C,qBAiCa,eACX,YAAW,mBAAmB,EAAE,oBAAoB;
|
|
1
|
+
{"version":3,"file":"select.component.d.ts","sourceRoot":"","sources":["../../../../../community/components/form/select/select.component.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,mBAAmB,EAKnB,UAAU,EASX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AACzE,OAAO,EAEL,SAAS,EACT,UAAU,EACX,MAAM,0BAA0B,CAAC;AAElC,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAElE,OAAO,EAEL,eAAe,EACf,qBAAqB,EAKtB,MAAM,kCAAkC,CAAC;;AAG1C;;GAEG;AACH,qBAiCa,eACX,YAAW,mBAAmB,EAAE,oBAAoB;IACpD;;;OAGG;IACH,OAAO,8CAA4B;IACnC;;;OAGG;IACH,KAAK,0DAAmB;IACxB;;;OAGG;IACH,QAAQ,+CAAyB;IACjC;;;OAGG;IACH,WAAW,8CAAqB;IAChC;;;OAGG;IACH,KAAK,kDAAgC;IACrC;;;OAGG;IACH,IAAI,iDAA+B;IACnC;;;OAGG;IACH,SAAS,+CAAwB;IACjC;;;;;OAKG;IACH,gBAAgB,0EAA8B;IAC9C,YAAY,0FAAmD;IAE/D,MAAM,kDAAiB;IACvB,eAAe,4DAAiC;IAChD,UAAU,8DAA+C;IACzD,UAAU,8DAAqD;IAC/D,OAAO,kBAAsB;IAC7B,OAAO,mEAA0C;IACjD,aAAa,wDAA+B;IAC5C,QAAQ,kDAAiB;IAEzB,YAAY;eACa,MAAM;iBAAW,qBAAqB,EAAE;SAU9D;IAEH,qBAAqB,IAAI,IAAI;IAK7B,cAAc;IAId,YAAY,CAAC,KAAK,CAAC,EAAE,OAAO,GAAG,IAAI;IAWnC,iBAAiB,CAAC,KAAK,EAAE;QAAE,KAAK,EAAE,SAAS,MAAM,EAAE,CAAA;KAAE,GAAG,IAAI;IAQ5D,KAAK,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI;IAQzB,uBAAuB,oCAEpB;IAEH,YAAY,IAAI,IAAI;IAIpB,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO;IAIzC,cAAc,2CAIX;IAEH,OAAO,CAAC,gBAAgB;IAaxB,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAa;IACrD,SAAS,EAAE,MAAM,IAAI,CAAa;IAElC,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAI/B,gBAAgB,CAAC,EAAE,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,GAAG,IAAI;IAI1D,iBAAiB,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,IAAI;IAIvC,gBAAgB,CAAC,UAAU,EAAE,OAAO,GAAG,IAAI;yCAtJhC,eAAe;2CAAf,eAAe;CAyJ3B"}
|