@tedi-design-system/angular 6.2.0-rc.12 → 6.2.0-rc.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/community/components/form/input/input.component.d.ts +3 -0
- package/community/components/form/input/input.component.d.ts.map +1 -1
- package/fesm2022/tedi-design-system-angular-community.mjs +3 -0
- package/fesm2022/tedi-design-system-angular-community.mjs.map +1 -1
- package/fesm2022/tedi-design-system-angular-tedi.mjs +203 -9
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/package.json +1 -1
- package/tedi/components/form/form-field/form-field-control.d.ts +31 -0
- package/tedi/components/form/form-field/form-field-control.d.ts.map +1 -0
- package/tedi/components/form/form-field/form-field.component.d.ts +57 -0
- package/tedi/components/form/form-field/form-field.component.d.ts.map +1 -0
- package/tedi/components/form/index.d.ts +2 -0
- package/tedi/components/form/index.d.ts.map +1 -1
- package/tedi/components/form/text-field/text-field.component.d.ts +38 -0
- package/tedi/components/form/text-field/text-field.component.d.ts.map +1 -0
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export type InputSize = "small" | "default";
|
|
3
3
|
export type InputState = "valid" | "error" | "default";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated Use TextField from TEDI-ready instead. This component will be removed from future versions.
|
|
6
|
+
*/
|
|
4
7
|
export declare class InputComponent {
|
|
5
8
|
/**
|
|
6
9
|
* Size of the input.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.component.d.ts","sourceRoot":"","sources":["../../../../../community/components/form/input/input.component.ts"],"names":[],"mappings":";AAQA,MAAM,MAAM,SAAS,GAAG,OAAO,GAAG,SAAS,CAAC;AAC5C,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,OAAO,GAAG,SAAS,CAAC;AAEvD,qBAYa,cAAc;IACzB;;;OAGG;IACH,IAAI,iDAA+B;IAEnC;;;OAGG;IACH,KAAK,kDAAgC;IAErC,eAAe,yCAKZ;yCAlBQ,cAAc;2CAAd,cAAc;CAmB1B"}
|
|
1
|
+
{"version":3,"file":"input.component.d.ts","sourceRoot":"","sources":["../../../../../community/components/form/input/input.component.ts"],"names":[],"mappings":";AAQA,MAAM,MAAM,SAAS,GAAG,OAAO,GAAG,SAAS,CAAC;AAC5C,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,OAAO,GAAG,SAAS,CAAC;AAEvD;;GAEG;AACH,qBAYa,cAAc;IACzB;;;OAGG;IACH,IAAI,iDAA+B;IAEnC;;;OAGG;IACH,KAAK,kDAAgC;IAErC,eAAe,yCAKZ;yCAlBQ,cAAc;2CAAd,cAAc;CAmB1B"}
|
|
@@ -736,6 +736,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
736
736
|
}, styles: [".tedi-form-field{display:flex;flex-direction:column}\n"] }]
|
|
737
737
|
}] });
|
|
738
738
|
|
|
739
|
+
/**
|
|
740
|
+
* @deprecated Use TextField from TEDI-ready instead. This component will be removed from future versions.
|
|
741
|
+
*/
|
|
739
742
|
class InputComponent {
|
|
740
743
|
/**
|
|
741
744
|
* Size of the input.
|