@adyen/bento-vue2 0.0.1 → 0.0.2
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/@types/components/button/components/button-actions/button-actions.types.d.ts +1 -1
- package/dist/@types/components/button/components/button-group.vue.d.ts +2 -2
- package/dist/@types/components/button/components/loading-button/loading-button.types.d.ts +1 -1
- package/dist/@types/components/card/components/card-image/card-image.vue.d.ts +1 -1
- package/dist/@types/components/checkbox/checkbox.types.d.ts +2 -2
- package/dist/@types/components/data-grid/composables/useCalculateColumnWidth/useCalculateColumnWidth.types.d.ts +1 -1
- package/dist/@types/components/data-grid/data-grid.types.d.ts +5 -5
- package/dist/@types/components/data-grid/data-grid.vue.d.ts +1 -1
- package/dist/@types/components/dropdown/components/dropdown-input-container/dropdown-input-container.vue.d.ts +1 -1
- package/dist/@types/components/dropdown/components/dropdown-options-container/components/dropdown-option/dropdown-option.vue.d.ts +1 -1
- package/dist/@types/components/dropdown/dropdown.types.d.ts +3 -3
- package/dist/@types/components/filter-bar/components/base-filter/base-filter.vue.d.ts +1 -1
- package/dist/@types/components/filter-bar/filter-bar.types.d.ts +1 -1
- package/dist/@types/components/input-field/input-field.vue.d.ts +1 -1
- package/dist/@types/components/link/link.vue.d.ts +4 -4
- package/dist/@types/components/page-header/components/title-item/title-item.vue.d.ts +1 -1
- package/dist/@types/components/popover/components/popover-dismiss-button/popover-dismiss-button.vue.d.ts +1 -1
- package/dist/@types/components/popover/components/popover-image/popover-image.vue.d.ts +1 -1
- package/dist/@types/components/popover/popover.types.d.ts +1 -1
- package/dist/@types/components/popper-container/popper-container.types.d.ts +8 -8
- package/dist/@types/components/radio-button/index.d.ts +1 -0
- package/dist/@types/components/{input-radio/input-radio.vue.d.ts → radio-button/radio-button.vue.d.ts} +2 -2
- package/dist/@types/components/textarea/textarea.vue.d.ts +2 -2
- package/dist/@types/components/tooltip/tooltip.types.d.ts +1 -1
- package/dist/@types/components.d.ts +2 -2
- package/dist/@types/index.d.ts +1 -1
- package/dist/@types/types/maybe-ref.d.ts +1 -1
- package/dist/@types/types/vue-node-element.d.ts +1 -1
- package/dist/index.js +120 -120
- package/dist/index.js.map +1 -1
- package/dist/web-types.json +59 -59
- package/package.json +25 -30
- package/dist/@types/components/input-radio/index.d.ts +0 -1
|
@@ -4,7 +4,7 @@ export interface BentoButtonActionObject {
|
|
|
4
4
|
event: (event: Event) => void;
|
|
5
5
|
icon?: VueNodeElement;
|
|
6
6
|
}
|
|
7
|
-
export type BentoButtonActionsList = Array<BentoButtonActionObject>;
|
|
7
|
+
export declare type BentoButtonActionsList = Array<BentoButtonActionObject>;
|
|
8
8
|
export declare enum BentoButtonActionsLayout {
|
|
9
9
|
BUTTONS_END = "buttons-end",
|
|
10
10
|
FILL_CONTAINER = "fill-container",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue/types/v3-component-options
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{}>>, {}>, {
|
|
2
2
|
default: (_: {}) => any;
|
|
3
3
|
}>;
|
|
4
4
|
export default _default;
|
|
5
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
5
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
6
|
new (): {
|
|
7
7
|
$slots: S;
|
|
8
8
|
};
|
|
@@ -7,7 +7,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7
7
|
type: StringConstructor;
|
|
8
8
|
required: true;
|
|
9
9
|
};
|
|
10
|
-
}, {}, {}, {}, {}, import("vue/types/v3-component-options
|
|
10
|
+
}, {}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
11
11
|
src: {
|
|
12
12
|
type: StringConstructor;
|
|
13
13
|
required: true;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type BentoMultiCheckboxType = Array<string | number>;
|
|
2
|
-
export type BentoCheckboxType = boolean | BentoMultiCheckboxType;
|
|
1
|
+
export declare type BentoMultiCheckboxType = Array<string | number>;
|
|
2
|
+
export declare type BentoCheckboxType = boolean | BentoMultiCheckboxType;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
2
|
import { BentoColumn } from '../../data-grid.types';
|
|
3
|
-
export type FlexColumnLookup = Record<BentoColumn['field'], {
|
|
3
|
+
export declare type FlexColumnLookup = Record<BentoColumn['field'], {
|
|
4
4
|
flex: number;
|
|
5
5
|
computedWidth: number;
|
|
6
6
|
frozen: boolean;
|
|
@@ -26,8 +26,8 @@ export interface BentoDatagridDataItem {
|
|
|
26
26
|
id?: string;
|
|
27
27
|
[fieldName: string]: unknown;
|
|
28
28
|
}
|
|
29
|
-
export type BentoDatagridData = BentoDatagridDataItem[];
|
|
30
|
-
export type BentoDatagridDataItemId = string | number;
|
|
31
|
-
export type BentoDatagridGetDataItemIdFn = (item: BentoDatagridDataItem) => BentoDatagridDataItemId;
|
|
32
|
-
export type BentoDatagridIsDataItemDisabledFn = (item: BentoDatagridDataItem) => boolean;
|
|
33
|
-
export type BentoDatagridPaginationProps = InstanceType<typeof BentoPagination>['$props'];
|
|
29
|
+
export declare type BentoDatagridData = BentoDatagridDataItem[];
|
|
30
|
+
export declare type BentoDatagridDataItemId = string | number;
|
|
31
|
+
export declare type BentoDatagridGetDataItemIdFn = (item: BentoDatagridDataItem) => BentoDatagridDataItemId;
|
|
32
|
+
export declare type BentoDatagridIsDataItemDisabledFn = (item: BentoDatagridDataItem) => boolean;
|
|
33
|
+
export declare type BentoDatagridPaginationProps = InstanceType<typeof BentoPagination>['$props'];
|
|
@@ -174,7 +174,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
174
174
|
paginationNavigate: (page: number) => void;
|
|
175
175
|
onItemsPerPageChange: (itemsPerPage: number) => void;
|
|
176
176
|
body: any;
|
|
177
|
-
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("
|
|
177
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("navigate" | "select" | "items-page" | "column-resize" | "sort" | "update:filters")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
178
178
|
condensed: {
|
|
179
179
|
type: BooleanConstructor;
|
|
180
180
|
default: boolean;
|
|
@@ -33,7 +33,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
33
|
shouldShowPlaceholder: import("vue").ComputedRef<boolean>;
|
|
34
34
|
onCloseDropdown: () => void;
|
|
35
35
|
onToggleDropdown: () => void;
|
|
36
|
-
}, {}, {}, {}, import("vue/types/v3-component-options
|
|
36
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
37
37
|
ariaLabel: {
|
|
38
38
|
type: StringConstructor;
|
|
39
39
|
default: any;
|
|
@@ -19,7 +19,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19
19
|
}>;
|
|
20
20
|
ariaSelected: import("vue").ComputedRef<boolean>;
|
|
21
21
|
onOptionSelected: () => void;
|
|
22
|
-
}, {}, {}, {}, import("vue/types/v3-component-options
|
|
22
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, "select"[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
23
23
|
label: {
|
|
24
24
|
type: StringConstructor;
|
|
25
25
|
required: true;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export type AdlDropdownValue = string | number;
|
|
1
|
+
export declare type AdlDropdownValue = string | number;
|
|
2
2
|
export interface AdlDropdownOptionItem {
|
|
3
3
|
label: string;
|
|
4
4
|
value: AdlDropdownValue;
|
|
5
5
|
}
|
|
6
|
-
export type AdlDropdownSelectedValue = AdlDropdownValue;
|
|
7
|
-
export type AdlDropdownOptions = Array<AdlDropdownOptionItem>;
|
|
6
|
+
export declare type AdlDropdownSelectedValue = AdlDropdownValue;
|
|
7
|
+
export declare type AdlDropdownOptions = Array<AdlDropdownOptionItem>;
|
|
@@ -61,7 +61,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
61
61
|
onClickClear: () => void;
|
|
62
62
|
filterButtonRef: any;
|
|
63
63
|
BentoButtonVariant: typeof BentoButtonVariant;
|
|
64
|
-
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("open" | "
|
|
64
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("open" | "close" | "clear" | "dismiss" | "apply")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
65
65
|
alwaysShowNameInLabel: {
|
|
66
66
|
type: BooleanConstructor;
|
|
67
67
|
default: boolean;
|
|
@@ -38,7 +38,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
38
38
|
inputFieldElement: any;
|
|
39
39
|
shouldDisplayStaticValueAtStart: import("vue").ComputedRef<boolean>;
|
|
40
40
|
shouldDisplayStaticValueAtEnd: import("vue").ComputedRef<boolean>;
|
|
41
|
-
}, {}, {}, {}, import("vue/types/v3-component-options
|
|
41
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, "input"[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
42
42
|
disabled: {
|
|
43
43
|
type: BooleanConstructor;
|
|
44
44
|
default: boolean;
|
|
@@ -5,12 +5,12 @@ export interface Props extends RouterLinkProps {
|
|
|
5
5
|
external?: boolean;
|
|
6
6
|
}
|
|
7
7
|
import type { RouterLinkProps } from 'vue-router/types/router';
|
|
8
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, {}, {}, {}, import("vue/types/v3-component-options
|
|
8
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}>, {
|
|
9
9
|
default: (_: import("vue-router/types/router").RouterLinkSlotArgument) => any;
|
|
10
10
|
}>;
|
|
11
11
|
export default _default;
|
|
12
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
13
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
12
|
+
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
13
|
+
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
14
14
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
15
15
|
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
16
16
|
} : {
|
|
@@ -18,7 +18,7 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
18
18
|
required: true;
|
|
19
19
|
};
|
|
20
20
|
};
|
|
21
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
21
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
22
22
|
new (): {
|
|
23
23
|
$slots: S;
|
|
24
24
|
};
|
|
@@ -3,7 +3,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
-
}, {}, {}, {}, {}, import("vue/types/v3-component-options
|
|
6
|
+
}, {}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
7
7
|
title: {
|
|
8
8
|
type: StringConstructor;
|
|
9
9
|
required: true;
|
|
@@ -9,7 +9,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
9
|
'b-popover-dismiss-button--on-image': boolean;
|
|
10
10
|
}>;
|
|
11
11
|
BentoButtonVariant: typeof BentoButtonVariant;
|
|
12
|
-
}, {}, {}, {}, import("vue/types/v3-component-options
|
|
12
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
13
13
|
onImage: {
|
|
14
14
|
type: BooleanConstructor;
|
|
15
15
|
default: boolean;
|
|
@@ -7,7 +7,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7
7
|
type: StringConstructor;
|
|
8
8
|
required: true;
|
|
9
9
|
};
|
|
10
|
-
}, {}, {}, {}, {}, import("vue/types/v3-component-options
|
|
10
|
+
}, {}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
11
11
|
src: {
|
|
12
12
|
type: StringConstructor;
|
|
13
13
|
required: true;
|
|
@@ -16,4 +16,4 @@ export declare const BentoPopoverPositions: {
|
|
|
16
16
|
BOTTOM: import("../popper-container").PopperContainerPositionBasic.BOTTOM;
|
|
17
17
|
LEFT: import("../popper-container").PopperContainerPositionBasic.LEFT;
|
|
18
18
|
};
|
|
19
|
-
export type BentoPopoverPositions = PopperContainerPosition;
|
|
19
|
+
export declare type BentoPopoverPositions = PopperContainerPosition;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import type { Modifier, StrictModifiers } from '@popperjs/core';
|
|
2
|
-
type ArrowModifier = Modifier<'arrow', unknown>;
|
|
3
|
-
type ApplyArrowHideModifier = Modifier<'applyArrowHide', unknown>;
|
|
4
|
-
type SameWidthModifier = Modifier<'sameWidth', unknown>;
|
|
5
|
-
type TrackPositionModifer = Modifier<'trackPosition', unknown>;
|
|
6
|
-
type FlipModifer = Modifier<'flip', unknown>;
|
|
7
|
-
export type ExtendedModifiers = StrictModifiers | ArrowModifier | ApplyArrowHideModifier | SameWidthModifier | TrackPositionModifer | FlipModifer;
|
|
2
|
+
declare type ArrowModifier = Modifier<'arrow', unknown>;
|
|
3
|
+
declare type ApplyArrowHideModifier = Modifier<'applyArrowHide', unknown>;
|
|
4
|
+
declare type SameWidthModifier = Modifier<'sameWidth', unknown>;
|
|
5
|
+
declare type TrackPositionModifer = Modifier<'trackPosition', unknown>;
|
|
6
|
+
declare type FlipModifer = Modifier<'flip', unknown>;
|
|
7
|
+
export declare type ExtendedModifiers = StrictModifiers | ArrowModifier | ApplyArrowHideModifier | SameWidthModifier | TrackPositionModifer | FlipModifer;
|
|
8
8
|
export interface PopperContainerArrowProp {
|
|
9
9
|
classes?: string[];
|
|
10
10
|
padding?: string;
|
|
@@ -49,6 +49,6 @@ export declare const PopperContainerPosition: {
|
|
|
49
49
|
BOTTOM: PopperContainerPositionBasic.BOTTOM;
|
|
50
50
|
LEFT: PopperContainerPositionBasic.LEFT;
|
|
51
51
|
};
|
|
52
|
-
export type PopperContainerPosition = PopperContainerPositionBasic | PopperContainerPositionExtended;
|
|
53
|
-
export type FallbackPositionProp = PopperContainerPosition[] | PopperContainerPosition;
|
|
52
|
+
export declare type PopperContainerPosition = PopperContainerPositionBasic | PopperContainerPositionExtended;
|
|
53
|
+
export declare type FallbackPositionProp = PopperContainerPosition[] | PopperContainerPosition;
|
|
54
54
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as BentoRadioButton } from './radio-button.vue';
|
|
@@ -20,12 +20,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
20
20
|
shouldShowLabel: ComputedRef<boolean>;
|
|
21
21
|
shouldShowSubLabel: ComputedRef<boolean>;
|
|
22
22
|
conditionalClass: ComputedRef<{
|
|
23
|
-
'b-
|
|
23
|
+
'b-radio-button--disabled': boolean;
|
|
24
24
|
}>;
|
|
25
25
|
onClick: () => void;
|
|
26
26
|
BentoTypographyVariant: typeof BentoTypographyVariant;
|
|
27
27
|
BentoTypographyElement: typeof BentoTypographyElement;
|
|
28
|
-
}, {}, {}, {}, import("vue/types/v3-component-options
|
|
28
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, "input"[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
29
29
|
disabled: {
|
|
30
30
|
type: BooleanConstructor;
|
|
31
31
|
default: boolean;
|
|
@@ -17,7 +17,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
17
|
};
|
|
18
18
|
}, {}, {}, {}, {
|
|
19
19
|
onInput(event: Event): void;
|
|
20
|
-
}, import("vue/types/v3-component-options
|
|
20
|
+
}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
21
21
|
label: {
|
|
22
22
|
type: StringConstructor;
|
|
23
23
|
default: string;
|
|
@@ -35,9 +35,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
35
35
|
default: string;
|
|
36
36
|
};
|
|
37
37
|
}>>, {
|
|
38
|
+
description: string;
|
|
38
39
|
value: string;
|
|
39
40
|
label: string;
|
|
40
|
-
description: string;
|
|
41
41
|
placeholder: string;
|
|
42
42
|
}>;
|
|
43
43
|
export default _default;
|
|
@@ -5,7 +5,7 @@ export declare const BentoTooltipPosition: {
|
|
|
5
5
|
BOTTOM: PopperContainerPositionBasic.BOTTOM;
|
|
6
6
|
LEFT: PopperContainerPositionBasic.LEFT;
|
|
7
7
|
};
|
|
8
|
-
export type BentoTooltipPosition = PopperContainerPositionBasic;
|
|
8
|
+
export declare type BentoTooltipPosition = PopperContainerPositionBasic;
|
|
9
9
|
export declare enum BentoTooltipState {
|
|
10
10
|
HIDDEN = "hidden"
|
|
11
11
|
}
|
|
@@ -22,12 +22,12 @@ import {
|
|
|
22
22
|
BentoCheckbox,
|
|
23
23
|
BentoDataGrid,
|
|
24
24
|
BentoInputField,
|
|
25
|
-
BentoInputRadio,
|
|
26
25
|
BentoLink,
|
|
27
26
|
BentoLoadingButton,
|
|
28
27
|
BentoLoadingIndicator,
|
|
29
28
|
BentoPagination,
|
|
30
29
|
BentoPopover,
|
|
30
|
+
BentoRadioButton,
|
|
31
31
|
BentoStatus,
|
|
32
32
|
BentoTag,
|
|
33
33
|
BentoToggle,
|
|
@@ -60,12 +60,12 @@ declare module 'vue' {
|
|
|
60
60
|
BentoCheckbox: typeof BentoCheckbox;
|
|
61
61
|
BentoDataGrid: typeof BentoDataGrid;
|
|
62
62
|
BentoInputField: typeof BentoInputField;
|
|
63
|
-
BentoInputRadio: typeof BentoInputRadio;
|
|
64
63
|
BentoLink: typeof BentoLink;
|
|
65
64
|
BentoLoadingButton: typeof BentoLoadingButton;
|
|
66
65
|
BentoLoadingIndicator: typeof BentoLoadingIndicator;
|
|
67
66
|
BentoPagination: typeof BentoPagination;
|
|
68
67
|
BentoPopover: typeof BentoPopover;
|
|
68
|
+
BentoRadioButton: typeof BentoRadioButton;
|
|
69
69
|
BentoStatus: typeof BentoStatus;
|
|
70
70
|
BentoTag: typeof BentoTag;
|
|
71
71
|
BentoToggle: typeof BentoToggle;
|
package/dist/@types/index.d.ts
CHANGED
|
@@ -3,12 +3,12 @@ export * from './components/button';
|
|
|
3
3
|
export * from './components/data-grid';
|
|
4
4
|
export * from './components/checkbox';
|
|
5
5
|
export * from './components/filter-bar';
|
|
6
|
-
export * from './components/input-radio';
|
|
7
6
|
export * from './components/input-field';
|
|
8
7
|
export * from './components/loading-indicator';
|
|
9
8
|
export * from './components/link';
|
|
10
9
|
export * from './components/pagination';
|
|
11
10
|
export * from './components/popover';
|
|
11
|
+
export * from './components/radio-button';
|
|
12
12
|
export * from './components/status';
|
|
13
13
|
export * from './components/tag';
|
|
14
14
|
export * from './components/toggle';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
|
-
export type MaybeRef<T> = T | Ref<T>;
|
|
2
|
+
export declare type MaybeRef<T> = T | Ref<T>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import Vue from 'vue';
|
|
2
|
-
export type VueNodeElement = Vue | Element | (Vue | Element)[] | undefined;
|
|
2
|
+
export declare type VueNodeElement = Vue | Element | (Vue | Element)[] | undefined;
|