@roku-ui/vue 0.7.0 → 0.7.1
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/AspectRatio.vue.d.ts +44 -0
- package/dist/components/Avatar.vue.d.ts +41 -0
- package/dist/components/Btn.vue.d.ts +77 -0
- package/dist/components/ChatContainer.vue.d.ts +9 -0
- package/dist/components/ChatMessage.vue.d.ts +51 -0
- package/dist/components/ChatSystem.vue.d.ts +45 -0
- package/dist/components/Chip.vue.d.ts +61 -0
- package/dist/components/ColorInput.vue.d.ts +6 -0
- package/dist/components/ColorSwatch.vue.d.ts +36 -0
- package/dist/components/Drawer.vue.d.ts +41 -0
- package/dist/components/Dropzone.vue.d.ts +45 -0
- package/dist/components/FullscreenOverlay.vue.d.ts +38 -0
- package/dist/components/Image.vue.d.ts +49 -0
- package/dist/components/Indicator.vue.d.ts +49 -0
- package/dist/components/Modal.vue.d.ts +32 -0
- package/dist/components/Notification.vue.d.ts +66 -0
- package/dist/components/NotificationSystem.vue.d.ts +2 -0
- package/dist/components/Overlay.vue.d.ts +52 -0
- package/dist/components/Paper.vue.d.ts +51 -0
- package/dist/components/PinInput.vue.d.ts +35 -0
- package/dist/components/Progress.vue.d.ts +59 -0
- package/dist/components/RokuProvider.vue.d.ts +42 -0
- package/dist/components/SchemeSwitch.vue.d.ts +2 -0
- package/dist/components/Select.vue.d.ts +60 -0
- package/dist/components/Slider.vue.d.ts +88 -0
- package/dist/components/Switch.vue.d.ts +85 -0
- package/dist/components/TabItem.vue.d.ts +38 -0
- package/dist/components/Tabs.vue.d.ts +29 -0
- package/dist/components/ThemeProvider.vue.d.ts +23 -0
- package/dist/components/index.d.ts +30 -0
- package/dist/composables/index.d.ts +64 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3226 -0
- package/dist/index.umd.cjs +1 -0
- package/dist/style.css +1 -0
- package/dist/test/index.test.d.ts +1 -0
- package/dist/test.d.ts +1 -0
- package/dist/utils/classGenerator.d.ts +6 -0
- package/dist/utils/index.d.ts +23 -0
- package/dist/utils/notifications.d.ts +12 -0
- package/dist/utils/symbols.d.ts +2 -0
- package/dist/utils/theme.d.ts +35 -0
- package/package.json +2 -2
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { type ThemeData } from '..';
|
|
2
|
+
export declare function useRootTheme(): globalThis.Ref<string | undefined>;
|
|
3
|
+
export declare function useCurrentThemeScheme(): globalThis.Ref<string> | null;
|
|
4
|
+
export declare function useCurrentTheme(): globalThis.Ref<ThemeData>;
|
|
5
|
+
export declare function useThemeStyles(theme: ThemeData, root?: boolean): {
|
|
6
|
+
colorScheme?: undefined;
|
|
7
|
+
'--r-color-surface-on'?: undefined;
|
|
8
|
+
'--r-color-surface-oninverted'?: undefined;
|
|
9
|
+
'--r-color-surface-onlow'?: undefined;
|
|
10
|
+
'--r-color-surface-onlowinverted'?: undefined;
|
|
11
|
+
'--r-color-surface-lowest'?: undefined;
|
|
12
|
+
'--r-color-surface-low'?: undefined;
|
|
13
|
+
'--r-color-surface-base'?: undefined;
|
|
14
|
+
'--r-color-surface-high'?: undefined;
|
|
15
|
+
'--r-color-surface-highest'?: undefined;
|
|
16
|
+
'--r-color-surface-border'?: undefined;
|
|
17
|
+
'--r-color-primary-container'?: undefined;
|
|
18
|
+
'--r-color-secondary-container'?: undefined;
|
|
19
|
+
'--r-color-tertiary-container'?: undefined;
|
|
20
|
+
'--r-color-error-container'?: undefined;
|
|
21
|
+
'--r-color-primary-containerd'?: undefined;
|
|
22
|
+
'--r-color-secondary-containerd'?: undefined;
|
|
23
|
+
'--r-color-tertiary-containerd'?: undefined;
|
|
24
|
+
'--r-color-error-containerd'?: undefined;
|
|
25
|
+
'--r-color-primary-containerl'?: undefined;
|
|
26
|
+
'--r-color-secondary-containerl'?: undefined;
|
|
27
|
+
'--r-color-tertiary-containerl'?: undefined;
|
|
28
|
+
'--r-color-error-containerl'?: undefined;
|
|
29
|
+
'font-family': string;
|
|
30
|
+
'background-color': string;
|
|
31
|
+
color: string;
|
|
32
|
+
} | {
|
|
33
|
+
colorScheme: string;
|
|
34
|
+
'--r-color-surface-on': string;
|
|
35
|
+
'--r-color-surface-oninverted': string;
|
|
36
|
+
'--r-color-surface-onlow': string;
|
|
37
|
+
'--r-color-surface-onlowinverted': string;
|
|
38
|
+
'--r-color-surface-lowest': string;
|
|
39
|
+
'--r-color-surface-low': string;
|
|
40
|
+
'--r-color-surface-base': string;
|
|
41
|
+
'--r-color-surface-high': string;
|
|
42
|
+
'--r-color-surface-highest': string;
|
|
43
|
+
'--r-color-surface-border': string;
|
|
44
|
+
'--r-color-primary-container': string;
|
|
45
|
+
'--r-color-secondary-container': string;
|
|
46
|
+
'--r-color-tertiary-container': string;
|
|
47
|
+
'--r-color-error-container': string;
|
|
48
|
+
'--r-color-primary-containerd': string;
|
|
49
|
+
'--r-color-secondary-containerd': string;
|
|
50
|
+
'--r-color-tertiary-containerd': string;
|
|
51
|
+
'--r-color-error-containerd': string;
|
|
52
|
+
'--r-color-primary-containerl': string;
|
|
53
|
+
'--r-color-secondary-containerl': string;
|
|
54
|
+
'--r-color-tertiary-containerl': string;
|
|
55
|
+
'--r-color-error-containerl': string;
|
|
56
|
+
'font-family': string;
|
|
57
|
+
'background-color': string;
|
|
58
|
+
color: string;
|
|
59
|
+
};
|
|
60
|
+
export declare function useId(props: {
|
|
61
|
+
id?: string;
|
|
62
|
+
}): globalThis.Ref<string>;
|
|
63
|
+
export declare const schemeSymbol: unique symbol;
|
|
64
|
+
export declare function useScheme(): globalThis.Ref<string | undefined>;
|
package/dist/index.d.ts
ADDED