@indigina/ui-kit 1.1.78 → 1.1.79
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/esm2022/lib/components/kit-data-field/kit-data-field.component.mjs +22 -0
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/indigina-ui-kit.mjs +21 -1
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-data-field/kit-data-field.component.d.ts +14 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class KitDataFieldComponent {
|
|
3
|
+
/**
|
|
4
|
+
* Defines a value that is going to be applied as a label text
|
|
5
|
+
*/
|
|
6
|
+
label: string;
|
|
7
|
+
/**
|
|
8
|
+
* Defines a value that is going to be applied as a value text
|
|
9
|
+
*/
|
|
10
|
+
value?: string | number | null;
|
|
11
|
+
readonly defaultValue: string;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitDataFieldComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitDataFieldComponent, "kit-data-field", never, { "label": { "alias": "label"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -150,3 +150,4 @@ export { KitTimelineCardComponent } from './lib/components/kit-timeline/kit-time
|
|
|
150
150
|
export { KitFileCardComponent } from './lib/components/kit-file-card/kit-file-card.component';
|
|
151
151
|
export { KitFileCardModule } from './lib/components/kit-file-card/kit-file-card.module';
|
|
152
152
|
export { KitFileCardMessagesComponent } from './lib/components/kit-file-card/kit-file-card-messages.component';
|
|
153
|
+
export { KitDataFieldComponent } from './lib/components/kit-data-field/kit-data-field.component';
|