@adyen/bento-vue2 0.5.0 → 0.7.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/button/components/button-actions/button-actions.types.d.ts +3 -0
- package/dist/@types/components/data-grid/components/data-grid-columns/data-grid-columns-types.d.ts +2 -0
- package/dist/@types/components/data-grid/components/data-grid-columns/data-grid-columns.vue.d.ts +29 -1
- package/dist/@types/components/data-grid/composables/useColumnReorderer/useColumnReorderer.d.ts +1 -1
- package/dist/@types/components/data-grid/composables/useConfigSettings/useConfigSettings.d.ts +3 -2
- package/dist/@types/components/data-grid/data-grid.vue.d.ts +2 -0
- package/dist/@types/components/date/date.types.d.ts +1 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar/components/date-picker-calendar-day/__test__/date-picker-calendar-day-stub.vue.d.ts +34 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar/components/date-picker-calendar-day/date-picker-calendar-day.types.d.ts +9 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar/components/date-picker-calendar-day/date-picker-calendar-day.vue.d.ts +39 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar/components/date-picker-calendar-day/index.d.ts +1 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar/date-picker-calendar.types.d.ts +8 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar/date-picker-calendar.vue.d.ts +121 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar/index.d.ts +2 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar-container/__test__/date-picker-calendar-container-stub.vue.d.ts +43 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar-container/date-picker-calendar-container.types.d.ts +3 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar-container/date-picker-calendar-container.vue.d.ts +99 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar-container/index.d.ts +1 -0
- package/dist/@types/components/date-picker/date-picker.types.d.ts +16 -0
- package/dist/@types/components/date-picker/date-picker.vue.d.ts +102 -0
- package/dist/@types/components/date-picker/index.d.ts +2 -0
- package/dist/@types/components/menu/components/menu-item/menu-item.types.d.ts +1 -0
- package/dist/@types/components/menu/components/menu-item/menu-item.vue.d.ts +12 -0
- package/dist/@types/components/menu/components/menu-item-list/menu-item-list.vue.d.ts +9 -2
- package/dist/@types/components/menu/components/menu-list-container/menu-list-container.vue.d.ts +2 -0
- package/dist/@types/components/menu/components/sub-menu-item-list/sub-menu-item-list.vue.d.ts +41 -0
- package/dist/@types/components/menu/menu.types.d.ts +2 -1
- package/dist/@types/components/menu/menu.vue.d.ts +24 -3
- package/dist/@types/components/tag/tag.types.d.ts +1 -1
- package/dist/@types/components.d.ts +4 -2
- package/dist/@types/index.d.ts +2 -0
- package/dist/index.js +4364 -3465
- package/dist/index.js.map +1 -1
- package/dist/web-types.json +389 -11
- package/package.json +5 -5
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.
|
|
4
|
+
"version": "0.7.0",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -943,7 +943,7 @@
|
|
|
943
943
|
{
|
|
944
944
|
"name": "actions",
|
|
945
945
|
"required": true,
|
|
946
|
-
"description": "List of actions that will be used to render the buttons.\nFirst element in the list will be rendered as \"primary\".\nAll elements after the first will be rendered as \"secondary\".\n\nEach object in the list should have a `title`, an `event` and\n(optional) a Vue `icon` from the library `@adyen/ui-assets-icons-16`.\n\n`title`: Button's text.\n\n`event`: Event triggered when clicking the Button.\n\n`icon` (optional): Vue Icon from the library `@adyen/ui-assets-icons-16`.\n\n`disabled` (optional): Disables the action.\n\n```\n[{\n title: 'Primary',\n event: () => { ... },\n icon: FourPeopleIcon\n}, {\n title: 'Secondary',\n event: () => { ... }\n disabled: true\n}]\n```",
|
|
946
|
+
"description": "List of actions that will be used to render the buttons.\nFirst element in the list will be rendered as \"primary\".\nAll elements after the first will be rendered as \"secondary\".\n\nEach object in the list should have a `title`, an `event` and\n(optional) a Vue `icon` from the library `@adyen/ui-assets-icons-16`.\n\n`title`: Button's text.\n\n`event`: Event triggered when clicking the Button.\n\n`icon` (optional): Vue Icon from the library `@adyen/ui-assets-icons-16`.\n\n`disabled` (optional): Disables the action.\n\n`variant` (optional): Sets button's variant background color.\n\n`critical` (optional): Sets button red border adn color.\n\n```\n[{\n title: 'Primary',\n event: () => { ... },\n icon: FourPeopleIcon\n}, {\n title: 'Secondary',\n event: () => { ... }\n disabled: true,\n variant: BentoButtonVariant.PRIMARY,\n critical: true\n}]\n```",
|
|
947
947
|
"value": {
|
|
948
948
|
"kind": "expression",
|
|
949
949
|
"type": "BentoButtonActionsList"
|
|
@@ -1290,7 +1290,7 @@
|
|
|
1290
1290
|
},
|
|
1291
1291
|
{
|
|
1292
1292
|
"name": "columnPanel",
|
|
1293
|
-
"description": "Enables / hides the
|
|
1293
|
+
"description": "Enables / hides the view settings panel and the column contextual menu functionality.",
|
|
1294
1294
|
"value": {
|
|
1295
1295
|
"kind": "expression",
|
|
1296
1296
|
"type": "boolean"
|
|
@@ -1528,6 +1528,88 @@
|
|
|
1528
1528
|
"symbol": "default"
|
|
1529
1529
|
}
|
|
1530
1530
|
},
|
|
1531
|
+
{
|
|
1532
|
+
"name": "bento-date-picker",
|
|
1533
|
+
"description": "Date picker selector.",
|
|
1534
|
+
"attributes": [
|
|
1535
|
+
{
|
|
1536
|
+
"name": "description",
|
|
1537
|
+
"description": "Descriptive supporting text visbile underneath the dropdown.",
|
|
1538
|
+
"value": {
|
|
1539
|
+
"kind": "expression",
|
|
1540
|
+
"type": "string"
|
|
1541
|
+
},
|
|
1542
|
+
"default": "undefined"
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
"name": "disabled",
|
|
1546
|
+
"description": "Disables dropdown functionality.",
|
|
1547
|
+
"value": {
|
|
1548
|
+
"kind": "expression",
|
|
1549
|
+
"type": "boolean"
|
|
1550
|
+
},
|
|
1551
|
+
"default": "false"
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
"name": "firstDayOfWeek",
|
|
1555
|
+
"description": "Allows you to set the first day of the week. 0 is sunday, 1 is monday, 6 is saturday",
|
|
1556
|
+
"value": {
|
|
1557
|
+
"kind": "expression",
|
|
1558
|
+
"type": "BentoDatePickerFirstDayOfWeek"
|
|
1559
|
+
},
|
|
1560
|
+
"default": "BentoDatePickerFirstDayOfWeek.MONDAY"
|
|
1561
|
+
},
|
|
1562
|
+
{
|
|
1563
|
+
"name": "isDateDisabled",
|
|
1564
|
+
"description": "Indicate if a date should be disabled or not",
|
|
1565
|
+
"value": {
|
|
1566
|
+
"kind": "expression",
|
|
1567
|
+
"type": "func"
|
|
1568
|
+
},
|
|
1569
|
+
"default": "undefined"
|
|
1570
|
+
},
|
|
1571
|
+
{
|
|
1572
|
+
"name": "label",
|
|
1573
|
+
"description": "Text that is displayed as a label above the element.",
|
|
1574
|
+
"value": {
|
|
1575
|
+
"kind": "expression",
|
|
1576
|
+
"type": "string"
|
|
1577
|
+
},
|
|
1578
|
+
"default": "undefined"
|
|
1579
|
+
},
|
|
1580
|
+
{
|
|
1581
|
+
"name": "optional",
|
|
1582
|
+
"description": "Highlights the dropdown is optional.",
|
|
1583
|
+
"value": {
|
|
1584
|
+
"kind": "expression",
|
|
1585
|
+
"type": "boolean"
|
|
1586
|
+
},
|
|
1587
|
+
"default": "false"
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
"name": "required",
|
|
1591
|
+
"description": "Highlights the dropdown is required.",
|
|
1592
|
+
"value": {
|
|
1593
|
+
"kind": "expression",
|
|
1594
|
+
"type": "boolean"
|
|
1595
|
+
},
|
|
1596
|
+
"default": "false"
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
"name": "value",
|
|
1600
|
+
"description": "Selected date",
|
|
1601
|
+
"value": {
|
|
1602
|
+
"kind": "expression",
|
|
1603
|
+
"type": "date"
|
|
1604
|
+
},
|
|
1605
|
+
"default": "null"
|
|
1606
|
+
}
|
|
1607
|
+
],
|
|
1608
|
+
"source": {
|
|
1609
|
+
"module": "./src/components/date-picker/date-picker.vue",
|
|
1610
|
+
"symbol": "default"
|
|
1611
|
+
}
|
|
1612
|
+
},
|
|
1531
1613
|
{
|
|
1532
1614
|
"name": "bento-dropdown-avatar",
|
|
1533
1615
|
"description": "A Avatar Dropdown showing a selectable list of countries.",
|
|
@@ -2440,13 +2522,31 @@
|
|
|
2440
2522
|
}
|
|
2441
2523
|
},
|
|
2442
2524
|
{
|
|
2443
|
-
"name": "
|
|
2525
|
+
"name": "tertiaryButton",
|
|
2444
2526
|
"description": "Displays the menu button in its ghost variant",
|
|
2445
2527
|
"value": {
|
|
2446
2528
|
"kind": "expression",
|
|
2447
2529
|
"type": "boolean"
|
|
2448
2530
|
},
|
|
2449
2531
|
"default": "false"
|
|
2532
|
+
},
|
|
2533
|
+
{
|
|
2534
|
+
"name": "menuPosition",
|
|
2535
|
+
"description": "The position of where the menu should open.",
|
|
2536
|
+
"value": {
|
|
2537
|
+
"kind": "expression",
|
|
2538
|
+
"type": "BentoPopoverPositions"
|
|
2539
|
+
},
|
|
2540
|
+
"default": "BentoPopoverPositions.BOTTOM_START"
|
|
2541
|
+
},
|
|
2542
|
+
{
|
|
2543
|
+
"name": "menuFixedPositioning",
|
|
2544
|
+
"description": "Instructs the menu popover to be visible outside of the containing container.\nhttps://popper.js.org/docs/v2/constructors/#strategy",
|
|
2545
|
+
"value": {
|
|
2546
|
+
"kind": "expression",
|
|
2547
|
+
"type": "boolean"
|
|
2548
|
+
},
|
|
2549
|
+
"default": "false"
|
|
2450
2550
|
}
|
|
2451
2551
|
],
|
|
2452
2552
|
"source": {
|
|
@@ -2454,6 +2554,19 @@
|
|
|
2454
2554
|
"symbol": "default"
|
|
2455
2555
|
}
|
|
2456
2556
|
},
|
|
2557
|
+
{
|
|
2558
|
+
"name": "bento-menu-list-container",
|
|
2559
|
+
"description": "Menu list container component to set the correct styling in a menu list. For internal use only.",
|
|
2560
|
+
"slots": [
|
|
2561
|
+
{
|
|
2562
|
+
"name": "default"
|
|
2563
|
+
}
|
|
2564
|
+
],
|
|
2565
|
+
"source": {
|
|
2566
|
+
"module": "./src/components/menu/components/menu-list-container/menu-list-container.vue",
|
|
2567
|
+
"symbol": "default"
|
|
2568
|
+
}
|
|
2569
|
+
},
|
|
2457
2570
|
{
|
|
2458
2571
|
"name": "bento-pagination",
|
|
2459
2572
|
"description": "Paginiation component to help users page through data sets.\n\nThere are two ways of doing navigation in this component:\n 1. (Basic) You tell the component if there is a next page (hasNext)\n 2. (Enhanced) You tell the component:\n - How many total items exist (totalCount)\n - The max number of items that you show/fetch per page (size)\n - In this case you should not set the hasNext props\n\nIf you have the data available and opt to use the Enhanced way you get extra controls:\n - Page dropdown selector\n - Last page button\n - \"Showing 10 of 200 items\" text",
|
|
@@ -3018,10 +3131,10 @@
|
|
|
3018
3131
|
"attributes": [
|
|
3019
3132
|
{
|
|
3020
3133
|
"name": "options",
|
|
3021
|
-
"description": "List of options that are needed to setup the country 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 {@see
|
|
3134
|
+
"description": "List of options that are needed to setup the country 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 {@see BentoSelectCountryFilterOptions}\n - variant: Which label variant to display for the option item {@see BentoCountryVariant}.",
|
|
3022
3135
|
"value": {
|
|
3023
3136
|
"kind": "expression",
|
|
3024
|
-
"type": "
|
|
3137
|
+
"type": "BentoSelectCountryFilterOptions"
|
|
3025
3138
|
},
|
|
3026
3139
|
"default": "undefined"
|
|
3027
3140
|
}
|
|
@@ -3032,7 +3145,7 @@
|
|
|
3032
3145
|
}
|
|
3033
3146
|
],
|
|
3034
3147
|
"source": {
|
|
3035
|
-
"module": "./src/components/filter-bar/components/select-filter/variants/select-
|
|
3148
|
+
"module": "./src/components/filter-bar/components/select-filter/variants/select-country-filter/select-country-filter.vue",
|
|
3036
3149
|
"symbol": "default"
|
|
3037
3150
|
}
|
|
3038
3151
|
},
|
|
@@ -3042,10 +3155,10 @@
|
|
|
3042
3155
|
"attributes": [
|
|
3043
3156
|
{
|
|
3044
3157
|
"name": "options",
|
|
3045
|
-
"description": "List of options that are needed to setup the country 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 {@see
|
|
3158
|
+
"description": "List of options that are needed to setup the country 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 {@see BentoSelectCurrencyFilterOptions}",
|
|
3046
3159
|
"value": {
|
|
3047
3160
|
"kind": "expression",
|
|
3048
|
-
"type": "
|
|
3161
|
+
"type": "BentoSelectCurrencyFilterOptions"
|
|
3049
3162
|
},
|
|
3050
3163
|
"default": "undefined"
|
|
3051
3164
|
}
|
|
@@ -3056,7 +3169,7 @@
|
|
|
3056
3169
|
}
|
|
3057
3170
|
],
|
|
3058
3171
|
"source": {
|
|
3059
|
-
"module": "./src/components/filter-bar/components/select-filter/variants/select-
|
|
3172
|
+
"module": "./src/components/filter-bar/components/select-filter/variants/select-currency-filter/select-currency-filter.vue",
|
|
3060
3173
|
"symbol": "default"
|
|
3061
3174
|
}
|
|
3062
3175
|
},
|
|
@@ -3207,7 +3320,7 @@
|
|
|
3207
3320
|
"kind": "expression",
|
|
3208
3321
|
"type": "BentoTagVariant"
|
|
3209
3322
|
},
|
|
3210
|
-
"default": "BentoTagVariant.
|
|
3323
|
+
"default": "BentoTagVariant.GREY"
|
|
3211
3324
|
},
|
|
3212
3325
|
{
|
|
3213
3326
|
"name": "truncate",
|
|
@@ -3527,6 +3640,15 @@
|
|
|
3527
3640
|
},
|
|
3528
3641
|
"default": "true"
|
|
3529
3642
|
},
|
|
3643
|
+
{
|
|
3644
|
+
"name": "hasContextualMenuEnabled",
|
|
3645
|
+
"description": "Toggles if the contextual menu is enabled",
|
|
3646
|
+
"value": {
|
|
3647
|
+
"kind": "expression",
|
|
3648
|
+
"type": "boolean"
|
|
3649
|
+
},
|
|
3650
|
+
"default": "false"
|
|
3651
|
+
},
|
|
3530
3652
|
{
|
|
3531
3653
|
"name": "isFrozenColumns",
|
|
3532
3654
|
"description": "If these columns are frozen (pinned) columns",
|
|
@@ -3573,6 +3695,227 @@
|
|
|
3573
3695
|
"symbol": "default"
|
|
3574
3696
|
}
|
|
3575
3697
|
},
|
|
3698
|
+
{
|
|
3699
|
+
"name": "date-picker-calendar",
|
|
3700
|
+
"description": "Date picker calendar that displays all the days of a given month\nand allows to move back and forth the visible month with the Next\nand Previous buttons",
|
|
3701
|
+
"attributes": [
|
|
3702
|
+
{
|
|
3703
|
+
"name": "firstDayOfWeek",
|
|
3704
|
+
"description": "Allows you to set the first day of the week. 0 is sunday, 1 is monday, 6 is saturday",
|
|
3705
|
+
"value": {
|
|
3706
|
+
"kind": "expression",
|
|
3707
|
+
"type": "DatePickerCalendarFirstDayOfWeek"
|
|
3708
|
+
},
|
|
3709
|
+
"default": "DatePickerCalendarFirstDayOfWeek.MONDAY"
|
|
3710
|
+
},
|
|
3711
|
+
{
|
|
3712
|
+
"name": "isDateDisabled",
|
|
3713
|
+
"description": "Indicate if a date should be disabled or not",
|
|
3714
|
+
"value": {
|
|
3715
|
+
"kind": "expression",
|
|
3716
|
+
"type": "func"
|
|
3717
|
+
},
|
|
3718
|
+
"default": "undefined"
|
|
3719
|
+
},
|
|
3720
|
+
{
|
|
3721
|
+
"name": "month",
|
|
3722
|
+
"required": true,
|
|
3723
|
+
"description": "Month of the year to be displayed in the calendar",
|
|
3724
|
+
"value": {
|
|
3725
|
+
"kind": "expression",
|
|
3726
|
+
"type": "date"
|
|
3727
|
+
}
|
|
3728
|
+
},
|
|
3729
|
+
{
|
|
3730
|
+
"name": "value",
|
|
3731
|
+
"description": "Selected date",
|
|
3732
|
+
"value": {
|
|
3733
|
+
"kind": "expression",
|
|
3734
|
+
"type": "date"
|
|
3735
|
+
},
|
|
3736
|
+
"default": "undefined"
|
|
3737
|
+
}
|
|
3738
|
+
],
|
|
3739
|
+
"source": {
|
|
3740
|
+
"module": "./src/components/date-picker/components/date-picker-calendar/date-picker-calendar.vue",
|
|
3741
|
+
"symbol": "default"
|
|
3742
|
+
}
|
|
3743
|
+
},
|
|
3744
|
+
{
|
|
3745
|
+
"name": "date-picker-calendar-container",
|
|
3746
|
+
"description": "Handles the popover logic and displays the month, date, and range containers\naccording to the type of Date picker variation.",
|
|
3747
|
+
"attributes": [
|
|
3748
|
+
{
|
|
3749
|
+
"name": "disabled",
|
|
3750
|
+
"description": "Disables dropdown functionality",
|
|
3751
|
+
"value": {
|
|
3752
|
+
"kind": "expression",
|
|
3753
|
+
"type": "boolean"
|
|
3754
|
+
},
|
|
3755
|
+
"default": "false"
|
|
3756
|
+
},
|
|
3757
|
+
{
|
|
3758
|
+
"name": "firstDayOfWeek",
|
|
3759
|
+
"description": "Allows you to set the first day of the week. 0 is sunday, 1 is monday, 6 is saturday",
|
|
3760
|
+
"value": {
|
|
3761
|
+
"kind": "expression",
|
|
3762
|
+
"type": "number"
|
|
3763
|
+
},
|
|
3764
|
+
"default": "DatePickerCalendarFirstDayOfWeek.MONDAY"
|
|
3765
|
+
},
|
|
3766
|
+
{
|
|
3767
|
+
"name": "isDateDisabled",
|
|
3768
|
+
"description": "Indicate if a date should be disabled or not",
|
|
3769
|
+
"value": {
|
|
3770
|
+
"kind": "expression",
|
|
3771
|
+
"type": "func"
|
|
3772
|
+
},
|
|
3773
|
+
"default": "undefined"
|
|
3774
|
+
},
|
|
3775
|
+
{
|
|
3776
|
+
"name": "label",
|
|
3777
|
+
"description": "Text that is displayed as a label above the element.",
|
|
3778
|
+
"value": {
|
|
3779
|
+
"kind": "expression",
|
|
3780
|
+
"type": "string"
|
|
3781
|
+
},
|
|
3782
|
+
"default": "undefined"
|
|
3783
|
+
},
|
|
3784
|
+
{
|
|
3785
|
+
"name": "month",
|
|
3786
|
+
"required": true,
|
|
3787
|
+
"description": "Month of the year to be displayed in the calendar",
|
|
3788
|
+
"value": {
|
|
3789
|
+
"kind": "expression",
|
|
3790
|
+
"type": "date"
|
|
3791
|
+
}
|
|
3792
|
+
},
|
|
3793
|
+
{
|
|
3794
|
+
"name": "open",
|
|
3795
|
+
"required": true,
|
|
3796
|
+
"description": "Indicates if the dropdown is open so that\nthe container can be displayed.",
|
|
3797
|
+
"value": {
|
|
3798
|
+
"kind": "expression",
|
|
3799
|
+
"type": "boolean"
|
|
3800
|
+
}
|
|
3801
|
+
},
|
|
3802
|
+
{
|
|
3803
|
+
"name": "value",
|
|
3804
|
+
"description": "Selected date",
|
|
3805
|
+
"value": {
|
|
3806
|
+
"kind": "expression",
|
|
3807
|
+
"type": "date"
|
|
3808
|
+
},
|
|
3809
|
+
"default": "undefined"
|
|
3810
|
+
},
|
|
3811
|
+
{
|
|
3812
|
+
"name": "targetElement",
|
|
3813
|
+
"required": true,
|
|
3814
|
+
"description": "Reference to the DOM element or Vue component for positioning\nthe Dropdown container.",
|
|
3815
|
+
"value": {
|
|
3816
|
+
"kind": "expression",
|
|
3817
|
+
"type": "BentoPopover.props.targetElement.type"
|
|
3818
|
+
}
|
|
3819
|
+
}
|
|
3820
|
+
],
|
|
3821
|
+
"source": {
|
|
3822
|
+
"module": "./src/components/date-picker/components/date-picker-calendar-container/date-picker-calendar-container.vue",
|
|
3823
|
+
"symbol": "default"
|
|
3824
|
+
}
|
|
3825
|
+
},
|
|
3826
|
+
{
|
|
3827
|
+
"name": "date-picker-calendar-container-stub",
|
|
3828
|
+
"description": "",
|
|
3829
|
+
"attributes": [
|
|
3830
|
+
{
|
|
3831
|
+
"name": "month",
|
|
3832
|
+
"value": {
|
|
3833
|
+
"kind": "expression",
|
|
3834
|
+
"type": "DatePickerCalendarContainer.props.month"
|
|
3835
|
+
}
|
|
3836
|
+
},
|
|
3837
|
+
{
|
|
3838
|
+
"name": "open",
|
|
3839
|
+
"value": {
|
|
3840
|
+
"kind": "expression",
|
|
3841
|
+
"type": "DatePickerCalendarContainer.props.open"
|
|
3842
|
+
}
|
|
3843
|
+
},
|
|
3844
|
+
{
|
|
3845
|
+
"name": "disabled",
|
|
3846
|
+
"value": {
|
|
3847
|
+
"kind": "expression",
|
|
3848
|
+
"type": "DatePickerCalendarContainer.props.disabled"
|
|
3849
|
+
}
|
|
3850
|
+
},
|
|
3851
|
+
{
|
|
3852
|
+
"name": "value",
|
|
3853
|
+
"value": {
|
|
3854
|
+
"kind": "expression",
|
|
3855
|
+
"type": "DatePickerCalendarContainer.props.value"
|
|
3856
|
+
}
|
|
3857
|
+
}
|
|
3858
|
+
],
|
|
3859
|
+
"events": [
|
|
3860
|
+
{
|
|
3861
|
+
"name": "<undefined>"
|
|
3862
|
+
}
|
|
3863
|
+
],
|
|
3864
|
+
"source": {
|
|
3865
|
+
"module": "./src/components/date-picker/components/date-picker-calendar-container/__test__/date-picker-calendar-container-stub.vue",
|
|
3866
|
+
"symbol": "default"
|
|
3867
|
+
}
|
|
3868
|
+
},
|
|
3869
|
+
{
|
|
3870
|
+
"name": "date-picker-calendar-day",
|
|
3871
|
+
"description": "Handles the styles and states of the individual dates of the calendar.",
|
|
3872
|
+
"attributes": [
|
|
3873
|
+
{
|
|
3874
|
+
"name": "day",
|
|
3875
|
+
"required": true,
|
|
3876
|
+
"description": "Date to be displayed as the calendar day. From 1st to 31st (or end of the month defined in the date)",
|
|
3877
|
+
"value": {
|
|
3878
|
+
"kind": "expression",
|
|
3879
|
+
"type": "date"
|
|
3880
|
+
}
|
|
3881
|
+
},
|
|
3882
|
+
{
|
|
3883
|
+
"name": "selected",
|
|
3884
|
+
"description": "Changes the state of the calendar day to selected.",
|
|
3885
|
+
"value": {
|
|
3886
|
+
"kind": "expression",
|
|
3887
|
+
"type": "boolean"
|
|
3888
|
+
},
|
|
3889
|
+
"default": "false"
|
|
3890
|
+
},
|
|
3891
|
+
{
|
|
3892
|
+
"name": "disabled",
|
|
3893
|
+
"description": "Indicate if a date should be disabled or not",
|
|
3894
|
+
"value": {
|
|
3895
|
+
"kind": "expression",
|
|
3896
|
+
"type": "boolean"
|
|
3897
|
+
},
|
|
3898
|
+
"default": "false"
|
|
3899
|
+
}
|
|
3900
|
+
],
|
|
3901
|
+
"source": {
|
|
3902
|
+
"module": "./src/components/date-picker/components/date-picker-calendar/components/date-picker-calendar-day/date-picker-calendar-day.vue",
|
|
3903
|
+
"symbol": "default"
|
|
3904
|
+
}
|
|
3905
|
+
},
|
|
3906
|
+
{
|
|
3907
|
+
"name": "date-picker-calendar-day-stub",
|
|
3908
|
+
"description": "",
|
|
3909
|
+
"events": [
|
|
3910
|
+
{
|
|
3911
|
+
"name": "<undefined>"
|
|
3912
|
+
}
|
|
3913
|
+
],
|
|
3914
|
+
"source": {
|
|
3915
|
+
"module": "./src/components/date-picker/components/date-picker-calendar/components/date-picker-calendar-day/__test__/date-picker-calendar-day-stub.vue",
|
|
3916
|
+
"symbol": "default"
|
|
3917
|
+
}
|
|
3918
|
+
},
|
|
3576
3919
|
{
|
|
3577
3920
|
"name": "dropdown-base-textbox",
|
|
3578
3921
|
"description": "Only for internal use, implements the logic of the textbox element to be implemented in the combobox.",
|
|
@@ -4275,6 +4618,15 @@
|
|
|
4275
4618
|
"type": "boolean"
|
|
4276
4619
|
},
|
|
4277
4620
|
"default": "false"
|
|
4621
|
+
},
|
|
4622
|
+
{
|
|
4623
|
+
"name": "isTitle",
|
|
4624
|
+
"description": "Renders the text in a bold variant",
|
|
4625
|
+
"value": {
|
|
4626
|
+
"kind": "expression",
|
|
4627
|
+
"type": "boolean"
|
|
4628
|
+
},
|
|
4629
|
+
"default": "false"
|
|
4278
4630
|
}
|
|
4279
4631
|
],
|
|
4280
4632
|
"source": {
|
|
@@ -4728,6 +5080,32 @@
|
|
|
4728
5080
|
"symbol": "default"
|
|
4729
5081
|
}
|
|
4730
5082
|
},
|
|
5083
|
+
{
|
|
5084
|
+
"name": "sub-menu-item-list",
|
|
5085
|
+
"description": "SubMenuItemList component to render a submenu with the sliding transition. For internal use only.",
|
|
5086
|
+
"attributes": [
|
|
5087
|
+
{
|
|
5088
|
+
"name": "items",
|
|
5089
|
+
"required": true,
|
|
5090
|
+
"value": {
|
|
5091
|
+
"kind": "expression",
|
|
5092
|
+
"type": "BentoMenuItem[]"
|
|
5093
|
+
}
|
|
5094
|
+
},
|
|
5095
|
+
{
|
|
5096
|
+
"name": "title",
|
|
5097
|
+
"required": true,
|
|
5098
|
+
"value": {
|
|
5099
|
+
"kind": "expression",
|
|
5100
|
+
"type": "string"
|
|
5101
|
+
}
|
|
5102
|
+
}
|
|
5103
|
+
],
|
|
5104
|
+
"source": {
|
|
5105
|
+
"module": "./src/components/menu/components/sub-menu-item-list/sub-menu-item-list.vue",
|
|
5106
|
+
"symbol": "default"
|
|
5107
|
+
}
|
|
5108
|
+
},
|
|
4731
5109
|
{
|
|
4732
5110
|
"name": "tab",
|
|
4733
5111
|
"description": "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adyen/bento-vue2",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Adyen Bento Vue2 components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
"url": "git@github.com:Adyen/bento.git"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@adyen/bento-design-tokens": "0.4.
|
|
54
|
-
"@adyen/ui-assets-flag-icons": "1.
|
|
55
|
-
"@adyen/ui-assets-icons-16": "3.
|
|
56
|
-
"@adyen/ui-assets-payment-method-icons": "5.
|
|
53
|
+
"@adyen/bento-design-tokens": "0.4.4",
|
|
54
|
+
"@adyen/ui-assets-flag-icons": "1.2.0",
|
|
55
|
+
"@adyen/ui-assets-icons-16": "3.1.0",
|
|
56
|
+
"@adyen/ui-assets-payment-method-icons": "5.2.0",
|
|
57
57
|
"@popperjs/core": "2.11.8",
|
|
58
58
|
"date-fns": "2.28.0",
|
|
59
59
|
"focus-lock": "0.11.0",
|