@omnia/fx 8.0.404-dev → 8.0.405-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/core/utils/Utils.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/userproperties/GDPRBlade.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/typography/store/TypographyEditorStore.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/aurora/components/typography/{TypographyEditor.d.ts → TextStyleEditor.d.ts} +35 -17
- package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyBlueprintsViewer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/typography/store/TextStyleEditorStore.d.ts +53 -0
- package/internal-do-not-import-from-here/ux/aurora/components/typography/store/TypographyViewerStore.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/enterpriseproperties/settings/extendedproperty/ExtendedPropertySettings.d.ts +8 -4
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberConfiguration.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberEditor.d.ts +19 -67
- package/internal-do-not-import-from-here/ux/properties/property-configuration/LabelOptionsRenderer.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/properties/property-cover/PropertyCover.d.ts +4 -3
- package/internal-do-not-import-from-here/wctypings.d.ts +16 -8
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/typography/store/TypographyEditorStore.d.ts +0 -63
package/internal-do-not-import-from-here/ux/admin/usermanagement/userproperties/GDPRBlade.d.ts
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
|
2
|
+
"v-slots"?: {} & Omit<{
|
3
|
+
default?: import("vue").Slot;
|
4
|
+
}, never>;
|
5
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
|
6
|
+
export default _default;
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import { guid, ITemplateRegistration, TypographyBlueprint, TextStyleDefinition, TextStyleSizes, TextStyleType, TypographyFontDefinition, IFontBlueprints, TypographyFontRef, BlueprintVariant, FontAwesomeIcon,
|
1
|
+
import { guid, ITemplateRegistration, TypographyBlueprint, TextStyleDefinition, TextStyleSizes, TextStyleType, TypographyFontDefinition, IFontBlueprints, TypographyFontRef, BlueprintVariant, FontAwesomeIcon, TextStyleBreakpointType } from "@omnia/fx-models";
|
2
2
|
export interface BreakpointItem {
|
3
3
|
icon: FontAwesomeIcon;
|
4
4
|
title: string;
|
5
5
|
subTitle: string;
|
6
|
-
scale:
|
6
|
+
scale: TextStyleBreakpointType;
|
7
7
|
}
|
8
8
|
type StyleVariant = "system-styles" | "custom-styles" | "type-scale";
|
9
9
|
export declare const useTypographyEditorStore: () => {
|
@@ -17,10 +17,11 @@ export declare const useTypographyEditorStore: () => {
|
|
17
17
|
styleVariant: StyleVariant;
|
18
18
|
};
|
19
19
|
selected: {
|
20
|
-
|
20
|
+
textStyle: {
|
21
21
|
type: TextStyleType;
|
22
22
|
size: TextStyleSizes;
|
23
23
|
definition: TextStyleDefinition;
|
24
|
+
typeScaleDefinition: TextStyleDefinition;
|
24
25
|
};
|
25
26
|
breakpoint: BreakpointItem;
|
26
27
|
};
|
@@ -35,10 +36,11 @@ export declare const useTypographyEditorStore: () => {
|
|
35
36
|
styleVariant: StyleVariant;
|
36
37
|
};
|
37
38
|
selected: {
|
38
|
-
|
39
|
+
textStyle: {
|
39
40
|
type: TextStyleType;
|
40
41
|
size: TextStyleSizes;
|
41
42
|
definition: TextStyleDefinition;
|
43
|
+
typeScaleDefinition: TextStyleDefinition;
|
42
44
|
};
|
43
45
|
breakpoint: BreakpointItem;
|
44
46
|
};
|
@@ -60,7 +62,7 @@ export declare const useTypographyEditorStore: () => {
|
|
60
62
|
baseScale(): void;
|
61
63
|
};
|
62
64
|
breakpoint(): {
|
63
|
-
setSelected(breakpoint:
|
65
|
+
setSelected(breakpoint: TextStyleBreakpointType): void;
|
64
66
|
activate(value: boolean): void;
|
65
67
|
};
|
66
68
|
variants(): {
|
@@ -94,6 +96,7 @@ export declare const useTypographyEditorStore: () => {
|
|
94
96
|
deleteRegistration(): Promise<boolean>;
|
95
97
|
}>;
|
96
98
|
get: {
|
99
|
+
textStyleName: (textStyleType: TextStyleType, size: TextStyleSizes) => string;
|
97
100
|
typeScale: {
|
98
101
|
active: {
|
99
102
|
readonly scale: number;
|
@@ -137,7 +140,7 @@ export declare const useTypographyEditorStore: () => {
|
|
137
140
|
xs: TextStyleDefinition;
|
138
141
|
font?: TypographyFontRef;
|
139
142
|
};
|
140
|
-
|
143
|
+
selectedTextStyleSizeFont: () => string;
|
141
144
|
};
|
142
145
|
bladeId: {
|
143
146
|
startBlade: guid;
|
@@ -150,7 +153,8 @@ export declare const useTypographyEditorStore: () => {
|
|
150
153
|
};
|
151
154
|
rules: {
|
152
155
|
breakpoint: {
|
153
|
-
|
156
|
+
readonly showStatus: boolean;
|
157
|
+
isActive: (size: TextStyleBreakpointType) => boolean;
|
154
158
|
readonly showEnableDisable: boolean;
|
155
159
|
readonly isEnabled: boolean;
|
156
160
|
};
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { TextStyleDefinition } from "@omnia/fx-models";
|
1
|
+
import { TextStyleDefinition, TypographyBlueprint, TextStyleBreakpointType, TextStyleSizes } from "@omnia/fx-models";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
type EditorVariant = "default" | "dialog" | "blade-inline";
|
4
4
|
declare const _default: {
|
@@ -14,9 +14,18 @@ declare const _default: {
|
|
14
14
|
sampleText: {
|
15
15
|
type: import("vue").PropType<string>;
|
16
16
|
};
|
17
|
+
breakpoint: {
|
18
|
+
type: import("vue").PropType<TextStyleBreakpointType>;
|
19
|
+
};
|
20
|
+
textStyleSize: {
|
21
|
+
type: import("vue").PropType<TextStyleSizes>;
|
22
|
+
};
|
17
23
|
textStyleType: {
|
18
24
|
type: import("vue").PropType<"display" | "headline" | "title" | "text" | "label" | "variants">;
|
19
25
|
};
|
26
|
+
blueprint: {
|
27
|
+
type: import("vue").PropType<TypographyBlueprint>;
|
28
|
+
};
|
20
29
|
variant: {
|
21
30
|
type: import("vue").PropType<EditorVariant>;
|
22
31
|
};
|
@@ -86,11 +95,7 @@ declare const _default: {
|
|
86
95
|
};
|
87
96
|
}>;
|
88
97
|
};
|
89
|
-
}
|
90
|
-
"onClick:confirm"?: (model: TextStyleDefinition) => any;
|
91
|
-
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
92
|
-
"click:confirm": (model: TextStyleDefinition) => true;
|
93
|
-
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
98
|
+
}>>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
94
99
|
P: {};
|
95
100
|
B: {};
|
96
101
|
D: {};
|
@@ -109,9 +114,18 @@ declare const _default: {
|
|
109
114
|
sampleText: {
|
110
115
|
type: import("vue").PropType<string>;
|
111
116
|
};
|
117
|
+
breakpoint: {
|
118
|
+
type: import("vue").PropType<TextStyleBreakpointType>;
|
119
|
+
};
|
120
|
+
textStyleSize: {
|
121
|
+
type: import("vue").PropType<TextStyleSizes>;
|
122
|
+
};
|
112
123
|
textStyleType: {
|
113
124
|
type: import("vue").PropType<"display" | "headline" | "title" | "text" | "label" | "variants">;
|
114
125
|
};
|
126
|
+
blueprint: {
|
127
|
+
type: import("vue").PropType<TypographyBlueprint>;
|
128
|
+
};
|
115
129
|
variant: {
|
116
130
|
type: import("vue").PropType<EditorVariant>;
|
117
131
|
};
|
@@ -181,9 +195,7 @@ declare const _default: {
|
|
181
195
|
};
|
182
196
|
}>;
|
183
197
|
};
|
184
|
-
}
|
185
|
-
"onClick:confirm"?: (model: TextStyleDefinition) => any;
|
186
|
-
}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
198
|
+
}>>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
187
199
|
__isFragment?: never;
|
188
200
|
__isTeleport?: never;
|
189
201
|
__isSuspense?: never;
|
@@ -199,9 +211,18 @@ declare const _default: {
|
|
199
211
|
sampleText: {
|
200
212
|
type: import("vue").PropType<string>;
|
201
213
|
};
|
214
|
+
breakpoint: {
|
215
|
+
type: import("vue").PropType<TextStyleBreakpointType>;
|
216
|
+
};
|
217
|
+
textStyleSize: {
|
218
|
+
type: import("vue").PropType<TextStyleSizes>;
|
219
|
+
};
|
202
220
|
textStyleType: {
|
203
221
|
type: import("vue").PropType<"display" | "headline" | "title" | "text" | "label" | "variants">;
|
204
222
|
};
|
223
|
+
blueprint: {
|
224
|
+
type: import("vue").PropType<TypographyBlueprint>;
|
225
|
+
};
|
205
226
|
variant: {
|
206
227
|
type: import("vue").PropType<EditorVariant>;
|
207
228
|
};
|
@@ -271,11 +292,7 @@ declare const _default: {
|
|
271
292
|
};
|
272
293
|
}>;
|
273
294
|
};
|
274
|
-
}
|
275
|
-
"onClick:confirm"?: (model: TextStyleDefinition) => any;
|
276
|
-
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
277
|
-
"click:confirm": (model: TextStyleDefinition) => true;
|
278
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
295
|
+
}>>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
279
296
|
propsDefinition: Omit<Readonly<{} & {
|
280
297
|
name?: {
|
281
298
|
[x: `onUpdate:${string}`]: {
|
@@ -338,6 +355,7 @@ declare const _default: {
|
|
338
355
|
};
|
339
356
|
}>;
|
340
357
|
};
|
358
|
+
blueprint?: TypographyBlueprint;
|
341
359
|
variant?: EditorVariant;
|
342
360
|
modelValue?: TextStyleDefinition;
|
343
361
|
"v-slots"?: {
|
@@ -350,8 +368,8 @@ declare const _default: {
|
|
350
368
|
sampleText?: string;
|
351
369
|
toolbarCallback?: (value: () => VNodeChild) => void;
|
352
370
|
textStyleType?: "display" | "headline" | "title" | "text" | "label" | "variants";
|
353
|
-
|
354
|
-
|
355
|
-
}
|
371
|
+
textStyleSize?: TextStyleSizes;
|
372
|
+
breakpoint?: TextStyleBreakpointType;
|
373
|
+
}>, never>;
|
356
374
|
};
|
357
375
|
export default _default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { BlueprintVariant, ThemeContextType, TypographyBlueprint, TextStyleSizes, TextStyleType,
|
1
|
+
import { BlueprintVariant, ThemeContextType, TypographyBlueprint, TextStyleSizes, TextStyleType, TextStyleBreakpointType } from "@omnia/fx-models";
|
2
2
|
import { DefineEmit } from "@omnia/fx/ux";
|
3
3
|
import { ViewTypes } from "./store/TypographyViewerStore";
|
4
4
|
type Variant = "list" | "picker";
|
@@ -13,7 +13,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
13
13
|
} & {
|
14
14
|
viewtype?: ViewTypes;
|
15
15
|
} & {
|
16
|
-
breakpoint?:
|
16
|
+
breakpoint?: TextStyleBreakpointType;
|
17
17
|
} & {
|
18
18
|
editable?: boolean;
|
19
19
|
} & {
|
@@ -0,0 +1,53 @@
|
|
1
|
+
import { FontAwesomeIcon, TextStyleBreakPoint, TextStyleDefinition, TextStyleType, TypographyBlueprint, TextStyleBreakpointType, TextStyleSizes } from "@omnia/fx-models";
|
2
|
+
export interface BreakpointItem {
|
3
|
+
icon: FontAwesomeIcon;
|
4
|
+
title: string;
|
5
|
+
active: boolean;
|
6
|
+
breakpoint: TextStyleBreakpointType;
|
7
|
+
}
|
8
|
+
export declare const useTextStyleEditorStore: () => {
|
9
|
+
state: {
|
10
|
+
internalModel: TextStyleDefinition;
|
11
|
+
blueprint: TypographyBlueprint;
|
12
|
+
textStyleType: "display" | "headline" | "title" | "text" | "label" | "variants";
|
13
|
+
textStyleSize: TextStyleSizes;
|
14
|
+
breakpoint: TextStyleBreakpointType;
|
15
|
+
};
|
16
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
17
|
+
set: () => {
|
18
|
+
fontSize: {
|
19
|
+
activateCustom: (value: boolean) => void;
|
20
|
+
value(value: number): void;
|
21
|
+
};
|
22
|
+
lineHeight: {
|
23
|
+
readonly calculate: void;
|
24
|
+
activateCustom: (value: boolean) => void;
|
25
|
+
value(value: number): void;
|
26
|
+
multiplier: (value: number) => void;
|
27
|
+
};
|
28
|
+
fontWeight: (value: number) => void;
|
29
|
+
letterSpacing: (value: number) => void;
|
30
|
+
};
|
31
|
+
cleanBreakpoint: () => void;
|
32
|
+
ensureBreakpoint: () => void;
|
33
|
+
initState: (model: TextStyleDefinition, textStyleType: TextStyleType, breakpoint: TextStyleBreakpointType, blueprint: TypographyBlueprint, textStyleSize: TextStyleSizes) => void;
|
34
|
+
}>;
|
35
|
+
get: {
|
36
|
+
typeScale: {
|
37
|
+
readonly lineHeightMultiplier: number;
|
38
|
+
readonly defaultTextStyle: TextStyleBreakPoint;
|
39
|
+
};
|
40
|
+
readonly textDefinition: TextStyleBreakPoint;
|
41
|
+
};
|
42
|
+
rules: {
|
43
|
+
show: {
|
44
|
+
readonly name: boolean;
|
45
|
+
readonly upperCaseAndItalicSettings: boolean;
|
46
|
+
};
|
47
|
+
};
|
48
|
+
dataTypes: {
|
49
|
+
breakpoints: BreakpointItem[];
|
50
|
+
};
|
51
|
+
} & {
|
52
|
+
dispose?: () => void;
|
53
|
+
};
|
@@ -1,14 +1,14 @@
|
|
1
|
-
import { TextStyleDefinition, TextStyleSizes, TextStyleType, TypographyBlueprint,
|
1
|
+
import { TextStyleDefinition, TextStyleSizes, TextStyleType, TypographyBlueprint, TextStyleBreakpointType } from "@omnia/fx-models";
|
2
2
|
export type ViewTypes = "type-scale" | "system-styles" | "custom-styles";
|
3
3
|
export declare const useTypographyViewerStore: () => {
|
4
4
|
state: {
|
5
5
|
blueprint: TypographyBlueprint;
|
6
6
|
viewType: ViewTypes;
|
7
|
-
breakPoint:
|
7
|
+
breakPoint: TextStyleBreakpointType;
|
8
8
|
sampleText: string;
|
9
9
|
};
|
10
10
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
11
|
-
initState: (blueprint: TypographyBlueprint, viewType: ViewTypes, breakPoint:
|
11
|
+
initState: (blueprint: TypographyBlueprint, viewType: ViewTypes, breakPoint: TextStyleBreakpointType, sampleText: string) => void;
|
12
12
|
}>;
|
13
13
|
get: {
|
14
14
|
typeScale: {
|
@@ -22,10 +22,10 @@ export declare const useTypographyViewerStore: () => {
|
|
22
22
|
lineHeight: (definition: TextStyleDefinition) => number;
|
23
23
|
};
|
24
24
|
};
|
25
|
-
|
25
|
+
textStyleName: (textStyle: TextStyleType, size: TextStyleSizes) => string;
|
26
26
|
fontSizeDisplayFormat: (fontCss: string) => string;
|
27
27
|
sampleText: (typography: TextStyleType, size: TextStyleSizes) => string;
|
28
|
-
typeStyling: (
|
28
|
+
typeStyling: (textStyleTpe: TextStyleType, size: TextStyleSizes) => any;
|
29
29
|
};
|
30
30
|
rules: {
|
31
31
|
typeScale: {
|
@@ -38,7 +38,7 @@ export declare const useTypographyViewerStore: () => {
|
|
38
38
|
variants: {
|
39
39
|
isPlaceholder: (size: string) => boolean;
|
40
40
|
};
|
41
|
-
canStyleBeDisplayed: (
|
41
|
+
canStyleBeDisplayed: (textStyleType: TextStyleType, size: TextStyleSizes, isVariants: boolean) => boolean;
|
42
42
|
};
|
43
43
|
} & {
|
44
44
|
dispose?: () => void;
|
@@ -1,4 +1,6 @@
|
|
1
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
1
2
|
import { ExtendedPropertyEnterprisePropertyDefinition } from "@omnia/fx/models";
|
3
|
+
import { VNodeChild } from "vue";
|
2
4
|
import * as ux from "@omnia/fx/ux";
|
3
5
|
declare const _default: (props: ux.ExtractProps<{
|
4
6
|
property: ExtendedPropertyEnterprisePropertyDefinition;
|
@@ -6,9 +8,11 @@ declare const _default: (props: ux.ExtractProps<{
|
|
6
8
|
styles?: {
|
7
9
|
container: import("typestyle/lib/types").NestedCSSProperties;
|
8
10
|
};
|
9
|
-
}
|
10
|
-
"v-slots"?: {
|
11
|
+
} & DefineSlot<"settings", () => VNodeChild>> & {} & {
|
12
|
+
"v-slots"?: {
|
13
|
+
settings?: () => VNodeChild;
|
14
|
+
} & Omit<{
|
11
15
|
default?: import("vue").Slot;
|
12
|
-
},
|
13
|
-
} & {} & Omit<ux.VueComponentBaseProps, "styles" | "property"> & ux.VNodeEvents) => any;
|
16
|
+
}, "settings">;
|
17
|
+
} & {} & Omit<ux.VueComponentBaseProps, "styles" | "property" | "slot:settings"> & ux.VNodeEvents) => any;
|
14
18
|
export default _default;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { IPropertyConfigurationRenderer, PhoneNumberPropertyDefinition } from "@omnia/fx-models";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<IPropertyConfigurationRenderer<PhoneNumberPropertyDefinition>> & {} & {
|
3
|
+
"v-slots"?: {} & Omit<{
|
4
|
+
default?: import("vue").Slot;
|
5
|
+
}, never>;
|
6
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof IPropertyConfigurationRenderer<PhoneNumberPropertyDefinition>> & import("@omnia/fx/ux").VNodeEvents) => any;
|
7
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberEditor.d.ts
CHANGED
@@ -1,69 +1,21 @@
|
|
1
1
|
import { PhoneDisplaySettings, PhoneEditorSettings, PhoneNumberPropertyValue } from "@omnia/fx-models";
|
2
|
-
declare const _default: {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
M: {};
|
22
|
-
Defaults: {};
|
23
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
24
|
-
modelValue: import("vue").Prop<PhoneNumberPropertyValue, PhoneNumberPropertyValue>;
|
25
|
-
editorSettings: import("vue").Prop<PhoneEditorSettings, PhoneEditorSettings>;
|
26
|
-
displaySettings: import("vue").Prop<PhoneDisplaySettings, PhoneDisplaySettings>;
|
27
|
-
setupSettings?: import("vue").Prop<never, never>;
|
28
|
-
disabled?: import("vue").Prop<boolean, boolean>;
|
29
|
-
"v-model": import("vue").Prop<PhoneNumberPropertyValue, PhoneNumberPropertyValue>;
|
30
|
-
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
31
|
-
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
32
|
-
onVnodeBeforeUpdate?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
33
|
-
onVnodeUpdated?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
34
|
-
onVnodeBeforeUnmount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
35
|
-
onVnodeUnmounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
36
|
-
}>>, {}, {}, {}, {}, {}>;
|
37
|
-
__isFragment?: never;
|
38
|
-
__isTeleport?: never;
|
39
|
-
__isSuspense?: never;
|
40
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
41
|
-
modelValue: import("vue").Prop<PhoneNumberPropertyValue, PhoneNumberPropertyValue>;
|
42
|
-
editorSettings: import("vue").Prop<PhoneEditorSettings, PhoneEditorSettings>;
|
43
|
-
displaySettings: import("vue").Prop<PhoneDisplaySettings, PhoneDisplaySettings>;
|
44
|
-
setupSettings?: import("vue").Prop<never, never>;
|
45
|
-
disabled?: import("vue").Prop<boolean, boolean>;
|
46
|
-
"v-model": import("vue").Prop<PhoneNumberPropertyValue, PhoneNumberPropertyValue>;
|
47
|
-
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
48
|
-
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
49
|
-
onVnodeBeforeUpdate?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
50
|
-
onVnodeUpdated?: import("vue").Prop<((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]>;
|
51
|
-
onVnodeBeforeUnmount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
52
|
-
onVnodeUnmounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
53
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
54
|
-
propsDefinition: Omit<Readonly<{} & {
|
55
|
-
disabled?: boolean;
|
56
|
-
modelValue?: PhoneNumberPropertyValue;
|
57
|
-
onVnodeBeforeMount?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
58
|
-
onVnodeMounted?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
59
|
-
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[];
|
60
|
-
onVnodeUpdated?: ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[];
|
61
|
-
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
62
|
-
onVnodeUnmounted?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
63
|
-
"v-model"?: PhoneNumberPropertyValue;
|
64
|
-
displaySettings?: PhoneDisplaySettings;
|
65
|
-
setupSettings?: never;
|
66
|
-
editorSettings?: PhoneEditorSettings;
|
67
|
-
}>, never>;
|
68
|
-
};
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
|
+
"emit:update:modelValue": (value: PhoneNumberPropertyValue) => void;
|
4
|
+
} & {
|
5
|
+
"v-model"?: PhoneNumberPropertyValue;
|
6
|
+
} & {
|
7
|
+
modelValue?: PhoneNumberPropertyValue;
|
8
|
+
} & {
|
9
|
+
displaySettings?: PhoneDisplaySettings;
|
10
|
+
} & {
|
11
|
+
editorSettings?: PhoneEditorSettings;
|
12
|
+
} & {
|
13
|
+
disabled?: boolean;
|
14
|
+
}> & {
|
15
|
+
"onUpdate:modelValue"?: (value: PhoneNumberPropertyValue) => any;
|
16
|
+
} & {
|
17
|
+
"v-slots"?: {} & Omit<{
|
18
|
+
default?: import("vue").Slot;
|
19
|
+
}, never>;
|
20
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "disabled" | "modelValue" | "v-model" | "emit:update:modelValue" | "displaySettings" | "editorSettings"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
69
21
|
export default _default;
|
@@ -9,6 +9,7 @@ declare const _default: {
|
|
9
9
|
defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
10
10
|
multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
|
11
11
|
append?: import("vue").Prop<(item?: PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>) => import("vue").VNodeChild, (item?: PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>) => import("vue").VNodeChild>;
|
12
|
+
prependSetting?: import("vue").Prop<() => import("vue").VNodeChild, () => import("vue").VNodeChild>;
|
12
13
|
"v-model": import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
13
14
|
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
14
15
|
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
@@ -31,6 +32,7 @@ declare const _default: {
|
|
31
32
|
defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
32
33
|
multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
|
33
34
|
append?: import("vue").Prop<(item?: PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>) => import("vue").VNodeChild, (item?: PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>) => import("vue").VNodeChild>;
|
35
|
+
prependSetting?: import("vue").Prop<() => import("vue").VNodeChild, () => import("vue").VNodeChild>;
|
34
36
|
"v-model": import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
35
37
|
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
36
38
|
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
@@ -50,6 +52,7 @@ declare const _default: {
|
|
50
52
|
defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
51
53
|
multilingualContext?: import("vue").Prop<import("@omnia/fx/ux").MultilingualContext, import("@omnia/fx/ux").MultilingualContext>;
|
52
54
|
append?: import("vue").Prop<(item?: PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>) => import("vue").VNodeChild, (item?: PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>) => import("vue").VNodeChild>;
|
55
|
+
prependSetting?: import("vue").Prop<() => import("vue").VNodeChild, () => import("vue").VNodeChild>;
|
53
56
|
"v-model": import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
54
57
|
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
55
58
|
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
@@ -73,6 +76,7 @@ declare const _default: {
|
|
73
76
|
showLockConfiguration?: boolean;
|
74
77
|
renderEditSettings?: boolean;
|
75
78
|
defaultConfiguration?: PropertyConfiguration<PropertyDefinition<PropertyValue, LockingPropertyDisplaySettings, any, import("@omnia/fx-models").PropertySetupBase>>;
|
79
|
+
prependSetting?: () => import("vue").VNodeChild;
|
76
80
|
}>, never>;
|
77
81
|
};
|
78
82
|
export default _default;
|
@@ -1,11 +1,12 @@
|
|
1
1
|
import { DefineSlot } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
|
-
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefineSlot<"display", (elementConfig: VNodeChild) => VNodeChild> & DefineSlot<"edit", (elementConfig: VNodeChild) => VNodeChild>> & {} & {
|
3
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<DefineSlot<"display", (elementConfig: VNodeChild) => VNodeChild> & DefineSlot<"edit", (elementConfig: VNodeChild) => VNodeChild> & DefineSlot<"setup", (elementConfig: VNodeChild) => VNodeChild>> & {} & {
|
4
4
|
"v-slots"?: {
|
5
5
|
display?: (elementConfig: VNodeChild) => VNodeChild;
|
6
6
|
edit?: (elementConfig: VNodeChild) => VNodeChild;
|
7
|
+
setup?: (elementConfig: VNodeChild) => VNodeChild;
|
7
8
|
} & Omit<{
|
8
9
|
default?: import("vue").Slot;
|
9
|
-
}, "display" | "edit">;
|
10
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "slot:display" | "slot:edit"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
10
|
+
}, "display" | "setup" | "edit">;
|
11
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "slot:display" | "slot:edit" | "slot:setup"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
11
12
|
export default _default;
|
@@ -431,7 +431,7 @@ import wc287d666180644ba5ab5def0471a75a89 from './ux/aurora/components/textstyle
|
|
431
431
|
import wc252ece0016594978b3ddfafdd59adda4 from './ux/aurora/components/themepicker/ThemePicker';
|
432
432
|
import wc73e1c232690249f78967e3e3f6d92bd7 from './ux/aurora/components/themepreview/ThemePreview';
|
433
433
|
import wcc6eec07d48af435ab0c75195d9c7dcfc from './ux/aurora/components/themepreview/ComponentPreview';
|
434
|
-
import wc99a73153b5c647da9d6de517f51e53f0 from './ux/aurora/components/typography/
|
434
|
+
import wc99a73153b5c647da9d6de517f51e53f0 from './ux/aurora/components/typography/TextStyleEditor';
|
435
435
|
import wc2f742a14a560434abb899360a69c314b from './ux/aurora/components/typography/TypographyBlueprintsViewer';
|
436
436
|
import wc49703cb13c254c5b8eb30bd1a3eaf431 from './ux/aurora/components/typography/TypographyBlueprintPicker';
|
437
437
|
import wc6bcccc7dd1c74fe591a660641ac62cd7 from './ux/aurora/components/viewtemplatepicker/ViewTemplatePicker';
|
@@ -504,6 +504,7 @@ import wc784d162feec24424a993d8ba812b9c94 from './ux/properties/builtins/multili
|
|
504
504
|
import wc4abd8ef8e96f4beca6d375984132b6ec from './ux/properties/builtins/multilingualText/MultilingualTextEditor';
|
505
505
|
import wcae83e3f39ff443b8abb93e483c14f48f from './ux/properties/builtins/phone-number/PhoneNumberDisplay';
|
506
506
|
import wcaad7c8da16f04a46b9503564b10a8f34 from './ux/properties/builtins/phone-number/PhoneNumberEditor';
|
507
|
+
import wc7d02c7f4a383469b8ab4d2e196735ef9 from './ux/properties/builtins/phone-number/PhoneNumberConfiguration';
|
507
508
|
import wc13f465ea57024a47ae66d4bf1d927974 from './ux/properties/builtins/tags/TagsDisplay';
|
508
509
|
import wc4fc24b6b58014b5f9a3474a8f5cc4f00 from './ux/properties/builtins/tags/TagsEditor';
|
509
510
|
import wcdf429c59a8ec42cf8ec34907705793a9 from './ux/properties/builtins/text/TextDisplay';
|
@@ -1437,6 +1438,13 @@ declare global {
|
|
1437
1438
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1438
1439
|
};
|
1439
1440
|
} : typeof wc287d666180644ba5ab5def0471a75a89;
|
1441
|
+
"editor": typeof wc99a73153b5c647da9d6de517f51e53f0 extends {
|
1442
|
+
propsDefinition: infer TProp;
|
1443
|
+
} ? {
|
1444
|
+
new (...args: any[]): {
|
1445
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1446
|
+
};
|
1447
|
+
} : typeof wc99a73153b5c647da9d6de517f51e53f0;
|
1440
1448
|
};
|
1441
1449
|
};
|
1442
1450
|
"boolean": {
|
@@ -3925,6 +3933,13 @@ declare global {
|
|
3925
3933
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3926
3934
|
};
|
3927
3935
|
} : typeof wcaad7c8da16f04a46b9503564b10a8f34;
|
3936
|
+
"configuration": typeof wc7d02c7f4a383469b8ab4d2e196735ef9 extends {
|
3937
|
+
propsDefinition: infer TProp;
|
3938
|
+
} ? {
|
3939
|
+
new (...args: any[]): {
|
3940
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3941
|
+
};
|
3942
|
+
} : typeof wc7d02c7f4a383469b8ab4d2e196735ef9;
|
3928
3943
|
};
|
3929
3944
|
};
|
3930
3945
|
"tags": {
|
@@ -4229,13 +4244,6 @@ declare global {
|
|
4229
4244
|
} : typeof wcb4ddcf67388c4aa494cad4fa07ff8937;
|
4230
4245
|
};
|
4231
4246
|
"typography": {
|
4232
|
-
"editor": typeof wc99a73153b5c647da9d6de517f51e53f0 extends {
|
4233
|
-
propsDefinition: infer TProp;
|
4234
|
-
} ? {
|
4235
|
-
new (...args: any[]): {
|
4236
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
4237
|
-
};
|
4238
|
-
} : typeof wc99a73153b5c647da9d6de517f51e53f0;
|
4239
4247
|
"viewer": typeof wc2f742a14a560434abb899360a69c314b extends {
|
4240
4248
|
propsDefinition: infer TProp;
|
4241
4249
|
} ? {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.405-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": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.405-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
@@ -1,63 +0,0 @@
|
|
1
|
-
import { FontAwesomeIcon, TextStyleBreakPoint, TextStyleDefinition } from "@omnia/fx-models";
|
2
|
-
export interface BreakpointItem {
|
3
|
-
icon: FontAwesomeIcon;
|
4
|
-
title: string;
|
5
|
-
active: boolean;
|
6
|
-
breakpoint: "sm" | "md" | "lg";
|
7
|
-
}
|
8
|
-
export declare const useTypographyEditorStore: () => {
|
9
|
-
state: {
|
10
|
-
internalModel: TextStyleDefinition;
|
11
|
-
breakpoint: {
|
12
|
-
large: TextStyleBreakPoint;
|
13
|
-
medium: TextStyleBreakPoint;
|
14
|
-
small: TextStyleBreakPoint;
|
15
|
-
};
|
16
|
-
selectedBreakpoint: BreakpointItem;
|
17
|
-
settings: {
|
18
|
-
textStyleType: "display" | "headline" | "title" | "text" | "label" | "variants";
|
19
|
-
};
|
20
|
-
};
|
21
|
-
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
22
|
-
set: () => {
|
23
|
-
fontSize: (value: number) => void;
|
24
|
-
lineHeight: (value: number) => void;
|
25
|
-
fontWeight: (value: number) => void;
|
26
|
-
letterSpacing: (value: number) => void;
|
27
|
-
};
|
28
|
-
breakPoint: () => {
|
29
|
-
selected: {
|
30
|
-
enable: (value: boolean) => void;
|
31
|
-
set: {
|
32
|
-
custom: (value: boolean) => void;
|
33
|
-
};
|
34
|
-
};
|
35
|
-
clean: (key: string) => void;
|
36
|
-
ensure: (key: string) => void;
|
37
|
-
};
|
38
|
-
initState: (model: TextStyleDefinition) => void;
|
39
|
-
}>;
|
40
|
-
get: {
|
41
|
-
selection: {
|
42
|
-
breakpoint: {
|
43
|
-
readonly definition: TextStyleBreakPoint;
|
44
|
-
};
|
45
|
-
};
|
46
|
-
};
|
47
|
-
rules: {
|
48
|
-
readonly showEnableBreakpoint: boolean;
|
49
|
-
show: {
|
50
|
-
readonly customSizeSwitch: boolean;
|
51
|
-
readonly name: boolean;
|
52
|
-
readonly upperCaseAndItalicSettings: boolean;
|
53
|
-
readonly fontSizeAndLineHeight: boolean;
|
54
|
-
readonly letterSpacing: boolean;
|
55
|
-
readonly fontWeight: boolean;
|
56
|
-
};
|
57
|
-
};
|
58
|
-
dataTypes: {
|
59
|
-
breakpoints: BreakpointItem[];
|
60
|
-
};
|
61
|
-
} & {
|
62
|
-
dispose?: () => void;
|
63
|
-
};
|