ov25-setup 0.2.5 → 0.2.7
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/components/ConfiguratorSetup/preview-config-serializable.d.ts +2 -0
- package/dist/components/ConfiguratorSetup/types.d.ts +2 -0
- package/dist/components/ConfiguratorSetup/useConfiguratorSetup.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.js +3490 -3578
- package/dist/index.js.map +1 -1
- package/dist/lib/config/configurator-style-variables.d.ts +2 -2
- package/package.json +5 -4
|
@@ -42,8 +42,8 @@ export declare const CORNER_PRESETS: readonly [{
|
|
|
42
42
|
readonly label: "Pill";
|
|
43
43
|
}];
|
|
44
44
|
export declare const FONT_OPTIONS: readonly [{
|
|
45
|
-
readonly value: "'
|
|
46
|
-
readonly label: "
|
|
45
|
+
readonly value: "'IBM Plex Sans', sans-serif";
|
|
46
|
+
readonly label: "IBM Plex Sans";
|
|
47
47
|
}, {
|
|
48
48
|
readonly value: "'Inter', sans-serif";
|
|
49
49
|
readonly label: "Inter";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ov25-setup",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "OV25 Configurator Setup visual editor component",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -17,11 +17,12 @@
|
|
|
17
17
|
"dist"
|
|
18
18
|
],
|
|
19
19
|
"scripts": {
|
|
20
|
+
"type-check": "tsc --noEmit",
|
|
20
21
|
"build": "vite build && tsc --emitDeclarationOnly --outDir dist && node ../scripts/strip-layers.js dist/index.css",
|
|
21
22
|
"build:react18": "node scripts/build-react18.js",
|
|
22
23
|
"clean": "rimraf dist",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
24
|
+
"release": "npm run type-check && npm run build && npm publish --ignore-scripts",
|
|
25
|
+
"publish:canary": "npm run type-check && npm run build && npm publish --tag canary --ignore-scripts"
|
|
25
26
|
},
|
|
26
27
|
"peerDependencies": {
|
|
27
28
|
"react": "^19.0.0",
|
|
@@ -32,7 +33,6 @@
|
|
|
32
33
|
"@codemirror/lang-css": "^6.3.1",
|
|
33
34
|
"@codemirror/language": "^6.12.2",
|
|
34
35
|
"@codemirror/state": "^6.6.0",
|
|
35
|
-
"@codemirror/theme-one-dark": "^6.1.3",
|
|
36
36
|
"@codemirror/view": "^6.40.0",
|
|
37
37
|
"@radix-ui/react-dialog": "^1.1.6",
|
|
38
38
|
"@radix-ui/react-label": "^2.1.1",
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"class-variance-authority": "^0.7.0",
|
|
46
46
|
"clsx": "^2.1.0",
|
|
47
47
|
"lucide-react": "^0.540.0",
|
|
48
|
+
"ov25-ui": "^0.5.96-canary.3",
|
|
48
49
|
"react-colorful": "^5.6.1",
|
|
49
50
|
"tailwind-merge": "^2.2.0"
|
|
50
51
|
},
|