@omnia/fx 8.0.282-dev → 8.0.285-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (17) hide show
  1. package/internal-do-not-import-from-here/ux/UxModels.d.ts +2 -0
  2. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.css.d.ts +0 -1
  3. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.d.ts +26 -0
  4. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +110 -0
  5. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +110 -0
  6. package/internal-do-not-import-from-here/ux/datetimezonerenderer/DateTimeZoneRenderer.d.ts +5 -5
  7. package/internal-do-not-import-from-here/ux/editorchrome/stores/EditorSettingsStore.d.ts +1 -1
  8. package/internal-do-not-import-from-here/ux/flow/editor/rules/EditorRules.d.ts +1 -0
  9. package/internal-do-not-import-from-here/ux/layoutcanvas/apis/LayoutProviderApis.d.ts +6 -0
  10. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutStepRenderer.d.ts +1 -1
  11. package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +5 -5
  12. package/internal-do-not-import-from-here/ux/markdown/MarkdownRenderer.d.ts +5 -5
  13. package/internal-do-not-import-from-here/ux/models/Velcron.d.ts +3 -2
  14. package/internal-do-not-import-from-here/ux/permissioninput/loc/localize.d.ts +2 -0
  15. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyResolverEditor.d.ts +4 -4
  16. package/internal-do-not-import-from-here/ux/velcron/stores/VelcronDefinitionStore.d.ts +6 -2
  17. package/package.json +2 -2
@@ -2,7 +2,7 @@ import { DateTimeZone } from "@omnia/fx/models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
4
4
  size: {
5
- type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl">;
5
+ type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl">;
6
6
  };
