@weaverse/core 0.7.20 → 0.7.21
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.ts +5 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -144,13 +144,13 @@ interface BasicGroup {
|
|
|
144
144
|
groupHeader: string;
|
|
145
145
|
inputs: BasicInput[];
|
|
146
146
|
}
|
|
147
|
-
declare type AdvancedGroupType = "border" | "alignment" | "background" | "dimensions" | "spacing" | "typography" | "visibility" | "shadows-and-effects";
|
|
147
|
+
declare type AdvancedGroupType = "border" | "alignment" | "background" | "dimensions" | "spacing" | "typography" | "visibility" | "shadows-and-effects" | "layoutBackground";
|
|
148
148
|
interface BasicInput<ConfigsType = AdditionalInputConfigs> {
|
|
149
149
|
type: InputType;
|
|
150
150
|
label?: string;
|
|
151
151
|
binding?: "style" | "data";
|
|
152
152
|
/**
|
|
153
|
-
* The key of the value
|
|
153
|
+
* The key of the value of the element data or styles
|
|
154
154
|
* @example
|
|
155
155
|
* // Bind to `element.data.title`
|
|
156
156
|
* name: "title"
|
|
@@ -200,8 +200,9 @@ interface RangeInputConfigs {
|
|
|
200
200
|
max?: number;
|
|
201
201
|
step?: number;
|
|
202
202
|
}
|
|
203
|
+
declare type SortableItemAction = "add" | "edit" | "duplicate" | "delete" | "toggle-visibility";
|
|
203
204
|
interface SortableInputConfigs {
|
|
204
|
-
|
|
205
|
+
actions: SortableItemAction[];
|
|
205
206
|
}
|
|
206
207
|
declare type InputType = "color" | "datepicker" | "image" | "range" | "select" | "sortable" | "switch" | "text" | "textarea" | "toggle-group" | "form" | "product" | "product-swatches" | "custom.html" | "instagram" | "collection-list" | "collection" | "article-list";
|
|
207
208
|
declare global {
|
|
@@ -334,4 +335,4 @@ declare class Weaverse {
|
|
|
334
335
|
initProjectItemData(): void;
|
|
335
336
|
}
|
|
336
337
|
|
|
337
|
-
export { AdditionalInputConfigs, AdvancedGroup, AdvancedGroupType, BasicGroup, BasicInput, BreakPoints, CatalogGroup, ChildElement, ChildElementCSS, ElementCSS, ElementCatalog, ElementData, ElementDataInCatalog, ElementFlags, ElementInspector, ElementSchema, FlagType, GridSize, InitializeData, InputType, ParentType, ProjectDataType, RangeInputConfigs, SelectInputConfigs, SortableInputConfigs, ToggleGroupConfigs, ToolbarAction, Weaverse, WeaverseCSSProperties, WeaverseElement, WeaverseItemStore, WeaverseType, createGlobalStyles, isBrowser, isIframe, isReactNative, loadScript, stichesUtils };
|
|
338
|
+
export { AdditionalInputConfigs, AdvancedGroup, AdvancedGroupType, BasicGroup, BasicInput, BreakPoints, CatalogGroup, ChildElement, ChildElementCSS, ElementCSS, ElementCatalog, ElementData, ElementDataInCatalog, ElementFlags, ElementInspector, ElementSchema, FlagType, GridSize, InitializeData, InputType, ParentType, ProjectDataType, RangeInputConfigs, SelectInputConfigs, SortableInputConfigs, SortableItemAction, ToggleGroupConfigs, ToolbarAction, Weaverse, WeaverseCSSProperties, WeaverseElement, WeaverseItemStore, WeaverseType, createGlobalStyles, isBrowser, isIframe, isReactNative, loadScript, stichesUtils };
|
package/package.json
CHANGED