@devopness/ui-react 2.146.0 → 2.148.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/README.md +9 -3
- package/dist/index.d.ts +2 -4
- package/dist/{colors → src/colors}/getColor.d.ts +21 -2
- package/dist/{colors → src/colors}/index.d.ts +0 -1
- package/dist/{colors → src/colors}/types.d.ts +19 -1
- package/dist/{components → src/components}/Buttons/Button/Button.d.ts +2 -2
- package/dist/src/components/Forms/Alert/Alert.d.ts +38 -0
- package/dist/src/components/Forms/Alert/Alert.styled.d.ts +12 -0
- package/dist/src/components/Forms/Alert/index.d.ts +1 -0
- package/dist/src/components/Forms/index.d.ts +1 -0
- package/dist/src/components/Primitives/Dropdown/Dropdown.d.ts +165 -0
- package/dist/src/components/Primitives/Dropdown/Dropdown.styled.d.ts +17 -0
- package/dist/src/components/Primitives/Dropdown/index.d.ts +1 -0
- package/dist/src/components/Primitives/Icon/Icon.d.ts +44 -0
- package/dist/src/components/Primitives/Icon/index.d.ts +1 -0
- package/dist/src/components/Primitives/Link/Link.d.ts +51 -0
- package/dist/src/components/Primitives/Link/Link.styled.d.ts +6 -0
- package/dist/src/components/Primitives/Link/index.d.ts +1 -0
- package/dist/{components → src/components}/Primitives/Tooltip/Tooltip.d.ts +4 -2
- package/dist/src/components/Primitives/index.d.ts +5 -0
- package/dist/{components → src/components}/Templates/Tabs/Tabs.styled.d.ts +1 -1
- package/dist/src/components/helpers.d.ts +10 -0
- package/dist/src/components/types.d.ts +27 -0
- package/dist/src/index.d.ts +4 -0
- package/dist/ui-react.cjs +205 -99
- package/dist/ui-react.js +8410 -5580
- package/dist/vitest.config.d.ts +2 -0
- package/package.json +41 -34
- package/dist/components/Primitives/index.d.ts +0 -1
- /package/dist/{components → src/components}/Buttons/Button/Button.styled.d.ts +0 -0
- /package/dist/{components → src/components}/Buttons/Button/index.d.ts +0 -0
- /package/dist/{components → src/components}/Buttons/index.d.ts +0 -0
- /package/dist/{components → src/components}/Primitives/Tooltip/Tooltip.styled.d.ts +0 -0
- /package/dist/{components → src/components}/Primitives/Tooltip/index.d.ts +0 -0
- /package/dist/{components → src/components}/Templates/Tabs/Tabs.d.ts +0 -0
- /package/dist/{components → src/components}/Templates/Tabs/index.d.ts +0 -0
- /package/dist/{components → src/components}/Templates/index.d.ts +0 -0
- /package/dist/{components → src/components}/index.d.ts +0 -0
- /package/dist/{fonts → src/fonts}/getFont.d.ts +0 -0
- /package/dist/{fonts → src/fonts}/index.d.ts +0 -0
- /package/dist/{hooks → src/hooks}/index.d.ts +0 -0
- /package/dist/{hooks → src/hooks}/useWindowSize.d.ts +0 -0
- /package/dist/{icons → src/icons}/CircleBubble.d.ts +0 -0
- /package/dist/{icons → src/icons}/getImageAssetUrl.d.ts +0 -0
- /package/dist/{icons → src/icons}/iconLoader.d.ts +0 -0
- /package/dist/{icons → src/icons}/index.d.ts +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/package.json",
|
|
2
3
|
"name": "@devopness/ui-react",
|
|
3
4
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
5
|
+
"version": "2.148.0",
|
|
5
6
|
"publishConfig": {
|
|
6
7
|
"access": "public"
|
|
7
8
|
},
|
|
@@ -14,14 +15,14 @@
|
|
|
14
15
|
],
|
|
15
16
|
"exports": {
|
|
16
17
|
".": {
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/ui-react.js",
|
|
20
|
+
"require": "./dist/ui-react.cjs"
|
|
20
21
|
}
|
|
21
22
|
},
|
|
22
23
|
"scripts": {
|
|
23
24
|
"build": "rm -Rf dist && tsc -b && vite build",
|
|
24
|
-
"lint": "eslint . && prettier --check .",
|
|
25
|
+
"lint": "eslint --max-warnings=0 . && prettier --check .",
|
|
25
26
|
"test": "vitest",
|
|
26
27
|
"storybook": "storybook dev -p 6006",
|
|
27
28
|
"build-storybook": "NODE_ENV=production storybook build -c .storybook -o ./storybook-static",
|
|
@@ -58,51 +59,54 @@
|
|
|
58
59
|
},
|
|
59
60
|
"homepage": "https://github.com/devopness/devopness#readme",
|
|
60
61
|
"dependencies": {
|
|
61
|
-
"@mui/material": "^6.
|
|
62
|
-
"@mui/styled-engine-sc": "^6.
|
|
62
|
+
"@mui/material": "^6.2.0",
|
|
63
|
+
"@mui/styled-engine-sc": "^6.2.0",
|
|
63
64
|
"@react-icons/all-files": "https://github.com/react-icons/react-icons/releases/download/v5.2.1/react-icons-all-files-5.2.1.tgz",
|
|
64
|
-
"framer-motion": "^11.
|
|
65
|
+
"framer-motion": "^11.15.0",
|
|
65
66
|
"ldrs": "^1.0.2",
|
|
66
67
|
"lodash": "^4.17.21",
|
|
68
|
+
"material-ui-popup-state": "^5.3.3",
|
|
67
69
|
"path-browserify": "^1.0.1",
|
|
68
70
|
"styled-components": "^6.1.13"
|
|
69
71
|
},
|
|
70
72
|
"devDependencies": {
|
|
71
|
-
"@emotion/styled": "^11.
|
|
72
|
-
"@eslint/js": "^9.
|
|
73
|
-
"@storybook/addon-essentials": "^8.
|
|
74
|
-
"@storybook/blocks": "^8.
|
|
75
|
-
"@storybook/
|
|
76
|
-
"@storybook/react
|
|
77
|
-
"@storybook/
|
|
78
|
-
"@
|
|
79
|
-
"@
|
|
80
|
-
"@
|
|
73
|
+
"@emotion/styled": "^11.14.0",
|
|
74
|
+
"@eslint/js": "^9.17.0",
|
|
75
|
+
"@storybook/addon-essentials": "^8.4.7",
|
|
76
|
+
"@storybook/blocks": "^8.4.7",
|
|
77
|
+
"@storybook/manager-api": "^8.4.7",
|
|
78
|
+
"@storybook/react": "^8.4.7",
|
|
79
|
+
"@storybook/react-vite": "^8.4.7",
|
|
80
|
+
"@storybook/test": "^8.4.7",
|
|
81
|
+
"@storybook/theming": "^8.4.7",
|
|
82
|
+
"@testing-library/react": "^16.1.0",
|
|
83
|
+
"@types/lodash": "^4.17.13",
|
|
84
|
+
"@types/node": "^22.10.2",
|
|
81
85
|
"@types/path-browserify": "^1.0.3",
|
|
82
|
-
"@types/react": "^18.3.
|
|
86
|
+
"@types/react": "^18.3.13",
|
|
83
87
|
"@types/react-dom": "^18.3.0",
|
|
84
|
-
"@vitejs/plugin-react-swc": "^3.7.
|
|
88
|
+
"@vitejs/plugin-react-swc": "^3.7.2",
|
|
85
89
|
"eslint": "^8.57.1",
|
|
86
90
|
"eslint-plugin-import": "^2.30.0",
|
|
87
91
|
"eslint-plugin-import-helpers": "^1.3.1",
|
|
88
92
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
89
93
|
"eslint-plugin-react": "^7.37.0",
|
|
90
|
-
"eslint-plugin-react-hooks": "^5.1.0
|
|
91
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
92
|
-
"eslint-plugin-storybook": "^0.
|
|
93
|
-
"globals": "^15.
|
|
94
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
95
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
96
|
+
"eslint-plugin-storybook": "^0.11.1",
|
|
97
|
+
"globals": "^15.13.0",
|
|
94
98
|
"jsdom": "^25.0.1",
|
|
95
|
-
"prettier": "^3.
|
|
96
|
-
"prettier-plugin-multiline-arrays": "^
|
|
99
|
+
"prettier": "^3.4.2",
|
|
100
|
+
"prettier-plugin-multiline-arrays": "^4.0.1",
|
|
97
101
|
"react": "^18.3.1",
|
|
98
102
|
"react-dom": "^18.3.1",
|
|
99
|
-
"storybook": "^8.
|
|
100
|
-
"typescript": "^5.
|
|
101
|
-
"typescript-eslint": "
|
|
102
|
-
"vite": "^
|
|
103
|
-
"vite-plugin-dts": "^4.
|
|
104
|
-
"vite-tsconfig-paths": "^5.
|
|
105
|
-
"vitest": "^2.1.
|
|
103
|
+
"storybook": "^8.4.7",
|
|
104
|
+
"typescript": "^5.7.2",
|
|
105
|
+
"typescript-eslint": "~8.19.0",
|
|
106
|
+
"vite": "^6.0.3",
|
|
107
|
+
"vite-plugin-dts": "^4.3.0",
|
|
108
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
109
|
+
"vitest": "^2.1.8"
|
|
106
110
|
},
|
|
107
111
|
"peerDependencies": {
|
|
108
112
|
"react": "^18.3.1",
|
|
@@ -114,6 +118,9 @@
|
|
|
114
118
|
]
|
|
115
119
|
},
|
|
116
120
|
"overrides": {
|
|
117
|
-
"styled-components": "$styled-components"
|
|
121
|
+
"styled-components": "$styled-components",
|
|
122
|
+
"vitest": {
|
|
123
|
+
"vite": "$vite"
|
|
124
|
+
}
|
|
118
125
|
}
|
|
119
126
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './Tooltip';
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|