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,49 +0,0 @@
|
|
|
1
|
-
import { EIconWrapperSizes, EIconWrapperTypes } from './_typings';
|
|
2
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
|
-
type TProps = {
|
|
4
|
-
kind?: EIconWrapperTypes;
|
|
5
|
-
size?: EIconWrapperSizes;
|
|
6
|
-
};
|
|
7
|
-
declare function __VLS_template(): {
|
|
8
|
-
slots: {
|
|
9
|
-
default?(_: {}): any;
|
|
10
|
-
};
|
|
11
|
-
refs: {};
|
|
12
|
-
attrs: Partial<{}>;
|
|
13
|
-
};
|
|
14
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
-
declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<TProps>, {
|
|
16
|
-
kind: EIconWrapperTypes;
|
|
17
|
-
size: EIconWrapperSizes;
|
|
18
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<TProps>, {
|
|
19
|
-
kind: EIconWrapperTypes;
|
|
20
|
-
size: EIconWrapperSizes;
|
|
21
|
-
}>>>, {
|
|
22
|
-
size: EIconWrapperSizes;
|
|
23
|
-
kind: EIconWrapperTypes;
|
|
24
|
-
}, {}>;
|
|
25
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
26
|
-
export default _default;
|
|
27
|
-
type __VLS_WithDefaults<P, D> = {
|
|
28
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
29
|
-
default: D[K];
|
|
30
|
-
}> : P[K];
|
|
31
|
-
};
|
|
32
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
33
|
-
type __VLS_TypePropsToOption<T> = {
|
|
34
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
35
|
-
type: PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
36
|
-
} : {
|
|
37
|
-
type: PropType<T[K]>;
|
|
38
|
-
required: true;
|
|
39
|
-
};
|
|
40
|
-
};
|
|
41
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
42
|
-
new (): {
|
|
43
|
-
$slots: S;
|
|
44
|
-
};
|
|
45
|
-
};
|
|
46
|
-
type __VLS_PrettifyLocal<T> = {
|
|
47
|
-
[K in keyof T]: T[K];
|
|
48
|
-
} & {};
|
|
49
|
-
//# sourceMappingURL=ui-icon-wrapper.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-icon-wrapper.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ui-icon-wrapper/ui-icon-wrapper.vue"],"names":[],"mappings":";AA8CC,OAAO,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAInE,KAAK,MAAM,GAAG;IACZ,IAAI,CAAC,EAAE,iBAAiB,CAAC;IACzB,IAAI,CAAC,EAAE,iBAAiB,CAAC;CACzB,CAAA;AAiBF,iBAAS,cAAc;;yBA6CM,GAAG;;;WASlB,OAAO,IAA6B;EAEjD;AAUD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;UArFZ,iBAAiB;UADjB,iBAAiB;MA4FxB,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(".icon-wrapper_offset-md[data-v-e2d42695] .notification-badge{top:4px;right:4px}.icon-wrapper_offset-xl[data-v-e2d42695] .notification-badge{top:8px;right:8px}")),document.head.appendChild(e)}}catch(t){console.error("vite-plugin-css-injected-by-js",t)}})();
|
|
2
|
-
import o from "./ui-icon-wrapper.vue2.js";
|
|
3
|
-
|
|
4
|
-
import r from "../../_virtual/_plugin-vue_export-helper.js";
|
|
5
|
-
const e = /* @__PURE__ */ r(o, [["__scopeId", "data-v-e2d42695"]]);
|
|
6
|
-
export {
|
|
7
|
-
e as default
|
|
8
|
-
};
|
|
9
|
-
//# sourceMappingURL=ui-icon-wrapper.vue.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-icon-wrapper.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { defineComponent as o, openBlock as a, createElementBlock as n, normalizeClass as s, unref as r, renderSlot as t } from "vue";
|
|
2
|
-
import { EIconWrapperTypes as p, EIconWrapperSizes as i } from "./_typings.js";
|
|
3
|
-
const c = /* @__PURE__ */ o({
|
|
4
|
-
__name: "ui-icon-wrapper",
|
|
5
|
-
props: {
|
|
6
|
-
kind: { default: p.DEFAULT },
|
|
7
|
-
size: { default: i.DEFAULT }
|
|
8
|
-
},
|
|
9
|
-
setup(d) {
|
|
10
|
-
return (e, l) => (a(), n("div", {
|
|
11
|
-
class: s(["icon-wrapper relative grid size-fit place-items-center rounded-2xl", [
|
|
12
|
-
e.kind === r(p).PRIMARY && "bg-primary text-white",
|
|
13
|
-
e.kind === r(p).SECONDARY && "bg-secondary-alt-200 text-black",
|
|
14
|
-
e.kind === r(p).DEFAULT && "border-2 border-primary bg-white text-primary ",
|
|
15
|
-
e.size === r(i).DEFAULT && "p-sm",
|
|
16
|
-
e.size === r(i).SMALL && "p-xxs",
|
|
17
|
-
e.size === r(i).MEDIUM && "icon-wrapper_offset-md p-md",
|
|
18
|
-
e.size === r(i).LARGE && "icon-wrapper_offset-xl p-xl"
|
|
19
|
-
]])
|
|
20
|
-
}, [
|
|
21
|
-
t(e.$slots, "default", {}, void 0, !0)
|
|
22
|
-
], 2));
|
|
23
|
-
}
|
|
24
|
-
});
|
|
25
|
-
export {
|
|
26
|
-
c as default
|
|
27
|
-
};
|
|
28
|
-
//# sourceMappingURL=ui-icon-wrapper.vue2.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-icon-wrapper.vue2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
export declare enum EInputKinds {
|
|
2
|
-
PRIMARY = "PRIMARY",
|
|
3
|
-
SECONDARY = "SECONDARY",
|
|
4
|
-
ERROR = "ERROR"
|
|
5
|
-
}
|
|
6
|
-
export declare enum EInputType {
|
|
7
|
-
TEXT = "text",
|
|
8
|
-
NUMBER = "number",
|
|
9
|
-
TEL = "tel",
|
|
10
|
-
PASSWORD = "password",
|
|
11
|
-
EMAIL = "email",
|
|
12
|
-
DATE = "date"
|
|
13
|
-
}
|
|
14
|
-
export declare enum EAutocomplete {
|
|
15
|
-
OFF = "off",
|
|
16
|
-
ON = "on",// dont forget to add name attribute to input (custom one)
|
|
17
|
-
NAME = "name",// full name
|
|
18
|
-
GIVEN_NAME = "given-name",
|
|
19
|
-
ADDITIONAL_NAME = "additional-name",
|
|
20
|
-
FAMILY_NAME = "family-name",
|
|
21
|
-
HONORIFIC_PREFIX = "honorific-prefix",
|
|
22
|
-
NICKNAME = "nickname",
|
|
23
|
-
EMAIL = "email",
|
|
24
|
-
USERNAME = "username",
|
|
25
|
-
NEW_PASSWORD = "new-password",
|
|
26
|
-
CURRENT_PASSWORD = "current-password",
|
|
27
|
-
ORGANIZATION_TITLE = "organization-title",
|
|
28
|
-
ORGANIZATION = "organization",
|
|
29
|
-
STREET_ADDRESS = "street-address",
|
|
30
|
-
SHIPPING = "shipping",
|
|
31
|
-
BUILDING = "building",
|
|
32
|
-
ADDRESS_LINE1 = "address-line1",
|
|
33
|
-
ADDRESS_LINE2 = "address-line2",
|
|
34
|
-
ADDRESS_LINE3 = "address-line3",
|
|
35
|
-
ADDRESS_LEVEL4 = "address-level4",
|
|
36
|
-
ADDRESS_LEVEL3 = "address-level3",
|
|
37
|
-
ADDRESS_LEVEL2 = "address-level2",
|
|
38
|
-
ADDRESS_LEVEL1 = "address-level1",
|
|
39
|
-
COUNTRY = "country",
|
|
40
|
-
COUNTRY_NAME = "country-name",
|
|
41
|
-
POSTAL_CODE = "postal-code",
|
|
42
|
-
CC_NAME = "cc-name",
|
|
43
|
-
CC_GIVEN_NAME = "cc-given-name",
|
|
44
|
-
CC_ADDITIONAL_NAME = "cc-additional-name",
|
|
45
|
-
CC_FAMILY_NAME = "cc-family-name",
|
|
46
|
-
CC_NUMBER = "cc-number",
|
|
47
|
-
CC_EXP = "cc-exp",
|
|
48
|
-
CC_EXP_MONTH = "cc-exp-month",
|
|
49
|
-
CC_EXP_YEAR = "cc-exp-year",
|
|
50
|
-
CC_CSC = "cc-csc",
|
|
51
|
-
CC_TYPE = "cc-type",
|
|
52
|
-
TRANSACTION_CURRENCY = "transaction-currency",
|
|
53
|
-
TRANSACTION_AMOUNT = "transaction-amount",
|
|
54
|
-
LANGUAGE = "language",
|
|
55
|
-
BIRTHDAY = "bday",
|
|
56
|
-
BIRTHDAY_DAY = "bday-day",
|
|
57
|
-
BIRTHDAY_MONTH = "bday-month",
|
|
58
|
-
BIRTHDAY_YEAR = "bday-year",
|
|
59
|
-
SEX = "sex",
|
|
60
|
-
TEL = "tel",
|
|
61
|
-
TEL_COUNTRY_CODE = "tel-country-code",
|
|
62
|
-
TEL_NATIONAL = "tel-national",
|
|
63
|
-
TEL_AREA_CODE = "tel-area-code",
|
|
64
|
-
TEL_LOCAL = "tel-local",
|
|
65
|
-
TEL_EXTENSION = "tel-extension",
|
|
66
|
-
IMPP = "impp",
|
|
67
|
-
URL = "url",
|
|
68
|
-
PHOTO = "photo",
|
|
69
|
-
WEBAUTHN = "webauthn"
|
|
70
|
-
}
|
|
71
|
-
//# sourceMappingURL=_typings.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_typings.d.ts","sourceRoot":"","sources":["../../../src/components/ui-input/_typings.ts"],"names":[],"mappings":"AAAA,oBAAY,WAAW;IACtB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,KAAK,UAAU;CACf;AAED,oBAAY,UAAU;IACrB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,GAAG,QAAQ;IACX,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,IAAI,SAAS;CACb;AAED,oBAAY,aAAa;IACxB,GAAG,QAAQ;IACX,EAAE,OAAO,CAAE,0DAA0D;IACrE,IAAI,SAAS,CAAE,YAAY;IAC3B,UAAU,eAAe;IACzB,eAAe,oBAAoB;IACnC,WAAW,gBAAgB;IAE3B,gBAAgB,qBAAqB;IACrC,QAAQ,aAAa;IAErB,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,YAAY,iBAAiB;IAC7B,gBAAgB,qBAAqB;IACrC,kBAAkB,uBAAuB;IACzC,YAAY,iBAAiB;IAC7B,cAAc,mBAAmB;IACjC,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,aAAa,kBAAkB;IAC/B,aAAa,kBAAkB;IAC/B,aAAa,kBAAkB;IAC/B,cAAc,mBAAmB;IACjC,cAAc,mBAAmB;IACjC,cAAc,mBAAmB;IACjC,cAAc,mBAAmB;IACjC,OAAO,YAAY;IACnB,YAAY,iBAAiB;IAC7B,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,aAAa,kBAAkB;IAC/B,kBAAkB,uBAAuB;IACzC,cAAc,mBAAmB;IACjC,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,YAAY,iBAAiB;IAC7B,WAAW,gBAAgB;IAC3B,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,oBAAoB,yBAAyB;IAC7C,kBAAkB,uBAAuB;IACzC,QAAQ,aAAa;IACrB,QAAQ,SAAS;IACjB,YAAY,aAAa;IACzB,cAAc,eAAe;IAC7B,aAAa,cAAc;IAC3B,GAAG,QAAQ;IACX,GAAG,QAAO;IACV,gBAAgB,qBAAqB;IACrC,YAAY,iBAAiB;IAC7B,aAAa,kBAAkB;IAC/B,SAAS,cAAc;IACvB,aAAa,kBAAkB;IAC/B,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,KAAK,UAAU;IACf,QAAQ,aAAa;CACrB"}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
var N = /* @__PURE__ */ ((a) => (a.PRIMARY = "PRIMARY", a.SECONDARY = "SECONDARY", a.ERROR = "ERROR", a))(N || {}), R = /* @__PURE__ */ ((a) => (a.TEXT = "text", a.NUMBER = "number", a.TEL = "tel", a.PASSWORD = "password", a.EMAIL = "email", a.DATE = "date", a))(R || {}), _ = /* @__PURE__ */ ((a) => (a.OFF = "off", a.ON = "on", a.NAME = "name", a.GIVEN_NAME = "given-name", a.ADDITIONAL_NAME = "additional-name", a.FAMILY_NAME = "family-name", a.HONORIFIC_PREFIX = "honorific-prefix", a.NICKNAME = "nickname", a.EMAIL = "email", a.USERNAME = "username", a.NEW_PASSWORD = "new-password", a.CURRENT_PASSWORD = "current-password", a.ORGANIZATION_TITLE = "organization-title", a.ORGANIZATION = "organization", a.STREET_ADDRESS = "street-address", a.SHIPPING = "shipping", a.BUILDING = "building", a.ADDRESS_LINE1 = "address-line1", a.ADDRESS_LINE2 = "address-line2", a.ADDRESS_LINE3 = "address-line3", a.ADDRESS_LEVEL4 = "address-level4", a.ADDRESS_LEVEL3 = "address-level3", a.ADDRESS_LEVEL2 = "address-level2", a.ADDRESS_LEVEL1 = "address-level1", a.COUNTRY = "country", a.COUNTRY_NAME = "country-name", a.POSTAL_CODE = "postal-code", a.CC_NAME = "cc-name", a.CC_GIVEN_NAME = "cc-given-name", a.CC_ADDITIONAL_NAME = "cc-additional-name", a.CC_FAMILY_NAME = "cc-family-name", a.CC_NUMBER = "cc-number", a.CC_EXP = "cc-exp", a.CC_EXP_MONTH = "cc-exp-month", a.CC_EXP_YEAR = "cc-exp-year", a.CC_CSC = "cc-csc", a.CC_TYPE = "cc-type", a.TRANSACTION_CURRENCY = "transaction-currency", a.TRANSACTION_AMOUNT = "transaction-amount", a.LANGUAGE = "language", a.BIRTHDAY = "bday", a.BIRTHDAY_DAY = "bday-day", a.BIRTHDAY_MONTH = "bday-month", a.BIRTHDAY_YEAR = "bday-year", a.SEX = "sex", a.TEL = "tel", a.TEL_COUNTRY_CODE = "tel-country-code", a.TEL_NATIONAL = "tel-national", a.TEL_AREA_CODE = "tel-area-code", a.TEL_LOCAL = "tel-local", a.TEL_EXTENSION = "tel-extension", a.IMPP = "impp", a.URL = "url", a.PHOTO = "photo", a.WEBAUTHN = "webauthn", a))(_ || {});
|
|
2
|
-
export {
|
|
3
|
-
_ as EAutocomplete,
|
|
4
|
-
N as EInputKinds,
|
|
5
|
-
R as EInputType
|
|
6
|
-
};
|
|
7
|
-
//# sourceMappingURL=_typings.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"_typings.js","sources":["../../../src/components/ui-input/_typings.ts"],"sourcesContent":["export enum EInputKinds {\n\tPRIMARY = \"PRIMARY\",\n\tSECONDARY = \"SECONDARY\",\n\tERROR = \"ERROR\",\n}\n\nexport enum EInputType {\n\tTEXT = \"text\",\n\tNUMBER = \"number\",\n\tTEL = \"tel\",\n\tPASSWORD = \"password\",\n\tEMAIL = \"email\",\n\tDATE = \"date\",\n}\n\nexport enum EAutocomplete {\n\tOFF = \"off\",\n\tON = \"on\", // dont forget to add name attribute to input (custom one)\n\tNAME = \"name\", // full name\n\tGIVEN_NAME = \"given-name\",\n\tADDITIONAL_NAME = \"additional-name\",\n\tFAMILY_NAME = \"family-name\",\n\n\tHONORIFIC_PREFIX = \"honorific-prefix\",\n\tNICKNAME = \"nickname\",\n\n\tEMAIL = \"email\",\n\tUSERNAME = \"username\",\n\tNEW_PASSWORD = \"new-password\",\n\tCURRENT_PASSWORD = \"current-password\",\n\tORGANIZATION_TITLE = \"organization-title\",\n\tORGANIZATION = \"organization\",\n\tSTREET_ADDRESS = \"street-address\",\n\tSHIPPING = \"shipping\",\n\tBUILDING = \"building\",\n\tADDRESS_LINE1 = \"address-line1\",\n\tADDRESS_LINE2 = \"address-line2\",\n\tADDRESS_LINE3 = \"address-line3\",\n\tADDRESS_LEVEL4 = \"address-level4\",\n\tADDRESS_LEVEL3 = \"address-level3\",\n\tADDRESS_LEVEL2 = \"address-level2\",\n\tADDRESS_LEVEL1 = \"address-level1\",\n\tCOUNTRY = \"country\",\n\tCOUNTRY_NAME = \"country-name\",\n\tPOSTAL_CODE = \"postal-code\",\n\tCC_NAME = \"cc-name\",\n\tCC_GIVEN_NAME = \"cc-given-name\",\n\tCC_ADDITIONAL_NAME = \"cc-additional-name\",\n\tCC_FAMILY_NAME = \"cc-family-name\",\n\tCC_NUMBER = \"cc-number\",\n\tCC_EXP = \"cc-exp\",\n\tCC_EXP_MONTH = \"cc-exp-month\",\n\tCC_EXP_YEAR = \"cc-exp-year\",\n\tCC_CSC = \"cc-csc\",\n\tCC_TYPE = \"cc-type\",\n\tTRANSACTION_CURRENCY = \"transaction-currency\",\n\tTRANSACTION_AMOUNT = \"transaction-amount\",\n\tLANGUAGE = \"language\",\n\tBIRTHDAY = \"bday\",\n\tBIRTHDAY_DAY = \"bday-day\",\n\tBIRTHDAY_MONTH = \"bday-month\",\n\tBIRTHDAY_YEAR = \"bday-year\",\n\tSEX = \"sex\",\n\tTEL= \"tel\",\n\tTEL_COUNTRY_CODE = \"tel-country-code\",\n\tTEL_NATIONAL = \"tel-national\",\n\tTEL_AREA_CODE = \"tel-area-code\",\n\tTEL_LOCAL = \"tel-local\",\n\tTEL_EXTENSION = \"tel-extension\",\n\tIMPP = \"impp\",\n\tURL = \"url\",\n\tPHOTO = \"photo\",\n\tWEBAUTHN = \"webauthn\",\n}\n"],"names":["EInputKinds","EInputType","EAutocomplete"],"mappings":"AAAY,IAAAA,sBAAAA,OACXA,EAAA,UAAU,WACVA,EAAA,YAAY,aACZA,EAAA,QAAQ,SAHGA,IAAAA,KAAA,CAAA,CAAA,GAMAC,sBAAAA,OACXA,EAAA,OAAO,QACPA,EAAA,SAAS,UACTA,EAAA,MAAM,OACNA,EAAA,WAAW,YACXA,EAAA,QAAQ,SACRA,EAAA,OAAO,QANIA,IAAAA,KAAA,CAAA,CAAA,GASAC,sBAAAA,OACXA,EAAA,MAAM,OACNA,EAAA,KAAK,MACLA,EAAA,OAAO,QACPA,EAAA,aAAa,cACbA,EAAA,kBAAkB,mBAClBA,EAAA,cAAc,eAEdA,EAAA,mBAAmB,oBACnBA,EAAA,WAAW,YAEXA,EAAA,QAAQ,SACRA,EAAA,WAAW,YACXA,EAAA,eAAe,gBACfA,EAAA,mBAAmB,oBACnBA,EAAA,qBAAqB,sBACrBA,EAAA,eAAe,gBACfA,EAAA,iBAAiB,kBACjBA,EAAA,WAAW,YACXA,EAAA,WAAW,YACXA,EAAA,gBAAgB,iBAChBA,EAAA,gBAAgB,iBAChBA,EAAA,gBAAgB,iBAChBA,EAAA,iBAAiB,kBACjBA,EAAA,iBAAiB,kBACjBA,EAAA,iBAAiB,kBACjBA,EAAA,iBAAiB,kBACjBA,EAAA,UAAU,WACVA,EAAA,eAAe,gBACfA,EAAA,cAAc,eACdA,EAAA,UAAU,WACVA,EAAA,gBAAgB,iBAChBA,EAAA,qBAAqB,sBACrBA,EAAA,iBAAiB,kBACjBA,EAAA,YAAY,aACZA,EAAA,SAAS,UACTA,EAAA,eAAe,gBACfA,EAAA,cAAc,eACdA,EAAA,SAAS,UACTA,EAAA,UAAU,WACVA,EAAA,uBAAuB,wBACvBA,EAAA,qBAAqB,sBACrBA,EAAA,WAAW,YACXA,EAAA,WAAW,QACXA,EAAA,eAAe,YACfA,EAAA,iBAAiB,cACjBA,EAAA,gBAAgB,aAChBA,EAAA,MAAM,OACNA,EAAA,MAAK,OACLA,EAAA,mBAAmB,oBACnBA,EAAA,eAAe,gBACfA,EAAA,gBAAgB,iBAChBA,EAAA,YAAY,aACZA,EAAA,gBAAgB,iBAChBA,EAAA,OAAO,QACPA,EAAA,MAAM,OACNA,EAAA,QAAQ,SACRA,EAAA,WAAW,YAzDAA,IAAAA,KAAA,CAAA,CAAA;"}
|
|
@@ -1,300 +0,0 @@
|
|
|
1
|
-
import { default as UiInput } from './ui-input.vue';
|
|
2
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
|
|
3
|
-
import { EInputType, EInputKinds, EAutocomplete } from './_typings';
|
|
4
|
-
export { EInputType, EInputKinds, EAutocomplete } from './_typings';
|
|
5
|
-
export { UiInput };
|
|
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
|
-
type: {
|
|
12
|
-
type: PropType<EInputType>;
|
|
13
|
-
default: EInputType;
|
|
14
|
-
};
|
|
15
|
-
kind: {
|
|
16
|
-
type: PropType<EInputKinds>;
|
|
17
|
-
default: EInputKinds;
|
|
18
|
-
};
|
|
19
|
-
pattern: {
|
|
20
|
-
type: PropType<string>;
|
|
21
|
-
default: undefined;
|
|
22
|
-
};
|
|
23
|
-
disabled: {
|
|
24
|
-
type: PropType<boolean>;
|
|
25
|
-
default: boolean;
|
|
26
|
-
};
|
|
27
|
-
name: {
|
|
28
|
-
type: PropType<string>;
|
|
29
|
-
default: undefined;
|
|
30
|
-
};
|
|
31
|
-
placeholder: {
|
|
32
|
-
type: PropType<string>;
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
modelValue: {
|
|
36
|
-
type: PropType<string | number>;
|
|
37
|
-
required: true;
|
|
38
|
-
default: string;
|
|
39
|
-
};
|
|
40
|
-
heading: {
|
|
41
|
-
type: PropType<string>;
|
|
42
|
-
default: undefined;
|
|
43
|
-
};
|
|
44
|
-
subLabel: {
|
|
45
|
-
type: PropType<string>;
|
|
46
|
-
default: undefined;
|
|
47
|
-
};
|
|
48
|
-
maxlength: {
|
|
49
|
-
type: PropType<string>;
|
|
50
|
-
default: undefined;
|
|
51
|
-
};
|
|
52
|
-
minlength: {
|
|
53
|
-
type: PropType<string>;
|
|
54
|
-
default: undefined;
|
|
55
|
-
};
|
|
56
|
-
focusHandler: {
|
|
57
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
58
|
-
default: () => undefined;
|
|
59
|
-
};
|
|
60
|
-
autocomplete: {
|
|
61
|
-
type: PropType<EAutocomplete>;
|
|
62
|
-
default: undefined;
|
|
63
|
-
};
|
|
64
|
-
}>> & {
|
|
65
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
66
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
67
|
-
"update:modelValue": (...args: any[]) => void;
|
|
68
|
-
}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
69
|
-
type: {
|
|
70
|
-
type: PropType<EInputType>;
|
|
71
|
-
default: EInputType;
|
|
72
|
-
};
|
|
73
|
-
kind: {
|
|
74
|
-
type: PropType<EInputKinds>;
|
|
75
|
-
default: EInputKinds;
|
|
76
|
-
};
|
|
77
|
-
pattern: {
|
|
78
|
-
type: PropType<string>;
|
|
79
|
-
default: undefined;
|
|
80
|
-
};
|
|
81
|
-
disabled: {
|
|
82
|
-
type: PropType<boolean>;
|
|
83
|
-
default: boolean;
|
|
84
|
-
};
|
|
85
|
-
name: {
|
|
86
|
-
type: PropType<string>;
|
|
87
|
-
default: undefined;
|
|
88
|
-
};
|
|
89
|
-
placeholder: {
|
|
90
|
-
type: PropType<string>;
|
|
91
|
-
default: string;
|
|
92
|
-
};
|
|
93
|
-
modelValue: {
|
|
94
|
-
type: PropType<string | number>;
|
|
95
|
-
required: true;
|
|
96
|
-
default: string;
|
|
97
|
-
};
|
|
98
|
-
heading: {
|
|
99
|
-
type: PropType<string>;
|
|
100
|
-
default: undefined;
|
|
101
|
-
};
|
|
102
|
-
subLabel: {
|
|
103
|
-
type: PropType<string>;
|
|
104
|
-
default: undefined;
|
|
105
|
-
};
|
|
106
|
-
maxlength: {
|
|
107
|
-
type: PropType<string>;
|
|
108
|
-
default: undefined;
|
|
109
|
-
};
|
|
110
|
-
minlength: {
|
|
111
|
-
type: PropType<string>;
|
|
112
|
-
default: undefined;
|
|
113
|
-
};
|
|
114
|
-
focusHandler: {
|
|
115
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
116
|
-
default: () => undefined;
|
|
117
|
-
};
|
|
118
|
-
autocomplete: {
|
|
119
|
-
type: PropType<EAutocomplete>;
|
|
120
|
-
default: undefined;
|
|
121
|
-
};
|
|
122
|
-
}>> & {
|
|
123
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
124
|
-
}, {
|
|
125
|
-
type: EInputType;
|
|
126
|
-
kind: EInputKinds;
|
|
127
|
-
pattern: string;
|
|
128
|
-
disabled: boolean;
|
|
129
|
-
name: string;
|
|
130
|
-
placeholder: string;
|
|
131
|
-
modelValue: string | number;
|
|
132
|
-
heading: string;
|
|
133
|
-
subLabel: string;
|
|
134
|
-
maxlength: string;
|
|
135
|
-
minlength: string;
|
|
136
|
-
focusHandler: (e: FocusEvent) => void;
|
|
137
|
-
autocomplete: EAutocomplete;
|
|
138
|
-
}, true, {}, {}, {
|
|
139
|
-
P: {};
|
|
140
|
-
B: {};
|
|
141
|
-
D: {};
|
|
142
|
-
C: {};
|
|
143
|
-
M: {};
|
|
144
|
-
Defaults: {};
|
|
145
|
-
}, Readonly< ExtractPropTypes<{
|
|
146
|
-
type: {
|
|
147
|
-
type: PropType<EInputType>;
|
|
148
|
-
default: EInputType;
|
|
149
|
-
};
|
|
150
|
-
kind: {
|
|
151
|
-
type: PropType<EInputKinds>;
|
|
152
|
-
default: EInputKinds;
|
|
153
|
-
};
|
|
154
|
-
pattern: {
|
|
155
|
-
type: PropType<string>;
|
|
156
|
-
default: undefined;
|
|
157
|
-
};
|
|
158
|
-
disabled: {
|
|
159
|
-
type: PropType<boolean>;
|
|
160
|
-
default: boolean;
|
|
161
|
-
};
|
|
162
|
-
name: {
|
|
163
|
-
type: PropType<string>;
|
|
164
|
-
default: undefined;
|
|
165
|
-
};
|
|
166
|
-
placeholder: {
|
|
167
|
-
type: PropType<string>;
|
|
168
|
-
default: string;
|
|
169
|
-
};
|
|
170
|
-
modelValue: {
|
|
171
|
-
type: PropType<string | number>;
|
|
172
|
-
required: true;
|
|
173
|
-
default: string;
|
|
174
|
-
};
|
|
175
|
-
heading: {
|
|
176
|
-
type: PropType<string>;
|
|
177
|
-
default: undefined;
|
|
178
|
-
};
|
|
179
|
-
subLabel: {
|
|
180
|
-
type: PropType<string>;
|
|
181
|
-
default: undefined;
|
|
182
|
-
};
|
|
183
|
-
maxlength: {
|
|
184
|
-
type: PropType<string>;
|
|
185
|
-
default: undefined;
|
|
186
|
-
};
|
|
187
|
-
minlength: {
|
|
188
|
-
type: PropType<string>;
|
|
189
|
-
default: undefined;
|
|
190
|
-
};
|
|
191
|
-
focusHandler: {
|
|
192
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
193
|
-
default: () => undefined;
|
|
194
|
-
};
|
|
195
|
-
autocomplete: {
|
|
196
|
-
type: PropType<EAutocomplete>;
|
|
197
|
-
default: undefined;
|
|
198
|
-
};
|
|
199
|
-
}>> & {
|
|
200
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
201
|
-
}, {}, {}, {}, {}, {
|
|
202
|
-
type: EInputType;
|
|
203
|
-
kind: EInputKinds;
|
|
204
|
-
pattern: string;
|
|
205
|
-
disabled: boolean;
|
|
206
|
-
name: string;
|
|
207
|
-
placeholder: string;
|
|
208
|
-
modelValue: string | number;
|
|
209
|
-
heading: string;
|
|
210
|
-
subLabel: string;
|
|
211
|
-
maxlength: string;
|
|
212
|
-
minlength: string;
|
|
213
|
-
focusHandler: (e: FocusEvent) => void;
|
|
214
|
-
autocomplete: EAutocomplete;
|
|
215
|
-
}>;
|
|
216
|
-
__isFragment?: never;
|
|
217
|
-
__isTeleport?: never;
|
|
218
|
-
__isSuspense?: never;
|
|
219
|
-
} & ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
220
|
-
type: {
|
|
221
|
-
type: PropType<EInputType>;
|
|
222
|
-
default: EInputType;
|
|
223
|
-
};
|
|
224
|
-
kind: {
|
|
225
|
-
type: PropType<EInputKinds>;
|
|
226
|
-
default: EInputKinds;
|
|
227
|
-
};
|
|
228
|
-
pattern: {
|
|
229
|
-
type: PropType<string>;
|
|
230
|
-
default: undefined;
|
|
231
|
-
};
|
|
232
|
-
disabled: {
|
|
233
|
-
type: PropType<boolean>;
|
|
234
|
-
default: boolean;
|
|
235
|
-
};
|
|
236
|
-
name: {
|
|
237
|
-
type: PropType<string>;
|
|
238
|
-
default: undefined;
|
|
239
|
-
};
|
|
240
|
-
placeholder: {
|
|
241
|
-
type: PropType<string>;
|
|
242
|
-
default: string;
|
|
243
|
-
};
|
|
244
|
-
modelValue: {
|
|
245
|
-
type: PropType<string | number>;
|
|
246
|
-
required: true;
|
|
247
|
-
default: string;
|
|
248
|
-
};
|
|
249
|
-
heading: {
|
|
250
|
-
type: PropType<string>;
|
|
251
|
-
default: undefined;
|
|
252
|
-
};
|
|
253
|
-
subLabel: {
|
|
254
|
-
type: PropType<string>;
|
|
255
|
-
default: undefined;
|
|
256
|
-
};
|
|
257
|
-
maxlength: {
|
|
258
|
-
type: PropType<string>;
|
|
259
|
-
default: undefined;
|
|
260
|
-
};
|
|
261
|
-
minlength: {
|
|
262
|
-
type: PropType<string>;
|
|
263
|
-
default: undefined;
|
|
264
|
-
};
|
|
265
|
-
focusHandler: {
|
|
266
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
267
|
-
default: () => undefined;
|
|
268
|
-
};
|
|
269
|
-
autocomplete: {
|
|
270
|
-
type: PropType<EAutocomplete>;
|
|
271
|
-
default: undefined;
|
|
272
|
-
};
|
|
273
|
-
}>> & {
|
|
274
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
275
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
276
|
-
"update:modelValue": (...args: any[]) => void;
|
|
277
|
-
}, string, {
|
|
278
|
-
type: EInputType;
|
|
279
|
-
kind: EInputKinds;
|
|
280
|
-
pattern: string;
|
|
281
|
-
disabled: boolean;
|
|
282
|
-
name: string;
|
|
283
|
-
placeholder: string;
|
|
284
|
-
modelValue: string | number;
|
|
285
|
-
heading: string;
|
|
286
|
-
subLabel: string;
|
|
287
|
-
maxlength: string;
|
|
288
|
-
minlength: string;
|
|
289
|
-
focusHandler: (e: FocusEvent) => void;
|
|
290
|
-
autocomplete: EAutocomplete;
|
|
291
|
-
}, {}, string, {}> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
292
|
-
$slots: {
|
|
293
|
-
header?(_: {}): any;
|
|
294
|
-
"prefix-icon"?(_: {}): any;
|
|
295
|
-
"postfix-icon"?(_: {}): any;
|
|
296
|
-
subLabel?(_: {}): any;
|
|
297
|
-
};
|
|
298
|
-
});
|
|
299
|
-
export default deprecatedDefault;
|
|
300
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ui-input/index.ts"],"names":[],"mappings":";;AAAA,OAAO,OAAO,MAAM,gBAAgB,CAAC;AAErC,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AACpE,OAAO,EAAE,OAAO,EAAE,CAAC;AAEnB;;GAEG;AACH,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAU,CAAC;AAClC,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import t from "./ui-input.vue.js";
|
|
2
|
-
import { EAutocomplete as n, EInputKinds as r, EInputType as u } from "./_typings.js";
|
|
3
|
-
const p = t;
|
|
4
|
-
export {
|
|
5
|
-
n as EAutocomplete,
|
|
6
|
-
r as EInputKinds,
|
|
7
|
-
u as EInputType,
|
|
8
|
-
t as UiInput,
|
|
9
|
-
p as default
|
|
10
|
-
};
|
|
11
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../src/components/ui-input/index.ts"],"sourcesContent":["import UiInput from \"./ui-input.vue\";\n\nexport { EInputType, EInputKinds, EAutocomplete } from \"./_typings\";\nexport { UiInput };\n\n/**\n * @deprecated The default should not be used - use named import as - import {[name]} from \"ui/[name]\"\n */\nconst deprecatedDefault = UiInput;\nexport default deprecatedDefault;\n"],"names":["deprecatedDefault","UiInput"],"mappings":";;AAQA,MAAMA,IAAoBC;"}
|
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
import { EAutocomplete, EInputKinds, EInputType } from './_typings';
|
|
2
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
|
-
declare function __VLS_template(): {
|
|
4
|
-
slots: {
|
|
5
|
-
header?(_: {}): any;
|
|
6
|
-
"prefix-icon"?(_: {}): any;
|
|
7
|
-
"postfix-icon"?(_: {}): any;
|
|
8
|
-
subLabel?(_: {}): any;
|
|
9
|
-
};
|
|
10
|
-
refs: {};
|
|
11
|
-
attrs: Partial<{}>;
|
|
12
|
-
};
|
|
13
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
-
declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
15
|
-
placeholder?: string;
|
|
16
|
-
modelValue: string | number;
|
|
17
|
-
disabled?: boolean;
|
|
18
|
-
kind?: EInputKinds;
|
|
19
|
-
heading?: string;
|
|
20
|
-
subLabel?: string;
|
|
21
|
-
type?: EInputType;
|
|
22
|
-
pattern?: string;
|
|
23
|
-
maxlength?: string;
|
|
24
|
-
minlength?: string;
|
|
25
|
-
focusHandler?: (e: FocusEvent) => void;
|
|
26
|
-
autocomplete?: EAutocomplete;
|
|
27
|
-
name?: string;
|
|
28
|
-
}>, {
|
|
29
|
-
modelValue: string;
|
|
30
|
-
placeholder: string;
|
|
31
|
-
disabled: boolean;
|
|
32
|
-
autocomplete: undefined;
|
|
33
|
-
name: undefined;
|
|
34
|
-
heading: undefined;
|
|
35
|
-
subLabel: undefined;
|
|
36
|
-
pattern: undefined;
|
|
37
|
-
maxlength: undefined;
|
|
38
|
-
minlength: undefined;
|
|
39
|
-
type: EInputType;
|
|
40
|
-
focusHandler: () => undefined;
|
|
41
|
-
kind: EInputKinds;
|
|
42
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
43
|
-
"update:modelValue": (...args: any[]) => void;
|
|
44
|
-
}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
45
|
-
placeholder?: string;
|
|
46
|
-
modelValue: string | number;
|
|
47
|
-
disabled?: boolean;
|
|
48
|
-
kind?: EInputKinds;
|
|
49
|
-
heading?: string;
|
|
50
|
-
subLabel?: string;
|
|
51
|
-
type?: EInputType;
|
|
52
|
-
pattern?: string;
|
|
53
|
-
maxlength?: string;
|
|
54
|
-
minlength?: string;
|
|
55
|
-
focusHandler?: (e: FocusEvent) => void;
|
|
56
|
-
autocomplete?: EAutocomplete;
|
|
57
|
-
name?: string;
|
|
58
|
-
}>, {
|
|
59
|
-
modelValue: string;
|
|
60
|
-
placeholder: string;
|
|
61
|
-
disabled: boolean;
|
|
62
|
-
autocomplete: undefined;
|
|
63
|
-
name: undefined;
|
|
64
|
-
heading: undefined;
|
|
65
|
-
subLabel: undefined;
|
|
66
|
-
pattern: undefined;
|
|
67
|
-
maxlength: undefined;
|
|
68
|
-
minlength: undefined;
|
|
69
|
-
type: EInputType;
|
|
70
|
-
focusHandler: () => undefined;
|
|
71
|
-
kind: EInputKinds;
|
|
72
|
-
}>>> & {
|
|
73
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
74
|
-
}, {
|
|
75
|
-
type: EInputType;
|
|
76
|
-
kind: EInputKinds;
|
|
77
|
-
pattern: string;
|
|
78
|
-
disabled: boolean;
|
|
79
|
-
name: string;
|
|
80
|
-
placeholder: string;
|
|
81
|
-
modelValue: string | number;
|
|
82
|
-
heading: string;
|
|
83
|
-
subLabel: string;
|
|
84
|
-
maxlength: string;
|
|
85
|
-
minlength: string;
|
|
86
|
-
focusHandler: (e: FocusEvent) => void;
|
|
87
|
-
autocomplete: EAutocomplete;
|
|
88
|
-
}, {}>;
|
|
89
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
90
|
-
export default _default;
|
|
91
|
-
type __VLS_WithDefaults<P, D> = {
|
|
92
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
93
|
-
default: D[K];
|
|
94
|
-
}> : P[K];
|
|
95
|
-
};
|
|
96
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
97
|
-
type __VLS_TypePropsToOption<T> = {
|
|
98
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
99
|
-
type: PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
100
|
-
} : {
|
|
101
|
-
type: PropType<T[K]>;
|
|
102
|
-
required: true;
|
|
103
|
-
};
|
|
104
|
-
};
|
|
105
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
106
|
-
new (): {
|
|
107
|
-
$slots: S;
|
|
108
|
-
};
|
|
109
|
-
};
|
|
110
|
-
type __VLS_PrettifyLocal<T> = {
|
|
111
|
-
[K in keyof T]: T[K];
|
|
112
|
-
} & {};
|
|
113
|
-
//# sourceMappingURL=ui-input.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui-input.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ui-input/ui-input.vue"],"names":[],"mappings":";AA6HC,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAkErE,iBAAS,cAAc;;wBAqFK,GAAG;+BACI,GAAG;gCACF,GAAG;0BACT,GAAG;;;WASnB,OAAO,IAA6B;EAEjD;AAcD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;kBA9KL,MAAM;gBACR,MAAM,GAAG,MAAM;eAChB,OAAO;WACX,WAAW;cACR,MAAM;eACL,MAAM;WACV,UAAU;cACP,MAAM;gBACJ,MAAM;gBACN,MAAM;mBACH,CAAC,CAAC,EAAC,UAAU,KAAK,IAAI;mBACtB,aAAa;WACrB,MAAM;;;;;;;;;;;;;;;;;;kBAZC,MAAM;gBACR,MAAM,GAAG,MAAM;eAChB,OAAO;WACX,WAAW;cACR,MAAM;eACL,MAAM;WACV,UAAU;cACP,MAAM;gBACJ,MAAM;gBACN,MAAM;mBACH,CAAC,CAAC,EAAC,UAAU,KAAK,IAAI;mBACtB,aAAa;WACrB,MAAM;;;;;;;;;;;;;;;;;;UANN,UAAU;UAHV,WAAW;aAIR,MAAM;cALL,OAAO;UAUX,MAAM;iBAZC,MAAM;gBACR,MAAM,GAAG,MAAM;aAGjB,MAAM;cACL,MAAM;eAGL,MAAM;eACN,MAAM;kBACH,CAAC,CAAC,EAAC,UAAU,KAAK,IAAI;kBACtB,aAAa;MA0K5B,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"}
|