uplord-ui 0.1.32 → 0.2.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 (46) hide show
  1. package/dist/.next/dev/types/validator.d.ts +1 -0
  2. package/dist/.next/types/validator.d.ts +1 -0
  3. package/dist/index.cjs.js +13 -1
  4. package/dist/index.css +1 -0
  5. package/dist/index.d.ts +2 -1
  6. package/dist/index.es.js +3341 -26
  7. package/dist/next.config.d.ts +3 -0
  8. package/dist/src/app/fonts.d.ts +2 -0
  9. package/dist/src/app/layout.d.ts +3 -0
  10. package/dist/src/app/page.d.ts +1 -0
  11. package/dist/src/components/Button/Button.d.ts +33 -0
  12. package/dist/src/components/Button/Button.stories.d.ts +11 -0
  13. package/dist/src/components/Button/index.d.ts +2 -0
  14. package/dist/src/components/Icon/Icon.d.ts +11 -0
  15. package/dist/src/components/Icon/Icon.stories.d.ts +6 -0
  16. package/dist/src/components/Icon/index.d.ts +2 -0
  17. package/dist/src/components/Test/Test.d.ts +1 -0
  18. package/dist/src/components/Test/index.d.ts +1 -0
  19. package/dist/src/context/NiceModalProvider.d.ts +4 -0
  20. package/dist/src/context/ThemeProvider.d.ts +7 -0
  21. package/dist/src/index.d.ts +2 -0
  22. package/dist/src/lib/color.d.ts +7 -0
  23. package/dist/src/lib/icons.d.ts +4 -0
  24. package/dist/src/types/block.d.ts +62 -0
  25. package/dist/src/types/system.d.ts +14 -0
  26. package/dist/tsconfig.build.tsbuildinfo +1 -0
  27. package/dist/vite.config.d.ts +2 -0
  28. package/package.json +35 -102
  29. package/dist/Rating-B0YCJQG5.js +0 -40571
  30. package/dist/Rating-tHGOSSCk.cjs +0 -7854
  31. package/dist/apple.png +0 -0
  32. package/dist/components/index.d.ts +0 -25
  33. package/dist/components.cjs.js +0 -1
  34. package/dist/components.es.js +0 -28
  35. package/dist/favicon.svg +0 -4
  36. package/dist/lib/index.d.ts +0 -2
  37. package/dist/lib.cjs.js +0 -1
  38. package/dist/lib.es.js +0 -332
  39. package/dist/styles/forward.scss +0 -3
  40. package/dist/styles/mixins.scss +0 -331
  41. package/dist/styles/typography.scss +0 -71
  42. package/dist/styles/variables.scss +0 -76
  43. package/dist/title.svg +0 -1
  44. package/dist/uplord-ui.css +0 -1
  45. package/dist/useMounted-DXrSfiau.cjs +0 -1
  46. package/dist/useMounted-L5oHFr3N.js +0 -11
