@weaverse/core 2.8.8 → 2.8.10
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/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +8 -8
package/dist/index.d.mts
CHANGED
|
@@ -109,7 +109,7 @@ type PlatformTypeEnum = 'shopify-section' | 'shopify-hydrogen' | 'nextjs';
|
|
|
109
109
|
type ToolbarAction = 'general-settings' | 'settings-level-2' | 'duplicate' | 'delete';
|
|
110
110
|
type AdvancedGroupType = 'border' | 'alignment' | 'background' | 'dimensions' | 'spacing' | 'typography' | 'visibility' | 'shadows-and-effects' | 'layout-background';
|
|
111
111
|
type PositionInputValue = 'top left' | 'top center' | 'top right' | 'center left' | 'center center' | 'center right' | 'bottom left' | 'bottom center' | 'bottom right';
|
|
112
|
-
type InputType = 'blog' | 'collection' | 'collection-list' | 'color' | 'datepicker' | 'image' | 'map-autocomplete' | 'position' | 'product' | 'product-list' | 'range' | 'richtext' | 'select' | 'switch' | 'text' | 'textarea' | 'toggle-group' | 'swatches';
|
|
112
|
+
type InputType = 'blog' | 'collection' | 'collection-list' | 'color' | 'datepicker' | 'image' | 'map-autocomplete' | 'position' | 'product' | 'product-list' | 'range' | 'richtext' | 'select' | 'switch' | 'text' | 'textarea' | 'toggle-group' | 'swatches' | 'metaobject';
|
|
113
113
|
type WeaverseCSSProperties = stitches.CSS & Partial<Record<keyof typeof stitchesUtils, string | number>>;
|
|
114
114
|
type ChildElementCSS = Partial<{
|
|
115
115
|
[selector: string]: WeaverseCSSProperties & ChildElementCSS;
|
package/dist/index.d.ts
CHANGED
|
@@ -109,7 +109,7 @@ type PlatformTypeEnum = 'shopify-section' | 'shopify-hydrogen' | 'nextjs';
|
|
|
109
109
|
type ToolbarAction = 'general-settings' | 'settings-level-2' | 'duplicate' | 'delete';
|
|
110
110
|
type AdvancedGroupType = 'border' | 'alignment' | 'background' | 'dimensions' | 'spacing' | 'typography' | 'visibility' | 'shadows-and-effects' | 'layout-background';
|
|
111
111
|
type PositionInputValue = 'top left' | 'top center' | 'top right' | 'center left' | 'center center' | 'center right' | 'bottom left' | 'bottom center' | 'bottom right';
|
|
112
|
-
type InputType = 'blog' | 'collection' | 'collection-list' | 'color' | 'datepicker' | 'image' | 'map-autocomplete' | 'position' | 'product' | 'product-list' | 'range' | 'richtext' | 'select' | 'switch' | 'text' | 'textarea' | 'toggle-group' | 'swatches';
|
|
112
|
+
type InputType = 'blog' | 'collection' | 'collection-list' | 'color' | 'datepicker' | 'image' | 'map-autocomplete' | 'position' | 'product' | 'product-list' | 'range' | 'richtext' | 'select' | 'switch' | 'text' | 'textarea' | 'toggle-group' | 'swatches' | 'metaobject';
|
|
113
113
|
type WeaverseCSSProperties = stitches.CSS & Partial<Record<keyof typeof stitchesUtils, string | number>>;
|
|
114
114
|
type ChildElementCSS = Partial<{
|
|
115
115
|
[selector: string]: WeaverseCSSProperties & ChildElementCSS;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@weaverse/core",
|
|
3
3
|
"author": "Weaverse Team",
|
|
4
4
|
"description": "Weaverse Core",
|
|
5
|
-
"version": "2.8.
|
|
5
|
+
"version": "2.8.10",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=18"
|
|
23
23
|
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@stitches/core": "^1.2.8"
|
|
26
|
+
},
|
|
27
|
+
"optionalDependencies": {
|
|
28
|
+
"@esbuild/darwin-x64": "^0.19.9"
|
|
29
|
+
},
|
|
24
30
|
"scripts": {
|
|
25
31
|
"start": "npm run dev",
|
|
26
32
|
"dev": "tsup src/index.ts --format esm,cjs --dts --outDir dist --watch --sourcemap",
|
|
27
33
|
"build": "tsup src/index.ts --format esm,cjs --dts --outDir dist",
|
|
28
34
|
"clean": "rimraf dist",
|
|
29
35
|
"prepublish": "npm run build"
|
|
30
|
-
},
|
|
31
|
-
"dependencies": {
|
|
32
|
-
"@stitches/core": "^1.2.8"
|
|
33
|
-
},
|
|
34
|
-
"optionalDependencies": {
|
|
35
|
-
"@esbuild/darwin-x64": "^0.19.9"
|
|
36
36
|
}
|
|
37
|
-
}
|
|
37
|
+
}
|