@wra-gov/vue-components 0.29.3 → 0.30.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 +38 -0
- package/dist/vue-components.js +102 -78
- package/dist/vue-components.umd.cjs +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,25 @@ import { InputHTMLAttributes } from 'vue';
|
|
|
8
8
|
import { PropType } from 'vue';
|
|
9
9
|
import { PublicProps } from 'vue';
|
|
10
10
|
|
|
11
|
+
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
12
|
+
color: WraTagAvailableColors;
|
|
13
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
|
|
15
|
+
declare type __VLS_Props = {
|
|
16
|
+
content: string;
|
|
17
|
+
color?: WraTagAvailableColors;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
declare type __VLS_Slots = {} & {
|
|
21
|
+
default?: (props: typeof __VLS_1) => any;
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
declare type __VLS_WithSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
|
|
11
30
|
export declare interface AutocompleteOption {
|
|
12
31
|
label: string;
|
|
13
32
|
value: string;
|
|
@@ -3020,6 +3039,13 @@ mobileBreakpoint: {
|
|
|
3020
3039
|
type: PropType<number>;
|
|
3021
3040
|
default: number;
|
|
3022
3041
|
};
|
|
3042
|
+
/**
|
|
3043
|
+
* Label text for the menu button.
|
|
3044
|
+
*/
|
|
3045
|
+
menuLabel: {
|
|
3046
|
+
type: PropType<string>;
|
|
3047
|
+
default: string;
|
|
3048
|
+
};
|
|
3023
3049
|
}>, {}, {
|
|
3024
3050
|
isMenuOpen: boolean;
|
|
3025
3051
|
mdiMenu: string;
|
|
@@ -3062,6 +3088,13 @@ mobileBreakpoint: {
|
|
|
3062
3088
|
type: PropType<number>;
|
|
3063
3089
|
default: number;
|
|
3064
3090
|
};
|
|
3091
|
+
/**
|
|
3092
|
+
* Label text for the menu button.
|
|
3093
|
+
*/
|
|
3094
|
+
menuLabel: {
|
|
3095
|
+
type: PropType<string>;
|
|
3096
|
+
default: string;
|
|
3097
|
+
};
|
|
3065
3098
|
}>> & Readonly<{}>, {
|
|
3066
3099
|
hiddenPrint: boolean;
|
|
3067
3100
|
navigationLinks: {
|
|
@@ -3070,6 +3103,7 @@ href: string;
|
|
|
3070
3103
|
ariaLabel: string;
|
|
3071
3104
|
}[];
|
|
3072
3105
|
mobileBreakpoint: number;
|
|
3106
|
+
menuLabel: string;
|
|
3073
3107
|
}, {}, {
|
|
3074
3108
|
WraIcon: DefineComponent<ExtractPropTypes< {
|
|
3075
3109
|
icon: {
|
|
@@ -3520,6 +3554,10 @@ active: boolean;
|
|
|
3520
3554
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3521
3555
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3522
3556
|
|
|
3557
|
+
export declare const WraTag: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
3558
|
+
|
|
3559
|
+
declare type WraTagAvailableColors = "wra-tag-blue" | "wra-tag-green" | "wra-tag-grey";
|
|
3560
|
+
|
|
3523
3561
|
export declare const WraTextArea: DefineComponent<ExtractPropTypes< {
|
|
3524
3562
|
/**
|
|
3525
3563
|
* The unique id for the textarea input and label association.
|