@wra-gov/vue-components 0.31.2 → 0.32.0
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/dist/index.d.ts +25 -2
- package/dist/vue-components.js +351 -331
- package/dist/vue-components.umd.cjs +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,9 @@ declare const __VLS_component_3: DefineComponent< {}, {}, {}, {}, {}, Compone
|
|
|
18
18
|
|
|
19
19
|
declare const __VLS_component_4: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
20
20
|
|
|
21
|
-
declare const __VLS_component_5: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
|
|
21
|
+
declare const __VLS_component_5: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
|
|
23
|
+
declare const __VLS_component_6: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
|
|
22
24
|
hiddenPrint: boolean;
|
|
23
25
|
id: string;
|
|
24
26
|
navigationLinks: NavigationLink[];
|
|
@@ -32,6 +34,13 @@ declare type __VLS_Props = {
|
|
|
32
34
|
};
|
|
33
35
|
|
|
34
36
|
declare type __VLS_Props_2 = {
|
|
37
|
+
/** The heading level to render (h1 - h6). */
|
|
38
|
+
size: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
39
|
+
/** The caption text displayed above the heading. */
|
|
40
|
+
caption: string;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
declare type __VLS_Props_3 = {
|
|
35
44
|
/**
|
|
36
45
|
* The name of the service to display.
|
|
37
46
|
*/
|
|
@@ -76,7 +85,13 @@ declare type __VLS_Slots_4 = {} & {
|
|
|
76
85
|
};
|
|
77
86
|
|
|
78
87
|
declare type __VLS_Slots_5 = {} & {
|
|
88
|
+
default?: (props: typeof __VLS_6) => any;
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
declare type __VLS_Slots_6 = {} & {
|
|
79
92
|
default?: (props: typeof __VLS_1) => any;
|
|
93
|
+
} & {
|
|
94
|
+
default?: (props: typeof __VLS_12) => any;
|
|
80
95
|
};
|
|
81
96
|
|
|
82
97
|
declare type __VLS_WithSlots<T, S> = T & {
|
|
@@ -109,6 +124,12 @@ declare type __VLS_WithSlots_5<T, S> = T & {
|
|
|
109
124
|
};
|
|
110
125
|
};
|
|
111
126
|
|
|
127
|
+
declare type __VLS_WithSlots_6<T, S> = T & {
|
|
128
|
+
new (): {
|
|
129
|
+
$slots: S;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
|
|
112
133
|
export declare interface AutocompleteOption {
|
|
113
134
|
label: string;
|
|
114
135
|
value: string;
|
|
@@ -1928,6 +1949,8 @@ required: true;
|
|
|
1928
1949
|
};
|
|
1929
1950
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1930
1951
|
|
|
1952
|
+
export declare const WraHeadingCaption: __VLS_WithSlots_5<typeof __VLS_component_5, __VLS_Slots_5>;
|
|
1953
|
+
|
|
1931
1954
|
export declare const WraIcon: DefineComponent<ExtractPropTypes< {
|
|
1932
1955
|
/** Name of icon from material design icons by pictogrammers */
|
|
1933
1956
|
icon: {
|
|
@@ -3094,7 +3117,7 @@ monthInputWidth: string;
|
|
|
3094
3117
|
yearInputWidth: string;
|
|
3095
3118
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3096
3119
|
|
|
3097
|
-
export declare const WraServiceBar:
|
|
3120
|
+
export declare const WraServiceBar: __VLS_WithSlots_6<typeof __VLS_component_6, __VLS_Slots_6>;
|
|
3098
3121
|
|
|
3099
3122
|
export declare const WraServiceLogo: DefineComponent<ExtractPropTypes< {
|
|
3100
3123
|
/**
|