buefy 0.9.22 → 0.9.24
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/LICENSE +21 -21
- package/README.md +143 -139
- package/package.json +172 -171
- package/src/components/autocomplete/Autocomplete.spec.js +392 -392
- package/src/components/autocomplete/Autocomplete.vue +730 -711
- package/src/components/autocomplete/__snapshots__/Autocomplete.spec.js.snap +19 -19
- package/src/components/autocomplete/index.js +17 -17
- package/src/components/breadcrumb/Breadcrumb.spec.js +63 -63
- package/src/components/breadcrumb/Breadcrumb.vue +41 -43
- package/src/components/breadcrumb/BreadcrumbItem.spec.js +25 -25
- package/src/components/breadcrumb/BreadcrumbItem.vue +30 -33
- package/src/components/breadcrumb/__snapshots__/Breadcrumb.spec.js.snap +7 -7
- package/src/components/breadcrumb/__snapshots__/BreadcrumbItem.spec.js.snap +3 -3
- package/src/components/breadcrumb/index.js +20 -20
- package/src/components/button/Button.spec.js +107 -107
- package/src/components/button/Button.vue +106 -106
- package/src/components/button/__snapshots__/Button.spec.js.snap +8 -8
- package/src/components/button/index.js +17 -17
- package/src/components/carousel/Carousel.spec.js +304 -304
- package/src/components/carousel/Carousel.vue +350 -350
- package/src/components/carousel/CarouselItem.spec.js +57 -57
- package/src/components/carousel/CarouselItem.vue +33 -33
- package/src/components/carousel/CarouselList.spec.js +173 -173
- package/src/components/carousel/CarouselList.vue +313 -313
- package/src/components/carousel/__snapshots__/Carousel.spec.js.snap +19 -19
- package/src/components/carousel/__snapshots__/CarouselItem.spec.js.snap +3 -3
- package/src/components/carousel/__snapshots__/CarouselList.spec.js.snap +156 -156
- package/src/components/carousel/index.js +23 -23
- package/src/components/checkbox/Checkbox.spec.js +40 -40
- package/src/components/checkbox/Checkbox.vue +60 -55
- package/src/components/checkbox/CheckboxButton.spec.js +46 -46
- package/src/components/checkbox/CheckboxButton.vue +56 -56
- package/src/components/checkbox/__snapshots__/Checkbox.spec.js.snap +3 -3
- package/src/components/checkbox/__snapshots__/CheckboxButton.spec.js.snap +3 -3
- package/src/components/checkbox/index.js +20 -20
- package/src/components/clockpicker/Clockpicker.spec.js +97 -97
- package/src/components/clockpicker/Clockpicker.vue +268 -267
- package/src/components/clockpicker/ClockpickerFace.spec.js +97 -97
- package/src/components/clockpicker/__snapshots__/Clockpicker.spec.js.snap +24 -24
- package/src/components/clockpicker/__snapshots__/ClockpickerFace.spec.js.snap +9 -9
- package/src/components/clockpicker/index.js +17 -17
- package/src/components/collapse/Collapse.spec.js +117 -117
- package/src/components/collapse/Collapse.vue +74 -74
- package/src/components/collapse/__snapshots__/Collapse.spec.js.snap +8 -8
- package/src/components/collapse/index.js +17 -17
- package/src/components/colorpicker/Colorpicker.spec.js +10 -10
- package/src/components/colorpicker/Colorpicker.vue +377 -358
- package/src/components/colorpicker/ColorpickerAlphaSlider.spec.js +16 -14
- package/src/components/colorpicker/ColorpickerAlphaSlider.vue +194 -194
- package/src/components/colorpicker/ColorpickerHSLRepresentationSquare.spec.js +22 -22
- package/src/components/colorpicker/ColorpickerHSLRepresentationSquare.vue +366 -366
- package/src/components/colorpicker/ColorpickerHSLRepresentationTriangle.spec.js +22 -22
- package/src/components/colorpicker/ColorpickerHSLRepresentationTriangle.vue +444 -444
- package/src/components/colorpicker/__snapshots__/Colorpicker.spec.js.snap +32 -32
- package/src/components/colorpicker/__snapshots__/ColorpickerAlphaSlider.spec.js.snap +11 -11
- package/src/components/colorpicker/__snapshots__/{ColorPickerHSLRepresentationSquare.spec.js.snap → ColorpickerHSLRepresentationSquare.spec.js.snap} +12 -12
- package/src/components/colorpicker/__snapshots__/ColorpickerHSLRepresentationTriangle.spec.js.snap +36 -36
- package/src/components/colorpicker/index.js +17 -17
- package/src/components/datepicker/Datepicker.spec.js +395 -395
- package/src/components/datepicker/Datepicker.vue +843 -842
- package/src/components/datepicker/DatepickerMonth.spec.js +302 -302
- package/src/components/datepicker/DatepickerMonth.vue +410 -410
- package/src/components/datepicker/DatepickerTable.spec.js +294 -294
- package/src/components/datepicker/DatepickerTable.vue +376 -376
- package/src/components/datepicker/DatepickerTableRow.spec.js +262 -262
- package/src/components/datepicker/DatepickerTableRow.vue +379 -379
- package/src/components/datepicker/__snapshots__/Datepicker.spec.js.snap +401 -401
- package/src/components/datepicker/__snapshots__/DatepickerMonth.spec.js.snap +33 -33
- package/src/components/datepicker/__snapshots__/DatepickerTable.spec.js.snap +16 -16
- package/src/components/datepicker/__snapshots__/DatepickerTableRow.spec.js.snap +13 -13
- package/src/components/datepicker/index.js +17 -17
- package/src/components/datetimepicker/Datetimepicker.spec.js +138 -138
- package/src/components/datetimepicker/Datetimepicker.vue +453 -448
- package/src/components/datetimepicker/index.js +17 -17
- package/src/components/dialog/Dialog.spec.js +78 -78
- package/src/components/dialog/Dialog.vue +256 -256
- package/src/components/dialog/index.js +77 -77
- package/src/components/dropdown/Dropdown.spec.js +218 -218
- package/src/components/dropdown/Dropdown.vue +408 -404
- package/src/components/dropdown/DropdownItem.spec.js +73 -73
- package/src/components/dropdown/DropdownItem.vue +91 -91
- package/src/components/dropdown/__snapshots__/Dropdown.spec.js.snap +11 -11
- package/src/components/dropdown/__snapshots__/DropdownItem.spec.js.snap +3 -3
- package/src/components/dropdown/index.js +20 -20
- package/src/components/field/Field.spec.js +250 -227
- package/src/components/field/Field.vue +276 -276
- package/src/components/field/FieldBody.spec.js +81 -81
- package/src/components/field/FieldBody.vue +28 -28
- package/src/components/field/__snapshots__/Field.spec.js.snap +8 -8
- package/src/components/field/__snapshots__/FieldBody.spec.js.snap +3 -3
- package/src/components/field/index.js +17 -17
- package/src/components/icon/Icon.spec.js +136 -136
- package/src/components/icon/Icon.vue +109 -109
- package/src/components/icon/__snapshots__/Icon.spec.js.snap +3 -3
- package/src/components/icon/index.js +17 -17
- package/src/components/image/Image.vue +309 -309
- package/src/components/image/__snapshots__/Image.spec.js.snap +37 -37
- package/src/components/image/index.js +17 -17
- package/src/components/index.js +87 -87
- package/src/components/input/Input.spec.js +284 -200
- package/src/components/input/Input.vue +283 -274
- package/src/components/input/__snapshots__/Input.spec.js.snap +9 -9
- package/src/components/input/index.js +17 -17
- package/src/components/loading/Loading.spec.js +126 -126
- package/src/components/loading/Loading.vue +121 -121
- package/src/components/loading/__snapshots__/Loading.spec.js.snap +10 -10
- package/src/components/loading/index.js +40 -40
- package/src/components/menu/Menu.spec.js +19 -19
- package/src/components/menu/Menu.vue +26 -26
- package/src/components/menu/MenuItem.spec.js +43 -43
- package/src/components/menu/MenuItem.vue +137 -137
- package/src/components/menu/MenuList.spec.js +31 -31
- package/src/components/menu/MenuList.vue +41 -41
- package/src/components/menu/__snapshots__/Menu.spec.js.snap +3 -3
- package/src/components/menu/__snapshots__/MenuItem.spec.js.snap +8 -8
- package/src/components/menu/__snapshots__/MenuList.spec.js.snap +8 -8
- package/src/components/menu/index.js +23 -23
- package/src/components/message/Message.spec.js +28 -28
- package/src/components/message/Message.vue +56 -55
- package/src/components/message/__snapshots__/Message.spec.js.snap +9 -9
- package/src/components/message/index.js +17 -17
- package/src/components/modal/Modal.spec.js +108 -108
- package/src/components/modal/Modal.vue +306 -305
- package/src/components/modal/__snapshots__/Modal.spec.js.snap +10 -10
- package/src/components/modal/index.js +61 -61
- package/src/components/navbar/NavBar.spec.js +75 -75
- package/src/components/navbar/{NavbarBurger.spec.js → NavBarBurger.spec.js} +28 -28
- package/src/components/navbar/NavBarItem.spec.js +81 -81
- package/src/components/navbar/Navbar.vue +251 -251
- package/src/components/navbar/NavbarBurger.vue +27 -27
- package/src/components/navbar/NavbarDropdown.spec.js +35 -35
- package/src/components/navbar/NavbarDropdown.vue +115 -106
- package/src/components/navbar/NavbarItem.vue +74 -74
- package/src/components/navbar/__snapshots__/NavBar.spec.js.snap +11 -11
- package/src/components/navbar/__snapshots__/NavBarBurger.spec.js.snap +3 -3
- package/src/components/navbar/__snapshots__/NavbarDropdown.spec.js.snap +7 -7
- package/src/components/navbar/index.js +23 -23
- package/src/components/notification/Notification.spec.js +19 -19
- package/src/components/notification/Notification.vue +60 -59
- package/src/components/notification/NotificationNotice.vue +42 -42
- package/src/components/notification/__snapshots__/Notification.spec.js.snap +8 -8
- package/src/components/notification/index.js +66 -66
- package/src/components/numberinput/Numberinput.spec.js +365 -365
- package/src/components/numberinput/Numberinput.vue +317 -321
- package/src/components/numberinput/index.js +17 -17
- package/src/components/pagination/Pagination.spec.js +86 -86
- package/src/components/pagination/Pagination.vue +418 -418
- package/src/components/pagination/PaginationButton.spec.js +39 -39
- package/src/components/pagination/PaginationButton.vue +50 -50
- package/src/components/pagination/__snapshots__/Pagination.spec.js.snap +18 -18
- package/src/components/pagination/__snapshots__/PaginationButton.spec.js.snap +3 -3
- package/src/components/pagination/index.js +20 -20
- package/src/components/progress/Progress.spec.js +82 -82
- package/src/components/progress/Progress.vue +143 -143
- package/src/components/progress/ProgressBar.spec.js +26 -26
- package/src/components/progress/ProgressBar.vue +57 -57
- package/src/components/progress/__snapshots__/Progress.spec.js.snap +7 -7
- package/src/components/progress/__snapshots__/ProgressBar.spec.js.snap +7 -7
- package/src/components/progress/index.js +20 -20
- package/src/components/radio/Radio.spec.js +40 -40
- package/src/components/radio/Radio.vue +30 -30
- package/src/components/radio/RadioButton.spec.js +40 -40
- package/src/components/radio/RadioButton.vue +61 -61
- package/src/components/radio/__snapshots__/Radio.spec.js.snap +3 -3
- package/src/components/radio/__snapshots__/RadioButton.spec.js.snap +3 -3
- package/src/components/radio/index.js +20 -20
- package/src/components/rate/Rate.spec.js +88 -88
- package/src/components/rate/Rate.vue +142 -142
- package/src/components/rate/index.js +17 -17
- package/src/components/select/Select.spec.js +31 -31
- package/src/components/select/Select.vue +99 -99
- package/src/components/select/__snapshots__/Select.spec.js.snap +7 -7
- package/src/components/select/index.js +17 -17
- package/src/components/sidebar/Sidebar.spec.js +105 -105
- package/src/components/sidebar/Sidebar.vue +300 -303
- package/src/components/sidebar/__snapshots__/Sidebar.spec.js.snap +19 -19
- package/src/components/sidebar/index.js +17 -17
- package/src/components/skeleton/Skeleton.spec.js +14 -14
- package/src/components/skeleton/Skeleton.vue +63 -63
- package/src/components/skeleton/__snapshots__/Skeleton.spec.js.snap +7 -7
- package/src/components/skeleton/index.js +17 -17
- package/src/components/slider/Slider.spec.js +106 -106
- package/src/components/slider/Slider.vue +313 -313
- package/src/components/slider/SliderThumb.spec.js +99 -99
- package/src/components/slider/SliderThumb.vue +227 -227
- package/src/components/slider/SliderTick.spec.js +29 -29
- package/src/components/slider/SliderTick.vue +43 -43
- package/src/components/slider/__snapshots__/Slider.spec.js.snap +12 -12
- package/src/components/slider/__snapshots__/SliderThumb.spec.js.snap +11 -11
- package/src/components/slider/__snapshots__/SliderTick.spec.js.snap +7 -7
- package/src/components/slider/index.js +20 -20
- package/src/components/snackbar/Snackbar.spec.js +35 -35
- package/src/components/snackbar/Snackbar.vue +72 -72
- package/src/components/snackbar/__snapshots__/Snackbar.spec.js.snap +9 -9
- package/src/components/snackbar/index.js +62 -62
- package/src/components/steps/StepItem.spec.js +72 -72
- package/src/components/steps/StepItem.vue +21 -21
- package/src/components/steps/Steps.spec.js +134 -134
- package/src/components/steps/Steps.vue +254 -254
- package/src/components/steps/__snapshots__/StepItem.spec.js.snap +3 -3
- package/src/components/steps/__snapshots__/Steps.spec.js.snap +34 -34
- package/src/components/steps/index.js +20 -20
- package/src/components/switch/Switch.spec.js +74 -74
- package/src/components/switch/Switch.vue +126 -126
- package/src/components/switch/__snapshots__/Switch.spec.js.snap +3 -3
- package/src/components/switch/index.js +17 -17
- package/src/components/table/Table.spec.js +240 -240
- package/src/components/table/Table.vue +1456 -1444
- package/src/components/table/TableColumn.spec.js +27 -27
- package/src/components/table/TableColumn.vue +121 -121
- package/src/components/table/TableMobileSort.spec.js +40 -40
- package/src/components/table/TableMobileSort.vue +189 -189
- package/src/components/table/TablePagination.vue +78 -78
- package/src/components/table/__snapshots__/Table.spec.js.snap +22 -22
- package/src/components/table/__snapshots__/TableMobileSort.spec.js.snap +14 -14
- package/src/components/table/index.js +25 -25
- package/src/components/tabs/TabItem.spec.js +143 -143
- package/src/components/tabs/TabItem.vue +17 -17
- package/src/components/tabs/Tabs.spec.js +121 -121
- package/src/components/tabs/Tabs.vue +182 -182
- package/src/components/tabs/__snapshots__/TabItem.spec.js.snap +3 -3
- package/src/components/tabs/__snapshots__/Tabs.spec.js.snap +27 -27
- package/src/components/tabs/index.js +20 -20
- package/src/components/tag/Tag.spec.js +32 -32
- package/src/components/tag/Tag.vue +110 -110
- package/src/components/tag/Taglist.spec.js +19 -19
- package/src/components/tag/Taglist.vue +14 -14
- package/src/components/tag/__snapshots__/Tag.spec.js.snap +6 -6
- package/src/components/tag/__snapshots__/Taglist.spec.js.snap +3 -3
- package/src/components/tag/index.js +20 -20
- package/src/components/taginput/Taginput.spec.js +92 -92
- package/src/components/taginput/Taginput.vue +377 -373
- package/src/components/taginput/__snapshots__/Taginput.spec.js.snap +10 -10
- package/src/components/taginput/index.js +17 -17
- package/src/components/timepicker/Timepicker.spec.js +34 -34
- package/src/components/timepicker/Timepicker.vue +163 -162
- package/src/components/timepicker/__snapshots__/Timepicker.spec.js.snap +242 -242
- package/src/components/timepicker/index.js +17 -17
- package/src/components/toast/Toast.spec.js +20 -20
- package/src/components/toast/Toast.vue +36 -36
- package/src/components/toast/__snapshots__/Toast.spec.js.snap +7 -7
- package/src/components/toast/index.js +60 -60
- package/src/components/tooltip/Tooltip.spec.js +54 -19
- package/src/components/tooltip/Tooltip.vue +299 -299
- package/src/components/tooltip/__snapshots__/Tooltip.spec.js.snap +3 -3
- package/src/components/tooltip/index.js +17 -17
- package/src/components/upload/Upload.spec.js +19 -19
- package/src/components/upload/Upload.vue +183 -183
- package/src/components/upload/__snapshots__/Upload.spec.js.snap +3 -3
- package/src/components/upload/index.js +17 -17
- package/src/directives/clickOutside.js +81 -81
- package/src/directives/trapFocus.js +59 -59
- package/src/index.js +41 -40
- package/src/scss/buefy-build.scss +6 -6
- package/src/scss/buefy.scss +39 -39
- package/src/scss/components/_autocomplete.scss +39 -39
- package/src/scss/components/_carousel.scss +204 -204
- package/src/scss/components/_checkbox.scss +106 -106
- package/src/scss/components/_clockpicker.scss +283 -283
- package/src/scss/components/_collapse.scss +9 -9
- package/src/scss/components/_colorpicker.scss +283 -283
- package/src/scss/components/_datepicker.scss +220 -220
- package/src/scss/components/_dialog.scss +54 -54
- package/src/scss/components/_dropdown.scss +141 -141
- package/src/scss/components/_form.scss +309 -309
- package/src/scss/components/_icon.scss +16 -16
- package/src/scss/components/_image.scss +20 -20
- package/src/scss/components/_loading.scss +45 -45
- package/src/scss/components/_menu.scss +10 -10
- package/src/scss/components/_message.scss +16 -10
- package/src/scss/components/_modal.scss +24 -24
- package/src/scss/components/_navbar.scss +22 -22
- package/src/scss/components/_notices.scss +144 -144
- package/src/scss/components/_notification.scss +8 -8
- package/src/scss/components/_numberinput.scss +33 -33
- package/src/scss/components/_pagination.scss +63 -63
- package/src/scss/components/_progress.scss +105 -105
- package/src/scss/components/_radio.scss +123 -120
- package/src/scss/components/_rate.scss +72 -72
- package/src/scss/components/_select.scss +38 -38
- package/src/scss/components/_sidebar.scss +107 -98
- package/src/scss/components/_skeleton.scss +66 -66
- package/src/scss/components/_slider.scss +162 -162
- package/src/scss/components/_steps.scss +491 -491
- package/src/scss/components/_switch.scss +214 -214
- package/src/scss/components/_table.scss +279 -279
- package/src/scss/components/_tabs.scss +197 -197
- package/src/scss/components/_tag.scss +27 -27
- package/src/scss/components/_taginput.scss +73 -73
- package/src/scss/components/_timepicker.scss +73 -73
- package/src/scss/components/_tooltip.scss +192 -192
- package/src/scss/components/_upload.scss +73 -73
- package/src/scss/utils/_all.scss +4 -4
- package/src/scss/utils/_animations.scss +183 -183
- package/src/scss/utils/_functions.scss +49 -49
- package/src/scss/utils/_helpers.scss +6 -6
- package/src/scss/utils/_variables-ext.scss +2 -2
- package/src/scss/utils/_variables.scss +16 -16
- package/src/utils/CheckRadioMixin.js +41 -41
- package/src/utils/CheckRadioMixin.spec.js +24 -24
- package/src/utils/ConfigComponent.js +11 -11
- package/src/utils/FormElementMixin.js +170 -170
- package/src/utils/FormElementMixin.spec.js +41 -41
- package/src/utils/InjectedChildMixin.js +36 -36
- package/src/utils/MessageMixin.js +139 -139
- package/src/utils/MessageMixin.spec.js +52 -52
- package/src/utils/NoticeMixin.js +171 -171
- package/src/utils/NoticeMixin.spec.js +51 -51
- package/src/utils/ProviderParentMixin.js +83 -83
- package/src/utils/SlotComponent.js +51 -51
- package/src/utils/SlotComponent.spec.js +136 -136
- package/src/utils/TabbedChildMixin.js +88 -88
- package/src/utils/TabbedMixin.js +145 -145
- package/src/utils/TimepickerMixin.js +722 -718
- package/src/utils/TimepickerMixin.spec.js +82 -82
- package/src/utils/color.js +442 -441
- package/src/utils/color.spec.js +54 -52
- package/src/utils/config.js +87 -86
- package/src/utils/config.spec.js +10 -10
- package/src/utils/debounce.js +15 -15
- package/src/utils/debounce.spec.js +52 -52
- package/src/utils/helpers.js +307 -307
- package/src/utils/helpers.spec.js +146 -146
- package/src/utils/icons.js +63 -63
- package/src/utils/plugins.js +15 -15
- package/src/utils/ssr.js +6 -6
- package/types/components.d.ts +443 -443
- package/types/helpers.d.ts +5 -5
- package/types/index.d.ts +44 -44
- package/CHANGELOG.md +0 -1764
- package/dist/buefy.css +0 -15849
- package/dist/buefy.esm.js +0 -18216
- package/dist/buefy.esm.min.js +0 -2
- package/dist/buefy.js +0 -18297
- package/dist/buefy.min.css +0 -1
- package/dist/buefy.min.js +0 -2
- package/dist/cjs/autocomplete.js +0 -22
- package/dist/cjs/breadcrumb.js +0 -127
- package/dist/cjs/button.js +0 -20
- package/dist/cjs/carousel.js +0 -672
- package/dist/cjs/checkbox.js +0 -81
- package/dist/cjs/chunk-09574ad9.js +0 -110
- package/dist/cjs/chunk-0e3108f5.js +0 -147
- package/dist/cjs/chunk-13e039f5.js +0 -104
- package/dist/cjs/chunk-201c9e5c.js +0 -155
- package/dist/cjs/chunk-2a96ec68.js +0 -426
- package/dist/cjs/chunk-437dd7a0.js +0 -79
- package/dist/cjs/chunk-45739695.js +0 -332
- package/dist/cjs/chunk-4702fda4.js +0 -325
- package/dist/cjs/chunk-5cd29907.js +0 -60
- package/dist/cjs/chunk-660b0dfb.js +0 -1827
- package/dist/cjs/chunk-7b44db6e.js +0 -731
- package/dist/cjs/chunk-7cf23f94.js +0 -753
- package/dist/cjs/chunk-841c0e0f.js +0 -159
- package/dist/cjs/chunk-8b8384ca.js +0 -45
- package/dist/cjs/chunk-99367591.js +0 -351
- package/dist/cjs/chunk-a39776c7.js +0 -248
- package/dist/cjs/chunk-a53b7aff.js +0 -53
- package/dist/cjs/chunk-a6b29437.js +0 -196
- package/dist/cjs/chunk-ae7e641a.js +0 -59
- package/dist/cjs/chunk-bf0893c4.js +0 -62
- package/dist/cjs/chunk-bfcad370.js +0 -148
- package/dist/cjs/chunk-cc9676a6.js +0 -283
- package/dist/cjs/chunk-dddb035c.js +0 -550
- package/dist/cjs/chunk-e0373ab6.js +0 -314
- package/dist/cjs/chunk-e90b3d05.js +0 -94
- package/dist/cjs/chunk-eba24a95.js +0 -239
- package/dist/cjs/chunk-f1df1c63.js +0 -9
- package/dist/cjs/chunk-f5139026.js +0 -163
- package/dist/cjs/chunk-fb8ff6be.js +0 -179
- package/dist/cjs/clockpicker.js +0 -475
- package/dist/cjs/collapse.js +0 -122
- package/dist/cjs/colorpicker.js +0 -1759
- package/dist/cjs/config.js +0 -18
- package/dist/cjs/datepicker.js +0 -27
- package/dist/cjs/datetimepicker.js +0 -391
- package/dist/cjs/dialog.js +0 -311
- package/dist/cjs/dropdown.js +0 -23
- package/dist/cjs/field.js +0 -18
- package/dist/cjs/helpers.js +0 -348
- package/dist/cjs/icon.js +0 -19
- package/dist/cjs/image.js +0 -19
- package/dist/cjs/index.js +0 -216
- package/dist/cjs/input.js +0 -21
- package/dist/cjs/loading.js +0 -38
- package/dist/cjs/menu.js +0 -294
- package/dist/cjs/message.js +0 -61
- package/dist/cjs/modal.js +0 -67
- package/dist/cjs/navbar.js +0 -687
- package/dist/cjs/notification.js +0 -178
- package/dist/cjs/numberinput.js +0 -290
- package/dist/cjs/pagination.js +0 -22
- package/dist/cjs/progress.js +0 -231
- package/dist/cjs/radio.js +0 -118
- package/dist/cjs/rate.js +0 -155
- package/dist/cjs/select.js +0 -21
- package/dist/cjs/sidebar.js +0 -344
- package/dist/cjs/skeleton.js +0 -107
- package/dist/cjs/slider.js +0 -596
- package/dist/cjs/snackbar.js +0 -134
- package/dist/cjs/steps.js +0 -282
- package/dist/cjs/switch.js +0 -133
- package/dist/cjs/table.js +0 -1582
- package/dist/cjs/tabs.js +0 -213
- package/dist/cjs/tag.js +0 -63
- package/dist/cjs/taginput.js +0 -334
- package/dist/cjs/timepicker.js +0 -28
- package/dist/cjs/toast.js +0 -108
- package/dist/cjs/tooltip.js +0 -19
- package/dist/cjs/upload.js +0 -214
- package/dist/components/autocomplete/index.js +0 -1690
- package/dist/components/autocomplete/index.min.js +0 -2
- package/dist/components/breadcrumb/index.js +0 -294
- package/dist/components/breadcrumb/index.min.js +0 -2
- package/dist/components/button/index.js +0 -583
- package/dist/components/button/index.min.js +0 -2
- package/dist/components/carousel/index.js +0 -1652
- package/dist/components/carousel/index.min.js +0 -2
- package/dist/components/checkbox/index.js +0 -274
- package/dist/components/checkbox/index.min.js +0 -2
- package/dist/components/clockpicker/index.js +0 -3239
- package/dist/components/clockpicker/index.min.js +0 -2
- package/dist/components/collapse/index.js +0 -221
- package/dist/components/collapse/index.min.js +0 -2
- package/dist/components/colorpicker/index.js +0 -4377
- package/dist/components/colorpicker/index.min.js +0 -2
- package/dist/components/datepicker/index.js +0 -4015
- package/dist/components/datepicker/index.min.js +0 -2
- package/dist/components/datetimepicker/index.js +0 -5151
- package/dist/components/datetimepicker/index.min.js +0 -2
- package/dist/components/dialog/index.js +0 -1215
- package/dist/components/dialog/index.min.js +0 -2
- package/dist/components/dropdown/index.js +0 -1015
- package/dist/components/dropdown/index.min.js +0 -2
- package/dist/components/field/index.js +0 -516
- package/dist/components/field/index.min.js +0 -2
- package/dist/components/icon/index.js +0 -481
- package/dist/components/icon/index.min.js +0 -2
- package/dist/components/image/index.js +0 -527
- package/dist/components/image/index.min.js +0 -2
- package/dist/components/input/index.js +0 -896
- package/dist/components/input/index.min.js +0 -2
- package/dist/components/loading/index.js +0 -384
- package/dist/components/loading/index.min.js +0 -2
- package/dist/components/menu/index.js +0 -756
- package/dist/components/menu/index.min.js +0 -2
- package/dist/components/message/index.js +0 -671
- package/dist/components/message/index.min.js +0 -2
- package/dist/components/modal/index.js +0 -667
- package/dist/components/modal/index.min.js +0 -2
- package/dist/components/navbar/index.js +0 -816
- package/dist/components/navbar/index.min.js +0 -2
- package/dist/components/notification/index.js +0 -956
- package/dist/components/notification/index.min.js +0 -2
- package/dist/components/numberinput/index.js +0 -1165
- package/dist/components/numberinput/index.min.js +0 -2
- package/dist/components/pagination/index.js +0 -899
- package/dist/components/pagination/index.min.js +0 -2
- package/dist/components/progress/index.js +0 -569
- package/dist/components/progress/index.min.js +0 -2
- package/dist/components/radio/index.js +0 -258
- package/dist/components/radio/index.min.js +0 -2
- package/dist/components/rate/index.js +0 -617
- package/dist/components/rate/index.min.js +0 -2
- package/dist/components/select/index.js +0 -743
- package/dist/components/select/index.min.js +0 -2
- package/dist/components/sidebar/index.js +0 -520
- package/dist/components/sidebar/index.min.js +0 -2
- package/dist/components/skeleton/index.js +0 -206
- package/dist/components/skeleton/index.min.js +0 -2
- package/dist/components/slider/index.js +0 -1186
- package/dist/components/slider/index.min.js +0 -2
- package/dist/components/snackbar/index.js +0 -558
- package/dist/components/snackbar/index.min.js +0 -2
- package/dist/components/steps/index.js +0 -1193
- package/dist/components/steps/index.min.js +0 -2
- package/dist/components/switch/index.js +0 -300
- package/dist/components/switch/index.min.js +0 -2
- package/dist/components/table/index.js +0 -3349
- package/dist/components/table/index.min.js +0 -2
- package/dist/components/tabs/index.js +0 -1124
- package/dist/components/tabs/index.min.js +0 -2
- package/dist/components/tag/index.js +0 -304
- package/dist/components/tag/index.min.js +0 -2
- package/dist/components/taginput/index.js +0 -2180
- package/dist/components/taginput/index.min.js +0 -2
- package/dist/components/timepicker/index.js +0 -2926
- package/dist/components/timepicker/index.min.js +0 -2
- package/dist/components/toast/index.js +0 -532
- package/dist/components/toast/index.min.js +0 -2
- package/dist/components/tooltip/index.js +0 -562
- package/dist/components/tooltip/index.min.js +0 -2
- package/dist/components/upload/index.js +0 -559
- package/dist/components/upload/index.min.js +0 -2
- package/dist/esm/autocomplete.js +0 -18
- package/dist/esm/breadcrumb.js +0 -122
- package/dist/esm/button.js +0 -16
- package/dist/esm/carousel.js +0 -666
- package/dist/esm/checkbox.js +0 -77
- package/dist/esm/chunk-17b33cd2.js +0 -177
- package/dist/esm/chunk-2793447b.js +0 -43
- package/dist/esm/chunk-2f2f0a74.js +0 -146
- package/dist/esm/chunk-33e1434e.js +0 -281
- package/dist/esm/chunk-35c20328.js +0 -60
- package/dist/esm/chunk-42f463e6.js +0 -57
- package/dist/esm/chunk-455cdeae.js +0 -317
- package/dist/esm/chunk-493ff0a9.js +0 -312
- package/dist/esm/chunk-4a2008fa.js +0 -58
- package/dist/esm/chunk-4e788733.js +0 -92
- package/dist/esm/chunk-53788519.js +0 -323
- package/dist/esm/chunk-60a03517.js +0 -154
- package/dist/esm/chunk-6d0f2352.js +0 -145
- package/dist/esm/chunk-6e56b8bc.js +0 -729
- package/dist/esm/chunk-72ecb544.js +0 -246
- package/dist/esm/chunk-7bb9107f.js +0 -153
- package/dist/esm/chunk-7e17a637.js +0 -194
- package/dist/esm/chunk-9b0b8225.js +0 -349
- package/dist/esm/chunk-a32d1427.js +0 -161
- package/dist/esm/chunk-abcf9a94.js +0 -751
- package/dist/esm/chunk-ade5b253.js +0 -547
- package/dist/esm/chunk-b5576437.js +0 -108
- package/dist/esm/chunk-b9bdb0e4.js +0 -6
- package/dist/esm/chunk-c5284276.js +0 -422
- package/dist/esm/chunk-c9c18b2f.js +0 -51
- package/dist/esm/chunk-cca88db8.js +0 -99
- package/dist/esm/chunk-e92e3389.js +0 -77
- package/dist/esm/chunk-ea6777b6.js +0 -1825
- package/dist/esm/chunk-f32d0228.js +0 -236
- package/dist/esm/clockpicker.js +0 -471
- package/dist/esm/collapse.js +0 -118
- package/dist/esm/colorpicker.js +0 -1755
- package/dist/esm/config.js +0 -14
- package/dist/esm/datepicker.js +0 -23
- package/dist/esm/datetimepicker.js +0 -387
- package/dist/esm/dialog.js +0 -306
- package/dist/esm/dropdown.js +0 -18
- package/dist/esm/field.js +0 -14
- package/dist/esm/helpers.js +0 -322
- package/dist/esm/icon.js +0 -15
- package/dist/esm/image.js +0 -15
- package/dist/esm/index.js +0 -184
- package/dist/esm/input.js +0 -17
- package/dist/esm/loading.js +0 -34
- package/dist/esm/menu.js +0 -288
- package/dist/esm/message.js +0 -57
- package/dist/esm/modal.js +0 -63
- package/dist/esm/navbar.js +0 -681
- package/dist/esm/notification.js +0 -173
- package/dist/esm/numberinput.js +0 -286
- package/dist/esm/pagination.js +0 -17
- package/dist/esm/progress.js +0 -226
- package/dist/esm/radio.js +0 -113
- package/dist/esm/rate.js +0 -151
- package/dist/esm/select.js +0 -17
- package/dist/esm/sidebar.js +0 -340
- package/dist/esm/skeleton.js +0 -103
- package/dist/esm/slider.js +0 -591
- package/dist/esm/snackbar.js +0 -129
- package/dist/esm/steps.js +0 -277
- package/dist/esm/switch.js +0 -129
- package/dist/esm/table.js +0 -1577
- package/dist/esm/tabs.js +0 -208
- package/dist/esm/tag.js +0 -59
- package/dist/esm/taginput.js +0 -330
- package/dist/esm/timepicker.js +0 -24
- package/dist/esm/toast.js +0 -103
- package/dist/esm/tooltip.js +0 -15
- package/dist/esm/upload.js +0 -210
- package/dist/vetur/attributes.json +0 -3206
- package/dist/vetur/tags.json +0 -1175
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2017-2019 Rafael Beraldo
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2017-2019 Rafael Beraldo
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,139 +1,143 @@
|
|
|
1
|
-
<p align="center">
|
|
2
|
-
<a href="https://buefy.org">
|
|
3
|
-
<img src="https://raw.githubusercontent.com/buefy/buefy/master/static/img/buefy-banner.png" />
|
|
4
|
-
</a>
|
|
5
|
-
<a href="https://github.com/buefy/buefy/releases"><img src="https://img.shields.io/github/v/release/buefy/buefy?logo=buefy&color=7957d5&labelColor=lightgrey" /></a>
|
|
6
|
-
<a href="https://www.npmjs.com/package/buefy"><img src="https://img.shields.io/npm/v/buefy.svg?logo=npm" /></a>
|
|
7
|
-
<a href="https://www.npmjs.com/package/buefy"><img src="https://img.shields.io/npm/dt/buefy.svg" /></a>
|
|
8
|
-
<a href="https://circleci.com/gh/buefy/buefy"><img src="https://img.shields.io/circleci/project/github/buefy/buefy.svg?style=flat-square" /></a>
|
|
9
|
-
<a href="https://codecov.io/gh/buefy/buefy"><img src="https://img.shields.io/codecov/c/github/buefy/buefy.svg?style=flat-square" /></a>
|
|
10
|
-
<a href="https://discordapp.com/invite/ZkdFJMr"><img src="https://img.shields.io/badge/chat-on%20discord-7289DA.svg?logo=discord" /></a>
|
|
11
|
-
<a href="https://buefy.org"><img src="https://img.shields.io/badge/code_style-buefy-7957d5.svg?style=flat-square" /></a>
|
|
12
|
-
</p>
|
|
13
|
-
|
|
14
|
-
> Buefy is a lightweight library of responsive UI components for [Vue.js](https://vuejs.org/) based on [Bulma](http://bulma.io/) framework and design.
|
|
15
|
-
|
|
16
|
-
## Features
|
|
17
|
-
|
|
18
|
-
* Keep your current Bulma theme / variables easily
|
|
19
|
-
* Supports both [Material Design Icons](https://materialdesignicons.com/) and [FontAwesome](http://fontawesome.io/)
|
|
20
|
-
* Very lightweight with none internal dependencies aside from Vue & Bulma
|
|
21
|
-
* About 88KB min+gzip (with Bulma included)
|
|
22
|
-
* Semantic code output
|
|
23
|
-
* Follows Bulma design and some of the [Material Design UX](https://material.io/)
|
|
24
|
-
* Focus on usability and performance without *over-animating* stuff
|
|
25
|
-
|
|
26
|
-
## Documentation
|
|
27
|
-
|
|
28
|
-
The documentation is in the docs directory, it serves as the demo as well.
|
|
29
|
-
|
|
30
|
-
Browse [online documentation here](https://buefy.org/).
|
|
31
|
-
|
|
32
|
-
## Quick start
|
|
33
|
-
|
|
34
|
-
You need [Vue.js](https://vuejs.org/) **version 2.6+**. (Vue 3 is [not supported](https://github.com/buefy/buefy/issues/2505#issuecomment-997000720))
|
|
35
|
-
|
|
36
|
-
### 1 Install via npm
|
|
37
|
-
|
|
38
|
-
```bash
|
|
39
|
-
npm install buefy
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
### 2 Import and use Buefy
|
|
43
|
-
|
|
44
|
-
Bundle
|
|
45
|
-
```javascript
|
|
46
|
-
import Vue from 'vue';
|
|
47
|
-
import Buefy from 'buefy';
|
|
48
|
-
import 'buefy/dist/buefy.css';
|
|
49
|
-
|
|
50
|
-
Vue.use(Buefy);
|
|
51
|
-
|
|
52
|
-
```
|
|
53
|
-
or Individual Components
|
|
54
|
-
```javascript
|
|
55
|
-
|
|
56
|
-
import Vue from 'vue'
|
|
57
|
-
import { Field, Input } from 'buefy'
|
|
58
|
-
import 'buefy/dist/buefy.css'
|
|
59
|
-
|
|
60
|
-
Vue.use(Field)
|
|
61
|
-
Vue.use(Input)
|
|
62
|
-
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
### 3 Include Material Design Icons
|
|
66
|
-
|
|
67
|
-
```html
|
|
68
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@5.8.55/css/materialdesignicons.min.css">
|
|
69
|
-
```
|
|
70
|
-
|
|
71
|
-
If you want to customize the icons or the theme, refer to the [customization section on the documentation](https://buefy.org/documentation/customization).
|
|
72
|
-
|
|
73
|
-
### Alternatively, you can use a CDN or even download
|
|
74
|
-
|
|
75
|
-
```html
|
|
76
|
-
<!-- Buefy CSS -->
|
|
77
|
-
<link rel="stylesheet" href="https://unpkg.com/buefy/dist/buefy.min.css">
|
|
78
|
-
|
|
79
|
-
<!-- Buefy JavaScript -->
|
|
80
|
-
<script src="https://unpkg.com/buefy/dist/buefy.min.js"></script>
|
|
81
|
-
```
|
|
82
|
-
|
|
83
|
-
##
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
##
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
##
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
<td align="center"><a href="http://
|
|
122
|
-
<td align="center"><a href="
|
|
123
|
-
<td align="center"><a href="https://github.com/
|
|
124
|
-
<td align="center"><a href="https://github.com/
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
<td align="center"><a href="https://github.com/
|
|
128
|
-
|
|
129
|
-
</
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://buefy.org">
|
|
3
|
+
<img src="https://raw.githubusercontent.com/buefy/buefy/master/static/img/buefy-banner.png" />
|
|
4
|
+
</a>
|
|
5
|
+
<a href="https://github.com/buefy/buefy/releases"><img src="https://img.shields.io/github/v/release/buefy/buefy?logo=buefy&color=7957d5&labelColor=lightgrey" /></a>
|
|
6
|
+
<a href="https://www.npmjs.com/package/buefy"><img src="https://img.shields.io/npm/v/buefy.svg?logo=npm" /></a>
|
|
7
|
+
<a href="https://www.npmjs.com/package/buefy"><img src="https://img.shields.io/npm/dt/buefy.svg" /></a>
|
|
8
|
+
<a href="https://circleci.com/gh/buefy/buefy"><img src="https://img.shields.io/circleci/project/github/buefy/buefy.svg?style=flat-square" /></a>
|
|
9
|
+
<a href="https://codecov.io/gh/buefy/buefy"><img src="https://img.shields.io/codecov/c/github/buefy/buefy.svg?style=flat-square" /></a>
|
|
10
|
+
<a href="https://discordapp.com/invite/ZkdFJMr"><img src="https://img.shields.io/badge/chat-on%20discord-7289DA.svg?logo=discord" /></a>
|
|
11
|
+
<a href="https://buefy.org"><img src="https://img.shields.io/badge/code_style-buefy-7957d5.svg?style=flat-square" /></a>
|
|
12
|
+
</p>
|
|
13
|
+
|
|
14
|
+
> Buefy is a lightweight library of responsive UI components for [Vue.js](https://vuejs.org/) based on [Bulma](http://bulma.io/) framework and design.
|
|
15
|
+
|
|
16
|
+
## Features
|
|
17
|
+
|
|
18
|
+
* Keep your current Bulma theme / variables easily
|
|
19
|
+
* Supports both [Material Design Icons](https://materialdesignicons.com/) and [FontAwesome](http://fontawesome.io/)
|
|
20
|
+
* Very lightweight with none internal dependencies aside from Vue & Bulma
|
|
21
|
+
* About 88KB min+gzip (with Bulma included)
|
|
22
|
+
* Semantic code output
|
|
23
|
+
* Follows Bulma design and some of the [Material Design UX](https://material.io/)
|
|
24
|
+
* Focus on usability and performance without *over-animating* stuff
|
|
25
|
+
|
|
26
|
+
## Documentation
|
|
27
|
+
|
|
28
|
+
The documentation is in the docs directory, it serves as the demo as well.
|
|
29
|
+
|
|
30
|
+
Browse [online documentation here](https://buefy.org/).
|
|
31
|
+
|
|
32
|
+
## Quick start
|
|
33
|
+
|
|
34
|
+
You need [Vue.js](https://vuejs.org/) **version 2.6+**. (Vue 3 is [not supported](https://github.com/buefy/buefy/issues/2505#issuecomment-997000720))
|
|
35
|
+
|
|
36
|
+
### 1 Install via npm
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
npm install buefy
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### 2 Import and use Buefy
|
|
43
|
+
|
|
44
|
+
Bundle
|
|
45
|
+
```javascript
|
|
46
|
+
import Vue from 'vue';
|
|
47
|
+
import Buefy from 'buefy';
|
|
48
|
+
import 'buefy/dist/buefy.css';
|
|
49
|
+
|
|
50
|
+
Vue.use(Buefy);
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
or Individual Components
|
|
54
|
+
```javascript
|
|
55
|
+
|
|
56
|
+
import Vue from 'vue'
|
|
57
|
+
import { Field, Input } from 'buefy'
|
|
58
|
+
import 'buefy/dist/buefy.css'
|
|
59
|
+
|
|
60
|
+
Vue.use(Field)
|
|
61
|
+
Vue.use(Input)
|
|
62
|
+
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
### 3 Include Material Design Icons
|
|
66
|
+
|
|
67
|
+
```html
|
|
68
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@5.8.55/css/materialdesignicons.min.css">
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
If you want to customize the icons or the theme, refer to the [customization section on the documentation](https://buefy.org/documentation/customization).
|
|
72
|
+
|
|
73
|
+
### Alternatively, you can use a CDN or even download
|
|
74
|
+
|
|
75
|
+
```html
|
|
76
|
+
<!-- Buefy CSS -->
|
|
77
|
+
<link rel="stylesheet" href="https://unpkg.com/buefy/dist/buefy.min.css">
|
|
78
|
+
|
|
79
|
+
<!-- Buefy JavaScript -->
|
|
80
|
+
<script src="https://unpkg.com/buefy/dist/buefy.min.js"></script>
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
## Start On Cloud IDE
|
|
84
|
+
|
|
85
|
+
[https://github.com/buefy/buefy](https://github.com/buefy/buefy)
|
|
86
|
+
|
|
87
|
+
## Browser support
|
|
88
|
+
|
|
89
|
+
Recent versions of Firefox, Chrome, Edge, Opera and Safari. IE10+ is only partially supported.
|
|
90
|
+
|
|
91
|
+
## Contributing
|
|
92
|
+
|
|
93
|
+
Please see the [contributing guidelines](./.github/CONTRIBUTING.md)
|
|
94
|
+
|
|
95
|
+
## Versioning
|
|
96
|
+
|
|
97
|
+
Version will follow **v0.Y.Z**, where:
|
|
98
|
+
|
|
99
|
+
* **Y**: Major (breaking changes)
|
|
100
|
+
* **Z**: Minor or patch
|
|
101
|
+
|
|
102
|
+
## Core Team
|
|
103
|
+
|
|
104
|
+
<table>
|
|
105
|
+
<tr>
|
|
106
|
+
<td align="center"><a href="https://twitter.com/walter_tommasi"><img src="https://avatars0.githubusercontent.com/u/8029488?v=4" width="80px;" alt=""/><br /><sub><b>Walter Tommasi</b></sub></a><br /></td>
|
|
107
|
+
</tr>
|
|
108
|
+
</table>
|
|
109
|
+
|
|
110
|
+
Special thanks to <a href="http://twitter.com/rafaelpimpa">Rafael Beraldo</a>, the original author.
|
|
111
|
+
|
|
112
|
+
## Contributors ✨
|
|
113
|
+
|
|
114
|
+
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
115
|
+
|
|
116
|
+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
117
|
+
<!-- prettier-ignore-start -->
|
|
118
|
+
<!-- markdownlint-disable -->
|
|
119
|
+
<table>
|
|
120
|
+
<tr>
|
|
121
|
+
<td align="center"><a href="http://twitter.com/rafaelpimpa"><img src="https://avatars2.githubusercontent.com/u/18370605?v=4" width="80px;" alt=""/><br /><sub><b>Rafael Beraldo</b></sub></a><br /><a href="https://github.com/buefy/buefy/commits?author=rafaelpimpa" title="Code">💻</a></td>
|
|
122
|
+
<td align="center"><a href="https://edutechno.ca"><img src="https://avatars1.githubusercontent.com/u/12817388?v=4" width="80px;" alt=""/><br /><sub><b>Alexandre Paradis</b></sub></a><br /><a href="https://github.com/buefy/buefy/commits?author=service-paradis" title="Code">💻</a></td>
|
|
123
|
+
<td align="center"><a href="https://github.com/yxngl"><img src="https://avatars0.githubusercontent.com/u/1696853?v=4" width="80px;" alt=""/><br /><sub><b>Yuxing Liao</b></sub></a><br /><a href="https://github.com/buefy/buefy/commits?author=yxngl" title="Code">💻</a></td>
|
|
124
|
+
<td align="center"><a href="https://github.com/adrlen"><img src="https://avatars2.githubusercontent.com/u/1764097?v=4" width="80px;" alt=""/><br /><sub><b>Adrien</b></sub></a><br /><a href="https://github.com/buefy/buefy/commits?author=adrlen" title="Code">💻</a></td>
|
|
125
|
+
<td align="center"><a href="http://paypal.me/apolokak"><img src="https://avatars2.githubusercontent.com/u/30395693?v=4" width="80px;" alt=""/><br /><sub><b>Apolokak Lab</b></sub></a><br /><a href="https://github.com/buefy/buefy/commits?author=apolokaklab" title="Code">💻</a></td>
|
|
126
|
+
<td align="center"><a href="http://owen.com.br"><img src="https://avatars1.githubusercontent.com/u/1490347?v=4" width="80px;" alt=""/><br /><sub><b>Antério Vieira</b></sub></a><br /><a href="https://github.com/buefy/buefy/commits?author=anteriovieira" title="Code">💻</a></td>
|
|
127
|
+
<td align="center"><a href="https://github.com/wanxe"><img src="https://avatars3.githubusercontent.com/u/10264065?v=4" width="80px;" alt=""/><br /><sub><b>Jorge Nieto</b></sub></a><br /><a href="https://github.com/buefy/buefy/commits?author=wanxe" title="Code">💻</a></td>
|
|
128
|
+
<td align="center"><a href="https://github.com/mateuswetah"><img src="https://avatars0.githubusercontent.com/u/1184874?v=4" width="80px;" alt=""/><br /><sub><b>Mateus Machado Luna</b></sub></a><br /><a href="https://github.com/buefy/buefy/commits?author=mateuswetah" title="Code">💻</a></td>
|
|
129
|
+
</tr>
|
|
130
|
+
<tr>
|
|
131
|
+
<td align="center"><a href="https://github.com/buefy/buefy/graphs/contributors"><br /><sub><b>All contributors</b></sub></a><br /></td>
|
|
132
|
+
</tr>
|
|
133
|
+
</table>
|
|
134
|
+
|
|
135
|
+
<!-- markdownlint-enable -->
|
|
136
|
+
<!-- prettier-ignore-end -->
|
|
137
|
+
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
138
|
+
|
|
139
|
+
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
|
|
140
|
+
|
|
141
|
+
## License <a href="https://github.com/buefy/buefy/blob/master/LICENSE"><img src="https://img.shields.io/npm/l/buefy.svg?logo=github" /></a>
|
|
142
|
+
|
|
143
|
+
Code released under [MIT](https://github.com/buefy/buefy/blob/master/LICENSE) license.
|