@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,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { FillDefinition } from "@omnia/fx-models";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
declare const _default: {
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
@@ -7,40 +7,50 @@ declare const _default: {
|
|
7
7
|
} & {
|
8
8
|
activator?: () => VNodeChild;
|
9
9
|
}>;
|
10
|
+
nested: {
|
11
|
+
type: import("vue").PropType<boolean>;
|
12
|
+
} & {
|
13
|
+
type: import("vue").PropType<boolean>;
|
14
|
+
};
|
10
15
|
"onUpdate:modelValue": {
|
11
|
-
type: import("vue").PropType<(value:
|
16
|
+
type: import("vue").PropType<(value: FillDefinition) => any>;
|
12
17
|
};
|
13
18
|
"v-model": {
|
14
|
-
type: import("vue").PropType<
|
19
|
+
type: import("vue").PropType<FillDefinition>;
|
15
20
|
required: false;
|
16
21
|
};
|
17
22
|
modelValue: {
|
18
|
-
type: import("vue").PropType<
|
23
|
+
type: import("vue").PropType<FillDefinition>;
|
19
24
|
required: false;
|
20
25
|
};
|
21
26
|
}>> & {
|
22
|
-
"onUpdate:modelValue"?: (value:
|
27
|
+
"onUpdate:modelValue"?: (value: FillDefinition) => any;
|
23
28
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
24
|
-
"update:modelValue": (value:
|
29
|
+
"update:modelValue": (value: FillDefinition) => true;
|
25
30
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
26
31
|
"v-slots": import("vue").Prop<{
|
27
32
|
default?: import("../DefineVueTypings").Slot<any[]>;
|
28
33
|
} & {
|
29
34
|
activator?: () => VNodeChild;
|
30
35
|
}>;
|
36
|
+
nested: {
|
37
|
+
type: import("vue").PropType<boolean>;
|
38
|
+
} & {
|
39
|
+
type: import("vue").PropType<boolean>;
|
40
|
+
};
|
31
41
|
"onUpdate:modelValue": {
|
32
|
-
type: import("vue").PropType<(value:
|
42
|
+
type: import("vue").PropType<(value: FillDefinition) => any>;
|
33
43
|
};
|
34
44
|
"v-model": {
|
35
|
-
type: import("vue").PropType<
|
45
|
+
type: import("vue").PropType<FillDefinition>;
|
36
46
|
required: false;
|
37
47
|
};
|
38
48
|
modelValue: {
|
39
|
-
type: import("vue").PropType<
|
49
|
+
type: import("vue").PropType<FillDefinition>;
|
40
50
|
required: false;
|
41
51
|
};
|
42
52
|
}>> & {
|
43
|
-
"onUpdate:modelValue"?: (value:
|
53
|
+
"onUpdate:modelValue"?: (value: FillDefinition) => any;
|
44
54
|
}, {}, true, {}, {}, {
|
45
55
|
P: {};
|
46
56
|
B: {};
|
@@ -54,19 +64,24 @@ declare const _default: {
|
|
54
64
|
} & {
|
55
65
|
activator?: () => VNodeChild;
|
56
66
|
}>;
|
67
|
+
nested: {
|
68
|
+
type: import("vue").PropType<boolean>;
|
69
|
+
} & {
|
70
|
+
type: import("vue").PropType<boolean>;
|
71
|
+
};
|
57
72
|
"onUpdate:modelValue": {
|
58
|
-
type: import("vue").PropType<(value:
|
73
|
+
type: import("vue").PropType<(value: FillDefinition) => any>;
|
59
74
|
};
|
60
75
|
"v-model": {
|
61
|
-
type: import("vue").PropType<
|
76
|
+
type: import("vue").PropType<FillDefinition>;
|
62
77
|
required: false;
|
63
78
|
};
|
64
79
|
modelValue: {
|
65
|
-
type: import("vue").PropType<
|
80
|
+
type: import("vue").PropType<FillDefinition>;
|
66
81
|
required: false;
|
67
82
|
};
|
68
83
|
}>> & {
|
69
|
-
"onUpdate:modelValue"?: (value:
|
84
|
+
"onUpdate:modelValue"?: (value: FillDefinition) => any;
|
70
85
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
71
86
|
__isFragment?: never;
|
72
87
|
__isTeleport?: never;
|
@@ -77,33 +92,39 @@ declare const _default: {
|
|
77
92
|
} & {
|
78
93
|
activator?: () => VNodeChild;
|
79
94
|
}>;
|
95
|
+
nested: {
|
96
|
+
type: import("vue").PropType<boolean>;
|
97
|
+
} & {
|
98
|
+
type: import("vue").PropType<boolean>;
|
99
|
+
};
|
80
100
|
"onUpdate:modelValue": {
|
81
|
-
type: import("vue").PropType<(value:
|
101
|
+
type: import("vue").PropType<(value: FillDefinition) => any>;
|
82
102
|
};
|
83
103
|
"v-model": {
|
84
|
-
type: import("vue").PropType<
|
104
|
+
type: import("vue").PropType<FillDefinition>;
|
85
105
|
required: false;
|
86
106
|
};
|
87
107
|
modelValue: {
|
88
|
-
type: import("vue").PropType<
|
108
|
+
type: import("vue").PropType<FillDefinition>;
|
89
109
|
required: false;
|
90
110
|
};
|
91
111
|
}>> & {
|
92
|
-
"onUpdate:modelValue"?: (value:
|
112
|
+
"onUpdate:modelValue"?: (value: FillDefinition) => any;
|
93
113
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
94
|
-
"update:modelValue": (value:
|
114
|
+
"update:modelValue": (value: FillDefinition) => true;
|
95
115
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
96
116
|
propsDefinition: Omit<Readonly<{} & {
|
97
|
-
"v-model"?:
|
98
|
-
"onUpdate:modelValue"?: (value:
|
99
|
-
modelValue?:
|
117
|
+
"v-model"?: FillDefinition;
|
118
|
+
"onUpdate:modelValue"?: (value: FillDefinition) => any;
|
119
|
+
modelValue?: FillDefinition;
|
100
120
|
"v-slots"?: {
|
101
121
|
default?: import("../DefineVueTypings").Slot<any[]>;
|
102
122
|
} & {
|
103
123
|
activator?: () => VNodeChild;
|
104
124
|
};
|
125
|
+
nested?: boolean;
|
105
126
|
}>, "onUpdate:modelValue"> & {
|
106
|
-
"onUpdate:modelValue"?: (value:
|
127
|
+
"onUpdate:modelValue"?: (value: FillDefinition) => any;
|
107
128
|
};
|
108
129
|
};
|
109
130
|
export default _default;
|
@@ -1,27 +1,27 @@
|
|
1
|
-
import {
|
1
|
+
import { FillDefinition } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
"onUpdate:modelValue": {
|
5
|
-
type: import("vue").PropType<(value:
|
5
|
+
type: import("vue").PropType<(value: FillDefinition) => any>;
|
6
6
|
};
|
7
7
|
"v-model": {
|
8
|
-
type: import("vue").PropType<
|
8
|
+
type: import("vue").PropType<FillDefinition>;
|
9
9
|
required: false;
|
10
10
|
};
|
11
11
|
modelValue: {
|
12
|
-
type: import("vue").PropType<
|
12
|
+
type: import("vue").PropType<FillDefinition>;
|
13
13
|
required: false;
|
14
14
|
};
|
15
15
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
16
16
|
"onUpdate:modelValue": {
|
17
|
-
type: import("vue").PropType<(value:
|
17
|
+
type: import("vue").PropType<(value: FillDefinition) => any>;
|
18
18
|
};
|
19
19
|
"v-model": {
|
20
|
-
type: import("vue").PropType<
|
20
|
+
type: import("vue").PropType<FillDefinition>;
|
21
21
|
required: false;
|
22
22
|
};
|
23
23
|
modelValue: {
|
24
|
-
type: import("vue").PropType<
|
24
|
+
type: import("vue").PropType<FillDefinition>;
|
25
25
|
required: false;
|
26
26
|
};
|
27
27
|
}>>, {}, true, {}, {}, {
|
@@ -33,14 +33,14 @@ declare const _default: {
|
|
33
33
|
Defaults: {};
|
34
34
|
}, Readonly<import("vue").ExtractPropTypes<{
|
35
35
|
"onUpdate:modelValue": {
|
36
|
-
type: import("vue").PropType<(value:
|
36
|
+
type: import("vue").PropType<(value: FillDefinition) => any>;
|
37
37
|
};
|
38
38
|
"v-model": {
|
39
|
-
type: import("vue").PropType<
|
39
|
+
type: import("vue").PropType<FillDefinition>;
|
40
40
|
required: false;
|
41
41
|
};
|
42
42
|
modelValue: {
|
43
|
-
type: import("vue").PropType<
|
43
|
+
type: import("vue").PropType<FillDefinition>;
|
44
44
|
required: false;
|
45
45
|
};
|
46
46
|
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
@@ -49,21 +49,21 @@ declare const _default: {
|
|
49
49
|
__isSuspense?: never;
|
50
50
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
51
51
|
"onUpdate:modelValue": {
|
52
|
-
type: import("vue").PropType<(value:
|
52
|
+
type: import("vue").PropType<(value: FillDefinition) => any>;
|
53
53
|
};
|
54
54
|
"v-model": {
|
55
|
-
type: import("vue").PropType<
|
55
|
+
type: import("vue").PropType<FillDefinition>;
|
56
56
|
required: false;
|
57
57
|
};
|
58
58
|
modelValue: {
|
59
|
-
type: import("vue").PropType<
|
59
|
+
type: import("vue").PropType<FillDefinition>;
|
60
60
|
required: false;
|
61
61
|
};
|
62
62
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
63
63
|
propsDefinition: Omit<Readonly<{} & {
|
64
|
-
"v-model"?:
|
65
|
-
"onUpdate:modelValue"?: (value:
|
66
|
-
modelValue?:
|
64
|
+
"v-model"?: FillDefinition;
|
65
|
+
"onUpdate:modelValue"?: (value: FillDefinition) => any;
|
66
|
+
modelValue?: FillDefinition;
|
67
67
|
}>, never>;
|
68
68
|
};
|
69
69
|
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -263,8 +263,8 @@ declare const _default: {
|
|
263
263
|
itemRendering?: (element: VNodeChild, item: FilterPickerFilter) => VNodeChild;
|
264
264
|
};
|
265
265
|
sortable?: boolean;
|
266
|
-
singleSelect?: boolean;
|
267
266
|
"single-select"?: boolean;
|
267
|
+
singleSelect?: boolean;
|
268
268
|
}>, "onUpdate:modelValue" | "onItem:removed" | "onItem:sorted"> & {
|
269
269
|
"onUpdate:modelValue"?: (value: FilterPickerFilter[]) => any;
|
270
270
|
"onItem:removed"?: (value: FilterPickerFilter) => any;
|
@@ -1,35 +1,35 @@
|
|
1
|
-
import {
|
1
|
+
import { FillDefinition } from "../../../../../fx/models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
"onUpdate:modelValue": {
|
5
|
-
type: import("vue").PropType<(value:
|
5
|
+
type: import("vue").PropType<(value: FillDefinition) => any>;
|
6
6
|
};
|
7
7
|
"v-model": {
|
8
|
-
type: import("vue").PropType<
|
8
|
+
type: import("vue").PropType<FillDefinition>;
|
9
9
|
required: false;
|
10
10
|
};
|
11
11
|
modelValue: {
|
12
|
-
type: import("vue").PropType<
|
12
|
+
type: import("vue").PropType<FillDefinition>;
|
13
13
|
required: false;
|
14
14
|
};
|
15
15
|
}>> & {
|
16
|
-
"onUpdate:modelValue"?: (value:
|
16
|
+
"onUpdate:modelValue"?: (value: FillDefinition) => any;
|
17
17
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
18
|
-
"update:modelValue": (value:
|
18
|
+
"update:modelValue": (value: FillDefinition) => true;
|
19
19
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
20
20
|
"onUpdate:modelValue": {
|
21
|
-
type: import("vue").PropType<(value:
|
21
|
+
type: import("vue").PropType<(value: FillDefinition) => any>;
|
22
22
|
};
|
23
23
|
"v-model": {
|
24
|
-
type: import("vue").PropType<
|
24
|
+
type: import("vue").PropType<FillDefinition>;
|
25
25
|
required: false;
|
26
26
|
};
|
27
27
|
modelValue: {
|
28
|
-
type: import("vue").PropType<
|
28
|
+
type: import("vue").PropType<FillDefinition>;
|
29
29
|
required: false;
|
30
30
|
};
|
31
31
|
}>> & {
|
32
|
-
"onUpdate:modelValue"?: (value:
|
32
|
+
"onUpdate:modelValue"?: (value: FillDefinition) => any;
|
33
33
|
}, {}, true, {}, {}, {
|
34
34
|
P: {};
|
35
35
|
B: {};
|
@@ -39,45 +39,45 @@ declare const _default: {
|
|
39
39
|
Defaults: {};
|
40
40
|
}, Readonly<import("vue").ExtractPropTypes<{
|
41
41
|
"onUpdate:modelValue": {
|
42
|
-
type: import("vue").PropType<(value:
|
42
|
+
type: import("vue").PropType<(value: FillDefinition) => any>;
|
43
43
|
};
|
44
44
|
"v-model": {
|
45
|
-
type: import("vue").PropType<
|
45
|
+
type: import("vue").PropType<FillDefinition>;
|
46
46
|
required: false;
|
47
47
|
};
|
48
48
|
modelValue: {
|
49
|
-
type: import("vue").PropType<
|
49
|
+
type: import("vue").PropType<FillDefinition>;
|
50
50
|
required: false;
|
51
51
|
};
|
52
52
|
}>> & {
|
53
|
-
"onUpdate:modelValue"?: (value:
|
53
|
+
"onUpdate:modelValue"?: (value: FillDefinition) => any;
|
54
54
|
}, () => JSX.Element, {}, {}, {}, {}>;
|
55
55
|
__isFragment?: never;
|
56
56
|
__isTeleport?: never;
|
57
57
|
__isSuspense?: never;
|
58
58
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
59
59
|
"onUpdate:modelValue": {
|
60
|
-
type: import("vue").PropType<(value:
|
60
|
+
type: import("vue").PropType<(value: FillDefinition) => any>;
|
61
61
|
};
|
62
62
|
"v-model": {
|
63
|
-
type: import("vue").PropType<
|
63
|
+
type: import("vue").PropType<FillDefinition>;
|
64
64
|
required: false;
|
65
65
|
};
|
66
66
|
modelValue: {
|
67
|
-
type: import("vue").PropType<
|
67
|
+
type: import("vue").PropType<FillDefinition>;
|
68
68
|
required: false;
|
69
69
|
};
|
70
70
|
}>> & {
|
71
|
-
"onUpdate:modelValue"?: (value:
|
71
|
+
"onUpdate:modelValue"?: (value: FillDefinition) => any;
|
72
72
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
73
|
-
"update:modelValue": (value:
|
73
|
+
"update:modelValue": (value: FillDefinition) => true;
|
74
74
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
75
75
|
propsDefinition: Omit<Readonly<{} & {
|
76
|
-
"v-model"?:
|
77
|
-
"onUpdate:modelValue"?: (value:
|
78
|
-
modelValue?:
|
76
|
+
"v-model"?: FillDefinition;
|
77
|
+
"onUpdate:modelValue"?: (value: FillDefinition) => any;
|
78
|
+
modelValue?: FillDefinition;
|
79
79
|
}>, "onUpdate:modelValue"> & {
|
80
|
-
"onUpdate:modelValue"?: (value:
|
80
|
+
"onUpdate:modelValue"?: (value: FillDefinition) => any;
|
81
81
|
};
|
82
82
|
};
|
83
83
|
export default _default;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { MediaPickerImage } from "@omnia/fx-models";
|
1
|
+
import { MediaPickerImage, OSizeTypes } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
"img-class": {
|
@@ -38,12 +38,14 @@ declare const _default: {
|
|
38
38
|
};
|
39
39
|
avatar: {
|
40
40
|
type: import("vue").PropType<{
|
41
|
-
size:
|
41
|
+
size: OSizeTypes;
|
42
42
|
}>;
|
43
|
+
required: false;
|
43
44
|
} & {
|
44
45
|
type: import("vue").PropType<{
|
45
|
-
size:
|
46
|
+
size: OSizeTypes;
|
46
47
|
}>;
|
48
|
+
required: false;
|
47
49
|
};
|
48
50
|
"content-class": {
|
49
51
|
type: import("vue").PropType<string>;
|
@@ -117,12 +119,14 @@ declare const _default: {
|
|
117
119
|
};
|
118
120
|
avatar: {
|
119
121
|
type: import("vue").PropType<{
|
120
|
-
size:
|
122
|
+
size: OSizeTypes;
|
121
123
|
}>;
|
124
|
+
required: false;
|
122
125
|
} & {
|
123
126
|
type: import("vue").PropType<{
|
124
|
-
size:
|
127
|
+
size: OSizeTypes;
|
125
128
|
}>;
|
129
|
+
required: false;
|
126
130
|
};
|
127
131
|
"content-class": {
|
128
132
|
type: import("vue").PropType<string>;
|
@@ -203,12 +207,14 @@ declare const _default: {
|
|
203
207
|
};
|
204
208
|
avatar: {
|
205
209
|
type: import("vue").PropType<{
|
206
|
-
size:
|
210
|
+
size: OSizeTypes;
|
207
211
|
}>;
|
212
|
+
required: false;
|
208
213
|
} & {
|
209
214
|
type: import("vue").PropType<{
|
210
|
-
size:
|
215
|
+
size: OSizeTypes;
|
211
216
|
}>;
|
217
|
+
required: false;
|
212
218
|
};
|
213
219
|
"content-class": {
|
214
220
|
type: import("vue").PropType<string>;
|
@@ -286,12 +292,14 @@ declare const _default: {
|
|
286
292
|
};
|
287
293
|
avatar: {
|
288
294
|
type: import("vue").PropType<{
|
289
|
-
size:
|
295
|
+
size: OSizeTypes;
|
290
296
|
}>;
|
297
|
+
required: false;
|
291
298
|
} & {
|
292
299
|
type: import("vue").PropType<{
|
293
|
-
size:
|
300
|
+
size: OSizeTypes;
|
294
301
|
}>;
|
302
|
+
required: false;
|
295
303
|
};
|
296
304
|
"content-class": {
|
297
305
|
type: import("vue").PropType<string>;
|
@@ -333,7 +341,7 @@ declare const _default: {
|
|
333
341
|
contain?: boolean;
|
334
342
|
contentClass?: string;
|
335
343
|
avatar?: {
|
336
|
-
size:
|
344
|
+
size: OSizeTypes;
|
337
345
|
};
|
338
346
|
"content-class"?: string;
|
339
347
|
imagedata?: string;
|
@@ -167,10 +167,10 @@ declare const _default: {
|
|
167
167
|
color?: string;
|
168
168
|
class?: String | String[];
|
169
169
|
size?: "small" | "default" | "x-small" | "large" | "x-large";
|
170
|
+
gradient?: boolean;
|
170
171
|
toned?: boolean;
|
171
172
|
colorType?: "base" | "onBase" | "container" | "onContainer";
|
172
173
|
"color-type"?: "base" | "onBase" | "container" | "onContainer";
|
173
|
-
gradient?: boolean;
|
174
174
|
}>, never>;
|
175
175
|
};
|
176
176
|
export default _default;
|
@@ -263,6 +263,7 @@ declare const _default: {
|
|
263
263
|
label?: boolean;
|
264
264
|
size?: "small" | "default" | "x-small" | "large" | "x-large";
|
265
265
|
disabled?: boolean;
|
266
|
+
gradient?: boolean;
|
266
267
|
"v-slots"?: {
|
267
268
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
268
269
|
} & {
|
@@ -270,7 +271,6 @@ declare const _default: {
|
|
270
271
|
appendAvatar?: Func<[VNodeChild]>;
|
271
272
|
};
|
272
273
|
toned?: boolean;
|
273
|
-
gradient?: boolean;
|
274
274
|
closable?: boolean;
|
275
275
|
}>, "onClick:close"> & {
|
276
276
|
"onClick:close"?: (e: MouseEvent) => any;
|
@@ -7,9 +7,9 @@ declare const _default: {
|
|
7
7
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
8
8
|
} & VListItemSlots>;
|
9
9
|
variant: {
|
10
|
-
type: import("vue").PropType<"navigation" | "default" | "delete">;
|
10
|
+
type: import("vue").PropType<"navigation" | "default" | "delete" | "content">;
|
11
11
|
} & {
|
12
|
-
type: import("vue").PropType<"navigation" | "default" | "delete">;
|
12
|
+
type: import("vue").PropType<"navigation" | "default" | "delete" | "content">;
|
13
13
|
};
|
14
14
|
disabled: {
|
15
15
|
type: import("vue").PropType<boolean>;
|
@@ -54,9 +54,9 @@ declare const _default: {
|
|
54
54
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
55
55
|
} & VListItemSlots>;
|
56
56
|
variant: {
|
57
|
-
type: import("vue").PropType<"navigation" | "default" | "delete">;
|
57
|
+
type: import("vue").PropType<"navigation" | "default" | "delete" | "content">;
|
58
58
|
} & {
|
59
|
-
type: import("vue").PropType<"navigation" | "default" | "delete">;
|
59
|
+
type: import("vue").PropType<"navigation" | "default" | "delete" | "content">;
|
60
60
|
};
|
61
61
|
disabled: {
|
62
62
|
type: import("vue").PropType<boolean>;
|
@@ -109,9 +109,9 @@ declare const _default: {
|
|
109
109
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
110
110
|
} & VListItemSlots>;
|
111
111
|
variant: {
|
112
|
-
type: import("vue").PropType<"navigation" | "default" | "delete">;
|
112
|
+
type: import("vue").PropType<"navigation" | "default" | "delete" | "content">;
|
113
113
|
} & {
|
114
|
-
type: import("vue").PropType<"navigation" | "default" | "delete">;
|
114
|
+
type: import("vue").PropType<"navigation" | "default" | "delete" | "content">;
|
115
115
|
};
|
116
116
|
disabled: {
|
117
117
|
type: import("vue").PropType<boolean>;
|
@@ -161,9 +161,9 @@ declare const _default: {
|
|
161
161
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
162
162
|
} & VListItemSlots>;
|
163
163
|
variant: {
|
164
|
-
type: import("vue").PropType<"navigation" | "default" | "delete">;
|
164
|
+
type: import("vue").PropType<"navigation" | "default" | "delete" | "content">;
|
165
165
|
} & {
|
166
|
-
type: import("vue").PropType<"navigation" | "default" | "delete">;
|
166
|
+
type: import("vue").PropType<"navigation" | "default" | "delete" | "content">;
|
167
167
|
};
|
168
168
|
disabled: {
|
169
169
|
type: import("vue").PropType<boolean>;
|
@@ -221,7 +221,7 @@ declare const _default: {
|
|
221
221
|
"v-slots"?: {
|
222
222
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
223
223
|
} & VListItemSlots;
|
224
|
-
variant?: "navigation" | "default" | "delete";
|
224
|
+
variant?: "navigation" | "default" | "delete" | "content";
|
225
225
|
subtitle?: VNodeChild;
|
226
226
|
}>, "onClick:delete" | "onClick:navigate"> & {
|
227
227
|
"onClick:delete"?: (value: any) => any;
|
@@ -1,8 +1,16 @@
|
|
1
|
-
import { ColorDefinition } from "
|
1
|
+
import { ColorDefinition, SpacingSettings, SpacingType } from "@omnia/fx-models";
|
2
|
+
type PaddingSettings = {
|
3
|
+
padding: SpacingSettings | SpacingType;
|
4
|
+
indentation: number | SpacingType;
|
5
|
+
level: number;
|
6
|
+
};
|
2
7
|
export declare const TreeViewStyles: {
|
3
8
|
containerWrapper: (color: ColorDefinition, selected: boolean) => string;
|
4
|
-
titleWrapper: (
|
9
|
+
titleWrapper: (color: ColorDefinition, selected: boolean) => string;
|
5
10
|
expandedAnimation: string;
|
6
11
|
expandedIcon: string;
|
7
12
|
collapsedIcon: string;
|
13
|
+
defaultPadding: (level: number) => string;
|
14
|
+
customPadding: ({ padding, indentation, level }: PaddingSettings) => string;
|
8
15
|
};
|
16
|
+
export {};
|