@huntflow/ui 0.0.15 → 0.0.17

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.
@@ -1,4 +1,4 @@
1
- type BaseButtonProps = {
1
+ type TestButtonProps = {
2
2
  size?: number;
3
3
  color?: string;
4
4
  };
@@ -10,7 +10,7 @@ declare function __VLS_template(): {
10
10
  attrs: Partial<{}>;
11
11
  };
12
12
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
- declare const __VLS_component: import('vue').DefineComponent<BaseButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BaseButtonProps> & Readonly<{}>, {
13
+ declare const __VLS_component: import('vue').DefineComponent<TestButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TestButtonProps> & Readonly<{}>, {
14
14
  size: number;
15
15
  color: string;
16
16
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
package/dist/main.d.ts CHANGED
@@ -1 +1,2 @@
1
+ export * as styles from './global.css';
1
2
  export { default as TestButton } from './components/TestButton/TestButton.vue';