@huntflow/ui 0.0.17 → 0.0.19

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@huntflow/ui",
3
3
  "description": "HuntFlow UiKit, icons, utils library",
4
4
  "private": false,
5
- "version": "0.0.17",
5
+ "version": "0.0.19",
6
6
  "author": {
7
7
  "name": "HuntFlow Developer",
8
8
  "nickname": "developer",
@@ -12,7 +12,10 @@
12
12
  "scripts": {
13
13
  "dev": "vite",
14
14
  "build": "vue-tsc -b && vite build",
15
- "preview": "vite preview"
15
+ "preview": "vite preview",
16
+ "storybook": "storybook dev -p 6006",
17
+ "build-storybook": "storybook build",
18
+ "lint": "eslint './src/**/*.{js,vue,ts}' --quiet"
16
19
  },
17
20
  "publishConfig": {
18
21
  "access": "public"
@@ -51,13 +54,41 @@
51
54
  "vue": "^3.5.13"
52
55
  },
53
56
  "devDependencies": {
57
+ "@chromatic-com/storybook": "^3.2.2",
58
+ "@eslint/js": "^9.17.0",
59
+ "@storybook/addon-essentials": "^8.4.7",
60
+ "@storybook/addon-interactions": "^8.4.7",
61
+ "@storybook/addon-onboarding": "^8.4.7",
62
+ "@storybook/blocks": "^8.4.7",
63
+ "@storybook/test": "^8.4.7",
64
+ "@storybook/vue3": "^8.4.7",
65
+ "@storybook/vue3-vite": "^8.4.7",
66
+ "@types/eslint": "^9.6.1",
54
67
  "@types/node": "^22.10.1",
68
+ "@typescript-eslint/eslint-plugin": "^8.18.1",
69
+ "@typescript-eslint/parser": "^8.18.1",
55
70
  "@vitejs/plugin-vue": "^5.1.4",
56
- "prettier": "3.4.2",
71
+ "@vue/eslint-config-typescript": "^14.1.4",
72
+ "autoprefixer": "^10.4.20",
73
+ "css-has-pseudo": "^7.0.2",
74
+ "eslint": "^9.17.0",
75
+ "eslint-config-prettier": "^9.1.0",
76
+ "eslint-plugin-jest": "^28.9.0",
77
+ "eslint-plugin-prettier": "^5.2.1",
78
+ "eslint-plugin-vue": "^9.32.0",
79
+ "postcss": "^8.4.49",
80
+ "postcss-loader": "^8.1.1",
81
+ "postcss-nesting": "^13.0.1",
82
+ "prettier": "^3.4.2",
83
+ "storybook": "^8.4.7",
84
+ "stylelint": "^16.12.0",
85
+ "stylelint-config-recommended": "^14.0.1",
57
86
  "typescript": "~5.6.2",
87
+ "typescript-eslint": "^8.18.1",
58
88
  "vite": "^5.4.10",
59
89
  "vite-plugin-css-injected-by-js": "^3.5.2",
60
90
  "vite-plugin-dts": "^4.3.0",
91
+ "vite-plugin-eslint2": "^5.0.3",
61
92
  "vue-tsc": "^2.1.8"
62
93
  }
63
94
  }
@@ -1,23 +0,0 @@
1
- type TestButtonProps = {
2
- size?: number;
3
- color?: string;
4
- };
5
- declare function __VLS_template(): {
6
- slots: {
7
- default?(_: {}): any;
8
- };
9
- refs: {};
10
- attrs: Partial<{}>;
11
- };
12
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
- declare const __VLS_component: import('vue').DefineComponent<TestButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TestButtonProps> & Readonly<{}>, {
14
- size: number;
15
- color: string;
16
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
17
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
18
- export default _default;
19
- type __VLS_WithTemplateSlots<T, S> = T & {
20
- new (): {
21
- $slots: S;
22
- };
23
- };