@bridge-ui/vue 0.6.0 → 0.7.0
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/useI18nAdapter.d.ts +1 -1
- package/dist/Adapters/I18n/useI18nAdapter.js +4 -1
- package/dist/Components/Accordion/Accordion.vue_vue_type_script_setup_true_lang.js +1 -1
- package/dist/Components/Accordion/accordion.types.d.ts +2 -2
- package/dist/Components/Autocomplete/composables/useAutocomplete.d.ts +1 -1
- package/dist/Components/BaseField/BaseField.vue_vue_type_script_setup_true_lang.js +33 -28
- package/dist/Components/BaseField/BaseFieldCorner.js +5 -0
- package/dist/Components/BaseField/BaseFieldCorner.vue.d.ts +17 -0
- package/dist/Components/BaseField/BaseFieldCorner.vue_vue_type_script_setup_true_lang.js +17 -0
- package/dist/Components/BaseField/baseField.types.d.ts +4 -2
- package/dist/Components/BaseField/composables/useBaseField.d.ts +1 -1
- package/dist/Components/BaseField/composables/useBaseField.js +11 -8
- package/dist/Components/ColorField/composables/useColorField.d.ts +1 -1
- package/dist/Components/DataTable/DataTable.vue_vue_type_script_setup_true_lang.js +154 -131
- package/dist/Components/DataTable/DataTablePagination.js +5 -0
- package/dist/Components/DataTable/DataTablePagination.vue.d.ts +24 -0
- package/dist/Components/DataTable/DataTablePagination.vue_vue_type_script_setup_true_lang.js +40 -0
- package/dist/Components/DataTable/composables/useDataTable.d.ts +8 -3
- package/dist/Components/DataTable/composables/useDataTable.js +299 -280
- package/dist/Components/DataTable/composables/useDataTablePagination.d.ts +69 -0
- package/dist/Components/DataTable/composables/useDataTablePagination.js +130 -0
- package/dist/Components/DataTable/dataTable.types.d.ts +27 -12
- package/dist/Components/DataTable/dataTablePagination.types.d.ts +169 -0
- package/dist/Components/DataTable/index.d.ts +2 -1
- package/dist/Components/DateField/composables/useDateField.d.ts +1 -1
- package/dist/Components/DateRangeField/composables/useDateRangeField.d.ts +1 -1
- package/dist/Components/DateTimeField/composables/useDateTimeField.d.ts +1 -1
- package/dist/Components/DateTimeRangeField/composables/useDateTimeRangeField.d.ts +1 -1
- package/dist/Components/FormField/FilledFormField.vue.d.ts +7 -7
- package/dist/Components/FormField/FilledFormField.vue_vue_type_script_setup_true_lang.js +32 -27
- package/dist/Components/FormField/FormFieldCorner.js +5 -0
- package/dist/Components/FormField/FormFieldCorner.vue.d.ts +17 -0
- package/dist/Components/FormField/FormFieldCorner.vue_vue_type_script_setup_true_lang.js +17 -0
- package/dist/Components/FormField/NotchedFormField.vue.d.ts +7 -7
- package/dist/Components/FormField/NotchedFormField.vue_vue_type_script_setup_true_lang.js +31 -26
- package/dist/Components/FormField/OutlinedFormField.vue.d.ts +7 -7
- package/dist/Components/FormField/OutlinedFormField.vue_vue_type_script_setup_true_lang.js +32 -27
- package/dist/Components/FormField/StackedFormField.vue.d.ts +6 -6
- package/dist/Components/FormField/StackedFormField.vue_vue_type_script_setup_true_lang.js +34 -29
- package/dist/Components/FormField/UnderlinedFormField.vue.d.ts +7 -7
- package/dist/Components/FormField/UnderlinedFormField.vue_vue_type_script_setup_true_lang.js +32 -27
- package/dist/Components/FormField/composables/useFormField.d.ts +1 -1
- package/dist/Components/FormField/composables/useFormField.js +15 -9
- package/dist/Components/FormField/formField.types.d.ts +4 -2
- package/dist/Components/NumberField/composables/useNumberField.d.ts +1 -1
- package/dist/Components/OtpField/composables/useOtpField.d.ts +1 -1
- package/dist/Components/Pagination/Pagination.vue_vue_type_script_setup_true_lang.js +6 -6
- package/dist/Components/Pagination/composables/usePagination.d.ts +4 -2
- package/dist/Components/Pagination/composables/usePagination.js +125 -127
- package/dist/Components/Pagination/pagination.types.d.ts +5 -5
- package/dist/Components/PasswordField/composables/usePasswordField.d.ts +1 -1
- package/dist/Components/Select/composables/useSelect.d.ts +1 -1
- package/dist/Components/Slider/composables/useSlider.d.ts +1 -1
- package/dist/Components/Tabs/Tabs.vue_vue_type_script_setup_true_lang.js +2 -2
- package/dist/Components/Tabs/composables/useTabs.js +16 -10
- package/dist/Components/Tabs/tabs.types.d.ts +3 -3
- package/dist/Components/TextField/composables/useTextField.d.ts +1 -1
- package/dist/Components/Textarea/composables/useTextarea.d.ts +1 -1
- package/dist/Components/TimeField/composables/useTimeField.d.ts +1 -1
- package/dist/Components/TimeRangeField/composables/useTimeRangeField.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/docs/components/Accordion.md +1 -1
- package/docs/components/DataTable.md +5 -11
- package/docs/components/I18n.md +65 -24
- package/docs/components/Pagination.md +5 -3
- package/docs/components/Table.md +2 -2
- package/docs/components/Tabs.md +24 -6
- package/docs/examples/i18n-dictionary.ts +28 -10
- package/docs/examples/i18n-vue-i18n.ts +7 -6
- package/docs/examples/icon-fontawesome.ts +4 -0
- package/docs/examples/icon-heroicons.ts +5 -1
- package/docs/examples/icon-lucide.ts +4 -0
- package/docs/examples/icon-phosphor.ts +4 -0
- package/docs/examples/icon-tabler.ts +4 -0
- package/package.json +2 -2
|
@@ -13,4 +13,4 @@ export declare function useI18nAdapter(): ComputedRef<undefined | I18nAdapter>;
|
|
|
13
13
|
/**
|
|
14
14
|
* Resolves Bridge chrome strings through the active i18n adapter.
|
|
15
15
|
*/
|
|
16
|
-
export declare function useResolveMessage(): (message: string, params?: MessageParams) => string;
|
|
16
|
+
export declare function useResolveMessage(): (message: string, countOrParams?: number | MessageParams, params?: MessageParams) => string;
|
|
@@ -12,7 +12,10 @@ function a() {
|
|
|
12
12
|
}
|
|
13
13
|
function o() {
|
|
14
14
|
let e = a();
|
|
15
|
-
|
|
15
|
+
function t(t, r, i) {
|
|
16
|
+
return n(t, e.value, r, i);
|
|
17
|
+
}
|
|
18
|
+
return t;
|
|
16
19
|
}
|
|
17
20
|
//#endregion
|
|
18
21
|
export { i as setI18nAdapterForTests, a as useI18nAdapter, o as useResolveMessage };
|
|
@@ -26,9 +26,9 @@ var u = /*@__PURE__*/ n({
|
|
|
26
26
|
setup(n, { emit: i }) {
|
|
27
27
|
let u = i, d = n, f = l(n, "modelValue"), { rootBind: p } = e(d, {
|
|
28
28
|
size: "md",
|
|
29
|
+
color: "dark",
|
|
29
30
|
multiple: !1,
|
|
30
31
|
disabled: !1,
|
|
31
|
-
color: "primary",
|
|
32
32
|
variant: "default"
|
|
33
33
|
}, f, u);
|
|
34
34
|
return (e, n) => (o(), t("div", a(r(c(p))), [s(e.$slots, "default")], 16));
|
|
@@ -40,9 +40,9 @@ export interface AccordionOwnProps {
|
|
|
40
40
|
*/
|
|
41
41
|
classes?: AccordionClasses;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Optional text accent for the expanded trigger and indicator.
|
|
44
44
|
*
|
|
45
|
-
* @default "
|
|
45
|
+
* @default "dark"
|
|
46
46
|
*/
|
|
47
47
|
color?: MergeProps<AccordionColor, AccordionColorOverrides>;
|
|
48
48
|
/**
|
|
@@ -440,7 +440,6 @@ export declare function useAutocomplete(props: AutocompleteOwnProps, model: Ref<
|
|
|
440
440
|
isNotched: import('vue').ComputedRef<boolean>;
|
|
441
441
|
isStacked: import('vue').ComputedRef<boolean>;
|
|
442
442
|
startBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
443
|
-
cornerBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
444
443
|
headerBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
445
444
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
446
445
|
isReadonly: import('vue').ComputedRef<boolean>;
|
|
@@ -458,6 +457,7 @@ export declare function useAutocomplete(props: AutocompleteOwnProps, model: Ref<
|
|
|
458
457
|
ariaDescribedBy: import('vue').ComputedRef<string | undefined>;
|
|
459
458
|
descriptionBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
460
459
|
stackedBodyBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", {}, {}>>;
|
|
460
|
+
fieldCornerProps: import('vue').ComputedRef<import('../../Label').LabelProps>;
|
|
461
461
|
hasInsetLabelRow: import('vue').ComputedRef<boolean>;
|
|
462
462
|
insetLabelRowBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
463
463
|
stackedInputRowBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", {}, {}>>;
|
|
@@ -1,45 +1,50 @@
|
|
|
1
1
|
import { hasNamedSlot as e, hasSlotOrProp as t, isPropPresent as n } from "../../Utils/slotOrProp.js";
|
|
2
|
-
import r from "./
|
|
3
|
-
import
|
|
2
|
+
import r from "./BaseFieldCorner.js";
|
|
3
|
+
import i from "./BaseFieldLabel.js";
|
|
4
|
+
import { Fragment as a, computed as o, createCommentVNode as s, createElementBlock as c, createElementVNode as l, createSlots as u, createTextVNode as d, createVNode as f, defineComponent as p, guardReactiveProps as m, mergeProps as h, normalizeProps as g, openBlock as _, renderSlot as v, toDisplayString as y, unref as b, useSlots as x, withCtx as S } from "vue";
|
|
4
5
|
//#region src/Components/BaseField/BaseField.vue?vue&type=script&setup=true&lang.ts
|
|
5
|
-
var
|
|
6
|
+
var C = [
|
|
6
7
|
"data-invalid",
|
|
7
8
|
"aria-disabled",
|
|
8
9
|
"aria-readonly"
|
|
9
|
-
],
|
|
10
|
+
], w = ["id"], T = ["id", "aria-hidden"], E = /*@__PURE__*/ p({
|
|
10
11
|
inheritAttrs: !1,
|
|
11
12
|
__name: "BaseField",
|
|
12
13
|
props: { field: {} },
|
|
13
|
-
setup(
|
|
14
|
-
let
|
|
15
|
-
...
|
|
14
|
+
setup(p) {
|
|
15
|
+
let E = p, D = x(), O = o(() => ({
|
|
16
|
+
...E.field,
|
|
16
17
|
slots: {
|
|
17
|
-
...
|
|
18
|
-
...
|
|
18
|
+
...E.field.slots,
|
|
19
|
+
...D
|
|
19
20
|
}
|
|
20
|
-
})),
|
|
21
|
-
return (
|
|
22
|
-
"data-invalid":
|
|
23
|
-
"aria-disabled":
|
|
24
|
-
"aria-readonly":
|
|
21
|
+
})), k = o(() => t(D, "label", O.value.merged.value.label) || t(D, "corner", O.value.merged.value.corner));
|
|
22
|
+
return (o, p) => (_(), c("div", h(O.value.rootBind.value, {
|
|
23
|
+
"data-invalid": O.value.invalidated.value || void 0,
|
|
24
|
+
"aria-disabled": O.value.isDisabled.value || void 0,
|
|
25
|
+
"aria-readonly": O.value.isReadonly.value || void 0
|
|
25
26
|
}), [
|
|
26
|
-
|
|
27
|
+
k.value ? (_(), c("div", g(h({ key: 0 }, O.value.headerBind.value)), [f(i, { api: O.value }, u({ _: 2 }, [b(e)(b(D), "label") ? {
|
|
27
28
|
name: "label",
|
|
28
|
-
fn:
|
|
29
|
+
fn: S(() => [v(o.$slots, "label")]),
|
|
29
30
|
key: "0"
|
|
30
|
-
} : void 0]), 1032, ["api"]),
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
31
|
+
} : void 0]), 1032, ["api"]), f(r, { api: O.value }, u({ _: 2 }, [b(e)(b(D), "corner") ? {
|
|
32
|
+
name: "corner",
|
|
33
|
+
fn: S(() => [v(o.$slots, "corner")]),
|
|
34
|
+
key: "0"
|
|
35
|
+
} : void 0]), 1032, ["api"])], 16)) : s("", !0),
|
|
36
|
+
l("div", g(m(O.value.groupBind.value)), [
|
|
37
|
+
b(e)(b(D), "start") ? (_(), c("div", g(h({ key: 0 }, O.value.startSlotBind.value)), [v(o.$slots, "start")], 16)) : s("", !0),
|
|
38
|
+
v(o.$slots, "default"),
|
|
39
|
+
b(e)(b(D), "end") ? (_(), c("div", g(h({ key: 1 }, O.value.endSlotBind.value)), [v(o.$slots, "end")], 16)) : s("", !0)
|
|
35
40
|
], 16),
|
|
36
|
-
!
|
|
37
|
-
|
|
38
|
-
id: `${
|
|
39
|
-
"aria-hidden": !
|
|
40
|
-
}), [
|
|
41
|
-
], 16,
|
|
41
|
+
!O.value.invalidated.value && b(t)(b(D), "description", O.value.merged.value.description) ? (_(), c("p", h({ key: 1 }, O.value.descriptionBind.value, { id: `${O.value.controlId.value}-description` }), [b(e)(b(D), "description") ? v(o.$slots, "description", {}, void 0, void 0, 0) : b(n)(O.value.merged.value.description) ? (_(), c(a, { key: 1 }, [d(y(O.value.merged.value.description), 1)], 64)) : s("", !0)], 16, w)) : s("", !0),
|
|
42
|
+
O.value.merged.value.hideErrorMessage ? s("", !0) : (_(), c("p", h({ key: 2 }, O.value.errorBind.value, {
|
|
43
|
+
id: `${O.value.controlId.value}-error`,
|
|
44
|
+
"aria-hidden": !O.value.showErrorMessageContent.value || void 0
|
|
45
|
+
}), [O.value.showErrorMessageContent.value ? (_(), c(a, { key: 0 }, [b(e)(b(D), "errorMessage") ? v(o.$slots, "errorMessage", {}, void 0, void 0, 0) : b(n)(O.value.merged.value.errorMessage) ? (_(), c(a, { key: 1 }, [d(y(O.value.merged.value.errorMessage), 1)], 64)) : s("", !0)], 64)) : s("", !0)], 16, T))
|
|
46
|
+
], 16, C));
|
|
42
47
|
}
|
|
43
48
|
});
|
|
44
49
|
//#endregion
|
|
45
|
-
export {
|
|
50
|
+
export { E as default };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { UseBaseFieldReturn } from './composables/useBaseField';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
api: UseBaseFieldReturn;
|
|
4
|
+
};
|
|
5
|
+
declare var __VLS_8: {};
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
7
|
+
corner?: (props: typeof __VLS_8) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_base: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { hasNamedSlot as e, hasSlotOrProp as t } from "../../Utils/slotOrProp.js";
|
|
2
|
+
import n from "../Label/Label.js";
|
|
3
|
+
import { Fragment as r, createBlock as i, createCommentVNode as a, createElementBlock as o, createTextVNode as s, defineComponent as c, mergeProps as l, normalizeProps as u, openBlock as d, renderSlot as f, toDisplayString as p, unref as m, useSlots as h, withCtx as g } from "vue";
|
|
4
|
+
//#region src/Components/BaseField/BaseFieldCorner.vue?vue&type=script&setup=true&lang.ts
|
|
5
|
+
var _ = /*@__PURE__*/ c({
|
|
6
|
+
__name: "BaseFieldCorner",
|
|
7
|
+
props: { api: {} },
|
|
8
|
+
setup(c) {
|
|
9
|
+
let _ = h();
|
|
10
|
+
return (h, v) => m(t)(m(_), "corner", c.api.merged.value.corner) ? (d(), i(m(n), u(l({ key: 0 }, c.api.fieldCornerProps.value)), {
|
|
11
|
+
default: g(() => [m(e)(m(_), "corner") ? f(h.$slots, "corner", {}, void 0, void 0, 0) : (d(), o(r, { key: 1 }, [s(p(c.api.merged.value.corner), 1)], 64))]),
|
|
12
|
+
_: 3
|
|
13
|
+
}, 16)) : a("", !0);
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { _ as default };
|
|
@@ -48,9 +48,11 @@ export interface BaseFieldClasses {
|
|
|
48
48
|
}
|
|
49
49
|
export interface BaseFieldCustomProps {
|
|
50
50
|
/**
|
|
51
|
-
* Props forwarded to the corner
|
|
51
|
+
* Props forwarded to the corner `Label` (content stays owned by `BaseField`).
|
|
52
|
+
*
|
|
53
|
+
* @default undefined
|
|
52
54
|
*/
|
|
53
|
-
corner?:
|
|
55
|
+
corner?: Partial<Omit<LabelProps, "children">>;
|
|
54
56
|
/**
|
|
55
57
|
* Props forwarded to the helper text below the control group.
|
|
56
58
|
*/
|
|
@@ -38,7 +38,6 @@ export declare function useBaseField(props: MaybeRefOrGetter<Omit<BaseFieldOwnPr
|
|
|
38
38
|
}>>;
|
|
39
39
|
controlId: import('vue').ComputedRef<string>;
|
|
40
40
|
headerBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", HTMLAttributes | undefined, {}>>;
|
|
41
|
-
cornerBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", HTMLAttributes | undefined, {}>>;
|
|
42
41
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
43
42
|
isReadonly: import('vue').ComputedRef<boolean>;
|
|
44
43
|
sizeClasses: import('vue').ComputedRef<import('@bridge-ui/core/Tokens').BaseFieldSizeItem | undefined>;
|
|
@@ -49,6 +48,7 @@ export declare function useBaseField(props: MaybeRefOrGetter<Omit<BaseFieldOwnPr
|
|
|
49
48
|
ariaDescribedBy: import('vue').ComputedRef<string | undefined>;
|
|
50
49
|
fieldLabelProps: import('vue').ComputedRef<LabelProps>;
|
|
51
50
|
descriptionBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", HTMLAttributes | undefined, {}>>;
|
|
51
|
+
fieldCornerProps: import('vue').ComputedRef<LabelProps>;
|
|
52
52
|
showErrorMessageContent: import('vue').ComputedRef<boolean>;
|
|
53
53
|
};
|
|
54
54
|
export type UseBaseFieldReturn = ReturnType<typeof useBaseField>;
|
|
@@ -61,11 +61,14 @@ function _(_, v = {
|
|
|
61
61
|
"justify-between items-end": e(x, "label", w.value.label),
|
|
62
62
|
"justify-end": !e(x, "label", w.value.label),
|
|
63
63
|
[E.value.header ?? ""]: !0
|
|
64
|
-
}))), R = a(() =>
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
64
|
+
}))), R = a(() => {
|
|
65
|
+
let e = y.labelHtmlFor ?? ((e) => e);
|
|
66
|
+
return t(D.value?.corner, {
|
|
67
|
+
size: w.value.size,
|
|
68
|
+
for: e(j.value),
|
|
69
|
+
classes: { root: p({ [E.value.corner ?? ""]: !0 }) }
|
|
70
|
+
});
|
|
71
|
+
}), z = a(() => n(D.value?.group, {
|
|
69
72
|
role: "group",
|
|
70
73
|
id: j.value,
|
|
71
74
|
"aria-describedby": F.value,
|
|
@@ -82,7 +85,7 @@ function _(_, v = {
|
|
|
82
85
|
"group/end wrapper-end-slot shrink-0 flex items-center [&>*]:min-h-0": !0,
|
|
83
86
|
[E.value.end ?? ""]: !0
|
|
84
87
|
}))), H = a(() => n(D.value?.description, {}, p({
|
|
85
|
-
"mt-
|
|
88
|
+
"mt-1 px-1 text-dark-500 dark:text-dark-400": !0,
|
|
86
89
|
[M.value?.text ?? ""]: !0,
|
|
87
90
|
[E.value.description ?? ""]: !0
|
|
88
91
|
})));
|
|
@@ -91,7 +94,7 @@ function _(_, v = {
|
|
|
91
94
|
merged: w,
|
|
92
95
|
rootBind: I,
|
|
93
96
|
errorBind: a(() => n(D.value?.errorMessage, {}, p({
|
|
94
|
-
"mt-
|
|
97
|
+
"mt-1 px-1": !0,
|
|
95
98
|
"min-h-[1lh]": N.value,
|
|
96
99
|
"text-error-600 dark:text-error-400": !0,
|
|
97
100
|
[M.value?.text ?? ""]: !0,
|
|
@@ -100,7 +103,6 @@ function _(_, v = {
|
|
|
100
103
|
groupBind: z,
|
|
101
104
|
controlId: j,
|
|
102
105
|
headerBind: L,
|
|
103
|
-
cornerBind: R,
|
|
104
106
|
isDisabled: k,
|
|
105
107
|
isReadonly: A,
|
|
106
108
|
sizeClasses: M,
|
|
@@ -123,6 +125,7 @@ function _(_, v = {
|
|
|
123
125
|
});
|
|
124
126
|
}),
|
|
125
127
|
descriptionBind: H,
|
|
128
|
+
fieldCornerProps: R,
|
|
126
129
|
showErrorMessageContent: P
|
|
127
130
|
};
|
|
128
131
|
}
|
|
@@ -442,7 +442,6 @@ export declare function useColorField(props: ColorFieldOwnProps, model: Ref<null
|
|
|
442
442
|
isNotched: import('vue').ComputedRef<boolean>;
|
|
443
443
|
isStacked: import('vue').ComputedRef<boolean>;
|
|
444
444
|
startBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
445
|
-
cornerBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
446
445
|
headerBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
447
446
|
isDisabled: import('vue').ComputedRef<boolean>;
|
|
448
447
|
isReadonly: import('vue').ComputedRef<boolean>;
|
|
@@ -460,6 +459,7 @@ export declare function useColorField(props: ColorFieldOwnProps, model: Ref<null
|
|
|
460
459
|
ariaDescribedBy: import('vue').ComputedRef<string | undefined>;
|
|
461
460
|
descriptionBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
462
461
|
stackedBodyBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", {}, {}>>;
|
|
462
|
+
fieldCornerProps: import('vue').ComputedRef<import('../../Label').LabelProps>;
|
|
463
463
|
hasInsetLabelRow: import('vue').ComputedRef<boolean>;
|
|
464
464
|
insetLabelRowBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
|
|
465
465
|
stackedInputRowBind: import('vue').ComputedRef<import('@bridge-ui/core/Utils').MergePartBind<object, "class", {}, {}>>;
|