@devopness/ui-react 2.145.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 +75 -0
- package/dist/colors/getColor.d.ts +127 -0
- package/dist/colors/index.d.ts +2 -0
- package/dist/colors/types.d.ts +23 -0
- package/dist/components/Buttons/Button/Button.d.ts +64 -0
- package/dist/components/Buttons/Button/Button.styled.d.ts +26 -0
- package/dist/components/Buttons/Button/index.d.ts +1 -0
- package/dist/components/Buttons/index.d.ts +1 -0
- package/dist/components/Primitives/Tooltip/Tooltip.d.ts +41 -0
- package/dist/components/Primitives/Tooltip/Tooltip.styled.d.ts +2 -0
- package/dist/components/Primitives/Tooltip/index.d.ts +1 -0
- package/dist/components/Primitives/index.d.ts +1 -0
- package/dist/components/Templates/Tabs/Tabs.d.ts +20 -0
- package/dist/components/Templates/Tabs/Tabs.styled.d.ts +7 -0
- package/dist/components/Templates/Tabs/index.d.ts +1 -0
- package/dist/components/Templates/index.d.ts +1 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/fonts/getFont.d.ts +15 -0
- package/dist/fonts/index.d.ts +1 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/useWindowSize.d.ts +2 -0
- package/dist/icons/CircleBubble.d.ts +5 -0
- package/dist/icons/getImageAssetUrl.d.ts +7 -0
- package/dist/icons/iconLoader.d.ts +419 -0
- package/dist/icons/index.d.ts +3 -0
- package/dist/index.d.ts +4 -0
- package/dist/ui-react.js +11781 -0
- package/package.json +117 -0
package/package.json
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@devopness/ui-react",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "2.145.0",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"description": "Devopness Design System React Components - Painless essential DevOps to everyone",
|
|
9
|
+
"main": "dist/ui-react.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "dist/ui-react.js",
|
|
17
|
+
"types": "dist/index.d.ts"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "rm -Rf dist && tsc -b && vite build",
|
|
22
|
+
"lint": "eslint . && prettier --check .",
|
|
23
|
+
"test": "vitest",
|
|
24
|
+
"storybook": "storybook dev -p 6006",
|
|
25
|
+
"build-storybook": "NODE_ENV=production storybook build -c .storybook -o ./storybook-static",
|
|
26
|
+
"prepublishOnly": "npm test",
|
|
27
|
+
"prepare": "npm run build",
|
|
28
|
+
"preversion": "npm run lint"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/devopness/devopness.git"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"Cloud Engineering",
|
|
36
|
+
"Cloud Infrastructure Management",
|
|
37
|
+
"Cloud Platform Engineering",
|
|
38
|
+
"Configuration Management",
|
|
39
|
+
"DevOps",
|
|
40
|
+
"Devopness",
|
|
41
|
+
"Deploy",
|
|
42
|
+
"Deployment",
|
|
43
|
+
"Platform Engineering",
|
|
44
|
+
"Zero Downtime Deploy",
|
|
45
|
+
"Server Management"
|
|
46
|
+
],
|
|
47
|
+
"author": "Devopness (https://www.devopness.com)",
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"release": {
|
|
50
|
+
"branches": [
|
|
51
|
+
"main"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/devopness/devopness/issues"
|
|
56
|
+
},
|
|
57
|
+
"homepage": "https://github.com/devopness/devopness#readme",
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@mui/material": "^6.1.2",
|
|
60
|
+
"@mui/styled-engine-sc": "^6.1.2",
|
|
61
|
+
"@react-icons/all-files": "https://github.com/react-icons/react-icons/releases/download/v5.2.1/react-icons-all-files-5.2.1.tgz",
|
|
62
|
+
"framer-motion": "^11.9.0",
|
|
63
|
+
"ldrs": "^1.0.2",
|
|
64
|
+
"lodash": "^4.17.21",
|
|
65
|
+
"path-browserify": "^1.0.1",
|
|
66
|
+
"styled-components": "^6.1.13"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@emotion/styled": "^11.13.0",
|
|
70
|
+
"@eslint/js": "^9.9.0",
|
|
71
|
+
"@storybook/addon-essentials": "^8.3.4",
|
|
72
|
+
"@storybook/blocks": "^8.3.4",
|
|
73
|
+
"@storybook/react": "^8.3.4",
|
|
74
|
+
"@storybook/react-vite": "^8.3.4",
|
|
75
|
+
"@storybook/test": "^8.3.4",
|
|
76
|
+
"@testing-library/react": "^16.0.1",
|
|
77
|
+
"@types/lodash": "^4.17.9",
|
|
78
|
+
"@types/node": "^22.7.4",
|
|
79
|
+
"@types/path-browserify": "^1.0.3",
|
|
80
|
+
"@types/react": "^18.3.3",
|
|
81
|
+
"@types/react-dom": "^18.3.0",
|
|
82
|
+
"@vitejs/plugin-react-swc": "^3.7.1",
|
|
83
|
+
"eslint": "^8.57.1",
|
|
84
|
+
"eslint-plugin-import": "^2.30.0",
|
|
85
|
+
"eslint-plugin-import-helpers": "^1.3.1",
|
|
86
|
+
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
87
|
+
"eslint-plugin-react": "^7.37.0",
|
|
88
|
+
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
89
|
+
"eslint-plugin-react-refresh": "^0.4.9",
|
|
90
|
+
"eslint-plugin-storybook": "^0.9.0",
|
|
91
|
+
"globals": "^15.9.0",
|
|
92
|
+
"jsdom": "^25.0.1",
|
|
93
|
+
"prettier": "^3.3.3",
|
|
94
|
+
"prettier-plugin-multiline-arrays": "^3.0.6",
|
|
95
|
+
"react": "^18.3.1",
|
|
96
|
+
"react-dom": "^18.3.1",
|
|
97
|
+
"storybook": "^8.3.4",
|
|
98
|
+
"typescript": "^5.5.3",
|
|
99
|
+
"typescript-eslint": "^8.0.1",
|
|
100
|
+
"vite": "^5.4.1",
|
|
101
|
+
"vite-plugin-dts": "^4.2.3",
|
|
102
|
+
"vite-tsconfig-paths": "^5.0.1",
|
|
103
|
+
"vitest": "^2.1.2"
|
|
104
|
+
},
|
|
105
|
+
"peerDependencies": {
|
|
106
|
+
"react": "^18.3.1",
|
|
107
|
+
"react-dom": "^18.3.1"
|
|
108
|
+
},
|
|
109
|
+
"eslintConfig": {
|
|
110
|
+
"extends": [
|
|
111
|
+
"plugin:storybook/recommended"
|
|
112
|
+
]
|
|
113
|
+
},
|
|
114
|
+
"overrides": {
|
|
115
|
+
"styled-components": "$styled-components"
|
|
116
|
+
}
|
|
117
|
+
}
|