@omnia/fx 8.0.187-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.
Files changed (32) hide show
  1. package/internal-do-not-import-from-here/stores/mediapicker/ImageTransformerStore.d.ts +5 -5
  2. package/internal-do-not-import-from-here/ux/aurora/components/backgroundstyle/BackgroundStyleEditor.d.ts +1 -1
  3. package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPicker.d.ts +6 -1
  4. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonBlueprintsViewer.d.ts +4 -4
  5. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStyleEditor.d.ts +1 -1
  6. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts +16 -8
  7. package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPicker.d.ts +1 -1
  8. package/internal-do-not-import-from-here/ux/aurora/store/ComponentBlueprintStore.d.ts +2 -2
  9. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +4 -4
  10. package/internal-do-not-import-from-here/ux/aurora/store/ThemeContextStore.d.ts +12 -12
  11. package/internal-do-not-import-from-here/ux/aurora/store/ThemeStoreV2.d.ts +1 -1
  12. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +4 -4
  13. package/internal-do-not-import-from-here/ux/journey/DefineBlade.d.ts +10 -147
  14. package/internal-do-not-import-from-here/ux/journey/Journey.css.d.ts +1 -1
  15. package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +2 -2
  16. package/internal-do-not-import-from-here/ux/journey/models/Constants.d.ts +1 -1
  17. package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +112 -560
  18. package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +7 -94
  19. package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorAction.d.ts +69 -0
  20. package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorActionSettings.d.ts +56 -0
  21. package/internal-do-not-import-from-here/ux/layoutcanvas/actionhandler/LayoutEditorClickHandler.d.ts +1 -0
  22. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +8 -91
  23. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTableServer.d.ts +8 -8
  24. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +21 -0
  25. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +50 -310
  26. package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +6 -6
  27. package/internal-do-not-import-from-here/ux/oxide/rating/Rating.d.ts +1 -1
  28. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +1 -1
  29. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +1 -1
  30. package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +1 -1
  31. package/internal-do-not-import-from-here/wctypings.d.ts +30 -6
  32. package/package.json +2 -2
@@ -169,7 +169,7 @@ export declare const useMediaPickerImageTransformerStore: () => {
169
169
  onMutatedCustomCropZone: import("../../core").MessageBusExposeOnlySubscription<MediaPickerCropTransformation>;
170
170
  onMutatedCurrentFilter: import("../../core").MessageBusExposeOnlySubscription<MediaPickerFilterTransformation>;
171
171
  onMutatedSelectedCropInformation: import("../../core").MessageBusExposeOnlySubscription<{
172
- [id: number]: MediaPickerCropTransformation;
172
+ [id: string]: MediaPickerCropTransformation;
173
173
  }>;
174
174
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
175
175
  mutate: {
@@ -189,11 +189,11 @@ export declare const useMediaPickerImageTransformerStore: () => {
189
189
  customCropZone: (value: MediaPickerCropTransformation | ((prev: MediaPickerCropTransformation) => MediaPickerCropTransformation)) => void;
190
190
  currentFilter: (value: MediaPickerFilterTransformation | ((prev: MediaPickerFilterTransformation) => MediaPickerFilterTransformation)) => void;
191
191
  selectedCropInformation: (value: {
192
- [id: number]: MediaPickerCropTransformation;
192
+ [id: string]: MediaPickerCropTransformation;
193
193
  } | ((prev: {
194
- [id: number]: MediaPickerCropTransformation;
194
+ [id: string]: MediaPickerCropTransformation;
195
195
  }) => {
196
- [id: number]: MediaPickerCropTransformation;
196
+ [id: string]: MediaPickerCropTransformation;
197
197
  })) => void;
198
198
  };
199
199
  get: {
@@ -240,7 +240,7 @@ export declare const useMediaPickerImageTransformerStore: () => {
240
240
  customCropZone: MediaPickerCropTransformation;
241
241
  currentFilter: MediaPickerFilterTransformation;
242
242
  selectedCropInformation: {
243
- [id: number]: MediaPickerCropTransformation;
243
+ [id: string]: MediaPickerCropTransformation;
244
244
  };
245
245
  };
246
246
  };
@@ -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
  } & {
@@ -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 { ButtonBlueprintType, ButtonBlueprints, ButtonTypes, ThemeContextType } from "@omnia/fx-models";
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", (type: ButtonBlueprintType, buttonType: ButtonTypes) => true>>) => {
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", (type: ButtonBlueprintType, buttonType: ButtonTypes) => true>> & {
61
+ } & DefineEmit<"click:select", (selection: ButtonBlueprintVariant) => true>> & {
62
62
  "v-slots"?: {
63
63
  default?: import("vue").Slot;
64
64
  } & {};
65
65
  } & {
66
- "onClick:select"?: (type: ButtonBlueprintType, buttonType: ButtonTypes) => any;
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;
@@ -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
  } & {
@@ -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, ButtonBlueprintType, ButtonTypes, ComponentBlueprints, ContainerBlueprint, ContainerVariant, OIconSizes, WebBlueprintItemDefintionType } from "@omnia/fx-models";
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: ButtonBlueprintType, buttonType: ButtonTypes): ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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").ButtonBlueprintType, buttonType: import("@omnia/fx-models").ButtonTypes): import("@omnia/fx-models").ButtonBlueprint;
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;
@@ -1,161 +1,24 @@
1
1
  import { GuidValue, JourneyBladeRoute } from "@omnia/fx-models";
