@omnia/fx 8.0.26-vnext → 8.0.28-vnext

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 (41) hide show
  1. package/internal-do-not-import-from-here/manifests/omfx.libs.prosemirror.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningwizard/AppProvisioningWizard.d.ts +2 -2
  3. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/VelcronDefinitionStore.d.ts +4 -4
  4. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/blockheaders.d.ts +2 -2
  5. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/contentblocks.d.ts +3 -3
  6. package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.css.d.ts +5 -0
  7. package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +28 -0
  8. package/internal-do-not-import-from-here/ux/markdown/MarkdownRenderer.d.ts +1 -0
  9. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +17 -0
  10. package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.d.ts +101 -0
  11. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +17 -0
  12. package/internal-do-not-import-from-here/ux/oxide/stepper/Stepper.d.ts +69 -62
  13. package/internal-do-not-import-from-here/ux/oxide/stepper/StepperStep.d.ts +90 -61
  14. package/internal-do-not-import-from-here/ux/use/UseBreakPoint.d.ts +2 -1
  15. package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +1 -73
  16. package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlock.css.d.ts +7 -1
  17. package/internal-do-not-import-from-here/ux/velcron/blocks/content/ContentBlock.d.ts +6 -0
  18. package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/ContentViewer.css.d.ts +6 -0
  19. package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/ContentViewer.d.ts +94 -0
  20. package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/{DefinitionPickerPanelStyles.d.ts → DefinitionPickerPanel.css.d.ts} +1 -0
  21. package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/DefinitionPickerPanel.d.ts +72 -19
  22. package/internal-do-not-import-from-here/ux/velcron/blocks/content/model/ContentDefinitionRegistration.d.ts +5 -0
  23. package/internal-do-not-import-from-here/ux/velcron/blocks/content/store/ContentBlockStore.d.ts +40 -0
  24. package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/VelcronBlockSettings.d.ts +7 -2
  25. package/internal-do-not-import-from-here/ux/velcron/components/properties/VelcronProperties.d.ts +96 -96
  26. package/internal-do-not-import-from-here/ux/velcron/core/index.d.ts +1 -0
  27. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +20 -17
  28. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronEvents.d.ts +3 -0
  29. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronRenderers.d.ts +3 -91
  30. package/internal-do-not-import-from-here/ux/velcron/core/rules/IsEditMode.d.ts +20 -0
  31. package/internal-do-not-import-from-here/ux/velcron/core/rules/index.d.ts +1 -0
  32. package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +156 -156
  33. package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemamapper/ColorSchemaMapper.d.ts +16 -11
  34. package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +3 -3
  35. package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +52 -12
  36. package/internal-do-not-import-from-here/ux/velcron/renderer/components/App.d.ts +5 -5
  37. package/internal-do-not-import-from-here/ux/wizard/IWizard.d.ts +1 -1
  38. package/internal-do-not-import-from-here/ux/wizard/WizardComponent.d.ts +2 -2
  39. package/internal-do-not-import-from-here/wctypings.d.ts +2 -0
  40. package/package.json +2 -2
  41. package/internal-do-not-import-from-here/ux/markdown/Toast.d.ts +0 -4
