@adyen/bento-vue2 0.0.9 → 0.1.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/@types/components/accordion/accordion.vue.d.ts +1 -1
- package/dist/@types/components/avatar/avatar.types.d.ts +10 -0
- package/dist/@types/components/{profile-picture/profile-picture.vue.d.ts → avatar/avatar.vue.d.ts} +12 -10
- package/dist/@types/components/avatar/index.d.ts +2 -0
- package/dist/@types/components/button/button.vue.d.ts +1 -1
- package/dist/@types/components/country/composables/index.d.ts +4 -0
- package/dist/@types/components/country/composables/useCountryCapital/useCountryCapital.d.ts +4 -0
- package/dist/@types/components/country/composables/useCountryFlag.d.ts +2 -0
- package/dist/@types/components/country/composables/useCountryName/useCountryName.d.ts +2 -0
- package/dist/@types/components/country/composables/useCountryPhoneCode/useCountryPhoneCode.d.ts +3 -0
- package/dist/@types/components/country/country.types.d.ts +259 -0
- package/dist/@types/components/country/country.vue.d.ts +33 -0
- package/dist/@types/components/country/index.d.ts +2 -0
- package/dist/@types/components/data-grid/components/{data-grid-columns.vue.d.ts → data-grid-columns/data-grid-columns.vue.d.ts} +1 -1
- package/dist/@types/components/data-grid/components/data-grid-config-settings/data-grid-config-settings.vue.d.ts +43 -0
- package/dist/@types/components/data-grid/components/index.d.ts +2 -1
- package/dist/@types/components/data-grid/composables/index.d.ts +1 -0
- package/dist/@types/components/data-grid/composables/useConfigSettings.d.ts +5 -0
- package/dist/@types/components/data-grid/data-grid.vue.d.ts +2 -0
- package/dist/@types/components/dropdown/components/dropdown-base-textbox/dropdown-base-textbox.vue.d.ts +100 -0
- package/dist/@types/components/dropdown/dropdown.types.d.ts +2 -2
- package/dist/@types/components/input-field/index.d.ts +1 -0
- package/dist/@types/components/input-field/input-field.types.d.ts +4 -0
- package/dist/@types/components/input-field/input-field.vue.d.ts +28 -1
- package/dist/@types/components/search-bar/index.d.ts +3 -0
- package/dist/@types/components/search-bar/search-bar.types.d.ts +4 -0
- package/dist/@types/components/search-bar/search-bar.vue.d.ts +37 -0
- package/dist/@types/components/search-bar/useSearchBarDataFilter.d.ts +3 -0
- package/dist/@types/components/typography/typography.vue.d.ts +1 -1
- package/dist/@types/components.d.ts +4 -2
- package/dist/@types/index.d.ts +2 -0
- package/dist/@types/utils/ts/i18n.d.ts +5 -1
- package/dist/index.js +8061 -1879
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
- package/dist/@types/components/profile-picture/index.d.ts +0 -2
- package/dist/@types/components/profile-picture/profile-picture.types.d.ts +0 -4
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { BentoInputFieldType } from '@/components/input-field';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
ariaLabel: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
debounceTime: {
|
|
8
|
+
type: NumberConstructor;
|
|
9
|
+
default: number;
|
|
10
|
+
};
|
|
11
|
+
value: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: any;
|
|
14
|
+
};
|
|
15
|
+
}, {
|
|
16
|
+
searchTerm: import("vue").Ref<string>;
|
|
17
|
+
onClearSearch: () => void;
|
|
18
|
+
onInputEvent: (...args: void[]) => void;
|
|
19
|
+
BentoInputFieldType: typeof BentoInputFieldType;
|
|
20
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, ("input" | "clear")[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
ariaLabel: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
debounceTime: {
|
|
26
|
+
type: NumberConstructor;
|
|
27
|
+
default: number;
|
|
28
|
+
};
|
|
29
|
+
value: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: any;
|
|
32
|
+
};
|
|
33
|
+
}>>, {
|
|
34
|
+
value: string;
|
|
35
|
+
debounceTime: number;
|
|
36
|
+
}>;
|
|
37
|
+
export default _default;
|
|
@@ -70,9 +70,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
70
70
|
medium: boolean;
|
|
71
71
|
el: BentoTypographyElement;
|
|
72
72
|
large: boolean;
|
|
73
|
+
wide: boolean;
|
|
73
74
|
stronger: boolean;
|
|
74
75
|
strongest: boolean;
|
|
75
76
|
variant: BentoTypographyVariant;
|
|
76
|
-
wide: boolean;
|
|
77
77
|
}>;
|
|
78
78
|
export default _default;
|
|
@@ -7,7 +7,6 @@ import {
|
|
|
7
7
|
// AdlCardImage,
|
|
8
8
|
// AdlDropdown,
|
|
9
9
|
// AdlPageHeader,
|
|
10
|
-
// AdlProfilePicture,
|
|
11
10
|
// AdlSegmentedControl,
|
|
12
11
|
// AdlSegmentedOption,
|
|
13
12
|
// AdlTab,
|
|
@@ -22,6 +21,7 @@ import {
|
|
|
22
21
|
BentoCheckbox,
|
|
23
22
|
BentoCheckboxGroup,
|
|
24
23
|
BentoClickOutside,
|
|
24
|
+
BentoCountry,
|
|
25
25
|
BentoDataGrid,
|
|
26
26
|
BentoInputField,
|
|
27
27
|
BentoLink,
|
|
@@ -30,6 +30,7 @@ import {
|
|
|
30
30
|
BentoPagination,
|
|
31
31
|
BentoPopover,
|
|
32
32
|
BentoRadioGroup,
|
|
33
|
+
BentoSearchBar,
|
|
33
34
|
BentoStatus,
|
|
34
35
|
BentoTag,
|
|
35
36
|
BentoToggle,
|
|
@@ -45,7 +46,6 @@ declare module 'vue' {
|
|
|
45
46
|
// AdlCard: typeof AdlCard;
|
|
46
47
|
// AdlCardImage: typeof AdlCardImage;
|
|
47
48
|
// AdlDropdown: typeof AdlDropdown;
|
|
48
|
-
// AdlProfilePicture: typeof AdlProfilePicture;
|
|
49
49
|
// AdlPageHeader: typeof AdlPageHeader;
|
|
50
50
|
// AdlSegmentedControl: typeof AdlSegmentedControl;
|
|
51
51
|
// AdlSegmentedOption: typeof AdlSegmentedOption;
|
|
@@ -61,6 +61,7 @@ declare module 'vue' {
|
|
|
61
61
|
BentoCheckbox: typeof BentoCheckbox;
|
|
62
62
|
BentoCheckboxGroup: typeof BentoCheckboxGroup;
|
|
63
63
|
BentoClickOutside: typeof BentoClickOutside;
|
|
64
|
+
BentoCountry: typeof BentoCountry;
|
|
64
65
|
BentoDataGrid: typeof BentoDataGrid;
|
|
65
66
|
BentoInputField: typeof BentoInputField;
|
|
66
67
|
BentoLink: typeof BentoLink;
|
|
@@ -69,6 +70,7 @@ declare module 'vue' {
|
|
|
69
70
|
BentoPagination: typeof BentoPagination;
|
|
70
71
|
BentoPopover: typeof BentoPopover;
|
|
71
72
|
BentoRadioGroup: typeof BentoRadioGroup;
|
|
73
|
+
BentoSearchBar: typeof BentoSearchBar;
|
|
72
74
|
BentoStatus: typeof BentoStatus;
|
|
73
75
|
BentoTag: typeof BentoTag;
|
|
74
76
|
BentoToggle: typeof BentoToggle;
|
package/dist/@types/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export * from './components/button';
|
|
|
4
4
|
export * from './components/data-grid';
|
|
5
5
|
export * from './components/checkbox';
|
|
6
6
|
export * from './components/click-outside';
|
|
7
|
+
export * from './components/country';
|
|
7
8
|
export * from './components/filter-bar';
|
|
8
9
|
export * from './components/input-field';
|
|
9
10
|
export * from './components/loading-indicator';
|
|
@@ -11,6 +12,7 @@ export * from './components/link';
|
|
|
11
12
|
export * from './components/pagination';
|
|
12
13
|
export * from './components/popover';
|
|
13
14
|
export * from './components/radio-group';
|
|
15
|
+
export * from './components/search-bar';
|
|
14
16
|
export * from './components/status';
|
|
15
17
|
export * from './components/tag';
|
|
16
18
|
export * from './components/toggle';
|
|
@@ -5,7 +5,11 @@ export declare const defaultI18nOptions: {
|
|
|
5
5
|
fallbackLocale: string;
|
|
6
6
|
fallbackRoot: boolean;
|
|
7
7
|
};
|
|
8
|
-
export declare function createI18n(options?:
|
|
8
|
+
export declare function createI18n(options?: {
|
|
9
|
+
locale: string;
|
|
10
|
+
fallbackLocale: string;
|
|
11
|
+
fallbackRoot: boolean;
|
|
12
|
+
}): VueI18n;
|
|
9
13
|
export interface Composer {
|
|
10
14
|
locale: WritableComputedRef<string>;
|
|
11
15
|
t: typeof VueI18n.prototype.t;
|