bonkers-ui 1.0.73 → 2.0.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/LICENCE +1 -1
- package/README.md +106 -82
- package/_types/align.d.ts +0 -1
- package/_types/align.js.map +1 -1
- package/_types/colors.d.ts +5 -1
- package/_types/colors.js +1 -1
- package/_types/colors.js.map +1 -1
- package/_types/sizing.d.ts +0 -1
- package/_types/sizing.js.map +1 -1
- package/bonkers-ui.css +1 -0
- package/bonkers-ui.umd.js +102 -11
- package/bonkers-ui.umd.js.map +1 -1
- package/components/UiAlert/UiAlert.d.ts +10 -0
- package/components/UiAlert/UiAlert.js +35 -0
- package/components/UiAlert/UiAlert.js.map +1 -0
- package/components/{ui-alert → UiAlert}/_types.d.ts +0 -1
- package/components/UiAlert/_types.js.map +1 -0
- package/components/UiAlert/index.d.ts +2 -0
- package/components/UiAlert/index.js +7 -0
- package/components/UiAlert/index.js.map +1 -0
- package/components/UiBerRank/UiBerRank.d.ts +8 -0
- package/components/UiBerRank/UiBerRank.js +95 -0
- package/components/UiBerRank/UiBerRank.js.map +1 -0
- package/components/UiBerRank/UiBerRank.module.css.js +10 -0
- package/components/UiBerRank/UiBerRank.module.css.js.map +1 -0
- package/components/{ui-ber-rank → UiBerRank}/_types.d.ts +2 -3
- package/components/{ui-ber-rank → UiBerRank}/_types.js +5 -6
- package/components/UiBerRank/_types.js.map +1 -0
- package/components/UiBerRank/index.d.ts +2 -0
- package/components/UiBerRank/index.js +7 -0
- package/components/UiBerRank/index.js.map +1 -0
- package/components/UiButton/UiButton.d.ts +10 -0
- package/components/UiButton/UiButton.js +152 -0
- package/components/UiButton/UiButton.js.map +1 -0
- package/components/UiButton/UiButton.module.css.js +8 -0
- package/components/UiButton/UiButton.module.css.js.map +1 -0
- package/components/{ui-button/_typings.d.ts → UiButton/_types.d.ts} +4 -1
- package/components/{ui-button/_typings.js → UiButton/_types.js} +4 -3
- package/components/UiButton/_types.js.map +1 -0
- package/components/UiButton/index.d.ts +2 -0
- package/components/UiButton/index.js +9 -0
- package/components/UiButton/index.js.map +1 -0
- package/components/UiCheckbox/UiCheckbox.d.ts +13 -0
- package/components/UiCheckbox/UiCheckbox.js +93 -0
- package/components/UiCheckbox/UiCheckbox.js.map +1 -0
- package/components/UiCheckbox/UiCheckbox.module.css.js +15 -0
- package/components/UiCheckbox/UiCheckbox.module.css.js.map +1 -0
- package/components/UiCheckbox/_types.d.ts +4 -0
- package/components/{ui-checkbox → UiCheckbox}/_types.js +1 -1
- package/components/UiCheckbox/_types.js.map +1 -0
- package/components/UiCheckbox/index.d.ts +2 -0
- package/components/UiCheckbox/index.js +7 -0
- package/components/UiCheckbox/index.js.map +1 -0
- package/components/UiIcon/UiIcon.d.ts +9 -0
- package/components/UiIcon/UiIcon.js +37 -0
- package/components/UiIcon/UiIcon.js.map +1 -0
- package/components/UiIcon/index.d.ts +1 -0
- package/components/UiIcon/index.js +5 -0
- package/components/UiInputRange/UiInputRange.d.ts +9 -0
- package/components/UiInputRange/UiInputRange.js +89 -0
- package/components/UiInputRange/UiInputRange.js.map +1 -0
- package/components/UiInputRange/UiInputRange.module.css.js +8 -0
- package/components/UiInputRange/UiInputRange.module.css.js.map +1 -0
- package/components/UiInputRange/index.d.ts +1 -0
- package/components/UiInputRange/index.js +5 -0
- package/components/UiList/UiList.d.ts +9 -0
- package/components/UiList/UiList.js +24 -0
- package/components/UiList/UiList.js.map +1 -0
- package/components/UiList/UiListItem.d.ts +7 -0
- package/components/UiList/UiListItem.js +10 -0
- package/components/UiList/UiListItem.js.map +1 -0
- package/components/{ui-list-item → UiList}/_types.d.ts +0 -5
- package/components/UiList/_types.js +6 -0
- package/components/UiList/_types.js.map +1 -0
- package/components/UiList/index.d.ts +3 -0
- package/components/UiList/index.js +10 -0
- package/components/UiList/index.js.map +1 -0
- package/components/UiPills/UiPills.d.ts +11 -0
- package/components/UiPills/UiPills.js +41 -0
- package/components/UiPills/UiPills.js.map +1 -0
- package/components/{ui-badge/_typings.d.ts → UiPills/_types.d.ts} +0 -1
- package/components/{ui-badge/_typings.js → UiPills/_types.js} +1 -1
- package/components/UiPills/_types.js.map +1 -0
- package/components/UiPills/index.d.ts +2 -0
- package/components/UiPills/index.js +8 -0
- package/components/UiPills/index.js.map +1 -0
- package/components/UiPlainRadio/UiPlainRadio.d.ts +11 -0
- package/components/UiPlainRadio/UiPlainRadio.js +83 -0
- package/components/UiPlainRadio/UiPlainRadio.js.map +1 -0
- package/components/UiPlainRadio/index.d.ts +1 -0
- package/components/UiPlainRadio/index.js +5 -0
- package/components/UiPlainRadio/index.js.map +1 -0
- package/components/UiProductCard/UiProductCard.d.ts +9 -0
- package/components/UiProductCard/UiProductCard.js +52 -0
- package/components/UiProductCard/UiProductCard.js.map +1 -0
- package/components/UiProductCard/index.d.ts +1 -0
- package/components/{ui-product-card → UiProductCard}/index.js +1 -1
- package/components/UiProductCard/index.js.map +1 -0
- package/components/UiProgress/UiProgress.d.ts +9 -0
- package/components/UiProgress/UiProgress.js +59 -0
- package/components/UiProgress/UiProgress.js.map +1 -0
- package/components/UiProgress/index.d.ts +1 -0
- package/components/UiProgress/index.js +5 -0
- package/components/UiProgress/index.js.map +1 -0
- package/components/UiRadio/UiRadio.d.ts +13 -0
- package/components/UiRadio/UiRadio.js +86 -0
- package/components/UiRadio/UiRadio.js.map +1 -0
- package/components/UiRadio/UiRadio.module.css.js +10 -0
- package/components/UiRadio/UiRadio.module.css.js.map +1 -0
- package/components/UiRadio/index.d.ts +1 -0
- package/components/UiRadio/index.js +5 -0
- package/components/UiRadio/index.js.map +1 -0
- package/components/UiRadioFancy/UiRadioFancy.d.ts +10 -0
- package/components/UiRadioFancy/UiRadioFancy.js +74 -0
- package/components/UiRadioFancy/UiRadioFancy.js.map +1 -0
- package/components/UiRadioFancy/_types.d.ts +4 -0
- package/components/UiRadioFancy/_types.js +5 -0
- package/components/UiRadioFancy/_types.js.map +1 -0
- package/components/UiRadioFancy/index.d.ts +2 -0
- package/components/UiRadioFancy/index.js +7 -0
- package/components/UiRadioFancy/index.js.map +1 -0
- package/components/UiSelect/UiSelect.d.ts +12 -0
- package/components/UiSelect/index.d.ts +1 -0
- package/components/UiSkeleton/UiSkeleton.d.ts +7 -0
- package/components/UiSkeleton/UiSkeleton.js +214 -0
- package/components/UiSkeleton/UiSkeleton.js.map +1 -0
- package/components/{ui-skeleton/_typings.d.ts → UiSkeleton/_types.d.ts} +0 -1
- package/components/{ui-skeleton/_typings.js → UiSkeleton/_types.js} +1 -1
- package/components/UiSkeleton/_types.js.map +1 -0
- package/components/UiSkeleton/index.d.ts +1 -0
- package/components/UiSkeleton/index.js +5 -0
- package/components/UiSkeleton/index.js.map +1 -0
- package/components/UiTable/UiTable.d.ts +8 -0
- package/components/UiTable/UiTable.js +21 -0
- package/components/UiTable/UiTable.js.map +1 -0
- package/components/UiTable/UiTableCell.d.ts +9 -0
- package/components/UiTable/UiTableCell.js +33 -0
- package/components/UiTable/UiTableCell.js.map +1 -0
- package/components/UiTable/UiTableRow.d.ts +7 -0
- package/components/UiTable/UiTableRow.js +25 -0
- package/components/UiTable/UiTableRow.js.map +1 -0
- package/components/{ui-table → UiTable}/_types.d.ts +3 -1
- package/components/UiTable/_types.js +6 -0
- package/components/UiTable/_types.js.map +1 -0
- package/components/UiTable/index.d.ts +4 -0
- package/components/UiTable/index.js +12 -0
- package/components/UiTable/index.js.map +1 -0
- package/components/UiTabs/UiTabs.d.ts +8 -0
- package/components/UiTabs/UiTabs.js +53 -0
- package/components/UiTabs/UiTabs.js.map +1 -0
- package/components/UiTabs/index.d.ts +1 -0
- package/components/UiTabs/index.js +5 -0
- package/components/UiTabs/index.js.map +1 -0
- package/components/UiToggle/UiToggle.d.ts +9 -0
- package/components/UiToggle/UiToggle.js +103 -0
- package/components/UiToggle/UiToggle.js.map +1 -0
- package/components/UiToggle/index.d.ts +1 -0
- package/components/UiToggle/index.js +5 -0
- package/components/UiToggle/index.js.map +1 -0
- package/components/UiTypography/UiTypography.d.ts +17 -0
- package/components/UiTypography/UiTypography.js +119 -0
- package/components/UiTypography/UiTypography.js.map +1 -0
- package/components/{ui-typography/_typings.d.ts → UiTypography/_types.d.ts} +4 -3
- package/components/UiTypography/_types.js +8 -0
- package/components/UiTypography/_types.js.map +1 -0
- package/components/UiTypography/index.d.ts +3 -0
- package/components/UiTypography/index.js +12 -0
- package/components/UiTypography/index.js.map +1 -0
- package/eslint.config.mjs +91 -0
- package/helper.d.ts +1 -0
- package/index.d.ts +18 -42
- package/index.js +36 -207
- package/index.js.map +1 -1
- package/package.json +106 -110
- package/plugin.ts +5 -2
- package/{postcss.config.js → postcss.config.mjs} +2 -1
- package/src/_styles/_shadow.json +2 -1
- package/tailwind.config.ts +6 -4
- package/.eslintrc.js +0 -127
- package/.stylelintrc +0 -24
- package/CONSTANTS.d.ts +0 -3
- package/CONSTANTS.d.ts.map +0 -1
- package/_types/align.d.ts.map +0 -1
- package/_types/colors.d.ts.map +0 -1
- package/_types/sizing.d.ts.map +0 -1
- package/_utils/debounce.d.ts +0 -2
- package/_utils/debounce.d.ts.map +0 -1
- package/_utils/debounce.js +0 -12
- package/_utils/debounce.js.map +0 -1
- package/_virtual/_plugin-vue_export-helper.js +0 -10
- package/_virtual/_plugin-vue_export-helper.js.map +0 -1
- package/components/ui-alert/_types.d.ts.map +0 -1
- package/components/ui-alert/_types.js.map +0 -1
- package/components/ui-alert/index.d.ts +0 -60
- package/components/ui-alert/index.d.ts.map +0 -1
- package/components/ui-alert/index.js +0 -9
- package/components/ui-alert/index.js.map +0 -1
- package/components/ui-alert/ui-alert.vue.d.ts +0 -35
- package/components/ui-alert/ui-alert.vue.d.ts.map +0 -1
- package/components/ui-alert/ui-alert.vue.js +0 -47
- package/components/ui-alert/ui-alert.vue.js.map +0 -1
- package/components/ui-alert/ui-alert.vue2.js +0 -5
- package/components/ui-alert/ui-alert.vue2.js.map +0 -1
- package/components/ui-badge/_typings.d.ts.map +0 -1
- package/components/ui-badge/_typings.js.map +0 -1
- package/components/ui-badge/index.d.ts +0 -104
- package/components/ui-badge/index.d.ts.map +0 -1
- package/components/ui-badge/index.js +0 -10
- package/components/ui-badge/index.js.map +0 -1
- package/components/ui-badge/ui-badge.vue.d.ts +0 -59
- package/components/ui-badge/ui-badge.vue.d.ts.map +0 -1
- package/components/ui-badge/ui-badge.vue.js +0 -64
- package/components/ui-badge/ui-badge.vue.js.map +0 -1
- package/components/ui-badge/ui-badge.vue2.js +0 -5
- package/components/ui-badge/ui-badge.vue2.js.map +0 -1
- package/components/ui-ber-rank/_types.d.ts.map +0 -1
- package/components/ui-ber-rank/_types.js.map +0 -1
- package/components/ui-ber-rank/index.d.ts +0 -31
- package/components/ui-ber-rank/index.d.ts.map +0 -1
- package/components/ui-ber-rank/index.js +0 -11
- package/components/ui-ber-rank/index.js.map +0 -1
- package/components/ui-ber-rank/ui-ber-rank.vue.d.ts +0 -34
- package/components/ui-ber-rank/ui-ber-rank.vue.d.ts.map +0 -1
- package/components/ui-ber-rank/ui-ber-rank.vue.js +0 -101
- package/components/ui-ber-rank/ui-ber-rank.vue.js.map +0 -1
- package/components/ui-ber-rank/ui-ber-rank.vue3.js +0 -7
- package/components/ui-ber-rank/ui-ber-rank.vue3.js.map +0 -1
- package/components/ui-button/_typings.d.ts.map +0 -1
- package/components/ui-button/_typings.js.map +0 -1
- package/components/ui-button/index.d.ts +0 -112
- package/components/ui-button/index.d.ts.map +0 -1
- package/components/ui-button/index.js +0 -10
- package/components/ui-button/index.js.map +0 -1
- package/components/ui-button/ui-button.vue.d.ts +0 -59
- package/components/ui-button/ui-button.vue.d.ts.map +0 -1
- package/components/ui-button/ui-button.vue.js +0 -51
- package/components/ui-button/ui-button.vue.js.map +0 -1
- package/components/ui-button/ui-button.vue2.js +0 -5
- package/components/ui-button/ui-button.vue2.js.map +0 -1
- package/components/ui-card-cta/index.d.ts +0 -92
- package/components/ui-card-cta/index.d.ts.map +0 -1
- package/components/ui-card-cta/index.js +0 -7
- package/components/ui-card-cta/index.js.map +0 -1
- package/components/ui-card-cta/ui-card-cta.vue.d.ts +0 -42
- package/components/ui-card-cta/ui-card-cta.vue.d.ts.map +0 -1
- package/components/ui-card-cta/ui-card-cta.vue.js +0 -76
- package/components/ui-card-cta/ui-card-cta.vue.js.map +0 -1
- package/components/ui-card-cta/ui-card-cta.vue2.js +0 -5
- package/components/ui-card-cta/ui-card-cta.vue2.js.map +0 -1
- package/components/ui-card-order/index.d.ts +0 -3
- package/components/ui-card-order/index.d.ts.map +0 -1
- package/components/ui-card-order/ui-card-order.vue.d.ts +0 -43
- package/components/ui-card-order/ui-card-order.vue.d.ts.map +0 -1
- package/components/ui-card-result/index.d.ts +0 -90
- package/components/ui-card-result/index.d.ts.map +0 -1
- package/components/ui-card-result/index.js +0 -7
- package/components/ui-card-result/index.js.map +0 -1
- package/components/ui-card-result/ui-card-result.vue.d.ts +0 -40
- package/components/ui-card-result/ui-card-result.vue.d.ts.map +0 -1
- package/components/ui-card-result/ui-card-result.vue.js +0 -9
- package/components/ui-card-result/ui-card-result.vue.js.map +0 -1
- package/components/ui-card-result/ui-card-result.vue2.js +0 -82
- package/components/ui-card-result/ui-card-result.vue2.js.map +0 -1
- package/components/ui-card-simple/_typings.d.ts +0 -5
- package/components/ui-card-simple/_typings.d.ts.map +0 -1
- package/components/ui-card-simple/index.d.ts +0 -27
- package/components/ui-card-simple/index.d.ts.map +0 -1
- package/components/ui-card-simple/index.js +0 -7
- package/components/ui-card-simple/index.js.map +0 -1
- package/components/ui-card-simple/ui-card-simple.vue.d.ts +0 -20
- package/components/ui-card-simple/ui-card-simple.vue.d.ts.map +0 -1
- package/components/ui-card-simple/ui-card-simple.vue.js +0 -35
- package/components/ui-card-simple/ui-card-simple.vue.js.map +0 -1
- package/components/ui-card-simple/ui-card-simple.vue2.js +0 -5
- package/components/ui-card-simple/ui-card-simple.vue2.js.map +0 -1
- package/components/ui-checkbox/_types.d.ts +0 -5
- package/components/ui-checkbox/_types.d.ts.map +0 -1
- package/components/ui-checkbox/_types.js.map +0 -1
- package/components/ui-checkbox/index.d.ts +0 -150
- package/components/ui-checkbox/index.d.ts.map +0 -1
- package/components/ui-checkbox/index.js +0 -7
- package/components/ui-checkbox/index.js.map +0 -1
- package/components/ui-checkbox/ui-checkbox.vue.d.ts +0 -70
- package/components/ui-checkbox/ui-checkbox.vue.d.ts.map +0 -1
- package/components/ui-checkbox/ui-checkbox.vue.js +0 -9
- package/components/ui-checkbox/ui-checkbox.vue.js.map +0 -1
- package/components/ui-checkbox/ui-checkbox.vue2.js +0 -81
- package/components/ui-checkbox/ui-checkbox.vue2.js.map +0 -1
- package/components/ui-dropdown/_typings.d.ts +0 -5
- package/components/ui-dropdown/_typings.d.ts.map +0 -1
- package/components/ui-dropdown/_typings.js +0 -5
- package/components/ui-dropdown/_typings.js.map +0 -1
- package/components/ui-dropdown/index.d.ts +0 -106
- package/components/ui-dropdown/index.d.ts.map +0 -1
- package/components/ui-dropdown/index.js +0 -9
- package/components/ui-dropdown/index.js.map +0 -1
- package/components/ui-dropdown/ui-dropdown.vue.d.ts +0 -57
- package/components/ui-dropdown/ui-dropdown.vue.d.ts.map +0 -1
- package/components/ui-dropdown/ui-dropdown.vue.js +0 -83
- package/components/ui-dropdown/ui-dropdown.vue.js.map +0 -1
- package/components/ui-dropdown/ui-dropdown.vue2.js +0 -5
- package/components/ui-dropdown/ui-dropdown.vue2.js.map +0 -1
- package/components/ui-icon/_typings.d.ts +0 -11
- package/components/ui-icon/_typings.d.ts.map +0 -1
- package/components/ui-icon/_typings.js +0 -5
- package/components/ui-icon/_typings.js.map +0 -1
- package/components/ui-icon/index.d.ts +0 -34
- package/components/ui-icon/index.d.ts.map +0 -1
- package/components/ui-icon/index.js +0 -11
- package/components/ui-icon/index.js.map +0 -1
- package/components/ui-icon/ui-icon.vue.d.ts +0 -35
- package/components/ui-icon/ui-icon.vue.d.ts.map +0 -1
- package/components/ui-icon/ui-icon.vue.js +0 -34
- package/components/ui-icon/ui-icon.vue.js.map +0 -1
- package/components/ui-icon/ui-icon.vue2.js +0 -5
- package/components/ui-icon/ui-icon.vue2.js.map +0 -1
- package/components/ui-icon-wrapper/_typings.d.ts +0 -12
- package/components/ui-icon-wrapper/_typings.d.ts.map +0 -1
- package/components/ui-icon-wrapper/_typings.js +0 -6
- package/components/ui-icon-wrapper/_typings.js.map +0 -1
- package/components/ui-icon-wrapper/index.d.ts +0 -72
- package/components/ui-icon-wrapper/index.d.ts.map +0 -1
- package/components/ui-icon-wrapper/index.js +0 -10
- package/components/ui-icon-wrapper/index.js.map +0 -1
- package/components/ui-icon-wrapper/ui-icon-wrapper.vue.d.ts +0 -49
- package/components/ui-icon-wrapper/ui-icon-wrapper.vue.d.ts.map +0 -1
- package/components/ui-icon-wrapper/ui-icon-wrapper.vue.js +0 -9
- package/components/ui-icon-wrapper/ui-icon-wrapper.vue.js.map +0 -1
- package/components/ui-icon-wrapper/ui-icon-wrapper.vue2.js +0 -28
- package/components/ui-icon-wrapper/ui-icon-wrapper.vue2.js.map +0 -1
- package/components/ui-input/_typings.d.ts +0 -71
- package/components/ui-input/_typings.d.ts.map +0 -1
- package/components/ui-input/_typings.js +0 -7
- package/components/ui-input/_typings.js.map +0 -1
- package/components/ui-input/index.d.ts +0 -300
- package/components/ui-input/index.d.ts.map +0 -1
- package/components/ui-input/index.js +0 -11
- package/components/ui-input/index.js.map +0 -1
- package/components/ui-input/ui-input.vue.d.ts +0 -113
- package/components/ui-input/ui-input.vue.d.ts.map +0 -1
- package/components/ui-input/ui-input.vue.js +0 -101
- package/components/ui-input/ui-input.vue.js.map +0 -1
- package/components/ui-input/ui-input.vue2.js +0 -5
- package/components/ui-input/ui-input.vue2.js.map +0 -1
- package/components/ui-input-range/index.d.ts +0 -47
- package/components/ui-input-range/index.d.ts.map +0 -1
- package/components/ui-input-range/index.js +0 -7
- package/components/ui-input-range/index.js.map +0 -1
- package/components/ui-input-range/ui-input-range.vue.d.ts +0 -27
- package/components/ui-input-range/ui-input-range.vue.d.ts.map +0 -1
- package/components/ui-input-range/ui-input-range.vue.js +0 -9
- package/components/ui-input-range/ui-input-range.vue.js.map +0 -1
- package/components/ui-input-range/ui-input-range.vue2.js +0 -71
- package/components/ui-input-range/ui-input-range.vue2.js.map +0 -1
- package/components/ui-list-item/_types.d.ts.map +0 -1
- package/components/ui-list-item/_types.js +0 -7
- package/components/ui-list-item/_types.js.map +0 -1
- package/components/ui-list-item/index.d.ts +0 -150
- package/components/ui-list-item/index.d.ts.map +0 -1
- package/components/ui-list-item/index.js +0 -11
- package/components/ui-list-item/index.js.map +0 -1
- package/components/ui-list-item/ui-list-item.vue.d.ts +0 -73
- package/components/ui-list-item/ui-list-item.vue.d.ts.map +0 -1
- package/components/ui-list-item/ui-list-item.vue.js +0 -68
- package/components/ui-list-item/ui-list-item.vue.js.map +0 -1
- package/components/ui-list-item/ui-list-item.vue2.js +0 -5
- package/components/ui-list-item/ui-list-item.vue2.js.map +0 -1
- package/components/ui-media-card/index.d.ts +0 -3
- package/components/ui-media-card/index.d.ts.map +0 -1
- package/components/ui-media-card/index.js +0 -5
- package/components/ui-media-card/ui-media-card.vue.d.ts +0 -24
- package/components/ui-media-card/ui-media-card.vue.d.ts.map +0 -1
- package/components/ui-media-card/ui-media-card.vue.js +0 -59
- package/components/ui-media-card/ui-media-card.vue.js.map +0 -1
- package/components/ui-media-card/ui-media-card.vue2.js +0 -5
- package/components/ui-media-card/ui-media-card.vue2.js.map +0 -1
- package/components/ui-modal/_typings.d.ts +0 -7
- package/components/ui-modal/_typings.d.ts.map +0 -1
- package/components/ui-modal/_typings.js +0 -5
- package/components/ui-modal/_typings.js.map +0 -1
- package/components/ui-modal/index.d.ts +0 -75
- package/components/ui-modal/index.d.ts.map +0 -1
- package/components/ui-modal/index.js +0 -9
- package/components/ui-modal/index.js.map +0 -1
- package/components/ui-modal/ui-backdrop/index.d.ts +0 -25
- package/components/ui-modal/ui-backdrop/index.d.ts.map +0 -1
- package/components/ui-modal/ui-backdrop/index.js +0 -7
- package/components/ui-modal/ui-backdrop/index.js.map +0 -1
- package/components/ui-modal/ui-backdrop/ui-backdrop.vue.d.ts +0 -18
- package/components/ui-modal/ui-backdrop/ui-backdrop.vue.d.ts.map +0 -1
- package/components/ui-modal/ui-backdrop/ui-backdrop.vue.js +0 -16
- package/components/ui-modal/ui-backdrop/ui-backdrop.vue.js.map +0 -1
- package/components/ui-modal/ui-modal.vue.d.ts +0 -54
- package/components/ui-modal/ui-modal.vue.d.ts.map +0 -1
- package/components/ui-modal/ui-modal.vue.js +0 -9
- package/components/ui-modal/ui-modal.vue.js.map +0 -1
- package/components/ui-modal/ui-modal.vue2.js +0 -61
- package/components/ui-modal/ui-modal.vue2.js.map +0 -1
- package/components/ui-notification-badge/_types.d.ts +0 -11
- package/components/ui-notification-badge/_types.d.ts.map +0 -1
- package/components/ui-notification-badge/_types.js +0 -5
- package/components/ui-notification-badge/_types.js.map +0 -1
- package/components/ui-notification-badge/index.d.ts +0 -53
- package/components/ui-notification-badge/index.d.ts.map +0 -1
- package/components/ui-notification-badge/index.js +0 -11
- package/components/ui-notification-badge/index.js.map +0 -1
- package/components/ui-notification-badge/ui-notification-badge.vue.d.ts +0 -46
- package/components/ui-notification-badge/ui-notification-badge.vue.d.ts.map +0 -1
- package/components/ui-notification-badge/ui-notification-badge.vue.js +0 -22
- package/components/ui-notification-badge/ui-notification-badge.vue.js.map +0 -1
- package/components/ui-notification-badge/ui-notification-badge.vue3.js +0 -7
- package/components/ui-notification-badge/ui-notification-badge.vue3.js.map +0 -1
- package/components/ui-order-card/_types.d.ts +0 -5
- package/components/ui-order-card/_types.d.ts.map +0 -1
- package/components/ui-order-card/_types.js +0 -5
- package/components/ui-order-card/_types.js.map +0 -1
- package/components/ui-order-card/index.d.ts +0 -71
- package/components/ui-order-card/index.d.ts.map +0 -1
- package/components/ui-order-card/index.js +0 -7
- package/components/ui-order-card/index.js.map +0 -1
- package/components/ui-order-card/ui-order-card.vue.d.ts +0 -51
- package/components/ui-order-card/ui-order-card.vue.d.ts.map +0 -1
- package/components/ui-order-card/ui-order-card.vue.js +0 -86
- package/components/ui-order-card/ui-order-card.vue.js.map +0 -1
- package/components/ui-order-card/ui-order-card.vue2.js +0 -5
- package/components/ui-order-card/ui-order-card.vue2.js.map +0 -1
- package/components/ui-plain-radio/index.d.ts +0 -126
- package/components/ui-plain-radio/index.d.ts.map +0 -1
- package/components/ui-plain-radio/index.js +0 -7
- package/components/ui-plain-radio/index.js.map +0 -1
- package/components/ui-plain-radio/ui-plain-radio.vue.d.ts +0 -46
- package/components/ui-plain-radio/ui-plain-radio.vue.d.ts.map +0 -1
- package/components/ui-plain-radio/ui-plain-radio.vue.js +0 -85
- package/components/ui-plain-radio/ui-plain-radio.vue.js.map +0 -1
- package/components/ui-plain-radio/ui-plain-radio.vue2.js +0 -5
- package/components/ui-plain-radio/ui-plain-radio.vue2.js.map +0 -1
- package/components/ui-product-card/index.d.ts +0 -2
- package/components/ui-product-card/index.d.ts.map +0 -1
- package/components/ui-product-card/ui-product-card.vue.d.ts +0 -37
- package/components/ui-product-card/ui-product-card.vue.d.ts.map +0 -1
- package/components/ui-product-card/ui-product-card.vue.js +0 -64
- package/components/ui-product-card/ui-product-card.vue.js.map +0 -1
- package/components/ui-product-card/ui-product-card.vue2.js +0 -5
- package/components/ui-product-card/ui-product-card.vue2.js.map +0 -1
- package/components/ui-progress/_types.d.ts +0 -2
- package/components/ui-progress/_types.d.ts.map +0 -1
- package/components/ui-progress/index.d.ts +0 -54
- package/components/ui-progress/index.d.ts.map +0 -1
- package/components/ui-progress/index.js +0 -7
- package/components/ui-progress/index.js.map +0 -1
- package/components/ui-progress/ui-progress.vue.d.ts +0 -46
- package/components/ui-progress/ui-progress.vue.d.ts.map +0 -1
- package/components/ui-progress/ui-progress.vue.js +0 -42
- package/components/ui-progress/ui-progress.vue.js.map +0 -1
- package/components/ui-progress/ui-progress.vue2.js +0 -5
- package/components/ui-progress/ui-progress.vue2.js.map +0 -1
- package/components/ui-radio/index.d.ts +0 -126
- package/components/ui-radio/index.d.ts.map +0 -1
- package/components/ui-radio/index.js +0 -7
- package/components/ui-radio/index.js.map +0 -1
- package/components/ui-radio/ui-radio.vue.d.ts +0 -46
- package/components/ui-radio/ui-radio.vue.d.ts.map +0 -1
- package/components/ui-radio/ui-radio.vue.js +0 -9
- package/components/ui-radio/ui-radio.vue.js.map +0 -1
- package/components/ui-radio/ui-radio.vue2.js +0 -58
- package/components/ui-radio/ui-radio.vue2.js.map +0 -1
- package/components/ui-radio-compact/index.d.ts +0 -104
- package/components/ui-radio-compact/index.d.ts.map +0 -1
- package/components/ui-radio-compact/index.js +0 -7
- package/components/ui-radio-compact/index.js.map +0 -1
- package/components/ui-radio-compact/ui-radio-compact.vue.d.ts +0 -41
- package/components/ui-radio-compact/ui-radio-compact.vue.d.ts.map +0 -1
- package/components/ui-radio-compact/ui-radio-compact.vue.js +0 -52
- package/components/ui-radio-compact/ui-radio-compact.vue.js.map +0 -1
- package/components/ui-radio-compact/ui-radio-compact.vue2.js +0 -5
- package/components/ui-radio-compact/ui-radio-compact.vue2.js.map +0 -1
- package/components/ui-radio-fancy/_typings.d.ts +0 -6
- package/components/ui-radio-fancy/_typings.d.ts.map +0 -1
- package/components/ui-radio-fancy/_typings.js +0 -5
- package/components/ui-radio-fancy/_typings.js.map +0 -1
- package/components/ui-radio-fancy/index.d.ts +0 -144
- package/components/ui-radio-fancy/index.d.ts.map +0 -1
- package/components/ui-radio-fancy/index.js +0 -7
- package/components/ui-radio-fancy/index.js.map +0 -1
- package/components/ui-radio-fancy/ui-radio-fancy.vue.d.ts +0 -64
- package/components/ui-radio-fancy/ui-radio-fancy.vue.d.ts.map +0 -1
- package/components/ui-radio-fancy/ui-radio-fancy.vue.js +0 -86
- package/components/ui-radio-fancy/ui-radio-fancy.vue.js.map +0 -1
- package/components/ui-radio-fancy/ui-radio-fancy.vue2.js +0 -5
- package/components/ui-radio-fancy/ui-radio-fancy.vue2.js.map +0 -1
- package/components/ui-result-card-range/_types.d.ts +0 -8
- package/components/ui-result-card-range/_types.d.ts.map +0 -1
- package/components/ui-result-card-range/index.d.ts +0 -54
- package/components/ui-result-card-range/index.d.ts.map +0 -1
- package/components/ui-result-card-range/index.js +0 -7
- package/components/ui-result-card-range/index.js.map +0 -1
- package/components/ui-result-card-range/ui-result-card-range.vue.d.ts +0 -34
- package/components/ui-result-card-range/ui-result-card-range.vue.d.ts.map +0 -1
- package/components/ui-result-card-range/ui-result-card-range.vue.js +0 -39
- package/components/ui-result-card-range/ui-result-card-range.vue.js.map +0 -1
- package/components/ui-result-card-range/ui-result-card-range.vue2.js +0 -5
- package/components/ui-result-card-range/ui-result-card-range.vue2.js.map +0 -1
- package/components/ui-ripple/index.d.ts +0 -25
- package/components/ui-ripple/index.d.ts.map +0 -1
- package/components/ui-ripple/index.js +0 -9
- package/components/ui-ripple/index.js.map +0 -1
- package/components/ui-ripple/ui-ripple.vue.d.ts +0 -20
- package/components/ui-ripple/ui-ripple.vue.d.ts.map +0 -1
- package/components/ui-ripple/ui-ripple.vue.js +0 -52
- package/components/ui-ripple/ui-ripple.vue.js.map +0 -1
- package/components/ui-ripple/ui-ripple.vue3.js +0 -7
- package/components/ui-ripple/ui-ripple.vue3.js.map +0 -1
- package/components/ui-select/index.d.ts +0 -96
- package/components/ui-select/index.d.ts.map +0 -1
- package/components/ui-select/index.js +0 -7
- package/components/ui-select/index.js.map +0 -1
- package/components/ui-select/ui-select.vue.d.ts +0 -44
- package/components/ui-select/ui-select.vue.d.ts.map +0 -1
- package/components/ui-select/ui-select.vue.js +0 -83
- package/components/ui-select/ui-select.vue.js.map +0 -1
- package/components/ui-select/ui-select.vue2.js +0 -5
- package/components/ui-select/ui-select.vue2.js.map +0 -1
- package/components/ui-skeleton/_typings.d.ts.map +0 -1
- package/components/ui-skeleton/_typings.js.map +0 -1
- package/components/ui-skeleton/index.d.ts +0 -22
- package/components/ui-skeleton/index.d.ts.map +0 -1
- package/components/ui-skeleton/index.js +0 -7
- package/components/ui-skeleton/index.js.map +0 -1
- package/components/ui-skeleton/ui-skeleton.vue.d.ts +0 -32
- package/components/ui-skeleton/ui-skeleton.vue.d.ts.map +0 -1
- package/components/ui-skeleton/ui-skeleton.vue.js +0 -41
- package/components/ui-skeleton/ui-skeleton.vue.js.map +0 -1
- package/components/ui-skeleton/ui-skeleton.vue2.js +0 -5
- package/components/ui-skeleton/ui-skeleton.vue2.js.map +0 -1
- package/components/ui-snackbar/_types.d.ts +0 -8
- package/components/ui-snackbar/_types.d.ts.map +0 -1
- package/components/ui-snackbar/_types.js +0 -5
- package/components/ui-snackbar/_types.js.map +0 -1
- package/components/ui-snackbar/index.d.ts +0 -71
- package/components/ui-snackbar/index.d.ts.map +0 -1
- package/components/ui-snackbar/index.js +0 -9
- package/components/ui-snackbar/index.js.map +0 -1
- package/components/ui-snackbar/ui-snackbar.vue.d.ts +0 -50
- package/components/ui-snackbar/ui-snackbar.vue.d.ts.map +0 -1
- package/components/ui-snackbar/ui-snackbar.vue.js +0 -49
- package/components/ui-snackbar/ui-snackbar.vue.js.map +0 -1
- package/components/ui-snackbar/ui-snackbar.vue2.js +0 -5
- package/components/ui-snackbar/ui-snackbar.vue2.js.map +0 -1
- package/components/ui-table/_types.d.ts.map +0 -1
- package/components/ui-table/_types.js +0 -5
- package/components/ui-table/_types.js.map +0 -1
- package/components/ui-table/index.d.ts +0 -56
- package/components/ui-table/index.d.ts.map +0 -1
- package/components/ui-table/index.js +0 -19
- package/components/ui-table/index.js.map +0 -1
- package/components/ui-table/ui-table-cell/index.d.ts +0 -55
- package/components/ui-table/ui-table-cell/index.d.ts.map +0 -1
- package/components/ui-table/ui-table-cell/index.js +0 -7
- package/components/ui-table/ui-table-cell/index.js.map +0 -1
- package/components/ui-table/ui-table-cell/ui-table-cell.vue.d.ts +0 -35
- package/components/ui-table/ui-table-cell/ui-table-cell.vue.d.ts.map +0 -1
- package/components/ui-table/ui-table-cell/ui-table-cell.vue.js +0 -41
- package/components/ui-table/ui-table-cell/ui-table-cell.vue.js.map +0 -1
- package/components/ui-table/ui-table-cell/ui-table-cell.vue2.js +0 -5
- package/components/ui-table/ui-table-cell/ui-table-cell.vue2.js.map +0 -1
- package/components/ui-table/ui-table-row/_typings.d.ts +0 -4
- package/components/ui-table/ui-table-row/_typings.d.ts.map +0 -1
- package/components/ui-table/ui-table-row/_typings.js +0 -5
- package/components/ui-table/ui-table-row/_typings.js.map +0 -1
- package/components/ui-table/ui-table-row/index.d.ts +0 -43
- package/components/ui-table/ui-table-row/index.d.ts.map +0 -1
- package/components/ui-table/ui-table-row/index.js +0 -9
- package/components/ui-table/ui-table-row/index.js.map +0 -1
- package/components/ui-table/ui-table-row/ui-table-row.vue.d.ts +0 -32
- package/components/ui-table/ui-table-row/ui-table-row.vue.d.ts.map +0 -1
- package/components/ui-table/ui-table-row/ui-table-row.vue.js +0 -9
- package/components/ui-table/ui-table-row/ui-table-row.vue.js.map +0 -1
- package/components/ui-table/ui-table-row/ui-table-row.vue3.js +0 -19
- package/components/ui-table/ui-table-row/ui-table-row.vue3.js.map +0 -1
- package/components/ui-table/ui-table.vue.d.ts +0 -46
- package/components/ui-table/ui-table.vue.d.ts.map +0 -1
- package/components/ui-table/ui-table.vue.js +0 -9
- package/components/ui-table/ui-table.vue.js.map +0 -1
- package/components/ui-table/ui-table.vue2.js +0 -23
- package/components/ui-table/ui-table.vue2.js.map +0 -1
- package/components/ui-tabs/index.d.ts +0 -41
- package/components/ui-tabs/index.d.ts.map +0 -1
- package/components/ui-tabs/index.js +0 -7
- package/components/ui-tabs/index.js.map +0 -1
- package/components/ui-tabs/ui-tabs.vue.d.ts +0 -39
- package/components/ui-tabs/ui-tabs.vue.d.ts.map +0 -1
- package/components/ui-tabs/ui-tabs.vue.js +0 -9
- package/components/ui-tabs/ui-tabs.vue.js.map +0 -1
- package/components/ui-tabs/ui-tabs.vue2.js +0 -56
- package/components/ui-tabs/ui-tabs.vue2.js.map +0 -1
- package/components/ui-toggle/index.d.ts +0 -130
- package/components/ui-toggle/index.d.ts.map +0 -1
- package/components/ui-toggle/index.js +0 -7
- package/components/ui-toggle/index.js.map +0 -1
- package/components/ui-toggle/ui-toggle.vue.d.ts +0 -48
- package/components/ui-toggle/ui-toggle.vue.d.ts.map +0 -1
- package/components/ui-toggle/ui-toggle.vue.js +0 -9
- package/components/ui-toggle/ui-toggle.vue.js.map +0 -1
- package/components/ui-toggle/ui-toggle.vue2.js +0 -78
- package/components/ui-toggle/ui-toggle.vue2.js.map +0 -1
- package/components/ui-typography/_typings.d.ts.map +0 -1
- package/components/ui-typography/_typings.js +0 -8
- package/components/ui-typography/_typings.js.map +0 -1
- package/components/ui-typography/index.d.ts +0 -129
- package/components/ui-typography/index.d.ts.map +0 -1
- package/components/ui-typography/index.js +0 -14
- package/components/ui-typography/index.js.map +0 -1
- package/components/ui-typography/ui-typography.vue.d.ts +0 -47
- package/components/ui-typography/ui-typography.vue.d.ts.map +0 -1
- package/components/ui-typography/ui-typography.vue.js +0 -105
- package/components/ui-typography/ui-typography.vue.js.map +0 -1
- package/components/ui-typography/ui-typography.vue2.js +0 -5
- package/components/ui-typography/ui-typography.vue2.js.map +0 -1
- package/components/ui-verification-input/index.d.ts +0 -69
- package/components/ui-verification-input/index.d.ts.map +0 -1
- package/components/ui-verification-input/index.js +0 -7
- package/components/ui-verification-input/index.js.map +0 -1
- package/components/ui-verification-input/ui-verification-input.vue.d.ts +0 -37
- package/components/ui-verification-input/ui-verification-input.vue.d.ts.map +0 -1
- package/components/ui-verification-input/ui-verification-input.vue.js +0 -9
- package/components/ui-verification-input/ui-verification-input.vue.js.map +0 -1
- package/components/ui-verification-input/ui-verification-input.vue2.js +0 -53
- package/components/ui-verification-input/ui-verification-input.vue2.js.map +0 -1
- package/index.d.ts.map +0 -1
- package/types.d.ts +0 -21
- package/types.d.ts.map +0 -1
- package/types.js +0 -78
- package/types.js.map +0 -1
- /package/components/{ui-alert → UiAlert}/_types.js +0 -0
- /package/components/{ui-media-card → UiIcon}/index.js.map +0 -0
- /package/components/{ui-product-card → UiInputRange}/index.js.map +0 -0
- /package/src/_styles/{_font-sizes.json → _fontSizes.json} +0 -0
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
import { default as UiRadioCompact } from './ui-radio-compact.vue';
|
|
2
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
|
|
3
|
-
/**
|
|
4
|
-
* @deprecated The default should not be used at all (look at ui-radio-fancy compact)
|
|
5
|
-
*/
|
|
6
|
-
export { UiRadioCompact };
|
|
7
|
-
/**
|
|
8
|
-
* @deprecated The default should not be used at all
|
|
9
|
-
*/
|
|
10
|
-
declare const deprecatedDefault: {
|
|
11
|
-
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
12
|
-
modelValue: {
|
|
13
|
-
type: PropType<string | number | boolean>;
|
|
14
|
-
required: true;
|
|
15
|
-
};
|
|
16
|
-
name: {
|
|
17
|
-
type: PropType<string>;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
value: {
|
|
21
|
-
type: PropType<string | number | boolean>;
|
|
22
|
-
required: true;
|
|
23
|
-
};
|
|
24
|
-
disabled: {
|
|
25
|
-
type: PropType<boolean>;
|
|
26
|
-
};
|
|
27
|
-
}>> & {
|
|
28
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
29
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
30
|
-
"update:modelValue": (...args: any[]) => void;
|
|
31
|
-
}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
32
|
-
modelValue: {
|
|
33
|
-
type: PropType<string | number | boolean>;
|
|
34
|
-
required: true;
|
|
35
|
-
};
|
|
36
|
-
name: {
|
|
37
|
-
type: PropType<string>;
|
|
38
|
-
required: true;
|
|
39
|
-
};
|
|
40
|
-
value: {
|
|
41
|
-
type: PropType<string | number | boolean>;
|
|
42
|
-
required: true;
|
|
43
|
-
};
|
|
44
|
-
disabled: {
|
|
45
|
-
type: PropType<boolean>;
|
|
46
|
-
};
|
|
47
|
-
}>> & {
|
|
48
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
49
|
-
}, {}, true, {}, {}, {
|
|
50
|
-
P: {};
|
|
51
|
-
B: {};
|
|
52
|
-
D: {};
|
|
53
|
-
C: {};
|
|
54
|
-
M: {};
|
|
55
|
-
Defaults: {};
|
|
56
|
-
}, Readonly< ExtractPropTypes<{
|
|
57
|
-
modelValue: {
|
|
58
|
-
type: PropType<string | number | boolean>;
|
|
59
|
-
required: true;
|
|
60
|
-
};
|
|
61
|
-
name: {
|
|
62
|
-
type: PropType<string>;
|
|
63
|
-
required: true;
|
|
64
|
-
};
|
|
65
|
-
value: {
|
|
66
|
-
type: PropType<string | number | boolean>;
|
|
67
|
-
required: true;
|
|
68
|
-
};
|
|
69
|
-
disabled: {
|
|
70
|
-
type: PropType<boolean>;
|
|
71
|
-
};
|
|
72
|
-
}>> & {
|
|
73
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
74
|
-
}, {}, {}, {}, {}, {}>;
|
|
75
|
-
__isFragment?: never;
|
|
76
|
-
__isTeleport?: never;
|
|
77
|
-
__isSuspense?: never;
|
|
78
|
-
} & ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
79
|
-
modelValue: {
|
|
80
|
-
type: PropType<string | number | boolean>;
|
|
81
|
-
required: true;
|
|
82
|
-
};
|
|
83
|
-
name: {
|
|
84
|
-
type: PropType<string>;
|
|
85
|
-
required: true;
|
|
86
|
-
};
|
|
87
|
-
value: {
|
|
88
|
-
type: PropType<string | number | boolean>;
|
|
89
|
-
required: true;
|
|
90
|
-
};
|
|
91
|
-
disabled: {
|
|
92
|
-
type: PropType<boolean>;
|
|
93
|
-
};
|
|
94
|
-
}>> & {
|
|
95
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
96
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
97
|
-
"update:modelValue": (...args: any[]) => void;
|
|
98
|
-
}, string, {}, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
99
|
-
$slots: {
|
|
100
|
-
default?(_: {}): any;
|
|
101
|
-
};
|
|
102
|
-
});
|
|
103
|
-
export default deprecatedDefault;
|
|
104
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ui-radio-compact/index.ts"],"names":[],"mappings":";AAAA,OAAO,cAAc,MAAM,wBAAwB,CAAC;AACpD;;GAEG;AACH,OAAO,EAAE,cAAc,EAAE,CAAC;AAC1B;;GAEG;AACH,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAiB,CAAC;AACzC,eAAe,iBAAiB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../src/components/ui-radio-compact/index.ts"],"sourcesContent":["import UiRadioCompact from \"./ui-radio-compact.vue\";\n/**\n * @deprecated The default should not be used at all (look at ui-radio-fancy compact)\n */\nexport { UiRadioCompact };\n/**\n * @deprecated The default should not be used at all\n */\nconst deprecatedDefault = UiRadioCompact;\nexport default deprecatedDefault;\n"],"names":["deprecatedDefault","UiRadioCompact"],"mappings":";AAQA,MAAMA,IAAoBC;"}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
|
-
declare function __VLS_template(): {
|
|
3
|
-
slots: {
|
|
4
|
-
default?(_: {}): any;
|
|
5
|
-
};
|
|
6
|
-
refs: {};
|
|
7
|
-
attrs: Partial<{}>;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
-
declare const __VLS_component: DefineComponent<__VLS_TypePropsToOption<{
|
|
11
|
-
modelValue: string | number | boolean;
|
|
12
|
-
name: string;
|
|
13
|
-
value: string | number | boolean;
|
|
14
|
-
disabled?: boolean;
|
|
15
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
16
|
-
"update:modelValue": (...args: any[]) => void;
|
|
17
|
-
}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
18
|
-
modelValue: string | number | boolean;
|
|
19
|
-
name: string;
|
|
20
|
-
value: string | number | boolean;
|
|
21
|
-
disabled?: boolean;
|
|
22
|
-
}>>> & {
|
|
23
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
24
|
-
}, {}, {}>;
|
|
25
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
26
|
-
export default _default;
|
|
27
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
28
|
-
type __VLS_TypePropsToOption<T> = {
|
|
29
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
30
|
-
type: PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
31
|
-
} : {
|
|
32
|
-
type: PropType<T[K]>;
|
|
33
|
-
required: true;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
37
|
-
new (): {
|
|
38
|
-
$slots: S;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
41
|
-
//# sourceMappingURL=ui-radio-compact.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-radio-compact.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ui-radio-compact/ui-radio-compact.vue"],"names":[],"mappings":";AAmHA,iBAAS,cAAc;;yBA6EM,GAAG;;;WASlB,OAAO,IAA6B;EAEjD;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;gBA7HP,MAAM,GAAG,MAAM,GAAG,OAAO;UAC/B,MAAM;WACL,MAAM,GAAG,MAAM,GAAG,OAAO;eACrB,OAAO;;;;gBAHN,MAAM,GAAG,MAAM,GAAG,OAAO;UAC/B,MAAM;WACL,MAAM,GAAG,MAAM,GAAG,OAAO;eACrB,OAAO;;;UAiIlB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAKpG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC;AACF,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { defineComponent as p, computed as n, openBlock as b, createElementBlock as u, withDirectives as m, createElementVNode as a, vModelRadio as f, createVNode as x, unref as o, withCtx as h, renderSlot as v } from "vue";
|
|
2
|
-
import g from "../ui-typography/index.js";
|
|
3
|
-
import { ETypographySizes as y, ETextAlign as k } from "../ui-typography/_typings.js";
|
|
4
|
-
const _ = { class: "ui-radio-compact relative" }, w = ["name", "value", "disabled"], V = { class: "ui-radio-compact_content box-border grid cursor-pointer items-center justify-items-center rounded-lg border border-secondary-alt-500 bg-white before:absolute before:-z-10 before:box-border before:rounded-2xl before:bg-primary-300 hover:border-secondary-alt-700 peer-checked:border-transparent peer-checked:shadow-selected-shadow peer-checked:hover:shadow-border-selected peer-checked:active:shadow-border-primary peer-checked:active:before:-bottom-xxs peer-checked:active:before:-left-xxs peer-checked:active:before:-right-xxs peer-checked:active:before:-top-xxs peer-focus:before:-bottom-xxs peer-focus:before:-left-xxs peer-focus:before:-right-xxs peer-focus:before:-top-xxs peer-active:before:-bottom-xxxs peer-active:before:-left-xxxs peer-active:before:-right-xxxs peer-active:before:-top-xxxs" }, z = /* @__PURE__ */ p({
|
|
5
|
-
__name: "ui-radio-compact",
|
|
6
|
-
props: {
|
|
7
|
-
modelValue: { type: [String, Number, Boolean] },
|
|
8
|
-
name: {},
|
|
9
|
-
value: { type: [String, Number, Boolean] },
|
|
10
|
-
disabled: { type: Boolean }
|
|
11
|
-
},
|
|
12
|
-
emits: ["update:modelValue"],
|
|
13
|
-
setup(d, { emit: s }) {
|
|
14
|
-
const i = d, c = s, r = n({
|
|
15
|
-
get() {
|
|
16
|
-
return i.modelValue;
|
|
17
|
-
},
|
|
18
|
-
set(e) {
|
|
19
|
-
c("update:modelValue", e);
|
|
20
|
-
}
|
|
21
|
-
});
|
|
22
|
-
return (e, t) => (b(), u("label", _, [
|
|
23
|
-
m(a("input", {
|
|
24
|
-
"onUpdate:modelValue": t[0] || (t[0] = (l) => r.value = l),
|
|
25
|
-
type: "radio",
|
|
26
|
-
name: e.name,
|
|
27
|
-
value: e.value,
|
|
28
|
-
class: "group peer absolute appearance-none",
|
|
29
|
-
disabled: e.disabled
|
|
30
|
-
}, null, 8, w), [
|
|
31
|
-
[f, r.value]
|
|
32
|
-
]),
|
|
33
|
-
a("div", V, [
|
|
34
|
-
x(o(g), {
|
|
35
|
-
class: "px-md py-sm",
|
|
36
|
-
size: o(y).MD,
|
|
37
|
-
"line-height": "",
|
|
38
|
-
align: o(k).CENTER
|
|
39
|
-
}, {
|
|
40
|
-
default: h(() => [
|
|
41
|
-
v(e.$slots, "default")
|
|
42
|
-
]),
|
|
43
|
-
_: 3
|
|
44
|
-
}, 8, ["size", "align"])
|
|
45
|
-
])
|
|
46
|
-
]));
|
|
47
|
-
}
|
|
48
|
-
});
|
|
49
|
-
export {
|
|
50
|
-
z as default
|
|
51
|
-
};
|
|
52
|
-
//# sourceMappingURL=ui-radio-compact.vue.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-radio-compact.vue.js","sources":["../../../src/components/ui-radio-compact/ui-radio-compact.vue"],"sourcesContent":["<template>\n\t<label\n\t\tclass=\"ui-radio-compact relative\"\n\t>\n\t\t<input\n\t\t\tv-model=\"radioModel\"\n\t\t\ttype=\"radio\"\n\t\t\t:name=\"name\"\n\t\t\t:value=\"value\"\n\t\t\tclass=\"group peer absolute appearance-none\"\n\t\t\t:disabled=\"disabled\"\n\t\t>\n\t\t<div\n\t\t\tclass=\"\n\t\t\t\tui-radio-compact_content\n\t\t\t\tbox-border\n\t\t\t\tgrid\n\t\t\t\tcursor-pointer\n\t\t\t\titems-center\n\t\t\t\tjustify-items-center\n\t\t\t\trounded-lg\n\t\t\t\tborder\n\t\t\t\tborder-secondary-alt-500\n\t\t\t\tbg-white\n\t\t\t\tbefore:absolute\n\t\t\t\tbefore:-z-10\n\t\t\t\tbefore:box-border\n\t\t\t\tbefore:rounded-2xl\n\t\t\t\tbefore:bg-primary-300\n\t\t\t\thover:border-secondary-alt-700\n\t\t\t\tpeer-checked:border-transparent\n\t\t\t\tpeer-checked:shadow-selected-shadow\n\t\t\t\tpeer-checked:hover:shadow-border-selected\n\t\t\t\tpeer-checked:active:shadow-border-primary\n\t\t\t\tpeer-checked:active:before:-bottom-xxs\n\t\t\t\tpeer-checked:active:before:-left-xxs\n\t\t\t\tpeer-checked:active:before:-right-xxs\n\t\t\t\tpeer-checked:active:before:-top-xxs\n\t\t\t\tpeer-focus:before:-bottom-xxs\n\t\t\t\tpeer-focus:before:-left-xxs\n\t\t\t\tpeer-focus:before:-right-xxs\n\t\t\t\tpeer-focus:before:-top-xxs\n\t\t\t\tpeer-active:before:-bottom-xxxs\n\t\t\t\tpeer-active:before:-left-xxxs\n\t\t\t\tpeer-active:before:-right-xxxs\n\t\t\t\tpeer-active:before:-top-xxxs\n\t\t\t\t\"\n\t\t>\n\n\t\t\t<ui-typography\n\t\t\t\tclass=\"px-md py-sm\"\n\t\t\t\t:size=\"ETypographySizes.MD\"\n\t\t\t\tline-height\n\t\t\t\t:align=\"ETextAlign.CENTER\"\n\t\t\t>\n\t\t\t\t<slot />\n\t\t\t</ui-typography>\n\n\t\t</div>\n\t</label>\n</template>\n\n<script lang=\"ts\" setup>\n\timport { computed } from \"vue\";\n\timport UiTypography, { ETypographySizes, ETextAlign } from \"../ui-typography\";\n\n\tconst props = defineProps<{\n\t\tmodelValue: string | number | boolean;\n\t\tname: string;\n\t\tvalue: string | number | boolean;\n\t\tdisabled?: boolean;\n\t}>();\n\n\tconst emit = defineEmits([\"update:modelValue\"]);\n\n\tconst radioModel = computed({\n\t\tget() {\n\t\t\treturn props.modelValue;\n\t\t},\n\t\tset(value) {\n\t\t\temit(\"update:modelValue\", value);\n\t\t}\n\t});\n</script>\n"],"names":["props","__props","emit","__emit","radioModel","computed","value"],"mappings":";;;;;;;;;;;;;AAkEC,UAAMA,IAAQC,GAORC,IAAOC,GAEPC,IAAaC,EAAS;AAAA,MAC3B,MAAM;AACL,eAAOL,EAAM;AAAA,MACd;AAAA,MACA,IAAIM,GAAO;AACV,QAAAJ,EAAK,qBAAqBI,CAAK;AAAA,MAChC;AAAA,IAAA,CACA;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-radio-compact.vue2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_typings.d.ts","sourceRoot":"","sources":["../../../src/components/ui-radio-fancy/_typings.ts"],"names":[],"mappings":"AAAA,oBAAY,WAAW;IACtB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,OAAO,YAAY;CACnB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_typings.js","sources":["../../../src/components/ui-radio-fancy/_typings.ts"],"sourcesContent":["export enum ERadioSizes {\n\tDEFAULT = \"default\",\n\tMINIMAL = \"minimal\",\n\tCOMPACT = \"compact\"\n}\n"],"names":["ERadioSizes"],"mappings":"AAAY,IAAAA,sBAAAA,OACXA,EAAA,UAAU,WACVA,EAAA,UAAU,WACVA,EAAA,UAAU,WAHCA,IAAAA,KAAA,CAAA,CAAA;"}
|
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
import { default as UiRadioFancy } from './ui-radio-fancy.vue';
|
|
2
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
|
|
3
|
-
import { TIconName } from '../ui-icon';
|
|
4
|
-
import { ERadioSizes } from './_typings';
|
|
5
|
-
export { UiRadioFancy };
|
|
6
|
-
/**
|
|
7
|
-
* @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
|
|
8
|
-
*/
|
|
9
|
-
declare const deprecatedDefault: {
|
|
10
|
-
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
11
|
-
iconName: {
|
|
12
|
-
type: PropType<TIconName>;
|
|
13
|
-
default: undefined;
|
|
14
|
-
};
|
|
15
|
-
disabled: {
|
|
16
|
-
type: PropType<boolean>;
|
|
17
|
-
};
|
|
18
|
-
name: {
|
|
19
|
-
type: PropType<string>;
|
|
20
|
-
required: true;
|
|
21
|
-
};
|
|
22
|
-
modelValue: {
|
|
23
|
-
type: PropType<string | number | boolean>;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
value: {
|
|
27
|
-
type: PropType<string | number | boolean>;
|
|
28
|
-
required: true;
|
|
29
|
-
};
|
|
30
|
-
radioSize: {
|
|
31
|
-
type: PropType<ERadioSizes>;
|
|
32
|
-
default: ERadioSizes;
|
|
33
|
-
};
|
|
34
|
-
}>> & {
|
|
35
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
36
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
37
|
-
"update:modelValue": (...args: any[]) => void;
|
|
38
|
-
}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
39
|
-
iconName: {
|
|
40
|
-
type: PropType<TIconName>;
|
|
41
|
-
default: undefined;
|
|
42
|
-
};
|
|
43
|
-
disabled: {
|
|
44
|
-
type: PropType<boolean>;
|
|
45
|
-
};
|
|
46
|
-
name: {
|
|
47
|
-
type: PropType<string>;
|
|
48
|
-
required: true;
|
|
49
|
-
};
|
|
50
|
-
modelValue: {
|
|
51
|
-
type: PropType<string | number | boolean>;
|
|
52
|
-
required: true;
|
|
53
|
-
};
|
|
54
|
-
value: {
|
|
55
|
-
type: PropType<string | number | boolean>;
|
|
56
|
-
required: true;
|
|
57
|
-
};
|
|
58
|
-
radioSize: {
|
|
59
|
-
type: PropType<ERadioSizes>;
|
|
60
|
-
default: ERadioSizes;
|
|
61
|
-
};
|
|
62
|
-
}>> & {
|
|
63
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
64
|
-
}, {
|
|
65
|
-
iconName: TIconName;
|
|
66
|
-
radioSize: ERadioSizes;
|
|
67
|
-
}, true, {}, {}, {
|
|
68
|
-
P: {};
|
|
69
|
-
B: {};
|
|
70
|
-
D: {};
|
|
71
|
-
C: {};
|
|
72
|
-
M: {};
|
|
73
|
-
Defaults: {};
|
|
74
|
-
}, Readonly< ExtractPropTypes<{
|
|
75
|
-
iconName: {
|
|
76
|
-
type: PropType<TIconName>;
|
|
77
|
-
default: undefined;
|
|
78
|
-
};
|
|
79
|
-
disabled: {
|
|
80
|
-
type: PropType<boolean>;
|
|
81
|
-
};
|
|
82
|
-
name: {
|
|
83
|
-
type: PropType<string>;
|
|
84
|
-
required: true;
|
|
85
|
-
};
|
|
86
|
-
modelValue: {
|
|
87
|
-
type: PropType<string | number | boolean>;
|
|
88
|
-
required: true;
|
|
89
|
-
};
|
|
90
|
-
value: {
|
|
91
|
-
type: PropType<string | number | boolean>;
|
|
92
|
-
required: true;
|
|
93
|
-
};
|
|
94
|
-
radioSize: {
|
|
95
|
-
type: PropType<ERadioSizes>;
|
|
96
|
-
default: ERadioSizes;
|
|
97
|
-
};
|
|
98
|
-
}>> & {
|
|
99
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
100
|
-
}, {}, {}, {}, {}, {
|
|
101
|
-
iconName: TIconName;
|
|
102
|
-
radioSize: ERadioSizes;
|
|
103
|
-
}>;
|
|
104
|
-
__isFragment?: never;
|
|
105
|
-
__isTeleport?: never;
|
|
106
|
-
__isSuspense?: never;
|
|
107
|
-
} & ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
108
|
-
iconName: {
|
|
109
|
-
type: PropType<TIconName>;
|
|
110
|
-
default: undefined;
|
|
111
|
-
};
|
|
112
|
-
disabled: {
|
|
113
|
-
type: PropType<boolean>;
|
|
114
|
-
};
|
|
115
|
-
name: {
|
|
116
|
-
type: PropType<string>;
|
|
117
|
-
required: true;
|
|
118
|
-
};
|
|
119
|
-
modelValue: {
|
|
120
|
-
type: PropType<string | number | boolean>;
|
|
121
|
-
required: true;
|
|
122
|
-
};
|
|
123
|
-
value: {
|
|
124
|
-
type: PropType<string | number | boolean>;
|
|
125
|
-
required: true;
|
|
126
|
-
};
|
|
127
|
-
radioSize: {
|
|
128
|
-
type: PropType<ERadioSizes>;
|
|
129
|
-
default: ERadioSizes;
|
|
130
|
-
};
|
|
131
|
-
}>> & {
|
|
132
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
133
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
134
|
-
"update:modelValue": (...args: any[]) => void;
|
|
135
|
-
}, string, {
|
|
136
|
-
iconName: TIconName;
|
|
137
|
-
radioSize: ERadioSizes;
|
|
138
|
-
}, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
139
|
-
$slots: {
|
|
140
|
-
default?(_: {}): any;
|
|
141
|
-
};
|
|
142
|
-
});
|
|
143
|
-
export default deprecatedDefault;
|
|
144
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ui-radio-fancy/index.ts"],"names":[],"mappings":";;;AAAA,OAAO,YAAY,MAAM,sBAAsB,CAAC;AAEhD,OAAO,EAAE,YAAY,EAAE,CAAC;AAExB;;GAEG;AACH,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAe,CAAC;AACvC,eAAe,iBAAiB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../src/components/ui-radio-fancy/index.ts"],"sourcesContent":["import UiRadioFancy from \"./ui-radio-fancy.vue\";\n\nexport { UiRadioFancy };\n\n/**\n * @deprecated The default should not be used - use named import as - import {[name]} from \"ui/[name]\"\n */\nconst deprecatedDefault = UiRadioFancy;\nexport default deprecatedDefault;\n"],"names":["deprecatedDefault","UiRadioFancy"],"mappings":";AAOA,MAAMA,IAAoBC;"}
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import { TIconName } from '../ui-icon';
|
|
2
|
-
import { ERadioSizes } from './_typings';
|
|
3
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
4
|
-
declare function __VLS_template(): {
|
|
5
|
-
slots: {
|
|
6
|
-
default?(_: {}): any;
|
|
7
|
-
};
|
|
8
|
-
refs: {};
|
|
9
|
-
attrs: Partial<{}>;
|
|
10
|
-
};
|
|
11
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
-
declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
13
|
-
modelValue: string | number | boolean;
|
|
14
|
-
name: string;
|
|
15
|
-
value: string | number | boolean;
|
|
16
|
-
iconName?: TIconName;
|
|
17
|
-
disabled?: boolean;
|
|
18
|
-
radioSize?: ERadioSizes;
|
|
19
|
-
}>, {
|
|
20
|
-
radioSize: ERadioSizes;
|
|
21
|
-
iconName: undefined;
|
|
22
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
23
|
-
"update:modelValue": (...args: any[]) => void;
|
|
24
|
-
}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
25
|
-
modelValue: string | number | boolean;
|
|
26
|
-
name: string;
|
|
27
|
-
value: string | number | boolean;
|
|
28
|
-
iconName?: TIconName;
|
|
29
|
-
disabled?: boolean;
|
|
30
|
-
radioSize?: ERadioSizes;
|
|
31
|
-
}>, {
|
|
32
|
-
radioSize: ERadioSizes;
|
|
33
|
-
iconName: undefined;
|
|
34
|
-
}>>> & {
|
|
35
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
36
|
-
}, {
|
|
37
|
-
iconName: TIconName;
|
|
38
|
-
radioSize: ERadioSizes;
|
|
39
|
-
}, {}>;
|
|
40
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
41
|
-
export default _default;
|
|
42
|
-
type __VLS_WithDefaults<P, D> = {
|
|
43
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
44
|
-
default: D[K];
|
|
45
|
-
}> : P[K];
|
|
46
|
-
};
|
|
47
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
48
|
-
type __VLS_TypePropsToOption<T> = {
|
|
49
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
50
|
-
type: PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
51
|
-
} : {
|
|
52
|
-
type: PropType<T[K]>;
|
|
53
|
-
required: true;
|
|
54
|
-
};
|
|
55
|
-
};
|
|
56
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
57
|
-
new (): {
|
|
58
|
-
$slots: S;
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
type __VLS_PrettifyLocal<T> = {
|
|
62
|
-
[K in keyof T]: T[K];
|
|
63
|
-
} & {};
|
|
64
|
-
//# sourceMappingURL=ui-radio-fancy.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-radio-fancy.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ui-radio-fancy/ui-radio-fancy.vue"],"names":[],"mappings":";AA+HC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAG5C,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAoC1C,iBAAS,cAAc;;yBAmHO,GAAG;;;WASnB,OAAO,IAA6B;EAEjD;AAgBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;gBA7KP,MAAM,GAAG,MAAM,GAAG,OAAO;UAC/B,MAAM;WACL,MAAM,GAAG,MAAM,GAAG,OAAO;eACrB,SAAS;eACT,OAAO;gBACN,WAAW;;;;;;;gBALX,MAAM,GAAG,MAAM,GAAG,OAAO;UAC/B,MAAM;WACL,MAAM,GAAG,MAAM,GAAG,OAAO;eACrB,SAAS;eACT,OAAO;gBACN,WAAW;;;;;;;cAFZ,SAAS;eAER,WAAW;MA+KvB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAKpG,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAC9B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAC7C,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QAAE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KAAC,CAAC,GAC5C,CAAC,CAAC,CAAC,CAAC;CACP,CAAC;AACF,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC;AACF,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC;AACF,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
import { defineComponent as h, computed as y, openBlock as a, createElementBlock as d, normalizeClass as i, withDirectives as z, createElementVNode as n, vModelRadio as k, unref as o, createVNode as s, createCommentVNode as g, withCtx as x, renderSlot as S } from "vue";
|
|
2
|
-
import N from "../ui-typography/index.js";
|
|
3
|
-
import { ESize as p } from "../../_types/sizing.js";
|
|
4
|
-
import { EColors as V } from "../../_types/colors.js";
|
|
5
|
-
import { ERadioSizes as r } from "./_typings.js";
|
|
6
|
-
import m from "../ui-icon/index.js";
|
|
7
|
-
import { ETypographySizes as M } from "../ui-typography/_typings.js";
|
|
8
|
-
const C = ["name", "value", "disabled"], w = { key: 0 }, E = { key: 1 }, D = { key: 2 }, U = /* @__PURE__ */ h({
|
|
9
|
-
__name: "ui-radio-fancy",
|
|
10
|
-
props: {
|
|
11
|
-
modelValue: { type: [String, Number, Boolean] },
|
|
12
|
-
name: {},
|
|
13
|
-
value: { type: [String, Number, Boolean] },
|
|
14
|
-
iconName: { default: void 0 },
|
|
15
|
-
disabled: { type: Boolean },
|
|
16
|
-
radioSize: { default: r.DEFAULT }
|
|
17
|
-
},
|
|
18
|
-
emits: ["update:modelValue"],
|
|
19
|
-
setup(c, { emit: u }) {
|
|
20
|
-
const b = c, f = u, l = y({
|
|
21
|
-
get() {
|
|
22
|
-
return b.modelValue;
|
|
23
|
-
},
|
|
24
|
-
set(e) {
|
|
25
|
-
f("update:modelValue", e);
|
|
26
|
-
}
|
|
27
|
-
});
|
|
28
|
-
return (e, t) => (a(), d("label", {
|
|
29
|
-
class: i(["ui-radio-fancy relative", e.disabled && "pointer-events-none"])
|
|
30
|
-
}, [
|
|
31
|
-
z(n("input", {
|
|
32
|
-
"onUpdate:modelValue": t[0] || (t[0] = (v) => l.value = v),
|
|
33
|
-
type: "radio",
|
|
34
|
-
name: e.name,
|
|
35
|
-
value: e.value,
|
|
36
|
-
class: "group peer absolute appearance-none",
|
|
37
|
-
disabled: e.disabled
|
|
38
|
-
}, null, 8, C), [
|
|
39
|
-
[k, l.value]
|
|
40
|
-
]),
|
|
41
|
-
n("div", {
|
|
42
|
-
class: i(["ui-radio-fancy__content box-border size-full cursor-pointer rounded-lg border border-secondary-alt-500 bg-white p-sm before:absolute before:-z-10 before:box-border before:rounded-2xl before:bg-primary-300 hover:border-secondary-alt-700 peer-checked:border-transparent peer-checked:shadow-selected-shadow peer-checked:hover:shadow-border-selected peer-checked:active:shadow-border-primary peer-checked:active:before:-bottom-xxs peer-checked:active:before:-left-xxs peer-checked:active:before:-right-xxs peer-checked:active:before:-top-xxs peer-focus:before:-bottom-xxs peer-focus:before:-left-xxs peer-focus:before:-right-xxs peer-focus:before:-top-xxs peer-active:before:-bottom-xxs peer-active:before:-left-xxs peer-active:before:-right-xxs peer-active:before:-top-xxs", [
|
|
43
|
-
e.disabled && "pointer-events-none border-secondary-alt-400 peer-checked:shadow-border-primary-disabled",
|
|
44
|
-
e.radioSize === o(r).MINIMAL && "flex gap-sm align-middle",
|
|
45
|
-
e.radioSize === o(r).COMPACT && "grid cursor-pointer grid-flow-col px-md"
|
|
46
|
-
]])
|
|
47
|
-
}, [
|
|
48
|
-
e.radioSize === o(r).DEFAULT && e.iconName ? (a(), d("div", w, [
|
|
49
|
-
s(o(m), {
|
|
50
|
-
"icon-name": e.iconName,
|
|
51
|
-
size: o(p).MD,
|
|
52
|
-
class: i(["mb-md peer-checked:text-primary-500", [
|
|
53
|
-
e.value === e.modelValue && "text-primary",
|
|
54
|
-
e.disabled && "text-secondary-alt-400",
|
|
55
|
-
e.disabled && e.value === e.modelValue && "text-primary-300"
|
|
56
|
-
]])
|
|
57
|
-
}, null, 8, ["icon-name", "size", "class"])
|
|
58
|
-
])) : e.radioSize === o(r).MINIMAL && e.iconName ? (a(), d("div", E, [
|
|
59
|
-
s(o(m), {
|
|
60
|
-
"icon-name": e.iconName,
|
|
61
|
-
size: o(p).MD,
|
|
62
|
-
class: i([
|
|
63
|
-
e.value === e.modelValue && "text-primary",
|
|
64
|
-
e.disabled && "text-secondary-alt-400",
|
|
65
|
-
e.disabled && e.value === e.modelValue && "text-primary-300"
|
|
66
|
-
])
|
|
67
|
-
}, null, 8, ["icon-name", "size", "class"])
|
|
68
|
-
])) : e.radioSize === o(r).COMPACT ? (a(), d("div", D)) : g("", !0),
|
|
69
|
-
s(o(N), {
|
|
70
|
-
size: o(M).SM,
|
|
71
|
-
kind: o(V).SECONDARY,
|
|
72
|
-
class: "pt-xxxs"
|
|
73
|
-
}, {
|
|
74
|
-
default: x(() => [
|
|
75
|
-
S(e.$slots, "default")
|
|
76
|
-
]),
|
|
77
|
-
_: 3
|
|
78
|
-
}, 8, ["size", "kind"])
|
|
79
|
-
], 2)
|
|
80
|
-
], 2));
|
|
81
|
-
}
|
|
82
|
-
});
|
|
83
|
-
export {
|
|
84
|
-
U as default
|
|
85
|
-
};
|
|
86
|
-
//# sourceMappingURL=ui-radio-fancy.vue.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-radio-fancy.vue.js","sources":["../../../src/components/ui-radio-fancy/ui-radio-fancy.vue"],"sourcesContent":["<template>\n\t<label\n\t\tclass=\"ui-radio-fancy relative\"\n\t\t:class=\"disabled && 'pointer-events-none'\"\n\t>\n\t\t<input\n\t\t\tv-model=\"radioModel\"\n\t\t\ttype=\"radio\"\n\t\t\t:name=\"name\"\n\t\t\t:value=\"value\"\n\t\t\tclass=\"group peer absolute appearance-none\"\n\t\t\t:disabled=\"disabled\"\n\t\t>\n\t\t<div\n\t\t\tclass=\"\n\t\t\t\tui-radio-fancy__content\n\t\t\t\tbox-border\n\t\t\t\tsize-full\n\t\t\t\tcursor-pointer\n\t\t\t\trounded-lg\n\t\t\t\tborder\n\t\t\t\tborder-secondary-alt-500\n\t\t\t\tbg-white\n\t\t\t\tp-sm\n\t\t\t\tbefore:absolute\n\t\t\t\tbefore:-z-10\n\t\t\t\tbefore:box-border\n\t\t\t\tbefore:rounded-2xl\n\t\t\t\tbefore:bg-primary-300\n\t\t\t\thover:border-secondary-alt-700\n\t\t\t\tpeer-checked:border-transparent\n\t\t\t\tpeer-checked:shadow-selected-shadow\n\t\t\t\tpeer-checked:hover:shadow-border-selected\n\t\t\t\tpeer-checked:active:shadow-border-primary\n\t\t\t\tpeer-checked:active:before:-bottom-xxs\n\t\t\t\tpeer-checked:active:before:-left-xxs\n\t\t\t\tpeer-checked:active:before:-right-xxs\n\t\t\t\tpeer-checked:active:before:-top-xxs\n\t\t\t\tpeer-focus:before:-bottom-xxs\n\t\t\t\tpeer-focus:before:-left-xxs\n\t\t\t\tpeer-focus:before:-right-xxs\n\t\t\t\tpeer-focus:before:-top-xxs\n\t\t\t\tpeer-active:before:-bottom-xxs\n\t\t\t\tpeer-active:before:-left-xxs\n\t\t\t\tpeer-active:before:-right-xxs\n\t\t\t\tpeer-active:before:-top-xxs\n\t\t\t\t\"\n\t\t\t:class=\"[\n\t\t\t\tdisabled\n\t\t\t\t\t&& 'pointer-events-none border-secondary-alt-400 peer-checked:shadow-border-primary-disabled',\n\t\t\t\tradioSize === ERadioSizes.MINIMAL && 'flex gap-sm align-middle',\n\t\t\t\tradioSize === ERadioSizes.COMPACT && 'grid cursor-pointer grid-flow-col px-md'\n\n\t\t\t]\"\n\t\t>\n\t\t\t<div\n\t\t\t\tv-if=\"radioSize === ERadioSizes.DEFAULT && iconName\"\n\t\t\t>\n\t\t\t\t<ui-icon\n\t\t\t\t\t:icon-name=\"iconName\"\n\t\t\t\t\t:size=\"ESize.MD\"\n\t\t\t\t\tclass=\"mb-md peer-checked:text-primary-500\"\n\t\t\t\t\t:class=\"[value === modelValue && 'text-primary',\n\t\t\t\t\t\tdisabled && 'text-secondary-alt-400',\n\t\t\t\t\t\tdisabled && value === modelValue && 'text-primary-300'\n\t\t\t\t\t]\"\n\t\t\t\t/>\n\t\t\t</div>\n\t\t\t<div v-else-if=\"radioSize === ERadioSizes.MINIMAL && iconName\">\n\t\t\t\t<ui-icon\n\t\t\t\t\t:icon-name=\"iconName\"\n\t\t\t\t\t:size=\"ESize.MD\"\n\t\t\t\t\t:class=\"[value === modelValue && 'text-primary',\n\t\t\t\t\t\tdisabled && 'text-secondary-alt-400',\n\t\t\t\t\t\tdisabled && value === modelValue && 'text-primary-300'\n\t\t\t\t\t]\"\n\t\t\t\t/>\n\n\t\t\t</div>\n\t\t\t<div\n\t\t\t\tv-else-if=\"radioSize === ERadioSizes.COMPACT\"\n\t\t\t/>\n\t\t\t<ui-typography\n\t\t\t\t:size=\"ETypographySizes.SM\"\n\t\t\t\t:kind=\"EColors.SECONDARY\"\n\t\t\t\tclass=\"pt-xxxs\"\n\t\t\t>\n\t\t\t\t<slot />\n\t\t\t</ui-typography>\n\t\t</div>\n\t</label>\n</template>\n\n<script lang=\"ts\" setup>\n\timport { computed } from \"vue\";\n\timport UiTypography, { ETypographySizes } from \"../ui-typography\";\n\timport type { TIconName } from \"../ui-icon\";\n\timport { ESize } from \"../../_types/sizing\";\n\timport { EColors } from \"../../_types/colors\";\n\timport { ERadioSizes } from \"./_typings\";\n\timport uiIcon from \"../ui-icon\";\n\n\tconst props = withDefaults(defineProps<{\n\t\tmodelValue: string | number | boolean;\n\t\tname: string;\n\t\tvalue: string | number | boolean;\n\t\ticonName?: TIconName;\n\t\tdisabled?: boolean;\n\t\tradioSize?: ERadioSizes;\n\t}>(), {\n\t\tradioSize: ERadioSizes.DEFAULT,\n\t\ticonName: undefined\n\t});\n\tconst emit = defineEmits([\"update:modelValue\"]);\n\tconst radioModel = computed({\n\t\tget() {\n\t\t\treturn props.modelValue;\n\t\t},\n\t\tset(value) {\n\t\t\temit(\"update:modelValue\", value);\n\t\t}\n\t});\n</script>\n"],"names":["props","__props","emit","__emit","radioModel","computed","value"],"mappings":";;;;;;;;;;;;;;;;;;;AAsGC,UAAMA,IAAQC,GAWRC,IAAOC,GACPC,IAAaC,EAAS;AAAA,MAC3B,MAAM;AACL,eAAOL,EAAM;AAAA,MACd;AAAA,MACA,IAAIM,GAAO;AACV,QAAAJ,EAAK,qBAAqBI,CAAK;AAAA,MAChC;AAAA,IAAA,CACA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-radio-fancy.vue2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_types.d.ts","sourceRoot":"","sources":["../../../src/components/ui-result-card-range/_types.ts"],"names":[],"mappings":"AAAA,oBAAY,qBAAqB;IAChC,OAAO,YAAY;CACnB;AAED,oBAAY,qBAAqB;IAChC,OAAO,YAAY;IACnB,IAAI,SAAS;CACb"}
|