veloce-vue 0.14.0 → 0.15.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.
Files changed (74) hide show
  1. package/components/icon/Icon.vue.d.ts +19 -0
  2. package/components/icon/icons.d.ts +8 -0
  3. package/components/icon/index.d.ts +6 -9
  4. package/exports/config.d.ts +1 -0
  5. package/exports/icons.d.ts +1 -0
  6. package/exports/lib.d.ts +1 -0
  7. package/exports/ui.d.ts +2 -0
  8. package/index.cjs +28 -1
  9. package/index.cjs.map +1 -1
  10. package/index.d.ts +4 -0
  11. package/index.js +4099 -706
  12. package/index.js.map +1 -1
  13. package/lib/utils.d.ts +2 -0
  14. package/package.json +1 -1
  15. package/{components/icon/index.vue.d.ts → ui/accordion/Accordion.vue.d.ts} +8 -5
  16. package/ui/accordion/AccordionContent.vue.d.ts +18 -0
  17. package/ui/accordion/AccordionItem.vue.d.ts +18 -0
  18. package/ui/accordion/AccordionRoot.vue.d.ts +19 -0
  19. package/ui/accordion/AccordionTrigger.vue.d.ts +20 -0
  20. package/ui/accordion/index.d.ts +5 -0
  21. package/ui/button/Button.vue.d.ts +27 -0
  22. package/ui/button/index.d.ts +7 -0
  23. package/utils/config.d.ts +10 -2
  24. package/veloce-vue.css +1 -1
  25. package/README.md +0 -151
  26. package/components/accordion/Index.vue.d.ts +0 -31
  27. package/components/accordion/stories.d.ts +0 -10
  28. package/components/button/Index.vue.d.ts +0 -82
  29. package/components/button/props.d.ts +0 -37
  30. package/components/button/stories.d.ts +0 -23
  31. package/components/checkbox/Index.vue.d.ts +0 -43
  32. package/components/checkbox/props.d.ts +0 -14
  33. package/components/checkbox/stories.d.ts +0 -9
  34. package/components/drawer/Index.vue.d.ts +0 -77
  35. package/components/drawer/props.d.ts +0 -23
  36. package/components/drawer/stories.d.ts +0 -9
  37. package/components/input/Index.vue.d.ts +0 -54
  38. package/components/input/props.d.ts +0 -19
  39. package/components/input/stories.d.ts +0 -9
  40. package/components/markdown-block/Index.vue.d.ts +0 -12
  41. package/components/modal/Index.vue.d.ts +0 -29
  42. package/components/modal/props.d.ts +0 -6
  43. package/components/modal/stories.d.ts +0 -6
  44. package/components/popover/Index.vue.d.ts +0 -47
  45. package/components/popover/props.d.ts +0 -15
  46. package/components/popover/stories.d.ts +0 -7
  47. package/components/range-slider/Index.vue.d.ts +0 -28
  48. package/components/range-slider/props.d.ts +0 -10
  49. package/components/range-slider/stories.d.ts +0 -7
  50. package/components/select/Index.vue.d.ts +0 -67
  51. package/components/select/props.d.ts +0 -27
  52. package/components/select/stories.d.ts +0 -11
  53. package/components/separator/Index.vue.d.ts +0 -44
  54. package/components/separator/props.d.ts +0 -19
  55. package/components/separator/stories.d.ts +0 -7
  56. package/components/toggle/Index.vue.d.ts +0 -36
  57. package/components/toggle/props.d.ts +0 -11
  58. package/components/toggle/stories.d.ts +0 -11
  59. package/components/tooltip/Index.vue.d.ts +0 -47
  60. package/components/tooltip/props.d.ts +0 -15
  61. package/components/tooltip/stories.d.ts +0 -10
  62. package/exports.d.ts +0 -12
  63. package/pages/Home/stories.d.ts +0 -6
  64. package/pages/config/Index.vue.d.ts +0 -3
  65. package/pages/config/stories.d.ts +0 -10
  66. package/types/config.d.ts +0 -9
  67. package/utils/storyControls.d.ts +0 -4
  68. package/utils/useRandomId.d.ts +0 -1
  69. /package/icons/{alert.vue.d.ts → Alert.vue.d.ts} +0 -0
  70. /package/icons/{check.vue.d.ts → Check.vue.d.ts} +0 -0
  71. /package/icons/{chevron-down.vue.d.ts → ChevronDown.vue.d.ts} +0 -0
  72. /package/icons/{close.vue.d.ts → Close.vue.d.ts} +0 -0
  73. /package/icons/{loading.vue.d.ts → Hamburger.vue.d.ts} +0 -0
  74. /package/{pages/Home/Index.vue.d.ts → icons/Loading.vue.d.ts} +0 -0
