@omnia/fx 8.0.38-vnext → 8.0.39-vnext
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/stores/oxide/ComponentHostStore.d.ts +22 -14
- package/internal-do-not-import-from-here/ux/docs/chrome/SampleViewer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/documenticon/DocumentIcon.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/documenticon/IDocumentIcon.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.css.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +15 -16
- package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +35 -35
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/{componenthostprovider/ComponentHostProvider.d.ts → hostprovider/HostProvider.d.ts} +44 -32
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +25 -25
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +0 -11
- package/internal-do-not-import-from-here/wctypings.d.ts +2 -2
- package/package.json +2 -2
@@ -5,6 +5,7 @@ declare const _default: {
|
|
5
5
|
$props: {
|
6
6
|
style?: unknown;
|
7
7
|
class?: unknown;
|
8
|
+
readonly host?: "admin" | "editor" | "docs";
|
8
9
|
key?: string | number | symbol;
|
9
10
|
ref?: import("vue").VNodeRef;
|
10
11
|
ref_for?: boolean;
|
@@ -48,10 +49,9 @@ declare const _default: {
|
|
48
49
|
[key: string]: any;
|
49
50
|
}>) => void)[];
|
50
51
|
readonly force?: boolean;
|
51
|
-
readonly
|
52
|
-
readonly
|
53
|
-
readonly "host
|
54
|
-
readonly "container-variant"?: string;
|
52
|
+
readonly componentHost?: "dialog" | "drawer" | "expansion-panel" | "blade" | "app";
|
53
|
+
readonly variant?: "footer" | "header" | "content" | "navigation" | "settings";
|
54
|
+
readonly "component-host"?: "dialog" | "drawer" | "expansion-panel" | "blade" | "app";
|
55
55
|
};
|
56
56
|
$attrs: {
|
57
57
|
[x: string]: unknown;
|
@@ -72,17 +72,21 @@ declare const _default: {
|
|
72
72
|
} & {
|
73
73
|
type: import("vue").PropType<boolean>;
|
74
74
|
};
|
75
|
-
|
76
|
-
type: import("vue").PropType<
|
75
|
+
variant: {
|
76
|
+
type: import("vue").PropType<"footer" | "header" | "content" | "navigation" | "settings">;
|
77
|
+
} & {
|
78
|
+
type: import("vue").PropType<"footer" | "header" | "content" | "navigation" | "settings">;
|
77
79
|
};
|
78
|
-
|
79
|
-
type: import("vue").PropType<
|
80
|
+
"component-host": {
|
81
|
+
type: import("vue").PropType<"dialog" | "drawer" | "expansion-panel" | "blade" | "app">;
|
80
82
|
};
|
81
|
-
|
82
|
-
type: import("vue").PropType<
|
83
|
+
componentHost: {
|
84
|
+
type: import("vue").PropType<"dialog" | "drawer" | "expansion-panel" | "blade" | "app">;
|
83
85
|
};
|
84
|
-
|
85
|
-
type: import("vue").PropType<
|
86
|
+
host: {
|
87
|
+
type: import("vue").PropType<"admin" | "editor" | "docs">;
|
88
|
+
} & {
|
89
|
+
type: import("vue").PropType<"admin" | "editor" | "docs">;
|
86
90
|
};
|
87
91
|
}>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
88
92
|
[key: string]: any;
|
@@ -112,17 +116,21 @@ declare const _default: {
|
|
112
116
|
} & {
|
113
117
|
type: import("vue").PropType<boolean>;
|
114
118
|
};
|
115
|
-
|
116
|
-
type: import("vue").PropType<
|
119
|
+
variant: {
|
120
|
+
type: import("vue").PropType<"footer" | "header" | "content" | "navigation" | "settings">;
|
121
|
+
} & {
|
122
|
+
type: import("vue").PropType<"footer" | "header" | "content" | "navigation" | "settings">;
|
117
123
|
};
|
118
|
-
|
119
|
-
type: import("vue").PropType<
|
124
|
+
"component-host": {
|
125
|
+
type: import("vue").PropType<"dialog" | "drawer" | "expansion-panel" | "blade" | "app">;
|
120
126
|
};
|
121
|
-
|
122
|
-
type: import("vue").PropType<
|
127
|
+
componentHost: {
|
128
|
+
type: import("vue").PropType<"dialog" | "drawer" | "expansion-panel" | "blade" | "app">;
|
123
129
|
};
|
124
|
-
|
125
|
-
type: import("vue").PropType<
|
130
|
+
host: {
|
131
|
+
type: import("vue").PropType<"admin" | "editor" | "docs">;
|
132
|
+
} & {
|
133
|
+
type: import("vue").PropType<"admin" | "editor" | "docs">;
|
126
134
|
};
|
127
135
|
}>> & import("vue").ShallowUnwrapRef<() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
128
136
|
[key: string]: any;
|
@@ -136,27 +144,31 @@ declare const _default: {
|
|
136
144
|
} & {
|
137
145
|
type: import("vue").PropType<boolean>;
|
138
146
|
};
|
139
|
-
|
140
|
-
type: import("vue").PropType<
|
147
|
+
variant: {
|
148
|
+
type: import("vue").PropType<"footer" | "header" | "content" | "navigation" | "settings">;
|
149
|
+
} & {
|
150
|
+
type: import("vue").PropType<"footer" | "header" | "content" | "navigation" | "settings">;
|
141
151
|
};
|
142
|
-
|
143
|
-
type: import("vue").PropType<
|
152
|
+
"component-host": {
|
153
|
+
type: import("vue").PropType<"dialog" | "drawer" | "expansion-panel" | "blade" | "app">;
|
144
154
|
};
|
145
|
-
|
146
|
-
type: import("vue").PropType<
|
155
|
+
componentHost: {
|
156
|
+
type: import("vue").PropType<"dialog" | "drawer" | "expansion-panel" | "blade" | "app">;
|
147
157
|
};
|
148
|
-
|
149
|
-
type: import("vue").PropType<
|
158
|
+
host: {
|
159
|
+
type: import("vue").PropType<"admin" | "editor" | "docs">;
|
160
|
+
} & {
|
161
|
+
type: import("vue").PropType<"admin" | "editor" | "docs">;
|
150
162
|
};
|
151
163
|
}>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
152
164
|
[key: string]: any;
|
153
165
|
}>[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
154
166
|
propsDefinition: Omit<Readonly<{} & {
|
167
|
+
host?: "admin" | "editor" | "docs";
|
155
168
|
force?: boolean;
|
156
|
-
|
157
|
-
|
158
|
-
"host
|
159
|
-
"container-variant"?: string;
|
169
|
+
componentHost?: "dialog" | "drawer" | "expansion-panel" | "blade" | "app";
|
170
|
+
variant?: "footer" | "header" | "content" | "navigation" | "settings";
|
171
|
+
"component-host"?: "dialog" | "drawer" | "expansion-panel" | "blade" | "app";
|
160
172
|
}>, never>;
|
161
173
|
};
|
162
174
|
export default _default;
|
@@ -12,7 +12,7 @@ declare const _default: {
|
|
12
12
|
style?: unknown;
|
13
13
|
class?: String | String[];
|
14
14
|
key?: string | number | symbol;
|
15
|
-
readonly size?:
|
15
|
+
readonly size?: "small" | "default" | "x-small";
|
16
16
|
readonly icon?: IIcon;
|
17
17
|
ref?: import("vue").VNodeRef;
|
18
18
|
ref_for?: boolean;
|
@@ -55,7 +55,7 @@ declare const _default: {
|
|
55
55
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
56
56
|
[key: string]: any;
|
57
57
|
}>) => void)[];
|
58
|
-
readonly preset?:
|
58
|
+
readonly preset?: "code" | "copy" | "delete" | "add" | "edit" | "remove" | "drag-handle" | "expand";
|
59
59
|
readonly toned?: boolean;
|
60
60
|
};
|
61
61
|
$attrs: {
|
@@ -73,10 +73,10 @@ declare const _default: {
|
|
73
73
|
$el: any;
|
74
74
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
75
75
|
preset: {
|
76
|
-
type: import("vue").PropType<
|
76
|
+
type: import("vue").PropType<"code" | "copy" | "delete" | "add" | "edit" | "remove" | "drag-handle" | "expand">;
|
77
77
|
};
|
78
78
|
size: {
|
79
|
-
type: import("vue").PropType<
|
79
|
+
type: import("vue").PropType<"small" | "default" | "x-small">;
|
80
80
|
};
|
81
81
|
toned: {
|
82
82
|
type: import("vue").PropType<boolean>;
|
@@ -123,10 +123,10 @@ declare const _default: {
|
|
123
123
|
$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;
|
124
124
|
} & Readonly<import("vue").ExtractPropTypes<{
|
125
125
|
preset: {
|
126
|
-
type: import("vue").PropType<
|
126
|
+
type: import("vue").PropType<"code" | "copy" | "delete" | "add" | "edit" | "remove" | "drag-handle" | "expand">;
|
127
127
|
};
|
128
128
|
size: {
|
129
|
-
type: import("vue").PropType<
|
129
|
+
type: import("vue").PropType<"small" | "default" | "x-small">;
|
130
130
|
};
|
131
131
|
toned: {
|
132
132
|
type: import("vue").PropType<boolean>;
|
@@ -151,10 +151,10 @@ declare const _default: {
|
|
151
151
|
__isSuspense?: never;
|
152
152
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
153
153
|
preset: {
|
154
|
-
type: import("vue").PropType<
|
154
|
+
type: import("vue").PropType<"code" | "copy" | "delete" | "add" | "edit" | "remove" | "drag-handle" | "expand">;
|
155
155
|
};
|
156
156
|
size: {
|
157
|
-
type: import("vue").PropType<
|
157
|
+
type: import("vue").PropType<"small" | "default" | "x-small">;
|
158
158
|
};
|
159
159
|
toned: {
|
160
160
|
type: import("vue").PropType<boolean>;
|
@@ -188,9 +188,9 @@ declare const _default: {
|
|
188
188
|
colors?: any;
|
189
189
|
} & {
|
190
190
|
class?: String | String[];
|
191
|
-
size?:
|
191
|
+
size?: "small" | "default" | "x-small";
|
192
192
|
icon?: IIcon;
|
193
|
-
preset?:
|
193
|
+
preset?: "code" | "copy" | "delete" | "add" | "edit" | "remove" | "drag-handle" | "expand";
|
194
194
|
toned?: boolean;
|
195
195
|
}>, never>;
|
196
196
|
};
|
@@ -6,7 +6,7 @@ declare const _default: {
|
|
6
6
|
style?: unknown;
|
7
7
|
class?: unknown;
|
8
8
|
key?: string | number | symbol;
|
9
|
-
readonly aspectRatio?:
|
9
|
+
readonly aspectRatio?: "default" | "landscape";
|
10
10
|
ref?: import("vue").VNodeRef;
|
11
11
|
ref_for?: boolean;
|
12
12
|
ref_key?: string;
|
@@ -68,7 +68,7 @@ declare const _default: {
|
|
68
68
|
type: import("vue").PropType<string>;
|
69
69
|
};
|
70
70
|
aspectRatio: {
|
71
|
-
type: import("vue").PropType<
|
71
|
+
type: import("vue").PropType<"default" | "landscape">;
|
72
72
|
};
|
73
73
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
74
74
|
beforeCreate?: (() => void) | (() => void)[];
|
@@ -95,7 +95,7 @@ declare const _default: {
|
|
95
95
|
type: import("vue").PropType<string>;
|
96
96
|
};
|
97
97
|
aspectRatio: {
|
98
|
-
type: import("vue").PropType<
|
98
|
+
type: import("vue").PropType<"default" | "landscape">;
|
99
99
|
};
|
100
100
|
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
101
101
|
__isFragment?: never;
|
@@ -106,11 +106,11 @@ declare const _default: {
|
|
106
106
|
type: import("vue").PropType<string>;
|
107
107
|
};
|
108
108
|
aspectRatio: {
|
109
|
-
type: import("vue").PropType<
|
109
|
+
type: import("vue").PropType<"default" | "landscape">;
|
110
110
|
};
|
111
111
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
112
112
|
propsDefinition: Omit<Readonly<{} & {
|
113
|
-
aspectRatio?:
|
113
|
+
aspectRatio?: "default" | "landscape";
|
114
114
|
src?: string;
|
115
115
|
}>, never>;
|
116
116
|
};
|
@@ -53,9 +53,9 @@ declare const _default: {
|
|
53
53
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
54
54
|
[key: string]: any;
|
55
55
|
}>) => void)[];
|
56
|
-
readonly variant?:
|
56
|
+
readonly variant?: "default" | "navigation";
|
57
57
|
readonly toned?: boolean;
|
58
|
-
readonly lines?:
|
58
|
+
readonly lines?: false | "one" | "two" | "three";
|
59
59
|
};
|
60
60
|
$attrs: {
|
61
61
|
[x: string]: unknown;
|
@@ -72,7 +72,7 @@ declare const _default: {
|
|
72
72
|
$el: any;
|
73
73
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
74
74
|
variant: {
|
75
|
-
type: import("vue").PropType<
|
75
|
+
type: import("vue").PropType<"default" | "navigation">;
|
76
76
|
};
|
77
77
|
toned: {
|
78
78
|
type: import("vue").PropType<boolean>;
|
@@ -83,7 +83,7 @@ declare const _default: {
|
|
83
83
|
type: import("vue").PropType<boolean>;
|
84
84
|
};
|
85
85
|
lines: {
|
86
|
-
type: import("vue").PropType<
|
86
|
+
type: import("vue").PropType<false | "one" | "two" | "three">;
|
87
87
|
};
|
88
88
|
class: {
|
89
89
|
type: import("vue").PropType<String | String[]>;
|
@@ -122,7 +122,7 @@ declare const _default: {
|
|
122
122
|
$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;
|
123
123
|
} & Readonly<import("vue").ExtractPropTypes<{
|
124
124
|
variant: {
|
125
|
-
type: import("vue").PropType<
|
125
|
+
type: import("vue").PropType<"default" | "navigation">;
|
126
126
|
};
|
127
127
|
toned: {
|
128
128
|
type: import("vue").PropType<boolean>;
|
@@ -133,7 +133,7 @@ declare const _default: {
|
|
133
133
|
type: import("vue").PropType<boolean>;
|
134
134
|
};
|
135
135
|
lines: {
|
136
|
-
type: import("vue").PropType<
|
136
|
+
type: import("vue").PropType<false | "one" | "two" | "three">;
|
137
137
|
};
|
138
138
|
class: {
|
139
139
|
type: import("vue").PropType<String | String[]>;
|
@@ -150,7 +150,7 @@ declare const _default: {
|
|
150
150
|
__isSuspense?: never;
|
151
151
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
152
152
|
variant: {
|
153
|
-
type: import("vue").PropType<
|
153
|
+
type: import("vue").PropType<"default" | "navigation">;
|
154
154
|
};
|
155
155
|
toned: {
|
156
156
|
type: import("vue").PropType<boolean>;
|
@@ -161,7 +161,7 @@ declare const _default: {
|
|
161
161
|
type: import("vue").PropType<boolean>;
|
162
162
|
};
|
163
163
|
lines: {
|
164
|
-
type: import("vue").PropType<
|
164
|
+
type: import("vue").PropType<false | "one" | "two" | "three">;
|
165
165
|
};
|
166
166
|
class: {
|
167
167
|
type: import("vue").PropType<String | String[]>;
|
@@ -188,9 +188,9 @@ declare const _default: {
|
|
188
188
|
} & {
|
189
189
|
nav?: boolean;
|
190
190
|
class?: String | String[];
|
191
|
-
variant?:
|
191
|
+
variant?: "default" | "navigation";
|
192
192
|
toned?: boolean;
|
193
|
-
lines?:
|
193
|
+
lines?: false | "one" | "two" | "three";
|
194
194
|
}>, never>;
|
195
195
|
};
|
196
196
|
export default _default;
|
@@ -57,7 +57,7 @@ declare const _default: {
|
|
57
57
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
58
58
|
[key: string]: any;
|
59
59
|
}>) => void)[];
|
60
|
-
readonly variant?:
|
60
|
+
readonly variant?: "default" | "delete";
|
61
61
|
"onClick:delete"?: () => any;
|
62
62
|
};
|
63
63
|
$attrs: {
|
@@ -75,7 +75,7 @@ declare const _default: {
|
|
75
75
|
$el: any;
|
76
76
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
77
77
|
variant: {
|
78
|
-
type: import("vue").PropType<
|
78
|
+
type: import("vue").PropType<"default" | "delete">;
|
79
79
|
};
|
80
80
|
disabled: {
|
81
81
|
type: import("vue").PropType<boolean>;
|
@@ -130,7 +130,7 @@ declare const _default: {
|
|
130
130
|
$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;
|
131
131
|
} & Readonly<import("vue").ExtractPropTypes<{
|
132
132
|
variant: {
|
133
|
-
type: import("vue").PropType<
|
133
|
+
type: import("vue").PropType<"default" | "delete">;
|
134
134
|
};
|
135
135
|
disabled: {
|
136
136
|
type: import("vue").PropType<boolean>;
|
@@ -161,7 +161,7 @@ declare const _default: {
|
|
161
161
|
__isSuspense?: never;
|
162
162
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
163
163
|
variant: {
|
164
|
-
type: import("vue").PropType<
|
164
|
+
type: import("vue").PropType<"default" | "delete">;
|
165
165
|
};
|
166
166
|
disabled: {
|
167
167
|
type: import("vue").PropType<boolean>;
|
@@ -207,7 +207,7 @@ declare const _default: {
|
|
207
207
|
icon?: ButtonIconOptions;
|
208
208
|
active?: boolean;
|
209
209
|
disabled?: boolean;
|
210
|
-
variant?:
|
210
|
+
variant?: "default" | "delete";
|
211
211
|
}>, "onClick:delete"> & {
|
212
212
|
"onClick:delete"?: () => any;
|
213
213
|
};
|
@@ -122,7 +122,7 @@ declare const _default: {
|
|
122
122
|
} & {
|
123
123
|
activator?: () => VNodeChild;
|
124
124
|
};
|
125
|
-
readonly location?:
|
125
|
+
readonly location?: "left" | "center" | "right" | "bottom" | "top" | "end" | "start" | "center center" | "bottom end" | "bottom start" | "top center" | "top end" | "top start" | "end bottom" | "end top" | "start bottom" | "start top";
|
126
126
|
readonly closeDelay?: string | number;
|
127
127
|
readonly openOnHover?: boolean;
|
128
128
|
};
|
@@ -149,7 +149,7 @@ declare const _default: {
|
|
149
149
|
type: import("vue").PropType<boolean>;
|
150
150
|
};
|
151
151
|
location: {
|
152
|
-
type: import("vue").PropType<
|
152
|
+
type: import("vue").PropType<"left" | "center" | "right" | "bottom" | "top" | "end" | "start" | "center center" | "bottom end" | "bottom start" | "top center" | "top end" | "top start" | "end bottom" | "end top" | "start bottom" | "start top">;
|
153
153
|
required: false;
|
154
154
|
};
|
155
155
|
closeDelay: {
|
@@ -266,7 +266,7 @@ declare const _default: {
|
|
266
266
|
type: import("vue").PropType<boolean>;
|
267
267
|
};
|
268
268
|
location: {
|
269
|
-
type: import("vue").PropType<
|
269
|
+
type: import("vue").PropType<"left" | "center" | "right" | "bottom" | "top" | "end" | "start" | "center center" | "bottom end" | "bottom start" | "top center" | "top end" | "top start" | "end bottom" | "end top" | "start bottom" | "start top">;
|
270
270
|
required: false;
|
271
271
|
};
|
272
272
|
closeDelay: {
|
@@ -361,7 +361,7 @@ declare const _default: {
|
|
361
361
|
type: import("vue").PropType<boolean>;
|
362
362
|
};
|
363
363
|
location: {
|
364
|
-
type: import("vue").PropType<
|
364
|
+
type: import("vue").PropType<"left" | "center" | "right" | "bottom" | "top" | "end" | "start" | "center center" | "bottom end" | "bottom start" | "top center" | "top end" | "top start" | "end bottom" | "end top" | "start bottom" | "start top">;
|
365
365
|
required: false;
|
366
366
|
};
|
367
367
|
closeDelay: {
|
@@ -526,7 +526,7 @@ declare const _default: {
|
|
526
526
|
} & {
|
527
527
|
activator?: () => VNodeChild;
|
528
528
|
};
|
529
|
-
location?:
|
529
|
+
location?: "left" | "center" | "right" | "bottom" | "top" | "end" | "start" | "center center" | "bottom end" | "bottom start" | "top center" | "top end" | "top start" | "end bottom" | "end top" | "start bottom" | "start top";
|
530
530
|
closeDelay?: string | number;
|
531
531
|
openOnHover?: boolean;
|
532
532
|
}>, never>;
|
@@ -55,8 +55,8 @@ declare const _default: {
|
|
55
55
|
readonly "onUpdate:modelValue"?: (value: boolean) => any;
|
56
56
|
readonly "v-model"?: boolean;
|
57
57
|
readonly modelValue?: boolean;
|
58
|
-
readonly variant?:
|
59
|
-
readonly location?:
|
58
|
+
readonly variant?: "default" | "dialog" | "editor" | "app";
|
59
|
+
readonly location?: "left" | "right" | "bottom" | "top" | "end" | "start";
|
60
60
|
readonly overrides?: object;
|
61
61
|
readonly toned?: boolean;
|
62
62
|
};
|
@@ -75,7 +75,7 @@ declare const _default: {
|
|
75
75
|
$el: any;
|
76
76
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
77
77
|
variant: {
|
78
|
-
type: import("vue").PropType<
|
78
|
+
type: import("vue").PropType<"default" | "dialog" | "editor" | "app">;
|
79
79
|
};
|
80
80
|
overrides: {
|
81
81
|
type: import("vue").PropType<object>;
|
@@ -86,7 +86,7 @@ declare const _default: {
|
|
86
86
|
type: import("vue").PropType<boolean>;
|
87
87
|
};
|
88
88
|
location: {
|
89
|
-
type: import("vue").PropType<
|
89
|
+
type: import("vue").PropType<"left" | "right" | "bottom" | "top" | "end" | "start">;
|
90
90
|
};
|
91
91
|
"onUpdate:modelValue": {
|
92
92
|
type: import("vue").PropType<(value: boolean) => any>;
|
@@ -136,7 +136,7 @@ declare const _default: {
|
|
136
136
|
$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;
|
137
137
|
} & Readonly<import("vue").ExtractPropTypes<{
|
138
138
|
variant: {
|
139
|
-
type: import("vue").PropType<
|
139
|
+
type: import("vue").PropType<"default" | "dialog" | "editor" | "app">;
|
140
140
|
};
|
141
141
|
overrides: {
|
142
142
|
type: import("vue").PropType<object>;
|
@@ -147,7 +147,7 @@ declare const _default: {
|
|
147
147
|
type: import("vue").PropType<boolean>;
|
148
148
|
};
|
149
149
|
location: {
|
150
|
-
type: import("vue").PropType<
|
150
|
+
type: import("vue").PropType<"left" | "right" | "bottom" | "top" | "end" | "start">;
|
151
151
|
};
|
152
152
|
"onUpdate:modelValue": {
|
153
153
|
type: import("vue").PropType<(value: boolean) => any>;
|
@@ -175,7 +175,7 @@ declare const _default: {
|
|
175
175
|
__isSuspense?: never;
|
176
176
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
177
177
|
variant: {
|
178
|
-
type: import("vue").PropType<
|
178
|
+
type: import("vue").PropType<"default" | "dialog" | "editor" | "app">;
|
179
179
|
};
|
180
180
|
overrides: {
|
181
181
|
type: import("vue").PropType<object>;
|
@@ -186,7 +186,7 @@ declare const _default: {
|
|
186
186
|
type: import("vue").PropType<boolean>;
|
187
187
|
};
|
188
188
|
location: {
|
189
|
-
type: import("vue").PropType<
|
189
|
+
type: import("vue").PropType<"left" | "right" | "bottom" | "top" | "end" | "start">;
|
190
190
|
};
|
191
191
|
"onUpdate:modelValue": {
|
192
192
|
type: import("vue").PropType<(value: boolean) => any>;
|
@@ -226,8 +226,8 @@ declare const _default: {
|
|
226
226
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
227
227
|
"v-model"?: boolean;
|
228
228
|
modelValue?: boolean;
|
229
|
-
variant?:
|
230
|
-
location?:
|
229
|
+
variant?: "default" | "dialog" | "editor" | "app";
|
230
|
+
location?: "left" | "right" | "bottom" | "top" | "end" | "start";
|
231
231
|
overrides?: object;
|
232
232
|
toned?: boolean;
|
233
233
|
}>, never>;
|
@@ -13,7 +13,7 @@ declare const _default: {
|
|
13
13
|
style?: unknown;
|
14
14
|
class?: String | String[];
|
15
15
|
key?: string | number | symbol;
|
16
|
-
readonly direction?:
|
16
|
+
readonly direction?: "column" | "row";
|
17
17
|
readonly hide?: boolean;
|
18
18
|
readonly wrap?: boolean;
|
19
19
|
readonly filled?: boolean;
|
@@ -58,13 +58,13 @@ declare const _default: {
|
|
58
58
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
59
59
|
[key: string]: any;
|
60
60
|
}>) => void)[];
|
61
|
-
readonly variant?:
|
61
|
+
readonly variant?: "section" | "default" | "dialog" | "tab" | "toolbar" | "navigation" | "settings" | "text-area";
|
62
62
|
readonly grouped?: boolean;
|
63
63
|
readonly toned?: boolean;
|
64
|
-
readonly divider?:
|
65
|
-
readonly alignY?:
|
64
|
+
readonly divider?: "bottom" | "top" | "top bottom";
|
65
|
+
readonly alignY?: "center" | "bottom" | "top";
|
66
66
|
readonly grow?: boolean;
|
67
|
-
readonly alignX?:
|
67
|
+
readonly alignX?: "left" | "center" | "right";
|
68
68
|
readonly scrollOffset?: number;
|
69
69
|
};
|
70
70
|
$attrs: {
|
@@ -85,7 +85,7 @@ declare const _default: {
|
|
85
85
|
type: import("vue").PropType<number>;
|
86
86
|
};
|
87
87
|
alignX: {
|
88
|
-
type: import("vue").PropType<
|
88
|
+
type: import("vue").PropType<"left" | "center" | "right">;
|
89
89
|
};
|
90
90
|
toned: {
|
91
91
|
type: import("vue").PropType<boolean>;
|
@@ -105,19 +105,19 @@ declare const _default: {
|
|
105
105
|
type: import("vue").PropType<boolean>;
|
106
106
|
};
|
107
107
|
direction: {
|
108
|
-
type: import("vue").PropType<
|
108
|
+
type: import("vue").PropType<"column" | "row">;
|
109
109
|
};
|
110
110
|
alignY: {
|
111
|
-
type: import("vue").PropType<
|
111
|
+
type: import("vue").PropType<"center" | "bottom" | "top">;
|
112
112
|
};
|
113
113
|
divider: {
|
114
|
-
type: import("vue").PropType<
|
114
|
+
type: import("vue").PropType<"bottom" | "top" | "top bottom">;
|
115
115
|
};
|
116
116
|
hide: {
|
117
117
|
type: import("vue").PropType<boolean>;
|
118
118
|
};
|
119
119
|
variant: {
|
120
|
-
type: import("vue").PropType<
|
120
|
+
type: import("vue").PropType<"section" | "default" | "dialog" | "tab" | "toolbar" | "navigation" | "settings" | "text-area">;
|
121
121
|
};
|
122
122
|
title: {
|
123
123
|
type: import("vue").PropType<string>;
|
@@ -162,7 +162,7 @@ declare const _default: {
|
|
162
162
|
type: import("vue").PropType<number>;
|
163
163
|
};
|
164
164
|
alignX: {
|
165
|
-
type: import("vue").PropType<
|
165
|
+
type: import("vue").PropType<"left" | "center" | "right">;
|
166
166
|
};
|
167
167
|
toned: {
|
168
168
|
type: import("vue").PropType<boolean>;
|
@@ -182,19 +182,19 @@ declare const _default: {
|
|
182
182
|
type: import("vue").PropType<boolean>;
|
183
183
|
};
|
184
184
|
direction: {
|
185
|
-
type: import("vue").PropType<
|
185
|
+
type: import("vue").PropType<"column" | "row">;
|
186
186
|
};
|
187
187
|
alignY: {
|
188
|
-
type: import("vue").PropType<
|
188
|
+
type: import("vue").PropType<"center" | "bottom" | "top">;
|
189
189
|
};
|
190
190
|
divider: {
|
191
|
-
type: import("vue").PropType<
|
191
|
+
type: import("vue").PropType<"bottom" | "top" | "top bottom">;
|
192
192
|
};
|
193
193
|
hide: {
|
194
194
|
type: import("vue").PropType<boolean>;
|
195
195
|
};
|
196
196
|
variant: {
|
197
|
-
type: import("vue").PropType<
|
197
|
+
type: import("vue").PropType<"section" | "default" | "dialog" | "tab" | "toolbar" | "navigation" | "settings" | "text-area">;
|
198
198
|
};
|
199
199
|
title: {
|
200
200
|
type: import("vue").PropType<string>;
|
@@ -217,7 +217,7 @@ declare const _default: {
|
|
217
217
|
type: import("vue").PropType<number>;
|
218
218
|
};
|
219
219
|
alignX: {
|
220
|
-
type: import("vue").PropType<
|
220
|
+
type: import("vue").PropType<"left" | "center" | "right">;
|
221
221
|
};
|
222
222
|
toned: {
|
223
223
|
type: import("vue").PropType<boolean>;
|
@@ -237,19 +237,19 @@ declare const _default: {
|
|
237
237
|
type: import("vue").PropType<boolean>;
|
238
238
|
};
|
239
239
|
direction: {
|
240
|
-
type: import("vue").PropType<
|
240
|
+
type: import("vue").PropType<"column" | "row">;
|
241
241
|
};
|
242
242
|
alignY: {
|
243
|
-
type: import("vue").PropType<
|
243
|
+
type: import("vue").PropType<"center" | "bottom" | "top">;
|
244
244
|
};
|
245
245
|
divider: {
|
246
|
-
type: import("vue").PropType<
|
246
|
+
type: import("vue").PropType<"bottom" | "top" | "top bottom">;
|
247
247
|
};
|
248
248
|
hide: {
|
249
249
|
type: import("vue").PropType<boolean>;
|
250
250
|
};
|
251
251
|
variant: {
|
252
|
-
type: import("vue").PropType<
|
252
|
+
type: import("vue").PropType<"section" | "default" | "dialog" | "tab" | "toolbar" | "navigation" | "settings" | "text-area">;
|
253
253
|
};
|
254
254
|
title: {
|
255
255
|
type: import("vue").PropType<string>;
|
@@ -279,17 +279,17 @@ declare const _default: {
|
|
279
279
|
} & {
|
280
280
|
title?: string;
|
281
281
|
class?: String | String[];
|
282
|
-
direction?:
|
282
|
+
direction?: "column" | "row";
|
283
283
|
hide?: boolean;
|
284
284
|
wrap?: boolean;
|
285
285
|
filled?: boolean;
|
286
|
-
variant?:
|
286
|
+
variant?: "section" | "default" | "dialog" | "tab" | "toolbar" | "navigation" | "settings" | "text-area";
|
287
287
|
grouped?: boolean;
|
288
288
|
toned?: boolean;
|
289
|
-
divider?:
|
290
|
-
alignY?:
|
289
|
+
divider?: "bottom" | "top" | "top bottom";
|
290
|
+
alignY?: "center" | "bottom" | "top";
|
291
291
|
grow?: boolean;
|
292
|
-
alignX?:
|
292
|
+
alignX?: "left" | "center" | "right";
|
293
293
|
scrollOffset?: number;
|
294
294
|
}>, never>;
|
295
295
|
};
|