7
7
  showTimeZone: {
8
8
  type: import("vue").PropType<boolean>;
@@ -26,7 +26,7 @@ declare const _default: {
26
26
  };
27
27
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
28
28
  size: {
29
- type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl">;
29
+ type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl">;
30
30
  };
31
31
  showTimeZone: {
32
32
  type: import("vue").PropType<boolean>;
@@ -57,7 +57,7 @@ declare const _default: {
57
57
  Defaults: {};
58
58
  }, Readonly<import("vue").ExtractPropTypes<{
59
59
  size: {
60
- type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl">;
60
+ type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl">;
61
61
  };
62
62
  showTimeZone: {
63
63
  type: import("vue").PropType<boolean>;
@@ -85,7 +85,7 @@ declare const _default: {
85
85
  __isSuspense?: never;
86
86
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
87
87
  size: {
88
- type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl">;
88
+ type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl">;
89
89
  };
90
90
  showTimeZone: {
91
91
  type: import("vue").PropType<boolean>;
@@ -111,7 +111,7 @@ declare const _default: {
111
111
  propsDefinition: Omit<Readonly<{} & {
112
112
  value?: DateTimeZone<string>;
113
113
  label?: string;
114
- size?: "xs" | "s" | "m" | "l" | "xl";
114
+ size?: "l" | "s" | "xs" | "m" | "xl";
115
115
  variant?: "time" | "date" | "date-time";
116
116
  dateFormat?: string;
117
117
  showTimeZone?: boolean;
@@ -13,7 +13,7 @@ export declare class EditorSettingsStore extends Store {
13
13
  level: number;
14
14
  }>;
15
15
  previewMode: import("@omnia/fx/stores").StoreState<boolean>;
16
- activeDisplaySize: import("@omnia/fx/stores").StoreState<"s" | "m" | "l">;
16
+ activeDisplaySize: import("@omnia/fx/stores").StoreState<"l" | "s" | "m">;
17
17
  onActivated(): void;
18
18
  onDisposing(): void;
19
19
  /**
@@ -5,5 +5,6 @@ export declare function useFlowEditorRules(): {
5
5
  editorNode: (node: HTMLElement) => boolean;
6
6
  clipboardContainer: (node: HTMLElement) => boolean;
7
7
  emptyTextNode: (node: HTMLElement) => boolean;
8
+ sourceContentEditable: (event: KeyboardEvent) => boolean;
8
9
  };
9
10
  };
@@ -0,0 +1,6 @@
1
+ import { InternalAppScopedLayoutProvider, VersionedLayout } from "@omnia/fx/models";
2
+ export declare class LayoutProvider implements InternalAppScopedLayoutProvider {
3
+ private layouts;
4
+ registerLayouts(...registerLayouts: VersionedLayout[]): void;
5
+ getAllLayouts(): VersionedLayout[];
6
+ }
@@ -92,9 +92,9 @@ declare const _default: {
92
92
  settings?: SectionSettings;
93
93
  themeTargetId?: string;
94
94
  step?: SectionItem<SteppedSectionItemSettings>;
95
+ designRender?: boolean;
95
96
  layoutId?: string;
96
97
  useScrollMargingFix?: boolean;
97
- designRender?: boolean;
98
98
  }>, never>;
99
99
  };
100
100
  export default _default;
@@ -12,7 +12,7 @@ declare const _default: {
12
12
  type: import("vue").PropType<TextBlueprint>;
13
13
  };
14
14
  size: {
15
- type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
15
+ type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
16
16
  };
17
17
  typography: {
18
18
  type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
@@ -121,7 +121,7 @@ declare const _default: {
121
121
  type: import("vue").PropType<TextBlueprint>;
122
122
  };
123
123
  size: {
124
- type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
124
+ type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
125
125
  };
126
126
  typography: {
127
127
  type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
@@ -239,7 +239,7 @@ declare const _default: {
239
239
  type: import("vue").PropType<TextBlueprint>;
240
240
  };
241
241
  size: {
242
- type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
242
+ type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
243
243
  };
244
244
  typography: {
245
245
  type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
@@ -354,7 +354,7 @@ declare const _default: {
354
354
  type: import("vue").PropType<TextBlueprint>;
355
355
  };
356
356
  size: {
357
- type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
357
+ type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
358
358
  };
359
359
  typography: {
360
360
  type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
@@ -520,7 +520,7 @@ declare const _default: {
520
520
  typography?: "text" | "title" | "navigation" | TypographyTypes;
521
521
  blueprint?: TextBlueprint;
522
522
  container?: boolean;
523
- size?: "xs" | "s" | "m" | "l" | "xl" | TypographySizes;
523
+ size?: "l" | "s" | "xs" | "m" | "xl" | TypographySizes;
524
524
  colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
525
525
  toned?: boolean;
526
526
  placeholder?: string;
@@ -5,7 +5,7 @@ declare const _default: {
5
5
  type: import("vue").PropType<TextBlueprint>;
6
6
  };
7
7
  size: {
8
- type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
8
+ type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
9
9
  };
10
10
  typography: {
11
11
  type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
@@ -22,7 +22,7 @@ declare const _default: {
22
22
  type: import("vue").PropType<TextBlueprint>;
23
23
  };
24
24
  size: {
25
- type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
25
+ type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
26
26
  };
27
27
  typography: {
28
28
  type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
@@ -46,7 +46,7 @@ declare const _default: {
46
46
  type: import("vue").PropType<TextBlueprint>;
47
47
  };
48
48
  size: {
49
- type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
49
+ type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
50
50
  };
51
51
  typography: {
52
52
  type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
@@ -67,7 +67,7 @@ declare const _default: {
67
67
  type: import("vue").PropType<TextBlueprint>;
68
68
  };
69
69
  size: {
70
- type: import("vue").PropType<"xs" | "s" | "m" | "l" | "xl" | TypographySizes>;
70
+ type: import("vue").PropType<"l" | "s" | "xs" | "m" | "xl" | TypographySizes>;
71
71
  };
72
72
  typography: {
73
73
  type: import("vue").PropType<"text" | "title" | "navigation" | TypographyTypes>;
@@ -85,7 +85,7 @@ declare const _default: {
85
85
  } & {
86
86
  typography?: "text" | "title" | "navigation" | TypographyTypes;
87
87
  blueprint?: TextBlueprint;
88
- size?: "xs" | "s" | "m" | "l" | "xl" | TypographySizes;
88
+ size?: "l" | "s" | "xs" | "m" | "xl" | TypographySizes;
89
89
  toned?: boolean;
90
90
  }>, never>;
91
91
  };
@@ -1,7 +1,8 @@
1
+ import { VelcronPropertyDefinitionValue } from "@omnia/fx-models";
1
2
  import { IDataSourcePropertySelection } from "../properties/models/PropertyPicker";
2
3
  export interface VelcronPropertyDefinitionValueResolver {
3
4
  source?: IDataSourcePropertySelection;
4
5
  }
5
- export interface VelcronPropertyEditorValue {
6
- [key: string]: VelcronPropertyDefinitionValueResolver;
6
+ export interface VelcronPropertyEditorValue<T extends VelcronPropertyDefinitionValueResolver | VelcronPropertyDefinitionValue> {
7
+ [key: string]: T;
7
8
  }
@@ -7,6 +7,8 @@ export declare namespace PermissionInputLocalization {
7
7
  AddTenantAdminByFreeText: {
8
8
  InputLabel: string;
9
9
  InputPlaceholder: string;
10
+ AdminUserName: string;
11
+ AdminPlaceholder: string;
10
12
  ErrorWhileInput: string;
11
13
  ErrorFromServer: string;
12
14
  };
@@ -1,14 +1,14 @@
1
1
  import { EditorLocation, VelcronPropertyResolverEditorSettings } from "@omnia/fx-models";
2
- import { VelcronPropertyEditorValue } from "@omnia/fx/ux";
2
+ import { VelcronPropertyDefinitionValueResolver, VelcronPropertyEditorValue } from "@omnia/fx/ux";
3
3
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
4
4
  location?: EditorLocation;
5
5
  } & {
6
6
  settings?: VelcronPropertyResolverEditorSettings;
7
7
  } & {
8
- "emit:update:modelValue": (value: VelcronPropertyEditorValue) => void;
8
+ "emit:update:modelValue": (value: VelcronPropertyEditorValue<VelcronPropertyDefinitionValueResolver>) => void;
9
9
  } & {
10
- "v-model"?: VelcronPropertyEditorValue;
10
+ "v-model"?: VelcronPropertyEditorValue<VelcronPropertyDefinitionValueResolver>;
11
11
  } & {
12
- modelValue?: VelcronPropertyEditorValue;
12
+ modelValue?: VelcronPropertyEditorValue<VelcronPropertyDefinitionValueResolver>;
13
13
  }>) => any;
14
14
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import { DynamicState, VelcronAppDefinition, VelcronDefinitionCategoryRegistration, VelcronDefinitionRegistration, VelcronDefinitionRegistrationWithoutApp, VelcronDefinitionRendererTypeRegistration, VelcronRendererResolverReference, guid } from "@omnia/fx-models";
2
- import { VelcronPropertyEditorValue } from "../../models";
2
+ import { VelcronPropertyDefinitionValueResolver, VelcronPropertyEditorValue } from "../../models";
3
3
  export declare const useVelcronDefinitionStore: () => {
4
4
  state: {
5
5
  definitions: VelcronDefinitionRegistration<object>[];
@@ -27,7 +27,11 @@ export declare const useVelcronDefinitionStore: () => {
27
27
  filteredRendererTypes(filters: Array<guid>): any[];
28
28
  readonly rendererTypes: VelcronDefinitionRendererTypeRegistration[];
29
29
  stateByDefinition(def: VelcronAppDefinition): {
30
- readonly propertyResolver: VelcronPropertyEditorValue[];
30
+ propertyResolver<T = VelcronPropertyDefinitionValueResolver>(): {
31
+ match: boolean;
32
+ state: VelcronPropertyEditorValue<T>;
33
+ setState(value: VelcronPropertyEditorValue<T>): void;
34
+ };
31
35
  };
32
36
  };
33
37
  actions: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.282-dev",
4
+ "version": "8.0.285-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.282-dev",
23
+ "@omnia/fx-models": "8.0.285-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",