@bridge-ui/vue 0.0.4 → 0.0.6
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/dist/Adapters/I18n/index.d.ts +1 -0
- package/dist/Adapters/I18n/index.js +2 -0
- package/dist/Adapters/I18n/useI18nAdapter.d.ts +12 -0
- package/dist/Adapters/I18n/useI18nAdapter.js +13 -0
- package/dist/Adapters/Icon/iconSource.types.d.ts +11 -0
- package/dist/Adapters/Icon/index.d.ts +2 -0
- package/dist/Adapters/Icon/index.js +2 -0
- package/dist/Adapters/Icon/useIconAdapter.d.ts +11 -0
- package/dist/Adapters/Icon/useIconAdapter.js +13 -0
- package/dist/Adapters/index.d.ts +3 -0
- package/dist/Adapters/index.js +3 -0
- package/dist/Components/Alert/Alert.vue_vue_type_script_setup_true_lang.js +1 -5
- package/dist/Components/Alert/alert.types.d.ts +2 -2
- package/dist/Components/Alert/alertDefaultIcons.d.ts +2 -2
- package/dist/Components/Alert/alertDefaultIcons.js +9 -10
- package/dist/Components/Alert/composables/useAlert.d.ts +2 -2
- package/dist/Components/Avatar/Avatar.vue_vue_type_script_setup_true_lang.js +1 -1
- package/dist/Components/Avatar/avatar.types.d.ts +2 -2
- package/dist/Components/Avatar/composables/useAvatar.d.ts +1 -1
- package/dist/Components/Avatar/composables/useAvatar.js +43 -44
- package/dist/Components/Button/Button.vue_vue_type_script_setup_true_lang.js +24 -25
- package/dist/Components/Button/button.types.d.ts +4 -4
- package/dist/Components/Button/composables/useButton.d.ts +1 -1
- package/dist/Components/Checkbox/Checkbox.vue_vue_type_script_setup_true_lang.js +25 -25
- package/dist/Components/Checkbox/composables/useCheckbox.d.ts +3 -3
- package/dist/Components/Chip/Chip.vue_vue_type_script_setup_true_lang.js +8 -9
- package/dist/Components/FormControl/composables/useFormControl.d.ts +1 -1
- package/dist/Components/FormField/composables/useFormField.d.ts +4 -4
- package/dist/Components/FormField/composables/useFormField.js +98 -99
- package/dist/Components/FormField/formField.types.d.ts +5 -5
- package/dist/Components/Icon/Icon.vue_vue_type_script_setup_true_lang.js +7 -7
- package/dist/Components/Icon/composables/useIcon.d.ts +2 -0
- package/dist/Components/Icon/composables/useIcon.js +20 -18
- package/dist/Components/Icon/icon.types.d.ts +3 -3
- package/dist/Components/Label/composables/useLabel.d.ts +1 -1
- package/dist/Components/Link/Link.vue_vue_type_script_setup_true_lang.js +2 -2
- package/dist/Components/Link/link.types.d.ts +3 -3
- package/dist/Components/ListItem/composables/useListItem.d.ts +2 -2
- package/dist/Components/ListItem/composables/useListItem.js +75 -76
- package/dist/Components/ListItem/listItem.types.d.ts +2 -2
- package/dist/Components/Listbox/Listbox.vue.d.ts +0 -2
- package/dist/Components/Listbox/Listbox.vue_vue_type_script_setup_true_lang.js +73 -72
- package/dist/Components/NumberField/NumberField.vue_vue_type_script_setup_true_lang.js +40 -40
- package/dist/Components/NumberField/composables/useNumberField.d.ts +6 -6
- package/dist/Components/PasswordField/PasswordField.vue_vue_type_script_setup_true_lang.js +24 -24
- package/dist/Components/PasswordField/composables/usePasswordField.d.ts +6 -6
- package/dist/Components/Radio/composables/useRadio.d.ts +3 -3
- package/dist/Components/Select/Select.vue.d.ts +0 -1
- package/dist/Components/Select/Select.vue_vue_type_script_setup_true_lang.js +62 -61
- package/dist/Components/Select/composables/useSelect.d.ts +8 -8
- package/dist/Components/Select/composables/useSelect.js +214 -214
- package/dist/Components/Snackbar/Snackbar.vue_vue_type_script_setup_true_lang.js +81 -75
- package/dist/Components/Snackbar/composables/useSnackbar.d.ts +4 -4
- package/dist/Components/Snackbar/snackbar.types.d.ts +3 -3
- package/dist/Components/Snackbar/snackbarDefaultIcons.d.ts +3 -3
- package/dist/Components/Snackbar/snackbarDefaultIcons.js +9 -10
- package/dist/Components/Switch/composables/useSwitch.d.ts +3 -3
- package/dist/Components/Tab/Tab.vue_vue_type_script_setup_true_lang.js +2 -2
- package/dist/Components/Tab/tab.types.d.ts +3 -3
- package/dist/Components/TabItem/TabItem.vue_vue_type_script_setup_true_lang.js +2 -2
- package/dist/Components/TabItem/tabItem.types.d.ts +3 -3
- package/dist/Components/Tabs/composables/useTabs.d.ts +468 -4
- package/dist/Components/Tabs/tabsInjectionKey.d.ts +5 -5
- package/dist/Components/TextField/composables/useTextField.d.ts +6 -6
- package/dist/Components/Textarea/composables/useTextarea.d.ts +6 -6
- package/dist/Components/Tooltip/Tooltip.js +5 -0
- package/dist/Components/Tooltip/Tooltip.vue.d.ts +35 -0
- package/dist/Components/Tooltip/Tooltip.vue_vue_type_script_setup_true_lang.js +73 -0
- package/dist/Components/Tooltip/composables/useTooltip.d.ts +50 -0
- package/dist/Components/Tooltip/composables/useTooltip.js +208 -0
- package/dist/Components/Tooltip/index.d.ts +4 -0
- package/dist/Components/Tooltip/index.js +3 -0
- package/dist/Components/Tooltip/tooltip.types.d.ts +166 -0
- package/dist/Provider/createBridgeUIApi.js +2 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +80 -76
- package/dist/theme.css +12 -12
- package/package.json +20 -3
|
@@ -11,7 +11,123 @@ export declare function useTabs(props: TabsOwnProps, libDefaults: TabsLibDefault
|
|
|
11
11
|
}, "class", import('vue').HTMLAttributes | undefined, Omit<TabsProps, "color" | "orientation" | "size" | "classes" | "customProps" | "variant" | "keepMounted" | "activation">>>;
|
|
12
12
|
tabItems: Ref<{
|
|
13
13
|
disabled?: boolean | undefined;
|
|
14
|
-
endIcon?: import('
|
|
14
|
+
endIcon?: import('vue').FunctionalComponent<any, {}, any, {}> | {
|
|
15
|
+
new (...args: any[]): any;
|
|
16
|
+
__isFragment?: never;
|
|
17
|
+
__isTeleport?: never;
|
|
18
|
+
__isSuspense?: never;
|
|
19
|
+
} | import('@bridge-ui/core').SemanticIconName | {
|
|
20
|
+
[x: string]: any;
|
|
21
|
+
setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
|
|
22
|
+
attrs: import('vue').Attrs;
|
|
23
|
+
slots: Readonly<{
|
|
24
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
25
|
+
}>;
|
|
26
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
27
|
+
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
28
|
+
}) => any) | undefined;
|
|
29
|
+
name?: string | undefined;
|
|
30
|
+
template?: string | object | undefined;
|
|
31
|
+
render?: Function | undefined;
|
|
32
|
+
components?: Record<string, import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions, {}, any>> | undefined;
|
|
33
|
+
directives?: Record<string, import('vue').Directive<any, any, string, any>> | undefined;
|
|
34
|
+
inheritAttrs?: boolean | undefined;
|
|
35
|
+
emits?: any;
|
|
36
|
+
slots?: {} | undefined;
|
|
37
|
+
expose?: string[] | undefined;
|
|
38
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
39
|
+
compilerOptions?: {
|
|
40
|
+
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
41
|
+
whitespace?: "preserve" | "condense" | undefined;
|
|
42
|
+
comments?: boolean | undefined;
|
|
43
|
+
delimiters?: [string, string] | undefined;
|
|
44
|
+
} | undefined;
|
|
45
|
+
call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
|
|
46
|
+
__isFragment?: never | undefined;
|
|
47
|
+
__isTeleport?: never | undefined;
|
|
48
|
+
__isSuspense?: never | undefined;
|
|
49
|
+
__defaults?: {} | undefined;
|
|
50
|
+
compatConfig?: {
|
|
51
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
52
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
53
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
54
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
55
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
56
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
57
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
58
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
59
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
60
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
61
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
62
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
63
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
64
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
65
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
66
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
67
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
68
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
69
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
70
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
71
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
72
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
73
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
74
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
75
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
76
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
77
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
78
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
79
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
80
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
81
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
82
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
83
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
84
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
85
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
86
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
87
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
88
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
89
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
90
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
91
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
92
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
93
|
+
MODE?: 2 | 3 | ((comp: import('vue').Component | null) => 2 | 3) | undefined;
|
|
94
|
+
} | undefined;
|
|
95
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
96
|
+
computed?: import('vue').ComputedOptions | undefined;
|
|
97
|
+
methods?: import('vue').MethodOptions | undefined;
|
|
98
|
+
watch?: {
|
|
99
|
+
[x: string]: (string | import('vue').WatchCallback | ({
|
|
100
|
+
handler: import('vue').WatchCallback | string;
|
|
101
|
+
} & import('vue').WatchOptions<boolean>)) | (string | import('vue').WatchCallback | ({
|
|
102
|
+
handler: import('vue').WatchCallback | string;
|
|
103
|
+
} & import('vue').WatchOptions<boolean>))[];
|
|
104
|
+
} | undefined;
|
|
105
|
+
provide?: import('vue').ComponentProvideOptions | undefined;
|
|
106
|
+
inject?: {} | string[] | undefined;
|
|
107
|
+
filters?: Record<string, Function> | undefined;
|
|
108
|
+
mixins?: any[] | undefined;
|
|
109
|
+
extends?: any;
|
|
110
|
+
beforeCreate?: (() => any) | undefined;
|
|
111
|
+
created?: (() => any) | undefined;
|
|
112
|
+
beforeMount?: (() => any) | undefined;
|
|
113
|
+
mounted?: (() => any) | undefined;
|
|
114
|
+
beforeUpdate?: (() => any) | undefined;
|
|
115
|
+
updated?: (() => any) | undefined;
|
|
116
|
+
activated?: (() => any) | undefined;
|
|
117
|
+
deactivated?: (() => any) | undefined;
|
|
118
|
+
beforeDestroy?: (() => any) | undefined;
|
|
119
|
+
beforeUnmount?: (() => any) | undefined;
|
|
120
|
+
destroyed?: (() => any) | undefined;
|
|
121
|
+
unmounted?: (() => any) | undefined;
|
|
122
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
123
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
124
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
|
|
125
|
+
delimiters?: [string, string] | undefined;
|
|
126
|
+
__differentiator?: string | number | symbol | undefined;
|
|
127
|
+
__isBuiltIn?: boolean | undefined;
|
|
128
|
+
__file?: string | undefined;
|
|
129
|
+
__name?: string | undefined;
|
|
130
|
+
} | undefined;
|
|
15
131
|
keepMounted?: boolean | undefined;
|
|
16
132
|
label: string | (() => import('vue').VNodeChild);
|
|
17
133
|
panel: () => import('vue').VNodeChild;
|
|
@@ -19,11 +135,243 @@ export declare function useTabs(props: TabsOwnProps, libDefaults: TabsLibDefault
|
|
|
19
135
|
end?: (() => import('vue').VNodeChild) | undefined;
|
|
20
136
|
start?: (() => import('vue').VNodeChild) | undefined;
|
|
21
137
|
} | undefined;
|
|
22
|
-
startIcon?: import('
|
|
138
|
+
startIcon?: import('vue').FunctionalComponent<any, {}, any, {}> | {
|
|
139
|
+
new (...args: any[]): any;
|
|
140
|
+
__isFragment?: never;
|
|
141
|
+
__isTeleport?: never;
|
|
142
|
+
__isSuspense?: never;
|
|
143
|
+
} | import('@bridge-ui/core').SemanticIconName | {
|
|
144
|
+
[x: string]: any;
|
|
145
|
+
setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
|
|
146
|
+
attrs: import('vue').Attrs;
|
|
147
|
+
slots: Readonly<{
|
|
148
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
149
|
+
}>;
|
|
150
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
151
|
+
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
152
|
+
}) => any) | undefined;
|
|
153
|
+
name?: string | undefined;
|
|
154
|
+
template?: string | object | undefined;
|
|
155
|
+
render?: Function | undefined;
|
|
156
|
+
components?: Record<string, import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions, {}, any>> | undefined;
|
|
157
|
+
directives?: Record<string, import('vue').Directive<any, any, string, any>> | undefined;
|
|
158
|
+
inheritAttrs?: boolean | undefined;
|
|
159
|
+
emits?: any;
|
|
160
|
+
slots?: {} | undefined;
|
|
161
|
+
expose?: string[] | undefined;
|
|
162
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
163
|
+
compilerOptions?: {
|
|
164
|
+
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
165
|
+
whitespace?: "preserve" | "condense" | undefined;
|
|
166
|
+
comments?: boolean | undefined;
|
|
167
|
+
delimiters?: [string, string] | undefined;
|
|
168
|
+
} | undefined;
|
|
169
|
+
call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
|
|
170
|
+
__isFragment?: never | undefined;
|
|
171
|
+
__isTeleport?: never | undefined;
|
|
172
|
+
__isSuspense?: never | undefined;
|
|
173
|
+
__defaults?: {} | undefined;
|
|
174
|
+
compatConfig?: {
|
|
175
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
176
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
177
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
178
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
179
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
180
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
181
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
182
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
183
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
184
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
185
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
186
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
187
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
188
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
189
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
190
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
191
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
192
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
193
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
194
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
195
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
196
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
197
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
198
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
199
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
200
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
201
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
202
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
203
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
204
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
205
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
206
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
207
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
208
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
209
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
210
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
211
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
212
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
213
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
214
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
215
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
216
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
217
|
+
MODE?: 2 | 3 | ((comp: import('vue').Component | null) => 2 | 3) | undefined;
|
|
218
|
+
} | undefined;
|
|
219
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
220
|
+
computed?: import('vue').ComputedOptions | undefined;
|
|
221
|
+
methods?: import('vue').MethodOptions | undefined;
|
|
222
|
+
watch?: {
|
|
223
|
+
[x: string]: (string | import('vue').WatchCallback | ({
|
|
224
|
+
handler: import('vue').WatchCallback | string;
|
|
225
|
+
} & import('vue').WatchOptions<boolean>)) | (string | import('vue').WatchCallback | ({
|
|
226
|
+
handler: import('vue').WatchCallback | string;
|
|
227
|
+
} & import('vue').WatchOptions<boolean>))[];
|
|
228
|
+
} | undefined;
|
|
229
|
+
provide?: import('vue').ComponentProvideOptions | undefined;
|
|
230
|
+
inject?: {} | string[] | undefined;
|
|
231
|
+
filters?: Record<string, Function> | undefined;
|
|
232
|
+
mixins?: any[] | undefined;
|
|
233
|
+
extends?: any;
|
|
234
|
+
beforeCreate?: (() => any) | undefined;
|
|
235
|
+
created?: (() => any) | undefined;
|
|
236
|
+
beforeMount?: (() => any) | undefined;
|
|
237
|
+
mounted?: (() => any) | undefined;
|
|
238
|
+
beforeUpdate?: (() => any) | undefined;
|
|
239
|
+
updated?: (() => any) | undefined;
|
|
240
|
+
activated?: (() => any) | undefined;
|
|
241
|
+
deactivated?: (() => any) | undefined;
|
|
242
|
+
beforeDestroy?: (() => any) | undefined;
|
|
243
|
+
beforeUnmount?: (() => any) | undefined;
|
|
244
|
+
destroyed?: (() => any) | undefined;
|
|
245
|
+
unmounted?: (() => any) | undefined;
|
|
246
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
247
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
248
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
|
|
249
|
+
delimiters?: [string, string] | undefined;
|
|
250
|
+
__differentiator?: string | number | symbol | undefined;
|
|
251
|
+
__isBuiltIn?: boolean | undefined;
|
|
252
|
+
__file?: string | undefined;
|
|
253
|
+
__name?: string | undefined;
|
|
254
|
+
} | undefined;
|
|
23
255
|
value: string;
|
|
24
256
|
}[], TabsItemEntry[] | {
|
|
25
257
|
disabled?: boolean | undefined;
|
|
26
|
-
endIcon?: import('
|
|
258
|
+
endIcon?: import('vue').FunctionalComponent<any, {}, any, {}> | {
|
|
259
|
+
new (...args: any[]): any;
|
|
260
|
+
__isFragment?: never;
|
|
261
|
+
__isTeleport?: never;
|
|
262
|
+
__isSuspense?: never;
|
|
263
|
+
} | import('@bridge-ui/core').SemanticIconName | {
|
|
264
|
+
[x: string]: any;
|
|
265
|
+
setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
|
|
266
|
+
attrs: import('vue').Attrs;
|
|
267
|
+
slots: Readonly<{
|
|
268
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
269
|
+
}>;
|
|
270
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
271
|
+
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
272
|
+
}) => any) | undefined;
|
|
273
|
+
name?: string | undefined;
|
|
274
|
+
template?: string | object | undefined;
|
|
275
|
+
render?: Function | undefined;
|
|
276
|
+
components?: Record<string, import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions, {}, any>> | undefined;
|
|
277
|
+
directives?: Record<string, import('vue').Directive<any, any, string, any>> | undefined;
|
|
278
|
+
inheritAttrs?: boolean | undefined;
|
|
279
|
+
emits?: any;
|
|
280
|
+
slots?: {} | undefined;
|
|
281
|
+
expose?: string[] | undefined;
|
|
282
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
283
|
+
compilerOptions?: {
|
|
284
|
+
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
285
|
+
whitespace?: "preserve" | "condense" | undefined;
|
|
286
|
+
comments?: boolean | undefined;
|
|
287
|
+
delimiters?: [string, string] | undefined;
|
|
288
|
+
} | undefined;
|
|
289
|
+
call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
|
|
290
|
+
__isFragment?: never | undefined;
|
|
291
|
+
__isTeleport?: never | undefined;
|
|
292
|
+
__isSuspense?: never | undefined;
|
|
293
|
+
__defaults?: {} | undefined;
|
|
294
|
+
compatConfig?: {
|
|
295
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
296
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
297
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
298
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
299
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
300
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
301
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
302
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
303
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
304
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
305
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
306
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
307
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
308
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
309
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
310
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
311
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
312
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
313
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
314
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
315
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
316
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
317
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
318
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
319
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
320
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
321
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
322
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
323
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
324
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
325
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
326
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
327
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
328
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
329
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
330
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
331
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
332
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
333
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
334
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
335
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
336
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
337
|
+
MODE?: 2 | 3 | ((comp: import('vue').Component | null) => 2 | 3) | undefined;
|
|
338
|
+
} | undefined;
|
|
339
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
340
|
+
computed?: import('vue').ComputedOptions | undefined;
|
|
341
|
+
methods?: import('vue').MethodOptions | undefined;
|
|
342
|
+
watch?: {
|
|
343
|
+
[x: string]: (string | import('vue').WatchCallback | ({
|
|
344
|
+
handler: import('vue').WatchCallback | string;
|
|
345
|
+
} & import('vue').WatchOptions<boolean>)) | (string | import('vue').WatchCallback | ({
|
|
346
|
+
handler: import('vue').WatchCallback | string;
|
|
347
|
+
} & import('vue').WatchOptions<boolean>))[];
|
|
348
|
+
} | undefined;
|
|
349
|
+
provide?: import('vue').ComponentProvideOptions | undefined;
|
|
350
|
+
inject?: {} | string[] | undefined;
|
|
351
|
+
filters?: Record<string, Function> | undefined;
|
|
352
|
+
mixins?: any[] | undefined;
|
|
353
|
+
extends?: any;
|
|
354
|
+
beforeCreate?: (() => any) | undefined;
|
|
355
|
+
created?: (() => any) | undefined;
|
|
356
|
+
beforeMount?: (() => any) | undefined;
|
|
357
|
+
mounted?: (() => any) | undefined;
|
|
358
|
+
beforeUpdate?: (() => any) | undefined;
|
|
359
|
+
updated?: (() => any) | undefined;
|
|
360
|
+
activated?: (() => any) | undefined;
|
|
361
|
+
deactivated?: (() => any) | undefined;
|
|
362
|
+
beforeDestroy?: (() => any) | undefined;
|
|
363
|
+
beforeUnmount?: (() => any) | undefined;
|
|
364
|
+
destroyed?: (() => any) | undefined;
|
|
365
|
+
unmounted?: (() => any) | undefined;
|
|
366
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
367
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
368
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
|
|
369
|
+
delimiters?: [string, string] | undefined;
|
|
370
|
+
__differentiator?: string | number | symbol | undefined;
|
|
371
|
+
__isBuiltIn?: boolean | undefined;
|
|
372
|
+
__file?: string | undefined;
|
|
373
|
+
__name?: string | undefined;
|
|
374
|
+
} | undefined;
|
|
27
375
|
keepMounted?: boolean | undefined;
|
|
28
376
|
label: string | (() => import('vue').VNodeChild);
|
|
29
377
|
panel: () => import('vue').VNodeChild;
|
|
@@ -31,7 +379,123 @@ export declare function useTabs(props: TabsOwnProps, libDefaults: TabsLibDefault
|
|
|
31
379
|
end?: (() => import('vue').VNodeChild) | undefined;
|
|
32
380
|
start?: (() => import('vue').VNodeChild) | undefined;
|
|
33
381
|
} | undefined;
|
|
34
|
-
startIcon?: import('
|
|
382
|
+
startIcon?: import('vue').FunctionalComponent<any, {}, any, {}> | {
|
|
383
|
+
new (...args: any[]): any;
|
|
384
|
+
__isFragment?: never;
|
|
385
|
+
__isTeleport?: never;
|
|
386
|
+
__isSuspense?: never;
|
|
387
|
+
} | import('@bridge-ui/core').SemanticIconName | {
|
|
388
|
+
[x: string]: any;
|
|
389
|
+
setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
|
|
390
|
+
attrs: import('vue').Attrs;
|
|
391
|
+
slots: Readonly<{
|
|
392
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
393
|
+
}>;
|
|
394
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
395
|
+
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
396
|
+
}) => any) | undefined;
|
|
397
|
+
name?: string | undefined;
|
|
398
|
+
template?: string | object | undefined;
|
|
399
|
+
render?: Function | undefined;
|
|
400
|
+
components?: Record<string, import('vue').Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions, {}, any>> | undefined;
|
|
401
|
+
directives?: Record<string, import('vue').Directive<any, any, string, any>> | undefined;
|
|
402
|
+
inheritAttrs?: boolean | undefined;
|
|
403
|
+
emits?: any;
|
|
404
|
+
slots?: {} | undefined;
|
|
405
|
+
expose?: string[] | undefined;
|
|
406
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
407
|
+
compilerOptions?: {
|
|
408
|
+
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
409
|
+
whitespace?: "preserve" | "condense" | undefined;
|
|
410
|
+
comments?: boolean | undefined;
|
|
411
|
+
delimiters?: [string, string] | undefined;
|
|
412
|
+
} | undefined;
|
|
413
|
+
call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
|
|
414
|
+
__isFragment?: never | undefined;
|
|
415
|
+
__isTeleport?: never | undefined;
|
|
416
|
+
__isSuspense?: never | undefined;
|
|
417
|
+
__defaults?: {} | undefined;
|
|
418
|
+
compatConfig?: {
|
|
419
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
420
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
421
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
422
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
423
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
424
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
425
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
426
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
427
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
428
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
429
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
430
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
431
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
432
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
433
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
434
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
435
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
436
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
437
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
438
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
439
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
440
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
441
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
442
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
443
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
444
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
445
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
446
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
447
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
448
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
449
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
450
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
451
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
452
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
453
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
454
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
455
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
456
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
457
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
458
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
459
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
460
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
461
|
+
MODE?: 2 | 3 | ((comp: import('vue').Component | null) => 2 | 3) | undefined;
|
|
462
|
+
} | undefined;
|
|
463
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
464
|
+
computed?: import('vue').ComputedOptions | undefined;
|
|
465
|
+
methods?: import('vue').MethodOptions | undefined;
|
|
466
|
+
watch?: {
|
|
467
|
+
[x: string]: (string | import('vue').WatchCallback | ({
|
|
468
|
+
handler: import('vue').WatchCallback | string;
|
|
469
|
+
} & import('vue').WatchOptions<boolean>)) | (string | import('vue').WatchCallback | ({
|
|
470
|
+
handler: import('vue').WatchCallback | string;
|
|
471
|
+
} & import('vue').WatchOptions<boolean>))[];
|
|
472
|
+
} | undefined;
|
|
473
|
+
provide?: import('vue').ComponentProvideOptions | undefined;
|
|
474
|
+
inject?: {} | string[] | undefined;
|
|
475
|
+
filters?: Record<string, Function> | undefined;
|
|
476
|
+
mixins?: any[] | undefined;
|
|
477
|
+
extends?: any;
|
|
478
|
+
beforeCreate?: (() => any) | undefined;
|
|
479
|
+
created?: (() => any) | undefined;
|
|
480
|
+
beforeMount?: (() => any) | undefined;
|
|
481
|
+
mounted?: (() => any) | undefined;
|
|
482
|
+
beforeUpdate?: (() => any) | undefined;
|
|
483
|
+
updated?: (() => any) | undefined;
|
|
484
|
+
activated?: (() => any) | undefined;
|
|
485
|
+
deactivated?: (() => any) | undefined;
|
|
486
|
+
beforeDestroy?: (() => any) | undefined;
|
|
487
|
+
beforeUnmount?: (() => any) | undefined;
|
|
488
|
+
destroyed?: (() => any) | undefined;
|
|
489
|
+
unmounted?: (() => any) | undefined;
|
|
490
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
491
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
492
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
|
|
493
|
+
delimiters?: [string, string] | undefined;
|
|
494
|
+
__differentiator?: string | number | symbol | undefined;
|
|
495
|
+
__isBuiltIn?: boolean | undefined;
|
|
496
|
+
__file?: string | undefined;
|
|
497
|
+
__name?: string | undefined;
|
|
498
|
+
} | undefined;
|
|
35
499
|
value: string;
|
|
36
500
|
}[]>;
|
|
37
501
|
contextValue: import('vue').ComputedRef<TabsContextValue>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { LucideIcon } from '@lucide/vue';
|
|
2
1
|
import { ComputedRef, InjectionKey, VNodeChild } from 'vue';
|
|
3
2
|
import { TabsActivation } from '@bridge-ui/core';
|
|
3
|
+
import { IconSource } from '../../Adapters/Icon';
|
|
4
4
|
/**
|
|
5
5
|
* Merged token classes for triggers / list / panel.
|
|
6
6
|
*/
|
|
@@ -30,9 +30,9 @@ export type TabsItemEntry = {
|
|
|
30
30
|
*/
|
|
31
31
|
disabled?: boolean;
|
|
32
32
|
/**
|
|
33
|
-
* Optional trailing
|
|
33
|
+
* Optional trailing Icon on the tab trigger.
|
|
34
34
|
*/
|
|
35
|
-
endIcon?:
|
|
35
|
+
endIcon?: IconSource;
|
|
36
36
|
/**
|
|
37
37
|
* When set, overrides `Tabs` `keepMounted` for this panel.
|
|
38
38
|
*/
|
|
@@ -53,9 +53,9 @@ export type TabsItemEntry = {
|
|
|
53
53
|
start?: () => VNodeChild;
|
|
54
54
|
};
|
|
55
55
|
/**
|
|
56
|
-
* Optional leading
|
|
56
|
+
* Optional leading Icon on the tab trigger.
|
|
57
57
|
*/
|
|
58
|
-
startIcon?:
|
|
58
|
+
startIcon?: IconSource;
|
|
59
59
|
/**
|
|
60
60
|
* Stable value matching the tab / panel pair.
|
|
61
61
|
*/
|
|
@@ -9,7 +9,7 @@ export declare function useTextField(props: TextFieldOwnProps): {
|
|
|
9
9
|
size: NonNullable<keyof import('@bridge-ui/core').FormFieldSize | undefined>;
|
|
10
10
|
rounded: NonNullable<keyof import('@bridge-ui/core').FormFieldRounded | undefined>;
|
|
11
11
|
variant: NonNullable<keyof import('@bridge-ui/core').FormFieldVariant | undefined>;
|
|
12
|
-
errorIcon: import('
|
|
12
|
+
errorIcon: NonNullable<import('../../..').IconSource | undefined>;
|
|
13
13
|
withErrorIcon: NonNullable<boolean | undefined>;
|
|
14
14
|
}>;
|
|
15
15
|
control: import('vue').ComputedRef<string>;
|
|
@@ -165,13 +165,13 @@ export declare function useTextField(props: TextFieldOwnProps): {
|
|
|
165
165
|
'aria-valuenow'?: (string | number) | undefined;
|
|
166
166
|
'aria-valuetext'?: string | undefined | undefined;
|
|
167
167
|
accesskey?: string | undefined | undefined;
|
|
168
|
-
contenteditable?:
|
|
168
|
+
contenteditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
169
169
|
contextmenu?: string | undefined | undefined;
|
|
170
170
|
dir?: string | undefined | undefined;
|
|
171
171
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
172
172
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
173
173
|
enterKeyHint?: "done" | "enter" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
174
|
-
hidden?: "" | "until-found" | (boolean | "true" | "false") |
|
|
174
|
+
hidden?: "" | "until-found" | "hidden" | (boolean | "true" | "false") | undefined;
|
|
175
175
|
inert?: (boolean | "true" | "false") | undefined;
|
|
176
176
|
placeholder?: string | undefined | undefined;
|
|
177
177
|
spellcheck?: (boolean | "true" | "false") | undefined;
|
|
@@ -205,7 +205,7 @@ export declare function useTextField(props: TextFieldOwnProps): {
|
|
|
205
205
|
}>>;
|
|
206
206
|
controlId: import('vue').ComputedRef<string>;
|
|
207
207
|
errorBind: import('vue').ComputedRef<import('@bridge-ui/core').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
208
|
-
errorIcon: import('vue').ComputedRef<import('
|
|
208
|
+
errorIcon: import('vue').ComputedRef<NonNullable<import('../../..').IconSource | undefined>>;
|
|
209
209
|
inputBind: import('vue').ComputedRef<import('@bridge-ui/core').MergePartBind<object, "class", {
|
|
210
210
|
id: string;
|
|
211
211
|
disabled: boolean;
|
|
@@ -427,7 +427,7 @@ export declare function useTextField(props: TextFieldOwnProps): {
|
|
|
427
427
|
onTransitionend?: ((payload: TransitionEvent) => void) | undefined;
|
|
428
428
|
onTransitionrun?: ((payload: TransitionEvent) => void) | undefined;
|
|
429
429
|
onTransitionstart?: ((payload: TransitionEvent) => void) | undefined;
|
|
430
|
-
}, Partial<Omit<Omit<import('../../FormField').FormFieldOwnProps, "field">, "color" | "end" | "size" | "classes" | "customProps" | "
|
|
430
|
+
}, Partial<Omit<Omit<import('../../FormField').FormFieldOwnProps, "field">, "error" | "color" | "end" | "size" | "classes" | "customProps" | "rounded" | "variant" | "label" | "disabled" | "endIcon" | "startIcon" | "start" | "required" | "description" | "errorMessage" | "readonly" | "withoutErrorMessage" | "errorIcon" | "withErrorIcon" | "corner">>>>;
|
|
431
431
|
isNotched: import('vue').ComputedRef<boolean>;
|
|
432
432
|
isStacked: import('vue').ComputedRef<boolean>;
|
|
433
433
|
startBind: import('vue').ComputedRef<import('@bridge-ui/core').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
@@ -675,5 +675,5 @@ export declare function useTextField(props: TextFieldOwnProps): {
|
|
|
675
675
|
onTransitionend?: ((payload: TransitionEvent) => void) | undefined;
|
|
676
676
|
onTransitionrun?: ((payload: TransitionEvent) => void) | undefined;
|
|
677
677
|
onTransitionstart?: ((payload: TransitionEvent) => void) | undefined;
|
|
678
|
-
}, Partial<Omit<Omit<import('../../FormField').FormFieldOwnProps, "field">, "color" | "end" | "size" | "classes" | "customProps" | "
|
|
678
|
+
}, Partial<Omit<Omit<import('../../FormField').FormFieldOwnProps, "field">, "error" | "color" | "end" | "size" | "classes" | "customProps" | "rounded" | "variant" | "label" | "disabled" | "endIcon" | "startIcon" | "start" | "required" | "description" | "errorMessage" | "readonly" | "withoutErrorMessage" | "errorIcon" | "withErrorIcon" | "corner">>>>;
|
|
679
679
|
};
|
|
@@ -10,7 +10,7 @@ export declare function useTextarea(props: TextareaOwnProps, textareaRef: Ref<nu
|
|
|
10
10
|
size: NonNullable<keyof import('@bridge-ui/core').FormFieldSize | undefined>;
|
|
11
11
|
rounded: NonNullable<keyof import('@bridge-ui/core').FormFieldRounded | undefined>;
|
|
12
12
|
variant: NonNullable<keyof import('@bridge-ui/core').FormFieldVariant | undefined>;
|
|
13
|
-
errorIcon: import('
|
|
13
|
+
errorIcon: NonNullable<import('../../..').IconSource | undefined>;
|
|
14
14
|
withErrorIcon: NonNullable<boolean | undefined>;
|
|
15
15
|
}>;
|
|
16
16
|
control: import('vue').ComputedRef<string>;
|
|
@@ -166,13 +166,13 @@ export declare function useTextarea(props: TextareaOwnProps, textareaRef: Ref<nu
|
|
|
166
166
|
'aria-valuenow'?: (string | number) | undefined;
|
|
167
167
|
'aria-valuetext'?: string | undefined | undefined;
|
|
168
168
|
accesskey?: string | undefined | undefined;
|
|
169
|
-
contenteditable?:
|
|
169
|
+
contenteditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
170
170
|
contextmenu?: string | undefined | undefined;
|
|
171
171
|
dir?: string | undefined | undefined;
|
|
172
172
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
173
173
|
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
174
174
|
enterKeyHint?: "done" | "enter" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
175
|
-
hidden?: "" | "until-found" | (boolean | "true" | "false") |
|
|
175
|
+
hidden?: "" | "until-found" | "hidden" | (boolean | "true" | "false") | undefined;
|
|
176
176
|
inert?: (boolean | "true" | "false") | undefined;
|
|
177
177
|
placeholder?: string | undefined | undefined;
|
|
178
178
|
spellcheck?: (boolean | "true" | "false") | undefined;
|
|
@@ -206,7 +206,7 @@ export declare function useTextarea(props: TextareaOwnProps, textareaRef: Ref<nu
|
|
|
206
206
|
}>>;
|
|
207
207
|
controlId: import('vue').ComputedRef<string>;
|
|
208
208
|
errorBind: import('vue').ComputedRef<import('@bridge-ui/core').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
209
|
-
errorIcon: import('vue').ComputedRef<import('
|
|
209
|
+
errorIcon: import('vue').ComputedRef<NonNullable<import('../../..').IconSource | undefined>>;
|
|
210
210
|
inputBind: import('vue').ComputedRef<import('@bridge-ui/core').MergePartBind<object, "class", {
|
|
211
211
|
id: string;
|
|
212
212
|
disabled: boolean;
|
|
@@ -428,7 +428,7 @@ export declare function useTextarea(props: TextareaOwnProps, textareaRef: Ref<nu
|
|
|
428
428
|
onTransitionend?: ((payload: TransitionEvent) => void) | undefined;
|
|
429
429
|
onTransitionrun?: ((payload: TransitionEvent) => void) | undefined;
|
|
430
430
|
onTransitionstart?: ((payload: TransitionEvent) => void) | undefined;
|
|
431
|
-
}, Partial<Omit<Omit<import('../../FormField').FormFieldOwnProps, "field">, "color" | "end" | "size" | "classes" | "customProps" | "
|
|
431
|
+
}, Partial<Omit<Omit<import('../../FormField').FormFieldOwnProps, "field">, "error" | "color" | "end" | "size" | "classes" | "customProps" | "rounded" | "variant" | "label" | "disabled" | "endIcon" | "startIcon" | "start" | "required" | "description" | "errorMessage" | "readonly" | "withoutErrorMessage" | "errorIcon" | "withErrorIcon" | "corner">>>>;
|
|
432
432
|
isNotched: import('vue').ComputedRef<boolean>;
|
|
433
433
|
isStacked: import('vue').ComputedRef<boolean>;
|
|
434
434
|
startBind: import('vue').ComputedRef<import('@bridge-ui/core').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
@@ -677,7 +677,7 @@ export declare function useTextarea(props: TextareaOwnProps, textareaRef: Ref<nu
|
|
|
677
677
|
onTransitionend?: ((payload: TransitionEvent) => void) | undefined;
|
|
678
678
|
onTransitionrun?: ((payload: TransitionEvent) => void) | undefined;
|
|
679
679
|
onTransitionstart?: ((payload: TransitionEvent) => void) | undefined;
|
|
680
|
-
}, Partial<Omit<Omit<import('../../FormField').FormFieldOwnProps, "field">, "color" | "end" | "size" | "classes" | "customProps" | "
|
|
680
|
+
}, Partial<Omit<Omit<import('../../FormField').FormFieldOwnProps, "field">, "error" | "color" | "end" | "size" | "classes" | "customProps" | "rounded" | "variant" | "label" | "disabled" | "endIcon" | "startIcon" | "start" | "required" | "description" | "errorMessage" | "readonly" | "withoutErrorMessage" | "errorIcon" | "withErrorIcon" | "corner">>>, {
|
|
681
681
|
rows?: string | number | undefined;
|
|
682
682
|
onInput?: ((event: Event) => void) | undefined;
|
|
683
683
|
}>>;
|