@@ -1,11 +1,16 @@
1
- import { VelcronState } from "@omnia/fx-models";
1
+ import { ColorSchemaReference } from "@omnia/fx-models";
2
+ interface VelcronColorSchema {
3
+ colorSchemas: {
4
+ [key: string]: ColorSchemaReference;
5
+ };
6
+ }
2
7
  declare const _default: {
3
8
  new (...args: any[]): {
4
9
  $: import("vue").ComponentInternalInstance;
5
10
  $data: {};
6
11
  $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
7
- model: import("vue").Prop<VelcronState, VelcronState>;
8
- onChange: import("vue").Prop<(value: VelcronState) => void, (value: VelcronState) => void>;
12
+ model: import("vue").Prop<VelcronColorSchema, VelcronColorSchema>;
13
+ onChange: import("vue").Prop<(value: VelcronColorSchema) => void, (value: VelcronColorSchema) => void>;
9
14
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
10
15
  $attrs: {
11
16
  [x: string]: unknown;
@@ -21,8 +26,8 @@ declare const _default: {
21
26
  $emit: (event: string, ...args: any[]) => void;
22
27
  $el: any;
23
28
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
24
- model: import("vue").Prop<VelcronState, VelcronState>;
25
- onChange: import("vue").Prop<(value: VelcronState) => void, (value: VelcronState) => void>;
29
+ model: import("vue").Prop<VelcronColorSchema, VelcronColorSchema>;
30
+ onChange: import("vue").Prop<(value: VelcronColorSchema) => void, (value: VelcronColorSchema) => void>;
26
31
  }>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
27
32
  beforeCreate?: (() => void) | (() => void)[];
28
33
  created?: (() => void) | (() => void)[];
@@ -44,19 +49,19 @@ declare const _default: {
44
49
  $nextTick: typeof import("vue").nextTick;
45
50
  $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;
46
51
  } & Readonly<import("vue").ExtractPropTypes<{
47
- model: import("vue").Prop<VelcronState, VelcronState>;
48
- onChange: import("vue").Prop<(value: VelcronState) => void, (value: VelcronState) => void>;
52
+ model: import("vue").Prop<VelcronColorSchema, VelcronColorSchema>;
53
+ onChange: import("vue").Prop<(value: VelcronColorSchema) => void, (value: VelcronColorSchema) => void>;
49
54
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
50
55
  __isFragment?: never;
51
56
  __isTeleport?: never;
52
57
  __isSuspense?: never;
53
58
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
54
- model: import("vue").Prop<VelcronState, VelcronState>;
55
- onChange: import("vue").Prop<(value: VelcronState) => void, (value: VelcronState) => void>;
59
+ model: import("vue").Prop<VelcronColorSchema, VelcronColorSchema>;
60
+ onChange: import("vue").Prop<(value: VelcronColorSchema) => void, (value: VelcronColorSchema) => void>;
56
61
  }>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
57
62
  propsDefinition: Omit<Readonly<{} & {
58
- onChange?: (value: VelcronState) => void;
59
- model?: VelcronState;
63
+ onChange?: (value: VelcronColorSchema) => void;
64
+ model?: VelcronColorSchema;
60
65
  }>, never>;
61
66
  };
62
67
  export default _default;
@@ -5,7 +5,7 @@ export declare const useVelcronEditorStore: (newInstanceWithName?: string) => {
5
5
  state: {
6
6
  appData: {};
7
7
  appAsJson: string;
8
- appDefinition: VelcronAppDefinition;
8
+ appDefinition: VelcronAppDefinition<object>;
9
9
  appCacheKey: string;
10
10
  appTreeOpenIds: string[];
11
11
  treeViewItems: TreeViewItem<AppTreeItem>[];
@@ -51,8 +51,8 @@ export declare const useVelcronEditorStore: (newInstanceWithName?: string) => {
51
51
  onMutatedAppData: import("@omnia/fx").EventHook<{}>;
52
52
  onMutatingAppAsJson: import("@omnia/fx").EventHook<string>;
53
53
  onMutatedAppAsJson: import("@omnia/fx").EventHook<string>;
54
- onMutatingAppDefinition: import("@omnia/fx").EventHook<VelcronAppDefinition>;
55
- onMutatedAppDefinition: import("@omnia/fx").EventHook<VelcronAppDefinition>;
54
+ onMutatingAppDefinition: import("@omnia/fx").EventHook<VelcronAppDefinition<object>>;
55
+ onMutatedAppDefinition: import("@omnia/fx").EventHook<VelcronAppDefinition<object>>;
56
56
  onMutatingAppCacheKey: import("@omnia/fx").EventHook<string>;
57
57
  onMutatedAppCacheKey: import("@omnia/fx").EventHook<string>;
58
58
  onMutatingAppTreeOpenIds: import("@omnia/fx").EventHook<string[]>;
@@ -1,5 +1,5 @@
1
1
  import { VelcronAppDefinition, VelcronRenderContext } from "@omnia/fx-models";
2
- import { ThemeDefinitionV2, useVelcronThemingStore, VelcronRenderContextEventHandlers, ColorSchemaTypes, ColorSchemaType } from "../core";
2
+ import { ThemeDefinitionV2, useVelcronThemingStore, VelcronRenderContextEventHandlers, ColorSchemaTypes, ColorSchemaType, DynamicState } from "../core";
3
3
  export type RegisterThemingStore = (store: ReturnType<typeof useVelcronThemingStore>) => void;
4
4
  declare const _default: {
5
5
  new (...args: any[]): {
@@ -17,6 +17,12 @@ declare const _default: {
17
17
  colors?: any;
18
18
  blueprintType?: any;
19
19
  blueprint?: any;
20
+ "edit-mode": {
21
+ type: import("vue").PropType<boolean>;
22
+ };
23
+ editMode: {
24
+ type: import("vue").PropType<boolean>;
25
+ };
20
26
  "color-schema-type": {
21
27
  type: import("vue").PropType<ColorSchemaTypes | ColorSchemaType>;
22
28
  };
@@ -38,10 +44,12 @@ declare const _default: {
38
44
  type: import("vue").PropType<VelcronRenderContext>;
39
45
  };
40
46
  definition: {
41
- type: import("vue").PropType<VelcronAppDefinition>;
47
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
42
48
  required: true;
43
49
  };
44
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "blueprint" | "colorSchemaType" | "blueprintType" | "colors">;
50
+ }>> & {
51
+ "onState:updated"?: (state: object) => any;
52
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "blueprint" | "colorSchemaType" | "blueprintType" | "colors">;
45
53
  $attrs: {
46
54
  [x: string]: unknown;
47
55
  };
@@ -53,7 +61,7 @@ declare const _default: {
53
61
  }>;
54
62
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
55
63
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
56
- $emit: (event: string, ...args: any[]) => void;
64
+ $emit: (event: "state:updated", state: object) => void;
57
65
  $el: any;
58
66
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
59
67
  colorSchemaType: any;
@@ -61,6 +69,12 @@ declare const _default: {
61
69
  colors?: any;
62
70
  blueprintType?: any;
63
71
  blueprint?: any;
72
+ "edit-mode": {
73
+ type: import("vue").PropType<boolean>;
74
+ };
75
+ editMode: {
76
+ type: import("vue").PropType<boolean>;
77
+ };
64
78
  "color-schema-type": {
65
79
  type: import("vue").PropType<ColorSchemaTypes | ColorSchemaType>;
66
80
  };
@@ -82,10 +96,14 @@ declare const _default: {
82
96
  type: import("vue").PropType<VelcronRenderContext>;
83
97
  };
84
98
  definition: {
85
- type: import("vue").PropType<VelcronAppDefinition>;
99
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
86
100
  required: true;
87
101
  };
88
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
102
+ }>> & {
103
+ "onState:updated"?: (state: object) => any;
104
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
105
+ "state:updated": (state: DynamicState) => any;
106
+ }, string, {
89
107
  container?: any;
90
108
  blueprint?: any;
91
109
  colorSchemaType: any;
@@ -117,6 +135,12 @@ declare const _default: {
117
135
  colors?: any;
118
136
  blueprintType?: any;
119
137
  blueprint?: any;
138
+ "edit-mode": {
139
+ type: import("vue").PropType<boolean>;
140
+ };
141
+ editMode: {
142
+ type: import("vue").PropType<boolean>;
143
+ };
120
144
  "color-schema-type": {
121
145
  type: import("vue").PropType<ColorSchemaTypes | ColorSchemaType>;
122
146
  };
@@ -138,10 +162,12 @@ declare const _default: {
138
162
  type: import("vue").PropType<VelcronRenderContext>;
139
163
  };
140
164
  definition: {
141
- type: import("vue").PropType<VelcronAppDefinition>;
165
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
142
166
  required: true;
143
167
  };
144
- }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
168
+ }>> & {
169
+ "onState:updated"?: (state: object) => any;
170
+ } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
145
171
  __isFragment?: never;
146
172
  __isTeleport?: never;
147
173
  __isSuspense?: never;
@@ -151,6 +177,12 @@ declare const _default: {
151
177
  colors?: any;
152
178
  blueprintType?: any;
153
179
  blueprint?: any;
180
+ "edit-mode": {
181
+ type: import("vue").PropType<boolean>;
182
+ };
183
+ editMode: {
184
+ type: import("vue").PropType<boolean>;
185
+ };
154
186
  "color-schema-type": {
155
187
  type: import("vue").PropType<ColorSchemaTypes | ColorSchemaType>;
156
188
  };
@@ -172,10 +204,14 @@ declare const _default: {
172
204
  type: import("vue").PropType<VelcronRenderContext>;
173
205
  };
174
206
  definition: {
175
- type: import("vue").PropType<VelcronAppDefinition>;
207
+ type: import("vue").PropType<VelcronAppDefinition<object>>;
176
208
  required: true;
177
209
  };
178
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
210
+ }>> & {
211
+ "onState:updated"?: (state: object) => any;
212
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
213
+ "state:updated": (state: DynamicState) => any;
214
+ }, string, {
179
215
  container?: any;
180
216
  blueprint?: any;
181
217
  colorSchemaType: any;
@@ -184,7 +220,7 @@ declare const _default: {
184
220
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
185
221
  propsDefinition: Omit<Readonly<{
186
222
  container?: any;
187
- definition: VelcronAppDefinition;
223
+ definition: VelcronAppDefinition<object>;
188
224
  blueprint?: any;
189
225
  colorSchemaType: any;
190
226
  blueprintType?: any;
@@ -193,9 +229,13 @@ declare const _default: {
193
229
  themeDefinition?: ThemeDefinitionV2;
194
230
  "theme-definition"?: ThemeDefinitionV2;
195
231
  context?: VelcronRenderContext;
232
+ editMode?: boolean;
196
233
  eventHandlers?: unknown;
197
234
  "event-handlers"?: unknown;
198
235
  "color-schema-type"?: ColorSchemaTypes | ColorSchemaType;
199
- }>, never>;
236
+ "edit-mode"?: boolean;
237
+ }>, "onState:updated"> & {
238
+ "onState:updated"?: (state: object) => any;
239
+ };
200
240
  };
201
241
  export default _default;
@@ -4,7 +4,7 @@ declare const _default: {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
7
- definition: import("vue").Prop<VelcronAppDefinition, VelcronAppDefinition>;
7
+ definition: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
8
8
  renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
9
9
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
10
10
  $attrs: {
@@ -21,7 +21,7 @@ declare const _default: {
21
21
  $emit: (event: string, ...args: any[]) => void;
22
22
  $el: any;
23
23
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
24
- definition: import("vue").Prop<VelcronAppDefinition, VelcronAppDefinition>;
24
+ definition: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
25
25
  renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
26
26
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
27
27
  beforeCreate?: (() => void) | (() => void)[];
@@ -44,18 +44,18 @@ declare const _default: {
44
44
  $nextTick: typeof import("vue").nextTick;
45
45
  $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;
46
46
  } & Readonly<import("vue").ExtractPropTypes<{
47
- definition: import("vue").Prop<VelcronAppDefinition, VelcronAppDefinition>;
47
+ definition: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
48
48
  renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
49
49
  }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
50
50
  __isFragment?: never;
51
51
  __isTeleport?: never;
52
52
  __isSuspense?: never;
53
53
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
54
- definition: import("vue").Prop<VelcronAppDefinition, VelcronAppDefinition>;
54
+ definition: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
55
55
  renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
56
56
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
57
57
  propsDefinition: Omit<Readonly<{} & {
58
- definition?: VelcronAppDefinition;
58
+ definition?: VelcronAppDefinition<object>;
59
59
  renderContext?: VelcronRenderContext;
60
60
  }>, never>;
61
61
  };
@@ -3,7 +3,7 @@ import { TsxAllowUnknowProperties, WizardStyles } from "..";
3
3
  export interface WizardStepModel {
4
4
  id: string;
5
5
  title: string;
6
- content: JSX.Element;
6
+ content: () => JSX.Element;
7
7
  beforeButtons?: () => JSX.Element[];
8
8
  afterButtons?: () => JSX.Element[];
9
9
  onGoToNext?: () => Promise<boolean>;
@@ -4,7 +4,7 @@ import { VueComponentBase } from "../VueComponentBase";
4
4
  import { IWizard, IWizardInstance, IWizardStepComponent, WizardStateModel, WizardStepModel } from "./IWizard";
5
5
  import "./Wizard.css";
6
6
  import { IWizardInstanceExtends, WizardStep } from "./WizardStep";
7
- export default class WizardComponent extends VueComponentBase implements IWebComponentInstance, IWizard, IWizardInstanceExtends {
7
+ export declare class WizardComponent extends VueComponentBase implements IWebComponentInstance, IWizard, IWizardInstanceExtends {
8
8
  styles?: typeof WizardStyles;
9
9
  steps: Array<WizardStepModel>;
10
10
  onInstanceCreated?: (inst: IWizardInstance) => void;
@@ -53,7 +53,7 @@ export default class WizardComponent extends VueComponentBase implements IWebCom
53
53
  private renderSelectTemplateStepHeader;
54
54
  private renderSelectTemplateStepContent;
55
55
  private shouldRenderStep;
56
- renderHorizontalMode(): JSX.Element | JSX.Element[];
56
+ renderHorizontalMode(): JSX.Element[];
57
57
  renderVerticalMode(): JSX.Element[] | JSX.Element[][];
58
58
  renderActions(): JSX.Element;
59
59
  render(): JSX.Element;
@@ -97,6 +97,7 @@ import wc7f06e68f94904b48b827b23acd148bec from './ux/optionpicker/OptionPicker';
97
97
  import wc8e3534c9960c46b090f442e563d71265 from './ux/oxide/alignmentpicker/AlignmentPicker';
98
98
  import wc7fbf605e1ae24b21b0a9e35141aca17b from './ux/oxide/appbar/Appbar';
99
99
  import wc678a52a5101d41498d47754aeae5f9f6 from './ux/oxide/btn/Button';
100
+ import wc07d25314740f40058782f3123ea1c388 from './ux/oxide/btngroup/ButtonGroup';
100
101
  import wcbeb97ee8f2a94d1b86980b1736f82e20 from './ux/oxide/btntoggle/ButtonToggle';
101
102
  import wcffc99f8d26ae4caf84ece7c13463b6c5 from './ux/oxide/card/Card';
102
103
  import wccd6b8d55c18546d4b1d8c4d9e1d89106 from './ux/oxide/checkbox/Checkbox';
@@ -320,6 +321,7 @@ declare global {
320
321
  "o-alignment-picker": typeof wc8e3534c9960c46b090f442e563d71265.propsDefinition & VueComponentBaseProps;
321
322
  "o-app-bar": typeof wc7fbf605e1ae24b21b0a9e35141aca17b.propsDefinition & VueComponentBaseProps;
322
323
  "o-btn": typeof wc678a52a5101d41498d47754aeae5f9f6.propsDefinition & VueComponentBaseProps;
324
+ "o-btn-group": typeof wc07d25314740f40058782f3123ea1c388.propsDefinition & VueComponentBaseProps;
323
325
  "o-btn-toggle": typeof wcbeb97ee8f2a94d1b86980b1736f82e20.propsDefinition & VueComponentBaseProps;
324
326
  "o-card": typeof wcffc99f8d26ae4caf84ece7c13463b6c5.propsDefinition & VueComponentBaseProps;
325
327
  "o-checkbox": typeof wccd6b8d55c18546d4b1d8c4d9e1d89106.propsDefinition & VueComponentBaseProps;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.26-vnext",
4
+ "version": "8.0.28-vnext",
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.26-vnext",
23
+ "@omnia/fx-models": "8.0.28-vnext",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",
@@ -1,4 +0,0 @@
1
- export { Editor, Viewer } from "@toast-ui/editor";
2
- import "@toast-ui/editor/dist/toastui-editor.css";
3
- import "@toast-ui/editor/dist/theme/toastui-editor-dark.css";
4
- import "@toast-ui/editor/dist/toastui-editor-viewer.css";