@omnia/fx 8.0.11-vnext → 8.0.13-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 (73) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/runtime/core/ManifestByElementLoader.d.ts +1 -1
  3. package/internal-do-not-import-from-here/shared/models/Future.js +7 -1
  4. package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +2 -6
  5. package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.js +4 -4
  6. package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.d.ts +1 -1
  7. package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.js +8 -31
  8. package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +11 -1
  9. package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +10 -5
  10. package/internal-do-not-import-from-here/ux/UxCore.d.ts +0 -16
  11. package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +5 -4
  12. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/InstanceTab.d.ts +2 -2
  13. package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutTab.d.ts +2 -2
  14. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/NamingPolicyTab.d.ts +2 -2
  15. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateTab.d.ts +2 -2
  16. package/internal-do-not-import-from-here/ux/confirmdialog/IVueConfirmDialog.d.ts +1 -1
  17. package/internal-do-not-import-from-here/ux/confirmdialog/VueConfirmDialog.d.ts +1 -19
  18. package/internal-do-not-import-from-here/ux/filterengine/SelectionsArea.d.ts +2 -2
  19. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/BlockSettingsPanel.d.ts +4 -1
  20. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SettingsPanel.css.d.ts +3 -0
  21. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SettingsPanel.d.ts +46 -0
  22. package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +9 -10
  23. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +10 -40
  24. package/internal-do-not-import-from-here/ux/oxide/btntoggle/ButtonToggle.d.ts +13 -26
  25. package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +9 -22
  26. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +85 -137
  27. package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +46 -0
  28. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.css.d.ts +1 -0
  29. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +27 -23
  30. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +21 -31
  31. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +27 -23
  32. package/internal-do-not-import-from-here/ux/oxide/layout/Layout.d.ts +49 -51
  33. package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +9 -22
  34. package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +10 -40
  35. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.css.d.ts +3 -0
  36. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +123 -0
  37. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +9 -23
  38. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.css.d.ts +4 -0
  39. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +172 -0
  40. package/internal-do-not-import-from-here/ux/oxide/radio/Radio.css.d.ts +3 -0
  41. package/internal-do-not-import-from-here/ux/oxide/radio/Radio.d.ts +147 -0
  42. package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.css.d.ts +3 -0
  43. package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +133 -0
  44. package/internal-do-not-import-from-here/ux/oxide/slider/Slider.css.d.ts +3 -0
  45. package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +186 -0
  46. package/internal-do-not-import-from-here/ux/oxide/switch/Switch.css.d.ts +3 -0
  47. package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +147 -0
  48. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.css.d.ts +4 -0
  49. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +59 -18
  50. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.css.d.ts +3 -1
  51. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +25 -18
  52. package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +43 -9
  53. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +37 -21
  54. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +51 -82
  55. package/internal-do-not-import-from-here/ux/presetupwizard/PreSetupWizard.d.ts +2 -2
  56. package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker2.d.ts +219 -0
  57. package/internal-do-not-import-from-here/ux/statusmessageoverlay/StatusMessageOverlay.d.ts +1 -0
  58. package/internal-do-not-import-from-here/ux/theming-v2/ThemeStoreV2.d.ts +1 -1
  59. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseComponentStyling.d.ts +2 -2
  60. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseThemeStyling.d.ts +1 -15
  61. package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +5 -5
  62. package/internal-do-not-import-from-here/ux/use/UseComponentSetup.d.ts +9 -6
  63. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronRenderers.d.ts +1 -1
  64. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +1 -1
  65. package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +1 -1
  66. package/internal-do-not-import-from-here/ux/vuetify/VuetifyCore.d.ts +16 -0
  67. package/internal-do-not-import-from-here/wctypings.d.ts +14 -0
  68. package/package.json +2 -2
  69. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutSettingsPanel.d.ts +0 -27
  70. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SectionSettingsPanel.d.ts +0 -28
  71. package/internal-do-not-import-from-here/ux/vuetify/dividers/VDivider.bundle.d.ts +0 -1
  72. /package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/{tabs → settingstabs}/TabBlockSettings.d.ts +0 -0
  73. /package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/{tabs → settingstabs}/TabLayoutSettings.d.ts +0 -0
