@omnia/fx 8.0.78-dev → 8.0.79-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 (17) hide show
  1. package/internal-do-not-import-from-here/shared/models/theming/ChromeDefinition.d.ts +3 -1
  2. package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +0 -1
  3. package/internal-do-not-import-from-here/ux/{colorsettingspicker/ColorSettingsPicker.css.d.ts → colorpickerV2/ColorPicker.css.d.ts} +0 -1
  4. package/internal-do-not-import-from-here/ux/{colorsettingspicker/ColorSettingsPicker.d.ts → colorpickerV2/ColorPicker.d.ts} +28 -1
  5. package/internal-do-not-import-from-here/ux/journey/v2/models/Constants.d.ts +1 -0
  6. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionTabRenderer.d.ts +19 -92
  7. package/internal-do-not-import-from-here/ux/oxide/btn/Button.css.d.ts +1 -1
  8. package/internal-do-not-import-from-here/ux/oxide/snackbar/Snackbar.d.ts +0 -43
  9. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/DefinitionsJourney.d.ts +0 -22
  10. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +1 -1
  11. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Chrome.d.ts +1 -1
  12. package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +1 -0
  13. package/internal-do-not-import-from-here/wctypings.d.ts +11 -26
  14. package/package.json +2 -2
  15. /package/internal-do-not-import-from-here/ux/{colorsettingspicker → colorpicker}/docs/ExampleComponents.d.ts +0 -0
  16. /package/internal-do-not-import-from-here/ux/{colorsettingspicker → colorpicker}/docs/SampleComponent.d.ts +0 -0
  17. /package/internal-do-not-import-from-here/ux/{colorsettingspicker → colorpicker}/docs/index.d.ts +0 -0
@@ -16,14 +16,16 @@ export interface ChromeDefinition {
16
16
  opacity?: number;
17
17
  colorType?: ColorType;
18
18
  toned?: boolean;
19
+ customColor?: string;
19
20
  };
20
21
  spacing?: SpacingSettings;
21
22
  elevation?: number;
22
23
  borderRadius?: BoxDimensions;
23
24
  border?: BoxDimensions;
24
25
  borderColor?: {
25
- colorType: ColorType;
26
+ colorType?: ColorType;
26
27
  toned?: boolean;
28
+ customColor?: string;
27
29
  };
28
30
  };
29
31
  }
@@ -118,7 +118,6 @@ export interface IVueComponentBase<Props = VueComponentBaseProps, EventsWithOn =
118
118
  createVueNode(element: string | models.GuidValue, props?: RawProps, children?: () => RawChildren): VNode;
119
119
  }
