ov25-setup 0.2.2 → 0.2.3
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { LayoutType } from '../../lib/config/preview-config';
|
|
2
2
|
export type PreviewLayoutType = LayoutType;
|
|
3
3
|
export type FormCarouselDisplayMode = 'none' | 'carousel' | 'stacked';
|
|
4
|
-
export type FormConfiguratorDisplayMode = 'inline' | 'sheet' | 'variants-only-sheet';
|
|
5
|
-
export type FormConfiguratorDisplayModeMobile = 'inline' | 'drawer' | 'variants-only-sheet';
|
|
4
|
+
export type FormConfiguratorDisplayMode = 'inline' | 'sheet' | 'modal' | 'variants-only-sheet';
|
|
5
|
+
export type FormConfiguratorDisplayModeMobile = 'inline' | 'drawer' | 'modal' | 'variants-only-sheet';
|
|
6
6
|
export type FormVariantDisplayMode = 'wizard' | 'list' | 'tabs' | 'accordion' | 'tree';
|
|
7
7
|
export interface SelectorFormState {
|
|
8
8
|
enabled: boolean;
|
package/dist/index.js
CHANGED
|
@@ -88,7 +88,7 @@ const Nm = {
|
|
|
88
88
|
{ variable: "--ov25-button-text-color", label: "Collection text color", defaultValue: "#ffffff", control: "color" },
|
|
89
89
|
{ variable: "--ov25-button-hover-background-color", label: "Collection hover fill", defaultValue: "#fafafa", control: "color" },
|
|
90
90
|
{ variable: "--ov25-button-hover-text-color", label: "Collection hover text", defaultValue: "#000000", control: "color" },
|
|
91
|
-
{ variable: "--ov25-highlight-color", label: "Current Variant Outline", defaultValue: "", control: "color" },
|
|
91
|
+
{ variable: "--ov25-highlight-color", label: "Current Variant Outline", defaultValue: "#00fbff", control: "color" },
|
|
92
92
|
{ variable: "--ov25-wizard-variants-content-height", label: "Variant panel height", defaultValue: "600px", control: "slider", sliderMin: 200, sliderMax: 1200, sliderStep: 50, sliderUnit: "px", sliderLabels: ["Short", "Tall"] },
|
|
93
93
|
{ variable: "--ov25-configurator-variant-drawer-handle-color", label: "Drawer handle color", defaultValue: "#000000", control: "color" }
|
|
94
94
|
]
|
|
@@ -24052,10 +24052,12 @@ const F2 = [
|
|
|
24052
24052
|
], z2 = [
|
|
24053
24053
|
{ value: "inline", label: "Inline", desc: "Embedded beside the gallery" },
|
|
24054
24054
|
{ value: "sheet", label: "Sheet", desc: "Slides in from the sides." },
|
|
24055
|
+
{ value: "modal", label: "Modal", desc: "Centered overlay dialog" },
|
|
24055
24056
|
{ value: "variants-only-sheet", label: "Variants sheet", desc: "Sheet with variants only" }
|
|
24056
24057
|
], V2 = [
|
|
24057
24058
|
{ value: "inline", label: "Inline", desc: "Embedded below gallery" },
|
|
24058
24059
|
{ value: "drawer", label: "Drawer", desc: "Slides up from bottom" },
|
|
24060
|
+
{ value: "modal", label: "Modal", desc: "Centered overlay dialog" },
|
|
24059
24061
|
{ value: "variants-only-sheet", label: "Variants sheet", desc: "Sheet with variants only" }
|
|
24060
24062
|
], W2 = [
|
|
24061
24063
|
{ value: "single-button", label: "Single", desc: "One configure button" },
|