@roku-ui/vue 0.7.5 → 0.8.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/components/ColorInput.vue.d.ts +6 -0
- package/dist/components/Notification.vue.d.ts +1 -1
- package/dist/components/RokuProvider.vue.d.ts +32 -5
- package/dist/components/Select.vue.d.ts +8 -0
- package/dist/components/ThemeProvider.vue.d.ts +4 -2
- package/dist/index.js +1412 -1257
- package/dist/index.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/dist/utils/index.d.ts +2 -2
- package/dist/utils/theme.d.ts +16 -18
- package/package.json +12 -12
- package/dist/composables/index.d.ts +0 -64
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
2
|
modelValue: globalThis.PropType<string>;
|
|
3
|
+
label: {
|
|
4
|
+
type: globalThis.PropType<string>;
|
|
5
|
+
};
|
|
3
6
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
4
7
|
modelValue: globalThis.PropType<string>;
|
|
8
|
+
label: {
|
|
9
|
+
type: globalThis.PropType<string>;
|
|
10
|
+
};
|
|
5
11
|
}>>, {}, {}>;
|
|
6
12
|
export default _default;
|
|
@@ -35,9 +35,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
35
35
|
}>>> & {
|
|
36
36
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
37
37
|
}, {
|
|
38
|
-
color: "primary" | "secondary" | "tertiary" | "error";
|
|
39
38
|
rounded: string | number;
|
|
40
39
|
block: boolean;
|
|
40
|
+
color: "primary" | "secondary" | "tertiary" | "error";
|
|
41
41
|
}, {}>, {
|
|
42
42
|
message?(_: {}): any;
|
|
43
43
|
}>;
|
|
@@ -1,19 +1,46 @@
|
|
|
1
1
|
import type { ThemeData } from '../utils';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
is?: string | globalThis.Component | undefined;
|
|
4
|
-
theme?:
|
|
4
|
+
theme?: string | undefined;
|
|
5
|
+
themes?: Record<string, ThemeData> | undefined;
|
|
5
6
|
}>, {
|
|
6
7
|
is: string;
|
|
7
|
-
theme
|
|
8
|
+
theme: string;
|
|
9
|
+
themes: () => {
|
|
10
|
+
default: {
|
|
11
|
+
name: string;
|
|
12
|
+
colors: {
|
|
13
|
+
primary: import("../utils").ColorsTuple;
|
|
14
|
+
secondary: import("../utils").ColorsTuple;
|
|
15
|
+
tertiary: import("../utils").ColorsTuple;
|
|
16
|
+
error: import("../utils").ColorsTuple;
|
|
17
|
+
surface: import("../utils").ColorsTuple;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
8
21
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
22
|
is?: string | globalThis.Component | undefined;
|
|
10
|
-
theme?:
|
|
23
|
+
theme?: string | undefined;
|
|
24
|
+
themes?: Record<string, ThemeData> | undefined;
|
|
11
25
|
}>, {
|
|
12
26
|
is: string;
|
|
13
|
-
theme
|
|
27
|
+
theme: string;
|
|
28
|
+
themes: () => {
|
|
29
|
+
default: {
|
|
30
|
+
name: string;
|
|
31
|
+
colors: {
|
|
32
|
+
primary: import("../utils").ColorsTuple;
|
|
33
|
+
secondary: import("../utils").ColorsTuple;
|
|
34
|
+
tertiary: import("../utils").ColorsTuple;
|
|
35
|
+
error: import("../utils").ColorsTuple;
|
|
36
|
+
surface: import("../utils").ColorsTuple;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
};
|
|
14
40
|
}>>>, {
|
|
15
41
|
is: string | globalThis.Component;
|
|
16
|
-
theme:
|
|
42
|
+
theme: string;
|
|
43
|
+
themes: Record<string, ThemeData>;
|
|
17
44
|
}, {}>, {
|
|
18
45
|
default?(_: {}): any;
|
|
19
46
|
}>;
|
|
@@ -20,6 +20,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
20
20
|
type: globalThis.PropType<Option[]>;
|
|
21
21
|
default: () => never[];
|
|
22
22
|
};
|
|
23
|
+
ariaLabel: {
|
|
24
|
+
type: globalThis.PropType<string>;
|
|
25
|
+
required: true;
|
|
26
|
+
};
|
|
23
27
|
noneText: {
|
|
24
28
|
type: globalThis.PropType<string>;
|
|
25
29
|
default: string;
|
|
@@ -44,6 +48,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
44
48
|
type: globalThis.PropType<Option[]>;
|
|
45
49
|
default: () => never[];
|
|
46
50
|
};
|
|
51
|
+
ariaLabel: {
|
|
52
|
+
type: globalThis.PropType<string>;
|
|
53
|
+
required: true;
|
|
54
|
+
};
|
|
47
55
|
noneText: {
|
|
48
56
|
type: globalThis.PropType<string>;
|
|
49
57
|
default: string;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import type { ThemeData } from '..';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
-
theme
|
|
3
|
+
theme?: ThemeData | undefined;
|
|
4
|
+
scheme?: string | undefined;
|
|
4
5
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
5
|
-
theme
|
|
6
|
+
theme?: ThemeData | undefined;
|
|
7
|
+
scheme?: string | undefined;
|
|
6
8
|
}>>>, {}, {}>, {
|
|
7
9
|
default?(_: {}): any;
|
|
8
10
|
}>;
|