@youngonesworks/ui 0.1.20 → 0.1.23

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@youngonesworks/ui",
3
- "version": "0.1.20",
3
+ "version": "0.1.23",
4
4
  "description": "A Youngones UI component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -49,7 +49,6 @@
49
49
  "@commitlint/cli": "^19.5.0",
50
50
  "@commitlint/config-conventional": "^19.5.0",
51
51
  "@commitlint/lint": "^19.5.0",
52
- "@commitlint/types": "^19.8.0",
53
52
  "@floating-ui/react": "^0.27.12",
54
53
  "@tabler/icons-react": "^2.39.0",
55
54
  "@tiptap/core": "^2.3.1",
@@ -60,22 +59,22 @@
60
59
  "@tiptap/react": "^2.1.12",
61
60
  "@tiptap/starter-kit": "^2.1.12",
62
61
  "clsx": "^2.1.1",
63
- "lint-staged": "^15.2.10",
64
62
  "react-phone-input-2": "^2.15.1",
65
63
  "react-select": "^5.8.0",
66
64
  "react-tooltip": "^5.29.1",
67
- "rolldown": "1.0.0-beta.16",
68
- "storybook": "^9.0.11",
69
65
  "tailwind-merge": "^3.3.1"
70
66
  },
71
67
  "devDependencies": {
68
+ "@commitlint/types": "^19.8.0",
72
69
  "@eslint/compat": "^1.3.0",
73
70
  "@eslint/eslintrc": "^3.3.1",
74
71
  "@eslint/js": "^9.29.0",
75
72
  "@rollup/plugin-alias": "^5.1.1",
76
- "@storybook/cli": "^9.0.11",
77
- "@storybook/react": "^9.0.11",
78
- "@storybook/react-vite": "^9.0.11",
73
+ "@storybook/addon-links": "^9.0.13",
74
+ "@storybook/builder-vite": "^9.0.13",
75
+ "@storybook/cli": "^9.0.13",
76
+ "@storybook/react": "^9.0.13",
77
+ "@storybook/react-vite": "^9.0.13",
79
78
  "@stylistic/eslint-plugin": "^4.4.1",
80
79
  "@tailwindcss/postcss": "^4.1.10",
81
80
  "@tanstack/eslint-plugin-query": "^5.78.0",
@@ -99,7 +98,7 @@
99
98
  "eslint-plugin-next": "^0.0.0",
100
99
  "eslint-plugin-react": "^7.34.1",
101
100
  "eslint-plugin-simple-import-sort": "^12.1.1",
102
- "eslint-plugin-storybook": "^9.0.11",
101
+ "eslint-plugin-storybook": "^9.0.13",
103
102
  "eslint-plugin-testing-library": "^7.5.3",
104
103
  "eslint-plugin-unused-imports": "^4.1.4",
105
104
  "globals": "^16.2.0",
@@ -107,15 +106,24 @@
107
106
  "identity-obj-proxy": "^3.0.0",
108
107
  "jest": "^30.0.0",
109
108
  "jest-environment-jsdom": "^29.7.0",
109
+ "lint-staged": "^15.2.10",
110
110
  "postcss": "^8.5.5",
111
111
  "prettier": "^3.3.2",
112
112
  "react": "^19.1.0",
113
113
  "react-dom": "^19.1.0",
114
+ "rolldown": "1.0.0-beta.16",
115
+ "storybook": "^9.0.13",
114
116
  "tailwindcss": "4.0.0",
115
117
  "ts-jest": "^29.4.0",
116
118
  "ts-node": "^10.9.2",
117
119
  "tslib": "^2.6.2",
118
120
  "typescript": "^5.8.3",
119
121
  "vite": "5"
120
- }
122
+ },
123
+ "resolutions": {
124
+ "@storybook/react-vite": "^9.0.13",
125
+ "@storybook/builder-vite": "^9.0.13",
126
+ "@storybook/manager-vite": "^9.0.13"
127
+ },
128
+ "packageManager": "yarn@4.9.1+sha512.f95ce356460e05be48d66401c1ae64ef84d163dd689964962c6888a9810865e39097a5e9de748876c2e0bf89b232d583c33982773e9903ae7a76257270986538"
121
129
  }
File without changes
@@ -1,9 +0,0 @@
1
- import type { Meta, StoryObj } from '@storybook/react-vite';
2
- import { Checkbox } from './index';
3
- declare const meta: Meta<typeof Checkbox>;
4
- export default meta;
5
- type Story = StoryObj<typeof Checkbox>;
6
- export declare const Default: Story;
7
- export declare const Small: Story;
8
- export declare const Indeterminate: Story;
9
- export declare const ErrorState: Story;