@omnia/fx 8.0.188-dev → 8.0.189-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/aurora/components/backgroundstyle/BackgroundStyleEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPicker.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonBlueprintsViewer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStyleEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts +16 -8
- 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/store/ComponentBlueprintStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeContextStore.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeStoreV2.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/journey/DefineBlade.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/journey/Journey.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/models/Constants.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +100 -122
- package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorAction.d.ts +69 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorActionSettings.d.ts +56 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorClickHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +50 -310
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +30 -6
- package/package.json +2 -2
@@ -1,7 +1,7 @@
|
|
1
1
|
import { BackgroundDefinition, ThemeContextType } from "@omnia/fx-models";
|
2
2
|
import { DefineEmit, DefineSlot } from "@omnia/fx/ux";
|
3
3
|
import { VNodeChild } from "vue";
|
4
|
-
type EditorVariant = "default" | "dialog";
|
4
|
+
type EditorVariant = "default" | "dialog" | "blade";
|
5
5
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
6
6
|
"v-model"?: BackgroundDefinition;
|
7
7
|
} & {
|
package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPicker.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
import { DefineSlot } from "@omnia/fx/ux";
|
2
2
|
import { BorderStylingDefinition, ThemeContextType } from "@omnia/fx-models";
|
3
3
|
import { VNodeChild } from "vue";
|
4
|
+
type BorderPickerVariant = "dialog" | "blade";
|
4
5
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
5
6
|
"v-model"?: BorderStylingDefinition;
|
6
7
|
} & {
|
@@ -9,6 +10,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
9
10
|
modelValue?: BorderStylingDefinition;
|
10
11
|
} & {
|
11
12
|
individualRadiusSelection?: boolean;
|
13
|
+
} & {
|
14
|
+
variant?: BorderPickerVariant;
|
12
15
|
} & {
|
13
16
|
individualWidthSelection?: boolean;
|
14
17
|
} & {
|
@@ -69,6 +72,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
69
72
|
modelValue?: BorderStylingDefinition;
|
70
73
|
} & {
|
71
74
|
individualRadiusSelection?: boolean;
|
75
|
+
} & {
|
76
|
+
variant?: BorderPickerVariant;
|
72
77
|
} & {
|
73
78
|
individualWidthSelection?: boolean;
|
74
79
|
} & {
|
@@ -89,7 +94,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
89
94
|
} & {
|
90
95
|
activator?: () => VNodeChild;
|
91
96
|
};
|
92
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "themeType" | "dynamicColorSchemaType" | "enableDynamicColor" | "createNewColorDynamic" | "individualRadiusSelection" | "individualWidthSelection">;
|
97
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "themeType" | "dynamicColorSchemaType" | "enableDynamicColor" | "createNewColorDynamic" | "individualRadiusSelection" | "individualWidthSelection">;
|
93
98
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
94
99
|
[key: string]: any;
|
95
100
|
}>;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { ButtonBlueprintVariant, ButtonBlueprints, ThemeContextType } from "@omnia/fx-models";
|
2
2
|
import { DefineEmit } from "@omnia/fx/ux";
|
3
3
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
4
4
|
"v-model"?: ButtonBlueprints;
|
@@ -10,7 +10,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
10
10
|
toned?: boolean;
|
11
11
|
} & {
|
12
12
|
themeType?: ThemeContextType;
|
13
|
-
} & DefineEmit<"click:select", (
|
13
|
+
} & DefineEmit<"click:select", (selection: ButtonBlueprintVariant) => true>>) => {
|
14
14
|
$: import("vue").ComponentInternalInstance;
|
15
15
|
$data: {};
|
16
16
|
$props: {};
|
@@ -58,12 +58,12 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
58
58
|
toned?: boolean;
|
59
59
|
} & {
|
60
60
|
themeType?: ThemeContextType;
|
61
|
-
} & DefineEmit<"click:select", (
|
61
|
+
} & DefineEmit<"click:select", (selection: ButtonBlueprintVariant) => true>> & {
|
62
62
|
"v-slots"?: {
|
63
63
|
default?: import("vue").Slot;
|
64
64
|
} & {};
|
65
65
|
} & {
|
66
|
-
"onClick:select"?: (
|
66
|
+
"onClick:select"?: (selection: ButtonBlueprintVariant) => any;
|
67
67
|
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "toned" | "v-model" | "onUpdate:modelValue" | "modelValue" | "themeType">;
|
68
68
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
69
69
|
[key: string]: any;
|
package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStyleEditor.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ButtonBlueprint, ThemeContextType } from "@omnia/fx-models";
|
2
2
|
import { DefineEmit, DefineSlot } from "@omnia/fx/ux";
|
3
3
|
import { VNodeChild } from "vue";
|
4
|
-
type EditorVariant = "default" | "dialog";
|
4
|
+
type EditorVariant = "default" | "dialog" | "blade";
|
5
5
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
6
6
|
"v-model"?: ButtonBlueprint;
|
7
7
|
} & {
|
package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts
CHANGED
@@ -1,14 +1,18 @@
|
|
1
|
-
import { ButtonBlueprint } from "@omnia/fx-models";
|
1
|
+
import { ButtonBlueprint, ButtonBlueprintVariant, ThemeContextType } from "@omnia/fx-models";
|
2
2
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
-
"v-model"?: ButtonBlueprint;
|
3
|
+
"v-model"?: ButtonBlueprintVariant | ButtonBlueprint;
|
4
4
|
} & {
|
5
|
-
"onUpdate:modelValue"?: (value: ButtonBlueprint) => void;
|
5
|
+
"onUpdate:modelValue"?: (value: ButtonBlueprintVariant | ButtonBlueprint) => void;
|
6
6
|
} & {
|
7
|
-
modelValue?: ButtonBlueprint;
|
7
|
+
modelValue?: ButtonBlueprintVariant | ButtonBlueprint;
|
8
8
|
} & {
|
9
9
|
label?: string;
|
10
10
|
} & {
|
11
11
|
customStyling?: boolean;
|
12
|
+
} & {
|
13
|
+
sampleText?: string;
|
14
|
+
} & {
|
15
|
+
themeType?: ThemeContextType;
|
12
16
|
}>) => {
|
13
17
|
$: import("vue").ComponentInternalInstance;
|
14
18
|
$data: {};
|
@@ -48,20 +52,24 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
48
52
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
49
53
|
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
50
54
|
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
51
|
-
"v-model"?: ButtonBlueprint;
|
55
|
+
"v-model"?: ButtonBlueprintVariant | ButtonBlueprint;
|
52
56
|
} & {
|
53
|
-
"onUpdate:modelValue"?: (value: ButtonBlueprint) => void;
|
57
|
+
"onUpdate:modelValue"?: (value: ButtonBlueprintVariant | ButtonBlueprint) => void;
|
54
58
|
} & {
|
55
|
-
modelValue?: ButtonBlueprint;
|
59
|
+
modelValue?: ButtonBlueprintVariant | ButtonBlueprint;
|
56
60
|
} & {
|
57
61
|
label?: string;
|
58
62
|
} & {
|
59
63
|
customStyling?: boolean;
|
64
|
+
} & {
|
65
|
+
sampleText?: string;
|
66
|
+
} & {
|
67
|
+
themeType?: ThemeContextType;
|
60
68
|
}> & {
|
61
69
|
"v-slots"?: {
|
62
70
|
default?: import("vue").Slot;
|
63
71
|
} & {};
|
64
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "v-model" | "onUpdate:modelValue" | "modelValue" | "customStyling">;
|
72
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "v-model" | "onUpdate:modelValue" | "modelValue" | "themeType" | "sampleText" | "customStyling">;
|
65
73
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
66
74
|
[key: string]: any;
|
67
75
|
}>;
|
@@ -2,7 +2,7 @@ import { DefineEmit, DefineSlot } from "@omnia/fx/ux";
|
|
2
2
|
import { ThemeContextType, FillDefinitionValue } from "@omnia/fx-models";
|
3
3
|
import { VNodeChild } from "vue";
|
4
4
|
export type ColorPickerType = "default" | "all" | "onBase" | "base";
|
5
|
-
type FillPickerVariant = "dialog" | "editor";
|
5
|
+
type FillPickerVariant = "dialog" | "editor" | "blade";
|
6
6
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
7
7
|
"v-model"?: FillDefinitionValue;
|
8
8
|
} & {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Blueprint, BlueprintVariant, ButtonBlueprint,
|
1
|
+
import { Blueprint, BlueprintVariant, ButtonBlueprint, ButtonBlueprintVariant, ComponentBlueprints, ContainerBlueprint, ContainerVariant, OIconSizes, WebBlueprintItemDefintionType } from "@omnia/fx-models";
|
2
2
|
type blueprintType = "default";
|
3
3
|
export declare const useComponentBlueprintStore: () => {
|
4
4
|
state: {
|
@@ -40,7 +40,7 @@ export declare const useComponentBlueprintStore: () => {
|
|
40
40
|
byType<TType extends Blueprint>(type: WebBlueprintItemDefintionType): any;
|
41
41
|
readonly blueprints: ComponentBlueprints;
|
42
42
|
button: {
|
43
|
-
blueprintByType(type:
|
43
|
+
blueprintByType(type: ButtonBlueprintVariant | ButtonBlueprint): ButtonBlueprint;
|
44
44
|
};
|
45
45
|
icon: {
|
46
46
|
iconBlueprint(size: OIconSizes): import("@omnia/fx-models").IconBlueprint;
|
@@ -84,7 +84,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
84
84
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
85
85
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
86
86
|
button: {
|
87
|
-
blueprintByType(type: import("@omnia/fx-models").
|
87
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
88
88
|
};
|
89
89
|
icon: {
|
90
90
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -187,7 +187,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
187
187
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
188
188
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
189
189
|
button: {
|
190
|
-
blueprintByType(type: import("@omnia/fx-models").
|
190
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
191
191
|
};
|
192
192
|
icon: {
|
193
193
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -290,7 +290,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
290
290
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
291
291
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
292
292
|
button: {
|
293
|
-
blueprintByType(type: import("@omnia/fx-models").
|
293
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
294
294
|
};
|
295
295
|
icon: {
|
296
296
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -6230,7 +6230,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
6230
6230
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
6231
6231
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
6232
6232
|
button: {
|
6233
|
-
blueprintByType(type: import("@omnia/fx-models").
|
6233
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
6234
6234
|
};
|
6235
6235
|
icon: {
|
6236
6236
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -88,7 +88,7 @@ export declare const useThemeContextStore: () => {
|
|
88
88
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
89
89
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
90
90
|
button: {
|
91
|
-
blueprintByType(type: import("@omnia/fx-models").
|
91
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
92
92
|
};
|
93
93
|
icon: {
|
94
94
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -184,7 +184,7 @@ export declare const useThemeContextStore: () => {
|
|
184
184
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
185
185
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
186
186
|
button: {
|
187
|
-
blueprintByType(type: import("@omnia/fx-models").
|
187
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
188
188
|
};
|
189
189
|
icon: {
|
190
190
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -280,7 +280,7 @@ export declare const useThemeContextStore: () => {
|
|
280
280
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
281
281
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
282
282
|
button: {
|
283
|
-
blueprintByType(type: import("@omnia/fx-models").
|
283
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
284
284
|
};
|
285
285
|
icon: {
|
286
286
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -376,7 +376,7 @@ export declare const useThemeContextStore: () => {
|
|
376
376
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
377
377
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
378
378
|
button: {
|
379
|
-
blueprintByType(type: import("@omnia/fx-models").
|
379
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
380
380
|
};
|
381
381
|
icon: {
|
382
382
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -474,7 +474,7 @@ export declare const useThemeContextStore: () => {
|
|
474
474
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
475
475
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
476
476
|
button: {
|
477
|
-
blueprintByType(type: import("@omnia/fx-models").
|
477
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
478
478
|
};
|
479
479
|
icon: {
|
480
480
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -570,7 +570,7 @@ export declare const useThemeContextStore: () => {
|
|
570
570
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
571
571
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
572
572
|
button: {
|
573
|
-
blueprintByType(type: import("@omnia/fx-models").
|
573
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
574
574
|
};
|
575
575
|
icon: {
|
576
576
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -666,7 +666,7 @@ export declare const useThemeContextStore: () => {
|
|
666
666
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
667
667
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
668
668
|
button: {
|
669
|
-
blueprintByType(type: import("@omnia/fx-models").
|
669
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
670
670
|
};
|
671
671
|
icon: {
|
672
672
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -762,7 +762,7 @@ export declare const useThemeContextStore: () => {
|
|
762
762
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
763
763
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
764
764
|
button: {
|
765
|
-
blueprintByType(type: import("@omnia/fx-models").
|
765
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
766
766
|
};
|
767
767
|
icon: {
|
768
768
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -860,7 +860,7 @@ export declare const useThemeContextStore: () => {
|
|
860
860
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
861
861
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
862
862
|
button: {
|
863
|
-
blueprintByType(type: import("@omnia/fx-models").
|
863
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
864
864
|
};
|
865
865
|
icon: {
|
866
866
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -956,7 +956,7 @@ export declare const useThemeContextStore: () => {
|
|
956
956
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
957
957
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
958
958
|
button: {
|
959
|
-
blueprintByType(type: import("@omnia/fx-models").
|
959
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
960
960
|
};
|
961
961
|
icon: {
|
962
962
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -1052,7 +1052,7 @@ export declare const useThemeContextStore: () => {
|
|
1052
1052
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
1053
1053
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
1054
1054
|
button: {
|
1055
|
-
blueprintByType(type: import("@omnia/fx-models").
|
1055
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
1056
1056
|
};
|
1057
1057
|
icon: {
|
1058
1058
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -1148,7 +1148,7 @@ export declare const useThemeContextStore: () => {
|
|
1148
1148
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
1149
1149
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
1150
1150
|
button: {
|
1151
|
-
blueprintByType(type: import("@omnia/fx-models").
|
1151
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
1152
1152
|
};
|
1153
1153
|
icon: {
|
1154
1154
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -66,7 +66,7 @@ export declare const useThemeStoreV2: () => {
|
|
66
66
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
67
67
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
68
68
|
button: {
|
69
|
-
blueprintByType(type: import("@omnia/fx-models").
|
69
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
70
70
|
};
|
71
71
|
icon: {
|
72
72
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -84,7 +84,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
84
84
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
85
85
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
86
86
|
button: {
|
87
|
-
blueprintByType(type: import("@omnia/fx-models").
|
87
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
88
88
|
};
|
89
89
|
icon: {
|
90
90
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -187,7 +187,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
187
187
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
188
188
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
189
189
|
button: {
|
190
|
-
blueprintByType(type: import("@omnia/fx-models").
|
190
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
191
191
|
};
|
192
192
|
icon: {
|
193
193
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -290,7 +290,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
290
290
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
291
291
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
292
292
|
button: {
|
293
|
-
blueprintByType(type: import("@omnia/fx-models").
|
293
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
294
294
|
};
|
295
295
|
icon: {
|
296
296
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -6230,7 +6230,7 @@ export declare const useTypographyBlueprintStore: () => {
|
|
6230
6230
|
byType<TType extends import("@omnia/fx-models").Blueprint>(type: import("@omnia/fx-models").WebBlueprintItemDefintionType): any;
|
6231
6231
|
readonly blueprints: import("@omnia/fx-models").ComponentBlueprints;
|
6232
6232
|
button: {
|
6233
|
-
blueprintByType(type: import("@omnia/fx-models").
|
6233
|
+
blueprintByType(type: import("@omnia/fx-models").ButtonBlueprintVariant | import("@omnia/fx-models").ButtonBlueprint): import("@omnia/fx-models").ButtonBlueprint;
|
6234
6234
|
};
|
6235
6235
|
icon: {
|
6236
6236
|
iconBlueprint(size: "small" | "default" | "large" | "x-large" | "x-small"): import("@omnia/fx-models").IconBlueprint;
|
@@ -3,11 +3,14 @@ import { JourneyBladeProps } from "./JourneyBlade";
|
|
3
3
|
import { VNodeChild } from "vue";
|
4
4
|
import { ConstructComponentProps } from "../InternalDefineComponent";
|
5
5
|
import { DataTableProps } from "../oxide/datatable/DataTable";
|
6
|
+
import { DraggableProps } from "../oxide/draggable/Draggable";
|
6
7
|
type BladeElement = (props: ConstructComponentProps<Omit<JourneyBladeProps, "id" | "getApi">>) => any;
|
7
8
|
type DatatTableComponentTypings = <T>(props: ConstructComponentProps<Omit<DataTableProps<T>, "id" | "getApi">>) => any;
|
9
|
+
type DraggableComponentTypings = (props: ConstructComponentProps<DraggableProps>) => any;
|
8
10
|
export declare function defineBlade<TRoute extends JourneyBladeRoute = {}>(bladeId: GuidValue, renderer?: (blade: BladeElement) => VNodeChild): {
|
9
11
|
readonly Blade: BladeElement;
|
10
12
|
DataTable: DatatTableComponentTypings;
|
13
|
+
Draggable: DraggableComponentTypings;
|
11
14
|
id: GuidValue;
|
12
15
|
readonly route: TRoute;
|
13
16
|
moveNext(): void;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ColorDefinition } from "@omnia/fx-models";
|
2
|
-
export type JourneyVariant = "default" | "editor" | "settings";
|
2
|
+
export type JourneyVariant = "default" | "editor" | "settings" | "dialog";
|
3
3
|
export declare const JourneyStyles: {
|
4
4
|
wrapper: (color: ColorDefinition, variant: JourneyVariant) => string;
|
5
5
|
bladeWrapper: string;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
export declare const BladeVariantDefinitions: readonly ["new", "edit", "info", "preview", "read-only"];
|
1
|
+
export declare const BladeVariantDefinitions: readonly ["new", "edit", "info", "preview", "read-only", "picker"];
|
2
2
|
export type BladeVariantTypes = typeof BladeVariantDefinitions[number];
|
3
3
|
export declare const BladeVariantTypesName = "BladeVariantTypes";
|
4
4
|
export declare const BladeSizeDefinitions: readonly ["x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large", "full-screen", "fill-space"];
|