package/package.json CHANGED
@@ -1,122 +1,55 @@
1
1
  {
2
2
  "name": "uplord-ui",
3
- "version": "0.1.32",
4
- "description": "A modern, reusable React UI library.",
3
+ "version": "0.2.0",
5
4
  "type": "module",
5
+ "files": [
6
+ "dist"
7
+ ],
6
8
  "main": "dist/index.cjs.js",
7
9
  "module": "dist/index.es.js",
8
10
  "types": "dist/index.d.ts",
9
- "files": [
10
- "dist",
11
- "components",
12
- "styles"
13
- ],
14
- "sideEffects": [
15
- "**/*.scss"
16
- ],
17
- "exports": {
18
- ".": {
19
- "types": "./dist/index.d.ts",
20
- "require": "./dist/index.cjs.js",
21
- "import": "./dist/index.es.js"
22
- },
23
- "./components": {
24
- "types": "./dist/components.d.ts",
25
- "require": "./dist/components.cjs.js",
26
- "import": "./dist/components.es.js"
27
- },
28
- "./lib": {
29
- "types": "./dist/lib.d.ts",
30
- "require": "./dist/lib.cjs.js",
31
- "import": "./dist/lib.es.js"
32
- },
33
- "./dist/uplord-ui.css": "./dist/uplord-ui.css",
34
- "./styles/forward": {
35
- "sass": "./dist/styles/forward.scss"
36
- },
37
- "./package.json": "./package.json"
38
- },
39
- "typesVersions": {
40
- "*": {
41
- "*": [
42
- "dist/*"
43
- ]
44
- }
45
- },
46
11
  "scripts": {
47
12
  "dev": "next dev",
48
13
  "build": "next build",
49
14
  "start": "next start",
50
- "lint": "next lint",
15
+ "lint": "eslint",
16
+ "build:vite": "vite build && tsc -p tsconfig.build.json",
51
17
  "storybook": "storybook dev -p 6006",
52
- "build-storybook": "storybook build",
53
- "build-vite": "npx vite build && node scripts/copy-scss.js",
54
- "release": "standard-version"
18
+ "build-storybook": "storybook build"
19
+ },
20
+ "peerDependencies": {
21
+ "react": "^19.2.3",
22
+ "react-dom": "^19.2.3"
55
23
  },
56
24
  "dependencies": {
57
- "date-fns": "^4.1.0",
58
- "formik": "^2.4.6",
59
- "framer-motion": "^12.6.3",
60
- "next": "15.3.4",
61
- "next-themes": "^0.4.3",
62
- "react": "^19.0.0",
63
- "react-dom": "^19.0.0",
64
- "react-responsive": "^10.0.1",
65
- "storybook-addon-pseudo-states": "^9.0.12",
66
- "stylelint-config-idiomatic-order": "^10.0.0",
67
- "yup": "^1.6.1"
25
+ "@ebay/nice-modal-react": "^1.2.13",
26
+ "clsx": "^2.1.1",
27
+ "lucide-react": "^0.563.0",
28
+ "next": "16.1.6",
29
+ "next-themes": "^0.4.6"
68
30
  },
69
31
  "devDependencies": {
70
- "@chromatic-com/storybook": "^4.0.1",
71
- "@ebay/nice-modal-react": "^1.2.13",
72
- "@eslint/eslintrc": "^3",
73
- "@storybook/addon-a11y": "^9.0.12",
74
- "@storybook/addon-docs": "^9.0.12",
75
- "@storybook/addon-onboarding": "^9.0.12",
76
- "@storybook/addon-styling-webpack": "^2.0.0",
77
- "@storybook/nextjs": "^9.0.12",
78
- "@storybook/preset-scss": "^1.0.3",
79
- "@svgr/webpack": "^8.1.0",
80
- "@trivago/prettier-plugin-sort-imports": "^5.2.2",
32
+ "@chromatic-com/storybook": "^5.0.0",
33
+ "@storybook/addon-a11y": "^10.2.3",
34
+ "@storybook/addon-docs": "^10.2.3",
35
+ "@storybook/addon-vitest": "^10.2.3",
36
+ "@storybook/nextjs-vite": "^10.2.3",
81
37
  "@types/node": "^20",
82
- "@types/react": "^19",
83
- "@types/react-dom": "^19",
84
- "@vitejs/plugin-react": "^4.5.2",
85
- "chromatic": "^13.0.1",
86
- "clsx": "^2.1.1",
87
- "css-loader": "^7.1.2",
38
+ "@types/react": "^19.2.10",
39
+ "@types/react-dom": "^19.2.3",
40
+ "@vitejs/plugin-react": "^5.1.2",
41
+ "@vitest/browser-playwright": "^4.0.18",
42
+ "@vitest/coverage-v8": "^4.0.18",
88
43
  "eslint": "^9",
89
- "eslint-config-next": "15.3.4",
90
- "eslint-plugin-storybook": "^9.0.12",
91
- "lint-staged": "^15.4.3",
92
- "lucide-react": "^0.474.0",
93
- "prettier": "^3.4.2",
94
- "sass": "^1.86.2",
95
- "sass-loader": "^16.0.5",
96
- "standard-version": "^9.5.0",
97
- "storybook": "^9.0.12",
98
- "storybook-addon-sass-postcss": "^0.3.2",
99
- "style-loader": "^4.0.0",
100
- "stylelint": "^16.20.0",
101
- "stylelint-config-standard-scss": "^15.0.1",
102
- "stylelint-order": "^7.0.0",
103
- "stylelint-scss": "^6.12.0",
104
- "typescript": "^5",
105
- "vite": "^6.3.5",
44
+ "eslint-config-next": "16.1.6",
45
+ "eslint-plugin-storybook": "^10.2.3",
46
+ "playwright": "^1.58.1",
47
+ "sass": "^1.97.3",
48
+ "storybook": "^10.2.3",
49
+ "storybook-addon-pseudo-states": "^10.2.3",
50
+ "typescript": "^5.9.3",
51
+ "vite": "^7.3.1",
106
52
  "vite-plugin-dts": "^4.5.4",
107
- "vite-plugin-svgr": "^4.3.0",
108
- "zod": "^3.24.1"
109
- },
110
- "lint-staged": {
111
- "*.{js,ts,tsx}": [
112
- "prettier --write",
113
- "eslint --fix"
114
- ],
115
- "*.json": "prettier --write",
116
- "*.scss": [
117
- "prettier --write",
118
- "stylelint --fix"
119
- ],
120
- "*.html": "prettier --write"
53
+ "vitest": "^4.0.18"
121
54
  }
122
55
  }