@geomak/ui 1.1.0 → 1.3.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/chunk-DNQSZOYD.js +152 -0
- package/dist/chunk-DNQSZOYD.js.map +1 -0
- package/dist/chunk-ZS3HB5YJ.cjs +157 -0
- package/dist/chunk-ZS3HB5YJ.cjs.map +1 -0
- package/dist/index-CPCiQllz.d.cts +191 -0
- package/dist/index-CPCiQllz.d.ts +191 -0
- package/dist/index.cjs +234 -120
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +81 -51
- package/dist/index.d.ts +81 -51
- package/dist/index.js +194 -95
- package/dist/index.js.map +1 -1
- package/dist/tokens/index.cjs +20 -0
- package/dist/tokens/index.cjs.map +1 -0
- package/dist/tokens/index.d.cts +1 -0
- package/dist/tokens/index.d.ts +1 -0
- package/dist/tokens/index.js +3 -0
- package/dist/tokens/index.js.map +1 -0
- package/package.json +92 -80
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkZS3HB5YJ_cjs = require('../chunk-ZS3HB5YJ.cjs');
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Object.defineProperty(exports, "palette", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () { return chunkZS3HB5YJ_cjs.PALETTE; }
|
|
10
|
+
});
|
|
11
|
+
Object.defineProperty(exports, "semanticTokens", {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () { return chunkZS3HB5YJ_cjs.semanticTokens; }
|
|
14
|
+
});
|
|
15
|
+
Object.defineProperty(exports, "vars", {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return chunkZS3HB5YJ_cjs.vars; }
|
|
18
|
+
});
|
|
19
|
+
//# sourceMappingURL=index.cjs.map
|
|
20
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.cjs"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { S as SemanticColorKey, a as SemanticRadiusKey, V as VarColorKey, b as VarRadiusKey, c as VarShadowKey, P as palette, s as semanticTokens, v as vars } from '../index-CPCiQllz.cjs';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { S as SemanticColorKey, a as SemanticRadiusKey, V as VarColorKey, b as VarRadiusKey, c as VarShadowKey, P as palette, s as semanticTokens, v as vars } from '../index-CPCiQllz.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|
package/package.json
CHANGED
|
@@ -1,84 +1,96 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
},
|
|
15
|
-
"./styles": "./dist/styles.css"
|
|
2
|
+
"name": "@geomak/ui",
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"description": "Oxygen Design System — reusable UI primitives built with Radix UI behaviours and Tailwind CSS styling",
|
|
5
|
+
"author": "G-MAKROGLOU",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"private": false,
|
|
8
|
+
"type": "module",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
16
14
|
},
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
],
|
|
23
|
-
"sideEffects": [
|
|
24
|
-
"**/*.css"
|
|
25
|
-
],
|
|
26
|
-
"scripts": {
|
|
27
|
-
"build": "tsup",
|
|
28
|
-
"dev": "tsup --watch",
|
|
29
|
-
"storybook": "storybook dev -p 6006",
|
|
30
|
-
"build-storybook": "storybook build",
|
|
31
|
-
"typecheck": "tsc --noEmit",
|
|
32
|
-
"lint": "eslint src --max-warnings 0",
|
|
33
|
-
"lint:fix": "eslint src --fix",
|
|
34
|
-
"test": "yarn typecheck && yarn lint"
|
|
35
|
-
},
|
|
36
|
-
"dependencies": {
|
|
37
|
-
"@radix-ui/react-accordion": "^1.2.11",
|
|
38
|
-
"@radix-ui/react-checkbox": "^1.3.2",
|
|
39
|
-
"@radix-ui/react-dialog": "^1.1.14",
|
|
40
|
-
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
41
|
-
"@radix-ui/react-popover": "^1.1.14",
|
|
42
|
-
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
43
|
-
"@radix-ui/react-switch": "^1.2.5",
|
|
44
|
-
"@radix-ui/react-tabs": "^1.1.12",
|
|
45
|
-
"@radix-ui/react-toast": "^1.2.14",
|
|
46
|
-
"@radix-ui/react-toggle": "^1.1.9",
|
|
47
|
-
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
48
|
-
"@radix-ui/react-tooltip": "^1.2.7",
|
|
49
|
-
"framer-motion": "^12.40.0"
|
|
50
|
-
},
|
|
51
|
-
"peerDependencies": {
|
|
52
|
-
"react": "^19.0.0",
|
|
53
|
-
"react-dom": "^19.0.0"
|
|
54
|
-
},
|
|
55
|
-
"devDependencies": {
|
|
56
|
-
"@chromatic-com/storybook": "^3",
|
|
57
|
-
"@semantic-release/changelog": "^6.0.3",
|
|
58
|
-
"@semantic-release/git": "^10.0.1",
|
|
59
|
-
"@storybook/addon-essentials": "^8.6.12",
|
|
60
|
-
"@storybook/addon-interactions": "^8.6.12",
|
|
61
|
-
"@storybook/addon-links": "^8.6.12",
|
|
62
|
-
"@storybook/blocks": "^8.6.12",
|
|
63
|
-
"@storybook/react": "^8.6.12",
|
|
64
|
-
"@storybook/react-vite": "^8.6.12",
|
|
65
|
-
"@storybook/test": "^8.6.12",
|
|
66
|
-
"@types/node": "^25.9.1",
|
|
67
|
-
"@types/react": "^19.2.15",
|
|
68
|
-
"@types/react-dom": "^19.2.3",
|
|
69
|
-
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
70
|
-
"@typescript-eslint/parser": "^8.0.0",
|
|
71
|
-
"@vitejs/plugin-react": "^6.0.2",
|
|
72
|
-
"autoprefixer": "^10.4.11",
|
|
73
|
-
"eslint": "^9.0.0",
|
|
74
|
-
"eslint-plugin-react": "^7.37.0",
|
|
75
|
-
"eslint-plugin-react-hooks": "^5.0.0",
|
|
76
|
-
"postcss": "^8.4.16",
|
|
77
|
-
"semantic-release": "^24.0.0",
|
|
78
|
-
"storybook": "^8.6.12",
|
|
79
|
-
"tailwindcss": "^3.1.8",
|
|
80
|
-
"tsup": "^8.5.0",
|
|
81
|
-
"typescript": "^6.0.3",
|
|
82
|
-
"vite": "^8.0.14"
|
|
15
|
+
"./styles": "./dist/styles.css",
|
|
16
|
+
"./tokens": {
|
|
17
|
+
"types": "./dist/tokens/index.d.ts",
|
|
18
|
+
"import": "./dist/tokens/index.js",
|
|
19
|
+
"require": "./dist/tokens/index.cjs"
|
|
83
20
|
}
|
|
21
|
+
},
|
|
22
|
+
"main": "./dist/index.cjs",
|
|
23
|
+
"module": "./dist/index.js",
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"sideEffects": [
|
|
29
|
+
"**/*.css"
|
|
30
|
+
],
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "tsup",
|
|
33
|
+
"dev": "tsup --watch",
|
|
34
|
+
"storybook": "storybook dev -p 6006",
|
|
35
|
+
"build-storybook": "storybook build",
|
|
36
|
+
"typecheck": "tsc --noEmit",
|
|
37
|
+
"lint": "eslint src --max-warnings 0",
|
|
38
|
+
"lint:fix": "eslint src --fix",
|
|
39
|
+
"test": "yarn typecheck && yarn lint"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@radix-ui/react-accordion": "^1.2.11",
|
|
43
|
+
"@radix-ui/react-checkbox": "^1.3.2",
|
|
44
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
45
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
46
|
+
"@radix-ui/react-popover": "^1.1.14",
|
|
47
|
+
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
48
|
+
"@radix-ui/react-switch": "^1.2.5",
|
|
49
|
+
"@radix-ui/react-tabs": "^1.1.12",
|
|
50
|
+
"@radix-ui/react-toast": "^1.2.14",
|
|
51
|
+
"@radix-ui/react-toggle": "^1.1.9",
|
|
52
|
+
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
53
|
+
"@radix-ui/react-tooltip": "^1.2.7",
|
|
54
|
+
"framer-motion": "^12.40.0"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"react": "^19.0.0",
|
|
58
|
+
"react-dom": "^19.0.0"
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@chromatic-com/storybook": "^3",
|
|
62
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
63
|
+
"@semantic-release/git": "^10.0.1",
|
|
64
|
+
"@storybook/addon-essentials": "^8.6.12",
|
|
65
|
+
"@storybook/addon-interactions": "^8.6.12",
|
|
66
|
+
"@storybook/addon-links": "^8.6.12",
|
|
67
|
+
"@storybook/blocks": "^8.6.12",
|
|
68
|
+
"@storybook/react": "^8.6.12",
|
|
69
|
+
"@storybook/react-vite": "^8.6.12",
|
|
70
|
+
"@storybook/test": "^8.6.12",
|
|
71
|
+
"@types/node": "^25.9.1",
|
|
72
|
+
"@types/react": "^19.2.15",
|
|
73
|
+
"@types/react-dom": "^19.2.3",
|
|
74
|
+
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
75
|
+
"@typescript-eslint/parser": "^8.0.0",
|
|
76
|
+
"@vitejs/plugin-react": "^6.0.2",
|
|
77
|
+
"autoprefixer": "^10.4.11",
|
|
78
|
+
"eslint": "^9.0.0",
|
|
79
|
+
"eslint-plugin-react": "^7.37.0",
|
|
80
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
81
|
+
"msw": "2",
|
|
82
|
+
"msw-storybook-addon": "2",
|
|
83
|
+
"postcss": "^8.4.16",
|
|
84
|
+
"semantic-release": "^24.0.0",
|
|
85
|
+
"storybook": "^8.6.12",
|
|
86
|
+
"tailwindcss": "^3.1.8",
|
|
87
|
+
"tsup": "^8.5.0",
|
|
88
|
+
"typescript": "^6.0.3",
|
|
89
|
+
"vite": "^8.0.14"
|
|
90
|
+
},
|
|
91
|
+
"msw": {
|
|
92
|
+
"workerDirectory": [
|
|
93
|
+
"public"
|
|
94
|
+
]
|
|
95
|
+
}
|
|
84
96
|
}
|