@adyen/bento-vue2 0.0.2 → 0.0.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/badge/badge.vue.d.ts +5 -5
- package/dist/@types/components/button/button.vue.d.ts +6 -11
- package/dist/@types/components/checkbox/checkbox.vue.d.ts +10 -1
- package/dist/@types/components/data-grid/data-grid.types.d.ts +5 -0
- package/dist/@types/components/data-grid/data-grid.vue.d.ts +22 -1
- package/dist/@types/components/link/index.d.ts +1 -0
- package/dist/@types/components/link/link.types.d.ts +4 -0
- package/dist/@types/components/link/link.vue.d.ts +16 -2
- package/dist/@types/components/pagination/pagination.vue.d.ts +12 -0
- package/dist/@types/components/popover/popover.vue.d.ts +3 -0
- package/dist/@types/components/radio-button/radio-button.vue.d.ts +1 -1
- package/dist/@types/components/segmented-control/segmented-control.vue.d.ts +1 -1
- package/dist/@types/components/tag/tag.vue.d.ts +1 -0
- package/dist/@types/utils/ts/aria-label.d.ts +9 -0
- package/dist/index.js +1084 -1041
- package/dist/index.js.map +1 -1
- package/dist/web-types.json +32 -4
- package/package.json +12 -9
package/dist/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
3
|
"name": "@adyen/bento-vue2",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -724,7 +724,7 @@
|
|
|
724
724
|
"attributes": [
|
|
725
725
|
{
|
|
726
726
|
"name": "disabled",
|
|
727
|
-
"description": "Disables button
|
|
727
|
+
"description": "Disables button functionality",
|
|
728
728
|
"value": {
|
|
729
729
|
"kind": "expression",
|
|
730
730
|
"type": "boolean"
|
|
@@ -856,6 +856,15 @@
|
|
|
856
856
|
"type": "boolean"
|
|
857
857
|
},
|
|
858
858
|
"default": "false"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"name": "ariaLabel",
|
|
862
|
+
"description": "Accessible name for the radio button component. It is strongly recommended to pas this value in case this component is used without a label.",
|
|
863
|
+
"value": {
|
|
864
|
+
"kind": "expression",
|
|
865
|
+
"type": "string"
|
|
866
|
+
},
|
|
867
|
+
"default": "null"
|
|
859
868
|
}
|
|
860
869
|
],
|
|
861
870
|
"events": [
|
|
@@ -1213,7 +1222,7 @@
|
|
|
1213
1222
|
},
|
|
1214
1223
|
{
|
|
1215
1224
|
"name": "inverse",
|
|
1216
|
-
"description": "Displays the loading indicator in a
|
|
1225
|
+
"description": "Displays the loading indicator in a white variant",
|
|
1217
1226
|
"value": {
|
|
1218
1227
|
"kind": "expression",
|
|
1219
1228
|
"type": "boolean"
|
|
@@ -1248,6 +1257,15 @@
|
|
|
1248
1257
|
},
|
|
1249
1258
|
"default": "null"
|
|
1250
1259
|
},
|
|
1260
|
+
{
|
|
1261
|
+
"name": "hidePageSize",
|
|
1262
|
+
"description": "Toggles the visibility of the \"results per page\" part of the pagination component.",
|
|
1263
|
+
"value": {
|
|
1264
|
+
"kind": "expression",
|
|
1265
|
+
"type": "boolean"
|
|
1266
|
+
},
|
|
1267
|
+
"default": "false"
|
|
1268
|
+
},
|
|
1251
1269
|
{
|
|
1252
1270
|
"name": "page",
|
|
1253
1271
|
"description": "The current page number of the pager.",
|
|
@@ -1264,7 +1282,7 @@
|
|
|
1264
1282
|
"kind": "expression",
|
|
1265
1283
|
"type": "number"
|
|
1266
1284
|
},
|
|
1267
|
-
"default": "
|
|
1285
|
+
"default": "20"
|
|
1268
1286
|
},
|
|
1269
1287
|
{
|
|
1270
1288
|
"name": "totalCount",
|
|
@@ -2248,6 +2266,16 @@
|
|
|
2248
2266
|
"kind": "expression",
|
|
2249
2267
|
"type": "boolean"
|
|
2250
2268
|
}
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
"name": "variant",
|
|
2272
|
+
"required": false,
|
|
2273
|
+
"description": "Link variant type affecting visual style.",
|
|
2274
|
+
"value": {
|
|
2275
|
+
"kind": "expression",
|
|
2276
|
+
"type": "BentoLinkVariant"
|
|
2277
|
+
},
|
|
2278
|
+
"default": "BentoLinkVariant.DEFAULT"
|
|
2251
2279
|
}
|
|
2252
2280
|
],
|
|
2253
2281
|
"slots": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adyen/bento-vue2",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Adyen Bento Vue2 components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -34,11 +34,13 @@
|
|
|
34
34
|
"lint:style": "stylelint --allow-empty-input --config ../../.stylelintrc.js '**/*.scss'",
|
|
35
35
|
"test": "jest src/components",
|
|
36
36
|
"test:watch": "jest src/components --watch",
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
37
|
+
"e2e": "test/bin/e2e-docker.sh",
|
|
38
|
+
"e2e:clean": "rm -rf playwright/.cache || true",
|
|
39
|
+
"e2e:debug": "npm run e2e:ci -- --debug",
|
|
40
|
+
"e2e:update": "test/bin/e2e-docker.sh --update-snapshots",
|
|
41
|
+
"e2e:report": "playwright show-report playwright-report",
|
|
42
|
+
"e2e:ci": "npm run e2e:clean && playwright test -c playwright.integration.config.ts",
|
|
43
|
+
"e2e:ci:update": "npm run e2e:clean && playwright test -c playwright.integration.config.ts --update-snapshots",
|
|
42
44
|
"watch": "webpack --watch --config config/webpack.dev.ts"
|
|
43
45
|
},
|
|
44
46
|
"author": "Design System",
|
|
@@ -48,13 +50,13 @@
|
|
|
48
50
|
"url": "git@github.com:Adyen/bento.git"
|
|
49
51
|
},
|
|
50
52
|
"dependencies": {
|
|
51
|
-
"@adyen/bento-design-tokens": "0.0.
|
|
52
|
-
"@
|
|
53
|
+
"@adyen/bento-design-tokens": "0.0.4",
|
|
54
|
+
"@adyen/ui-assets-icons-16": "1.0.4",
|
|
55
|
+
"@popperjs/core": "2.11.6",
|
|
53
56
|
"focus-lock": "0.11.0",
|
|
54
57
|
"uuid": "9.0.0"
|
|
55
58
|
},
|
|
56
59
|
"peerDependencies": {
|
|
57
|
-
"@adyen/ui-assets-icons-16": "1.0.4",
|
|
58
60
|
"portal-vue": "2.1.7",
|
|
59
61
|
"vue": "~2.7",
|
|
60
62
|
"vue-i18n": "8.26.7",
|
|
@@ -66,6 +68,7 @@
|
|
|
66
68
|
"devDependencies": {
|
|
67
69
|
"@adyen/bento-cli": "0.0.2",
|
|
68
70
|
"@mdx-js/react": "1.6.22",
|
|
71
|
+
"@playwright/experimental-ct-vue2": "1.30.0",
|
|
69
72
|
"@storybook/addon-a11y": "6.5.4",
|
|
70
73
|
"@storybook/addon-essentials": "6.5.4",
|
|
71
74
|
"@storybook/addon-storysource": "6.5.4",
|