@abgov/angular-components 4.2.2-alpha.6 → 4.2.2-alpha.7
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/date-picker/date-picker.mjs +1 -1
- package/esm2022/lib/components/dropdown/dropdown.mjs +1 -1
- package/esm2022/lib/components/index.mjs +2 -1
- package/esm2022/lib/components/popover/popover.mjs +1 -1
- package/esm2022/lib/components/text/text.mjs +56 -0
- package/fesm2022/abgov-angular-components.mjs +55 -1
- package/fesm2022/abgov-angular-components.mjs.map +1 -1
- package/lib/components/date-picker/date-picker.d.ts +3 -0
- package/lib/components/dropdown/dropdown.d.ts +3 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/components/popover/popover.d.ts +3 -0
- package/lib/components/text/text.d.ts +14 -0
- package/package.json +1 -1
|
@@ -10,6 +10,9 @@ export declare class GoabDatePicker implements ControlValueAccessor {
|
|
|
10
10
|
max?: Date | string;
|
|
11
11
|
error?: boolean;
|
|
12
12
|
disabled?: boolean;
|
|
13
|
+
/***
|
|
14
|
+
* @deprecated This property has no effect and will be removed in a future version
|
|
15
|
+
*/
|
|
13
16
|
relative?: boolean;
|
|
14
17
|
testId?: string;
|
|
15
18
|
mt?: Spacing;
|
|
@@ -18,6 +18,9 @@ export declare class GoabDropdown implements ControlValueAccessor {
|
|
|
18
18
|
placeholder?: string;
|
|
19
19
|
testId?: string;
|
|
20
20
|
width?: string;
|
|
21
|
+
/***
|
|
22
|
+
* @deprecated This property has no effect and will be removed in a future version
|
|
23
|
+
*/
|
|
21
24
|
relative?: boolean;
|
|
22
25
|
mt?: Spacing;
|
|
23
26
|
mb?: Spacing;
|
|
@@ -6,6 +6,9 @@ export declare class GoabPopover {
|
|
|
6
6
|
minWidth?: string;
|
|
7
7
|
padded: boolean;
|
|
8
8
|
position?: GoabPopoverPosition;
|
|
9
|
+
/***
|
|
10
|
+
* @deprecated This property has no effect and will be removed in a future version
|
|
11
|
+
*/
|
|
9
12
|
relative?: boolean;
|
|
10
13
|
testId?: string;
|
|
11
14
|
mt?: Spacing;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { GoabTextColor, GoabTextHeadingElement, GoabTextMaxWidth, GoabTextSize, GoabTextTextElement, Spacing } from "@abgov/ui-components-common";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class GoabText {
|
|
4
|
+
tag?: GoabTextTextElement | GoabTextHeadingElement;
|
|
5
|
+
size?: GoabTextSize;
|
|
6
|
+
maxWidth?: GoabTextMaxWidth;
|
|
7
|
+
color?: GoabTextColor;
|
|
8
|
+
mt?: Spacing;
|
|
9
|
+
mb?: Spacing;
|
|
10
|
+
ml?: Spacing;
|
|
11
|
+
mr?: Spacing;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GoabText, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GoabText, "goab-text", never, { "tag": { "alias": "tag"; "required": false; }; "size": { "alias": "size"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "color": { "alias": "color"; "required": false; }; "mt": { "alias": "mt"; "required": false; }; "mb": { "alias": "mb"; "required": false; }; "ml": { "alias": "ml"; "required": false; }; "mr": { "alias": "mr"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
14
|
+
}
|