@omnia/fx 8.0.413-dev → 8.0.414-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/StyleFlow.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStyleEditor.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/store/IconStyleEditorStore.d.ts +33 -0
- package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/TextStylePicker.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/store/TextStylePickerStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyBlueprintsViewer.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/aurora/store/ComponentBlueprintStore.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintManager.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/BlueprintStyling.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeEditor.d.ts +19 -87
- package/package.json +2 -2
@@ -134,12 +134,20 @@ export declare namespace StyleFlow {
|
|
134
134
|
before: {};
|
135
135
|
media: {
|
136
136
|
sm: {
|
137
|
+
maxHeight: (value: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
138
|
+
height: (value: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
139
|
+
maxWidth: (value: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
140
|
+
width: (value: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
137
141
|
fontSize: (fontSize: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
138
142
|
fontWeight: (fontWeight: number, important?: boolean) => import("./Styles.stylex").StylexValue;
|
139
143
|
lineHeight: (lineHeight: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
140
144
|
letterSpacing: (letterSpacing: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
141
145
|
};
|
142
146
|
md: {
|
147
|
+
maxHeight: (value: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
148
|
+
height: (value: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
149
|
+
maxWidth: (value: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
150
|
+
width: (value: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
143
151
|
fontSize: (fontSize: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
144
152
|
fontWeight: (fontWeight: number, important?: boolean) => import("./Styles.stylex").StylexValue;
|
145
153
|
lineHeight: (lineHeight: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
@@ -124,12 +124,20 @@ export declare const cssRules: {
|
|
124
124
|
before: {};
|
125
125
|
media: {
|
126
126
|
sm: {
|
127
|
+
maxHeight: (value: string, important?: boolean) => StylexValue;
|
128
|
+
height: (value: string, important?: boolean) => StylexValue;
|
129
|
+
maxWidth: (value: string, important?: boolean) => StylexValue;
|
130
|
+
width: (value: string, important?: boolean) => StylexValue;
|
127
131
|
fontSize: (fontSize: string, important?: boolean) => StylexValue;
|
128
132
|
fontWeight: (fontWeight: number, important?: boolean) => StylexValue;
|
129
133
|
lineHeight: (lineHeight: string, important?: boolean) => StylexValue;
|
130
134
|
letterSpacing: (letterSpacing: string, important?: boolean) => StylexValue;
|
131
135
|
};
|
132
136
|
md: {
|
137
|
+
maxHeight: (value: string, important?: boolean) => StylexValue;
|
138
|
+
height: (value: string, important?: boolean) => StylexValue;
|
139
|
+
maxWidth: (value: string, important?: boolean) => StylexValue;
|
140
|
+
width: (value: string, important?: boolean) => StylexValue;
|
133
141
|
fontSize: (fontSize: string, important?: boolean) => StylexValue;
|
134
142
|
fontWeight: (fontWeight: number, important?: boolean) => StylexValue;
|
135
143
|
lineHeight: (lineHeight: string, important?: boolean) => StylexValue;
|
package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStyleEditor.d.ts
CHANGED
@@ -18,6 +18,8 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
18
18
|
toned?: boolean;
|
19
19
|
} & {
|
20
20
|
themeType?: ThemeContextType;
|
21
|
+
} & {
|
22
|
+
size?: "small" | "default" | "x-small" | "large" | "x-large";
|
21
23
|
} & {
|
22
24
|
simpleMode?: boolean;
|
23
25
|
} & {
|
@@ -34,5 +36,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
34
36
|
} & Omit<{
|
35
37
|
default?: import("vue").Slot;
|
36
38
|
}, "activator">;
|
37
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "icon" | "variant" | "toned" | "emit:update:modelValue" | "modelValue" | "v-model" | "themeType" | "slot:activator" | "enableDynamicColor" | "toolbarCallback" | "defaultColorSchemaType" | "simpleMode"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
39
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "icon" | "variant" | "size" | "toned" | "emit:update:modelValue" | "modelValue" | "v-model" | "themeType" | "slot:activator" | "enableDynamicColor" | "toolbarCallback" | "defaultColorSchemaType" | "simpleMode"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
38
40
|
export default _default;
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import { FilterPickerFilter, IconBlueprint, OIconSizes } from "@omnia/fx-models";
|
2
|
+
export declare enum ColorMode {
|
3
|
+
colorOnly = "color",
|
4
|
+
linearGradient = "linear",
|
5
|
+
radialGradient = "radial"
|
6
|
+
}
|
7
|
+
export declare const useIconStyleEditorStore: () => {
|
8
|
+
state: {
|
9
|
+
internalModel: IconBlueprint;
|
10
|
+
sizeOption: string;
|
11
|
+
settings: {
|
12
|
+
iconSize: "small" | "default" | "x-small" | "large" | "x-large";
|
13
|
+
};
|
14
|
+
icon: {
|
15
|
+
scaleSize: number;
|
16
|
+
numericSize: number;
|
17
|
+
};
|
18
|
+
};
|
19
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
20
|
+
initState: (model: IconBlueprint, size: OIconSizes) => void;
|
21
|
+
}>;
|
22
|
+
rules: {
|
23
|
+
show: {
|
24
|
+
readonly numberSlider: boolean;
|
25
|
+
readonly scaleSize: boolean;
|
26
|
+
};
|
27
|
+
};
|
28
|
+
dataTypes: {
|
29
|
+
sizeOptions: FilterPickerFilter[];
|
30
|
+
};
|
31
|
+
} & {
|
32
|
+
dispose?: () => void;
|
33
|
+
};
|
package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/TextStylePicker.d.ts
CHANGED
@@ -3,7 +3,7 @@ import { TextBlueprint, ThemeContextType, TextStyleValue, TypographyBlueprint, T
|
|
3
3
|
import { VNode } from "vue";
|
4
4
|
import { PickerVariant } from "internal/fx/ux/oxide/picker/models/SharedSettings";
|
5
5
|
import { ViewTypes } from "./store/TextStylePickerStore";
|
6
|
-
|
6
|
+
type previewTypes = "default" | "icon";
|
7
7
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
8
8
|
"emit:update:modelValue": (value: number | TextStyleValue) => void;
|
9
9
|
} & {
|
@@ -17,7 +17,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
17
17
|
} & {
|
18
18
|
viewType?: ViewTypes;
|
19
19
|
} & {
|
20
|
-
|
20
|
+
previewType?: previewTypes;
|
21
21
|
} & {
|
22
22
|
textBlueprint?: TextBlueprint;
|
23
23
|
} & {
|
@@ -42,5 +42,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
42
42
|
} & Omit<{
|
43
43
|
default?: import("vue").Slot;
|
44
44
|
}, "activator">;
|
45
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "
|
45
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "variant" | "placeholder" | "toned" | "emit:update:modelValue" | "modelValue" | "v-model" | "themeType" | "slot:activator" | "textBlueprint" | "customTyping" | "viewType" | "previewType" | "typographyBlueprint" | "breakpoint" | "sampleText"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
46
46
|
export default _default;
|
@@ -15,6 +15,7 @@ export declare const useTextStylePickerStore: () => {
|
|
15
15
|
initState: (model: textStyle | number, sampleText: string, themeType: ThemeContextType, viewType: ViewTypes, typographyBlueprint: TypographyBlueprint, breakpoint: TextStyleBreakpointType) => void;
|
16
16
|
}>;
|
17
17
|
get: {
|
18
|
+
readonly iconSize: number;
|
18
19
|
readonly textStyle: textStyle;
|
19
20
|
displayText: (textStyle: ThemedTextStyleValue) => string;
|
20
21
|
displayIcon: (textStyle: ThemedTextStyleValue) => import("@omnia/fx-models").FontAwesomeIcon;
|
@@ -2,6 +2,7 @@ import { ThemeContextType, TypographyBlueprint, TextStyleSizes, TextStyleType, T
|
|
2
2
|
import { DefineEmit } from "@omnia/fx/ux";
|
3
3
|
import { ViewTypes } from "./store/TypographyViewerStore";
|
4
4
|
type Variant = "list" | "picker" | "list-preview";
|
5
|
+
type previewTypes = "default" | "icon";
|
5
6
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
6
7
|
blueprint?: TypographyBlueprint;
|
7
8
|
} & {
|
@@ -16,6 +17,8 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
16
17
|
variant?: Variant;
|
17
18
|
} & {
|
18
19
|
viewtype?: ViewTypes;
|
20
|
+
} & {
|
21
|
+
previewType?: previewTypes;
|
19
22
|
} & {
|
20
23
|
breakpoint?: TextStyleBreakpointType;
|
21
24
|
} & {
|
@@ -29,5 +32,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
29
32
|
"v-slots"?: {} & Omit<{
|
30
33
|
default?: import("vue").Slot;
|
31
34
|
}, never>;
|
32
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "blueprint" | "variant" | "toned" | "themeType" | "emit:click:select" | "editable" | "breakpoint" | "sampleText" | "showActivationStatus" | "activeScale" | "viewtype" | "emit:click:selectScale"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
35
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "blueprint" | "variant" | "toned" | "themeType" | "emit:click:select" | "editable" | "previewType" | "breakpoint" | "sampleText" | "showActivationStatus" | "activeScale" | "viewtype" | "emit:click:selectScale"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
33
36
|
export default _default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Blueprint, ButtonBlueprint, ButtonBlueprintVariant, ComponentBlueprints, BlueprintVariant, OIconSizes, TabsBlueprint, WebBlueprintItemDefintionType, HeaderBlueprint, InputBlueprint, ContainerFillValue, TypographyBlueprint, IconBlueprint } from "@omnia/fx-models";
|
1
|
+
import { Blueprint, ButtonBlueprint, ButtonBlueprintVariant, ComponentBlueprints, BlueprintVariant, OIconSizes, TabsBlueprint, WebBlueprintItemDefintionType, HeaderBlueprint, InputBlueprint, ContainerFillValue, TypographyBlueprint, IconBlueprint, TextStyleDefinition } from "@omnia/fx-models";
|
2
2
|
type blueprintType = "default";
|
3
3
|
export declare const useComponentBlueprintStore: () => {
|
4
4
|
state: {
|
@@ -34,8 +34,8 @@ export declare const useComponentBlueprintStore: () => {
|
|
34
34
|
icon: {
|
35
35
|
blueprint(size: OIconSizes): IconBlueprint;
|
36
36
|
size: {
|
37
|
-
byBluePrint(blueprint: IconBlueprint, typographyBlueprint: TypographyBlueprint):
|
38
|
-
byIconSize(size: OIconSizes, typographyBlueprint: TypographyBlueprint):
|
37
|
+
byBluePrint(blueprint: IconBlueprint, typographyBlueprint: TypographyBlueprint): TextStyleDefinition;
|
38
|
+
byIconSize(size: OIconSizes, typographyBlueprint: TypographyBlueprint): TextStyleDefinition;
|
39
39
|
};
|
40
40
|
};
|
41
41
|
containerFill: {
|
@@ -50,8 +50,8 @@ export declare const useThemeStore: () => {
|
|
50
50
|
icon: {
|
51
51
|
blueprint(size: import("@omnia/fx-models").OIconSizes): import("@omnia/fx-models").IconBlueprint;
|
52
52
|
size: {
|
53
|
-
byBluePrint(blueprint: import("@omnia/fx-models").IconBlueprint, typographyBlueprint: import("@omnia/fx-models").TypographyBlueprint):
|
54
|
-
byIconSize(size: import("@omnia/fx-models").OIconSizes, typographyBlueprint: import("@omnia/fx-models").TypographyBlueprint):
|
53
|
+
byBluePrint(blueprint: import("@omnia/fx-models").IconBlueprint, typographyBlueprint: import("@omnia/fx-models").TypographyBlueprint): import("@omnia/fx-models").TextStyleDefinition;
|
54
|
+
byIconSize(size: import("@omnia/fx-models").OIconSizes, typographyBlueprint: import("@omnia/fx-models").TypographyBlueprint): import("@omnia/fx-models").TextStyleDefinition;
|
55
55
|
};
|
56
56
|
};
|
57
57
|
containerFill: {
|
@@ -6,6 +6,7 @@ interface BreakpointScale {
|
|
6
6
|
}
|
7
7
|
export declare function useTypographyBlueprintManager(): {
|
8
8
|
typeScale: {
|
9
|
+
getFontSize: (blueprint: TypographyBlueprint, scaleSlots: BreakpointScale) => void;
|
9
10
|
createTextStyleDefinition: (blueprint: TypographyBlueprint, scaleSlots: BreakpointScale) => TextStyleDefinition;
|
10
11
|
};
|
11
12
|
textStyledefinition: {
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { ButtonBlueprint } from "@omnia/fx-models";
|
1
|
+
import { ButtonBlueprint, TextStyleDefinition } from "@omnia/fx-models";
|
2
2
|
import { useColorSchemaStore } from "@omnia/fx/ux";
|
3
3
|
export declare namespace BlueprintStyling {
|
4
|
-
function getIconButtonStylex(bluePrint: ButtonBlueprint, colors: ReturnType<typeof useColorSchemaStore>,
|
4
|
+
function getIconButtonStylex(bluePrint: ButtonBlueprint, colors: ReturnType<typeof useColorSchemaStore>, iconSizeDefinition: TextStyleDefinition, slim: boolean): Readonly<import("@omnia/fx/ux").StylexValue>;
|
5
5
|
function getTextButtonStylex(bluePrint: ButtonBlueprint, colors: ReturnType<typeof useColorSchemaStore>, slim: boolean): Readonly<import("@omnia/fx/ux").StylexValue>;
|
6
6
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { OIconVariants, OIconSizes } from "@omnia/fx-models";
|
1
|
+
import { OIconVariants, OIconSizes, TextStyleDefinition } from "@omnia/fx-models";
|
2
2
|
export declare const IconStyles: {
|
3
|
-
wrapper: (size: OIconSizes, variant: OIconVariants,
|
3
|
+
wrapper: (size: OIconSizes, variant: OIconVariants, fontDefinition: TextStyleDefinition) => Readonly<import("../..").StylexValue>;
|
4
4
|
};
|
package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeEditor.d.ts
CHANGED
@@ -7,91 +7,23 @@ export type DateTimeEditorProps = IPropertyEditorRenderer<DateTimePropertyDefini
|
|
7
7
|
} & {
|
8
8
|
"onUpdate:modelValue": (value: DateTimePropertyValue) => void;
|
9
9
|
};
|
10
|
-
declare const _default: {
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
onVnodeUnmounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
30
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
31
|
-
P: {};
|
32
|
-
B: {};
|
33
|
-
D: {};
|
34
|
-
C: {};
|
35
|
-
M: {};
|
36
|
-
Defaults: {};
|
37
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
38
|
-
modelValue: import("vue").Prop<DateTimePropertyValue, DateTimePropertyValue>;
|
39
|
-
editorSettings: import("vue").Prop<DateTimeEditorSettings, DateTimeEditorSettings>;
|
40
|
-
displaySettings: import("vue").Prop<DateTimeDisplaySettings, DateTimeDisplaySettings>;
|
41
|
-
setupSettings?: import("vue").Prop<never, never>;
|
42
|
-
disabled?: import("vue").Prop<boolean, boolean>;
|
43
|
-
styles: import("vue").Prop<{
|
44
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
45
|
-
}, {
|
46
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
47
|
-
}>;
|
48
|
-
"v-model": import("vue").Prop<DateTimePropertyValue, DateTimePropertyValue>;
|
49
|
-
"onUpdate:modelValue": import("vue").Prop<(value: DateTimePropertyValue) => void, (value: DateTimePropertyValue) => void>;
|
50
|
-
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
51
|
-
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
52
|
-
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)[]>;
|
53
|
-
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)[]>;
|
54
|
-
onVnodeBeforeUnmount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
55
|
-
onVnodeUnmounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
56
|
-
}>>, {}, {}, {}, {}, {}>;
|
57
|
-
__isFragment?: never;
|
58
|
-
__isTeleport?: never;
|
59
|
-
__isSuspense?: never;
|
60
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
61
|
-
modelValue: import("vue").Prop<DateTimePropertyValue, DateTimePropertyValue>;
|
62
|
-
editorSettings: import("vue").Prop<DateTimeEditorSettings, DateTimeEditorSettings>;
|
63
|
-
displaySettings: import("vue").Prop<DateTimeDisplaySettings, DateTimeDisplaySettings>;
|
64
|
-
setupSettings?: import("vue").Prop<never, never>;
|
65
|
-
disabled?: import("vue").Prop<boolean, boolean>;
|
66
|
-
styles: import("vue").Prop<{
|
67
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
68
|
-
}, {
|
69
|
-
container: import("typestyle/lib/types").NestedCSSProperties;
|
70
|
-
}>;
|
71
|
-
"v-model": import("vue").Prop<DateTimePropertyValue, DateTimePropertyValue>;
|
72
|
-
"onUpdate:modelValue": import("vue").Prop<(value: DateTimePropertyValue) => void, (value: DateTimePropertyValue) => void>;
|
73
|
-
onVnodeBeforeMount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
74
|
-
onVnodeMounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
75
|
-
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)[]>;
|
76
|
-
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)[]>;
|
77
|
-
onVnodeBeforeUnmount?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
78
|
-
onVnodeUnmounted?: import("vue").Prop<((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[], ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]>;
|
79
|
-
}>>, {}, {}, {}, {}, 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 & {
|
80
|
-
propsDefinition: Omit<Readonly<{} & {
|
81
|
-
disabled?: boolean;
|
82
|
-
styles?: typeof DateTimeEditorStyles;
|
83
|
-
onVnodeBeforeMount?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
84
|
-
onVnodeMounted?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
85
|
-
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[];
|
86
|
-
onVnodeUpdated?: ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[];
|
87
|
-
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
88
|
-
onVnodeUnmounted?: ((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[];
|
89
|
-
modelValue?: DateTimePropertyValue;
|
90
|
-
"v-model"?: DateTimePropertyValue;
|
91
|
-
"onUpdate:modelValue"?: (value: DateTimePropertyValue) => void;
|
92
|
-
displaySettings?: DateTimeDisplaySettings;
|
93
|
-
setupSettings?: never;
|
94
|
-
editorSettings?: DateTimeEditorSettings;
|
95
|
-
}>, never>;
|
96
|
-
};
|
10
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
11
|
+
"emit:update:modelValue": (value: DateTimePropertyValue) => void;
|
12
|
+
} & {
|
13
|
+
"v-model"?: DateTimePropertyValue;
|
14
|
+
} & {
|
15
|
+
modelValue?: DateTimePropertyValue;
|
16
|
+
} & {
|
17
|
+
displaySettings?: DateTimeDisplaySettings;
|
18
|
+
} & {
|
19
|
+
editorSettings?: DateTimeEditorSettings;
|
20
|
+
} & {
|
21
|
+
disabled?: boolean;
|
22
|
+
}> & {
|
23
|
+
"onUpdate:modelValue"?: (value: DateTimePropertyValue) => any;
|
24
|
+
} & {
|
25
|
+
"v-slots"?: {} & Omit<{
|
26
|
+
default?: import("vue").Slot;
|
27
|
+
}, never>;
|
28
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "disabled" | "emit:update:modelValue" | "modelValue" | "v-model" | "displaySettings" | "editorSettings"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
97
29
|
export default _default;
|
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.414-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.414-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|