bonkers-ui 1.0.73 → 1.0.74
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 +84 -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 +68 -72
- package/plugin.ts +5 -2
- 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/postcss.config.js +0 -8
- 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,49 +0,0 @@
|
|
|
1
|
-
import { defineComponent as s, openBlock as d, createElementBlock as p, normalizeClass as f, unref as t, renderSlot as r, createVNode as o, withCtx as a, createTextVNode as m, toDisplayString as u } from "vue";
|
|
2
|
-
import n from "../ui-typography/index.js";
|
|
3
|
-
import { ESnackbarTypes as i } from "./_types.js";
|
|
4
|
-
import { ETypographySizes as l } from "../ui-typography/_typings.js";
|
|
5
|
-
const c = /* @__PURE__ */ s({
|
|
6
|
-
__name: "ui-snackbar",
|
|
7
|
-
props: {
|
|
8
|
-
title: {},
|
|
9
|
-
kind: { default: i.DEFAULT }
|
|
10
|
-
},
|
|
11
|
-
setup(h) {
|
|
12
|
-
return (e, k) => (d(), p("div", {
|
|
13
|
-
class: f(["ui-snackbar flex w-full justify-between rounded-xl p-sm shadow-md", [
|
|
14
|
-
e.kind === t(i).DEFAULT && "bg-white",
|
|
15
|
-
e.kind === t(i).PRIMARY && "bg-primary text-white",
|
|
16
|
-
e.kind === t(i).WARNING && "bg-warning text-white",
|
|
17
|
-
e.kind === t(i).ERROR && "bg-error text-white",
|
|
18
|
-
e.kind === t(i).SECONDARY && "bg-secondary text-white"
|
|
19
|
-
]])
|
|
20
|
-
}, [
|
|
21
|
-
r(e.$slots, "default", {}, () => [
|
|
22
|
-
o(t(n), {
|
|
23
|
-
size: t(l).SM,
|
|
24
|
-
"line-height": ""
|
|
25
|
-
}, {
|
|
26
|
-
default: a(() => [
|
|
27
|
-
r(e.$slots, "titleSlot", {}, () => [
|
|
28
|
-
m(u(e.title), 1)
|
|
29
|
-
])
|
|
30
|
-
]),
|
|
31
|
-
_: 3
|
|
32
|
-
}, 8, ["size"]),
|
|
33
|
-
o(t(n), {
|
|
34
|
-
size: t(l).XS,
|
|
35
|
-
"line-height": ""
|
|
36
|
-
}, {
|
|
37
|
-
default: a(() => [
|
|
38
|
-
r(e.$slots, "articleSlot")
|
|
39
|
-
]),
|
|
40
|
-
_: 3
|
|
41
|
-
}, 8, ["size"])
|
|
42
|
-
])
|
|
43
|
-
], 2));
|
|
44
|
-
}
|
|
45
|
-
});
|
|
46
|
-
export {
|
|
47
|
-
c as default
|
|
48
|
-
};
|
|
49
|
-
//# sourceMappingURL=ui-snackbar.vue.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-snackbar.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-snackbar.vue2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_types.d.ts","sourceRoot":"","sources":["../../../src/components/ui-table/_types.ts"],"names":[],"mappings":"AAAA,oBAAY,UAAU;IACrB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,kBAAkB,uBAAuB;CACzC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_types.js","sources":["../../../src/components/ui-table/_types.ts"],"sourcesContent":["export enum ETableKind {\n\tDEFAULT = \"default\",\n\tSECONDARY = \"secondary\",\n\tSECONDARY_INVERTED = \"secondary-inverted\",\n}\n"],"names":["ETableKind"],"mappings":"AAAY,IAAAA,sBAAAA,OACXA,EAAA,UAAU,WACVA,EAAA,YAAY,aACZA,EAAA,qBAAqB,sBAHVA,IAAAA,KAAA,CAAA,CAAA;"}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import { default as UiTable } from './ui-table.vue';
|
|
2
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
|
|
3
|
-
import { ETableKind } from './_types';
|
|
4
|
-
export { UiTable };
|
|
5
|
-
export { ETextAlign, ETextWeight } from '../ui-typography';
|
|
6
|
-
export { UiTableCell } from './ui-table-cell';
|
|
7
|
-
export { UiTableRow, ERowKind } from './ui-table-row';
|
|
8
|
-
export { ETableKind } from './_types';
|
|
9
|
-
/**
|
|
10
|
-
* @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
|
|
11
|
-
*/
|
|
12
|
-
declare const deprecatedDefault: {
|
|
13
|
-
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
14
|
-
kind: {
|
|
15
|
-
type: PropType<ETableKind>;
|
|
16
|
-
default: ETableKind;
|
|
17
|
-
};
|
|
18
|
-
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
19
|
-
kind: {
|
|
20
|
-
type: PropType<ETableKind>;
|
|
21
|
-
default: ETableKind;
|
|
22
|
-
};
|
|
23
|
-
}>>, {
|
|
24
|
-
kind: ETableKind;
|
|
25
|
-
}, true, {}, {}, {
|
|
26
|
-
P: {};
|
|
27
|
-
B: {};
|
|
28
|
-
D: {};
|
|
29
|
-
C: {};
|
|
30
|
-
M: {};
|
|
31
|
-
Defaults: {};
|
|
32
|
-
}, Readonly< ExtractPropTypes<{
|
|
33
|
-
kind: {
|
|
34
|
-
type: PropType<ETableKind>;
|
|
35
|
-
default: ETableKind;
|
|
36
|
-
};
|
|
37
|
-
}>>, {}, {}, {}, {}, {
|
|
38
|
-
kind: ETableKind;
|
|
39
|
-
}>;
|
|
40
|
-
__isFragment?: never;
|
|
41
|
-
__isTeleport?: never;
|
|
42
|
-
__isSuspense?: never;
|
|
43
|
-
} & ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
44
|
-
kind: {
|
|
45
|
-
type: PropType<ETableKind>;
|
|
46
|
-
default: ETableKind;
|
|
47
|
-
};
|
|
48
|
-
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
49
|
-
kind: ETableKind;
|
|
50
|
-
}, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
51
|
-
$slots: {
|
|
52
|
-
default?(_: {}): any;
|
|
53
|
-
};
|
|
54
|
-
});
|
|
55
|
-
export default deprecatedDefault;
|
|
56
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ui-table/index.ts"],"names":[],"mappings":";;AAAA,OAAO,OAAO,MAAM,gBAAgB,CAAC;AAErC,OAAO,EAAE,OAAO,EAAE,CAAC;AAEnB,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE9C,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAEtC;;GAEG;AACH,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAU,CAAC;AAClC,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import e from "./ui-table.vue.js";
|
|
2
|
-
import "vue";
|
|
3
|
-
import { ETextAlign as f, ETextWeight as i } from "../ui-typography/_typings.js";
|
|
4
|
-
import { default as m } from "./ui-table-cell/ui-table-cell.vue.js";
|
|
5
|
-
import { default as d } from "./ui-table-row/ui-table-row.vue.js";
|
|
6
|
-
import { ERowKind as b } from "./ui-table-row/_typings.js";
|
|
7
|
-
import { ETableKind as s } from "./_types.js";
|
|
8
|
-
const r = e;
|
|
9
|
-
export {
|
|
10
|
-
b as ERowKind,
|
|
11
|
-
s as ETableKind,
|
|
12
|
-
f as ETextAlign,
|
|
13
|
-
i as ETextWeight,
|
|
14
|
-
e as UiTable,
|
|
15
|
-
m as UiTableCell,
|
|
16
|
-
d as UiTableRow,
|
|
17
|
-
r as default
|
|
18
|
-
};
|
|
19
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../src/components/ui-table/index.ts"],"sourcesContent":["import UiTable from \"./ui-table.vue\";\n\nexport { UiTable };\n\nexport { ETextAlign, ETextWeight } from \"../ui-typography\";\nexport { UiTableCell } from \"./ui-table-cell\";\n\nexport { UiTableRow, ERowKind } from \"./ui-table-row\";\nexport { ETableKind } from \"./_types\";\n\n/**\n * @deprecated The default should not be used - use named import as - import {[name]} from \"ui/[name]\"\n */\nconst deprecatedDefault = UiTable;\nexport default deprecatedDefault;\n"],"names":["deprecatedDefault","UiTable"],"mappings":";;;;;;;AAaA,MAAMA,IAAoBC;"}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import { default as UiTableCell } from './ui-table-cell.vue';
|
|
2
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
|
|
3
|
-
import { ETextAlign, ETextWeight } from '..';
|
|
4
|
-
export { UiTableCell };
|
|
5
|
-
/**
|
|
6
|
-
* @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
|
|
7
|
-
*/
|
|
8
|
-
declare const deprecatedDefault: {
|
|
9
|
-
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
10
|
-
align: {
|
|
11
|
-
type: PropType<ETextAlign>;
|
|
12
|
-
};
|
|
13
|
-
weight: {
|
|
14
|
-
type: PropType<ETextWeight>;
|
|
15
|
-
};
|
|
16
|
-
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
17
|
-
align: {
|
|
18
|
-
type: PropType<ETextAlign>;
|
|
19
|
-
};
|
|
20
|
-
weight: {
|
|
21
|
-
type: PropType<ETextWeight>;
|
|
22
|
-
};
|
|
23
|
-
}>>, {}, true, {}, {}, {
|
|
24
|
-
P: {};
|
|
25
|
-
B: {};
|
|
26
|
-
D: {};
|
|
27
|
-
C: {};
|
|
28
|
-
M: {};
|
|
29
|
-
Defaults: {};
|
|
30
|
-
}, Readonly< ExtractPropTypes<{
|
|
31
|
-
align: {
|
|
32
|
-
type: PropType<ETextAlign>;
|
|
33
|
-
};
|
|
34
|
-
weight: {
|
|
35
|
-
type: PropType<ETextWeight>;
|
|
36
|
-
};
|
|
37
|
-
}>>, {}, {}, {}, {}, {}>;
|
|
38
|
-
__isFragment?: never;
|
|
39
|
-
__isTeleport?: never;
|
|
40
|
-
__isSuspense?: never;
|
|
41
|
-
} & ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
42
|
-
align: {
|
|
43
|
-
type: PropType<ETextAlign>;
|
|
44
|
-
};
|
|
45
|
-
weight: {
|
|
46
|
-
type: PropType<ETextWeight>;
|
|
47
|
-
};
|
|
48
|
-
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
49
|
-
$slots: {
|
|
50
|
-
default?(_: {}): any;
|
|
51
|
-
subtext?(_: {}): any;
|
|
52
|
-
};
|
|
53
|
-
});
|
|
54
|
-
export default deprecatedDefault;
|
|
55
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ui-table/ui-table-cell/index.ts"],"names":[],"mappings":";;AAAA,OAAO,WAAW,MAAM,qBAAqB,CAAC;AAE9C,OAAO,EAAE,WAAW,EAAE,CAAC;AAEvB;;GAEG;AACH,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAc,CAAC;AACtC,eAAe,iBAAiB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../../src/components/ui-table/ui-table-cell/index.ts"],"sourcesContent":["import UiTableCell from \"./ui-table-cell.vue\";\n\nexport { UiTableCell };\n\n/**\n * @deprecated The default should not be used - use named import as - import {[name]} from \"ui/[name]\"\n */\nconst deprecatedDefault = UiTableCell;\nexport default deprecatedDefault;\n"],"names":["deprecatedDefault","UiTableCell"],"mappings":";AAOA,MAAMA,IAAoBC;"}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { ETextAlign, ETextWeight } from '../../ui-typography';
|
|
2
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
|
-
declare function __VLS_template(): {
|
|
4
|
-
slots: {
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
subtext?(_: {}): any;
|
|
7
|
-
};
|
|
8
|
-
refs: {};
|
|
9
|
-
attrs: Partial<{}>;
|
|
10
|
-
};
|
|
11
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
-
declare const __VLS_component: DefineComponent<__VLS_TypePropsToOption<{
|
|
13
|
-
align?: ETextAlign;
|
|
14
|
-
weight?: ETextWeight;
|
|
15
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
16
|
-
align?: ETextAlign;
|
|
17
|
-
weight?: ETextWeight;
|
|
18
|
-
}>>>, {}, {}>;
|
|
19
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
20
|
-
export default _default;
|
|
21
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
22
|
-
type __VLS_TypePropsToOption<T> = {
|
|
23
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
24
|
-
type: PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
25
|
-
} : {
|
|
26
|
-
type: PropType<T[K]>;
|
|
27
|
-
required: true;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
-
new (): {
|
|
32
|
-
$slots: S;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
//# sourceMappingURL=ui-table-cell.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-table-cell.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui-table/ui-table-cell/ui-table-cell.vue"],"names":[],"mappings":";AAoCC,OAAqB,EAAoB,UAAU,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAe/F,iBAAS,cAAc;;yBAgDM,GAAG;yBACF,GAAG;;;WASnB,OAAO,IAA6B;EAEjD;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;YAnFX,UAAU;aACT,WAAW;;YADZ,UAAU;aACT,WAAW;aAwFpB,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,41 +0,0 @@
|
|
|
1
|
-
import { defineComponent as n, openBlock as s, createBlock as l, unref as t, withCtx as o, renderSlot as i, normalizeClass as p, createCommentVNode as m } from "vue";
|
|
2
|
-
import { EColors as f } from "../../../_types/colors.js";
|
|
3
|
-
import a from "../../ui-typography/index.js";
|
|
4
|
-
import { ETypographySizes as r, ETextWeight as u } from "../../ui-typography/_typings.js";
|
|
5
|
-
const z = /* @__PURE__ */ n({
|
|
6
|
-
__name: "ui-table-cell",
|
|
7
|
-
props: {
|
|
8
|
-
align: {},
|
|
9
|
-
weight: {}
|
|
10
|
-
},
|
|
11
|
-
setup(d) {
|
|
12
|
-
return (e, g) => (s(), l(t(a), {
|
|
13
|
-
is: "td",
|
|
14
|
-
size: t(r).SM,
|
|
15
|
-
align: e.align,
|
|
16
|
-
weight: e.weight,
|
|
17
|
-
class: "p-sm"
|
|
18
|
-
}, {
|
|
19
|
-
default: o(() => [
|
|
20
|
-
i(e.$slots, "default"),
|
|
21
|
-
e.$slots.subtext ? (s(), l(t(a), {
|
|
22
|
-
key: 0,
|
|
23
|
-
size: t(r).XXS,
|
|
24
|
-
weight: t(u).SEMI_BOLD,
|
|
25
|
-
class: p(["flex flex-col gap-xxxs", e.$slots.default && "pt-sm"]),
|
|
26
|
-
kind: t(f).PRIMARY_ALT_700
|
|
27
|
-
}, {
|
|
28
|
-
default: o(() => [
|
|
29
|
-
i(e.$slots, "subtext")
|
|
30
|
-
]),
|
|
31
|
-
_: 3
|
|
32
|
-
}, 8, ["size", "weight", "kind", "class"])) : m("", !0)
|
|
33
|
-
]),
|
|
34
|
-
_: 3
|
|
35
|
-
}, 8, ["size", "align", "weight"]));
|
|
36
|
-
}
|
|
37
|
-
});
|
|
38
|
-
export {
|
|
39
|
-
z as default
|
|
40
|
-
};
|
|
41
|
-
//# sourceMappingURL=ui-table-cell.vue.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-table-cell.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-table-cell.vue2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_typings.d.ts","sourceRoot":"","sources":["../../../../src/components/ui-table/ui-table-row/_typings.ts"],"names":[],"mappings":"AAAA,oBAAY,QAAQ;IACnB,SAAS,cAAc;CACvB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_typings.js","sources":["../../../../src/components/ui-table/ui-table-row/_typings.ts"],"sourcesContent":["export enum ERowKind {\n\tSECONDARY = \"secondary\"\n}\n"],"names":["ERowKind"],"mappings":"AAAY,IAAAA,sBAAAA,OACXA,EAAA,YAAY,aADDA,IAAAA,KAAA,CAAA,CAAA;"}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { default as UiTableRow } from './ui-table-row.vue';
|
|
2
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
|
|
3
|
-
import { ERowKind } from './_typings';
|
|
4
|
-
export { UiTableRow };
|
|
5
|
-
export { ERowKind } from './_typings';
|
|
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
|
-
kind: {
|
|
12
|
-
type: PropType<ERowKind>;
|
|
13
|
-
};
|
|
14
|
-
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
15
|
-
kind: {
|
|
16
|
-
type: PropType<ERowKind>;
|
|
17
|
-
};
|
|
18
|
-
}>>, {}, true, {}, {}, {
|
|
19
|
-
P: {};
|
|
20
|
-
B: {};
|
|
21
|
-
D: {};
|
|
22
|
-
C: {};
|
|
23
|
-
M: {};
|
|
24
|
-
Defaults: {};
|
|
25
|
-
}, Readonly< ExtractPropTypes<{
|
|
26
|
-
kind: {
|
|
27
|
-
type: PropType<ERowKind>;
|
|
28
|
-
};
|
|
29
|
-
}>>, {}, {}, {}, {}, {}>;
|
|
30
|
-
__isFragment?: never;
|
|
31
|
-
__isTeleport?: never;
|
|
32
|
-
__isSuspense?: never;
|
|
33
|
-
} & ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
34
|
-
kind: {
|
|
35
|
-
type: PropType<ERowKind>;
|
|
36
|
-
};
|
|
37
|
-
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
38
|
-
$slots: {
|
|
39
|
-
default?(_: {}): any;
|
|
40
|
-
};
|
|
41
|
-
});
|
|
42
|
-
export default deprecatedDefault;
|
|
43
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ui-table/ui-table-row/index.ts"],"names":[],"mappings":";;AAAA,OAAO,UAAU,MAAM,oBAAoB,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,CAAC;AAEtB,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC;;GAEG;AACH,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAa,CAAC;AACrC,eAAe,iBAAiB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../../src/components/ui-table/ui-table-row/index.ts"],"sourcesContent":["import UiTableRow from \"./ui-table-row.vue\";\nexport { UiTableRow };\n\nexport { ERowKind } from \"./_typings\";\n/**\n * @deprecated The default should not be used - use named import as - import {[name]} from \"ui/[name]\"\n */\nconst deprecatedDefault = UiTableRow;\nexport default deprecatedDefault;\n"],"names":["deprecatedDefault","UiTableRow"],"mappings":";;AAOA,MAAMA,IAAoBC;"}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { ERowKind } from './_typings';
|
|
2
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
|
-
declare function __VLS_template(): {
|
|
4
|
-
slots: {
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {};
|
|
8
|
-
attrs: Partial<{}>;
|
|
9
|
-
};
|
|
10
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
-
declare const __VLS_component: DefineComponent<__VLS_TypePropsToOption<{
|
|
12
|
-
kind?: ERowKind;
|
|
13
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
14
|
-
kind?: ERowKind;
|
|
15
|
-
}>>>, {}, {}>;
|
|
16
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
-
export default _default;
|
|
18
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
19
|
-
type __VLS_TypePropsToOption<T> = {
|
|
20
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
21
|
-
type: PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
22
|
-
} : {
|
|
23
|
-
type: PropType<T[K]>;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
28
|
-
new (): {
|
|
29
|
-
$slots: S;
|
|
30
|
-
};
|
|
31
|
-
};
|
|
32
|
-
//# sourceMappingURL=ui-table-row.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-table-row.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/ui-table/ui-table-row/ui-table-row.vue"],"names":[],"mappings":";AAiCC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAcvC,iBAAS,cAAc;;yBAgCM,GAAG;;;WASlB,OAAO,IAA6B;EAEjD;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;WA9DZ,QAAQ;;WAAR,QAAQ;aAoEf,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,9 +0,0 @@
|
|
|
1
|
-
(function(){"use strict";try{if(typeof document<"u"){var t=document.createElement("style");t.appendChild(document.createTextNode(".ui-table-row[data-v-a9579e20] td:first-child{border-top-left-radius:var(--xxs);border-bottom-left-radius:var(--xxs);text-align:left}.ui-table-row[data-v-a9579e20] td:last-child{border-top-right-radius:var(--xxs);border-bottom-right-radius:var(--xxs);text-align:right}")),document.head.appendChild(t)}}catch(e){console.error("vite-plugin-css-injected-by-js",e)}})();
|
|
2
|
-
import o from "./ui-table-row.vue3.js";
|
|
3
|
-
|
|
4
|
-
import t from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
5
|
-
const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-a9579e20"]]);
|
|
6
|
-
export {
|
|
7
|
-
m as default
|
|
8
|
-
};
|
|
9
|
-
//# sourceMappingURL=ui-table-row.vue.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-table-row.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { defineComponent as r, openBlock as o, createElementBlock as t, normalizeClass as n, unref as a, renderSlot as l } from "vue";
|
|
2
|
-
import { ERowKind as s } from "./_typings.js";
|
|
3
|
-
const m = /* @__PURE__ */ r({
|
|
4
|
-
__name: "ui-table-row",
|
|
5
|
-
props: {
|
|
6
|
-
kind: {}
|
|
7
|
-
},
|
|
8
|
-
setup(i) {
|
|
9
|
-
return (e, p) => (o(), t("tr", {
|
|
10
|
-
class: n(["ui-table-row text-center", [e.kind === a(s).SECONDARY && "bg-secondary-alt-200"]])
|
|
11
|
-
}, [
|
|
12
|
-
l(e.$slots, "default", {}, void 0, !0)
|
|
13
|
-
], 2));
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
export {
|
|
17
|
-
m as default
|
|
18
|
-
};
|
|
19
|
-
//# sourceMappingURL=ui-table-row.vue3.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-table-row.vue3.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { ETableKind } from './_types';
|
|
2
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
|
-
declare function __VLS_template(): {
|
|
4
|
-
slots: {
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {};
|
|
8
|
-
attrs: Partial<{}>;
|
|
9
|
-
};
|
|
10
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
-
declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
12
|
-
kind?: ETableKind;
|
|
13
|
-
}>, {
|
|
14
|
-
kind: ETableKind;
|
|
15
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
16
|
-
kind?: ETableKind;
|
|
17
|
-
}>, {
|
|
18
|
-
kind: ETableKind;
|
|
19
|
-
}>>>, {
|
|
20
|
-
kind: ETableKind;
|
|
21
|
-
}, {}>;
|
|
22
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
|
-
export default _default;
|
|
24
|
-
type __VLS_WithDefaults<P, D> = {
|
|
25
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
26
|
-
default: D[K];
|
|
27
|
-
}> : P[K];
|
|
28
|
-
};
|
|
29
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
30
|
-
type __VLS_TypePropsToOption<T> = {
|
|
31
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
32
|
-
type: PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
33
|
-
} : {
|
|
34
|
-
type: PropType<T[K]>;
|
|
35
|
-
required: true;
|
|
36
|
-
};
|
|
37
|
-
};
|
|
38
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
39
|
-
new (): {
|
|
40
|
-
$slots: S;
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
type __VLS_PrettifyLocal<T> = {
|
|
44
|
-
[K in keyof T]: T[K];
|
|
45
|
-
} & {};
|
|
46
|
-
//# sourceMappingURL=ui-table.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-table.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ui-table/ui-table.vue"],"names":[],"mappings":";AAiCC,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAkBvC,iBAAS,cAAc;;yBAoCM,GAAG;;;WASlB,OAAO,IAA6B;EAEjD;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;WAtEZ,UAAU;;;;WAAV,UAAU;;;;UAAV,UAAU;MA4EjB,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,9 +0,0 @@
|
|
|
1
|
-
(function(){"use strict";try{if(typeof document<"u"){var e=document.createElement("style");e.appendChild(document.createTextNode(".ui-table__secondary[data-v-d292cc77] tr:nth-child(odd){background-color:var(--color-secondary-alt-200)}.ui-table__secondary-inverted[data-v-d292cc77] tr:nth-child(2n){background-color:var(--color-secondary-alt-200)}")),document.head.appendChild(e)}}catch(c){console.error("vite-plugin-css-injected-by-js",c)}})();
|
|
2
|
-
import o from "./ui-table.vue2.js";
|
|
3
|
-
|
|
4
|
-
import t from "../../_virtual/_plugin-vue_export-helper.js";
|
|
5
|
-
const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-d292cc77"]]);
|
|
6
|
-
export {
|
|
7
|
-
m as default
|
|
8
|
-
};
|
|
9
|
-
//# sourceMappingURL=ui-table.vue.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-table.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { defineComponent as o, openBlock as t, createElementBlock as a, normalizeClass as l, unref as r, renderSlot as d } from "vue";
|
|
2
|
-
import { ETableKind as n } from "./_types.js";
|
|
3
|
-
const p = /* @__PURE__ */ o({
|
|
4
|
-
__name: "ui-table",
|
|
5
|
-
props: {
|
|
6
|
-
kind: { default: n.SECONDARY_INVERTED }
|
|
7
|
-
},
|
|
8
|
-
setup(i) {
|
|
9
|
-
return (e, s) => (t(), a("table", {
|
|
10
|
-
class: l([
|
|
11
|
-
"ui-table rounded-xl",
|
|
12
|
-
e.kind === r(n).SECONDARY && "ui-table__secondary",
|
|
13
|
-
e.kind === r(n).SECONDARY_INVERTED && "ui-table__secondary-inverted"
|
|
14
|
-
])
|
|
15
|
-
}, [
|
|
16
|
-
d(e.$slots, "default", {}, void 0, !0)
|
|
17
|
-
], 2));
|
|
18
|
-
}
|
|
19
|
-
});
|
|
20
|
-
export {
|
|
21
|
-
p as default
|
|
22
|
-
};
|
|
23
|
-
//# sourceMappingURL=ui-table.vue2.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-table.vue2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { default as UiTabs } from './ui-tabs.vue';
|
|
2
|
-
import { DefineComponent, PropType, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
|
|
3
|
-
export { UiTabs };
|
|
4
|
-
/**
|
|
5
|
-
* @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
|
|
6
|
-
*/
|
|
7
|
-
declare const deprecatedDefault: DefineComponent<{
|
|
8
|
-
name: {
|
|
9
|
-
type: PropType<string>;
|
|
10
|
-
default: string;
|
|
11
|
-
};
|
|
12
|
-
modelValue: {
|
|
13
|
-
type: PropType<string>;
|
|
14
|
-
required: true;
|
|
15
|
-
};
|
|
16
|
-
tabs: {
|
|
17
|
-
type: PropType<string[]>;
|
|
18
|
-
required: true;
|
|
19
|
-
};
|
|
20
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
21
|
-
"update:modelValue": (...args: any[]) => void;
|
|
22
|
-
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
23
|
-
name: {
|
|
24
|
-
type: PropType<string>;
|
|
25
|
-
default: string;
|
|
26
|
-
};
|
|
27
|
-
modelValue: {
|
|
28
|
-
type: PropType<string>;
|
|
29
|
-
required: true;
|
|
30
|
-
};
|
|
31
|
-
tabs: {
|
|
32
|
-
type: PropType<string[]>;
|
|
33
|
-
required: true;
|
|
34
|
-
};
|
|
35
|
-
}>> & {
|
|
36
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
37
|
-
}, {
|
|
38
|
-
name: string;
|
|
39
|
-
}, {}>;
|
|
40
|
-
export default deprecatedDefault;
|
|
41
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ui-tabs/index.ts"],"names":[],"mappings":";AAAA,OAAO,MAAM,MAAM,eAAe,CAAC;AACnC,OAAO,EAAE,MAAM,EAAE,CAAC;AAElB;;GAEG;AACH,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAS,CAAC;AACjC,eAAe,iBAAiB,CAAC"}
|