@@ -1,2 +1,2 @@
1
- import { ColorSchema, ColorStyles, ColorTypeResult } from "@omnia/fx-models";
2
- export declare const useComponentStyling: (colorSchema: ColorSchema) => ColorTypeResult<ColorStyles>;
1
+ import { ColorStyles } from "@omnia/fx-models";
2
+ export declare const useColorStyling: (color: string, opacity?: number) => ColorStyles;
@@ -1,16 +1,2 @@
1
- import { ColorSchema, ColorSchemaType, ColorSchemaTypes } from "@omnia/fx-models";
2
1
  import { ThemeStoreV2 } from "../ThemeStoreV2";
3
- export declare const useThemeStyling: (injectThemeStore?: ThemeStoreV2) => {
4
- bluePrints: {
5
- card: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, opacity?: number) => {
6
- card: import("@omnia/fx-models").ColorTypeResult<string>;
7
- cardImage: string;
8
- };
9
- };
10
- component: (colorSchema: ColorSchemaTypes | ColorSchemaType | ColorSchema) => import("@omnia/fx-models").ColorTypeResult<import("@omnia/fx-models").ColorStyles>;
11
- typography: () => import("./UseTypographyStyling").TypographyTypesResult;
12
- vuetify: {
13
- color: (colorSchema: ColorSchemaTypes | ColorSchemaType | ColorSchema) => import("@omnia/fx-models").ColorTypeResult<object>;
14
- slider: (colorSchema: ColorSchemaTypes | ColorSchemaType | ColorSchema) => import("@omnia/fx-models").ColorTypeResult<object>;
15
- };
16
- };
2
+ export declare const useThemeStyling: (injectThemeStore?: ThemeStoreV2) => {};
@@ -7,7 +7,7 @@ declare const _default: {
7
7
  model: Guid;
8
8
  colorSchemaType: ColorSchemaTypes;
9
9
  colorType: ColorTypes;
10
- onChange: (theme: ThemeDefinitionV2) => void;
10
+ onUpdate: (theme: ThemeDefinitionV2) => void;
11
11
  }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
12
12
  $attrs: {
13
13
  [x: string]: unknown;
@@ -26,7 +26,7 @@ declare const _default: {
26
26
  model: Guid;
27
27
  colorSchemaType: ColorSchemaTypes;
28
28
  colorType: ColorTypes;
29
- onChange: (theme: ThemeDefinitionV2) => void;
29
+ onUpdate: (theme: ThemeDefinitionV2) => void;
30
30
  }>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
31
31
  beforeCreate?: (() => void) | (() => void)[];
32
32
  created?: (() => void) | (() => void)[];
@@ -51,7 +51,7 @@ declare const _default: {
51
51
  model: Guid;
52
52
  colorSchemaType: ColorSchemaTypes;
53
53
  colorType: ColorTypes;
54
- onChange: (theme: ThemeDefinitionV2) => void;
54
+ onUpdate: (theme: ThemeDefinitionV2) => void;
55
55
  }>>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
56
56
  __isFragment?: never;
57
57
  __isTeleport?: never;
@@ -60,13 +60,13 @@ declare const _default: {
60
60
  model: Guid;
61
61
  colorSchemaType: ColorSchemaTypes;
62
62
  colorType: ColorTypes;
63
- onChange: (theme: ThemeDefinitionV2) => void;
63
+ onUpdate: (theme: ThemeDefinitionV2) => void;
64
64
  }>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
65
65
  propsDefinition: Readonly<{} & {
66
- onChange?: (theme: ThemeDefinitionV2) => void;
67
66
  colorSchemaType?: ColorSchemaTypes;
68
67
  colorType?: ColorTypes;
69
68
  model?: Guid;
69
+ onUpdate?: (theme: ThemeDefinitionV2) => void;
70
70
  }>;
71
71
  };
72
72
  export default _default;
@@ -1,10 +1,13 @@
1
- import { ColorType, ColorTypes } from "@omnia/fx/models";
1
+ import { ColorTypes } from "@omnia/fx/models";
2
2
  import { ColorSchemaStore } from "../theming-v2";