@@ -1,11 +0,0 @@
1
- export declare const props: {
2
- readonly variant: {
3
- readonly type: () => "primary" | "secondary" | "default";
4
- readonly default: "default";
5
- readonly options: readonly ["primary", "secondary", "default"];
6
- };
7
- readonly disabled: {
8
- readonly type: BooleanConstructor;
9
- readonly default: false;
10
- };
11
- };
@@ -1,11 +0,0 @@
1
- import type { Meta, StoryObj } from "@storybook/vue3-vite";
2
- import Toggle from "./Index.vue";
3
- declare const meta: Meta<typeof Toggle>;
4
- export default meta;
5
- type Story = StoryObj<typeof Toggle>;
6
- export declare const Default: Story;
7
- export declare const Primary: Story;
8
- export declare const Secondary: Story;
9
- export declare const Checked: Story;
10
- export declare const Disabled: Story;
11
- export declare const DisabledChecked: Story;
@@ -1,47 +0,0 @@
1
- declare var __VLS_1: {}, __VLS_3: {};
2
- type __VLS_Slots = {} & {
3
- default?: (props: typeof __VLS_1) => any;
4
- } & {
5
- body?: (props: typeof __VLS_3) => any;
6
- };
7
- declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
- readonly content: {
9
- readonly type: StringConstructor;
10
- readonly default: "";
11
- };
12
- readonly position: {
13
- readonly type: () => "top" | "bottom" | "left" | "right";
14
- readonly default: "bottom";
15
- readonly options: readonly ["top", "bottom", "left", "right"];
16
- };
17
- readonly bodyClass: {
18
- readonly type: StringConstructor;
19
- readonly default: "";
20
- };
21
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
22
- readonly content: {
23
- readonly type: StringConstructor;
24
- readonly default: "";
25
- };
26
- readonly position: {
27
- readonly type: () => "top" | "bottom" | "left" | "right";
28
- readonly default: "bottom";
29
- readonly options: readonly ["top", "bottom", "left", "right"];
30
- };
31
- readonly bodyClass: {
32
- readonly type: StringConstructor;
33
- readonly default: "";
34
- };
35
- }>> & Readonly<{}>, {
36
- readonly position: "left" | "right" | "bottom" | "top";
37
- readonly bodyClass: string;
38
- readonly content: string;
39
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
40
- declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
41
- declare const _default: typeof __VLS_export;
42
- export default _default;
43
- type __VLS_WithSlots<T, S> = T & {
44
- new (): {
45
- $slots: S;
46
- };
47
- };
@@ -1,15 +0,0 @@
1
- export declare const props: {
2
- readonly content: {
3
- readonly type: StringConstructor;
4
- readonly default: "";
5
- };
6
- readonly position: {
7
- readonly type: () => "top" | "bottom" | "left" | "right";
8
- readonly default: "bottom";
9
- readonly options: readonly ["top", "bottom", "left", "right"];
10
- };
11
- readonly bodyClass: {
12
- readonly type: StringConstructor;
13
- readonly default: "";
14
- };
15
- };
@@ -1,10 +0,0 @@
1
- import type { Meta, StoryObj } from "@storybook/vue3-vite";
2
- import Tooltip from "./Index.vue";
3
- declare const meta: Meta<typeof Tooltip>;
4
- export default meta;
5
- type Story = StoryObj<typeof Tooltip>;
6
- export declare const Default: Story;
7
- export declare const Top: Story;
8
- export declare const Bottom: Story;
9
- export declare const Left: Story;
10
- export declare const Right: Story;
package/exports.d.ts DELETED
@@ -1,12 +0,0 @@
1
- export { default as Accordion } from "./components/accordion/Index.vue";
2
- export { default as Button } from "./components/button/Index.vue";
3
- export { default as Checkbox } from "./components/checkbox/Index.vue";
4
- export { default as Drawer } from "./components/drawer/Index.vue";
5
- export { default as Input } from "./components/input/Index.vue";
6
- export { default as Modal } from "./components/modal/Index.vue";
7
- export { default as Popover } from "./components/popover/Index.vue";
8
- export { default as RangeSlider } from "./components/range-slider/Index.vue";
9
- export { default as Select } from "./components/select/Index.vue";
10
- export { default as Separator } from "./components/separator/Index.vue";
11
- export { default as Tooltip } from "./components/tooltip/Index.vue";
12
- export { config } from "./utils/config";
@@ -1,6 +0,0 @@
1
- declare const _default: {
2
- title: string;
3
- component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
4
- };
5
- export default _default;
6
- export declare const Home: {};
@@ -1,3 +0,0 @@
1
- declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
- declare const _default: typeof __VLS_export;
3
- export default _default;
@@ -1,10 +0,0 @@
1
- import type { Meta, StoryObj } from "@storybook/vue3-vite";
2
- import ThemeComponent from "./Index.vue";
3
- declare const meta: Meta<typeof ThemeComponent>;
4
- export default meta;
5
- type Story = StoryObj<{
6
- primaryColor: string;
7
- secondaryColor: string;
8
- accentColor: string;
9
- }>;
10
- export declare const Theme: Story;
package/types/config.d.ts DELETED
@@ -1,9 +0,0 @@
1
- interface Colors {
2
- primary: string;
3
- secondary: string;
4
- accent: string;
5
- }
6
- interface config {
7
- colors: Colors;
8
- }
9
- export type { Colors, config };
@@ -1,4 +0,0 @@
1
- export declare function generateStoryControls(props: Record<string, any>): {
2
- args: Record<string, any>;
3
- argTypes: Record<string, any>;
4
- };
@@ -1 +0,0 @@
1
- export declare function useRandomId(length: number): string;
File without changes
File without changes
File without changes
File without changes