@roku-ui/vue 0.14.2 → 0.14.3

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.
@@ -4,7 +4,9 @@ declare function __VLS_template(): {
4
4
  slots: {
5
5
  default?(_: {}): any;
6
6
  };
7
- refs: {};
7
+ refs: {
8
+ wrapperRef: unknown;
9
+ };
8
10
  attrs: Partial<{}>;
9
11
  };
10
12
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
@@ -31,10 +31,8 @@ export declare function useThemeData(name: string, color: {
31
31
  };
32
32
  }>;
33
33
  export declare function useThemeStyles(theme: ThemeData): {
34
- '--d-bg': string;
35
- '--d-text': string;
36
- '--l-bg': string;
37
- '--l-text': string;
34
+ backgroundColor: string;
35
+ color: string;
38
36
  };
39
37
  export declare function useId(props: {
40
38
  id?: string;
@@ -0,0 +1,3 @@
1
+ export declare const rokuProvider: unique symbol;
2
+ export declare function useRokuProvider(): import('vue').Ref<null, null>;
3
+ export declare function provideRokuProvider(provider: any): void;