@wra-gov/vue-components 0.31.3 → 0.33.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 +23 -2
- package/dist/vue-components.js +480 -450
- 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,6 +85,10 @@ 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;
|
|
80
93
|
} & {
|
|
81
94
|
default?: (props: typeof __VLS_12) => any;
|
|
@@ -111,6 +124,12 @@ declare type __VLS_WithSlots_5<T, S> = T & {
|
|
|
111
124
|
};
|
|
112
125
|
};
|
|
113
126
|
|
|
127
|
+
declare type __VLS_WithSlots_6<T, S> = T & {
|
|
128
|
+
new (): {
|
|
129
|
+
$slots: S;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
|
|
114
133
|
export declare interface AutocompleteOption {
|
|
115
134
|
label: string;
|
|
116
135
|
value: string;
|
|
@@ -1930,6 +1949,8 @@ required: true;
|
|
|
1930
1949
|
};
|
|
1931
1950
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1932
1951
|
|
|
1952
|
+
export declare const WraHeadingCaption: __VLS_WithSlots_5<typeof __VLS_component_5, __VLS_Slots_5>;
|
|
1953
|
+
|
|
1933
1954
|
export declare const WraIcon: DefineComponent<ExtractPropTypes< {
|
|
1934
1955
|
/** Name of icon from material design icons by pictogrammers */
|
|
1935
1956
|
icon: {
|
|
@@ -3096,7 +3117,7 @@ monthInputWidth: string;
|
|
|
3096
3117
|
yearInputWidth: string;
|
|
3097
3118
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3098
3119
|
|
|
3099
|
-
export declare const WraServiceBar:
|
|
3120
|
+
export declare const WraServiceBar: __VLS_WithSlots_6<typeof __VLS_component_6, __VLS_Slots_6>;
|
|
3100
3121
|
|
|
3101
3122
|
export declare const WraServiceLogo: DefineComponent<ExtractPropTypes< {
|
|
3102
3123
|
/**
|