@cfx-dev/ui-components 3.0.0 → 3.0.1
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/LICENSE +20 -20
- package/README.md +38 -38
- package/dist/components/Logos/LogosShowcase.js +2 -2
- package/dist/components/Logos/cfx/CompositeLogo.js +74 -14
- package/dist/styles-scss/_colors.scss +211 -211
- package/dist/styles-scss/_typography.scss +51 -51
- package/dist/styles-scss/_ui.scss +359 -359
- package/dist/styles-scss/global.scss +142 -142
- package/dist/styles-scss/themes/theme_cfx.scss +32 -32
- package/dist/styles-scss/themes/theme_fivem.scss +32 -32
- package/dist/styles-scss/themes/theme_redm.scss +32 -32
- package/dist/styles-scss/themes/theme_wireframe.scss +32 -32
- package/dist/styles-scss/themes.scss +3 -3
- package/dist/styles-scss/tokens.scss +409 -409
- package/package.json +70 -70
package/package.json
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@cfx-dev/ui-components",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "3.0.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"main": "dist/main.js",
|
|
8
|
-
"types": "dist/main.d.ts",
|
|
9
|
-
"files": [
|
|
10
|
-
"dist/**/*"
|
|
11
|
-
],
|
|
12
|
-
"sideEffects": [
|
|
13
|
-
"**/*.css"
|
|
14
|
-
],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"dev": "vite",
|
|
17
|
-
"build": "tsc --p ./tsconfig-build.json && vite build",
|
|
18
|
-
"lint": "eslint --quiet \"src/**/*{ts,tsx}\" \"lib/**/*{ts,tsx}\"",
|
|
19
|
-
"lint:fix": "eslint --fix --quiet \"src/**/*{ts,tsx}\" \"lib/**/*{ts,tsx}\"",
|
|
20
|
-
"test": "vitest run",
|
|
21
|
-
"preview": "vite preview",
|
|
22
|
-
"prepublishOnly": "yarn build",
|
|
23
|
-
"storybook": "storybook dev -p 6006",
|
|
24
|
-
"build-storybook": "storybook build"
|
|
25
|
-
},
|
|
26
|
-
"dependencies": {
|
|
27
|
-
"@radix-ui/react-checkbox": "^1.1.1",
|
|
28
|
-
"@radix-ui/react-select": "^2.1.1",
|
|
29
|
-
"@radix-ui/react-switch": "^1.1.0",
|
|
30
|
-
"@storybook/addons": "^7.6.17",
|
|
31
|
-
"autolinker": "^3.14.3",
|
|
32
|
-
"flag-icons": "^6.1.1",
|
|
33
|
-
"react": "^18.2.0",
|
|
34
|
-
"react-dom": "^18.2.0",
|
|
35
|
-
"react-dropzone": "^14.2.3",
|
|
36
|
-
"react-focus-lock": "^2.9.1",
|
|
37
|
-
"react-icons": "^4.4.0",
|
|
38
|
-
"react-window": "^1.8.8"
|
|
39
|
-
},
|
|
40
|
-
"devDependencies": {
|
|
41
|
-
"@cfx-dev/eslint-config-ui": "^1.
|
|
42
|
-
"@chromatic-com/storybook": "1.5.0",
|
|
43
|
-
"@storybook/addon-essentials": "^8.1.5",
|
|
44
|
-
"@storybook/addon-interactions": "^8.1.5",
|
|
45
|
-
"@storybook/addon-links": "^8.1.5",
|
|
46
|
-
"@storybook/addon-onboarding": "^8.1.5",
|
|
47
|
-
"@storybook/blocks": "^8.1.5",
|
|
48
|
-
"@storybook/react": "^8.1.5",
|
|
49
|
-
"@storybook/react-vite": "^8.1.5",
|
|
50
|
-
"@storybook/test": "^8.1.5",
|
|
51
|
-
"@types/node": "^20.12.13",
|
|
52
|
-
"@types/react": "^18.2.66",
|
|
53
|
-
"@types/react-dom": "^18.2.22",
|
|
54
|
-
"@types/react-window": "^1.8.8",
|
|
55
|
-
"@vitejs/plugin-react": "^4.2.1",
|
|
56
|
-
"eslint": "^8.57.0",
|
|
57
|
-
"eslint-plugin-storybook": "^0.8.0",
|
|
58
|
-
"glob": "^10.4.1",
|
|
59
|
-
"sass": "^1.77.4",
|
|
60
|
-
"storybook": "^8.1.5",
|
|
61
|
-
"typescript": "^5.2.2",
|
|
62
|
-
"vite": "^5.2.0",
|
|
63
|
-
"vite-plugin-dts": "^3.9.1",
|
|
64
|
-
"vite-plugin-static-copy": "^1.0.5",
|
|
65
|
-
"vitest": "^1.6.0"
|
|
66
|
-
},
|
|
67
|
-
"resolutions": {
|
|
68
|
-
"jackspeak": "2.1.1"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@cfx-dev/ui-components",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "3.0.1",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"main": "dist/main.js",
|
|
8
|
+
"types": "dist/main.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/**/*"
|
|
11
|
+
],
|
|
12
|
+
"sideEffects": [
|
|
13
|
+
"**/*.css"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "vite",
|
|
17
|
+
"build": "tsc --p ./tsconfig-build.json && vite build",
|
|
18
|
+
"lint": "eslint --quiet \"src/**/*{ts,tsx}\" \"lib/**/*{ts,tsx}\"",
|
|
19
|
+
"lint:fix": "eslint --fix --quiet \"src/**/*{ts,tsx}\" \"lib/**/*{ts,tsx}\"",
|
|
20
|
+
"test": "vitest run",
|
|
21
|
+
"preview": "vite preview",
|
|
22
|
+
"prepublishOnly": "yarn build",
|
|
23
|
+
"storybook": "storybook dev -p 6006",
|
|
24
|
+
"build-storybook": "storybook build"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@radix-ui/react-checkbox": "^1.1.1",
|
|
28
|
+
"@radix-ui/react-select": "^2.1.1",
|
|
29
|
+
"@radix-ui/react-switch": "^1.1.0",
|
|
30
|
+
"@storybook/addons": "^7.6.17",
|
|
31
|
+
"autolinker": "^3.14.3",
|
|
32
|
+
"flag-icons": "^6.1.1",
|
|
33
|
+
"react": "^18.2.0",
|
|
34
|
+
"react-dom": "^18.2.0",
|
|
35
|
+
"react-dropzone": "^14.2.3",
|
|
36
|
+
"react-focus-lock": "^2.9.1",
|
|
37
|
+
"react-icons": "^4.4.0",
|
|
38
|
+
"react-window": "^1.8.8"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@cfx-dev/eslint-config-ui": "^1.1.0",
|
|
42
|
+
"@chromatic-com/storybook": "1.5.0",
|
|
43
|
+
"@storybook/addon-essentials": "^8.1.5",
|
|
44
|
+
"@storybook/addon-interactions": "^8.1.5",
|
|
45
|
+
"@storybook/addon-links": "^8.1.5",
|
|
46
|
+
"@storybook/addon-onboarding": "^8.1.5",
|
|
47
|
+
"@storybook/blocks": "^8.1.5",
|
|
48
|
+
"@storybook/react": "^8.1.5",
|
|
49
|
+
"@storybook/react-vite": "^8.1.5",
|
|
50
|
+
"@storybook/test": "^8.1.5",
|
|
51
|
+
"@types/node": "^20.12.13",
|
|
52
|
+
"@types/react": "^18.2.66",
|
|
53
|
+
"@types/react-dom": "^18.2.22",
|
|
54
|
+
"@types/react-window": "^1.8.8",
|
|
55
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
56
|
+
"eslint": "^8.57.0",
|
|
57
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
58
|
+
"glob": "^10.4.1",
|
|
59
|
+
"sass": "^1.77.4",
|
|
60
|
+
"storybook": "^8.1.5",
|
|
61
|
+
"typescript": "^5.2.2",
|
|
62
|
+
"vite": "^5.2.0",
|
|
63
|
+
"vite-plugin-dts": "^3.9.1",
|
|
64
|
+
"vite-plugin-static-copy": "^1.0.5",
|
|
65
|
+
"vitest": "^1.6.0"
|
|
66
|
+
},
|
|
67
|
+
"resolutions": {
|
|
68
|
+
"jackspeak": "2.1.1"
|
|
69
|
+
}
|
|
70
|
+
}
|