@omnia/fx 8.0.263-dev → 8.0.264-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 (33) hide show
  1. package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/typography/components/FontPicker.css.d.ts +4 -1
  2. package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/typography/components/FontPicker.d.ts +12 -8
  3. package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/typography/components/FontRegistration.d.ts +6 -0
  4. package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/typography/store/TypographyEditorStore.d.ts +41 -16
  5. package/internal-do-not-import-from-here/ux/aurora/admin/blades/fontsmanager/FontManager.d.ts +2 -0
  6. package/internal-do-not-import-from-here/ux/aurora/admin/blades/fontsmanager/blade/FontDefinitionBlade.d.ts +6 -0
  7. package/internal-do-not-import-from-here/ux/aurora/admin/blades/fontsmanager/store/FontManagerStore.d.ts +75 -0
  8. package/internal-do-not-import-from-here/ux/aurora/store/FontStore.d.ts +77 -0
  9. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +114 -10
  10. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +117 -11
  11. package/internal-do-not-import-from-here/ux/aurora/store/index.d.ts +1 -0
  12. package/internal-do-not-import-from-here/ux/markdown2/MarkdownToolbar.css.d.ts +1 -0
  13. package/internal-do-not-import-from-here/ux/markdown2/commands/EditorCommands.d.ts +11 -19
  14. package/internal-do-not-import-from-here/ux/markdown2/commands/helpers/EditorNodeHelper.d.ts +3 -10
  15. package/internal-do-not-import-from-here/ux/markdown2/commands/helpers/HtmlNodehelper.d.ts +6 -6
  16. package/internal-do-not-import-from-here/ux/markdown2/models/EditorModels.d.ts +13 -9
  17. package/internal-do-not-import-from-here/ux/markdown2/models/EditorPlugin.d.ts +6 -4
  18. package/internal-do-not-import-from-here/ux/markdown2/plugins/colorstyle/ColorButton.d.ts +2 -2
  19. package/internal-do-not-import-from-here/ux/markdown2/plugins/text/TextPlugin.d.ts +2 -2
  20. package/internal-do-not-import-from-here/ux/markdown2/plugins/typography/TypographyButton.d.ts +2 -2
  21. package/internal-do-not-import-from-here/ux/markdown2/plugins/velcron/VelcronPlugin.d.ts +2 -2
  22. package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownStore.d.ts +21 -12
  23. package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownToolbarStore.d.ts +122 -55
  24. package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +1 -1
  25. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +5 -1
  26. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +10 -1
  27. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/VelcronEditorBuilder.d.ts +1 -0
  28. package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronEditorDescriptors.d.ts +1 -0
  29. package/internal-do-not-import-from-here/ux/velcron/editor/templates/EditorTemplates.d.ts +1 -0
  30. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyResolverEditor.d.ts +13 -0
  31. package/internal-do-not-import-from-here/ux/versionedlayout/blade/VersionedLayoutBladeBuilder.d.ts +1 -1
  32. package/internal-do-not-import-from-here/wctypings.d.ts +20 -0
  33. package/package.json +2 -2
@@ -15,6 +15,7 @@ export declare class VelcronEditorBuilder {
15
15
  sliderEditor: (name: string, stateMapping: string, settings: VelcronSliderPropertyEditorSettings) => VelcronEditorBuilder;
16
16
  gridEditor: (name: string, stateMapping: string) => VelcronEditorBuilder;
17
17
  widthEditor: (name: string, stateMapping: string) => VelcronEditorBuilder;
18
+ propertyResolverEditor: (name: string, stateMapping: string) => VelcronEditorBuilder;
18
19
  };
19
20
  build(): VelcronEditor<any>[];
20
21
  }
@@ -20,6 +20,7 @@ export declare const VelcronBlueprintEditorDescriptor: VelcronEditorDescriptor;
20
20
  export declare const VelcronBackgroundEditorDescriptor: VelcronEditorDescriptor;
21
21
  export declare const VelcronGridEditorDescriptor: VelcronEditorDescriptor;
22
22
  export declare const VelcronSelectEditorDescriptor: VelcronEditorDescriptor;
23
+ export declare const VelcronPropertyResolverEditorDescriptor: VelcronEditorDescriptor;
23
24
  type BuiltInPropertyEditorDescriptorMap = {
24
25
  [key in BuiltInPropertyEditorType]: typeof VelcronTextEditorDescriptor | typeof VelcronNumberEditorDescriptor | typeof VelcronSliderEditorDescriptor | typeof VelcronSwitchEditorDescriptor | typeof VelcronAlignmentEditorDescriptor | typeof VelcronColorEditorDescriptor | typeof VelcronMarkdownEditorDescriptor | typeof VelcronIconEditorDescriptor | typeof VelcronImageEditorDescriptor | typeof VelcronTypographyEditorDescriptor | typeof VelcronSpacingEditorDescriptor | typeof VelcronColorSchemaEditorDescriptor | typeof VelcronReferenceEditorDescriptor | typeof VelcronBackgroundEditorDescriptor | typeof VelcronBlueprintEditorDescriptor | typeof VelcronGridEditorDescriptor;
25
26
  };
