@adyen/bento-vue2 0.1.3 → 0.1.5

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.
Files changed (29) hide show
  1. package/dist/@types/components/avatar/avatar.vue.d.ts +21 -36
  2. package/dist/@types/components/avatar/index.d.ts +1 -2
  3. package/dist/@types/components/{avatar/avatar.types.d.ts → avatar-image/avatar-image.types.d.ts} +2 -2
  4. package/dist/@types/components/avatar-image/avatar-image.vue.d.ts +55 -0
  5. package/dist/@types/components/avatar-image/index.d.ts +2 -0
  6. package/dist/@types/components/button/components/button-actions/button-actions.types.d.ts +1 -0
  7. package/dist/@types/components/date/date.types.d.ts +17 -0
  8. package/dist/@types/components/date/date.vue.d.ts +30 -0
  9. package/dist/@types/components/date/index.d.ts +2 -0
  10. package/dist/@types/components/dropdown/components/dropdown-base-textbox/dropdown-base-textbox.types.d.ts +0 -4
  11. package/dist/@types/components/dropdown/components/dropdown-base-textbox/dropdown-base-textbox.vue.d.ts +0 -11
  12. package/dist/@types/components/dropdown/components/dropdown-default-textbox/dropdown-default-textbox.vue.d.ts +0 -9
  13. package/dist/@types/components/dropdown/components/dropdown-options-container/components/dropdown-multi-select/dropdown-multi-select.vue.d.ts +10 -1
  14. package/dist/@types/components/dropdown/components/dropdown-options-container/components/dropdown-single-select-option/dropdown-single-select-option.vue.d.ts +9 -0
  15. package/dist/@types/components/dropdown/components/dropdown-small-textbox/dropdown-small-textbox.vue.d.ts +0 -9
  16. package/dist/@types/components/dropdown/dropdown.types.d.ts +1 -0
  17. package/dist/@types/components/dropdown/dropdown.vue.d.ts +0 -9
  18. package/dist/@types/components/filter-bar/filter-bar.vue.d.ts +6 -2
  19. package/dist/@types/components/input-field/input-field.vue.d.ts +1 -0
  20. package/dist/@types/components/popover/popover.vue.d.ts +10 -0
  21. package/dist/@types/components/search-bar/search-bar.vue.d.ts +1 -0
  22. package/dist/@types/components.d.ts +4 -2
  23. package/dist/@types/composables/use-checkbox-select-all/use-checkbox-select-all.d.ts +4 -4
  24. package/dist/@types/index.d.ts +2 -1
  25. package/dist/index.js +4892 -2813
  26. package/dist/index.js.map +1 -1
  27. package/package.json +9 -8
  28. package/dist/@types/components/user-profile/index.d.ts +0 -1
  29. 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",
3
+ "version": "0.1.5",
4
4
  "description": "Adyen Bento Vue2 components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -32,8 +32,8 @@
32
32
  "lint:eslint": "eslint -c ./.eslintrc.js src test --exit-on-fatal-error",
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
- "test": "jest src",
36
- "test:watch": "jest --watch --",
35
+ "test": "TZ='Europe/Paris' jest src",
36
+ "test:watch": "TZ='Europe/Paris' 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,10 +50,11 @@
50
50
  "url": "git@github.com:Adyen/bento.git"
51
51
  },
52
52
  "dependencies": {
53
- "@adyen/bento-design-tokens": "0.1.3",
54
- "@adyen/ui-assets-flag-icons": "0.4.17",
55
- "@adyen/ui-assets-icons-16": "1.0.8",
56
- "@popperjs/core": "2.11.6",
53
+ "@adyen/bento-design-tokens": "0.2.0",
54
+ "@adyen/ui-assets-flag-icons": "1.0.0",
55
+ "@adyen/ui-assets-icons-16": "3.0.0",
56
+ "@popperjs/core": "2.11.8",
57
+ "date-fns": "2.28.0",
57
58
  "focus-lock": "0.11.0",
58
59
  "uuid": "9.0.0"
59
60
  },
@@ -67,7 +68,7 @@
67
68
  "react": "16.14.0"
68
69
  },
69
70
  "devDependencies": {
70
- "@adyen/bento-cli": "0.0.4",
71
+ "@adyen/bento-cli": "0.0.5",
71
72
  "@mdx-js/react": "1.6.22",
72
73
  "@playwright/experimental-ct-vue2": "1.30.0",
73
74
  "@storybook/addon-a11y": "6.5.4",
@@ -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;