@omnia/fx 8.0.178-dev → 8.0.179-dev
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/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/aurora/components/backgroundstyle/BackgroundStyleEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStyleEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStylePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/TextStylePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyPicker.d.ts +12 -6
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +124 -120
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +124 -120
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +84 -265
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSection.d.ts +52 -35
- package/internal-do-not-import-from-here/ux/filterengine/SelectionsArea.d.ts +50 -15
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/docs/SampleTestBenchComponent.d.ts +51 -0
- package/internal-do-not-import-from-here/ux/jsonexportimport/ExportImport.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/ColorButton.d.ts +61 -0
- package/internal-do-not-import-from-here/ux/markdown/plugins/{ThemeStylingPlugin.d.ts → themestyling/ThemeStylingPlugin.d.ts} +2 -1
- package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/TypographyButton.d.ts +61 -0
- package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +26 -0
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/column/ColumnGrid.d.ts +64 -64
- package/internal-do-not-import-from-here/ux/oxide/flex/Row.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/speeddial/SpeedDial.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +20 -9
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronStyles.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/velcron/editor/components/ContextMenu.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronEditorDescriptors.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/SelectEditor.d.ts +406 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/SpacingEditor.d.ts +91 -91
- package/package.json +3 -3
@@ -94,6 +94,8 @@ export interface VSelectSlots extends VuetifySlots<VuetifyProps<Pick<VSelect, "$
|
|
94
94
|
}
|
95
95
|
export interface VRadioSlots extends VuetifySlots<VuetifyProps<Pick<VRadio, "$props">>> {
|
96
96
|
}
|
97
|
+
export interface VCheckboxSlots extends VuetifySlots<VuetifyProps<Pick<VCheckbox, "$props">>> {
|
98
|
+
}
|
97
99
|
declare global {
|
98
100
|
namespace JSX {
|
99
101
|
interface Element {
|
@@ -39,7 +39,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
39
39
|
} & {
|
40
40
|
activator?: () => VNodeChild;
|
41
41
|
};
|
42
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "fill" | "border" | "label" | "elevation" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "themeType" | "
|
42
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "fill" | "border" | "label" | "elevation" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "themeType" | "slot:activator" | "dynamicColorSchemaType" | "enableDynamicColor" | "createNewColorDynamic" | "emit:init:actionButtons" | "individualRadiusSelection" | "individualBorderWidthSelection" | "emit:click:confirm">) => {
|
43
43
|
$: import("vue").ComponentInternalInstance;
|
44
44
|
$data: {};
|
45
45
|
$props: {};
|
package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPicker.d.ts
CHANGED
@@ -29,7 +29,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
29
29
|
} & {
|
30
30
|
activator?: () => VNodeChild;
|
31
31
|
};
|
32
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "themeType" | "
|
32
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "themeType" | "slot:activator" | "dynamicColorSchemaType" | "enableDynamicColor" | "createNewColorDynamic" | "individualRadiusSelection" | "individualWidthSelection">) => {
|
33
33
|
$: import("vue").ComponentInternalInstance;
|
34
34
|
$data: {};
|
35
35
|
$props: {};
|
@@ -35,7 +35,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
35
35
|
} & {
|
36
36
|
activator?: () => VNodeChild;
|
37
37
|
};
|
38
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "label" | "colorType" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "themeType" | "
|
38
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "title" | "label" | "colorType" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "themeType" | "slot:activator" | "dynamicColorSchemaType" | "enableDynamicColor" | "createNewColorDynamic" | "emit:init:actionButtons">) => {
|
39
39
|
$: import("vue").ComponentInternalInstance;
|
40
40
|
$data: {};
|
41
41
|
$props: {};
|
package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStyleEditor.d.ts
CHANGED
@@ -32,7 +32,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
32
32
|
} & {
|
33
33
|
activator?: () => VNodeChild;
|
34
34
|
};
|
35
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "themeType" | "
|
35
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "themeType" | "slot:activator" | "dynamicColorSchemaType" | "enableDynamicColor" | "emit:init:actionButtons" | "simpleMode">) => {
|
36
36
|
$: import("vue").ComponentInternalInstance;
|
37
37
|
$data: {};
|
38
38
|
$props: {};
|
package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStylePicker.d.ts
CHANGED
@@ -25,7 +25,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
25
25
|
} & {
|
26
26
|
activator?: () => VNodeChild;
|
27
27
|
};
|
28
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "themeType" | "
|
28
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "themeType" | "slot:activator" | "dynamicColorSchemaType" | "enableDynamicColor">) => {
|
29
29
|
$: import("vue").ComponentInternalInstance;
|
30
30
|
$data: {};
|
31
31
|
$props: {};
|
package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/TextStylePicker.d.ts
CHANGED
@@ -26,7 +26,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
26
26
|
} & {
|
27
27
|
activator?: () => VNodeChild;
|
28
28
|
};
|
29
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "themeType" | "
|
29
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "themeType" | "slot:activator" | "dynamicColorSchemaType" | "enableDynamicColor">) => {
|
30
30
|
$: import("vue").ComponentInternalInstance;
|
31
31
|
$data: {};
|
32
32
|
$props: {};
|
package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyPicker.d.ts
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
1
2
|
import { TextBlueprint, ThemeContextType, TypographyValue } from "@omnia/fx-models";
|
3
|
+
import { VNode } from "vue";
|
2
4
|
export type TypographyPickerTypes = "default" | "title" | "text";
|
3
5
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
4
6
|
"v-model"?: TypographyValue;
|
@@ -20,11 +22,13 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
20
22
|
label?: string;
|
21
23
|
} & {
|
22
24
|
sampleText?: string;
|
23
|
-
}
|
25
|
+
} & DefineSlot<"activator", () => VNode>> & Omit<{}, "type" | "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "themeType" | "customTyping" | "textBlueprint" | "sampleText"> & {
|
24
26
|
"v-slots"?: {
|
25
27
|
default?: import("vue").Slot;
|
26
|
-
} & {
|
27
|
-
|
28
|
+
} & {
|
29
|
+
activator?: () => VNode;
|
30
|
+
};
|
31
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "type" | "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "themeType" | "customTyping" | "textBlueprint" | "sampleText" | "slot:activator">) => {
|
28
32
|
$: import("vue").ComponentInternalInstance;
|
29
33
|
$data: {};
|
30
34
|
$props: {};
|
@@ -82,12 +86,14 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
82
86
|
label?: string;
|
83
87
|
} & {
|
84
88
|
sampleText?: string;
|
85
|
-
}
|
89
|
+
} & DefineSlot<"activator", () => VNode>> & {
|
86
90
|
"v-slots"?: {
|
87
91
|
default?: import("vue").Slot;
|
88
|
-
} & {
|
92
|
+
} & {
|
93
|
+
activator?: () => VNode;
|
94
|
+
};
|
89
95
|
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "type" | "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "themeType" | "customTyping" | "textBlueprint" | "sampleText">;
|
90
|
-
} &
|
96
|
+
} & VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
91
97
|
[key: string]: any;
|
92
98
|
}>;
|
93
99
|
export default _default;
|
@@ -4845,16 +4845,16 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4845
4845
|
body?: {
|
4846
4846
|
body?: any[];
|
4847
4847
|
style?: {
|
4848
|
-
margin?:
|
4849
|
-
marginTop?: number;
|
4850
|
-
marginRight?: number;
|
4851
|
-
marginBottom?: number;
|
4852
|
-
marginLeft?: number;
|
4853
|
-
padding?: number;
|
4854
|
-
paddingTop?: number;
|
4855
|
-
paddingRight?: number;
|
4856
|
-
paddingBottom?: number;
|
4857
|
-
paddingLeft?: number;
|
4848
|
+
margin?: string;
|
4849
|
+
marginTop?: string | number;
|
4850
|
+
marginRight?: string | number;
|
4851
|
+
marginBottom?: string | number;
|
4852
|
+
marginLeft?: string | number;
|
4853
|
+
padding?: string | number;
|
4854
|
+
paddingTop?: string | number;
|
4855
|
+
paddingRight?: string | number;
|
4856
|
+
paddingBottom?: string | number;
|
4857
|
+
paddingLeft?: string | number;
|
4858
4858
|
height?: string | number;
|
4859
4859
|
width?: string | number;
|
4860
4860
|
};
|
@@ -4899,16 +4899,16 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4899
4899
|
body?: {
|
4900
4900
|
body?: any[];
|
4901
4901
|
style?: {
|
4902
|
-
margin?:
|
4903
|
-
marginTop?: number;
|
4904
|
-
marginRight?: number;
|
4905
|
-
marginBottom?: number;
|
4906
|
-
marginLeft?: number;
|
4907
|
-
padding?: number;
|
4908
|
-
paddingTop?: number;
|
4909
|
-
paddingRight?: number;
|
4910
|
-
paddingBottom?: number;
|
4911
|
-
paddingLeft?: number;
|
4902
|
+
margin?: string;
|
4903
|
+
marginTop?: string | number;
|
4904
|
+
marginRight?: string | number;
|
4905
|
+
marginBottom?: string | number;
|
4906
|
+
marginLeft?: string | number;
|
4907
|
+
padding?: string | number;
|
4908
|
+
paddingTop?: string | number;
|
4909
|
+
paddingRight?: string | number;
|
4910
|
+
paddingBottom?: string | number;
|
4911
|
+
paddingLeft?: string | number;
|
4912
4912
|
height?: string | number;
|
4913
4913
|
width?: string | number;
|
4914
4914
|
};
|
@@ -4933,16 +4933,16 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4933
4933
|
spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
|
4934
4934
|
}[];
|
4935
4935
|
style?: {
|
4936
|
-
margin?:
|
4937
|
-
marginTop?: number;
|
4938
|
-
marginRight?: number;
|
4939
|
-
marginBottom?: number;
|
4940
|
-
marginLeft?: number;
|
4941
|
-
padding?: number;
|
4942
|
-
paddingTop?: number;
|
4943
|
-
paddingRight?: number;
|
4944
|
-
paddingBottom?: number;
|
4945
|
-
paddingLeft?: number;
|
4936
|
+
margin?: string;
|
4937
|
+
marginTop?: string | number;
|
4938
|
+
marginRight?: string | number;
|
4939
|
+
marginBottom?: string | number;
|
4940
|
+
marginLeft?: string | number;
|
4941
|
+
padding?: string | number;
|
4942
|
+
paddingTop?: string | number;
|
4943
|
+
paddingRight?: string | number;
|
4944
|
+
paddingBottom?: string | number;
|
4945
|
+
paddingLeft?: string | number;
|
4946
4946
|
height?: string | number;
|
4947
4947
|
width?: string | number;
|
4948
4948
|
};
|
@@ -4984,6 +4984,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4984
4984
|
computed?: {
|
4985
4985
|
[name: string]: string[];
|
4986
4986
|
};
|
4987
|
+
overflow?: import("@omnia/fx-models").VelcronOverflowValues;
|
4987
4988
|
key?: string;
|
4988
4989
|
};
|
4989
4990
|
};
|
@@ -5068,16 +5069,16 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5068
5069
|
body?: {
|
5069
5070
|
body?: any[];
|
5070
5071
|
style?: {
|
5071
|
-
margin?:
|
5072
|
-
marginTop?: number;
|
5073
|
-
marginRight?: number;
|
5074
|
-
marginBottom?: number;
|
5075
|
-
marginLeft?: number;
|
5076
|
-
padding?: number;
|
5077
|
-
paddingTop?: number;
|
5078
|
-
paddingRight?: number;
|
5079
|
-
paddingBottom?: number;
|
5080
|
-
paddingLeft?: number;
|
5072
|
+
margin?: string;
|
5073
|
+
marginTop?: string | number;
|
5074
|
+
marginRight?: string | number;
|
5075
|
+
marginBottom?: string | number;
|
5076
|
+
marginLeft?: string | number;
|
5077
|
+
padding?: string | number;
|
5078
|
+
paddingTop?: string | number;
|
5079
|
+
paddingRight?: string | number;
|
5080
|
+
paddingBottom?: string | number;
|
5081
|
+
paddingLeft?: string | number;
|
5081
5082
|
height?: string | number;
|
5082
5083
|
width?: string | number;
|
5083
5084
|
};
|
@@ -5122,16 +5123,16 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5122
5123
|
body?: {
|
5123
5124
|
body?: any[];
|
5124
5125
|
style?: {
|
5125
|
-
margin?:
|
5126
|
-
marginTop?: number;
|
5127
|
-
marginRight?: number;
|
5128
|
-
marginBottom?: number;
|
5129
|
-
marginLeft?: number;
|
5130
|
-
padding?: number;
|
5131
|
-
paddingTop?: number;
|
5132
|
-
paddingRight?: number;
|
5133
|
-
paddingBottom?: number;
|
5134
|
-
paddingLeft?: number;
|
5126
|
+
margin?: string;
|
5127
|
+
marginTop?: string | number;
|
5128
|
+
marginRight?: string | number;
|
5129
|
+
marginBottom?: string | number;
|
5130
|
+
marginLeft?: string | number;
|
5131
|
+
padding?: string | number;
|
5132
|
+
paddingTop?: string | number;
|
5133
|
+
paddingRight?: string | number;
|
5134
|
+
paddingBottom?: string | number;
|
5135
|
+
paddingLeft?: string | number;
|
5135
5136
|
height?: string | number;
|
5136
5137
|
width?: string | number;
|
5137
5138
|
};
|
@@ -5156,16 +5157,16 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5156
5157
|
spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
|
5157
5158
|
}[];
|
5158
5159
|
style?: {
|
5159
|
-
margin?:
|
5160
|
-
marginTop?: number;
|
5161
|
-
marginRight?: number;
|
5162
|
-
marginBottom?: number;
|
5163
|
-
marginLeft?: number;
|
5164
|
-
padding?: number;
|
5165
|
-
paddingTop?: number;
|
5166
|
-
paddingRight?: number;
|
5167
|
-
paddingBottom?: number;
|
5168
|
-
paddingLeft?: number;
|
5160
|
+
margin?: string;
|
5161
|
+
marginTop?: string | number;
|
5162
|
+
marginRight?: string | number;
|
5163
|
+
marginBottom?: string | number;
|
5164
|
+
marginLeft?: string | number;
|
5165
|
+
padding?: string | number;
|
5166
|
+
paddingTop?: string | number;
|
5167
|
+
paddingRight?: string | number;
|
5168
|
+
paddingBottom?: string | number;
|
5169
|
+
paddingLeft?: string | number;
|
5169
5170
|
height?: string | number;
|
5170
5171
|
width?: string | number;
|
5171
5172
|
};
|
@@ -5207,6 +5208,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5207
5208
|
computed?: {
|
5208
5209
|
[name: string]: string[];
|
5209
5210
|
};
|
5211
|
+
overflow?: import("@omnia/fx-models").VelcronOverflowValues;
|
5210
5212
|
key?: string;
|
5211
5213
|
};
|
5212
5214
|
};
|
@@ -5291,16 +5293,16 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5291
5293
|
body?: {
|
5292
5294
|
body?: any[];
|
5293
5295
|
style?: {
|
5294
|
-
margin?:
|
5295
|
-
marginTop?: number;
|
5296
|
-
marginRight?: number;
|
5297
|
-
marginBottom?: number;
|
5298
|
-
marginLeft?: number;
|
5299
|
-
padding?: number;
|
5300
|
-
paddingTop?: number;
|
5301
|
-
paddingRight?: number;
|
5302
|
-
paddingBottom?: number;
|
5303
|
-
paddingLeft?: number;
|
5296
|
+
margin?: string;
|
5297
|
+
marginTop?: string | number;
|
5298
|
+
marginRight?: string | number;
|
5299
|
+
marginBottom?: string | number;
|
5300
|
+
marginLeft?: string | number;
|
5301
|
+
padding?: string | number;
|
5302
|
+
paddingTop?: string | number;
|
5303
|
+
paddingRight?: string | number;
|
5304
|
+
paddingBottom?: string | number;
|
5305
|
+
paddingLeft?: string | number;
|
5304
5306
|
height?: string | number;
|
5305
5307
|
width?: string | number;
|
5306
5308
|
};
|
@@ -5345,16 +5347,16 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5345
5347
|
body?: {
|
5346
5348
|
body?: any[];
|
5347
5349
|
style?: {
|
5348
|
-
margin?:
|
5349
|
-
marginTop?: number;
|
5350
|
-
marginRight?: number;
|
5351
|
-
marginBottom?: number;
|
5352
|
-
marginLeft?: number;
|
5353
|
-
padding?: number;
|
5354
|
-
paddingTop?: number;
|
5355
|
-
paddingRight?: number;
|
5356
|
-
paddingBottom?: number;
|
5357
|
-
paddingLeft?: number;
|
5350
|
+
margin?: string;
|
5351
|
+
marginTop?: string | number;
|
5352
|
+
marginRight?: string | number;
|
5353
|
+
marginBottom?: string | number;
|
5354
|
+
marginLeft?: string | number;
|
5355
|
+
padding?: string | number;
|
5356
|
+
paddingTop?: string | number;
|
5357
|
+
paddingRight?: string | number;
|
5358
|
+
paddingBottom?: string | number;
|
5359
|
+
paddingLeft?: string | number;
|
5358
5360
|
height?: string | number;
|
5359
5361
|
width?: string | number;
|
5360
5362
|
};
|
@@ -5379,16 +5381,16 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5379
5381
|
spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
|
5380
5382
|
}[];
|
5381
5383
|
style?: {
|
5382
|
-
margin?:
|
5383
|
-
marginTop?: number;
|
5384
|
-
marginRight?: number;
|
5385
|
-
marginBottom?: number;
|
5386
|
-
marginLeft?: number;
|
5387
|
-
padding?: number;
|
5388
|
-
paddingTop?: number;
|
5389
|
-
paddingRight?: number;
|
5390
|
-
paddingBottom?: number;
|
5391
|
-
paddingLeft?: number;
|
5384
|
+
margin?: string;
|
5385
|
+
marginTop?: string | number;
|
5386
|
+
marginRight?: string | number;
|
5387
|
+
marginBottom?: string | number;
|
5388
|
+
marginLeft?: string | number;
|
5389
|
+
padding?: string | number;
|
5390
|
+
paddingTop?: string | number;
|
5391
|
+
paddingRight?: string | number;
|
5392
|
+
paddingBottom?: string | number;
|
5393
|
+
paddingLeft?: string | number;
|
5392
5394
|
height?: string | number;
|
5393
5395
|
width?: string | number;
|
5394
5396
|
};
|
@@ -5430,6 +5432,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5430
5432
|
computed?: {
|
5431
5433
|
[name: string]: string[];
|
5432
5434
|
};
|
5435
|
+
overflow?: import("@omnia/fx-models").VelcronOverflowValues;
|
5433
5436
|
key?: string;
|
5434
5437
|
};
|
5435
5438
|
};
|
@@ -5514,16 +5517,16 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5514
5517
|
body?: {
|
5515
5518
|
body?: any[];
|
5516
5519
|
style?: {
|
5517
|
-
margin?:
|
5518
|
-
marginTop?: number;
|
5519
|
-
marginRight?: number;
|
5520
|
-
marginBottom?: number;
|
5521
|
-
marginLeft?: number;
|
5522
|
-
padding?: number;
|
5523
|
-
paddingTop?: number;
|
5524
|
-
paddingRight?: number;
|
5525
|
-
paddingBottom?: number;
|
5526
|
-
paddingLeft?: number;
|
5520
|
+
margin?: string;
|
5521
|
+
marginTop?: string | number;
|
5522
|
+
marginRight?: string | number;
|
5523
|
+
marginBottom?: string | number;
|
5524
|
+
marginLeft?: string | number;
|
5525
|
+
padding?: string | number;
|
5526
|
+
paddingTop?: string | number;
|
5527
|
+
paddingRight?: string | number;
|
5528
|
+
paddingBottom?: string | number;
|
5529
|
+
paddingLeft?: string | number;
|
5527
5530
|
height?: string | number;
|
5528
5531
|
width?: string | number;
|
5529
5532
|
};
|
@@ -5568,16 +5571,16 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5568
5571
|
body?: {
|
5569
5572
|
body?: any[];
|
5570
5573
|
style?: {
|
5571
|
-
margin?:
|
5572
|
-
marginTop?: number;
|
5573
|
-
marginRight?: number;
|
5574
|
-
marginBottom?: number;
|
5575
|
-
marginLeft?: number;
|
5576
|
-
padding?: number;
|
5577
|
-
paddingTop?: number;
|
5578
|
-
paddingRight?: number;
|
5579
|
-
paddingBottom?: number;
|
5580
|
-
paddingLeft?: number;
|
5574
|
+
margin?: string;
|
5575
|
+
marginTop?: string | number;
|
5576
|
+
marginRight?: string | number;
|
5577
|
+
marginBottom?: string | number;
|
5578
|
+
marginLeft?: string | number;
|
5579
|
+
padding?: string | number;
|
5580
|
+
paddingTop?: string | number;
|
5581
|
+
paddingRight?: string | number;
|
5582
|
+
paddingBottom?: string | number;
|
5583
|
+
paddingLeft?: string | number;
|
5581
5584
|
height?: string | number;
|
5582
5585
|
width?: string | number;
|
5583
5586
|
};
|
@@ -5602,16 +5605,16 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5602
5605
|
spacingType?: import("@omnia/fx-models").VelcronSpacingTypes;
|
5603
5606
|
}[];
|
5604
5607
|
style?: {
|
5605
|
-
margin?:
|
5606
|
-
marginTop?: number;
|
5607
|
-
marginRight?: number;
|
5608
|
-
marginBottom?: number;
|
5609
|
-
marginLeft?: number;
|
5610
|
-
padding?: number;
|
5611
|
-
paddingTop?: number;
|
5612
|
-
paddingRight?: number;
|
5613
|
-
paddingBottom?: number;
|
5614
|
-
paddingLeft?: number;
|
5608
|
+
margin?: string;
|
5609
|
+
marginTop?: string | number;
|
5610
|
+
marginRight?: string | number;
|
5611
|
+
marginBottom?: string | number;
|
5612
|
+
marginLeft?: string | number;
|
5613
|
+
padding?: string | number;
|
5614
|
+
paddingTop?: string | number;
|
5615
|
+
paddingRight?: string | number;
|
5616
|
+
paddingBottom?: string | number;
|
5617
|
+
paddingLeft?: string | number;
|
5615
5618
|
height?: string | number;
|
5616
5619
|
width?: string | number;
|
5617
5620
|
};
|
@@ -5653,6 +5656,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5653
5656
|
computed?: {
|
5654
5657
|
[name: string]: string[];
|
5655
5658
|
};
|
5659
|
+
overflow?: import("@omnia/fx-models").VelcronOverflowValues;
|
5656
5660
|
key?: string;
|
5657
5661
|
};
|
5658
5662
|
};
|