@@ -4,4 +4,5 @@ export declare const VelcronEditorTemplates: {
4
4
  SpacingEditor: VelcronComponentTemplateDescriptor;
5
5
  ContainerBlueprintEditor: VelcronComponentTemplateDescriptor;
6
6
  BackgroundMediaEditor: VelcronComponentTemplateDescriptor;
7
+ PropertyResolverEditor: VelcronComponentTemplateDescriptor;
7
8
  };
@@ -0,0 +1,13 @@
1
+ import { VelcronPropertyResolverEditorSettings } from "@omnia/fx-models";
2
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
3
+ settings?: VelcronPropertyResolverEditorSettings;
4
+ } & {
5
+ "emit:update:modelValue": (value: {}) => void;
6
+ } & {
7
+ "v-model"?: {};
8
+ } & {
9
+ "onUpdate:modelValue"?: (value: {}) => void;
10
+ } & {
11
+ modelValue?: {};
12
+ }>) => any;
13
+ export default _default;
@@ -24,5 +24,5 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
24
24
  "onUpdate:modelValue"?: (value: boolean) => void;
25
25
  } & {
26
26
  modelValue?: boolean;
27
- } & DefineSlot<"navigation", () => JSX.Element> & DefineSlot<"bottomNavigationDrawer", () => JSX.Element> & DefineSlot<"prependNavigation", () => JSX.Element>>) => any;
27
+ } & DefineSlot<"navigation", () => JSX.Element> & DefineSlot<"bottomNavigationDrawer", () => JSX.Element> & DefineSlot<"prependNavigation", () => JSX.Element> & DefineSlot<"rightPanel", () => JSX.Element>>) => any;
28
28
  export default _default;
@@ -484,6 +484,7 @@ import wcfeb168ca8f484e06ab3f88d48c078319 from './ux/admin/system/submenu/servic
484
484
  import wc3a923c54b15d461597cd678c0d561496 from './ux/admin/system/submenu/systemlogs/SystemLogsJourney';
485
485
  import wc9fbf91affc974ca698437e8ada43bb0c from './ux/admin/system/submenu/tenantcontact/TenantContactJourney';
486
486
  import wcd90e0352809742c482bdda733dc8872a from './ux/aurora/admin/blades/colorschemas/ColorSchemasJourney';
487
+ import wc8142fa90f0d34258bb080a15aa21ab74 from './ux/aurora/admin/blades/fontsmanager/FontManager';
487
488
  import wc682077b575c74b2086cbf438346e0ed3 from './ux/aurora/admin/blades/templates/TemplatesJourney';
488
489
  import wc5e7631b4411b498eafa68ebde2136cc5 from './ux/aurora/admin/blades/themedesigner/ThemeDesigner';
489
490
  import wc136c9c57149747f198180bdf38a6b297 from './ux/aurora/admin/blades/themedesigner/PreviewJourney';
@@ -519,6 +520,7 @@ import wc891de93e73cc47b0a552d24fdf34c9cf from './ux/aurora/admin/blades/bluepri
519
520
  import wcfc2401c7c3384790ae7ce17d05b0855f from './ux/aurora/admin/blades/blueprints/typography/TypographyJourney';
520
521
  import wca1b28c17c13e4250a8ba59a01efece0e from './ux/admin/system/submenu/systemlogs/providers/AppInstance/AppInstanceLog';
521
522
  import wc606afcf1b9b04b5e8920b7675b4ecc4b from './ux/admin/system/submenu/systemlogs/providers/Feature/FeatureInstanceLog';
523
+ import wc3734b9786d374f388cc5b5181f5cd4f3 from './ux/aurora/admin/blades/blueprints/typography/components/FontPicker';
522
524
  import wcb358eb4c58fb49119c7c2fca8b2fe186 from './ux/app/apps/admin/appsettings/admin/blades/editapp/EditBlade';
523
525
  import wcb0e4ded914dd47ed99226f884b927f9a from './ux/app/apps/admin/appsettings/admin/blades/switchingtemplate/journey/SwitchingTemplateSettings';
524
526
  declare global {
@@ -712,6 +714,15 @@ declare global {
712
714
  } : typeof wcd90e0352809742c482bdda733dc8872a;
713
715
  };
714
716
  };
717
+ "fontmanager": {
718
+ "journey": typeof wc8142fa90f0d34258bb080a15aa21ab74 extends {
719
+ propsDefinition: infer TProp;
720
+ } ? {
721
+ new (...args: any[]): {
722
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
723
+ };
724
+ } : typeof wc8142fa90f0d34258bb080a15aa21ab74;
725
+ };
715
726
  "templates": {
716
727
  "journey": typeof wc682077b575c74b2086cbf438346e0ed3 extends {
717
728
  propsDefinition: infer TProp;
@@ -3996,6 +4007,15 @@ declare global {
3996
4007
  };
3997
4008
  } : typeof wc1476702e8f24468d9185322be5931c54;
3998
4009
  };
4010
+ "font": {
4011
+ "picker": typeof wc3734b9786d374f388cc5b5181f5cd4f3 extends {
4012
+ propsDefinition: infer TProp;
4013
+ } ? {
4014
+ new (...args: any[]): {
4015
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
4016
+ };
4017
+ } : typeof wc3734b9786d374f388cc5b5181f5cd4f3;
4018
+ };
3999
4019
  };
4000
4020
  let oa: {
4001
4021
  "recaptcha": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.263-dev",
4
+ "version": "8.0.264-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.263-dev",
23
+ "@omnia/fx-models": "8.0.264-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",