@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
@@ -1423,6 +1423,8 @@ export interface OmniaUxLocalization {
1423
1423
  Settings: {
1424
1424
  EditLayout: string;
1425
1425
  LayoutOpenType: string;
1426
+ VersionLayout: string;
1427
+ UseAppScoped: string;
1426
1428
  Width: string;
1427
1429
  Height: string;
1428
1430
  LayoutType: {
@@ -4,7 +4,6 @@ export declare const SpacingPickerStyles: {
4
4
  iconWrapper: (color: ColorDefinition) => string;
5
5
  columnWrapper: string;
6
6
  spacingValueWrapper: string;
7
- groupWrapper: string;
8
7
  textInput: (base: ColorDefinition, onBase: ColorDefinition) => string;
9
8
  spacingItem: (base: ColorDefinition, onBase: ColorDefinition, selected: boolean) => string;
10
9
  sliderMenuWrapper: (color: ColorDefinition) => string;
@@ -4,6 +4,12 @@ declare const _default: {
4
4
  label: {
5
5
  type: import("vue").PropType<string>;
6
6
  };
7
+ scale: {
8
+ type: import("vue").PropType<"l" | "s">;
9
+ };
10
+ scaleSelection: {
11
+ type: import("vue").PropType<boolean>;
12
+ };
7
13
  toned: {
8
14
  type: import("vue").PropType<boolean>;
9
15
  };
@@ -112,6 +118,12 @@ declare const _default: {
112
118
  label: {
113
119
  type: import("vue").PropType<string>;
114
120
  };
121
+ scale: {
122
+ type: import("vue").PropType<"l" | "s">;
123
+ };
124
+ scaleSelection: {
125
+ type: import("vue").PropType<boolean>;
126
+ };
115
127
  toned: {
116
128
  type: import("vue").PropType<boolean>;
117
129
  };
@@ -227,6 +239,12 @@ declare const _default: {
227
239
  label: {
228
240
  type: import("vue").PropType<string>;
229
241
  };
242
+ scale: {
243
+ type: import("vue").PropType<"l" | "s">;
244
+ };
245
+ scaleSelection: {
246
+ type: import("vue").PropType<boolean>;
247
+ };
230
248
  toned: {
231
249
  type: import("vue").PropType<boolean>;
232
250
  };
@@ -339,6 +357,12 @@ declare const _default: {
339
357
  label: {
340
358
  type: import("vue").PropType<string>;
341
359
  };
360
+ scale: {
361
+ type: import("vue").PropType<"l" | "s">;
362
+ };
363
+ scaleSelection: {
364
+ type: import("vue").PropType<boolean>;
365
+ };
342
366
  toned: {
343
367
  type: import("vue").PropType<boolean>;
344
368
  };
@@ -511,6 +535,7 @@ declare const _default: {
511
535
  container?: boolean;
512
536
  class?: String | String[];
513
537
  label?: string;
538
+ scale?: "l" | "s";
514
539
  colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
515
540
  toned?: boolean;
516
541
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
@@ -522,6 +547,7 @@ declare const _default: {
522
547
  disableBottom?: boolean;
523
548
  disableLeft?: boolean;
524
549
  disableRight?: boolean;
550
+ scaleSelection?: boolean;
525
551
  }>, "onUpdate:modelValue"> & {
526
552
  "onUpdate:modelValue"?: (value: Spacing) => any;
527
553
  };