3
- export declare const useComponentSetup: (props: object) => ColorSchemaStore[];
4
- export declare const useComponentColors: (props: object, colorSchemaStore: ColorSchemaStore, defaultBaseColor: ColorTypes | ColorType) => {
5
- baseColor: any;
3
+ export declare const useComponentSetup: (props: object) => {
4
+ colorSchemaStore: ColorSchemaStore;
5
+ baseColor: import("@omnia/fx-models").ColorDefinition;
6
6
  onBaseColor: import("@omnia/fx-models").ColorDefinition;
7
- baseIsTonedColor: any;
8
- baseColorType: any;
7
+ containerColor: import("@omnia/fx-models").ColorDefinition;
8
+ onContainerColor: import("@omnia/fx-models").ColorDefinition;
9
+ baseColorType: ColorTypes;
9
10
  onBaseColorType: ColorTypes;
11
+ containerColorType: ColorTypes;
12
+ onContainerColorType: ColorTypes;
10
13
  };
@@ -18,7 +18,7 @@ export declare class VelcronRenderers {
18
18
  typography: (typographyType: import("..").TypographyTypes) => import("..").TypographyTypeDefinition;
19
19
  color: (colorSchemaType: import("..").ColorSchemaTypes, colorType: import("..").ColorTypes) => string;
20
20
  colorDefinition: (colorSchemaType: import("..").ColorSchemaTypes, colorType: import("..").ColorTypes) => import("..").ColorDefinition;
21
- complementaryColorType: (colorType: import("..").ColorTypes) => import("..").ColorTypes.base | import("..").ColorTypes.onBase | import("..").ColorTypes.container | import("..").ColorTypes.onContainer;
21
+ complementaryColorType: (colorType: import("..").ColorTypes) => import("..").ColorTypes;
22
22
  complementaryColor: (colorSchemaType: import("..").ColorSchemaTypes, colorType: import("..").ColorTypes) => string;
23
23
  complementaryColorDefinition: (colorSchemaType: import("..").ColorSchemaTypes, colorType: import("..").ColorTypes) => import("..").ColorDefinition;
24
24
  currentTheme: () => import("..").ThemeDefinitionV2;
@@ -8,7 +8,7 @@ export declare const useVelcronThemingStore: (newStateWithName?: string) => {
8
8
  typography: (typographyType: TypographyTypes | TypographyType) => import("..").TypographyTypeDefinition;
9
9
  color: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: ColorTypes | ColorType) => string;
10
10
  colorDefinition: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: ColorTypes | ColorType) => import("..").ColorDefinition;
11
- complementaryColorType: (colorType: ColorTypes | ColorType) => ColorTypes.base | ColorTypes.onBase | ColorTypes.container | ColorTypes.onContainer;
11
+ complementaryColorType: (colorType: ColorTypes | ColorType) => ColorTypes;
12
12
  complementaryColor: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: ColorTypes | ColorType) => string;
13
13
  complementaryColorDefinition: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: ColorTypes | ColorType) => import("..").ColorDefinition;
14
14
  currentTheme: () => ThemeDefinitionV2;
@@ -74,8 +74,8 @@ declare const _default: {
74
74
  propsDefinition: Readonly<{} & {
75
75
  definition?: VelcronAppDefinition;
76
76
  themeStoreRegistrationHook?: RegisterThemeStore;
77
- definitionChanged?: DefinitionChanged;
78
77
  eventHandlers?: VelcronRenderContextEventHandlers;
78
+ definitionChanged?: DefinitionChanged;
79
79
  rendererTheme?: ThemeDefinitionV2;
80
80
  }>;
81
81
  };
@@ -1,8 +1,24 @@
1
1
  import "./VuetifyTypography.css";
2
2
  import { createSimpleFunctional, directiveConfig, addOnceEventListener, addPassiveEventListener, getNestedValue, deepEqual, getObjectValueByPath, getPropertyFromItem, createRange, getZIndex, escapeHTML, filterObjectOnKeys, convertToUnit, kebabCase, isObject, remapInternalIcon, keys, arrayDiff, upperFirst, groupItems, wrapInArray, sortItems, defaultFilter, searchItems, getSlotType, debounce, throttle, getPrefixedScopedSlots, getSlot, clamp, padEnd, chunk, humanReadableFileSize, camelizeObjectKeys, mergeDeep, fillArray, camelize } from "vuetify/lib/util/index.mjs";
3
+ import transitions from "vuetify/lib/components/transitions/index.mjs";
3
4
  export declare const VuetifySetup: {
4
5
  components: any;
5
6
  directives: any;
6
7
  transitions: any;
7
8
  };
8
9
  export { createSimpleFunctional, directiveConfig, addOnceEventListener, addPassiveEventListener, getNestedValue, deepEqual, getObjectValueByPath, getPropertyFromItem, createRange, getZIndex, escapeHTML, filterObjectOnKeys, convertToUnit, kebabCase, isObject, remapInternalIcon, keys, arrayDiff, upperFirst, groupItems, wrapInArray, sortItems, defaultFilter, searchItems, getSlotType, debounce, throttle, getPrefixedScopedSlots, getSlot, clamp, padEnd, chunk, humanReadableFileSize, camelizeObjectKeys, mergeDeep, fillArray, camelize };
