@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.
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.d.ts +26 -0
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +110 -0
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +110 -0
- package/internal-do-not-import-from-here/ux/datetimezonerenderer/DateTimeZoneRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/editorchrome/stores/EditorSettingsStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/rules/EditorRules.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/apis/LayoutProviderApis.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutStepRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/markdown/MarkdownRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/permissioninput/loc/localize.d.ts +2 -0
- package/package.json +2 -2
package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.css.d.ts
CHANGED
@@ -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;
|
package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.d.ts
CHANGED
@@ -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
|
};
|