@wra-gov/vue-components 0.29.4 → 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 +23 -0
- package/dist/vue-components.js +94 -77
- 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;
|
|
@@ -3535,6 +3554,10 @@ active: boolean;
|
|
|
3535
3554
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3536
3555
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3537
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
|
+
|
|
3538
3561
|
export declare const WraTextArea: DefineComponent<ExtractPropTypes< {
|
|
3539
3562
|
/**
|
|
3540
3563
|
* The unique id for the textarea input and label association.
|