@duxweb/dvha-pro 0.0.8 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/component.cjs +1 -1
- package/dist/cjs/components/card/card.cjs +1 -1
- package/dist/cjs/components/card/store.cjs +1 -0
- package/dist/cjs/components/chart/echart.cjs +1 -1
- package/dist/cjs/components/crop/imageCrop.cjs +1 -0
- package/dist/cjs/components/crop/imageCropModal.cjs +1 -0
- package/dist/cjs/components/dashboard/helloBig.cjs +1 -1
- package/dist/cjs/components/data/dynamicData.cjs +1 -0
- package/dist/cjs/components/data/dynamicSelect.cjs +1 -0
- package/dist/cjs/components/data/selectModal.cjs +1 -0
- package/dist/cjs/components/dialog/dialog.cjs +1 -1
- package/dist/cjs/components/drawer/drawer.cjs +1 -1
- package/dist/cjs/components/editor/aiEditor.cjs +1 -0
- package/dist/cjs/components/form/modalForm.cjs +1 -1
- package/dist/cjs/components/form/pageForm.cjs +1 -1
- package/dist/cjs/components/form/settingForm.cjs +1 -1
- package/dist/cjs/components/layout/list.cjs +1 -1
- package/dist/cjs/components/layout/table.cjs +1 -1
- package/dist/cjs/components/level/level.cjs +1 -0
- package/dist/cjs/components/media/media.cjs +1 -1
- package/dist/cjs/components/modal/modal.cjs +1 -1
- package/dist/cjs/components/modal/modalPage.cjs +1 -1
- package/dist/cjs/components/panel/setting.cjs +1 -1
- package/dist/cjs/components/stats/number.cjs +1 -0
- package/dist/cjs/components/stats/realTime.cjs +1 -0
- package/dist/cjs/components/status/blockEmpty.cjs +1 -1
- package/dist/cjs/components/upload/file.cjs +1 -0
- package/dist/cjs/components/upload/image.cjs +1 -0
- package/dist/cjs/components/upload/manage/item.cjs +1 -0
- package/dist/cjs/components/upload/manager.cjs +1 -0
- package/dist/cjs/components/widget/avatar.cjs +1 -0
- package/dist/cjs/components/widget/connect.cjs +1 -1
- package/dist/cjs/components/widget/image.cjs +1 -0
- package/dist/cjs/components/widget/placeholder.cjs +1 -0
- package/dist/cjs/config/uno.cjs +1 -1
- package/dist/cjs/config/validate.cjs +1 -1
- package/dist/cjs/hooks/action.cjs +1 -1
- package/dist/cjs/hooks/dialog.cjs +1 -1
- package/dist/cjs/hooks/download.cjs +1 -0
- package/dist/cjs/hooks/drawer.cjs +1 -1
- package/dist/cjs/hooks/echart.cjs +1 -1
- package/dist/cjs/hooks/image.cjs +1 -0
- package/dist/cjs/hooks/level.cjs +1 -0
- package/dist/cjs/hooks/modal.cjs +1 -1
- package/dist/cjs/hooks/table/copy.cjs +1 -1
- package/dist/cjs/hooks/table/image.cjs +1 -1
- package/dist/cjs/hooks/table/input.cjs +1 -1
- package/dist/cjs/hooks/table/media.cjs +1 -1
- package/dist/cjs/hooks/table.cjs +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/langs/en-US.json.cjs +1 -1
- package/dist/cjs/langs/zh-CN.json.cjs +1 -1
- package/dist/cjs/main.cjs +1 -1
- package/dist/cjs/pages/authLayout.cjs +1 -1
- package/dist/cjs/pages/layout/global.cjs +1 -1
- package/dist/cjs/pages/layout/page.cjs +1 -1
- package/dist/cjs/pages/login.cjs +1 -1
- package/dist/cjs/pages/menu/avatar.cjs +1 -1
- package/dist/cjs/pages/menu/button.cjs +1 -1
- package/dist/cjs/pages/menu/cmd.cjs +1 -1
- package/dist/cjs/pages/menu/main.cjs +1 -1
- package/dist/cjs/pages/menu/mobile.cjs +1 -1
- package/dist/cjs/pages/page.cjs +1 -1
- package/dist/cjs/pages/page404.cjs +1 -1
- package/dist/cjs/pages/pageStatus.cjs +1 -1
- package/dist/cjs/static/images/icon/audio.svg.cjs +1 -0
- package/dist/cjs/static/images/icon/excel.svg.cjs +1 -0
- package/dist/cjs/static/images/icon/file.svg.cjs +1 -0
- package/dist/cjs/static/images/icon/folder.svg.cjs +1 -0
- package/dist/cjs/static/images/icon/pdf.svg.cjs +1 -0
- package/dist/cjs/static/images/icon/ppt.svg.cjs +1 -0
- package/dist/cjs/static/images/icon/video.svg.cjs +1 -0
- package/dist/cjs/static/images/icon/word.svg.cjs +1 -0
- package/dist/cjs/stores/ui.cjs +1 -1
- package/dist/cjs/theme/uno.css.cjs +108 -12
- package/dist/esm/component.js +64 -47
- package/dist/esm/components/card/card.js +22 -21
- package/dist/esm/components/card/store.js +64 -0
- package/dist/esm/components/chart/echart.js +29 -16
- package/dist/esm/components/crop/imageCrop.js +105 -0
- package/dist/esm/components/crop/imageCropModal.js +118 -0
- package/dist/esm/components/dashboard/helloBig.js +3 -2
- package/dist/esm/components/data/dynamicData.js +145 -0
- package/dist/esm/components/data/dynamicSelect.js +109 -0
- package/dist/esm/components/data/selectModal.js +135 -0
- package/dist/esm/components/dialog/dialog.js +50 -38
- package/dist/esm/components/drawer/drawer.js +14 -12
- package/dist/esm/components/editor/aiEditor.js +127 -0
- package/dist/esm/components/form/modalForm.js +66 -40
- package/dist/esm/components/form/pageForm.js +31 -21
- package/dist/esm/components/form/settingForm.js +31 -21
- package/dist/esm/components/layout/list.js +67 -57
- package/dist/esm/components/layout/table.js +59 -49
- package/dist/esm/components/level/level.js +103 -0
- package/dist/esm/components/media/media.js +18 -16
- package/dist/esm/components/modal/modal.js +27 -21
- package/dist/esm/components/modal/modalPage.js +7 -7
- package/dist/esm/components/panel/setting.js +9 -6
- package/dist/esm/components/stats/number.js +49 -0
- package/dist/esm/components/stats/realTime.js +99 -0
- package/dist/esm/components/status/blockEmpty.js +136 -57
- package/dist/esm/components/upload/file.js +258 -0
- package/dist/esm/components/upload/image.js +189 -0
- package/dist/esm/components/upload/manage/item.js +178 -0
- package/dist/esm/components/upload/manager.js +378 -0
- package/dist/esm/components/widget/avatar.js +59 -0
- package/dist/esm/components/widget/connect.js +6 -4
- package/dist/esm/components/widget/image.js +67 -0
- package/dist/esm/components/widget/placeholder.js +83 -0
- package/dist/esm/config/uno.js +6 -6
- package/dist/esm/config/validate.js +2 -2
- package/dist/esm/hooks/action.js +34 -34
- package/dist/esm/hooks/dialog.js +13 -3
- package/dist/esm/hooks/download.js +100 -0
- package/dist/esm/hooks/drawer.js +13 -3
- package/dist/esm/hooks/echart.js +292 -246
- package/dist/esm/hooks/image.js +23 -0
- package/dist/esm/hooks/level.js +75 -0
- package/dist/esm/hooks/modal.js +14 -4
- package/dist/esm/hooks/table/copy.js +14 -11
- package/dist/esm/hooks/table/image.js +55 -17
- package/dist/esm/hooks/table/input.js +35 -33
- package/dist/esm/hooks/table/media.js +17 -7
- package/dist/esm/hooks/table.js +41 -25
- package/dist/esm/index.js +198 -160
- package/dist/esm/langs/en-US.json.js +6 -4
- package/dist/esm/langs/zh-CN.json.js +5 -3
- package/dist/esm/main.js +8 -6
- package/dist/esm/pages/authLayout.js +24 -18
- package/dist/esm/pages/layout/global.js +29 -23
- package/dist/esm/pages/layout/page.js +26 -16
- package/dist/esm/pages/login.js +33 -23
- package/dist/esm/pages/menu/avatar.js +122 -93
- package/dist/esm/pages/menu/button.js +23 -13
- package/dist/esm/pages/menu/cmd.js +41 -31
- package/dist/esm/pages/menu/main.js +38 -28
- package/dist/esm/pages/menu/mobile.js +20 -10
- package/dist/esm/pages/page.js +21 -14
- package/dist/esm/pages/page404.js +15 -5
- package/dist/esm/pages/pageStatus.js +22 -12
- package/dist/esm/static/images/icon/audio.svg.js +4 -0
- package/dist/esm/static/images/icon/excel.svg.js +4 -0
- package/dist/esm/static/images/icon/file.svg.js +4 -0
- package/dist/esm/static/images/icon/folder.svg.js +4 -0
- package/dist/esm/static/images/icon/pdf.svg.js +4 -0
- package/dist/esm/static/images/icon/ppt.svg.js +4 -0
- package/dist/esm/static/images/icon/video.svg.js +4 -0
- package/dist/esm/static/images/icon/word.svg.js +4 -0
- package/dist/esm/stores/ui.js +10 -10
- package/dist/esm/theme/uno.css.js +108 -12
- package/dist/types/components/card/index.d.ts +1 -0
- package/dist/types/components/card/store.d.ts +16 -0
- package/dist/types/components/chart/echart.d.ts +2 -2
- package/dist/types/components/crop/imageCrop.d.ts +40 -0
- package/dist/types/components/crop/imageCropModal.d.ts +7 -0
- package/dist/types/components/crop/index.d.ts +2 -0
- package/dist/types/components/data/dynamicData.d.ts +56 -0
- package/dist/types/components/data/dynamicSelect.d.ts +49 -0
- package/dist/types/components/data/index.d.ts +3 -0
- package/dist/types/components/data/selectModal.d.ts +61 -0
- package/dist/types/components/dialog/dialog.d.ts +2 -0
- package/dist/types/components/editor/aiEditor.d.ts +26 -0
- package/dist/types/components/editor/index.d.ts +1 -0
- package/dist/types/components/index.d.ts +7 -0
- package/dist/types/components/level/index.d.ts +1 -0
- package/dist/types/components/level/level.d.ts +60 -0
- package/dist/types/components/modal/index.d.ts +2 -2
- package/dist/types/components/modal/modal.d.ts +1 -4
- package/dist/types/components/stats/index.d.ts +2 -0
- package/dist/types/components/stats/number.d.ts +50 -0
- package/dist/types/components/stats/realTime.d.ts +56 -0
- package/dist/types/components/upload/file.d.ts +9 -0
- package/dist/types/components/upload/image.d.ts +99 -0
- package/dist/types/components/upload/index.d.ts +4 -0
- package/dist/types/components/upload/manage/item.d.ts +22 -0
- package/dist/types/components/upload/manager.d.ts +37 -0
- package/dist/types/components/widget/avatar.d.ts +159 -0
- package/dist/types/components/widget/image.d.ts +257 -0
- package/dist/types/components/widget/index.d.ts +2 -0
- package/dist/types/components/widget/placeholder.d.ts +22 -0
- package/dist/types/hooks/dialog.d.ts +1 -0
- package/dist/types/hooks/download.d.ts +31 -0
- package/dist/types/hooks/echart.d.ts +14 -0
- package/dist/types/hooks/image.d.ts +3 -0
- package/dist/types/hooks/index.d.ts +3 -0
- package/dist/types/hooks/level.d.ts +19 -0
- package/dist/types/main.d.ts +12 -0
- package/dist/types/static/images/icon/index.d.ts +8 -0
- package/package.json +9 -3
- package/dist/cjs/_virtual/_commonjsHelpers.cjs +0 -1
- package/dist/cjs/_virtual/browser.cjs +0 -1
- package/dist/cjs/_virtual/browser2.cjs +0 -1
- package/dist/cjs/_virtual/sourcemap-codec.umd.cjs +0 -1
- package/dist/cjs/_virtual/sourcemap-codec.umd2.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify-json_tabler@1.2.19/node_modules/@iconify-json/tabler/icons.json.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/customisations/defaults.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/icon/defaults.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/icon/merge.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/icon/transformations.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/icon-set/get-icon.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/icon-set/tree.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/loader/custom.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/loader/loader.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/loader/modern.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/loader/utils.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/svg/build.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/svg/defs.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/svg/size.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/svg/trim.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/svg/url.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@jridgewell_sourcemap-codec@1.5.0/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_core@66.2.3/node_modules/@unocss/core/dist/index.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_extractor-arbitrary-variants@66.2.3/node_modules/@unocss/extractor-arbitrary-variants/dist/index.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_preset-icons@66.2.3/node_modules/@unocss/preset-icons/dist/browser.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_preset-icons@66.2.3/node_modules/@unocss/preset-icons/dist/core.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_preset-icons@66.2.3/node_modules/@unocss/preset-icons/dist/shared/preset-icons.DE2iazBM.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/colors.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/index.cjs +0 -391
- package/dist/cjs/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/postprocess.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/shared/preset-wind4.BgkAsChl.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/shared/preset-wind4.BwwuP5Yw.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/shared/preset-wind4.CYAfjDEV.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/shared/preset-wind4.CgvxUQFi.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/shared/preset-wind4.dDC8WtZ5.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/theme.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@unocss_rule-utils@66.2.3/node_modules/@unocss/rule-utils/dist/index.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@vee-validate_i18n@4.15.1/node_modules/@vee-validate/i18n/dist/locale/en.json.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/@vee-validate_i18n@4.15.1/node_modules/@vee-validate/i18n/dist/locale/zh_CN.json.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/debug@4.4.1/node_modules/debug/src/browser.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/debug@4.4.1/node_modules/debug/src/common.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/destr@2.0.5/node_modules/destr/dist/index.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/magic-string@0.30.17/node_modules/magic-string/dist/magic-string.es.cjs +0 -10
- package/dist/cjs/node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/ofetch@1.4.1/node_modules/ofetch/dist/index.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/ofetch@1.4.1/node_modules/ofetch/dist/shared/ofetch.03887fc3.cjs +0 -1
- package/dist/cjs/node_modules/.pnpm/ufo@1.6.1/node_modules/ufo/dist/index.cjs +0 -1
- package/dist/cjs/static/images/placeholder.png.cjs +0 -1
- package/dist/esm/_virtual/_commonjsHelpers.js +0 -6
- package/dist/esm/_virtual/browser.js +0 -7
- package/dist/esm/_virtual/browser2.js +0 -4
- package/dist/esm/_virtual/sourcemap-codec.umd.js +0 -5
- package/dist/esm/_virtual/sourcemap-codec.umd2.js +0 -4
- package/dist/esm/node_modules/.pnpm/@iconify-json_tabler@1.2.19/node_modules/@iconify-json/tabler/icons.json.js +0 -17
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/customisations/defaults.js +0 -14
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/icon/defaults.js +0 -25
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/icon/merge.js +0 -11
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/icon/transformations.js +0 -9
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/icon-set/get-icon.js +0 -23
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/icon-set/tree.js +0 -17
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/loader/custom.js +0 -40
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/loader/loader.js +0 -46
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/loader/modern.js +0 -55
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/loader/utils.js +0 -38
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/svg/build.js +0 -69
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/svg/defs.js +0 -29
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.js +0 -14
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/svg/size.js +0 -27
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/svg/trim.js +0 -6
- package/dist/esm/node_modules/.pnpm/@iconify_utils@2.3.0/node_modules/@iconify/utils/lib/svg/url.js +0 -6
- package/dist/esm/node_modules/.pnpm/@jridgewell_sourcemap-codec@1.5.0/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +0 -255
- package/dist/esm/node_modules/.pnpm/@unocss_core@66.2.3/node_modules/@unocss/core/dist/index.js +0 -88
- package/dist/esm/node_modules/.pnpm/@unocss_extractor-arbitrary-variants@66.2.3/node_modules/@unocss/extractor-arbitrary-variants/dist/index.js +0 -51
- package/dist/esm/node_modules/.pnpm/@unocss_preset-icons@66.2.3/node_modules/@unocss/preset-icons/dist/browser.js +0 -17
- package/dist/esm/node_modules/.pnpm/@unocss_preset-icons@66.2.3/node_modules/@unocss/preset-icons/dist/core.js +0 -151
- package/dist/esm/node_modules/.pnpm/@unocss_preset-icons@66.2.3/node_modules/@unocss/preset-icons/dist/shared/preset-icons.DE2iazBM.js +0 -8
- package/dist/esm/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/colors.js +0 -322
- package/dist/esm/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/index.js +0 -547
- package/dist/esm/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/postprocess.js +0 -32
- package/dist/esm/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/shared/preset-wind4.BgkAsChl.js +0 -2307
- package/dist/esm/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/shared/preset-wind4.BwwuP5Yw.js +0 -627
- package/dist/esm/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/shared/preset-wind4.CYAfjDEV.js +0 -7
- package/dist/esm/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/shared/preset-wind4.CgvxUQFi.js +0 -588
- package/dist/esm/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/shared/preset-wind4.dDC8WtZ5.js +0 -51
- package/dist/esm/node_modules/.pnpm/@unocss_preset-wind4@66.2.3/node_modules/@unocss/preset-wind4/dist/theme.js +0 -553
- package/dist/esm/node_modules/.pnpm/@unocss_rule-utils@66.2.3/node_modules/@unocss/rule-utils/dist/index.js +0 -632
- package/dist/esm/node_modules/.pnpm/@vee-validate_i18n@4.15.1/node_modules/@vee-validate/i18n/dist/locale/en.json.js +0 -9
- package/dist/esm/node_modules/.pnpm/@vee-validate_i18n@4.15.1/node_modules/@vee-validate/i18n/dist/locale/zh_CN.json.js +0 -9
- package/dist/esm/node_modules/.pnpm/debug@4.4.1/node_modules/debug/src/browser.js +0 -146
- package/dist/esm/node_modules/.pnpm/debug@4.4.1/node_modules/debug/src/common.js +0 -97
- package/dist/esm/node_modules/.pnpm/destr@2.0.5/node_modules/destr/dist/index.js +0 -56
- package/dist/esm/node_modules/.pnpm/magic-string@0.30.17/node_modules/magic-string/dist/magic-string.es.js +0 -608
- package/dist/esm/node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js +0 -85
- package/dist/esm/node_modules/.pnpm/ofetch@1.4.1/node_modules/ofetch/dist/index.js +0 -23
- package/dist/esm/node_modules/.pnpm/ofetch@1.4.1/node_modules/ofetch/dist/shared/ofetch.03887fc3.js +0 -219
- package/dist/esm/node_modules/.pnpm/ufo@1.6.1/node_modules/ufo/dist/index.js +0 -153
- package/dist/esm/static/images/placeholder.png.js +0 -4
|
@@ -1,547 +0,0 @@
|
|
|
1
|
-
import { definePreset as w, uniq as v, toArray as k } from "../../../../../@unocss_core@66.2.3/node_modules/@unocss/core/dist/index.js";
|
|
2
|
-
import { extractorArbitraryVariants as S } from "../../../../../@unocss_extractor-arbitrary-variants@66.2.3/node_modules/@unocss/extractor-arbitrary-variants/dist/index.js";
|
|
3
|
-
import { n as u, t as p, g as x, P as z, k as h, M as b, z as g, m as C } from "./shared/preset-wind4.BwwuP5Yw.js";
|
|
4
|
-
import { alphaPlaceholdersRE as R } from "../../../../../@unocss_rule-utils@66.2.3/node_modules/@unocss/rule-utils/dist/index.js";
|
|
5
|
-
import { postprocessors as A } from "./postprocess.js";
|
|
6
|
-
import { k as $ } from "./shared/preset-wind4.CgvxUQFi.js";
|
|
7
|
-
import { theme as E } from "./theme.js";
|
|
8
|
-
import { s as M } from "./shared/preset-wind4.CYAfjDEV.js";
|
|
9
|
-
import { r as F } from "./shared/preset-wind4.BgkAsChl.js";
|
|
10
|
-
function P() {
|
|
11
|
-
return {
|
|
12
|
-
getCSS: () => {
|
|
13
|
-
if (u.size > 0) {
|
|
14
|
-
const e = "@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b))))", o = "*, ::before, ::after, ::backdrop", i = Array.from(u.entries()).map(([a, l]) => `${a}:${l};`).join("");
|
|
15
|
-
return `${e}{${o}{${i}}}`;
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
layer: "properties"
|
|
19
|
-
};
|
|
20
|
-
}
|
|
21
|
-
const U = `
|
|
22
|
-
/*
|
|
23
|
-
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
24
|
-
2. Remove default margins and padding
|
|
25
|
-
3. Reset all borders.
|
|
26
|
-
*/
|
|
27
|
-
|
|
28
|
-
*,
|
|
29
|
-
::after,
|
|
30
|
-
::before,
|
|
31
|
-
::backdrop,
|
|
32
|
-
::file-selector-button {
|
|
33
|
-
box-sizing: border-box; /* 1 */
|
|
34
|
-
margin: 0; /* 2 */
|
|
35
|
-
padding: 0; /* 2 */
|
|
36
|
-
border: 0 solid; /* 3 */
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
/*
|
|
40
|
-
1. Use a consistent sensible line-height in all browsers.
|
|
41
|
-
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
42
|
-
3. Use a more readable tab size.
|
|
43
|
-
4. Use the user's configured \`sans\` font-family by default.
|
|
44
|
-
5. Use the user's configured \`sans\` font-feature-settings by default.
|
|
45
|
-
6. Use the user's configured \`sans\` font-variation-settings by default.
|
|
46
|
-
7. Disable tap highlights on iOS.
|
|
47
|
-
*/
|
|
48
|
-
|
|
49
|
-
html,
|
|
50
|
-
:host {
|
|
51
|
-
line-height: 1.5; /* 1 */
|
|
52
|
-
-webkit-text-size-adjust: 100%; /* 2 */
|
|
53
|
-
tab-size: 4; /* 3 */
|
|
54
|
-
font-family: var(
|
|
55
|
-
--default-font-family,
|
|
56
|
-
ui-sans-serif,
|
|
57
|
-
system-ui,
|
|
58
|
-
sans-serif,
|
|
59
|
-
'Apple Color Emoji',
|
|
60
|
-
'Segoe UI Emoji',
|
|
61
|
-
'Segoe UI Symbol',
|
|
62
|
-
'Noto Color Emoji'
|
|
63
|
-
); /* 4 */
|
|
64
|
-
font-feature-settings: var(--default-font-featureSettings, normal); /* 5 */
|
|
65
|
-
font-variation-settings: var(--default-font-variationSettings, normal); /* 6 */
|
|
66
|
-
-webkit-tap-highlight-color: transparent; /* 7 */
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
/*
|
|
70
|
-
1. Add the correct height in Firefox.
|
|
71
|
-
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
72
|
-
3. Reset the default border style to a 1px solid border.
|
|
73
|
-
*/
|
|
74
|
-
|
|
75
|
-
hr {
|
|
76
|
-
height: 0; /* 1 */
|
|
77
|
-
color: inherit; /* 2 */
|
|
78
|
-
border-top-width: 1px; /* 3 */
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
/*
|
|
82
|
-
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
83
|
-
*/
|
|
84
|
-
|
|
85
|
-
abbr:where([title]) {
|
|
86
|
-
-webkit-text-decoration: underline dotted;
|
|
87
|
-
text-decoration: underline dotted;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
/*
|
|
91
|
-
Remove the default font size and weight for headings.
|
|
92
|
-
*/
|
|
93
|
-
|
|
94
|
-
h1,
|
|
95
|
-
h2,
|
|
96
|
-
h3,
|
|
97
|
-
h4,
|
|
98
|
-
h5,
|
|
99
|
-
h6 {
|
|
100
|
-
font-size: inherit;
|
|
101
|
-
font-weight: inherit;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
/*
|
|
105
|
-
Reset links to optimize for opt-in styling instead of opt-out.
|
|
106
|
-
*/
|
|
107
|
-
|
|
108
|
-
a {
|
|
109
|
-
color: inherit;
|
|
110
|
-
-webkit-text-decoration: inherit;
|
|
111
|
-
text-decoration: inherit;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
/*
|
|
115
|
-
Add the correct font weight in Edge and Safari.
|
|
116
|
-
*/
|
|
117
|
-
|
|
118
|
-
b,
|
|
119
|
-
strong {
|
|
120
|
-
font-weight: bolder;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
/*
|
|
124
|
-
1. Use the user's configured \`mono\` font-family by default.
|
|
125
|
-
2. Use the user's configured \`mono\` font-feature-settings by default.
|
|
126
|
-
3. Use the user's configured \`mono\` font-variation-settings by default.
|
|
127
|
-
4. Correct the odd \`em\` font sizing in all browsers.
|
|
128
|
-
*/
|
|
129
|
-
|
|
130
|
-
code,
|
|
131
|
-
kbd,
|
|
132
|
-
samp,
|
|
133
|
-
pre {
|
|
134
|
-
font-family: var(
|
|
135
|
-
--default-monoFont-family,
|
|
136
|
-
ui-monospace,
|
|
137
|
-
SFMono-Regular,
|
|
138
|
-
Menlo,
|
|
139
|
-
Monaco,
|
|
140
|
-
Consolas,
|
|
141
|
-
'Liberation Mono',
|
|
142
|
-
'Courier New',
|
|
143
|
-
monospace
|
|
144
|
-
); /* 1 */
|
|
145
|
-
font-feature-settings: var(--default-monoFont-featureSettings, normal); /* 2 */
|
|
146
|
-
font-variation-settings: var(--default-monoFont-variationSettings, normal); /* 3 */
|
|
147
|
-
font-size: 1em; /* 4 */
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
/*
|
|
151
|
-
Add the correct font size in all browsers.
|
|
152
|
-
*/
|
|
153
|
-
|
|
154
|
-
small {
|
|
155
|
-
font-size: 80%;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
/*
|
|
159
|
-
Prevent \`sub\` and \`sup\` elements from affecting the line height in all browsers.
|
|
160
|
-
*/
|
|
161
|
-
|
|
162
|
-
sub,
|
|
163
|
-
sup {
|
|
164
|
-
font-size: 75%;
|
|
165
|
-
line-height: 0;
|
|
166
|
-
position: relative;
|
|
167
|
-
vertical-align: baseline;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
sub {
|
|
171
|
-
bottom: -0.25em;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
sup {
|
|
175
|
-
top: -0.5em;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
/*
|
|
179
|
-
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
|
180
|
-
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
181
|
-
3. Remove gaps between table borders by default.
|
|
182
|
-
*/
|
|
183
|
-
|
|
184
|
-
table {
|
|
185
|
-
text-indent: 0; /* 1 */
|
|
186
|
-
border-color: inherit; /* 2 */
|
|
187
|
-
border-collapse: collapse; /* 3 */
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
/*
|
|
191
|
-
Use the modern Firefox focus style for all focusable elements.
|
|
192
|
-
*/
|
|
193
|
-
|
|
194
|
-
:-moz-focusring {
|
|
195
|
-
outline: auto;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
/*
|
|
199
|
-
Add the correct vertical alignment in Chrome and Firefox.
|
|
200
|
-
*/
|
|
201
|
-
|
|
202
|
-
progress {
|
|
203
|
-
vertical-align: baseline;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
/*
|
|
207
|
-
Add the correct display in Chrome and Safari.
|
|
208
|
-
*/
|
|
209
|
-
|
|
210
|
-
summary {
|
|
211
|
-
display: list-item;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
/*
|
|
215
|
-
Make lists unstyled by default.
|
|
216
|
-
*/
|
|
217
|
-
|
|
218
|
-
ol,
|
|
219
|
-
ul,
|
|
220
|
-
menu {
|
|
221
|
-
list-style: none;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
/*
|
|
225
|
-
1. Make replaced elements \`display: block\` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
226
|
-
2. Add \`vertical-align: middle\` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
227
|
-
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
228
|
-
*/
|
|
229
|
-
|
|
230
|
-
img,
|
|
231
|
-
svg,
|
|
232
|
-
video,
|
|
233
|
-
canvas,
|
|
234
|
-
audio,
|
|
235
|
-
iframe,
|
|
236
|
-
embed,
|
|
237
|
-
object {
|
|
238
|
-
display: block; /* 1 */
|
|
239
|
-
vertical-align: middle; /* 2 */
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
/*
|
|
243
|
-
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
244
|
-
*/
|
|
245
|
-
|
|
246
|
-
img,
|
|
247
|
-
video {
|
|
248
|
-
max-width: 100%;
|
|
249
|
-
height: auto;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
/*
|
|
253
|
-
1. Inherit font styles in all browsers.
|
|
254
|
-
2. Remove border radius in all browsers.
|
|
255
|
-
3. Remove background color in all browsers.
|
|
256
|
-
4. Ensure consistent opacity for disabled states in all browsers.
|
|
257
|
-
*/
|
|
258
|
-
|
|
259
|
-
button,
|
|
260
|
-
input,
|
|
261
|
-
select,
|
|
262
|
-
optgroup,
|
|
263
|
-
textarea,
|
|
264
|
-
::file-selector-button {
|
|
265
|
-
font: inherit; /* 1 */
|
|
266
|
-
font-feature-settings: inherit; /* 1 */
|
|
267
|
-
font-variation-settings: inherit; /* 1 */
|
|
268
|
-
letter-spacing: inherit; /* 1 */
|
|
269
|
-
color: inherit; /* 1 */
|
|
270
|
-
border-radius: 0; /* 2 */
|
|
271
|
-
background-color: transparent; /* 3 */
|
|
272
|
-
opacity: 1; /* 4 */
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
/*
|
|
276
|
-
Restore default font weight.
|
|
277
|
-
*/
|
|
278
|
-
|
|
279
|
-
:where(select:is([multiple], [size])) optgroup {
|
|
280
|
-
font-weight: bolder;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
/*
|
|
284
|
-
Restore indentation.
|
|
285
|
-
*/
|
|
286
|
-
|
|
287
|
-
:where(select:is([multiple], [size])) optgroup option {
|
|
288
|
-
padding-inline-start: 20px;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
/*
|
|
292
|
-
Restore space after button.
|
|
293
|
-
*/
|
|
294
|
-
|
|
295
|
-
::file-selector-button {
|
|
296
|
-
margin-inline-end: 4px;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
/*
|
|
300
|
-
Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
301
|
-
*/
|
|
302
|
-
|
|
303
|
-
::placeholder {
|
|
304
|
-
opacity: 1;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
/*
|
|
308
|
-
Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
|
|
309
|
-
crash when using \`color-mix(…)\` with \`currentcolor\`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
|
|
310
|
-
*/
|
|
311
|
-
|
|
312
|
-
@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
|
|
313
|
-
(contain-intrinsic-size: 1px) /* Safari 17+ */ {
|
|
314
|
-
::placeholder {
|
|
315
|
-
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
/*
|
|
320
|
-
Prevent resizing textareas horizontally by default.
|
|
321
|
-
*/
|
|
322
|
-
|
|
323
|
-
textarea {
|
|
324
|
-
resize: vertical;
|
|
325
|
-
}
|
|
326
|
-
|
|
327
|
-
/*
|
|
328
|
-
Remove the inner padding in Chrome and Safari on macOS.
|
|
329
|
-
*/
|
|
330
|
-
|
|
331
|
-
::-webkit-search-decoration {
|
|
332
|
-
-webkit-appearance: none;
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
/*
|
|
336
|
-
1. Ensure date/time inputs have the same height when empty in iOS Safari.
|
|
337
|
-
2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
|
|
338
|
-
*/
|
|
339
|
-
|
|
340
|
-
::-webkit-date-and-time-value {
|
|
341
|
-
min-height: 1lh; /* 1 */
|
|
342
|
-
text-align: inherit; /* 2 */
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
/*
|
|
346
|
-
Prevent height from changing on date/time inputs in macOS Safari when the input is set to \`display: block\`.
|
|
347
|
-
*/
|
|
348
|
-
|
|
349
|
-
::-webkit-datetime-edit {
|
|
350
|
-
display: inline-flex;
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
/*
|
|
354
|
-
Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
|
|
355
|
-
*/
|
|
356
|
-
|
|
357
|
-
::-webkit-datetime-edit-fields-wrapper {
|
|
358
|
-
padding: 0;
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
::-webkit-datetime-edit,
|
|
362
|
-
::-webkit-datetime-edit-year-field,
|
|
363
|
-
::-webkit-datetime-edit-month-field,
|
|
364
|
-
::-webkit-datetime-edit-day-field,
|
|
365
|
-
::-webkit-datetime-edit-hour-field,
|
|
366
|
-
::-webkit-datetime-edit-minute-field,
|
|
367
|
-
::-webkit-datetime-edit-second-field,
|
|
368
|
-
::-webkit-datetime-edit-millisecond-field,
|
|
369
|
-
::-webkit-datetime-edit-meridiem-field {
|
|
370
|
-
padding-block: 0;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
/*
|
|
374
|
-
Remove the additional \`:invalid\` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
375
|
-
*/
|
|
376
|
-
|
|
377
|
-
:-moz-ui-invalid {
|
|
378
|
-
box-shadow: none;
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
/*
|
|
382
|
-
Correct the inability to style the border radius in iOS Safari.
|
|
383
|
-
*/
|
|
384
|
-
|
|
385
|
-
button,
|
|
386
|
-
input:where([type='button'], [type='reset'], [type='submit']),
|
|
387
|
-
::file-selector-button {
|
|
388
|
-
appearance: button;
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
/*
|
|
392
|
-
Correct the cursor style of increment and decrement buttons in Safari.
|
|
393
|
-
*/
|
|
394
|
-
|
|
395
|
-
::-webkit-inner-spin-button,
|
|
396
|
-
::-webkit-outer-spin-button {
|
|
397
|
-
height: auto;
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
/*
|
|
401
|
-
Make elements with the HTML hidden attribute stay hidden by default.
|
|
402
|
-
*/
|
|
403
|
-
|
|
404
|
-
[hidden]:where(:not([hidden='until-found'])) {
|
|
405
|
-
display: none !important;
|
|
406
|
-
}
|
|
407
|
-
`;
|
|
408
|
-
function T(e) {
|
|
409
|
-
var o;
|
|
410
|
-
if (((o = e.preflights) == null ? void 0 : o.reset) !== !1)
|
|
411
|
-
return {
|
|
412
|
-
getCSS: ({ generator: i }) => (h("font", "sans"), h("font", "mono"), h("default", ["font", "family"]), h("default", ["monoFont", "family"]), b(U, i.config.envMode === "dev")),
|
|
413
|
-
layer: "base"
|
|
414
|
-
};
|
|
415
|
-
}
|
|
416
|
-
const D = [
|
|
417
|
-
"spacing",
|
|
418
|
-
"breakpoint",
|
|
419
|
-
"verticalBreakpoint",
|
|
420
|
-
"shadow",
|
|
421
|
-
"insetShadow",
|
|
422
|
-
"dropShadow",
|
|
423
|
-
"textShadow",
|
|
424
|
-
"animation",
|
|
425
|
-
"property",
|
|
426
|
-
"aria",
|
|
427
|
-
"media",
|
|
428
|
-
"supports"
|
|
429
|
-
];
|
|
430
|
-
function O(e, o) {
|
|
431
|
-
const i = /* @__PURE__ */ new Map([
|
|
432
|
-
["--spacing", e.spacing.DEFAULT]
|
|
433
|
-
]), a = (t) => t.replace(R, "1");
|
|
434
|
-
function l(t, f) {
|
|
435
|
-
for (const r in t)
|
|
436
|
-
Array.isArray(t[r]) ? i.set(`--${f}-${r}`, a(t[r].join(","))) : typeof t[r] == "object" ? l(t[r], `${f}-${r}`) : i.set(`--${f}-${r}`, a(t[r]));
|
|
437
|
-
}
|
|
438
|
-
for (const t in e)
|
|
439
|
-
o.includes(t) && l(e[t], t);
|
|
440
|
-
return i;
|
|
441
|
-
}
|
|
442
|
-
function j(e) {
|
|
443
|
-
return {
|
|
444
|
-
layer: "theme",
|
|
445
|
-
getCSS(o) {
|
|
446
|
-
const { theme: i, generator: a } = o, l = v(a.config.safelist.flatMap((n) => typeof n == "function" ? n(o) : n)), { mode: t, process: f } = e.preflights.theme;
|
|
447
|
-
if (t === !1)
|
|
448
|
-
return;
|
|
449
|
-
if (l.length > 0)
|
|
450
|
-
for (const n of l) {
|
|
451
|
-
const [s, ...c] = n.trim().split(":");
|
|
452
|
-
if (s in i && c.length <= 1) {
|
|
453
|
-
const d = c.length === 0 ? ["DEFAULT"] : c[0].split("-"), m = g(i, s, d);
|
|
454
|
-
typeof m == "string" && (h(s, d), C(m, i));
|
|
455
|
-
}
|
|
456
|
-
}
|
|
457
|
-
let r;
|
|
458
|
-
const y = (n) => {
|
|
459
|
-
if (f)
|
|
460
|
-
for (const d of n)
|
|
461
|
-
for (const m of k(f))
|
|
462
|
-
m(d, o);
|
|
463
|
-
const s = n.map(([d, m]) => d && m ? `${d}: ${m};` : void 0).filter(Boolean);
|
|
464
|
-
if (s.length === 0)
|
|
465
|
-
return;
|
|
466
|
-
const c = s.join(`
|
|
467
|
-
`);
|
|
468
|
-
return b(`
|
|
469
|
-
:root, :host {
|
|
470
|
-
${c}
|
|
471
|
-
}`, a.config.envMode === "dev");
|
|
472
|
-
};
|
|
473
|
-
if (t === "on-demand") {
|
|
474
|
-
if (p.size === 0)
|
|
475
|
-
return;
|
|
476
|
-
r = Array.from(p).map((n) => {
|
|
477
|
-
const [s, c] = n.split(":"), d = g(i, s, c.split("-"));
|
|
478
|
-
if (typeof d == "string")
|
|
479
|
-
return [`--${s}${`${s === "spacing" && c === "DEFAULT" ? "" : `-${c}`}`}`, d];
|
|
480
|
-
}).filter(Boolean);
|
|
481
|
-
} else {
|
|
482
|
-
const n = Object.keys(i).filter((s) => !D.includes(s));
|
|
483
|
-
r = Array.from(O(i, n));
|
|
484
|
-
}
|
|
485
|
-
return y(r);
|
|
486
|
-
}
|
|
487
|
-
};
|
|
488
|
-
}
|
|
489
|
-
const L = (e) => [
|
|
490
|
-
T(e),
|
|
491
|
-
j(e),
|
|
492
|
-
P()
|
|
493
|
-
].filter(Boolean), V = {
|
|
494
|
-
position: [
|
|
495
|
-
"relative",
|
|
496
|
-
"absolute",
|
|
497
|
-
"fixed",
|
|
498
|
-
"sticky",
|
|
499
|
-
"static"
|
|
500
|
-
],
|
|
501
|
-
globalKeyword: x
|
|
502
|
-
}, J = w((e = {}) => {
|
|
503
|
-
var i, a, l, t, f, r;
|
|
504
|
-
e.dark = e.dark ?? "class", e.attributifyPseudo = e.attributifyPseudo ?? !1, e.variablePrefix = e.variablePrefix ?? "un-", e.important = e.important ?? !1;
|
|
505
|
-
const o = typeof ((i = e.preflights) == null ? void 0 : i.theme) == "boolean" || typeof ((a = e.preflights) == null ? void 0 : a.theme) == "string" ? { mode: e.preflights.theme ?? "on-demand" } : { mode: ((t = (l = e.preflights) == null ? void 0 : l.theme) == null ? void 0 : t.mode) ?? "on-demand", ...(f = e.preflights) == null ? void 0 : f.theme };
|
|
506
|
-
return e.preflights = {
|
|
507
|
-
reset: ((r = e.preflights) == null ? void 0 : r.reset) ?? !0,
|
|
508
|
-
theme: o
|
|
509
|
-
}, {
|
|
510
|
-
name: z,
|
|
511
|
-
rules: F,
|
|
512
|
-
shortcuts: M,
|
|
513
|
-
theme: E,
|
|
514
|
-
layers: {
|
|
515
|
-
properties: -200,
|
|
516
|
-
theme: -150,
|
|
517
|
-
base: -100
|
|
518
|
-
},
|
|
519
|
-
preflights: L(e),
|
|
520
|
-
variants: $(e),
|
|
521
|
-
prefix: e.prefix,
|
|
522
|
-
postprocess: A(e),
|
|
523
|
-
extractorDefault: e.arbitraryVariants === !1 ? void 0 : S(),
|
|
524
|
-
autocomplete: {
|
|
525
|
-
shorthands: V
|
|
526
|
-
},
|
|
527
|
-
options: e,
|
|
528
|
-
configResolved() {
|
|
529
|
-
p.clear(), u.clear();
|
|
530
|
-
},
|
|
531
|
-
meta: {
|
|
532
|
-
themeDeps: p,
|
|
533
|
-
propertyDeps: u
|
|
534
|
-
}
|
|
535
|
-
};
|
|
536
|
-
});
|
|
537
|
-
export {
|
|
538
|
-
J as default,
|
|
539
|
-
A as postprocessors,
|
|
540
|
-
L as preflights,
|
|
541
|
-
J as presetWind4,
|
|
542
|
-
F as rules,
|
|
543
|
-
M as shortcuts,
|
|
544
|
-
V as shorthands,
|
|
545
|
-
E as theme,
|
|
546
|
-
$ as variants
|
|
547
|
-
};
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
function s({ important: t }) {
|
|
2
|
-
if (t == null || t === !1)
|
|
3
|
-
return [];
|
|
4
|
-
const n = (r) => r.startsWith(":is(") && r.endsWith(")") ? r : r.includes("::") ? r.replace(/(.*?)((?:\s\*)?::.*)/, ":is($1)$2") : `:is(${r})`;
|
|
5
|
-
return [
|
|
6
|
-
t === !0 ? (r) => {
|
|
7
|
-
r.layer !== "properties" && r.entries.forEach((e) => {
|
|
8
|
-
e[1] != null && !String(e[1]).endsWith("!important") && (e[1] += " !important");
|
|
9
|
-
});
|
|
10
|
-
} : (r) => {
|
|
11
|
-
r.selector.startsWith(t) || (r.selector = `${t} ${n(r.selector)}`);
|
|
12
|
-
}
|
|
13
|
-
];
|
|
14
|
-
}
|
|
15
|
-
function a({ variablePrefix: t }) {
|
|
16
|
-
return t !== "un-" ? [(r) => {
|
|
17
|
-
r.entries.forEach((e) => {
|
|
18
|
-
e[0] = e[0].replace(/^--un-/, `--${t}`), typeof e[1] == "string" && (e[1] = e[1].replace(/var\(--un-/g, `var(--${t}`));
|
|
19
|
-
});
|
|
20
|
-
}] : [];
|
|
21
|
-
}
|
|
22
|
-
function i(t) {
|
|
23
|
-
return [
|
|
24
|
-
s,
|
|
25
|
-
a
|
|
26
|
-
].flatMap((n) => n(t));
|
|
27
|
-
}
|
|
28
|
-
export {
|
|
29
|
-
s as important,
|
|
30
|
-
i as postprocessors,
|
|
31
|
-
a as varPrefix
|
|
32
|
-
};
|