10
+ export declare class VuetifyComponentLoader {
11
+ static vuetifyComponentPromiseResolvers: {
12
+ [elementName: string]: (component: any) => void;
13
+ };
14
+ static availableComponents: {
15
+ [elementName: string]: any;
16
+ };
17
+ constructor();
18
+ static componentAvailable: (tagName: string, component: any) => void;
19
+ static registerToVue: (arg?: {
20
+ directives?: object;
21
+ components?: object;
22
+ transitions?: object;
23
+ }) => void;
24
+ }
@@ -63,14 +63,21 @@ import wc0c73f6d6c7f34688a93368434caaa389 from './ux/oxide/btn/Button';
63
63
  import wcbeb97ee8f2a94d1b86980b1736f82e20 from './ux/oxide/btntoggle/ButtonToggle';
64
64
  import wcffc99f8d26ae4caf84ece7c13463b6c5 from './ux/oxide/card/Card';
65
65
  import wc2ae3cf98c95443a199d44705ad87d994 from './ux/oxide/dialog/Dialog';
66
+ import wcd1a4678669114d9293f42409a1080756 from './ux/oxide/divider/Divider';
66
67
  import wc1f535ab2cf154914a9bb104aa46d1e2a from './ux/oxide/expansionpanel/ExpansionPanels';
67
68
  import wc170e8b8212bd45f5b8009e0efb29d7a3 from './ux/oxide/expansionpanel/ExpansionPanel';
68
69
  import wcde8b25f7e81a437d9ee6b104c28b1c25 from './ux/oxide/icon/Icon';
69
70
  import wc25d0a8d8f8ac4ff08c468027b5273882 from './ux/oxide/layout/Layout';
70
71
  import wc49934d3df84d47c39314cce5bb4340b1 from './ux/oxide/list/List';
71
72
  import wc606fb8e73c2a4de59c5a7b96b9b8997b from './ux/oxide/list/ListItem';
73
+ import wce688539435a64ccf8569a6e05020ca94 from './ux/oxide/menu/Menu';
72
74
  import wcd17d504fd4874d8bb50ab6a946859546 from './ux/oxide/navigationdrawer/NavigationDrawer';
75
+ import wcc51213da3caa4607b2fa435ae0c7acbf from './ux/oxide/panel/Panel';
76
+ import wc6c9f088f52de491bbe36933530a1880a from './ux/oxide/radio/RadioGroup';
77
+ import wca156e0af12b3464082a7e9fd2cdab84a from './ux/oxide/radio/Radio';
78
+ import wc807ae5df89a446fbabaf07dd09dda3c1 from './ux/oxide/slider/Slider';
73
79
  import wc3241a7ddf0d04b68bf4aab335e2405fb from './ux/oxide/spacer/Spacer';
80
+ import wcccd3f88ddd6541fc9865ebdf93fadef9 from './ux/oxide/switch/Switch';
74
81
  import wc3ae18994ae5546dc945347d58432108d from './ux/oxide/tab/Tabs';
75
82
  import wc07776976fab941de8e169e6e903fb4fe from './ux/oxide/tab/Tab';
76
83
  import wc7b543325ab85489eb1401d7bfdf6f5fc from './ux/oxide/text/Text';
