@adyen/bento-vue2 0.1.2 → 0.1.4
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/avatar/avatar.vue.d.ts +21 -36
- package/dist/@types/components/avatar/index.d.ts +1 -2
- package/dist/@types/components/{avatar/avatar.types.d.ts → avatar-image/avatar-image.types.d.ts} +2 -2
- package/dist/@types/components/avatar-image/avatar-image.vue.d.ts +55 -0
- package/dist/@types/components/avatar-image/index.d.ts +2 -0
- package/dist/@types/components/button/components/button-actions/button-actions.types.d.ts +12 -1
- package/dist/@types/components/button/components/button-actions/button-actions.vue.d.ts +2 -2
- package/dist/@types/components/card/card.types.d.ts +3 -9
- package/dist/@types/components/card/card.vue.d.ts +63 -28
- package/dist/@types/components/card/index.d.ts +1 -2
- package/dist/@types/components/data-grid/components/data-grid-config-settings/data-grid-config-settings.vue.d.ts +22 -1
- package/dist/@types/components/data-grid/composables/useCalculateColumnWidth/useCalculateColumnWidth.d.ts +2 -0
- package/dist/@types/components/data-grid/composables/useConfigSettings.d.ts +3 -1
- package/dist/@types/components/data-grid/data-grid.types.d.ts +2 -0
- package/dist/@types/components/data-grid/data-grid.vue.d.ts +22 -0
- package/dist/@types/components/dropdown/components/dropdown-base-textbox/dropdown-base-textbox.types.d.ts +0 -4
- package/dist/@types/components/dropdown/components/dropdown-base-textbox/dropdown-base-textbox.vue.d.ts +1 -11
- package/dist/@types/components/dropdown/components/dropdown-default-textbox/dropdown-default-textbox.vue.d.ts +0 -9
- package/dist/@types/components/dropdown/components/dropdown-options-container/components/dropdown-multi-select/dropdown-multi-select.vue.d.ts +42 -0
- package/dist/@types/components/dropdown/components/dropdown-options-container/components/dropdown-multi-select/index.d.ts +1 -0
- package/dist/@types/components/dropdown/components/dropdown-options-container/components/dropdown-option/dropdown-option.vue.d.ts +29 -0
- package/dist/@types/components/dropdown/components/dropdown-options-container/components/dropdown-option/index.d.ts +1 -0
- package/dist/@types/components/dropdown/components/dropdown-options-container/components/dropdown-single-select-option/dropdown-single-select-option.vue.d.ts +25 -20
- package/dist/@types/components/dropdown/components/dropdown-options-container/dropdown-options-container.vue.d.ts +14 -5
- package/dist/@types/components/dropdown/components/dropdown-small-textbox/dropdown-small-textbox.vue.d.ts +0 -9
- package/dist/@types/components/dropdown/dropdown.types.d.ts +8 -6
- package/dist/@types/components/dropdown/dropdown.vue.d.ts +33 -32
- package/dist/@types/components/dropdown/index.d.ts +1 -1
- package/dist/@types/components/filter-bar/components/base-filter/base-filter.vue.d.ts +1 -17
- package/dist/@types/components/filter-bar/components/base-filter/components/index.d.ts +1 -0
- package/dist/@types/components/filter-bar/components/text-filter/text-filter.vue.d.ts +0 -9
- package/dist/@types/components/filter-bar/filter-bar.types.d.ts +0 -1
- package/dist/@types/components/input-field/input-field.vue.d.ts +2 -1
- package/dist/@types/components/pagination/components/pagination-context/pagination-context.vue.d.ts +2 -2
- package/dist/@types/components/popover/popover.vue.d.ts +12 -2
- package/dist/@types/components/search-bar/search-bar.vue.d.ts +173 -1
- package/dist/@types/components.d.ts +6 -8
- package/dist/@types/composables/index.d.ts +1 -0
- package/dist/@types/composables/use-checkbox-select-all/use-checkbox-select-all.d.ts +8 -0
- package/dist/@types/index.d.ts +3 -1
- package/dist/index.js +2640 -2203
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/dist/@types/components/card/components/card-image/card-image.vue.d.ts +0 -20
- package/dist/@types/components/filter-bar/components/base-filter/composables/index.d.ts +0 -9
- package/dist/@types/components/user-profile/index.d.ts +0 -1
- package/dist/@types/components/user-profile/user-profile.vue.d.ts +0 -40
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adyen/bento-vue2",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Adyen Bento Vue2 components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:style -- --fix",
|
|
34
34
|
"lint:style": "stylelint --allow-empty-input --config ../../.stylelintrc.js '**/*.scss'",
|
|
35
35
|
"test": "jest src",
|
|
36
|
-
"test:watch": "jest
|
|
36
|
+
"test:watch": "jest --watch --",
|
|
37
37
|
"e2e": "test/bin/e2e-docker.sh",
|
|
38
38
|
"e2e:clean": "rm -rf playwright/.cache || true",
|
|
39
39
|
"e2e:debug": "npm run e2e:ci -- --debug",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"url": "git@github.com:Adyen/bento.git"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@adyen/bento-design-tokens": "0.1.
|
|
53
|
+
"@adyen/bento-design-tokens": "0.1.4",
|
|
54
54
|
"@adyen/ui-assets-flag-icons": "0.4.17",
|
|
55
55
|
"@adyen/ui-assets-icons-16": "1.0.8",
|
|
56
56
|
"@popperjs/core": "2.11.6",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"react": "16.14.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@adyen/bento-cli": "0.0.
|
|
70
|
+
"@adyen/bento-cli": "0.0.5",
|
|
71
71
|
"@mdx-js/react": "1.6.22",
|
|
72
72
|
"@playwright/experimental-ct-vue2": "1.30.0",
|
|
73
73
|
"@storybook/addon-a11y": "6.5.4",
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
src: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
required: true;
|
|
5
|
-
};
|
|
6
|
-
alt: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
required: true;
|
|
9
|
-
};
|
|
10
|
-
}, {}, {}, {}, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
-
src: {
|
|
12
|
-
type: StringConstructor;
|
|
13
|
-
required: true;
|
|
14
|
-
};
|
|
15
|
-
alt: {
|
|
16
|
-
type: StringConstructor;
|
|
17
|
-
required: true;
|
|
18
|
-
};
|
|
19
|
-
}>>, {}>;
|
|
20
|
-
export default _default;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Ref } from 'vue';
|
|
2
|
-
interface UseLabelOptions {
|
|
3
|
-
alwaysShowNameInLabel: Ref<boolean>;
|
|
4
|
-
isActive: Ref<boolean>;
|
|
5
|
-
}
|
|
6
|
-
export declare const useFilterLabel: (filterLabel: string, filterValue: Ref<string>, options: UseLabelOptions) => {
|
|
7
|
-
label: import("vue").ComputedRef<string>;
|
|
8
|
-
};
|
|
9
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as BentoUserProfile } from './user-profile.vue';
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { BentoAvatarColor, BentoAvatarVariant } from '@/components/avatar';
|
|
2
|
-
import { BentoTypographyElement, BentoTypographyVariant } from '@/components/typography';
|
|
3
|
-
declare const _default: import("vue").DefineComponent<{
|
|
4
|
-
iconOnly: {
|
|
5
|
-
type: BooleanConstructor;
|
|
6
|
-
default: boolean;
|
|
7
|
-
};
|
|
8
|
-
username: {
|
|
9
|
-
type: StringConstructor;
|
|
10
|
-
required: true;
|
|
11
|
-
};
|
|
12
|
-
src: {
|
|
13
|
-
type: StringConstructor;
|
|
14
|
-
default: any;
|
|
15
|
-
};
|
|
16
|
-
}, {
|
|
17
|
-
BentoAvatarVariant: typeof BentoAvatarVariant;
|
|
18
|
-
BentoTypographyElement: typeof BentoTypographyElement;
|
|
19
|
-
BentoTypographyVariant: typeof BentoTypographyVariant;
|
|
20
|
-
computedAriaLabel: import("vue").ComputedRef<string>;
|
|
21
|
-
computedUsername: import("vue").ComputedRef<string>;
|
|
22
|
-
avatarColor: import("vue").ComputedRef<BentoAvatarColor>;
|
|
23
|
-
}, {}, {}, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
-
iconOnly: {
|
|
25
|
-
type: BooleanConstructor;
|
|
26
|
-
default: boolean;
|
|
27
|
-
};
|
|
28
|
-
username: {
|
|
29
|
-
type: StringConstructor;
|
|
30
|
-
required: true;
|
|
31
|
-
};
|
|
32
|
-
src: {
|
|
33
|
-
type: StringConstructor;
|
|
34
|
-
default: any;
|
|
35
|
-
};
|
|
36
|
-
}>>, {
|
|
37
|
-
src: string;
|
|
38
|
-
iconOnly: boolean;
|
|
39
|
-
}>;
|
|
40
|
-
export default _default;
|