120
120
  export type VueComponentBaseProps = Pick<HTMLAttributes, "id" | "class" | "style" | "onClick" | "tabindex"> & Pick<EventHandlers<Events>, "onKeydown" | "onKeyup" | "onKeypress"> & {
121
- color?: string;
122
121
  key?: string | number | symbol | GuidValue;
123
122
  $children?: any;
124
123
  ref?: VNodeRef | string;
@@ -1,6 +1,5 @@
1
1
  export declare const ColorPickerStyles: {
2
2
  separator: (color: string) => string;
3
3
  colorPreview: (color: string, border: string, selected: boolean) => string;
4
- lastElement: string;
5
4
  selected: (color: string) => string;
6
5
  };
@@ -1,11 +1,18 @@
1
1
  import { ColorType } from "@omnia/fx-models";
2
2
  export interface ColorPickerProps {
3
- colorType: ColorType;
3
+ colorType?: ColorType;
4
4
  toned?: boolean;
5
+ customColor?: string;
5
6
  }
6
7
  export type ColorPickerType = "default" | "base" | "onBase";
7
8
  declare const _default: {
8
9
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
10
+ "custom-color": {
11
+ type: import("vue").PropType<boolean>;
12
+ };
13
+ customColor: {
14
+ type: import("vue").PropType<boolean>;
15
+ };
9
16
  type: {
10
17
  type: import("vue").PropType<ColorPickerType>;
11
18
  } & {
@@ -85,6 +92,12 @@ declare const _default: {
85
92
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
86
93
  "update:modelValue": (value: ColorPickerProps) => any;
87
94
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
95
+ "custom-color": {
96
+ type: import("vue").PropType<boolean>;
97
+ };
98
+ customColor: {
99
+ type: import("vue").PropType<boolean>;
100
+ };
88
101
  type: {
89
102
  type: import("vue").PropType<ColorPickerType>;
90
103
  } & {
@@ -173,6 +186,12 @@ declare const _default: {
173
186
  M: {};
174
187
  Defaults: {};
175
188
  }, Readonly<import("vue").ExtractPropTypes<{
189
+ "custom-color": {
190
+ type: import("vue").PropType<boolean>;
191
+ };
192
+ customColor: {
193
+ type: import("vue").PropType<boolean>;
194
+ };
176
195
  type: {
177
196
  type: import("vue").PropType<ColorPickerType>;
178
197
  } & {
@@ -258,6 +277,12 @@ declare const _default: {
258
277
  __isTeleport?: never;
259
278
  __isSuspense?: never;
260
279
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
280
+ "custom-color": {
281
+ type: import("vue").PropType<boolean>;
282
+ };
283
+ customColor: {
284
+ type: import("vue").PropType<boolean>;
285
+ };
261
286
  type: {
262
287
  type: import("vue").PropType<ColorPickerType>;
263
288
  } & {
@@ -411,6 +436,8 @@ declare const _default: {
411
436
  "onUpdate:modelValue"?: (value: ColorPickerProps) => any;
412
437
  "v-model"?: ColorPickerProps;
413
438
  modelValue?: ColorPickerProps;
439
+ customColor?: boolean;
440
+ "custom-color"?: boolean;
414
441
  }>, "onUpdate:modelValue"> & {
415
442
  "onUpdate:modelValue"?: (value: ColorPickerProps) => any;
416
443
  };
@@ -4,6 +4,7 @@ export declare const BladeVariantTypesName = "BladeVariantTypes";
4
4
  export declare const BladeSizeWidths: {
5
5
  extrasmall: number;
6
6
  small: number;
7
+ smallMedium: number;
7
8
  medium: number;
8
9
  extramedium: number;
9
10
  large: number;
@@ -1,52 +1,18 @@
1
- import { Section } from "../../../../models";
1
+ import { Section, LayoutEngineRenderContext, SectionSettings } from "../../../../models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- "theme-target-id": {
5
- type: import("vue").PropType<string>;
4
+ "render-context": {
5
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
6
6
  };
7
- themeTargetId: {
8
- type: import("vue").PropType<string>;
9
- };
10
- "use-scroll-marging-fix": {
11
- type: import("vue").PropType<boolean>;
12
- };
13
- useScrollMargingFix: {
14
- type: import("vue").PropType<boolean>;
15
- };
16
- "layout-id": {
17
- type: import("vue").PropType<string>;
18
- };
19
- layoutId: {
20
- type: import("vue").PropType<string>;
21
- };
22
- section: {
23
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
24
- } & {
25
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
7
+ renderContext: {
8
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
26
9
  };
27
10
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
28
- "theme-target-id": {
29
- type: import("vue").PropType<string>;
30
- };
31
- themeTargetId: {
32
- type: import("vue").PropType<string>;
33
- };
34
- "use-scroll-marging-fix": {
35
- type: import("vue").PropType<boolean>;
36
- };
37
- useScrollMargingFix: {
38
- type: import("vue").PropType<boolean>;
39
- };
40
- "layout-id": {
41
- type: import("vue").PropType<string>;
42
- };
43
- layoutId: {
44
- type: import("vue").PropType<string>;
11
+ "render-context": {
12
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
45
13
  };
46
- section: {
47
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
48
- } & {
49
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
14
+ renderContext: {
15
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
50
16
  };
51
17
  }>>, {}, true, {}, {}, {
52
18
  P: {};
@@ -56,66 +22,27 @@ declare const _default: {
56
22
  M: {};
57
23
  Defaults: {};
58
24
  }, Readonly<import("vue").ExtractPropTypes<{
59
- "theme-target-id": {
60
- type: import("vue").PropType<string>;
25
+ "render-context": {
26
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
61
27
  };
62
- themeTargetId: {
63
- type: import("vue").PropType<string>;
64
- };
65
- "use-scroll-marging-fix": {
66
- type: import("vue").PropType<boolean>;
67
- };
68
- useScrollMargingFix: {
69
- type: import("vue").PropType<boolean>;
70
- };
71
- "layout-id": {
72
- type: import("vue").PropType<string>;
73
- };
74
- layoutId: {
75
- type: import("vue").PropType<string>;
76
- };
77
- section: {
78
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
79
- } & {
80
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
28
+ renderContext: {
29
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
81
30
  };
82
31
  }>>, () => JSX.Element, {}, {}, {}, {}>;
83
32
  __isFragment?: never;
84
33
  __isTeleport?: never;
85
34
  __isSuspense?: never;
86
35
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
87
- "theme-target-id": {
88
- type: import("vue").PropType<string>;
89
- };
90
- themeTargetId: {
91
- type: import("vue").PropType<string>;
92
- };
93
- "use-scroll-marging-fix": {
94
- type: import("vue").PropType<boolean>;
95
- };
96
- useScrollMargingFix: {
97
- type: import("vue").PropType<boolean>;
98
- };
99
- "layout-id": {
100
- type: import("vue").PropType<string>;
101
- };
102
- layoutId: {
103
- type: import("vue").PropType<string>;
36
+ "render-context": {
37
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
104
38
  };
105
- section: {
106
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
107
- } & {
108
- type: import("vue").PropType<Section<import("@omnia/fx-models").SectionSettings>>;
39
+ renderContext: {
40
+ type: import("vue").PropType<LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>>;
109
41
  };
110
42
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
111
43
  propsDefinition: Omit<Readonly<{} & {
112
- section?: Section<import("@omnia/fx-models").SectionSettings>;
113
- themeTargetId?: string;
114
- layoutId?: string;
115
- "theme-target-id"?: string;
116
- "layout-id"?: string;
117
- useScrollMargingFix?: boolean;
118
- "use-scroll-marging-fix"?: boolean;
44
+ renderContext?: LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>;
45
+ "render-context"?: LayoutEngineRenderContext<Section<SectionSettings>, import("@omnia/fx-models").LayoutItemSettings>;
119
46
  }>, never>;
120
47
  };
121
48
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import { OButtonVariants } from "@omnia/fx-models";
2
2
  export declare const buttonStyles: {
3
3
  transparentWrapper: string;
4
- wrapper: (background: string, text: string, iconColor: string, variant: OButtonVariants, transparent: boolean, transparentHover: boolean) => string;
4
+ wrapper: (background: string, text: string, iconColor: string, variant: OButtonVariants, transparent: boolean, transparentHover: boolean, grouped: boolean) => string;
5
5
  };
@@ -1,16 +1,5 @@
1
- import { OSnackbarLocationCombination } from "@omnia/fx-models";
2
1
  declare const _default: {
3
2
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- location: {
5
- type: import("vue").PropType<OSnackbarLocationCombination>;
6
- } & {
7
- type: import("vue").PropType<OSnackbarLocationCombination>;
8
- };
9
- variant: {
10
- type: import("vue").PropType<"flat" | "text" | "outlined" | "plain" | "elevated" | "tonal">;
11
- } & {
12
- type: import("vue").PropType<"flat" | "text" | "outlined" | "plain" | "elevated" | "tonal">;
13
- };
14
3
  text: {
15
4
  type: import("vue").PropType<string>;
16
5
  } & {
@@ -35,16 +24,6 @@ declare const _default: {
35
24
  container?: any;
36
25
  colors?: any;
37
26
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
38
- location: {
39
- type: import("vue").PropType<OSnackbarLocationCombination>;
40
- } & {
41
- type: import("vue").PropType<OSnackbarLocationCombination>;
42
- };
43
- variant: {
44
- type: import("vue").PropType<"flat" | "text" | "outlined" | "plain" | "elevated" | "tonal">;
45
- } & {
46
- type: import("vue").PropType<"flat" | "text" | "outlined" | "plain" | "elevated" | "tonal">;
47
- };
48
27
  text: {
49
28
  type: import("vue").PropType<string>;
50
29
  } & {
@@ -80,16 +59,6 @@ declare const _default: {
80
59
  M: {};
81
60
  Defaults: {};
82
61
  }, Readonly<import("vue").ExtractPropTypes<{
83
- location: {
84
- type: import("vue").PropType<OSnackbarLocationCombination>;
85
- } & {
86
- type: import("vue").PropType<OSnackbarLocationCombination>;
87
- };
88
- variant: {
89
- type: import("vue").PropType<"flat" | "text" | "outlined" | "plain" | "elevated" | "tonal">;
90
- } & {
91
- type: import("vue").PropType<"flat" | "text" | "outlined" | "plain" | "elevated" | "tonal">;
92
- };
93
62
  text: {
94
63
  type: import("vue").PropType<string>;
95
64
  } & {
@@ -122,16 +91,6 @@ declare const _default: {
122
91
  __isTeleport?: never;
123
92
  __isSuspense?: never;
124
93
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
125
- location: {
126
- type: import("vue").PropType<OSnackbarLocationCombination>;
127
- } & {
128
- type: import("vue").PropType<OSnackbarLocationCombination>;
129
- };
130
- variant: {
131
- type: import("vue").PropType<"flat" | "text" | "outlined" | "plain" | "elevated" | "tonal">;
132
- } & {
133
- type: import("vue").PropType<"flat" | "text" | "outlined" | "plain" | "elevated" | "tonal">;
134
- };
135
94
  text: {
136
95
  type: import("vue").PropType<string>;
137
96
  } & {
@@ -170,8 +129,6 @@ declare const _default: {
170
129
  "onUpdate:modelValue"?: (value: boolean) => any;
171
130
  "v-model"?: boolean;
172
131
  modelValue?: boolean;
173
- variant?: "flat" | "text" | "outlined" | "plain" | "elevated" | "tonal";
174
- location?: OSnackbarLocationCombination;
175
132
  }>, never>;
176
133
  };
177
134
  export default _default;
@@ -1,22 +0,0 @@
1
- import { DynamicState } from "@omnia/fx-models";
2
- export interface ContentBlockVelcronState extends DynamicState {
3
- content: {
4
- [id: string]: unknown;
5
- };
6
- }
7
- declare const _default: {
8
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
9
- P: {};
10
- B: {};
11
- D: {};
12
- C: {};
13
- M: {};
14
- Defaults: {};
15
- }, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
16
- __isFragment?: never;
17
- __isTeleport?: never;
18
- __isSuspense?: never;
19
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
20
- propsDefinition: Omit<Readonly<{} & {}>, never>;
21
- };
22
- export default _default;
@@ -506,7 +506,7 @@ export declare function useThemeStyling(): {
506
506
  }) => import("./styles").TypographyTypesResult;
507
507
  };
508
508
  chrome: {
509
- chromeStyling: (blueprint: ChromeDefinition, colors: ColorSchema, spacingDefinition: SpacingDefinition) => string;
509
+ chromeStyling: (blueprint: ChromeDefinition, colors: ColorSchema, spacingDefinition: SpacingDefinition) => any[];
510
510
  };
511
511
  blueprints: {
512
512
  button: (bluePrint?: {
@@ -2,5 +2,5 @@ import { ChromeDefinition, ColorSchema, SpacingDefinition } from "@omnia/fx-mode
2
2
  export declare const ChromeStyles: {
3
3
  getChromeStyling: typeof getChromeStyling;
4
4
  };
5
- declare function getChromeStyling(blueprint: ChromeDefinition, colors: ColorSchema, spacingDefinition: SpacingDefinition): string;
5
+ declare function getChromeStyling(blueprint: ChromeDefinition, colors: ColorSchema, spacingDefinition: SpacingDefinition): any[];
6
6
  export {};
@@ -31,6 +31,7 @@ export declare function useIcons(): {
31
31
  color: FontAwesomeIcon;
32
32
  colorSchema: FontAwesomeIcon;
33
33
  colorPalette: FontAwesomeIcon;
34
+ colorPicker: FontAwesomeIcon;
34
35
  copy: FontAwesomeIcon;
35
36
  delete: FontAwesomeIcon;
36
37
  discard: FontAwesomeIcon;
@@ -4,11 +4,11 @@ import wce6b88bd8d41949c8af6fed268ae64430 from './console/components/SocketCompo
4
4
  import wc8e3534c9960c46b090f442e563d71265 from './ux/alignmentpicker/AlignmentPicker';
5
5
  import wce4889269c6ad440da65f3acdf5bb6152 from './ux/authsetup/AuthSetup';
6
6
  import wc057bef6897bb4ba4a089d01c2da1322e from './ux/chrome/ChromeRenderer';
7
+ import wc638cfe124ab24d0ebd0711c0bd844af6 from './ux/colorpickerV2/ColorPicker';
7
8
  import wc1266389c28034034921b897f788f302d from './ux/colorschemapicker/ColorSchemaPicker';
8
9
  import wc9ed2b61fad8a43f384efef4a5dcbd184 from './ux/colorschemapicker/ColorSchemaDefinitionPicker';
9
10
  import wc3779d0b63f54436eb25942b0c2487a2c from './ux/colorschemapicker/ColorSchemaViewer';
10
11
  import wc7abfeece956245f3ba63c231d3c31c26 from './ux/colorschemapicker/ColorSchemaEditor';
11
- import wc638cfe124ab24d0ebd0711c0bd844af6 from './ux/colorsettingspicker/ColorSettingsPicker';
12
12
  import wc5dfa7b609aed43ffab03dad33c65b2da from './ux/commandpalette/CommandPalette';
13
13
  import wcb11276a5e84a4709a55abd185b4c7a1d from './ux/confirmdialog/ConfirmDialog';
14
14
  import wc0fb46d84e95e4e04801878bec4b370cb from './ux/datetimefilterquery/DateTimeFilterQuery';
@@ -358,7 +358,6 @@ import wc68628381bcdb41f6b0beb64d7ce94052 from './ux/layoutcanvas/editor/setting
358
358
  import wc48ff129f9a254eec9276b47f0c0f8b3e from './ux/layoutcanvas/editor/settings/section/Header';
359
359
  import wc2a460a78bf504a2b9d00b1f86a347d46 from './ux/layoutcanvas/editor/settings/settingstabs/TabLayoutSettings';
360
360
  import wc5b6b6242356046c29e05c24fb2135bf0 from './ux/layoutcanvas/editor/settings/settingstabs/TabBlockSettings';
361
- import wc5538665e145f4fa8b28bc2103fc080b8 from './ux/theming-v2/admin/blades/blueprints/DefinitionsJourney';
362
361
  import wcd90e0352809742c482bdda733dc8872a from './ux/theming-v2/admin/blades/colorschemas/ColorSchemasJourney';
363
362
  import wcbed95d1ec67f4a15986fc72adebdb78f from './ux/theming-v2/admin/blades/themes/ThemesJourney';
364
363
  import wc1476702e8f24468d9185322be5931c54 from './ux/app/management/tabs/shared/addbutton/AddButton';
@@ -401,6 +400,9 @@ declare global {
401
400
  "omfx-chrome-renderer": typeof wc057bef6897bb4ba4a089d01c2da1322e extends {
402
401
  propsDefinition: infer TProp;
403
402
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc057bef6897bb4ba4a089d01c2da1322e extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc057bef6897bb4ba4a089d01c2da1322e>, "propsDefinition">> : never;
403
+ "omfx-color-pickerV2": typeof wc638cfe124ab24d0ebd0711c0bd844af6 extends {
404
+ propsDefinition: infer TProp;
405
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc638cfe124ab24d0ebd0711c0bd844af6 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc638cfe124ab24d0ebd0711c0bd844af6>, "propsDefinition">> : never;
404
406
  "omfx-color-schema-picker": typeof wc1266389c28034034921b897f788f302d extends {
405
407
  propsDefinition: infer TProp;
406
408
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc1266389c28034034921b897f788f302d extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc1266389c28034034921b897f788f302d>, "propsDefinition">> : never;
@@ -413,9 +415,6 @@ declare global {
413
415
  "omfx-color-schema-editor": typeof wc7abfeece956245f3ba63c231d3c31c26 extends {
414
416
  propsDefinition: infer TProp;
415
417
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc7abfeece956245f3ba63c231d3c31c26 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc7abfeece956245f3ba63c231d3c31c26>, "propsDefinition">> : never;
416
- "omfx-color-settings-picker": typeof wc638cfe124ab24d0ebd0711c0bd844af6 extends {
417
- propsDefinition: infer TProp;
418
- } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc638cfe124ab24d0ebd0711c0bd844af6 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc638cfe124ab24d0ebd0711c0bd844af6>, "propsDefinition">> : never;
419
418
  "omfx-command-palette": typeof wc5dfa7b609aed43ffab03dad33c65b2da extends {
420
419
  propsDefinition: infer TProp;
421
420
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc5dfa7b609aed43ffab03dad33c65b2da extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc5dfa7b609aed43ffab03dad33c65b2da>, "propsDefinition">> : never;
@@ -1463,9 +1462,6 @@ declare global {
1463
1462
  "omfx-layout-tab-block-settings": typeof wc5b6b6242356046c29e05c24fb2135bf0 extends {
1464
1463
  propsDefinition: infer TProp;
1465
1464
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc5b6b6242356046c29e05c24fb2135bf0 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc5b6b6242356046c29e05c24fb2135bf0>, "propsDefinition">> : never;
1466
- "omnia-workplace-definitions-journey": typeof wc5538665e145f4fa8b28bc2103fc080b8 extends {
1467
- propsDefinition: infer TProp;
1468
- } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc5538665e145f4fa8b28bc2103fc080b8 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc5538665e145f4fa8b28bc2103fc080b8>, "propsDefinition">> : never;
1469
1465
  "omnia-workplace-color-schemas-journey": typeof wcd90e0352809742c482bdda733dc8872a extends {
1470
1466
  propsDefinition: infer TProp;
1471
1467
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcd90e0352809742c482bdda733dc8872a extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcd90e0352809742c482bdda733dc8872a>, "propsDefinition">> : never;
@@ -1535,15 +1531,6 @@ declare global {
1535
1531
  };
1536
1532
  };
1537
1533
  };
1538
- "definitions": {
1539
- "journey": typeof wc5538665e145f4fa8b28bc2103fc080b8 extends {
1540
- propsDefinition: infer TProp;
1541
- } ? {
1542
- new (...args: any[]): {
1543
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1544
- };
1545
- } : typeof wc5538665e145f4fa8b28bc2103fc080b8;
1546
- };
1547
1534
  "color": {
1548
1535
  "schemas": {
1549
1536
  "journey": typeof wcd90e0352809742c482bdda733dc8872a extends {
@@ -1662,6 +1649,13 @@ declare global {
1662
1649
  } : typeof wcb059e461e6c048fe830c6d32722e5cdc;
1663
1650
  };
1664
1651
  "color": {
1652
+ "pickerV2": typeof wc638cfe124ab24d0ebd0711c0bd844af6 extends {
1653
+ propsDefinition: infer TProp;
1654
+ } ? {
1655
+ new (...args: any[]): {
1656
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1657
+ };
1658
+ } : typeof wc638cfe124ab24d0ebd0711c0bd844af6;
1665
1659
  "schema": {
1666
1660
  "picker": typeof wc1266389c28034034921b897f788f302d extends {
1667
1661
  propsDefinition: infer TProp;
@@ -1701,15 +1695,6 @@ declare global {
1701
1695
  };
1702
1696
  } : typeof wc511447a5fd2646af910064ed9970d82e;
1703
1697
  };
1704
- "settings": {
1705
- "picker": typeof wc638cfe124ab24d0ebd0711c0bd844af6 extends {
1706
- propsDefinition: infer TProp;
1707
- } ? {
1708
- new (...args: any[]): {
1709
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
1710
- };
1711
- } : typeof wc638cfe124ab24d0ebd0711c0bd844af6;
1712
- };
1713
1698
  "picker": {
1714
1699
  "schema": typeof wc327aebb7d6ce4565bf119cf67e121d1a extends {
1715
1700
  propsDefinition: infer TProp;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.78-dev",
4
+ "version": "8.0.79-dev",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "author": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.78-dev",
23
+ "@omnia/fx-models": "8.0.79-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",