@omnia/fx 8.0.283-dev → 8.0.285-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.
@@ -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
  };