@@ -216,14 +223,21 @@ declare global {
216
223
  "o-btn-toggle": typeof wcbeb97ee8f2a94d1b86980b1736f82e20.propsDefinition & VueComponentBaseProps;
217
224
  "o-card": typeof wcffc99f8d26ae4caf84ece7c13463b6c5.propsDefinition & VueComponentBaseProps;
218
225
  "o-dialog": typeof wc2ae3cf98c95443a199d44705ad87d994.propsDefinition & VueComponentBaseProps;
226
+ "o-divider": typeof wcd1a4678669114d9293f42409a1080756.propsDefinition & VueComponentBaseProps;
219
227
  "o-expansion-panels": typeof wc1f535ab2cf154914a9bb104aa46d1e2a.propsDefinition & VueComponentBaseProps;
220
228
  "o-expansion-panel": typeof wc170e8b8212bd45f5b8009e0efb29d7a3.propsDefinition & VueComponentBaseProps;
221
229
  "o-icon": typeof wcde8b25f7e81a437d9ee6b104c28b1c25.propsDefinition & VueComponentBaseProps;
222
230
  "o-layout": typeof wc25d0a8d8f8ac4ff08c468027b5273882.propsDefinition & VueComponentBaseProps;
223
231
  "o-list": typeof wc49934d3df84d47c39314cce5bb4340b1.propsDefinition & VueComponentBaseProps;
224
232
  "o-list-item": typeof wc606fb8e73c2a4de59c5a7b96b9b8997b.propsDefinition & VueComponentBaseProps;
233
+ "o-menu": typeof wce688539435a64ccf8569a6e05020ca94.propsDefinition & VueComponentBaseProps;
225
234
  "o-navigation-drawer": typeof wcd17d504fd4874d8bb50ab6a946859546.propsDefinition & VueComponentBaseProps;
235
+ "o-panel": typeof wcc51213da3caa4607b2fa435ae0c7acbf.propsDefinition & VueComponentBaseProps;
236
+ "o-radio-group": typeof wc6c9f088f52de491bbe36933530a1880a.propsDefinition & VueComponentBaseProps;
237
+ "o-radio": typeof wca156e0af12b3464082a7e9fd2cdab84a.propsDefinition & VueComponentBaseProps;
238
+ "o-slider": typeof wc807ae5df89a446fbabaf07dd09dda3c1.propsDefinition & VueComponentBaseProps;
226
239
  "o-spacer": typeof wc3241a7ddf0d04b68bf4aab335e2405fb.propsDefinition & VueComponentBaseProps;
240
+ "o-switch": typeof wcccd3f88ddd6541fc9865ebdf93fadef9.propsDefinition & VueComponentBaseProps;
227
241
  "o-tabs": typeof wc3ae18994ae5546dc945347d58432108d.propsDefinition & VueComponentBaseProps;
228
242
  "o-tab": typeof wc07776976fab941de8e169e6e903fb4fe.propsDefinition & VueComponentBaseProps;
229
243
  "o-text": typeof wc7b543325ab85489eb1401d7bfdf6f5fc.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.11-vnext",
4
+ "version": "8.0.13-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.11-vnext",
23
+ "@omnia/fx-models": "8.0.13-vnext",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",
@@ -1,27 +0,0 @@
1
- import { ColorSchemaStore } from "../../..";
2
- import { VueComponentBaseProps, VueComponentBase } from "../../..";
3
- import { LayoutCanvasStore } from "../../";
4
- import { MultilingualStore, BlockTitleSettingsStore } from "../../../../stores";
5
- export interface LayoutSettingsProps extends VueComponentBaseProps {
6
- }
7
- export interface LayoutSettingsEvents {
8
- }
9
- export declare class LayoutSettingsPanel extends VueComponentBase<LayoutSettingsProps, LayoutSettingsEvents> {
10
- editorStore: LayoutCanvasStore;
11
- colorSchemaStore: ColorSchemaStore;
12
- MultilingualStore: MultilingualStore;
13
- private subscriptionHandler;
14
- blockTitleSettingsStore: BlockTitleSettingsStore;
15
- private omniaUxLoc;
16
- private slots;
17
- private tabs;
18
- private model;
19
- created(): void;
20
- mounted(): void;
21
- private populateData;
22
- renderIcon(): JSX.Element;
23
- createTabControl(): JSX.Element;
24
- renderTabs(): JSX.Element;
25
- renderOneTab(): JSX.Element;
26
- render(): JSX.Element;
27
- }
@@ -1,28 +0,0 @@
1
- import { ColorSchemaStore } from "../../..";
2
- import { BlockTitleSettings } from "../../../../models";
3
- import { VueComponentBaseProps, VueComponentBase } from "../../..";
4
- import { LayoutCanvasStore } from "../../";
5
- import { MultilingualStore, BlockTitleSettingsStore } from "../../../../stores";
6
- export interface SectionSettingsProps extends VueComponentBaseProps {
7
- }
8
- export interface BlockSettingsEvents {
9
- }
10
- export declare class SectionSettingsPanel extends VueComponentBase<SectionSettingsProps, BlockSettingsEvents> {
11
- private section;
12
- editorStore: LayoutCanvasStore;
13
- colorSchemaStore: ColorSchemaStore;
14
- MultilingualStore: MultilingualStore;
15
- private subscriptionHandler;
16
- blockTitleSettingsStore: BlockTitleSettingsStore;
17
- private omniaUxLoc;
18
- private slots;
19
- private tabs;
20
- private model;
21
- created(): void;
22
- mounted(): void;
23
- private populateData;
24
- onHeaderValueChanged(value: BlockTitleSettings): void;
25
- renderTabs(): JSX.Element;
26
- renderOneTab(): JSX.Element;
27
- render(): JSX.Element;
28
- }