ud-components 0.2.0 → 0.2.2
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.
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Styled date picker that participates in the parent FormGroup.
|
|
4
|
+
*
|
|
5
|
+
* Usage:
|
|
6
|
+
* <ud-date-input
|
|
7
|
+
* controlName="birthDate"
|
|
8
|
+
* label="Date of birth"
|
|
9
|
+
* icon="calendar_today" />
|
|
10
|
+
*/
|
|
11
|
+
export declare class DateInputComponent {
|
|
12
|
+
controlName: string;
|
|
13
|
+
label: string;
|
|
14
|
+
placeholder: string;
|
|
15
|
+
icon?: string;
|
|
16
|
+
iconFontSet: string;
|
|
17
|
+
min?: Date;
|
|
18
|
+
max?: Date;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateInputComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateInputComponent, "ud-date-input", never, { "controlName": { "alias": "controlName"; "required": true; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconFontSet": { "alias": "iconFontSet"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; }, {}, never, never, true, never>;
|
|
21
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EditOptions, SummaryField } from './summary-view.interface';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
type LAYOUTS = 'text-left' | 'text-right' | 'text-all' | 'text-none';
|
|
3
|
+
type LAYOUTS = 'text-left' | 'text-right' | 'text-all' | 'text-none' | 'text-top';
|
|
4
4
|
export declare class SummaryViewComponent {
|
|
5
5
|
title: string | null;
|
|
6
6
|
editOptions: EditOptions | null;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export * from './lib/summary-view/summary-view.component';
|
|
|
14
14
|
export * from './lib/tabs/tabs.component';
|
|
15
15
|
export * from './lib/tel-input/tel-input.component';
|
|
16
16
|
export * from './lib/form-fields/text-input/text-input.component';
|
|
17
|
+
export * from './lib/form-fields/date-input/date-input.component';
|
|
17
18
|
export * from './lib/form-fields/multi-select/multi-select.component';
|
|
18
19
|
export * from './lib/form-fields/pill-toggle/pill-toggle.component';
|
|
19
20
|
export * from './lib/button/button.component';
|