@adyen/bento-vue2 0.9.2 → 0.9.3
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/card/card.types.d.ts +4 -0
- package/dist/@types/components/card/card.vue.d.ts +17 -1
- package/dist/@types/components/checkbox/checkbox.types.d.ts +5 -0
- package/dist/@types/components/checkbox/checkbox.vue.d.ts +12 -2
- package/dist/@types/components/checkbox/components/checkbox-group/checkbox-group.types.d.ts +1 -0
- package/dist/@types/components/checkbox/components/checkbox-group/checkbox-group.vue.d.ts +9 -0
- package/dist/@types/components/data-grid/data-grid.vue.d.ts +4 -0
- package/dist/@types/components/dropdown/components/dropdown-options-container/dropdown-options-container.vue.d.ts +1 -0
- package/dist/@types/components/dropdown/components/variants/dropdown-avatar/dropdown-avatar.vue.d.ts +1 -1
- package/dist/@types/components/dropdown/components/variants/dropdown-country/dropdown-country.vue.d.ts +1 -1
- package/dist/@types/components/dropdown/components/variants/dropdown-currency/dropdown-currency.vue.d.ts +1 -1
- package/dist/@types/components/dropdown/components/variants/dropdown-payment-method/dropdown-payment-method.vue.d.ts +1 -1
- package/dist/@types/components/dropdown/components/variants/dropdown-tag/dropdown-tag.vue.d.ts +1 -1
- package/dist/@types/components/dropdown/dropdown.vue.d.ts +2 -1
- package/dist/@types/components/filter-bar/components/all-filters-modal/all-filters-modal.vue.d.ts +6 -3
- package/dist/@types/components/filter-bar/components/date-filter/date-filter.vue.d.ts +18 -8
- package/dist/@types/components/filter-bar/components/date-range-filter/date-range-filter.vue.d.ts +11 -9
- package/dist/@types/components/filter-bar/components/select-filter/select-filter.vue.d.ts +9 -8
- package/dist/@types/components/filter-bar/components/select-filter/variants/select-avatar-filter/select-avatar-filter.vue.d.ts +8 -8
- package/dist/@types/components/filter-bar/components/select-filter/variants/select-country-filter/select-country-filter.vue.d.ts +8 -8
- package/dist/@types/components/filter-bar/components/select-filter/variants/select-currency-filter/select-currency-filter.vue.d.ts +8 -8
- package/dist/@types/components/filter-bar/components/select-filter/variants/select-payment-method-filter/select-payment-method-filter.vue.d.ts +8 -8
- package/dist/@types/components/filter-bar/components/select-filter/variants/select-tag-filter/select-tag-filter.vue.d.ts +8 -8
- package/dist/@types/components/filter-bar/filter-bar.types.d.ts +4 -0
- package/dist/@types/components/filter-bar/filter-bar.vue.d.ts +4 -2
- package/dist/@types/components/input-field/input-field.types.d.ts +4 -1
- package/dist/@types/components/internal/grid-layout/grid-layout.types.d.ts +5 -0
- package/dist/@types/components/internal/grid-layout/grid-layout.vue.d.ts +14 -1
- package/dist/@types/components/internal/grid-layout/index.d.ts +1 -0
- package/dist/@types/components/internal/listbox/listbox.vue.d.ts +8 -0
- package/dist/@types/components/modal/components/base-modal/base-modal.vue.d.ts +5 -0
- package/dist/@types/components/radio-group/components/radio-button/radio-button.types.d.ts +4 -0
- package/dist/@types/components/radio-group/components/radio-button/radio-button.vue.d.ts +16 -3
- package/dist/@types/components/radio-group/radio-group.types.d.ts +1 -0
- package/dist/@types/components/radio-group/radio-group.vue.d.ts +9 -0
- package/dist/@types/components/tooltip/tooltip.vue.d.ts +5 -5
- package/dist/index.js +6786 -6330
- package/dist/index.js.map +1 -1
- package/dist/web-types.json +101 -50
- package/package.json +2 -2
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.9.
|
|
4
|
+
"version": "0.9.3",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -1375,6 +1375,15 @@
|
|
|
1375
1375
|
},
|
|
1376
1376
|
"default": "BentoCardBackground.PRIMARY"
|
|
1377
1377
|
},
|
|
1378
|
+
{
|
|
1379
|
+
"name": "titleSize",
|
|
1380
|
+
"description": "Defines the title size of the card header",
|
|
1381
|
+
"value": {
|
|
1382
|
+
"kind": "expression",
|
|
1383
|
+
"type": "BentoCardTitleSize"
|
|
1384
|
+
},
|
|
1385
|
+
"default": "BentoCardTitleSize.DEFAULT"
|
|
1386
|
+
},
|
|
1378
1387
|
{
|
|
1379
1388
|
"name": "expandable",
|
|
1380
1389
|
"description": "The whole content of the card will be expandable in accordion manner",
|
|
@@ -1476,6 +1485,15 @@
|
|
|
1476
1485
|
},
|
|
1477
1486
|
"default": "false"
|
|
1478
1487
|
},
|
|
1488
|
+
{
|
|
1489
|
+
"name": "hasError",
|
|
1490
|
+
"description": "Setting this property to true will show the checkbox in error state.",
|
|
1491
|
+
"value": {
|
|
1492
|
+
"kind": "expression",
|
|
1493
|
+
"type": "boolean"
|
|
1494
|
+
},
|
|
1495
|
+
"default": "false"
|
|
1496
|
+
},
|
|
1479
1497
|
{
|
|
1480
1498
|
"name": "indeterminate",
|
|
1481
1499
|
"description": "The :indeterminate CSS pseudo-class represents any form element\nwhose state is indeterminate, such as checkboxes which have their HTML indeterminate attribute\nset to true, radio buttons which are members of a group in which all radio buttons are unchecked,\nand indeterminate <progress> elements. https://developer.mozilla.org/en-US/docs/Web/CSS/:indeterminate\nThis property lets you control the input.indeterminate native property.",
|
|
@@ -1553,6 +1571,15 @@
|
|
|
1553
1571
|
},
|
|
1554
1572
|
"default": "false"
|
|
1555
1573
|
},
|
|
1574
|
+
{
|
|
1575
|
+
"name": "hasError",
|
|
1576
|
+
"description": "If set to true, renders all checkboxes in the group in an error state.",
|
|
1577
|
+
"value": {
|
|
1578
|
+
"kind": "expression",
|
|
1579
|
+
"type": "boolean"
|
|
1580
|
+
},
|
|
1581
|
+
"default": "false"
|
|
1582
|
+
},
|
|
1556
1583
|
{
|
|
1557
1584
|
"name": "label",
|
|
1558
1585
|
"required": true,
|
|
@@ -1921,6 +1948,14 @@
|
|
|
1921
1948
|
"name": "bento-date-filter",
|
|
1922
1949
|
"description": "The Date filter displays a calendar that allows\nto select a single date.",
|
|
1923
1950
|
"attributes": [
|
|
1951
|
+
{
|
|
1952
|
+
"name": "isDateInput",
|
|
1953
|
+
"value": {
|
|
1954
|
+
"kind": "expression",
|
|
1955
|
+
"type": "boolean"
|
|
1956
|
+
},
|
|
1957
|
+
"default": "true"
|
|
1958
|
+
},
|
|
1924
1959
|
{
|
|
1925
1960
|
"name": "defaultValue",
|
|
1926
1961
|
"description": "Default value of the filter to reset to.",
|
|
@@ -1948,6 +1983,15 @@
|
|
|
1948
1983
|
"type": "string"
|
|
1949
1984
|
}
|
|
1950
1985
|
},
|
|
1986
|
+
{
|
|
1987
|
+
"name": "onlySlot",
|
|
1988
|
+
"description": "Renders the base filter's slot content only - leaving out the button and the popover.\nUsed for the allFiltersModal component.",
|
|
1989
|
+
"value": {
|
|
1990
|
+
"kind": "expression",
|
|
1991
|
+
"type": "boolean"
|
|
1992
|
+
},
|
|
1993
|
+
"default": "false"
|
|
1994
|
+
},
|
|
1951
1995
|
{
|
|
1952
1996
|
"name": "options",
|
|
1953
1997
|
"description": "List of options that are needed to setup the filter\nAvailable options:\n - firstDayOfWeek: Allows you to set the first day of the week. 0 is sunday, 1 is monday, 6 is saturday\n - isDateDisabled: Indicate if a date should be disabled or not",
|
|
@@ -1965,15 +2009,6 @@
|
|
|
1965
2009
|
"type": "BentoDateFilterValue"
|
|
1966
2010
|
},
|
|
1967
2011
|
"default": "undefined"
|
|
1968
|
-
},
|
|
1969
|
-
{
|
|
1970
|
-
"name": "onlySlot",
|
|
1971
|
-
"description": "Renders the base filter's slot content only - leaving out the button and the popover.\nUsed for the allFiltersModal component.",
|
|
1972
|
-
"value": {
|
|
1973
|
-
"kind": "expression",
|
|
1974
|
-
"type": "boolean"
|
|
1975
|
-
},
|
|
1976
|
-
"default": "false"
|
|
1977
2012
|
}
|
|
1978
2013
|
],
|
|
1979
2014
|
"source": {
|
|
@@ -2163,6 +2198,15 @@
|
|
|
2163
2198
|
"type": "string"
|
|
2164
2199
|
}
|
|
2165
2200
|
},
|
|
2201
|
+
{
|
|
2202
|
+
"name": "onlySlot",
|
|
2203
|
+
"description": "Renders the base filter's slot content only - leaving out the button and the popover.\nUsed for the allFiltersModal component.",
|
|
2204
|
+
"value": {
|
|
2205
|
+
"kind": "expression",
|
|
2206
|
+
"type": "boolean"
|
|
2207
|
+
},
|
|
2208
|
+
"default": "false"
|
|
2209
|
+
},
|
|
2166
2210
|
{
|
|
2167
2211
|
"name": "options",
|
|
2168
2212
|
"description": "List of options that are needed to setup the filter\nAvailable options:\n - firstDayOfWeek: Allows you to set the first day of the week. 0 is sunday, 1 is monday, 6 is saturday\n - isDateDisabled: Indicate if a date should be disabled or not",
|
|
@@ -2180,15 +2224,6 @@
|
|
|
2180
2224
|
"type": "BentoDateRangeFilterValue"
|
|
2181
2225
|
},
|
|
2182
2226
|
"default": "() => ({ startDate: undefined, endDate: undefined })"
|
|
2183
|
-
},
|
|
2184
|
-
{
|
|
2185
|
-
"name": "onlySlot",
|
|
2186
|
-
"description": "Renders the base filter's slot content only - leaving out the button and the popover.\nUsed for the allFiltersModal component.",
|
|
2187
|
-
"value": {
|
|
2188
|
-
"kind": "expression",
|
|
2189
|
-
"type": "boolean"
|
|
2190
|
-
},
|
|
2191
|
-
"default": "false"
|
|
2192
2227
|
}
|
|
2193
2228
|
],
|
|
2194
2229
|
"source": {
|
|
@@ -2417,11 +2452,6 @@
|
|
|
2417
2452
|
"default": "() => []"
|
|
2418
2453
|
}
|
|
2419
2454
|
],
|
|
2420
|
-
"events": [
|
|
2421
|
-
{
|
|
2422
|
-
"name": "input"
|
|
2423
|
-
}
|
|
2424
|
-
],
|
|
2425
2455
|
"source": {
|
|
2426
2456
|
"module": "./src/components/filter-bar/filter-bar.vue",
|
|
2427
2457
|
"symbol": "default"
|
|
@@ -2790,6 +2820,15 @@
|
|
|
2790
2820
|
},
|
|
2791
2821
|
"default": "false"
|
|
2792
2822
|
},
|
|
2823
|
+
{
|
|
2824
|
+
"name": "noResultsMessage",
|
|
2825
|
+
"required": true,
|
|
2826
|
+
"description": "Messaged displayed when no items are listed in the listbox",
|
|
2827
|
+
"value": {
|
|
2828
|
+
"kind": "expression",
|
|
2829
|
+
"type": "string"
|
|
2830
|
+
}
|
|
2831
|
+
},
|
|
2793
2832
|
{
|
|
2794
2833
|
"name": "searching",
|
|
2795
2834
|
"description": "Flag that indicates that an external search it's being made\nto filter out the items inside the the multi-select listbox\n\nIf enabled, hides the \"Select all\" checkbox in \"multiple\" mode.",
|
|
@@ -3954,7 +3993,16 @@
|
|
|
3954
3993
|
},
|
|
3955
3994
|
{
|
|
3956
3995
|
"name": "disabled",
|
|
3957
|
-
"description": "If set to true, renders all
|
|
3996
|
+
"description": "If set to true, renders all radio-buttons in the group in a disabled state.",
|
|
3997
|
+
"value": {
|
|
3998
|
+
"kind": "expression",
|
|
3999
|
+
"type": "boolean"
|
|
4000
|
+
},
|
|
4001
|
+
"default": "false"
|
|
4002
|
+
},
|
|
4003
|
+
{
|
|
4004
|
+
"name": "hasError",
|
|
4005
|
+
"description": "If set to true, renders all radio-buttons in the group in an error state.",
|
|
3958
4006
|
"value": {
|
|
3959
4007
|
"kind": "expression",
|
|
3960
4008
|
"type": "boolean"
|
|
@@ -4223,6 +4271,15 @@
|
|
|
4223
4271
|
"type": "string"
|
|
4224
4272
|
}
|
|
4225
4273
|
},
|
|
4274
|
+
{
|
|
4275
|
+
"name": "onlySlot",
|
|
4276
|
+
"description": "Renders the base filter's slot content only - leaving out the button and the popover.\nUsed for the allFiltersModal component.",
|
|
4277
|
+
"value": {
|
|
4278
|
+
"kind": "expression",
|
|
4279
|
+
"type": "boolean"
|
|
4280
|
+
},
|
|
4281
|
+
"default": "false"
|
|
4282
|
+
},
|
|
4226
4283
|
{
|
|
4227
4284
|
"name": "options",
|
|
4228
4285
|
"description": "List of options that are needed to setup the filter\nAvailable options:\n - multiple: If \"true\", the user will be able to select multiple items.\n - listboxItems: The option elements to populate the filter with.",
|
|
@@ -4240,15 +4297,6 @@
|
|
|
4240
4297
|
"type": "BentoListboxSelectedValue"
|
|
4241
4298
|
},
|
|
4242
4299
|
"default": "undefined"
|
|
4243
|
-
},
|
|
4244
|
-
{
|
|
4245
|
-
"name": "onlySlot",
|
|
4246
|
-
"description": "Renders the base filter's slot content only - leaving out the button and the popover.\nUsed for the allFiltersModal component.",
|
|
4247
|
-
"value": {
|
|
4248
|
-
"kind": "expression",
|
|
4249
|
-
"type": "boolean"
|
|
4250
|
-
},
|
|
4251
|
-
"default": "false"
|
|
4252
4300
|
}
|
|
4253
4301
|
],
|
|
4254
4302
|
"slots": [
|
|
@@ -4967,14 +5015,6 @@
|
|
|
4967
5015
|
"symbol": "default"
|
|
4968
5016
|
}
|
|
4969
5017
|
},
|
|
4970
|
-
{
|
|
4971
|
-
"name": "checkbox.test",
|
|
4972
|
-
"description": "",
|
|
4973
|
-
"source": {
|
|
4974
|
-
"module": "./src/components/checkbox/checkbox.test.vue",
|
|
4975
|
-
"symbol": "default"
|
|
4976
|
-
}
|
|
4977
|
-
},
|
|
4978
5018
|
{
|
|
4979
5019
|
"name": "click-outside-stub",
|
|
4980
5020
|
"description": "",
|
|
@@ -6014,11 +6054,21 @@
|
|
|
6014
6054
|
"attributes": [
|
|
6015
6055
|
{
|
|
6016
6056
|
"name": "columnWidth",
|
|
6057
|
+
"description": "Sets the responsive columns widths for the grid.",
|
|
6017
6058
|
"value": {
|
|
6018
6059
|
"kind": "expression",
|
|
6019
6060
|
"type": "GridLayoutColumnWidths"
|
|
6020
6061
|
},
|
|
6021
6062
|
"default": "null"
|
|
6063
|
+
},
|
|
6064
|
+
{
|
|
6065
|
+
"name": "containerType",
|
|
6066
|
+
"description": "Set the type of CSS container the grid layout has",
|
|
6067
|
+
"value": {
|
|
6068
|
+
"kind": "expression",
|
|
6069
|
+
"type": "GridLayoutContainerType"
|
|
6070
|
+
},
|
|
6071
|
+
"default": "GridLayoutContainerType.INLINE"
|
|
6022
6072
|
}
|
|
6023
6073
|
],
|
|
6024
6074
|
"slots": [
|
|
@@ -6627,6 +6677,15 @@
|
|
|
6627
6677
|
},
|
|
6628
6678
|
"default": "false"
|
|
6629
6679
|
},
|
|
6680
|
+
{
|
|
6681
|
+
"name": "hasError",
|
|
6682
|
+
"description": "Shows radio-button in error state (optional)",
|
|
6683
|
+
"value": {
|
|
6684
|
+
"kind": "expression",
|
|
6685
|
+
"type": "boolean"
|
|
6686
|
+
},
|
|
6687
|
+
"default": "false"
|
|
6688
|
+
},
|
|
6630
6689
|
{
|
|
6631
6690
|
"name": "value",
|
|
6632
6691
|
"required": true,
|
|
@@ -6667,14 +6726,6 @@
|
|
|
6667
6726
|
"symbol": "default"
|
|
6668
6727
|
}
|
|
6669
6728
|
},
|
|
6670
|
-
{
|
|
6671
|
-
"name": "radio-button.test",
|
|
6672
|
-
"description": "",
|
|
6673
|
-
"source": {
|
|
6674
|
-
"module": "./src/components/radio-group/components/radio-button/radio-button.test.vue",
|
|
6675
|
-
"symbol": "default"
|
|
6676
|
-
}
|
|
6677
|
-
},
|
|
6678
6729
|
{
|
|
6679
6730
|
"name": "segmented-control.test",
|
|
6680
6731
|
"description": "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adyen/bento-vue2",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"description": "Adyen Bento Vue2 components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"url": "git@github.com:Adyen/bento.git"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@adyen/bento-design-tokens": "0.5.
|
|
53
|
+
"@adyen/bento-design-tokens": "0.5.3",
|
|
54
54
|
"@adyen/ui-assets-flag-icons": "1.2.0",
|
|
55
55
|
"@adyen/ui-assets-icons-16": "3.1.0",
|
|
56
56
|
"@adyen/ui-assets-payment-method-icons": "5.2.0",
|