2
2
  import { JourneyBladeProps } from "./JourneyBlade";
3
- import { VNodeChild, WatchStopHandle } from "vue";
3
+ import { VNodeChild } from "vue";
4
4
  import { ConstructComponentProps } from "../InternalDefineComponent";
5
+ import { DataTableProps } from "../oxide/datatable/DataTable";
6
+ import { DraggableProps } from "../oxide/draggable/Draggable";
5
7
  type BladeElement = (props: ConstructComponentProps<Omit<JourneyBladeProps, "id" | "getApi">>) => any;
8
+ type DatatTableComponentTypings = <T>(props: ConstructComponentProps<Omit<DataTableProps<T>, "id" | "getApi">>) => any;
9
+ type DraggableComponentTypings = (props: ConstructComponentProps<DraggableProps>) => any;
6
10
  export declare function defineBlade<TRoute extends JourneyBladeRoute = {}>(bladeId: GuidValue, renderer?: (blade: BladeElement) => VNodeChild): {
7
11
  readonly Blade: BladeElement;
8
- DataTable: <T extends unknown>(props: ConstructComponentProps<{
9
- colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
10
- } & {
11
- container?: boolean;
12
- } & {
13
- colors?: import("..").ColorSchemaStoreType;
14
- } & {
15
- "v-model:expanded"?: string[];
16
- } & {
17
- "onUpdate:expanded"?: (value: string[]) => void;
18
- } & {
19
- expanded?: string[];
20
- } & {
21
- "v-model:sortBy"?: import("..").SortItem[];
22
- } & {
23
- "onUpdate:sortBy"?: (value: import("..").SortItem[]) => void;
24
- } & {
25
- sortBy?: import("..").SortItem[];
26
- } & {
27
- mustSort?: boolean;
28
- } & {
29
- height?: string | number;
30
- } & {
31
- noDataText?: string;
32
- } & {
33
- loading?: boolean;
34
- } & {
35
- draggable?: boolean;
36
- } & {
37
- hover?: boolean;
38
- } & {
39
- showExpand?: boolean;
40
- } & {
41
- itemsPerPage?: number;
42
- } & {
43
- headers?: import("..").DataTableHeader[];
44
- } & {
45
- "v-model:items"?: T[];
46
- } & {
47
- "onUpdate:items"?: (value: T[]) => void;
48
- } & {
49
- items?: T[];
50
- } & import("..").DefineEmit<"update:sortBy", (item: import("..").SortItem[]) => void> & import("..").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("..").DefineEmit<"update:sortBy", (sort: import("..").SortItem[]) => void> & import("..").DefineSlot<"item", (row: import("..").IDataTableRowRenderer<T>) => void> & import("..").DefineSlot<`header.${string}`, (header: import("..").DataTableHeader) => void> & import("..").DefineSlot<`item.${string}`, (e: {
51
- item: T;
52
- }) => void>>) => {
53
- $: import("vue").ComponentInternalInstance;
54
- $data: {};
55
- $props: {};
56
- $attrs: {
57
- [x: string]: unknown;
58
- };
59
- $refs: {
60
- [x: string]: unknown;
61
- };
62
- $slots: Readonly<{
63
- [name: string]: import("vue").Slot<any>;
64
- }>;
65
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
66
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
67
- $emit: (event: string, ...args: any[]) => void;
68
- $el: any;
69
- $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
70
- beforeCreate?: (() => void) | (() => void)[];
71
- created?: (() => void) | (() => void)[];
72
- beforeMount?: (() => void) | (() => void)[];
73
- mounted?: (() => void) | (() => void)[];
74
- beforeUpdate?: (() => void) | (() => void)[];
75
- updated?: (() => void) | (() => void)[];
76
- activated?: (() => void) | (() => void)[];
77
- deactivated?: (() => void) | (() => void)[];
78
- beforeDestroy?: (() => void) | (() => void)[];
79
- beforeUnmount?: (() => void) | (() => void)[];
80
- destroyed?: (() => void) | (() => void)[];
81
- unmounted?: (() => void) | (() => void)[];
82
- renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
83
- renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
84
- errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
85
- };
86
- $forceUpdate: () => void;
87
- $nextTick: typeof import("vue").nextTick;
88
- $watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): WatchStopHandle;
89
- } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
90
- propsDefinition: import("../InternalDefineComponent").ExtractProps<{
91
- colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
92
- } & {
93
- container?: boolean;
94
- } & {
95
- colors?: import("..").ColorSchemaStoreType;
96
- } & {
97
- "v-model:expanded"?: string[];
98
- } & {
99
- "onUpdate:expanded"?: (value: string[]) => void;
100
- } & {
101
- expanded?: string[];
102
- } & {
103
- "v-model:sortBy"?: import("..").SortItem[];
104
- } & {
105
- "onUpdate:sortBy"?: (value: import("..").SortItem[]) => void;
106
- } & {
107
- sortBy?: import("..").SortItem[];
108
- } & {
109
- mustSort?: boolean;
110
- } & {
111
- height?: string | number;
112
- } & {
113
- noDataText?: string;
114
- } & {
115
- loading?: boolean;
116
- } & {
117
- draggable?: boolean;
118
- } & {
119
- hover?: boolean;
120
- } & {
121
- showExpand?: boolean;
122
- } & {
123
- itemsPerPage?: number;
124
- } & {
125
- headers?: import("..").DataTableHeader[];
126
- } & {
127
- "v-model:items"?: T[];
128
- } & {
129
- "onUpdate:items"?: (value: T[]) => void;
130
- } & {
131
- items?: T[];
132
- } & import("..").DefineEmit<"update:sortBy", (item: import("..").SortItem[]) => void> & import("..").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("..").DefineEmit<"update:sortBy", (sort: import("..").SortItem[]) => void> & import("..").DefineSlot<"item", (row: import("..").IDataTableRowRenderer<T>) => void> & import("..").DefineSlot<`header.${string}`, (header: import("..").DataTableHeader) => void> & import("..").DefineSlot<`item.${string}`, (e: {
133
- item: T;
134
- }) => void>> & {
135
- "v-slots"?: {
136
- default?: import("vue").Slot;
137
- } & {
138
- [x: `header.${string}`]: (header: import("..").DataTableHeader) => void;
139
- [x: `item.${string}`]: (e: {
140
- item: T;
141
- }) => void;
142
- item?: (row: import("..").IDataTableRowRenderer<T>) => void;
143
- };
144
- } & {
145
- "onUpdate:expanded"?: (expanded: string[]) => any;
146
- "onUpdate:sortBy"?: (item: import("..").SortItem[]) => any;
147
- } & Omit<import("..").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "loading" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items">;
148
- } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
149
- [key: string]: any;
150
- }>;
12
+ DataTable: DatatTableComponentTypings;
13
+ Draggable: DraggableComponentTypings;
151
14
  id: GuidValue;
152
15
  readonly route: TRoute;
153
16
  moveNext(): void;
154
17
  movePrev(): void;
155
18
  travelTo(toBladeId: GuidValue): void;
156
- defineValueToSave<T_2>(value?: T_2): {
157
- value: T_2;
158
- setValue: (value: T_2) => void;
19
+ defineValueToSave<T>(value?: T): {
20
+ value: T;
21
+ setValue: (value: T) => void;
159
22
  };
160
23
  };
161
24
  export {};
@@ -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;