@adyen/bento-vue2 0.7.0 → 0.8.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/date-picker/date-picker.vue.d.ts +1 -0
- package/dist/@types/components/divider/divider.vue.d.ts +6 -0
- package/dist/@types/components/divider/index.d.ts +1 -0
- package/dist/@types/components/filter-bar/components/base-filter/base-filter.vue.d.ts +9 -0
- package/dist/@types/components/filter-bar/components/base-filter/components/filter-button/filter-button.vue.d.ts +23 -1
- package/dist/@types/components/filter-bar/components/select-filter/variants/select-country-filter/select-country-filter.vue.d.ts +1 -0
- package/dist/@types/components/filter-bar/components/select-filter/variants/select-tag-filter/select-tag-filter.vue.d.ts +1 -0
- package/dist/@types/components/filter-bar/filter-bar.types.d.ts +1 -0
- package/dist/@types/components/header/header.vue.d.ts +3 -3
- package/dist/@types/components/internal/copy/copy.vue.d.ts +19 -0
- package/dist/@types/components/internal/copy/index.d.ts +1 -0
- package/dist/@types/components/internal/index.d.ts +1 -0
- package/dist/@types/components/link/link.vue.d.ts +2 -2
- package/dist/@types/components/menu/components/menu-item-list/menu-item-list.vue.d.ts +4 -1
- package/dist/@types/components/menu/components/sub-menu-item-list/sub-menu-item-list.vue.d.ts +16 -2
- package/dist/@types/components/modal/components/base-modal/base-modal.vue.d.ts +89 -0
- package/dist/@types/components/modal/components/index.d.ts +3 -0
- package/dist/@types/components/modal/components/modal-default/modal-default.vue.d.ts +110 -0
- package/dist/@types/components/modal/components/modal-dialog/modal-dialog.vue.d.ts +81 -0
- package/dist/@types/components/modal/index.d.ts +2 -0
- package/dist/@types/components/modal/modal.types.d.ts +22 -0
- package/dist/@types/components/modal/modal.vue.d.ts +129 -0
- package/dist/@types/components/popover/popover.vue.d.ts +9 -0
- package/dist/@types/components/radio-group/components/radio-button/radio-button.vue.d.ts +1 -0
- package/dist/@types/components/structured-list/components/structered-list-item/structured-list-item.vue.d.ts +46 -0
- package/dist/@types/components/structured-list/index.d.ts +2 -0
- package/dist/@types/components/structured-list/structured-list.vue.d.ts +2 -0
- package/dist/@types/components/summary-grid/components/grid-layout/grid-layout.types.d.ts +6 -0
- package/dist/@types/components/summary-grid/components/grid-layout/grid-layout.vue.d.ts +21 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item/index.d.ts +2 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item/summary-grid-item.types.d.ts +7 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item/summary-grid-item.vue.d.ts +102 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item-amount/summary-grid-item-amount.vue.d.ts +89 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item-custom/summary-grid-item-custom.vue.d.ts +40 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item-numeric/summary-grid-item-numeric.vue.d.ts +80 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item-percentage/summary-grid-item-percentage.vue.d.ts +80 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item-text/summary-grid-item-text.vue.d.ts +51 -0
- package/dist/@types/components/summary-grid/index.d.ts +7 -0
- package/dist/@types/components/summary-grid/summary-grid.types.d.ts +16 -0
- package/dist/@types/components/summary-grid/summary-grid.vue.d.ts +19 -0
- package/dist/@types/components/toggle/toggle.vue.d.ts +1 -0
- package/dist/@types/components.d.ts +18 -0
- package/dist/@types/directives/index.d.ts +1 -0
- package/dist/@types/directives/keyboard-navigation/index.d.ts +2 -0
- package/dist/@types/directives/keyboard-navigation/keyboard-navigation.d.ts +2 -0
- package/dist/@types/directives/keyboard-navigation/keyboard-navigation.types.d.ts +7 -0
- package/dist/@types/index.d.ts +4 -0
- package/dist/index.js +5105 -3635
- package/dist/index.js.map +1 -1
- package/dist/web-types.json +1403 -383
- package/package.json +3 -3
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.8.0",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -641,6 +641,90 @@
|
|
|
641
641
|
"symbol": "default"
|
|
642
642
|
}
|
|
643
643
|
},
|
|
644
|
+
{
|
|
645
|
+
"name": "base-modal",
|
|
646
|
+
"description": "",
|
|
647
|
+
"attributes": [
|
|
648
|
+
{
|
|
649
|
+
"name": "modalRole",
|
|
650
|
+
"description": "Defines whether the modal will be an alert modal",
|
|
651
|
+
"value": {
|
|
652
|
+
"kind": "expression",
|
|
653
|
+
"type": "string"
|
|
654
|
+
},
|
|
655
|
+
"default": "BentoModalRole.DIALOG"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"name": "isDismissible",
|
|
659
|
+
"required": true,
|
|
660
|
+
"description": "If set to true, it allows the modal to be closed by clicking outside of it",
|
|
661
|
+
"value": {
|
|
662
|
+
"kind": "expression",
|
|
663
|
+
"type": "boolean"
|
|
664
|
+
}
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"name": "hideCloseButton",
|
|
668
|
+
"required": true,
|
|
669
|
+
"description": "Hides a cross icon on the right side of the title",
|
|
670
|
+
"value": {
|
|
671
|
+
"kind": "expression",
|
|
672
|
+
"type": "boolean"
|
|
673
|
+
}
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
"name": "customPadding",
|
|
677
|
+
"description": "If provided, manages the padding of the whole modal container",
|
|
678
|
+
"value": {
|
|
679
|
+
"kind": "expression",
|
|
680
|
+
"type": "string"
|
|
681
|
+
},
|
|
682
|
+
"default": "null"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"name": "isOpen",
|
|
686
|
+
"required": true,
|
|
687
|
+
"description": "Controls the modal's state from the outside. Set it to true to open the modal",
|
|
688
|
+
"value": {
|
|
689
|
+
"kind": "expression",
|
|
690
|
+
"type": "boolean"
|
|
691
|
+
}
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"name": "size",
|
|
695
|
+
"description": "Sets the width of the modal",
|
|
696
|
+
"value": {
|
|
697
|
+
"kind": "expression",
|
|
698
|
+
"type": "BentoModalSize"
|
|
699
|
+
},
|
|
700
|
+
"default": "BentoModalSize.SMALL"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"name": "initiallyOpen",
|
|
704
|
+
"description": "Sets the open attribute on the dialog element, use isOpen instead to toggle modal visbility.",
|
|
705
|
+
"value": {
|
|
706
|
+
"kind": "expression",
|
|
707
|
+
"type": "boolean"
|
|
708
|
+
},
|
|
709
|
+
"default": "false"
|
|
710
|
+
}
|
|
711
|
+
],
|
|
712
|
+
"slots": [
|
|
713
|
+
{
|
|
714
|
+
"name": "default"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"name": "content"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"name": "actions"
|
|
721
|
+
}
|
|
722
|
+
],
|
|
723
|
+
"source": {
|
|
724
|
+
"module": "./src/components/modal/components/base-modal/base-modal.vue",
|
|
725
|
+
"symbol": "default"
|
|
726
|
+
}
|
|
727
|
+
},
|
|
644
728
|
{
|
|
645
729
|
"name": "bento-alert",
|
|
646
730
|
"description": "An Alert component is used to display a persistent\nnotification containing information important to the user",
|
|
@@ -744,6 +828,15 @@
|
|
|
744
828
|
},
|
|
745
829
|
"default": "null"
|
|
746
830
|
},
|
|
831
|
+
{
|
|
832
|
+
"name": "buttonHasChevron",
|
|
833
|
+
"description": "Toggles if a chevron icon should be displayed in the button.\nThe chevron will change depending on the open state of the filter.",
|
|
834
|
+
"value": {
|
|
835
|
+
"kind": "expression",
|
|
836
|
+
"type": "boolean"
|
|
837
|
+
},
|
|
838
|
+
"default": "false"
|
|
839
|
+
},
|
|
747
840
|
{
|
|
748
841
|
"name": "disableApplyButton",
|
|
749
842
|
"description": "Disable the \"apply\" button",
|
|
@@ -1610,6 +1703,14 @@
|
|
|
1610
1703
|
"symbol": "default"
|
|
1611
1704
|
}
|
|
1612
1705
|
},
|
|
1706
|
+
{
|
|
1707
|
+
"name": "bento-divider",
|
|
1708
|
+
"description": "",
|
|
1709
|
+
"source": {
|
|
1710
|
+
"module": "./src/components/divider/divider.vue",
|
|
1711
|
+
"symbol": "default"
|
|
1712
|
+
}
|
|
1713
|
+
},
|
|
1613
1714
|
{
|
|
1614
1715
|
"name": "bento-dropdown-avatar",
|
|
1615
1716
|
"description": "A Avatar Dropdown showing a selectable list of countries.",
|
|
@@ -1854,11 +1955,24 @@
|
|
|
1854
1955
|
"type": "boolean"
|
|
1855
1956
|
},
|
|
1856
1957
|
"default": "false"
|
|
1857
|
-
}
|
|
1858
|
-
],
|
|
1859
|
-
"events": [
|
|
1958
|
+
},
|
|
1860
1959
|
{
|
|
1861
|
-
"name": "
|
|
1960
|
+
"name": "isFilterOpen",
|
|
1961
|
+
"description": "Signifies if the filter is open or closed.",
|
|
1962
|
+
"value": {
|
|
1963
|
+
"kind": "expression",
|
|
1964
|
+
"type": "boolean"
|
|
1965
|
+
},
|
|
1966
|
+
"default": "false"
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
"name": "hasChevron",
|
|
1970
|
+
"description": "Toggles if a chevron icon should be displayed in the button.\nThe chevron will change depending on the open state of the filter.",
|
|
1971
|
+
"value": {
|
|
1972
|
+
"kind": "expression",
|
|
1973
|
+
"type": "boolean"
|
|
1974
|
+
},
|
|
1975
|
+
"default": "false"
|
|
1862
1976
|
}
|
|
1863
1977
|
],
|
|
1864
1978
|
"slots": [
|
|
@@ -1949,7 +2063,7 @@
|
|
|
1949
2063
|
"description": "JavaScript \"Date\" object for when the content was last updated",
|
|
1950
2064
|
"value": {
|
|
1951
2065
|
"kind": "expression",
|
|
1952
|
-
"type": "date"
|
|
2066
|
+
"type": "date|number"
|
|
1953
2067
|
},
|
|
1954
2068
|
"default": "null"
|
|
1955
2069
|
}
|
|
@@ -2568,21 +2682,21 @@
|
|
|
2568
2682
|
}
|
|
2569
2683
|
},
|
|
2570
2684
|
{
|
|
2571
|
-
"name": "bento-
|
|
2572
|
-
"description": "
|
|
2685
|
+
"name": "bento-modal",
|
|
2686
|
+
"description": "Modal is a window that appear over any other page content and focus user attention exclusively on one task or piece of information at the moment.",
|
|
2573
2687
|
"attributes": [
|
|
2574
2688
|
{
|
|
2575
|
-
"name": "
|
|
2576
|
-
"description": "
|
|
2689
|
+
"name": "variant",
|
|
2690
|
+
"description": "Choose between default or dialog versions of modal",
|
|
2577
2691
|
"value": {
|
|
2578
2692
|
"kind": "expression",
|
|
2579
|
-
"type": "
|
|
2693
|
+
"type": "BentoModalVariant"
|
|
2580
2694
|
},
|
|
2581
|
-
"default": "
|
|
2695
|
+
"default": "BentoModalVariant.DEFAULT"
|
|
2582
2696
|
},
|
|
2583
2697
|
{
|
|
2584
|
-
"name": "
|
|
2585
|
-
"description": "
|
|
2698
|
+
"name": "isDismissible",
|
|
2699
|
+
"description": "If set to true, it allows the modal to be closed by clicking outside of it",
|
|
2586
2700
|
"value": {
|
|
2587
2701
|
"kind": "expression",
|
|
2588
2702
|
"type": "boolean"
|
|
@@ -2590,8 +2704,8 @@
|
|
|
2590
2704
|
"default": "null"
|
|
2591
2705
|
},
|
|
2592
2706
|
{
|
|
2593
|
-
"name": "
|
|
2594
|
-
"description": "
|
|
2707
|
+
"name": "isOpen",
|
|
2708
|
+
"description": "Controls the modal's state from the outside. Set it to true to open the modal",
|
|
2595
2709
|
"value": {
|
|
2596
2710
|
"kind": "expression",
|
|
2597
2711
|
"type": "boolean"
|
|
@@ -2599,171 +2713,152 @@
|
|
|
2599
2713
|
"default": "false"
|
|
2600
2714
|
},
|
|
2601
2715
|
{
|
|
2602
|
-
"name": "
|
|
2603
|
-
"description": "
|
|
2716
|
+
"name": "actions",
|
|
2717
|
+
"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`: Vue Icon from the library `@adyen/ui-assets-icons-16`.\n\n```\n[{\n title: 'Primary',2\n event: () => { ... },\n icon: FourPeopleIcon\n}, {\n title: 'Secondary',\n event: () => { ... }\n}]\n```",
|
|
2604
2718
|
"value": {
|
|
2605
2719
|
"kind": "expression",
|
|
2606
|
-
"type": "
|
|
2720
|
+
"type": "BentoButtonActionsList"
|
|
2607
2721
|
},
|
|
2608
|
-
"default": "
|
|
2722
|
+
"default": "null"
|
|
2723
|
+
},
|
|
2724
|
+
{
|
|
2725
|
+
"name": "hideCloseButton",
|
|
2726
|
+
"description": "Hides a cross icon on the right side of the title",
|
|
2727
|
+
"value": {
|
|
2728
|
+
"kind": "expression",
|
|
2729
|
+
"type": "boolean"
|
|
2730
|
+
},
|
|
2731
|
+
"default": "false"
|
|
2609
2732
|
},
|
|
2610
2733
|
{
|
|
2611
2734
|
"name": "size",
|
|
2612
|
-
"description": "
|
|
2735
|
+
"description": "Sets the width of the modal",
|
|
2613
2736
|
"value": {
|
|
2614
2737
|
"kind": "expression",
|
|
2615
|
-
"type": "
|
|
2738
|
+
"type": "BentoModalSize"
|
|
2616
2739
|
},
|
|
2617
|
-
"default": "
|
|
2740
|
+
"default": "BentoModalSize.SMALL"
|
|
2618
2741
|
},
|
|
2619
2742
|
{
|
|
2620
|
-
"name": "
|
|
2621
|
-
"description": "
|
|
2743
|
+
"name": "customPadding",
|
|
2744
|
+
"description": "If provided, manages the padding of the whole modal container",
|
|
2622
2745
|
"value": {
|
|
2623
2746
|
"kind": "expression",
|
|
2624
|
-
"type": "
|
|
2747
|
+
"type": "string"
|
|
2625
2748
|
},
|
|
2626
2749
|
"default": "null"
|
|
2627
|
-
}
|
|
2628
|
-
],
|
|
2629
|
-
"events": [
|
|
2630
|
-
{
|
|
2631
|
-
"name": "navigate"
|
|
2632
2750
|
},
|
|
2633
2751
|
{
|
|
2634
|
-
"name": "
|
|
2752
|
+
"name": "actionsLabel",
|
|
2753
|
+
"description": "Text label that is displayed left to the action buttons",
|
|
2754
|
+
"value": {
|
|
2755
|
+
"kind": "expression",
|
|
2756
|
+
"type": "string"
|
|
2757
|
+
},
|
|
2758
|
+
"default": "null"
|
|
2635
2759
|
},
|
|
2636
2760
|
{
|
|
2637
|
-
"name": "
|
|
2761
|
+
"name": "destructiveActions",
|
|
2762
|
+
"description": "If passed - sets first button color to red",
|
|
2763
|
+
"value": {
|
|
2764
|
+
"kind": "expression",
|
|
2765
|
+
"type": "boolean"
|
|
2766
|
+
},
|
|
2767
|
+
"default": "false"
|
|
2638
2768
|
},
|
|
2639
2769
|
{
|
|
2640
|
-
"name": "
|
|
2641
|
-
|
|
2642
|
-
],
|
|
2643
|
-
"source": {
|
|
2644
|
-
"module": "./src/components/pagination/pagination.vue",
|
|
2645
|
-
"symbol": "default"
|
|
2646
|
-
}
|
|
2647
|
-
},
|
|
2648
|
-
{
|
|
2649
|
-
"name": "bento-pagination-context",
|
|
2650
|
-
"description": "",
|
|
2651
|
-
"attributes": [
|
|
2652
|
-
{
|
|
2653
|
-
"name": "page",
|
|
2654
|
-
"description": "The current page number of the pager.",
|
|
2770
|
+
"name": "dialogType",
|
|
2771
|
+
"description": "Changes the visual styling of action buttons",
|
|
2655
2772
|
"value": {
|
|
2656
2773
|
"kind": "expression",
|
|
2657
|
-
"type": "
|
|
2774
|
+
"type": "BentoModalDialogType"
|
|
2658
2775
|
},
|
|
2659
|
-
"default": "
|
|
2776
|
+
"default": "BentoModalDialogType.CONFIRMATION"
|
|
2660
2777
|
},
|
|
2661
2778
|
{
|
|
2662
|
-
"name": "
|
|
2663
|
-
"description": "
|
|
2779
|
+
"name": "content",
|
|
2780
|
+
"description": "Text that will be displayed in the content section of Modal",
|
|
2664
2781
|
"value": {
|
|
2665
2782
|
"kind": "expression",
|
|
2666
|
-
"type": "
|
|
2783
|
+
"type": "string"
|
|
2667
2784
|
},
|
|
2668
2785
|
"default": "null"
|
|
2669
2786
|
}
|
|
2670
2787
|
],
|
|
2671
|
-
"
|
|
2788
|
+
"slots": [
|
|
2672
2789
|
{
|
|
2673
|
-
"name": "
|
|
2790
|
+
"name": "default"
|
|
2791
|
+
},
|
|
2792
|
+
{
|
|
2793
|
+
"name": "content"
|
|
2674
2794
|
}
|
|
2675
2795
|
],
|
|
2676
2796
|
"source": {
|
|
2677
|
-
"module": "./src/components/
|
|
2797
|
+
"module": "./src/components/modal/modal.vue",
|
|
2678
2798
|
"symbol": "default"
|
|
2679
2799
|
}
|
|
2680
2800
|
},
|
|
2681
2801
|
{
|
|
2682
|
-
"name": "bento-
|
|
2802
|
+
"name": "bento-modal-default",
|
|
2683
2803
|
"description": "",
|
|
2684
2804
|
"attributes": [
|
|
2685
2805
|
{
|
|
2686
|
-
"name": "
|
|
2687
|
-
"
|
|
2806
|
+
"name": "isOpen",
|
|
2807
|
+
"required": true,
|
|
2808
|
+
"description": "Controls the modal's state from the outside. Set it to true to open the modal",
|
|
2688
2809
|
"value": {
|
|
2689
2810
|
"kind": "expression",
|
|
2690
|
-
"type": "
|
|
2691
|
-
}
|
|
2692
|
-
"default": "DEFAULT_NUMBER_OF_RESULTS"
|
|
2811
|
+
"type": "boolean"
|
|
2812
|
+
}
|
|
2693
2813
|
},
|
|
2694
2814
|
{
|
|
2695
|
-
"name": "
|
|
2696
|
-
"
|
|
2815
|
+
"name": "isDismissible",
|
|
2816
|
+
"required": true,
|
|
2817
|
+
"description": "If set to true, it allows the modal to be closed by clicking outside of it",
|
|
2697
2818
|
"value": {
|
|
2698
2819
|
"kind": "expression",
|
|
2699
|
-
"type": "
|
|
2700
|
-
}
|
|
2701
|
-
|
|
2702
|
-
}
|
|
2703
|
-
],
|
|
2704
|
-
"events": [
|
|
2705
|
-
{
|
|
2706
|
-
"name": "select"
|
|
2707
|
-
}
|
|
2708
|
-
],
|
|
2709
|
-
"source": {
|
|
2710
|
-
"module": "./src/components/pagination/components/pagination-results-per-page/pagination-results-per-page.vue",
|
|
2711
|
-
"symbol": "default"
|
|
2712
|
-
}
|
|
2713
|
-
},
|
|
2714
|
-
{
|
|
2715
|
-
"name": "bento-payment-method",
|
|
2716
|
-
"description": "A payment method type component to display the type's icon and label.",
|
|
2717
|
-
"attributes": [
|
|
2820
|
+
"type": "boolean"
|
|
2821
|
+
}
|
|
2822
|
+
},
|
|
2718
2823
|
{
|
|
2719
|
-
"name": "
|
|
2720
|
-
"description": "
|
|
2824
|
+
"name": "hideCloseButton",
|
|
2825
|
+
"description": "Hides a cross icon on the right side of the title",
|
|
2721
2826
|
"value": {
|
|
2722
2827
|
"kind": "expression",
|
|
2723
|
-
"type": "
|
|
2828
|
+
"type": "boolean"
|
|
2724
2829
|
},
|
|
2725
|
-
"default": "
|
|
2830
|
+
"default": "false"
|
|
2726
2831
|
},
|
|
2727
2832
|
{
|
|
2728
|
-
"name": "
|
|
2833
|
+
"name": "size",
|
|
2729
2834
|
"required": true,
|
|
2730
|
-
"description": "
|
|
2835
|
+
"description": "Sets the width of the modal",
|
|
2731
2836
|
"value": {
|
|
2732
2837
|
"kind": "expression",
|
|
2733
|
-
"type": "
|
|
2838
|
+
"type": "BentoModalSize"
|
|
2734
2839
|
}
|
|
2735
|
-
}
|
|
2736
|
-
],
|
|
2737
|
-
"source": {
|
|
2738
|
-
"module": "./src/components/payment-method/payment-method.vue",
|
|
2739
|
-
"symbol": "default"
|
|
2740
|
-
}
|
|
2741
|
-
},
|
|
2742
|
-
{
|
|
2743
|
-
"name": "bento-popover",
|
|
2744
|
-
"description": "Example description of the component...",
|
|
2745
|
-
"attributes": [
|
|
2840
|
+
},
|
|
2746
2841
|
{
|
|
2747
|
-
"name": "
|
|
2748
|
-
"description": "
|
|
2842
|
+
"name": "customPadding",
|
|
2843
|
+
"description": "If provided, manages the padding of the whole modal container",
|
|
2749
2844
|
"value": {
|
|
2750
2845
|
"kind": "expression",
|
|
2751
|
-
"type": "
|
|
2846
|
+
"type": "string"
|
|
2752
2847
|
},
|
|
2753
2848
|
"default": "null"
|
|
2754
2849
|
},
|
|
2755
2850
|
{
|
|
2756
|
-
"name": "
|
|
2757
|
-
"description": "
|
|
2851
|
+
"name": "actions",
|
|
2852
|
+
"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\".\nBut you may change the color of 1-st action to red with 'critial' key\nNot more than 3 action buttons can be provided\nOr 2 action buttons and 1 Label for them\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`: Vue Icon from the library `@adyen/ui-assets-icons-16`.\n\n```\n[{\n title: 'Primary',2\n event: () => { ... },\n icon: FourPeopleIcon\n}, {\n title: 'Secondary',\n event: () => { ... }\n}]\n```",
|
|
2758
2853
|
"value": {
|
|
2759
2854
|
"kind": "expression",
|
|
2760
|
-
"type": "
|
|
2855
|
+
"type": "BentoButtonActionsList"
|
|
2761
2856
|
},
|
|
2762
|
-
"default": "
|
|
2857
|
+
"default": "null"
|
|
2763
2858
|
},
|
|
2764
2859
|
{
|
|
2765
|
-
"name": "
|
|
2766
|
-
"description": "
|
|
2860
|
+
"name": "actionsLabel",
|
|
2861
|
+
"description": "Text label that is displayed left to the action buttons",
|
|
2767
2862
|
"value": {
|
|
2768
2863
|
"kind": "expression",
|
|
2769
2864
|
"type": "string"
|
|
@@ -2771,8 +2866,8 @@
|
|
|
2771
2866
|
"default": "null"
|
|
2772
2867
|
},
|
|
2773
2868
|
{
|
|
2774
|
-
"name": "
|
|
2775
|
-
"description": "
|
|
2869
|
+
"name": "destructiveActions",
|
|
2870
|
+
"description": "If passed - sets first button color to red",
|
|
2776
2871
|
"value": {
|
|
2777
2872
|
"kind": "expression",
|
|
2778
2873
|
"type": "boolean"
|
|
@@ -2780,35 +2875,125 @@
|
|
|
2780
2875
|
"default": "false"
|
|
2781
2876
|
},
|
|
2782
2877
|
{
|
|
2783
|
-
"name": "
|
|
2784
|
-
"description": "
|
|
2878
|
+
"name": "initiallyOpen",
|
|
2879
|
+
"description": "Sets the open attribute on the dialog element, use isOpen instead to toggle modal visbility.",
|
|
2785
2880
|
"value": {
|
|
2786
2881
|
"kind": "expression",
|
|
2787
2882
|
"type": "boolean"
|
|
2788
2883
|
},
|
|
2789
2884
|
"default": "false"
|
|
2885
|
+
}
|
|
2886
|
+
],
|
|
2887
|
+
"slots": [
|
|
2888
|
+
{
|
|
2889
|
+
"name": "default"
|
|
2790
2890
|
},
|
|
2791
2891
|
{
|
|
2792
|
-
"name": "
|
|
2793
|
-
|
|
2892
|
+
"name": "content"
|
|
2893
|
+
},
|
|
2894
|
+
{
|
|
2895
|
+
"name": "actions"
|
|
2896
|
+
}
|
|
2897
|
+
],
|
|
2898
|
+
"source": {
|
|
2899
|
+
"module": "./src/components/modal/components/modal-default/modal-default.vue",
|
|
2900
|
+
"symbol": "default"
|
|
2901
|
+
}
|
|
2902
|
+
},
|
|
2903
|
+
{
|
|
2904
|
+
"name": "bento-modal-dialog",
|
|
2905
|
+
"description": "",
|
|
2906
|
+
"attributes": [
|
|
2907
|
+
{
|
|
2908
|
+
"name": "isOpen",
|
|
2909
|
+
"required": true,
|
|
2910
|
+
"description": "Controls the modal's state from the outside. Set it to true to open the modal",
|
|
2911
|
+
"value": {
|
|
2912
|
+
"kind": "expression",
|
|
2913
|
+
"type": "boolean"
|
|
2914
|
+
}
|
|
2915
|
+
},
|
|
2916
|
+
{
|
|
2917
|
+
"name": "isDismissible",
|
|
2918
|
+
"required": true,
|
|
2919
|
+
"description": "If set to true, it allows the modal to be closed by clicking outside of it",
|
|
2794
2920
|
"value": {
|
|
2795
2921
|
"kind": "expression",
|
|
2796
2922
|
"type": "boolean"
|
|
2923
|
+
}
|
|
2924
|
+
},
|
|
2925
|
+
{
|
|
2926
|
+
"name": "dialogType",
|
|
2927
|
+
"required": true,
|
|
2928
|
+
"description": "Sets different action buttons styling and appearance",
|
|
2929
|
+
"value": {
|
|
2930
|
+
"kind": "expression",
|
|
2931
|
+
"type": "BentoModalDialogType"
|
|
2932
|
+
}
|
|
2933
|
+
},
|
|
2934
|
+
{
|
|
2935
|
+
"name": "content",
|
|
2936
|
+
"required": true,
|
|
2937
|
+
"description": "Text that is displayed in the content section of modal",
|
|
2938
|
+
"value": {
|
|
2939
|
+
"kind": "expression",
|
|
2940
|
+
"type": "string"
|
|
2941
|
+
}
|
|
2942
|
+
},
|
|
2943
|
+
{
|
|
2944
|
+
"name": "actions",
|
|
2945
|
+
"description": "List of actions that will be used to render the buttons.\nOnly 1 action button is allowed for Modal Dialog\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`: Vue Icon from the library `@adyen/ui-assets-icons-16`.\n\n```\n[{\n title: 'Primary',2\n event: () => { ... },\n icon: FourPeopleIcon\n}]\n```",
|
|
2946
|
+
"value": {
|
|
2947
|
+
"kind": "expression",
|
|
2948
|
+
"type": "BentoButtonActionsList"
|
|
2797
2949
|
},
|
|
2798
|
-
"default": "
|
|
2950
|
+
"default": "null"
|
|
2799
2951
|
},
|
|
2800
2952
|
{
|
|
2801
|
-
"name": "
|
|
2802
|
-
"description": "
|
|
2953
|
+
"name": "initiallyOpen",
|
|
2954
|
+
"description": "Sets the open attribute on the dialog element, use isOpen instead to toggle modal visbility.",
|
|
2803
2955
|
"value": {
|
|
2804
2956
|
"kind": "expression",
|
|
2805
2957
|
"type": "boolean"
|
|
2806
2958
|
},
|
|
2807
2959
|
"default": "false"
|
|
2960
|
+
}
|
|
2961
|
+
],
|
|
2962
|
+
"slots": [
|
|
2963
|
+
{
|
|
2964
|
+
"name": "default"
|
|
2965
|
+
}
|
|
2966
|
+
],
|
|
2967
|
+
"source": {
|
|
2968
|
+
"module": "./src/components/modal/components/modal-dialog/modal-dialog.vue",
|
|
2969
|
+
"symbol": "default"
|
|
2970
|
+
}
|
|
2971
|
+
},
|
|
2972
|
+
{
|
|
2973
|
+
"name": "bento-pagination",
|
|
2974
|
+
"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",
|
|
2975
|
+
"attributes": [
|
|
2976
|
+
{
|
|
2977
|
+
"name": "ariaLabel",
|
|
2978
|
+
"description": "A brief description of the purpose of the navigation (for a11y).\nOmit the term \"navigation\", as the screen reader will read both the role and the contents of the label.",
|
|
2979
|
+
"value": {
|
|
2980
|
+
"kind": "expression",
|
|
2981
|
+
"type": "string"
|
|
2982
|
+
},
|
|
2983
|
+
"default": "null"
|
|
2808
2984
|
},
|
|
2809
2985
|
{
|
|
2810
|
-
"name": "
|
|
2811
|
-
"description": "
|
|
2986
|
+
"name": "hasNext",
|
|
2987
|
+
"description": "Use to determine if the pager has a \"next page\".",
|
|
2988
|
+
"value": {
|
|
2989
|
+
"kind": "expression",
|
|
2990
|
+
"type": "boolean"
|
|
2991
|
+
},
|
|
2992
|
+
"default": "null"
|
|
2993
|
+
},
|
|
2994
|
+
{
|
|
2995
|
+
"name": "hidePageSize",
|
|
2996
|
+
"description": "Toggles the visibility of the \"results per page\" part of the pagination component.",
|
|
2812
2997
|
"value": {
|
|
2813
2998
|
"kind": "expression",
|
|
2814
2999
|
"type": "boolean"
|
|
@@ -2816,26 +3001,180 @@
|
|
|
2816
3001
|
"default": "false"
|
|
2817
3002
|
},
|
|
2818
3003
|
{
|
|
2819
|
-
"name": "
|
|
2820
|
-
"description": "
|
|
3004
|
+
"name": "page",
|
|
3005
|
+
"description": "The current page number of the pager.",
|
|
2821
3006
|
"value": {
|
|
2822
3007
|
"kind": "expression",
|
|
2823
|
-
"type": "
|
|
3008
|
+
"type": "number"
|
|
3009
|
+
},
|
|
3010
|
+
"default": "1"
|
|
3011
|
+
},
|
|
3012
|
+
{
|
|
3013
|
+
"name": "size",
|
|
3014
|
+
"description": "The size of the items the pager is paging through.",
|
|
3015
|
+
"value": {
|
|
3016
|
+
"kind": "expression",
|
|
3017
|
+
"type": "number"
|
|
3018
|
+
},
|
|
3019
|
+
"default": "20"
|
|
3020
|
+
},
|
|
3021
|
+
{
|
|
3022
|
+
"name": "totalCount",
|
|
3023
|
+
"description": "The total number of items the pager is paging through.",
|
|
3024
|
+
"value": {
|
|
3025
|
+
"kind": "expression",
|
|
3026
|
+
"type": "number"
|
|
2824
3027
|
},
|
|
2825
3028
|
"default": "null"
|
|
3029
|
+
}
|
|
3030
|
+
],
|
|
3031
|
+
"events": [
|
|
3032
|
+
{
|
|
3033
|
+
"name": "navigate"
|
|
2826
3034
|
},
|
|
2827
3035
|
{
|
|
2828
|
-
"name": "
|
|
2829
|
-
|
|
3036
|
+
"name": "items-page"
|
|
3037
|
+
},
|
|
3038
|
+
{
|
|
3039
|
+
"name": "update:page"
|
|
3040
|
+
},
|
|
3041
|
+
{
|
|
3042
|
+
"name": "update:size"
|
|
3043
|
+
}
|
|
3044
|
+
],
|
|
3045
|
+
"source": {
|
|
3046
|
+
"module": "./src/components/pagination/pagination.vue",
|
|
3047
|
+
"symbol": "default"
|
|
3048
|
+
}
|
|
3049
|
+
},
|
|
3050
|
+
{
|
|
3051
|
+
"name": "bento-pagination-context",
|
|
3052
|
+
"description": "",
|
|
3053
|
+
"attributes": [
|
|
3054
|
+
{
|
|
3055
|
+
"name": "page",
|
|
3056
|
+
"description": "The current page number of the pager.",
|
|
2830
3057
|
"value": {
|
|
2831
3058
|
"kind": "expression",
|
|
2832
|
-
"type": "
|
|
3059
|
+
"type": "number"
|
|
2833
3060
|
},
|
|
2834
|
-
"default": "
|
|
3061
|
+
"default": "1"
|
|
2835
3062
|
},
|
|
2836
3063
|
{
|
|
2837
|
-
"name": "
|
|
2838
|
-
"description": "
|
|
3064
|
+
"name": "totalPages",
|
|
3065
|
+
"description": "The total number of items the pager is paging through.",
|
|
3066
|
+
"value": {
|
|
3067
|
+
"kind": "expression",
|
|
3068
|
+
"type": "number"
|
|
3069
|
+
},
|
|
3070
|
+
"default": "null"
|
|
3071
|
+
}
|
|
3072
|
+
],
|
|
3073
|
+
"events": [
|
|
3074
|
+
{
|
|
3075
|
+
"name": "page-selected"
|
|
3076
|
+
}
|
|
3077
|
+
],
|
|
3078
|
+
"source": {
|
|
3079
|
+
"module": "./src/components/pagination/components/pagination-context/pagination-context.vue",
|
|
3080
|
+
"symbol": "default"
|
|
3081
|
+
}
|
|
3082
|
+
},
|
|
3083
|
+
{
|
|
3084
|
+
"name": "bento-pagination-context-results-per-page",
|
|
3085
|
+
"description": "",
|
|
3086
|
+
"attributes": [
|
|
3087
|
+
{
|
|
3088
|
+
"name": "itemsPerPage",
|
|
3089
|
+
"description": "The amount of items the pager is paging through.",
|
|
3090
|
+
"value": {
|
|
3091
|
+
"kind": "expression",
|
|
3092
|
+
"type": "number"
|
|
3093
|
+
},
|
|
3094
|
+
"default": "DEFAULT_NUMBER_OF_RESULTS"
|
|
3095
|
+
},
|
|
3096
|
+
{
|
|
3097
|
+
"name": "totalCount",
|
|
3098
|
+
"description": "The total number of items the pager is paging through.",
|
|
3099
|
+
"value": {
|
|
3100
|
+
"kind": "expression",
|
|
3101
|
+
"type": "number"
|
|
3102
|
+
},
|
|
3103
|
+
"default": "null"
|
|
3104
|
+
}
|
|
3105
|
+
],
|
|
3106
|
+
"events": [
|
|
3107
|
+
{
|
|
3108
|
+
"name": "select"
|
|
3109
|
+
}
|
|
3110
|
+
],
|
|
3111
|
+
"source": {
|
|
3112
|
+
"module": "./src/components/pagination/components/pagination-results-per-page/pagination-results-per-page.vue",
|
|
3113
|
+
"symbol": "default"
|
|
3114
|
+
}
|
|
3115
|
+
},
|
|
3116
|
+
{
|
|
3117
|
+
"name": "bento-payment-method",
|
|
3118
|
+
"description": "A payment method type component to display the type's icon and label.",
|
|
3119
|
+
"attributes": [
|
|
3120
|
+
{
|
|
3121
|
+
"name": "type",
|
|
3122
|
+
"description": "The type of payment method to display.",
|
|
3123
|
+
"value": {
|
|
3124
|
+
"kind": "expression",
|
|
3125
|
+
"type": "BentoPaymentMethodType"
|
|
3126
|
+
},
|
|
3127
|
+
"default": "BentoPaymentMethodType.UNKNOWNCARD"
|
|
3128
|
+
},
|
|
3129
|
+
{
|
|
3130
|
+
"name": "label",
|
|
3131
|
+
"required": true,
|
|
3132
|
+
"description": "The label describing to the payment method icon.",
|
|
3133
|
+
"value": {
|
|
3134
|
+
"kind": "expression",
|
|
3135
|
+
"type": "string"
|
|
3136
|
+
}
|
|
3137
|
+
}
|
|
3138
|
+
],
|
|
3139
|
+
"source": {
|
|
3140
|
+
"module": "./src/components/payment-method/payment-method.vue",
|
|
3141
|
+
"symbol": "default"
|
|
3142
|
+
}
|
|
3143
|
+
},
|
|
3144
|
+
{
|
|
3145
|
+
"name": "bento-popover",
|
|
3146
|
+
"description": "Example description of the component...",
|
|
3147
|
+
"attributes": [
|
|
3148
|
+
{
|
|
3149
|
+
"name": "actions",
|
|
3150
|
+
"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`: Vue Icon from the library `@adyen/ui-assets-icons-16`.\n\n```\n[{\n title: 'Primary',\n event: () => { ... },\n icon: FourPeopleIcon\n}, {\n title: 'Secondary',\n event: () => { ... }\n}]\n```",
|
|
3151
|
+
"value": {
|
|
3152
|
+
"kind": "expression",
|
|
3153
|
+
"type": "BentoButtonActionsList"
|
|
3154
|
+
},
|
|
3155
|
+
"default": "null"
|
|
3156
|
+
},
|
|
3157
|
+
{
|
|
3158
|
+
"name": "actionsLayout",
|
|
3159
|
+
"description": "Defines the layout in which the button actions is presented.\nIt can be one of:",
|
|
3160
|
+
"value": {
|
|
3161
|
+
"kind": "expression",
|
|
3162
|
+
"type": "BentoButtonActionsLayout"
|
|
3163
|
+
},
|
|
3164
|
+
"default": "BentoButtonActionsLayout.BUTTONS_END"
|
|
3165
|
+
},
|
|
3166
|
+
{
|
|
3167
|
+
"name": "ariaLabel",
|
|
3168
|
+
"description": "Defines a string value that provides an accessible name for the popover.",
|
|
3169
|
+
"value": {
|
|
3170
|
+
"kind": "expression",
|
|
3171
|
+
"type": "string"
|
|
3172
|
+
},
|
|
3173
|
+
"default": "null"
|
|
3174
|
+
},
|
|
3175
|
+
{
|
|
3176
|
+
"name": "divider",
|
|
3177
|
+
"description": "Adds a divider line to the actions section, reduces the top/bottom paddings and removes all padding in the \"default\" slot.",
|
|
2839
3178
|
"value": {
|
|
2840
3179
|
"kind": "expression",
|
|
2841
3180
|
"type": "boolean"
|
|
@@ -2843,130 +3182,666 @@
|
|
|
2843
3182
|
"default": "false"
|
|
2844
3183
|
},
|
|
2845
3184
|
{
|
|
2846
|
-
"name": "
|
|
2847
|
-
"description": "
|
|
3185
|
+
"name": "disableFocusTrap",
|
|
3186
|
+
"description": "Supports disabling focus trap functionality to avoid scroll into view behavior when we don't need it.",
|
|
3187
|
+
"value": {
|
|
3188
|
+
"kind": "expression",
|
|
3189
|
+
"type": "boolean"
|
|
3190
|
+
},
|
|
3191
|
+
"default": "false"
|
|
3192
|
+
},
|
|
3193
|
+
{
|
|
3194
|
+
"name": "dismissible",
|
|
3195
|
+
"description": "Adds a \"dismiss\" icon that triggers the \"dismiss\" event.",
|
|
3196
|
+
"value": {
|
|
3197
|
+
"kind": "expression",
|
|
3198
|
+
"type": "boolean"
|
|
3199
|
+
},
|
|
3200
|
+
"default": "false"
|
|
3201
|
+
},
|
|
3202
|
+
{
|
|
3203
|
+
"name": "fixedPositioning",
|
|
3204
|
+
"description": "Instructs popover to be visible outside of the containing container.\nUseful when component would be used in limited containers like Modal, Side panel, etc.\nhttps://popper.js.org/docs/v2/constructors/#strategy",
|
|
3205
|
+
"value": {
|
|
3206
|
+
"kind": "expression",
|
|
3207
|
+
"type": "boolean"
|
|
3208
|
+
},
|
|
3209
|
+
"default": "false"
|
|
3210
|
+
},
|
|
3211
|
+
{
|
|
3212
|
+
"name": "open",
|
|
3213
|
+
"description": "Toggles the popover open and closed",
|
|
3214
|
+
"value": {
|
|
3215
|
+
"kind": "expression",
|
|
3216
|
+
"type": "boolean"
|
|
3217
|
+
},
|
|
3218
|
+
"default": "false"
|
|
3219
|
+
},
|
|
3220
|
+
{
|
|
3221
|
+
"name": "large",
|
|
3222
|
+
"description": "Displays the popover in a large size.",
|
|
3223
|
+
"value": {
|
|
3224
|
+
"kind": "expression",
|
|
3225
|
+
"type": "boolean"
|
|
3226
|
+
},
|
|
3227
|
+
"default": "false"
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"name": "modifiers",
|
|
3231
|
+
"description": "Custom set of modifiers. Useful for low-level control over Popper behavior in some really complex use cases.",
|
|
3232
|
+
"value": {
|
|
3233
|
+
"kind": "expression",
|
|
3234
|
+
"type": "array"
|
|
3235
|
+
},
|
|
3236
|
+
"default": "null"
|
|
3237
|
+
},
|
|
3238
|
+
{
|
|
3239
|
+
"name": "position",
|
|
3240
|
+
"description": "Popover's position relative to the target element.\nPossible values are:\n'auto', 'auto-start', 'auto-end',\n'top', 'top-start', 'top-end'\n'right', 'right-start', 'right-end'\n'bottom', 'bottom-start', 'bottom-end'\n'left', 'left-start', 'left-end'",
|
|
3241
|
+
"value": {
|
|
3242
|
+
"kind": "expression",
|
|
3243
|
+
"type": "BentoPopoverPositions"
|
|
3244
|
+
},
|
|
3245
|
+
"default": "BentoPopoverPositions.TOP"
|
|
3246
|
+
},
|
|
3247
|
+
{
|
|
3248
|
+
"name": "small",
|
|
3249
|
+
"description": "Displays the popover in a small size.",
|
|
3250
|
+
"value": {
|
|
3251
|
+
"kind": "expression",
|
|
3252
|
+
"type": "boolean"
|
|
3253
|
+
},
|
|
3254
|
+
"default": "false"
|
|
3255
|
+
},
|
|
3256
|
+
{
|
|
3257
|
+
"name": "title",
|
|
3258
|
+
"description": "Indicates the title you want to give the popover.",
|
|
3259
|
+
"value": {
|
|
3260
|
+
"kind": "expression",
|
|
3261
|
+
"type": "string"
|
|
3262
|
+
},
|
|
3263
|
+
"default": "null"
|
|
3264
|
+
},
|
|
3265
|
+
{
|
|
3266
|
+
"name": "targetElement",
|
|
3267
|
+
"required": true,
|
|
3268
|
+
"description": "Popover's target element.\nThe popover will position itself relatively to target element, in specified position.",
|
|
3269
|
+
"value": {
|
|
3270
|
+
"kind": "expression",
|
|
3271
|
+
"type": "PopperContainer.props?.targetElement.type"
|
|
3272
|
+
}
|
|
3273
|
+
},
|
|
3274
|
+
{
|
|
3275
|
+
"name": "withoutSpace",
|
|
3276
|
+
"description": "Displays the popover without padding.",
|
|
3277
|
+
"value": {
|
|
3278
|
+
"kind": "expression",
|
|
3279
|
+
"type": "boolean"
|
|
3280
|
+
},
|
|
3281
|
+
"default": "false"
|
|
3282
|
+
}
|
|
3283
|
+
],
|
|
3284
|
+
"events": [
|
|
3285
|
+
{
|
|
3286
|
+
"name": "dismiss"
|
|
3287
|
+
}
|
|
3288
|
+
],
|
|
3289
|
+
"slots": [
|
|
3290
|
+
{
|
|
3291
|
+
"name": "image"
|
|
3292
|
+
},
|
|
3293
|
+
{
|
|
3294
|
+
"name": "headerIcon"
|
|
3295
|
+
},
|
|
3296
|
+
{
|
|
3297
|
+
"name": "default"
|
|
3298
|
+
}
|
|
3299
|
+
],
|
|
3300
|
+
"source": {
|
|
3301
|
+
"module": "./src/components/popover/popover.vue",
|
|
3302
|
+
"symbol": "default"
|
|
3303
|
+
}
|
|
3304
|
+
},
|
|
3305
|
+
{
|
|
3306
|
+
"name": "bento-popover-dismiss-button",
|
|
3307
|
+
"description": "",
|
|
3308
|
+
"attributes": [
|
|
3309
|
+
{
|
|
3310
|
+
"name": "onImage",
|
|
3311
|
+
"value": {
|
|
3312
|
+
"kind": "expression",
|
|
3313
|
+
"type": "boolean"
|
|
3314
|
+
},
|
|
3315
|
+
"default": "false"
|
|
3316
|
+
}
|
|
3317
|
+
],
|
|
3318
|
+
"events": [
|
|
3319
|
+
{
|
|
3320
|
+
"name": "click"
|
|
3321
|
+
}
|
|
3322
|
+
],
|
|
3323
|
+
"source": {
|
|
3324
|
+
"module": "./src/components/popover/components/popover-dismiss-button/popover-dismiss-button.vue",
|
|
3325
|
+
"symbol": "default"
|
|
3326
|
+
}
|
|
3327
|
+
},
|
|
3328
|
+
{
|
|
3329
|
+
"name": "bento-popover-image",
|
|
3330
|
+
"description": "",
|
|
3331
|
+
"attributes": [
|
|
3332
|
+
{
|
|
3333
|
+
"name": "src",
|
|
3334
|
+
"required": true,
|
|
3335
|
+
"description": "URL to image.\nFor more details, see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-src",
|
|
3336
|
+
"value": {
|
|
3337
|
+
"kind": "expression",
|
|
3338
|
+
"type": "string"
|
|
3339
|
+
}
|
|
3340
|
+
},
|
|
3341
|
+
{
|
|
3342
|
+
"name": "alt",
|
|
3343
|
+
"required": true,
|
|
3344
|
+
"description": "Explanatory text for the image",
|
|
3345
|
+
"value": {
|
|
3346
|
+
"kind": "expression",
|
|
3347
|
+
"type": "string"
|
|
3348
|
+
}
|
|
3349
|
+
}
|
|
3350
|
+
],
|
|
3351
|
+
"source": {
|
|
3352
|
+
"module": "./src/components/popover/components/popover-image/popover-image.vue",
|
|
3353
|
+
"symbol": "default"
|
|
3354
|
+
}
|
|
3355
|
+
},
|
|
3356
|
+
{
|
|
3357
|
+
"name": "bento-radio-group",
|
|
3358
|
+
"description": "A radio group component should be used whenever it is necessary to use a set of radio buttons\nThis component conforms to the official WAI-ARIA guidelines for grouping controls: https://www.w3.org/WAI/tutorials/forms/grouping/\n\nimport { BentoRadioGroup, BentoRadioGroupVariant } from '@adyen/bento-vue2/';\n\nexport default {\n components: { BentoRadioGroup },\n template: `\n <bento-radio-group\n label=\"Your group label\"\n :items=\"[\n { value: 1, label: 'Your label' },\n { value: 2, label: 'Another label', description: 'Your descriptive sub label' },\n ]\"\n :variant=\"BentoRadioGroupVariant.HORIZONTAL\"\n />\n `\n};",
|
|
3359
|
+
"attributes": [
|
|
3360
|
+
{
|
|
3361
|
+
"name": "items",
|
|
3362
|
+
"required": true,
|
|
3363
|
+
"description": "The checkbox group's items.",
|
|
3364
|
+
"value": {
|
|
3365
|
+
"kind": "expression",
|
|
3366
|
+
"type": "BentoRadioGroupItems"
|
|
3367
|
+
}
|
|
3368
|
+
},
|
|
3369
|
+
{
|
|
3370
|
+
"name": "variant",
|
|
3371
|
+
"description": "The checkbox group's layout. It can be vertical or horizontal. Defaults to vertical.",
|
|
3372
|
+
"value": {
|
|
3373
|
+
"kind": "expression",
|
|
3374
|
+
"type": "BentoRadioGroupVariant"
|
|
3375
|
+
},
|
|
3376
|
+
"default": "BentoRadioGroupVariant.VERTICAL"
|
|
3377
|
+
},
|
|
3378
|
+
{
|
|
3379
|
+
"name": "formId",
|
|
3380
|
+
"description": "The form id the checkbox group is associated with. Defaults to null, as a checkbox group can also be used standalone.",
|
|
3381
|
+
"value": {
|
|
3382
|
+
"kind": "expression",
|
|
3383
|
+
"type": "string"
|
|
3384
|
+
},
|
|
3385
|
+
"default": "null"
|
|
3386
|
+
},
|
|
3387
|
+
{
|
|
3388
|
+
"name": "disabled",
|
|
3389
|
+
"description": "If set to true, renders all checkboxes in the group in a disabled state.",
|
|
3390
|
+
"value": {
|
|
3391
|
+
"kind": "expression",
|
|
3392
|
+
"type": "boolean"
|
|
3393
|
+
},
|
|
3394
|
+
"default": "false"
|
|
3395
|
+
},
|
|
3396
|
+
{
|
|
3397
|
+
"name": "label",
|
|
3398
|
+
"required": true,
|
|
3399
|
+
"description": "The name associated with the group. Required for accessibility purposes.",
|
|
3400
|
+
"value": {
|
|
3401
|
+
"kind": "expression",
|
|
3402
|
+
"type": "string"
|
|
3403
|
+
}
|
|
3404
|
+
},
|
|
3405
|
+
{
|
|
3406
|
+
"name": "selectedValue",
|
|
3407
|
+
"description": "Determines the initially selected value of the group. Corresponds to the BentoRadioButtonItem's value.\nDefaults to no value selected.",
|
|
3408
|
+
"value": {
|
|
3409
|
+
"kind": "expression",
|
|
3410
|
+
"type": "number|string"
|
|
3411
|
+
},
|
|
3412
|
+
"default": "null"
|
|
3413
|
+
}
|
|
3414
|
+
],
|
|
3415
|
+
"events": [
|
|
3416
|
+
{
|
|
3417
|
+
"name": "input"
|
|
3418
|
+
}
|
|
3419
|
+
],
|
|
3420
|
+
"source": {
|
|
3421
|
+
"module": "./src/components/radio-group/radio-group.vue",
|
|
3422
|
+
"symbol": "default"
|
|
3423
|
+
}
|
|
3424
|
+
},
|
|
3425
|
+
{
|
|
3426
|
+
"name": "bento-range-filter",
|
|
3427
|
+
"description": "Range filter used in the filter-bar component.",
|
|
3428
|
+
"attributes": [
|
|
3429
|
+
{
|
|
3430
|
+
"name": "field",
|
|
3431
|
+
"required": true,
|
|
3432
|
+
"description": "Filter name/key referencing the actual property name in the data set.\nShould be unique per filter bar.",
|
|
3433
|
+
"value": {
|
|
3434
|
+
"kind": "expression",
|
|
3435
|
+
"type": "string"
|
|
3436
|
+
}
|
|
3437
|
+
},
|
|
3438
|
+
{
|
|
3439
|
+
"name": "label",
|
|
3440
|
+
"required": true,
|
|
3441
|
+
"description": "Label text to be displayed",
|
|
3442
|
+
"value": {
|
|
3443
|
+
"kind": "expression",
|
|
3444
|
+
"type": "string"
|
|
3445
|
+
}
|
|
3446
|
+
},
|
|
3447
|
+
{
|
|
3448
|
+
"name": "value",
|
|
3449
|
+
"description": "Current value of the filter",
|
|
3450
|
+
"value": {
|
|
3451
|
+
"kind": "expression",
|
|
3452
|
+
"type": "string[]"
|
|
3453
|
+
},
|
|
3454
|
+
"default": "() => ['', '']"
|
|
3455
|
+
}
|
|
3456
|
+
],
|
|
3457
|
+
"events": [
|
|
3458
|
+
{
|
|
3459
|
+
"name": "update"
|
|
3460
|
+
}
|
|
3461
|
+
],
|
|
3462
|
+
"source": {
|
|
3463
|
+
"module": "./src/components/filter-bar/components/range-filter/range-filter.vue",
|
|
3464
|
+
"symbol": "default"
|
|
3465
|
+
}
|
|
3466
|
+
},
|
|
3467
|
+
{
|
|
3468
|
+
"name": "bento-search-bar",
|
|
3469
|
+
"description": "Search functionality to help users find the desired data quicker.\nWhen a user starts typing, the data is dynamically filtered to\nonly show the relevant results.\n\nClearing the search field displays the entire list again.",
|
|
3470
|
+
"attributes": [
|
|
3471
|
+
{
|
|
3472
|
+
"name": "inputFieldAriaLabel",
|
|
3473
|
+
"required": true,
|
|
3474
|
+
"description": "Text that labels an the search bar input element",
|
|
3475
|
+
"value": {
|
|
3476
|
+
"kind": "expression",
|
|
3477
|
+
"type": "string"
|
|
3478
|
+
}
|
|
3479
|
+
},
|
|
3480
|
+
{
|
|
3481
|
+
"name": "debounceTime",
|
|
3482
|
+
"description": "Custom debounce time. Default: 300",
|
|
3483
|
+
"value": {
|
|
3484
|
+
"kind": "expression",
|
|
3485
|
+
"type": "number"
|
|
3486
|
+
},
|
|
3487
|
+
"default": "300"
|
|
3488
|
+
},
|
|
3489
|
+
{
|
|
3490
|
+
"name": "value",
|
|
3491
|
+
"description": "Text displayed as the value being searched",
|
|
3492
|
+
"value": {
|
|
3493
|
+
"kind": "expression",
|
|
3494
|
+
"type": "string"
|
|
3495
|
+
},
|
|
3496
|
+
"default": "undefined"
|
|
3497
|
+
}
|
|
3498
|
+
],
|
|
3499
|
+
"events": [
|
|
3500
|
+
{
|
|
3501
|
+
"name": "escape-pressed"
|
|
3502
|
+
},
|
|
3503
|
+
{
|
|
3504
|
+
"name": "input"
|
|
3505
|
+
},
|
|
3506
|
+
{
|
|
3507
|
+
"name": "clear"
|
|
3508
|
+
}
|
|
3509
|
+
],
|
|
3510
|
+
"source": {
|
|
3511
|
+
"module": "./src/components/search-bar/search-bar.vue",
|
|
3512
|
+
"symbol": "default"
|
|
3513
|
+
}
|
|
3514
|
+
},
|
|
3515
|
+
{
|
|
3516
|
+
"name": "bento-select-avatar-filter",
|
|
3517
|
+
"description": "The Select Avatar filter displays a listbox of avatar items\npassed in the \"options.listboxItems\" property.",
|
|
3518
|
+
"attributes": [
|
|
3519
|
+
{
|
|
3520
|
+
"name": "options",
|
|
3521
|
+
"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}",
|
|
3522
|
+
"value": {
|
|
3523
|
+
"kind": "expression",
|
|
3524
|
+
"type": "BentoSelectAvatarFilterOptions"
|
|
3525
|
+
},
|
|
3526
|
+
"default": "undefined"
|
|
3527
|
+
}
|
|
3528
|
+
],
|
|
3529
|
+
"events": [
|
|
3530
|
+
{
|
|
3531
|
+
"name": "update"
|
|
3532
|
+
}
|
|
3533
|
+
],
|
|
3534
|
+
"source": {
|
|
3535
|
+
"module": "./src/components/filter-bar/components/select-filter/variants/select-avatar-filter/select-avatar-filter.vue",
|
|
3536
|
+
"symbol": "default"
|
|
3537
|
+
}
|
|
3538
|
+
},
|
|
3539
|
+
{
|
|
3540
|
+
"name": "bento-select-country-filter",
|
|
3541
|
+
"description": "The Select Country filter displays a listbox of country items\npassed in the \"options.listboxItems\" property.",
|
|
3542
|
+
"attributes": [
|
|
3543
|
+
{
|
|
3544
|
+
"name": "options",
|
|
3545
|
+
"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}.",
|
|
3546
|
+
"value": {
|
|
3547
|
+
"kind": "expression",
|
|
3548
|
+
"type": "BentoSelectCountryFilterOptions"
|
|
3549
|
+
},
|
|
3550
|
+
"default": "undefined"
|
|
3551
|
+
}
|
|
3552
|
+
],
|
|
3553
|
+
"events": [
|
|
3554
|
+
{
|
|
3555
|
+
"name": "update"
|
|
3556
|
+
}
|
|
3557
|
+
],
|
|
3558
|
+
"source": {
|
|
3559
|
+
"module": "./src/components/filter-bar/components/select-filter/variants/select-country-filter/select-country-filter.vue",
|
|
3560
|
+
"symbol": "default"
|
|
3561
|
+
}
|
|
3562
|
+
},
|
|
3563
|
+
{
|
|
3564
|
+
"name": "bento-select-country-filter",
|
|
3565
|
+
"description": "The Select Country filter displays a listbox of country items\npassed in the \"options.listboxItems\" property.",
|
|
3566
|
+
"attributes": [
|
|
3567
|
+
{
|
|
3568
|
+
"name": "options",
|
|
3569
|
+
"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}",
|
|
3570
|
+
"value": {
|
|
3571
|
+
"kind": "expression",
|
|
3572
|
+
"type": "BentoSelectCurrencyFilterOptions"
|
|
3573
|
+
},
|
|
3574
|
+
"default": "undefined"
|
|
3575
|
+
}
|
|
3576
|
+
],
|
|
3577
|
+
"events": [
|
|
3578
|
+
{
|
|
3579
|
+
"name": "update"
|
|
3580
|
+
}
|
|
3581
|
+
],
|
|
3582
|
+
"source": {
|
|
3583
|
+
"module": "./src/components/filter-bar/components/select-filter/variants/select-currency-filter/select-currency-filter.vue",
|
|
3584
|
+
"symbol": "default"
|
|
3585
|
+
}
|
|
3586
|
+
},
|
|
3587
|
+
{
|
|
3588
|
+
"name": "bento-select-country-filter",
|
|
3589
|
+
"description": "The Select Tag filter displays a listbox of tag items\npassed in the \"options.listboxItems\" property.",
|
|
3590
|
+
"attributes": [
|
|
3591
|
+
{
|
|
3592
|
+
"name": "options",
|
|
3593
|
+
"description": "List of options that are needed to setup the tag 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 BentoSelectTagFilterOptions}",
|
|
3594
|
+
"value": {
|
|
3595
|
+
"kind": "expression",
|
|
3596
|
+
"type": "BentoSelectTagFilterOptions"
|
|
3597
|
+
},
|
|
3598
|
+
"default": "undefined"
|
|
3599
|
+
}
|
|
3600
|
+
],
|
|
3601
|
+
"events": [
|
|
3602
|
+
{
|
|
3603
|
+
"name": "update"
|
|
3604
|
+
}
|
|
3605
|
+
],
|
|
3606
|
+
"source": {
|
|
3607
|
+
"module": "./src/components/filter-bar/components/select-filter/variants/select-tag-filter/select-tag-filter.vue",
|
|
3608
|
+
"symbol": "default"
|
|
3609
|
+
}
|
|
3610
|
+
},
|
|
3611
|
+
{
|
|
3612
|
+
"name": "bento-select-filter",
|
|
3613
|
+
"description": "The Listbox filter displays a listbox of items\npassed in the \"options.listboxItems\" property.",
|
|
3614
|
+
"attributes": [
|
|
3615
|
+
{
|
|
3616
|
+
"name": "field",
|
|
3617
|
+
"required": true,
|
|
3618
|
+
"description": "Filter name/key referencing the actual property name in the data set.\nShould be unique per filter bar.",
|
|
3619
|
+
"value": {
|
|
3620
|
+
"kind": "expression",
|
|
3621
|
+
"type": "string"
|
|
3622
|
+
}
|
|
3623
|
+
},
|
|
3624
|
+
{
|
|
3625
|
+
"name": "label",
|
|
3626
|
+
"required": true,
|
|
3627
|
+
"description": "Label text to be displayed",
|
|
3628
|
+
"value": {
|
|
3629
|
+
"kind": "expression",
|
|
3630
|
+
"type": "string"
|
|
3631
|
+
}
|
|
3632
|
+
},
|
|
3633
|
+
{
|
|
3634
|
+
"name": "options",
|
|
3635
|
+
"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.",
|
|
3636
|
+
"value": {
|
|
3637
|
+
"kind": "expression",
|
|
3638
|
+
"type": "BentoSelectFilterOptions"
|
|
3639
|
+
},
|
|
3640
|
+
"default": "undefined"
|
|
3641
|
+
},
|
|
3642
|
+
{
|
|
3643
|
+
"name": "value",
|
|
3644
|
+
"description": "Current value of the filter",
|
|
3645
|
+
"value": {
|
|
3646
|
+
"kind": "expression",
|
|
3647
|
+
"type": "BentoListboxSelectedValue"
|
|
3648
|
+
},
|
|
3649
|
+
"default": "undefined"
|
|
3650
|
+
}
|
|
3651
|
+
],
|
|
3652
|
+
"events": [
|
|
3653
|
+
{
|
|
3654
|
+
"name": "update"
|
|
3655
|
+
}
|
|
3656
|
+
],
|
|
3657
|
+
"slots": [
|
|
3658
|
+
{
|
|
3659
|
+
"name": "default"
|
|
3660
|
+
}
|
|
3661
|
+
],
|
|
3662
|
+
"source": {
|
|
3663
|
+
"module": "./src/components/filter-bar/components/select-filter/select-filter.vue",
|
|
3664
|
+
"symbol": "default"
|
|
3665
|
+
}
|
|
3666
|
+
},
|
|
3667
|
+
{
|
|
3668
|
+
"name": "bento-select-payment-method-filter",
|
|
3669
|
+
"description": "The Select Payment Method filter displays a listbox of country items\npassed in the \"options.listboxItems\" property to be used in the FilterBar component.",
|
|
3670
|
+
"attributes": [
|
|
3671
|
+
{
|
|
3672
|
+
"name": "options",
|
|
3673
|
+
"description": "List of options that are needed to setup the payment method 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 BentoSelectPaymentMethodFilterOptions}",
|
|
3674
|
+
"value": {
|
|
3675
|
+
"kind": "expression",
|
|
3676
|
+
"type": "BentoSelectPaymentMethodFilterOptions"
|
|
3677
|
+
},
|
|
3678
|
+
"default": "undefined"
|
|
3679
|
+
}
|
|
3680
|
+
],
|
|
3681
|
+
"events": [
|
|
3682
|
+
{
|
|
3683
|
+
"name": "update"
|
|
3684
|
+
}
|
|
3685
|
+
],
|
|
3686
|
+
"source": {
|
|
3687
|
+
"module": "./src/components/filter-bar/components/select-filter/variants/select-payment-method-filter/select-payment-method-filter.vue",
|
|
3688
|
+
"symbol": "default"
|
|
3689
|
+
}
|
|
3690
|
+
},
|
|
3691
|
+
{
|
|
3692
|
+
"name": "bento-status",
|
|
3693
|
+
"description": "A Status component is used to indicate a\npassage of time or a particular step of a process.",
|
|
3694
|
+
"attributes": [
|
|
3695
|
+
{
|
|
3696
|
+
"name": "variant",
|
|
3697
|
+
"required": true,
|
|
3698
|
+
"value": {
|
|
3699
|
+
"kind": "expression",
|
|
3700
|
+
"type": "BentoStatusVariant"
|
|
3701
|
+
}
|
|
3702
|
+
}
|
|
3703
|
+
],
|
|
3704
|
+
"slots": [
|
|
3705
|
+
{
|
|
3706
|
+
"name": "default"
|
|
3707
|
+
}
|
|
3708
|
+
],
|
|
3709
|
+
"source": {
|
|
3710
|
+
"module": "./src/components/status/status.vue",
|
|
3711
|
+
"symbol": "default"
|
|
3712
|
+
}
|
|
3713
|
+
},
|
|
3714
|
+
{
|
|
3715
|
+
"name": "bento-structured-list",
|
|
3716
|
+
"description": "This is a list used to display pairs of information in a clear and organized manner.\n`BentoStructureListItem` should be used to pass the label/value pairs to the list.",
|
|
3717
|
+
"slots": [
|
|
3718
|
+
{
|
|
3719
|
+
"name": "default"
|
|
3720
|
+
}
|
|
3721
|
+
],
|
|
3722
|
+
"source": {
|
|
3723
|
+
"module": "./src/components/structured-list/structured-list.vue",
|
|
3724
|
+
"symbol": "default"
|
|
3725
|
+
}
|
|
3726
|
+
},
|
|
3727
|
+
{
|
|
3728
|
+
"name": "bento-structured-list-item",
|
|
3729
|
+
"description": "This is an item of the `BentoStructuredList` meant to be used only with that component.\nIt consists of a label/value pair, and also the optional copy and search modifiers.",
|
|
3730
|
+
"attributes": [
|
|
3731
|
+
{
|
|
3732
|
+
"name": "label",
|
|
3733
|
+
"required": true,
|
|
3734
|
+
"description": "Label to display for the value",
|
|
3735
|
+
"value": {
|
|
3736
|
+
"kind": "expression",
|
|
3737
|
+
"type": "string"
|
|
3738
|
+
}
|
|
3739
|
+
},
|
|
3740
|
+
{
|
|
3741
|
+
"name": "copy",
|
|
3742
|
+
"description": "Text to copy when the user clicks `Copy` icon",
|
|
2848
3743
|
"value": {
|
|
2849
3744
|
"kind": "expression",
|
|
2850
3745
|
"type": "string"
|
|
2851
3746
|
},
|
|
2852
|
-
"default": "
|
|
3747
|
+
"default": "undefined"
|
|
2853
3748
|
},
|
|
2854
3749
|
{
|
|
2855
|
-
"name": "
|
|
2856
|
-
"
|
|
2857
|
-
"description": "Popover's target element.\nThe popover will position itself relatively to target element, in specified position.",
|
|
3750
|
+
"name": "search",
|
|
3751
|
+
"description": "Function to trigger when user clicks `Search` icon",
|
|
2858
3752
|
"value": {
|
|
2859
3753
|
"kind": "expression",
|
|
2860
|
-
"type": "
|
|
2861
|
-
}
|
|
3754
|
+
"type": "(event: Event) => void"
|
|
3755
|
+
},
|
|
3756
|
+
"default": "undefined"
|
|
2862
3757
|
},
|
|
2863
3758
|
{
|
|
2864
|
-
"name": "
|
|
2865
|
-
"description": "
|
|
3759
|
+
"name": "searchTooltip",
|
|
3760
|
+
"description": "Text to display when the user hovers over `Search` icon",
|
|
2866
3761
|
"value": {
|
|
2867
3762
|
"kind": "expression",
|
|
2868
|
-
"type": "
|
|
3763
|
+
"type": "string"
|
|
2869
3764
|
},
|
|
2870
|
-
"default": "
|
|
2871
|
-
}
|
|
2872
|
-
],
|
|
2873
|
-
"events": [
|
|
2874
|
-
{
|
|
2875
|
-
"name": "dismiss"
|
|
3765
|
+
"default": "undefined"
|
|
2876
3766
|
}
|
|
2877
3767
|
],
|
|
2878
3768
|
"slots": [
|
|
2879
|
-
{
|
|
2880
|
-
"name": "image"
|
|
2881
|
-
},
|
|
2882
|
-
{
|
|
2883
|
-
"name": "headerIcon"
|
|
2884
|
-
},
|
|
2885
3769
|
{
|
|
2886
3770
|
"name": "default"
|
|
2887
3771
|
}
|
|
2888
3772
|
],
|
|
2889
3773
|
"source": {
|
|
2890
|
-
"module": "./src/components/
|
|
3774
|
+
"module": "./src/components/structured-list/components/structered-list-item/structured-list-item.vue",
|
|
2891
3775
|
"symbol": "default"
|
|
2892
3776
|
}
|
|
2893
3777
|
},
|
|
2894
3778
|
{
|
|
2895
|
-
"name": "bento-
|
|
2896
|
-
"description": "",
|
|
3779
|
+
"name": "bento-summary-grid",
|
|
3780
|
+
"description": "A summary grid component that displays a collection items.",
|
|
2897
3781
|
"attributes": [
|
|
2898
3782
|
{
|
|
2899
|
-
"name": "
|
|
3783
|
+
"name": "columnWidth",
|
|
3784
|
+
"description": "Sets the responsive columns widths values for 1 of the 3 rows.",
|
|
2900
3785
|
"value": {
|
|
2901
3786
|
"kind": "expression",
|
|
2902
|
-
"type": "
|
|
3787
|
+
"type": "BentoSummaryGridColumnWidth"
|
|
2903
3788
|
},
|
|
2904
|
-
"default": "
|
|
3789
|
+
"default": "null"
|
|
2905
3790
|
}
|
|
2906
3791
|
],
|
|
2907
|
-
"
|
|
3792
|
+
"slots": [
|
|
2908
3793
|
{
|
|
2909
|
-
"name": "
|
|
3794
|
+
"name": "default"
|
|
2910
3795
|
}
|
|
2911
3796
|
],
|
|
2912
3797
|
"source": {
|
|
2913
|
-
"module": "./src/components/
|
|
3798
|
+
"module": "./src/components/summary-grid/summary-grid.vue",
|
|
2914
3799
|
"symbol": "default"
|
|
2915
3800
|
}
|
|
2916
3801
|
},
|
|
2917
3802
|
{
|
|
2918
|
-
"name": "bento-
|
|
2919
|
-
"description": "",
|
|
3803
|
+
"name": "bento-summary-grid-item-amount",
|
|
3804
|
+
"description": "Summary grid item component used to display financial data, such as currency values and monetary amounts",
|
|
2920
3805
|
"attributes": [
|
|
2921
3806
|
{
|
|
2922
|
-
"name": "
|
|
2923
|
-
"
|
|
2924
|
-
"description": "URL to image.\nFor more details, see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-src",
|
|
3807
|
+
"name": "copy",
|
|
3808
|
+
"description": "Text to copy to the clipboard",
|
|
2925
3809
|
"value": {
|
|
2926
3810
|
"kind": "expression",
|
|
2927
3811
|
"type": "string"
|
|
2928
|
-
}
|
|
3812
|
+
},
|
|
3813
|
+
"default": "undefined"
|
|
2929
3814
|
},
|
|
2930
3815
|
{
|
|
2931
|
-
"name": "
|
|
3816
|
+
"name": "label",
|
|
2932
3817
|
"required": true,
|
|
2933
|
-
"description": "
|
|
3818
|
+
"description": "Amount to be shown as the main value",
|
|
2934
3819
|
"value": {
|
|
2935
3820
|
"kind": "expression",
|
|
2936
3821
|
"type": "string"
|
|
2937
3822
|
}
|
|
2938
|
-
}
|
|
2939
|
-
],
|
|
2940
|
-
"source": {
|
|
2941
|
-
"module": "./src/components/popover/components/popover-image/popover-image.vue",
|
|
2942
|
-
"symbol": "default"
|
|
2943
|
-
}
|
|
2944
|
-
},
|
|
2945
|
-
{
|
|
2946
|
-
"name": "bento-radio-group",
|
|
2947
|
-
"description": "A radio group component should be used whenever it is necessary to use a set of radio buttons\nThis component conforms to the official WAI-ARIA guidelines for grouping controls: https://www.w3.org/WAI/tutorials/forms/grouping/\n\nimport { BentoRadioGroup, BentoRadioGroupVariant } from '@adyen/bento-vue2/';\n\nexport default {\n components: { BentoRadioGroup },\n template: `\n <bento-radio-group\n label=\"Your group label\"\n :items=\"[\n { value: 1, label: 'Your label' },\n { value: 2, label: 'Another label', description: 'Your sub label' },\n ]\"\n :variant=\"BentoRadioGroupVariant.HORIZONTAL\"\n />\n `\n};",
|
|
2948
|
-
"attributes": [
|
|
3823
|
+
},
|
|
2949
3824
|
{
|
|
2950
|
-
"name": "
|
|
2951
|
-
"
|
|
2952
|
-
"description": "The checkbox group's items.",
|
|
3825
|
+
"name": "secondaryLabel",
|
|
3826
|
+
"description": "Adds additional label next to amount content",
|
|
2953
3827
|
"value": {
|
|
2954
3828
|
"kind": "expression",
|
|
2955
|
-
"type": "
|
|
2956
|
-
}
|
|
3829
|
+
"type": "string"
|
|
3830
|
+
},
|
|
3831
|
+
"default": "null"
|
|
2957
3832
|
},
|
|
2958
3833
|
{
|
|
2959
|
-
"name": "
|
|
2960
|
-
"
|
|
3834
|
+
"name": "title",
|
|
3835
|
+
"required": true,
|
|
3836
|
+
"description": "Text used as a title",
|
|
2961
3837
|
"value": {
|
|
2962
3838
|
"kind": "expression",
|
|
2963
|
-
"type": "
|
|
2964
|
-
}
|
|
2965
|
-
"default": "BentoRadioGroupVariant.VERTICAL"
|
|
3839
|
+
"type": "string"
|
|
3840
|
+
}
|
|
2966
3841
|
},
|
|
2967
3842
|
{
|
|
2968
|
-
"name": "
|
|
2969
|
-
"description": "
|
|
3843
|
+
"name": "infoIconTooltipText",
|
|
3844
|
+
"description": "Text showed in the info-icon tooltip on hover",
|
|
2970
3845
|
"value": {
|
|
2971
3846
|
"kind": "expression",
|
|
2972
3847
|
"type": "string"
|
|
@@ -2974,8 +3849,8 @@
|
|
|
2974
3849
|
"default": "null"
|
|
2975
3850
|
},
|
|
2976
3851
|
{
|
|
2977
|
-
"name": "
|
|
2978
|
-
"description": "
|
|
3852
|
+
"name": "fitContent",
|
|
3853
|
+
"description": "The width of `summary-grid-item` fits its content",
|
|
2979
3854
|
"value": {
|
|
2980
3855
|
"kind": "expression",
|
|
2981
3856
|
"type": "boolean"
|
|
@@ -2983,320 +3858,310 @@
|
|
|
2983
3858
|
"default": "false"
|
|
2984
3859
|
},
|
|
2985
3860
|
{
|
|
2986
|
-
"name": "
|
|
2987
|
-
"
|
|
2988
|
-
"description": "The name associated with the group. Required for accessibility purposes.",
|
|
3861
|
+
"name": "trendDirection",
|
|
3862
|
+
"description": "Defines the direction (color) of the trend label",
|
|
2989
3863
|
"value": {
|
|
2990
3864
|
"kind": "expression",
|
|
2991
|
-
"type": "
|
|
2992
|
-
}
|
|
3865
|
+
"type": "BentoSummaryGridItemTrendDirection"
|
|
3866
|
+
},
|
|
3867
|
+
"default": "BentoSummaryGridItemTrendDirection.POSITIVE"
|
|
2993
3868
|
},
|
|
2994
3869
|
{
|
|
2995
|
-
"name": "
|
|
2996
|
-
"description": "
|
|
3870
|
+
"name": "trend",
|
|
3871
|
+
"description": "Shows colored trend label next to text content",
|
|
2997
3872
|
"value": {
|
|
2998
3873
|
"kind": "expression",
|
|
2999
|
-
"type": "
|
|
3874
|
+
"type": "string"
|
|
3000
3875
|
},
|
|
3001
3876
|
"default": "null"
|
|
3002
|
-
}
|
|
3003
|
-
],
|
|
3004
|
-
"events": [
|
|
3877
|
+
},
|
|
3005
3878
|
{
|
|
3006
|
-
"name": "
|
|
3879
|
+
"name": "size",
|
|
3880
|
+
"description": "Defines the size of the `summary-grid-item` text content",
|
|
3881
|
+
"value": {
|
|
3882
|
+
"kind": "expression",
|
|
3883
|
+
"type": "BentoSummaryGridItemSize"
|
|
3884
|
+
},
|
|
3885
|
+
"default": "BentoSummaryGridItemSize.SMALL"
|
|
3007
3886
|
}
|
|
3008
3887
|
],
|
|
3009
3888
|
"source": {
|
|
3010
|
-
"module": "./src/components/
|
|
3889
|
+
"module": "./src/components/summary-grid/components/summary-grid-item-amount/summary-grid-item-amount.vue",
|
|
3011
3890
|
"symbol": "default"
|
|
3012
3891
|
}
|
|
3013
3892
|
},
|
|
3014
3893
|
{
|
|
3015
|
-
"name": "bento-
|
|
3016
|
-
"description": "
|
|
3894
|
+
"name": "bento-summary-grid-item-custom",
|
|
3895
|
+
"description": "A summary bar item is a piece of information to be displayed in `bento-summary-bar` component",
|
|
3017
3896
|
"attributes": [
|
|
3018
3897
|
{
|
|
3019
|
-
"name": "
|
|
3020
|
-
"
|
|
3021
|
-
"description": "Filter name/key referencing the actual property name in the data set.\nShould be unique per filter bar.",
|
|
3898
|
+
"name": "copy",
|
|
3899
|
+
"description": "Text to copy to the clipboard",
|
|
3022
3900
|
"value": {
|
|
3023
3901
|
"kind": "expression",
|
|
3024
3902
|
"type": "string"
|
|
3025
|
-
}
|
|
3903
|
+
},
|
|
3904
|
+
"default": "undefined"
|
|
3026
3905
|
},
|
|
3027
3906
|
{
|
|
3028
|
-
"name": "
|
|
3029
|
-
"
|
|
3030
|
-
"description": "Label text to be displayed",
|
|
3907
|
+
"name": "infoIconTooltipText",
|
|
3908
|
+
"description": "Text showed in the info-icon tooltip on hover",
|
|
3031
3909
|
"value": {
|
|
3032
3910
|
"kind": "expression",
|
|
3033
3911
|
"type": "string"
|
|
3034
|
-
}
|
|
3035
|
-
},
|
|
3036
|
-
{
|
|
3037
|
-
"name": "value",
|
|
3038
|
-
"description": "Current value of the filter",
|
|
3039
|
-
"value": {
|
|
3040
|
-
"kind": "expression",
|
|
3041
|
-
"type": "string[]"
|
|
3042
3912
|
},
|
|
3043
|
-
"default": "
|
|
3044
|
-
}
|
|
3045
|
-
],
|
|
3046
|
-
"events": [
|
|
3047
|
-
{
|
|
3048
|
-
"name": "update"
|
|
3049
|
-
}
|
|
3050
|
-
],
|
|
3051
|
-
"source": {
|
|
3052
|
-
"module": "./src/components/filter-bar/components/range-filter/range-filter.vue",
|
|
3053
|
-
"symbol": "default"
|
|
3054
|
-
}
|
|
3055
|
-
},
|
|
3056
|
-
{
|
|
3057
|
-
"name": "bento-search-bar",
|
|
3058
|
-
"description": "Search functionality to help users find the desired data quicker.\nWhen a user starts typing, the data is dynamically filtered to\nonly show the relevant results.\n\nClearing the search field displays the entire list again.",
|
|
3059
|
-
"attributes": [
|
|
3913
|
+
"default": "null"
|
|
3914
|
+
},
|
|
3060
3915
|
{
|
|
3061
|
-
"name": "
|
|
3916
|
+
"name": "title",
|
|
3062
3917
|
"required": true,
|
|
3063
|
-
"description": "Text
|
|
3918
|
+
"description": "Text used as a title",
|
|
3064
3919
|
"value": {
|
|
3065
3920
|
"kind": "expression",
|
|
3066
3921
|
"type": "string"
|
|
3067
3922
|
}
|
|
3068
3923
|
},
|
|
3069
3924
|
{
|
|
3070
|
-
"name": "
|
|
3071
|
-
"description": "
|
|
3072
|
-
"value": {
|
|
3073
|
-
"kind": "expression",
|
|
3074
|
-
"type": "number"
|
|
3075
|
-
},
|
|
3076
|
-
"default": "300"
|
|
3077
|
-
},
|
|
3078
|
-
{
|
|
3079
|
-
"name": "value",
|
|
3080
|
-
"description": "Text displayed as the value being searched",
|
|
3925
|
+
"name": "fitContent",
|
|
3926
|
+
"description": "The width of `summary-grid-item` fits its content",
|
|
3081
3927
|
"value": {
|
|
3082
3928
|
"kind": "expression",
|
|
3083
|
-
"type": "
|
|
3929
|
+
"type": "boolean"
|
|
3084
3930
|
},
|
|
3085
|
-
"default": "
|
|
3931
|
+
"default": "false"
|
|
3086
3932
|
}
|
|
3087
3933
|
],
|
|
3088
3934
|
"events": [
|
|
3089
3935
|
{
|
|
3090
|
-
"name": "
|
|
3091
|
-
}
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
},
|
|
3936
|
+
"name": "copy-to-clipboard"
|
|
3937
|
+
}
|
|
3938
|
+
],
|
|
3939
|
+
"slots": [
|
|
3095
3940
|
{
|
|
3096
|
-
"name": "
|
|
3941
|
+
"name": "default"
|
|
3097
3942
|
}
|
|
3098
3943
|
],
|
|
3099
3944
|
"source": {
|
|
3100
|
-
"module": "./src/components/
|
|
3945
|
+
"module": "./src/components/summary-grid/components/summary-grid-item-custom/summary-grid-item-custom.vue",
|
|
3101
3946
|
"symbol": "default"
|
|
3102
3947
|
}
|
|
3103
3948
|
},
|
|
3104
3949
|
{
|
|
3105
|
-
"name": "bento-
|
|
3106
|
-
"description": "
|
|
3950
|
+
"name": "bento-summary-grid-item-numeric",
|
|
3951
|
+
"description": "Summary grid item component used to display any numeric information",
|
|
3107
3952
|
"attributes": [
|
|
3108
3953
|
{
|
|
3109
|
-
"name": "
|
|
3110
|
-
"description": "
|
|
3954
|
+
"name": "copy",
|
|
3955
|
+
"description": "Text to copy to the clipboard",
|
|
3111
3956
|
"value": {
|
|
3112
3957
|
"kind": "expression",
|
|
3113
|
-
"type": "
|
|
3958
|
+
"type": "string"
|
|
3114
3959
|
},
|
|
3115
3960
|
"default": "undefined"
|
|
3116
|
-
}
|
|
3117
|
-
],
|
|
3118
|
-
"events": [
|
|
3119
|
-
{
|
|
3120
|
-
"name": "update"
|
|
3121
|
-
}
|
|
3122
|
-
],
|
|
3123
|
-
"source": {
|
|
3124
|
-
"module": "./src/components/filter-bar/components/select-filter/variants/select-avatar-filter/select-avatar-filter.vue",
|
|
3125
|
-
"symbol": "default"
|
|
3126
|
-
}
|
|
3127
|
-
},
|
|
3128
|
-
{
|
|
3129
|
-
"name": "bento-select-country-filter",
|
|
3130
|
-
"description": "The Select Country filter displays a listbox of country items\npassed in the \"options.listboxItems\" property.",
|
|
3131
|
-
"attributes": [
|
|
3961
|
+
},
|
|
3132
3962
|
{
|
|
3133
|
-
"name": "
|
|
3134
|
-
"
|
|
3963
|
+
"name": "label",
|
|
3964
|
+
"required": true,
|
|
3965
|
+
"description": "Amount to be shown as the main value",
|
|
3135
3966
|
"value": {
|
|
3136
3967
|
"kind": "expression",
|
|
3137
|
-
"type": "
|
|
3138
|
-
}
|
|
3139
|
-
|
|
3140
|
-
}
|
|
3141
|
-
],
|
|
3142
|
-
"events": [
|
|
3968
|
+
"type": "string"
|
|
3969
|
+
}
|
|
3970
|
+
},
|
|
3143
3971
|
{
|
|
3144
|
-
"name": "
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
{
|
|
3153
|
-
"name": "bento-select-country-filter",
|
|
3154
|
-
"description": "The Select Country filter displays a listbox of country items\npassed in the \"options.listboxItems\" property.",
|
|
3155
|
-
"attributes": [
|
|
3972
|
+
"name": "title",
|
|
3973
|
+
"required": true,
|
|
3974
|
+
"description": "Text used as a title",
|
|
3975
|
+
"value": {
|
|
3976
|
+
"kind": "expression",
|
|
3977
|
+
"type": "string"
|
|
3978
|
+
}
|
|
3979
|
+
},
|
|
3156
3980
|
{
|
|
3157
|
-
"name": "
|
|
3158
|
-
"description": "
|
|
3981
|
+
"name": "infoIconTooltipText",
|
|
3982
|
+
"description": "Text showed in the info-icon tooltip on hover",
|
|
3159
3983
|
"value": {
|
|
3160
3984
|
"kind": "expression",
|
|
3161
|
-
"type": "
|
|
3985
|
+
"type": "string"
|
|
3162
3986
|
},
|
|
3163
|
-
"default": "
|
|
3164
|
-
}
|
|
3165
|
-
],
|
|
3166
|
-
"events": [
|
|
3167
|
-
{
|
|
3168
|
-
"name": "update"
|
|
3169
|
-
}
|
|
3170
|
-
],
|
|
3171
|
-
"source": {
|
|
3172
|
-
"module": "./src/components/filter-bar/components/select-filter/variants/select-currency-filter/select-currency-filter.vue",
|
|
3173
|
-
"symbol": "default"
|
|
3174
|
-
}
|
|
3175
|
-
},
|
|
3176
|
-
{
|
|
3177
|
-
"name": "bento-select-country-filter",
|
|
3178
|
-
"description": "The Select Tag filter displays a listbox of tag items\npassed in the \"options.listboxItems\" property.",
|
|
3179
|
-
"attributes": [
|
|
3987
|
+
"default": "null"
|
|
3988
|
+
},
|
|
3180
3989
|
{
|
|
3181
|
-
"name": "
|
|
3182
|
-
"description": "
|
|
3990
|
+
"name": "fitContent",
|
|
3991
|
+
"description": "The width of `summary-grid-item` fits its content",
|
|
3183
3992
|
"value": {
|
|
3184
3993
|
"kind": "expression",
|
|
3185
|
-
"type": "
|
|
3994
|
+
"type": "boolean"
|
|
3186
3995
|
},
|
|
3187
|
-
"default": "
|
|
3188
|
-
}
|
|
3189
|
-
],
|
|
3190
|
-
"events": [
|
|
3996
|
+
"default": "false"
|
|
3997
|
+
},
|
|
3191
3998
|
{
|
|
3192
|
-
"name": "
|
|
3999
|
+
"name": "trendDirection",
|
|
4000
|
+
"description": "Defines the direction (color) of the trend label",
|
|
4001
|
+
"value": {
|
|
4002
|
+
"kind": "expression",
|
|
4003
|
+
"type": "BentoSummaryGridItemTrendDirection"
|
|
4004
|
+
},
|
|
4005
|
+
"default": "BentoSummaryGridItemTrendDirection.POSITIVE"
|
|
4006
|
+
},
|
|
4007
|
+
{
|
|
4008
|
+
"name": "trend",
|
|
4009
|
+
"description": "Shows colored trend label next to text content",
|
|
4010
|
+
"value": {
|
|
4011
|
+
"kind": "expression",
|
|
4012
|
+
"type": "string"
|
|
4013
|
+
},
|
|
4014
|
+
"default": "null"
|
|
4015
|
+
},
|
|
4016
|
+
{
|
|
4017
|
+
"name": "size",
|
|
4018
|
+
"description": "Defines the size of the `summary-grid-item` text content",
|
|
4019
|
+
"value": {
|
|
4020
|
+
"kind": "expression",
|
|
4021
|
+
"type": "BentoSummaryGridItemSize"
|
|
4022
|
+
},
|
|
4023
|
+
"default": "BentoSummaryGridItemSize.SMALL"
|
|
3193
4024
|
}
|
|
3194
4025
|
],
|
|
3195
4026
|
"source": {
|
|
3196
|
-
"module": "./src/components/
|
|
4027
|
+
"module": "./src/components/summary-grid/components/summary-grid-item-numeric/summary-grid-item-numeric.vue",
|
|
3197
4028
|
"symbol": "default"
|
|
3198
4029
|
}
|
|
3199
4030
|
},
|
|
3200
4031
|
{
|
|
3201
|
-
"name": "bento-
|
|
3202
|
-
"description": "
|
|
4032
|
+
"name": "bento-summary-grid-item-percentage",
|
|
4033
|
+
"description": "Summary grid item component used to display any percentage information",
|
|
3203
4034
|
"attributes": [
|
|
3204
4035
|
{
|
|
3205
|
-
"name": "
|
|
4036
|
+
"name": "label",
|
|
3206
4037
|
"required": true,
|
|
3207
|
-
"description": "
|
|
4038
|
+
"description": "Amount to be shown as the main value",
|
|
3208
4039
|
"value": {
|
|
3209
4040
|
"kind": "expression",
|
|
3210
4041
|
"type": "string"
|
|
3211
4042
|
}
|
|
3212
4043
|
},
|
|
3213
4044
|
{
|
|
3214
|
-
"name": "
|
|
4045
|
+
"name": "title",
|
|
3215
4046
|
"required": true,
|
|
3216
|
-
"description": "
|
|
4047
|
+
"description": "Text used as a title",
|
|
3217
4048
|
"value": {
|
|
3218
4049
|
"kind": "expression",
|
|
3219
4050
|
"type": "string"
|
|
3220
4051
|
}
|
|
3221
4052
|
},
|
|
3222
4053
|
{
|
|
3223
|
-
"name": "
|
|
3224
|
-
"description": "
|
|
4054
|
+
"name": "infoIconTooltipText",
|
|
4055
|
+
"description": "Text showed in the info-icon tooltip on hover",
|
|
3225
4056
|
"value": {
|
|
3226
4057
|
"kind": "expression",
|
|
3227
|
-
"type": "
|
|
4058
|
+
"type": "string"
|
|
3228
4059
|
},
|
|
3229
|
-
"default": "
|
|
4060
|
+
"default": "null"
|
|
3230
4061
|
},
|
|
3231
4062
|
{
|
|
3232
|
-
"name": "
|
|
3233
|
-
"description": "
|
|
4063
|
+
"name": "copy",
|
|
4064
|
+
"description": "Text to copy to the clipboard",
|
|
3234
4065
|
"value": {
|
|
3235
4066
|
"kind": "expression",
|
|
3236
|
-
"type": "
|
|
4067
|
+
"type": "string"
|
|
3237
4068
|
},
|
|
3238
4069
|
"default": "undefined"
|
|
3239
|
-
}
|
|
3240
|
-
],
|
|
3241
|
-
"events": [
|
|
4070
|
+
},
|
|
3242
4071
|
{
|
|
3243
|
-
"name": "
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
4072
|
+
"name": "fitContent",
|
|
4073
|
+
"description": "The width of `summary-grid-item` fits its content",
|
|
4074
|
+
"value": {
|
|
4075
|
+
"kind": "expression",
|
|
4076
|
+
"type": "boolean"
|
|
4077
|
+
},
|
|
4078
|
+
"default": "false"
|
|
4079
|
+
},
|
|
3247
4080
|
{
|
|
3248
|
-
"name": "
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
{
|
|
3257
|
-
"name": "bento-select-payment-method-filter",
|
|
3258
|
-
"description": "The Select Payment Method filter displays a listbox of country items\npassed in the \"options.listboxItems\" property to be used in the FilterBar component.",
|
|
3259
|
-
"attributes": [
|
|
4081
|
+
"name": "trendDirection",
|
|
4082
|
+
"description": "Defines the direction (color) of the trend label",
|
|
4083
|
+
"value": {
|
|
4084
|
+
"kind": "expression",
|
|
4085
|
+
"type": "BentoSummaryGridItemTrendDirection"
|
|
4086
|
+
},
|
|
4087
|
+
"default": "BentoSummaryGridItemTrendDirection.POSITIVE"
|
|
4088
|
+
},
|
|
3260
4089
|
{
|
|
3261
|
-
"name": "
|
|
3262
|
-
"description": "
|
|
4090
|
+
"name": "trend",
|
|
4091
|
+
"description": "Shows colored trend label next to text content",
|
|
3263
4092
|
"value": {
|
|
3264
4093
|
"kind": "expression",
|
|
3265
|
-
"type": "
|
|
4094
|
+
"type": "string"
|
|
3266
4095
|
},
|
|
3267
4096
|
"default": "undefined"
|
|
3268
|
-
}
|
|
3269
|
-
],
|
|
3270
|
-
"events": [
|
|
4097
|
+
},
|
|
3271
4098
|
{
|
|
3272
|
-
"name": "
|
|
4099
|
+
"name": "size",
|
|
4100
|
+
"description": "Defines the size of the `summary-grid-item` text content",
|
|
4101
|
+
"value": {
|
|
4102
|
+
"kind": "expression",
|
|
4103
|
+
"type": "BentoSummaryGridItemSize"
|
|
4104
|
+
},
|
|
4105
|
+
"default": "BentoSummaryGridItemSize.SMALL"
|
|
3273
4106
|
}
|
|
3274
4107
|
],
|
|
3275
4108
|
"source": {
|
|
3276
|
-
"module": "./src/components/
|
|
4109
|
+
"module": "./src/components/summary-grid/components/summary-grid-item-percentage/summary-grid-item-percentage.vue",
|
|
3277
4110
|
"symbol": "default"
|
|
3278
4111
|
}
|
|
3279
4112
|
},
|
|
3280
4113
|
{
|
|
3281
|
-
"name": "bento-
|
|
3282
|
-
"description": "
|
|
4114
|
+
"name": "bento-summary-grid-item-text",
|
|
4115
|
+
"description": "Summary grid item component used to display text only. Can be used for references, IDs or any other text data.",
|
|
3283
4116
|
"attributes": [
|
|
3284
4117
|
{
|
|
3285
|
-
"name": "
|
|
4118
|
+
"name": "copy",
|
|
4119
|
+
"description": "Text to copy to the clipboard",
|
|
4120
|
+
"value": {
|
|
4121
|
+
"kind": "expression",
|
|
4122
|
+
"type": "string"
|
|
4123
|
+
},
|
|
4124
|
+
"default": "undefined"
|
|
4125
|
+
},
|
|
4126
|
+
{
|
|
4127
|
+
"name": "label",
|
|
3286
4128
|
"required": true,
|
|
4129
|
+
"description": "Amount to be shown as the main value",
|
|
3287
4130
|
"value": {
|
|
3288
4131
|
"kind": "expression",
|
|
3289
|
-
"type": "
|
|
4132
|
+
"type": "string"
|
|
3290
4133
|
}
|
|
3291
|
-
}
|
|
3292
|
-
],
|
|
3293
|
-
"slots": [
|
|
4134
|
+
},
|
|
3294
4135
|
{
|
|
3295
|
-
"name": "
|
|
4136
|
+
"name": "title",
|
|
4137
|
+
"required": true,
|
|
4138
|
+
"description": "Text used as a title",
|
|
4139
|
+
"value": {
|
|
4140
|
+
"kind": "expression",
|
|
4141
|
+
"type": "string"
|
|
4142
|
+
}
|
|
4143
|
+
},
|
|
4144
|
+
{
|
|
4145
|
+
"name": "infoIconTooltipText",
|
|
4146
|
+
"description": "Text showed in the info-icon tooltip on hover",
|
|
4147
|
+
"value": {
|
|
4148
|
+
"kind": "expression",
|
|
4149
|
+
"type": "string"
|
|
4150
|
+
},
|
|
4151
|
+
"default": "null"
|
|
4152
|
+
},
|
|
4153
|
+
{
|
|
4154
|
+
"name": "fitContent",
|
|
4155
|
+
"description": "The width of `summary-grid-item` fits its content",
|
|
4156
|
+
"value": {
|
|
4157
|
+
"kind": "expression",
|
|
4158
|
+
"type": "boolean"
|
|
4159
|
+
},
|
|
4160
|
+
"default": "false"
|
|
3296
4161
|
}
|
|
3297
4162
|
],
|
|
3298
4163
|
"source": {
|
|
3299
|
-
"module": "./src/components/
|
|
4164
|
+
"module": "./src/components/summary-grid/components/summary-grid-item-text/summary-grid-item-text.vue",
|
|
3300
4165
|
"symbol": "default"
|
|
3301
4166
|
}
|
|
3302
4167
|
},
|
|
@@ -3397,6 +4262,9 @@
|
|
|
3397
4262
|
},
|
|
3398
4263
|
{
|
|
3399
4264
|
"name": "subLabel"
|
|
4265
|
+
},
|
|
4266
|
+
{
|
|
4267
|
+
"name": "description"
|
|
3400
4268
|
}
|
|
3401
4269
|
],
|
|
3402
4270
|
"source": {
|
|
@@ -3600,6 +4468,30 @@
|
|
|
3600
4468
|
"symbol": "default"
|
|
3601
4469
|
}
|
|
3602
4470
|
},
|
|
4471
|
+
{
|
|
4472
|
+
"name": "copy",
|
|
4473
|
+
"description": "An internal button component that copies text to the user's clipboard.",
|
|
4474
|
+
"attributes": [
|
|
4475
|
+
{
|
|
4476
|
+
"name": "text",
|
|
4477
|
+
"required": true,
|
|
4478
|
+
"description": "Defines the string that will get copied to the clipboard",
|
|
4479
|
+
"value": {
|
|
4480
|
+
"kind": "expression",
|
|
4481
|
+
"type": "string"
|
|
4482
|
+
}
|
|
4483
|
+
}
|
|
4484
|
+
],
|
|
4485
|
+
"slots": [
|
|
4486
|
+
{
|
|
4487
|
+
"name": "default"
|
|
4488
|
+
}
|
|
4489
|
+
],
|
|
4490
|
+
"source": {
|
|
4491
|
+
"module": "./src/components/internal/copy/copy.vue",
|
|
4492
|
+
"symbol": "default"
|
|
4493
|
+
}
|
|
4494
|
+
},
|
|
3603
4495
|
{
|
|
3604
4496
|
"name": "data-grid-columns",
|
|
3605
4497
|
"description": "",
|
|
@@ -4445,6 +5337,44 @@
|
|
|
4445
5337
|
"symbol": "default"
|
|
4446
5338
|
}
|
|
4447
5339
|
},
|
|
5340
|
+
{
|
|
5341
|
+
"name": "grid-layout",
|
|
5342
|
+
"description": "Component used to render the grid layout in the bento-summary-grid. For internal use only",
|
|
5343
|
+
"attributes": [
|
|
5344
|
+
{
|
|
5345
|
+
"name": "columnWidth",
|
|
5346
|
+
"value": {
|
|
5347
|
+
"kind": "expression",
|
|
5348
|
+
"type": "GridLayoutColumnWidths"
|
|
5349
|
+
},
|
|
5350
|
+
"default": "null"
|
|
5351
|
+
}
|
|
5352
|
+
],
|
|
5353
|
+
"slots": [
|
|
5354
|
+
{
|
|
5355
|
+
"name": "col-1"
|
|
5356
|
+
},
|
|
5357
|
+
{
|
|
5358
|
+
"name": "col-2"
|
|
5359
|
+
},
|
|
5360
|
+
{
|
|
5361
|
+
"name": "col-3"
|
|
5362
|
+
},
|
|
5363
|
+
{
|
|
5364
|
+
"name": "col-4"
|
|
5365
|
+
},
|
|
5366
|
+
{
|
|
5367
|
+
"name": "col-5"
|
|
5368
|
+
},
|
|
5369
|
+
{
|
|
5370
|
+
"name": "col-6"
|
|
5371
|
+
}
|
|
5372
|
+
],
|
|
5373
|
+
"source": {
|
|
5374
|
+
"module": "./src/components/summary-grid/components/grid-layout/grid-layout.vue",
|
|
5375
|
+
"symbol": "default"
|
|
5376
|
+
}
|
|
5377
|
+
},
|
|
4448
5378
|
{
|
|
4449
5379
|
"name": "input-field.test",
|
|
4450
5380
|
"description": "",
|
|
@@ -5049,6 +5979,9 @@
|
|
|
5049
5979
|
},
|
|
5050
5980
|
{
|
|
5051
5981
|
"name": "subLabel"
|
|
5982
|
+
},
|
|
5983
|
+
{
|
|
5984
|
+
"name": "description"
|
|
5052
5985
|
}
|
|
5053
5986
|
],
|
|
5054
5987
|
"source": {
|
|
@@ -5106,6 +6039,93 @@
|
|
|
5106
6039
|
"symbol": "default"
|
|
5107
6040
|
}
|
|
5108
6041
|
},
|
|
6042
|
+
{
|
|
6043
|
+
"name": "summary-grid-item",
|
|
6044
|
+
"description": "A summary bar item is a piece of information to be displayed in `bento-summary-bar` component",
|
|
6045
|
+
"attributes": [
|
|
6046
|
+
{
|
|
6047
|
+
"name": "copy",
|
|
6048
|
+
"description": "Text to copy to the clipboard",
|
|
6049
|
+
"value": {
|
|
6050
|
+
"kind": "expression",
|
|
6051
|
+
"type": "string"
|
|
6052
|
+
},
|
|
6053
|
+
"default": "undefined"
|
|
6054
|
+
},
|
|
6055
|
+
{
|
|
6056
|
+
"name": "itemType",
|
|
6057
|
+
"description": "Applies styling based on content type",
|
|
6058
|
+
"value": {
|
|
6059
|
+
"kind": "expression",
|
|
6060
|
+
"type": "SummaryGridItemType"
|
|
6061
|
+
},
|
|
6062
|
+
"default": "SummaryGridItemType.CUSTOM"
|
|
6063
|
+
},
|
|
6064
|
+
{
|
|
6065
|
+
"name": "infoIconTooltipText",
|
|
6066
|
+
"description": "Text showed in the info-icon tooltip on hover",
|
|
6067
|
+
"value": {
|
|
6068
|
+
"kind": "expression",
|
|
6069
|
+
"type": "string"
|
|
6070
|
+
},
|
|
6071
|
+
"default": "null"
|
|
6072
|
+
},
|
|
6073
|
+
{
|
|
6074
|
+
"name": "title",
|
|
6075
|
+
"required": true,
|
|
6076
|
+
"description": "Text used as a title",
|
|
6077
|
+
"value": {
|
|
6078
|
+
"kind": "expression",
|
|
6079
|
+
"type": "string"
|
|
6080
|
+
}
|
|
6081
|
+
},
|
|
6082
|
+
{
|
|
6083
|
+
"name": "fitContent",
|
|
6084
|
+
"description": "The width of `summary-grid-item` fits its content",
|
|
6085
|
+
"value": {
|
|
6086
|
+
"kind": "expression",
|
|
6087
|
+
"type": "boolean"
|
|
6088
|
+
},
|
|
6089
|
+
"default": "false"
|
|
6090
|
+
},
|
|
6091
|
+
{
|
|
6092
|
+
"name": "size",
|
|
6093
|
+
"description": "Defines the size of the `summary-grid-item` text content",
|
|
6094
|
+
"value": {
|
|
6095
|
+
"kind": "expression",
|
|
6096
|
+
"type": "BentoSummaryGridItemSize"
|
|
6097
|
+
},
|
|
6098
|
+
"default": "BentoSummaryGridItemSize.SMALL"
|
|
6099
|
+
},
|
|
6100
|
+
{
|
|
6101
|
+
"name": "trendDirection",
|
|
6102
|
+
"description": "Defines the color of trend label",
|
|
6103
|
+
"value": {
|
|
6104
|
+
"kind": "expression",
|
|
6105
|
+
"type": "BentoSummaryGridItemTrendDirection"
|
|
6106
|
+
},
|
|
6107
|
+
"default": "BentoSummaryGridItemTrendDirection.POSITIVE"
|
|
6108
|
+
},
|
|
6109
|
+
{
|
|
6110
|
+
"name": "trend",
|
|
6111
|
+
"description": "Shows colored trend label next to text content",
|
|
6112
|
+
"value": {
|
|
6113
|
+
"kind": "expression",
|
|
6114
|
+
"type": "string"
|
|
6115
|
+
},
|
|
6116
|
+
"default": "null"
|
|
6117
|
+
}
|
|
6118
|
+
],
|
|
6119
|
+
"slots": [
|
|
6120
|
+
{
|
|
6121
|
+
"name": "default"
|
|
6122
|
+
}
|
|
6123
|
+
],
|
|
6124
|
+
"source": {
|
|
6125
|
+
"module": "./src/components/summary-grid/components/summary-grid-item/summary-grid-item.vue",
|
|
6126
|
+
"symbol": "default"
|
|
6127
|
+
}
|
|
6128
|
+
},
|
|
5109
6129
|
{
|
|
5110
6130
|
"name": "tab",
|
|
5111
6131
|
"description": "",
|