@omnia/fx 8.0.112-dev → 8.0.113-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/shared/models/theming/ChromeDefinition.d.ts +2 -11
- package/internal-do-not-import-from-here/shared/models/theming/ComponentDefinitions.d.ts +3 -7
- package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +16 -3
- package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/borderpicker/BorderPicker.css.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/borderpicker/BorderPicker.d.ts +161 -0
- package/internal-do-not-import-from-here/ux/borderpicker/BorderPreview.d.ts +69 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/components/docs/Properties.d.ts +50 -15
- package/internal-do-not-import-from-here/ux/docs/omfx/components/docs/VModel.d.ts +58 -345
- package/internal-do-not-import-from-here/ux/docs/omfx/directives/docs/UseClickInSide.d.ts +50 -15
- package/internal-do-not-import-from-here/ux/enterpriseproperties/renderers/EnterprisePropertyConfiguration.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/{backgroundpicker/BackgroundPicker.css.d.ts → fillpicker/FillPicker.css.d.ts} +2 -1
- package/internal-do-not-import-from-here/ux/{backgroundpicker/BackgroundPicker.d.ts → fillpicker/FillPicker.d.ts} +44 -23
- package/internal-do-not-import-from-here/ux/{backgroundpicker/BackgroundPreview.d.ts → fillpicker/FillPreview.d.ts} +16 -16
- package/internal-do-not-import-from-here/ux/fillpicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/fillpicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/ColorSettings.d.ts +23 -23
- package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.d.ts +18 -10
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +10 -2
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +53 -11
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageEditor.css.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/DefinitionsChrome.d.ts +10 -82
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +586 -19
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Blueprints.d.ts +20 -15
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Chrome.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Colors.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Spacing.d.ts +7 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +36 -12
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/ExampleComponentsMenu.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/SampleComponentMenu.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/SampleVariants.d.ts +0 -16
- /package/internal-do-not-import-from-here/ux/{backgroundpicker/docs/BackgroundPickerExample.d.ts → borderpicker/docs/BorderPickerExample.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/{backgroundpicker → borderpicker}/docs/ExampleComponents.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{backgroundpicker → borderpicker}/docs/index.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{oxide/treeview/docs/SampleButtons.d.ts → fillpicker/docs/FillPickerExample.d.ts} +0 -0
@@ -1,8 +1,7 @@
|
|
1
1
|
import { GuidValue } from "../Guid";
|
2
2
|
import { VelcronAppDefinition } from "../velcron";
|
3
|
-
import { BoxDimensions } from "./ComponentDefinitions";
|
4
3
|
import { SpacingSettings } from "./SpacingSetting";
|
5
|
-
import {
|
4
|
+
import { BackgroundDefinition } from "./ThemeDefinitionV2";
|
6
5
|
export interface ChromeDefinition {
|
7
6
|
id: GuidValue;
|
8
7
|
name: string;
|
@@ -11,15 +10,7 @@ export interface ChromeDefinition {
|
|
11
10
|
definition?: VelcronAppDefinition;
|
12
11
|
};
|
13
12
|
styles: {
|
14
|
-
background?:
|
15
|
-
color?: ColorValue;
|
16
|
-
filled?: boolean;
|
17
|
-
opacity?: number;
|
18
|
-
};
|
13
|
+
background?: BackgroundDefinition;
|
19
14
|
spacing?: SpacingSettings;
|
20
|
-
elevation?: number;
|
21
|
-
borderRadius?: BoxDimensions;
|
22
|
-
border?: BoxDimensions;
|
23
|
-
borderColor?: ColorValue;
|
24
15
|
};
|
25
16
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ColorValue } from "./ThemeDefinitionV2";
|
1
|
+
import { BackgroundDefinition, ColorValue } from "./ThemeDefinitionV2";
|
2
2
|
import { ChromeDefinition } from "./ChromeDefinition";
|
3
3
|
import { SpacingDefinition, SpacingSettings } from "./SpacingSetting";
|
4
4
|
import { TypographyDefinition } from "./TypographyDefinition";
|
@@ -78,11 +78,7 @@ export interface ButtonBlueprint extends BlueprintItemDefinition {
|
|
78
78
|
density?: "compact" | "comfortable";
|
79
79
|
size?: "x-small" | "small" | "large" | "x-large";
|
80
80
|
padding?: SpacingSettings;
|
81
|
-
|
82
|
-
|
83
|
-
background?: ColorValue;
|
81
|
+
background?: BackgroundDefinition;
|
82
|
+
alterCase?: boolean;
|
84
83
|
textColor?: ColorValue;
|
85
|
-
elevation?: number;
|
86
|
-
border?: number;
|
87
|
-
borderColor?: ColorValue;
|
88
84
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Guid } from "../Guid";
|
2
|
-
import { BlueprintDefinition } from "./ComponentDefinitions";
|
2
|
+
import { BlueprintDefinition, BoxDimensions } from "./ComponentDefinitions";
|
3
3
|
export interface ColorTypeResult<resultType> {
|
4
4
|
base: resultType;
|
5
5
|
baseTone: resultType;
|
@@ -79,14 +79,27 @@ export interface ColorGradientValue {
|
|
79
79
|
color: ColorValue;
|
80
80
|
stop?: number;
|
81
81
|
}
|
82
|
+
/**Background */
|
82
83
|
export interface BackgroundDefinition {
|
84
|
+
filled?: boolean;
|
85
|
+
fill?: FillDefinition;
|
86
|
+
border?: BorderStylingDefinition;
|
87
|
+
elevation?: number;
|
88
|
+
}
|
89
|
+
export interface FillDefinition {
|
83
90
|
colors: Array<ColorValue | ColorGradientValue>;
|
84
91
|
acrylic?: boolean;
|
92
|
+
opacity?: number;
|
85
93
|
}
|
86
|
-
export interface
|
94
|
+
export interface LinearGradientFillDefinition extends FillDefinition {
|
87
95
|
degrees: number;
|
88
96
|
}
|
89
|
-
export interface
|
97
|
+
export interface RadialGradientFillDefinition extends FillDefinition {
|
90
98
|
shape: RadialGradientShapes;
|
91
99
|
position?: number;
|
92
100
|
}
|
101
|
+
export interface BorderStylingDefinition {
|
102
|
+
radius?: BoxDimensions;
|
103
|
+
width?: BoxDimensions;
|
104
|
+
fill?: FillDefinition;
|
105
|
+
}
|
@@ -1,4 +1,19 @@
|
|
1
1
|
export declare const themingStyles: Readonly<{
|
2
|
+
readonly backgroundColor: (backgroundColor: string) => readonly [Readonly<{
|
3
|
+
backgroundColor: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"backgroundColor", string>;
|
4
|
+
}>, typeof import("@stylexjs/stylex/lib/StyleXTypes").StyleXInlineStylesTag];
|
5
|
+
readonly color: (color: string) => readonly [Readonly<{
|
6
|
+
color: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"color", string>;
|
7
|
+
}>, typeof import("@stylexjs/stylex/lib/StyleXTypes").StyleXInlineStylesTag];
|
8
|
+
readonly marginValue: (marginValue: string) => readonly [Readonly<{
|
9
|
+
margin: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"margin", string>;
|
10
|
+
}>, typeof import("@stylexjs/stylex/lib/StyleXTypes").StyleXInlineStylesTag];
|
11
|
+
readonly paddingValue: (marginValue: string) => readonly [Readonly<{
|
12
|
+
padding: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"padding", string>;
|
13
|
+
}>, typeof import("@stylexjs/stylex/lib/StyleXTypes").StyleXInlineStylesTag];
|
14
|
+
readonly borderValue: (borderValue: string) => readonly [Readonly<{
|
15
|
+
border: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"border", string>;
|
16
|
+
}>, typeof import("@stylexjs/stylex/lib/StyleXTypes").StyleXInlineStylesTag];
|
2
17
|
readonly margin: (marginTop?: string, marginRight?: string, marginBottom?: string, marginLeft?: string) => readonly [Readonly<{
|
3
18
|
marginTop: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"marginTop", string>;
|
4
19
|
marginRight: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"marginRight", string>;
|
@@ -17,4 +32,10 @@ export declare const themingStyles: Readonly<{
|
|
17
32
|
borderBottom: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"borderBottom", string>;
|
18
33
|
borderLeft: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"borderLeft", string>;
|
19
34
|
}>, typeof import("@stylexjs/stylex/lib/StyleXTypes").StyleXInlineStylesTag];
|
35
|
+
readonly borderRadius: (borderTopLeftRadius?: string, borderTopRightRadius?: string, borderBottomRightRadius?: string, borderBottomLeftRadius?: string) => readonly [Readonly<{
|
36
|
+
borderTopLeftRadius: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"borderTopLeftRadius", string>;
|
37
|
+
borderTopRightRadius: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"borderTopRightRadius", string>;
|
38
|
+
borderBottomRightRadius: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"borderBottomRightRadius", string>;
|
39
|
+
borderBottomLeftRadius: import("@stylexjs/stylex/lib/StyleXTypes").StyleXClassNameFor<"borderBottomLeftRadius", string>;
|
40
|
+
}>, typeof import("@stylexjs/stylex/lib/StyleXTypes").StyleXInlineStylesTag];
|
20
41
|
}>;
|
@@ -0,0 +1,161 @@
|
|
1
|
+
import { BorderStylingDefinition } from "@omnia/fx-models";
|
2
|
+
import { VNodeChild } from "vue";
|
3
|
+
declare const _default: {
|
4
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
5
|
+
"v-slots": import("vue").Prop<{
|
6
|
+
default?: import("../DefineVueTypings").Slot<any[]>;
|
7
|
+
} & {
|
8
|
+
activator?: () => VNodeChild;
|
9
|
+
}>;
|
10
|
+
"individual-width-selection": {
|
11
|
+
type: import("vue").PropType<boolean>;
|
12
|
+
};
|
13
|
+
individualWidthSelection: {
|
14
|
+
type: import("vue").PropType<boolean>;
|
15
|
+
};
|
16
|
+
"individual-radius-selection": {
|
17
|
+
type: import("vue").PropType<boolean>;
|
18
|
+
};
|
19
|
+
individualRadiusSelection: {
|
20
|
+
type: import("vue").PropType<boolean>;
|
21
|
+
};
|
22
|
+
"onUpdate:modelValue": {
|
23
|
+
type: import("vue").PropType<(value: BorderStylingDefinition) => any>;
|
24
|
+
};
|
25
|
+
"v-model": {
|
26
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
27
|
+
required: false;
|
28
|
+
};
|
29
|
+
modelValue: {
|
30
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
31
|
+
required: false;
|
32
|
+
};
|
33
|
+
}>> & {
|
34
|
+
"onUpdate:modelValue"?: (value: BorderStylingDefinition) => any;
|
35
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
36
|
+
"update:modelValue": (value: BorderStylingDefinition) => true;
|
37
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
38
|
+
"v-slots": import("vue").Prop<{
|
39
|
+
default?: import("../DefineVueTypings").Slot<any[]>;
|
40
|
+
} & {
|
41
|
+
activator?: () => VNodeChild;
|
42
|
+
}>;
|
43
|
+
"individual-width-selection": {
|
44
|
+
type: import("vue").PropType<boolean>;
|
45
|
+
};
|
46
|
+
individualWidthSelection: {
|
47
|
+
type: import("vue").PropType<boolean>;
|
48
|
+
};
|
49
|
+
"individual-radius-selection": {
|
50
|
+
type: import("vue").PropType<boolean>;
|
51
|
+
};
|
52
|
+
individualRadiusSelection: {
|
53
|
+
type: import("vue").PropType<boolean>;
|
54
|
+
};
|
55
|
+
"onUpdate:modelValue": {
|
56
|
+
type: import("vue").PropType<(value: BorderStylingDefinition) => any>;
|
57
|
+
};
|
58
|
+
"v-model": {
|
59
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
60
|
+
required: false;
|
61
|
+
};
|
62
|
+
modelValue: {
|
63
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
64
|
+
required: false;
|
65
|
+
};
|
66
|
+
}>> & {
|
67
|
+
"onUpdate:modelValue"?: (value: BorderStylingDefinition) => any;
|
68
|
+
}, {}, true, {}, {}, {
|
69
|
+
P: {};
|
70
|
+
B: {};
|
71
|
+
D: {};
|
72
|
+
C: {};
|
73
|
+
M: {};
|
74
|
+
Defaults: {};
|
75
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
76
|
+
"v-slots": import("vue").Prop<{
|
77
|
+
default?: import("../DefineVueTypings").Slot<any[]>;
|
78
|
+
} & {
|
79
|
+
activator?: () => VNodeChild;
|
80
|
+
}>;
|
81
|
+
"individual-width-selection": {
|
82
|
+
type: import("vue").PropType<boolean>;
|
83
|
+
};
|
84
|
+
individualWidthSelection: {
|
85
|
+
type: import("vue").PropType<boolean>;
|
86
|
+
};
|
87
|
+
"individual-radius-selection": {
|
88
|
+
type: import("vue").PropType<boolean>;
|
89
|
+
};
|
90
|
+
individualRadiusSelection: {
|
91
|
+
type: import("vue").PropType<boolean>;
|
92
|
+
};
|
93
|
+
"onUpdate:modelValue": {
|
94
|
+
type: import("vue").PropType<(value: BorderStylingDefinition) => any>;
|
95
|
+
};
|
96
|
+
"v-model": {
|
97
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
98
|
+
required: false;
|
99
|
+
};
|
100
|
+
modelValue: {
|
101
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
102
|
+
required: false;
|
103
|
+
};
|
104
|
+
}>> & {
|
105
|
+
"onUpdate:modelValue"?: (value: BorderStylingDefinition) => any;
|
106
|
+
}, () => JSX.Element, {}, {}, {}, {}>;
|
107
|
+
__isFragment?: never;
|
108
|
+
__isTeleport?: never;
|
109
|
+
__isSuspense?: never;
|
110
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
111
|
+
"v-slots": import("vue").Prop<{
|
112
|
+
default?: import("../DefineVueTypings").Slot<any[]>;
|
113
|
+
} & {
|
114
|
+
activator?: () => VNodeChild;
|
115
|
+
}>;
|
116
|
+
"individual-width-selection": {
|
117
|
+
type: import("vue").PropType<boolean>;
|
118
|
+
};
|
119
|
+
individualWidthSelection: {
|
120
|
+
type: import("vue").PropType<boolean>;
|
121
|
+
};
|
122
|
+
"individual-radius-selection": {
|
123
|
+
type: import("vue").PropType<boolean>;
|
124
|
+
};
|
125
|
+
individualRadiusSelection: {
|
126
|
+
type: import("vue").PropType<boolean>;
|
127
|
+
};
|
128
|
+
"onUpdate:modelValue": {
|
129
|
+
type: import("vue").PropType<(value: BorderStylingDefinition) => any>;
|
130
|
+
};
|
131
|
+
"v-model": {
|
132
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
133
|
+
required: false;
|
134
|
+
};
|
135
|
+
modelValue: {
|
136
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
137
|
+
required: false;
|
138
|
+
};
|
139
|
+
}>> & {
|
140
|
+
"onUpdate:modelValue"?: (value: BorderStylingDefinition) => any;
|
141
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
142
|
+
"update:modelValue": (value: BorderStylingDefinition) => true;
|
143
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
144
|
+
propsDefinition: Omit<Readonly<{} & {
|
145
|
+
"v-model"?: BorderStylingDefinition;
|
146
|
+
"onUpdate:modelValue"?: (value: BorderStylingDefinition) => any;
|
147
|
+
modelValue?: BorderStylingDefinition;
|
148
|
+
"v-slots"?: {
|
149
|
+
default?: import("../DefineVueTypings").Slot<any[]>;
|
150
|
+
} & {
|
151
|
+
activator?: () => VNodeChild;
|
152
|
+
};
|
153
|
+
individualRadiusSelection?: boolean;
|
154
|
+
"individual-radius-selection"?: boolean;
|
155
|
+
individualWidthSelection?: boolean;
|
156
|
+
"individual-width-selection"?: boolean;
|
157
|
+
}>, "onUpdate:modelValue"> & {
|
158
|
+
"onUpdate:modelValue"?: (value: BorderStylingDefinition) => any;
|
159
|
+
};
|
160
|
+
};
|
161
|
+
export default _default;
|
@@ -0,0 +1,69 @@
|
|
1
|
+
import { BorderStylingDefinition } from "@omnia/fx-models";
|
2
|
+
declare const _default: {
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
"onUpdate:modelValue": {
|
5
|
+
type: import("vue").PropType<(value: BorderStylingDefinition) => any>;
|
6
|
+
};
|
7
|
+
"v-model": {
|
8
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
9
|
+
required: false;
|
10
|
+
};
|
11
|
+
modelValue: {
|
12
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
13
|
+
required: false;
|
14
|
+
};
|
15
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
16
|
+
"onUpdate:modelValue": {
|
17
|
+
type: import("vue").PropType<(value: BorderStylingDefinition) => any>;
|
18
|
+
};
|
19
|
+
"v-model": {
|
20
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
21
|
+
required: false;
|
22
|
+
};
|
23
|
+
modelValue: {
|
24
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
25
|
+
required: false;
|
26
|
+
};
|
27
|
+
}>>, {}, true, {}, {}, {
|
28
|
+
P: {};
|
29
|
+
B: {};
|
30
|
+
D: {};
|
31
|
+
C: {};
|
32
|
+
M: {};
|
33
|
+
Defaults: {};
|
34
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
35
|
+
"onUpdate:modelValue": {
|
36
|
+
type: import("vue").PropType<(value: BorderStylingDefinition) => any>;
|
37
|
+
};
|
38
|
+
"v-model": {
|
39
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
40
|
+
required: false;
|
41
|
+
};
|
42
|
+
modelValue: {
|
43
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
44
|
+
required: false;
|
45
|
+
};
|
46
|
+
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
47
|
+
__isFragment?: never;
|
48
|
+
__isTeleport?: never;
|
49
|
+
__isSuspense?: never;
|
50
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
51
|
+
"onUpdate:modelValue": {
|
52
|
+
type: import("vue").PropType<(value: BorderStylingDefinition) => any>;
|
53
|
+
};
|
54
|
+
"v-model": {
|
55
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
56
|
+
required: false;
|
57
|
+
};
|
58
|
+
modelValue: {
|
59
|
+
type: import("vue").PropType<BorderStylingDefinition>;
|
60
|
+
required: false;
|
61
|
+
};
|
62
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
63
|
+
propsDefinition: Omit<Readonly<{} & {
|
64
|
+
"v-model"?: BorderStylingDefinition;
|
65
|
+
"onUpdate:modelValue"?: (value: BorderStylingDefinition) => any;
|
66
|
+
modelValue?: BorderStylingDefinition;
|
67
|
+
}>, never>;
|
68
|
+
};
|
69
|
+
export default _default;
|
@@ -1,16 +1,51 @@
|
|
1
|
-
declare const _default: {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
1
|
+
declare const _default: (props: Record<string, any> & Omit<{}, string> & {
|
2
|
+
"v-slots"?: {
|
3
|
+
default?: import("vue").Slot;
|
4
|
+
};
|
5
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string>) => {
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
7
|
+
$data: {};
|
8
|
+
$props: {};
|
9
|
+
$attrs: {
|
10
|
+
[x: string]: unknown;
|
11
|
+
};
|
12
|
+
$refs: {
|
13
|
+
[x: string]: unknown;
|
14
|
+
};
|
15
|
+
$slots: Readonly<{
|
16
|
+
[name: string]: import("vue").Slot<any>;
|
17
|
+
}>;
|
18
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
19
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
20
|
+
$emit: (event: string, ...args: any[]) => void;
|
21
|
+
$el: any;
|
22
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
23
|
+
beforeCreate?: (() => void) | (() => void)[];
|
24
|
+
created?: (() => void) | (() => void)[];
|
25
|
+
beforeMount?: (() => void) | (() => void)[];
|
26
|
+
mounted?: (() => void) | (() => void)[];
|
27
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
28
|
+
updated?: (() => void) | (() => void)[];
|
29
|
+
activated?: (() => void) | (() => void)[];
|
30
|
+
deactivated?: (() => void) | (() => void)[];
|
31
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
32
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
33
|
+
destroyed?: (() => void) | (() => void)[];
|
34
|
+
unmounted?: (() => void) | (() => void)[];
|
35
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
36
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
37
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
38
|
+
};
|
39
|
+
$forceUpdate: () => void;
|
40
|
+
$nextTick: typeof import("vue").nextTick;
|
41
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
42
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
43
|
+
propsDefinition: Record<string, any> & {
|
44
|
+
"v-slots"?: {
|
45
|
+
default?: import("vue").Slot;
|
46
|
+
};
|
47
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string>;
|
48
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
49
|
+
[key: string]: any;
|
50
|
+
}>;
|
16
51
|
export default _default;
|