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.
- package/dist/.next/dev/types/validator.d.ts +1 -0
- package/dist/.next/types/validator.d.ts +1 -0
- package/dist/index.cjs.js +13 -1
- package/dist/index.css +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.es.js +3341 -26
- package/dist/next.config.d.ts +3 -0
- package/dist/src/app/fonts.d.ts +2 -0
- package/dist/src/app/layout.d.ts +3 -0
- package/dist/src/app/page.d.ts +1 -0
- package/dist/src/components/Button/Button.d.ts +33 -0
- package/dist/src/components/Button/Button.stories.d.ts +11 -0
- package/dist/src/components/Button/index.d.ts +2 -0
- package/dist/src/components/Icon/Icon.d.ts +11 -0
- package/dist/src/components/Icon/Icon.stories.d.ts +6 -0
- package/dist/src/components/Icon/index.d.ts +2 -0
- package/dist/src/components/Test/Test.d.ts +1 -0
- package/dist/src/components/Test/index.d.ts +1 -0
- package/dist/src/context/NiceModalProvider.d.ts +4 -0
- package/dist/src/context/ThemeProvider.d.ts +7 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/lib/color.d.ts +7 -0
- package/dist/src/lib/icons.d.ts +4 -0
- package/dist/src/types/block.d.ts +62 -0
- package/dist/src/types/system.d.ts +14 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/dist/vite.config.d.ts +2 -0
- package/package.json +35 -102
- package/dist/Rating-B0YCJQG5.js +0 -40571
- package/dist/Rating-tHGOSSCk.cjs +0 -7854
- package/dist/apple.png +0 -0
- package/dist/components/index.d.ts +0 -25
- package/dist/components.cjs.js +0 -1
- package/dist/components.es.js +0 -28
- package/dist/favicon.svg +0 -4
- package/dist/lib/index.d.ts +0 -2
- package/dist/lib.cjs.js +0 -1
- package/dist/lib.es.js +0 -332
- package/dist/styles/forward.scss +0 -3
- package/dist/styles/mixins.scss +0 -331
- package/dist/styles/typography.scss +0 -71
- package/dist/styles/variables.scss +0 -76
- package/dist/title.svg +0 -1
- package/dist/uplord-ui.css +0 -1
- package/dist/useMounted-DXrSfiau.cjs +0 -1
- 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.
|
|
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": "
|
|
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
|
-
|
|
54
|
-
|
|
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
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"next": "
|
|
61
|
-
"next-themes": "^0.4.
|
|
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": "^
|
|
71
|
-
"@
|
|
72
|
-
"@
|
|
73
|
-
"@storybook/addon-
|
|
74
|
-
"@storybook/
|
|
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": "^
|
|
85
|
-
"
|
|
86
|
-
"
|
|
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": "
|
|
90
|
-
"eslint-plugin-storybook": "^
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
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
|
-
"
|
|
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
|
}
|