@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,146 +0,0 @@
|
|
|
1
|
-
import { __module as C } from "../../../../../../_virtual/browser2.js";
|
|
2
|
-
import { __require as g } from "./common.js";
|
|
3
|
-
var F;
|
|
4
|
-
function p() {
|
|
5
|
-
return F ? C.exports : (F = 1, function(t, r) {
|
|
6
|
-
r.formatArgs = u, r.save = c, r.load = d, r.useColors = a, r.storage = l(), r.destroy = /* @__PURE__ */ (() => {
|
|
7
|
-
let e = !1;
|
|
8
|
-
return () => {
|
|
9
|
-
e || (e = !0, console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."));
|
|
10
|
-
};
|
|
11
|
-
})(), r.colors = [
|
|
12
|
-
"#0000CC",
|
|
13
|
-
"#0000FF",
|
|
14
|
-
"#0033CC",
|
|
15
|
-
"#0033FF",
|
|
16
|
-
"#0066CC",
|
|
17
|
-
"#0066FF",
|
|
18
|
-
"#0099CC",
|
|
19
|
-
"#0099FF",
|
|
20
|
-
"#00CC00",
|
|
21
|
-
"#00CC33",
|
|
22
|
-
"#00CC66",
|
|
23
|
-
"#00CC99",
|
|
24
|
-
"#00CCCC",
|
|
25
|
-
"#00CCFF",
|
|
26
|
-
"#3300CC",
|
|
27
|
-
"#3300FF",
|
|
28
|
-
"#3333CC",
|
|
29
|
-
"#3333FF",
|
|
30
|
-
"#3366CC",
|
|
31
|
-
"#3366FF",
|
|
32
|
-
"#3399CC",
|
|
33
|
-
"#3399FF",
|
|
34
|
-
"#33CC00",
|
|
35
|
-
"#33CC33",
|
|
36
|
-
"#33CC66",
|
|
37
|
-
"#33CC99",
|
|
38
|
-
"#33CCCC",
|
|
39
|
-
"#33CCFF",
|
|
40
|
-
"#6600CC",
|
|
41
|
-
"#6600FF",
|
|
42
|
-
"#6633CC",
|
|
43
|
-
"#6633FF",
|
|
44
|
-
"#66CC00",
|
|
45
|
-
"#66CC33",
|
|
46
|
-
"#9900CC",
|
|
47
|
-
"#9900FF",
|
|
48
|
-
"#9933CC",
|
|
49
|
-
"#9933FF",
|
|
50
|
-
"#99CC00",
|
|
51
|
-
"#99CC33",
|
|
52
|
-
"#CC0000",
|
|
53
|
-
"#CC0033",
|
|
54
|
-
"#CC0066",
|
|
55
|
-
"#CC0099",
|
|
56
|
-
"#CC00CC",
|
|
57
|
-
"#CC00FF",
|
|
58
|
-
"#CC3300",
|
|
59
|
-
"#CC3333",
|
|
60
|
-
"#CC3366",
|
|
61
|
-
"#CC3399",
|
|
62
|
-
"#CC33CC",
|
|
63
|
-
"#CC33FF",
|
|
64
|
-
"#CC6600",
|
|
65
|
-
"#CC6633",
|
|
66
|
-
"#CC9900",
|
|
67
|
-
"#CC9933",
|
|
68
|
-
"#CCCC00",
|
|
69
|
-
"#CCCC33",
|
|
70
|
-
"#FF0000",
|
|
71
|
-
"#FF0033",
|
|
72
|
-
"#FF0066",
|
|
73
|
-
"#FF0099",
|
|
74
|
-
"#FF00CC",
|
|
75
|
-
"#FF00FF",
|
|
76
|
-
"#FF3300",
|
|
77
|
-
"#FF3333",
|
|
78
|
-
"#FF3366",
|
|
79
|
-
"#FF3399",
|
|
80
|
-
"#FF33CC",
|
|
81
|
-
"#FF33FF",
|
|
82
|
-
"#FF6600",
|
|
83
|
-
"#FF6633",
|
|
84
|
-
"#FF9900",
|
|
85
|
-
"#FF9933",
|
|
86
|
-
"#FFCC00",
|
|
87
|
-
"#FFCC33"
|
|
88
|
-
];
|
|
89
|
-
function a() {
|
|
90
|
-
if (typeof window < "u" && window.process && (window.process.type === "renderer" || window.process.__nwjs))
|
|
91
|
-
return !0;
|
|
92
|
-
if (typeof navigator < "u" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))
|
|
93
|
-
return !1;
|
|
94
|
-
let e;
|
|
95
|
-
return typeof document < "u" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773
|
|
96
|
-
typeof window < "u" && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31?
|
|
97
|
-
// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
|
|
98
|
-
typeof navigator < "u" && navigator.userAgent && (e = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(e[1], 10) >= 31 || // Double check webkit in userAgent just in case we are in a worker
|
|
99
|
-
typeof navigator < "u" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
|
100
|
-
}
|
|
101
|
-
function u(e) {
|
|
102
|
-
if (e[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + e[0] + (this.useColors ? "%c " : " ") + "+" + t.exports.humanize(this.diff), !this.useColors)
|
|
103
|
-
return;
|
|
104
|
-
const o = "color: " + this.color;
|
|
105
|
-
e.splice(1, 0, o, "color: inherit");
|
|
106
|
-
let n = 0, s = 0;
|
|
107
|
-
e[0].replace(/%[a-zA-Z%]/g, (i) => {
|
|
108
|
-
i !== "%%" && (n++, i === "%c" && (s = n));
|
|
109
|
-
}), e.splice(s, 0, o);
|
|
110
|
-
}
|
|
111
|
-
r.log = console.debug || console.log || (() => {
|
|
112
|
-
});
|
|
113
|
-
function c(e) {
|
|
114
|
-
try {
|
|
115
|
-
e ? r.storage.setItem("debug", e) : r.storage.removeItem("debug");
|
|
116
|
-
} catch {
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
function d() {
|
|
120
|
-
let e;
|
|
121
|
-
try {
|
|
122
|
-
e = r.storage.getItem("debug") || r.storage.getItem("DEBUG");
|
|
123
|
-
} catch {
|
|
124
|
-
}
|
|
125
|
-
return !e && typeof process < "u" && "env" in process && (e = process.env.DEBUG), e;
|
|
126
|
-
}
|
|
127
|
-
function l() {
|
|
128
|
-
try {
|
|
129
|
-
return localStorage;
|
|
130
|
-
} catch {
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
t.exports = g()(r);
|
|
134
|
-
const { formatters: f } = t.exports;
|
|
135
|
-
f.j = function(e) {
|
|
136
|
-
try {
|
|
137
|
-
return JSON.stringify(e);
|
|
138
|
-
} catch (o) {
|
|
139
|
-
return "[UnexpectedJSONParseError]: " + o.message;
|
|
140
|
-
}
|
|
141
|
-
};
|
|
142
|
-
}(C, C.exports), C.exports);
|
|
143
|
-
}
|
|
144
|
-
export {
|
|
145
|
-
p as __require
|
|
146
|
-
};
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
import { __require as _ } from "../../../../ms@2.1.3/node_modules/ms/index.js";
|
|
2
|
-
var d, m;
|
|
3
|
-
function z() {
|
|
4
|
-
if (m) return d;
|
|
5
|
-
m = 1;
|
|
6
|
-
function g(b) {
|
|
7
|
-
e.debug = e, e.default = e, e.coerce = I, e.disable = k, e.enable = x, e.enabled = w, e.humanize = _(), e.destroy = q, Object.keys(b).forEach((n) => {
|
|
8
|
-
e[n] = b[n];
|
|
9
|
-
}), e.names = [], e.skips = [], e.formatters = {};
|
|
10
|
-
function y(n) {
|
|
11
|
-
let t = 0;
|
|
12
|
-
for (let r = 0; r < n.length; r++)
|
|
13
|
-
t = (t << 5) - t + n.charCodeAt(r), t |= 0;
|
|
14
|
-
return e.colors[Math.abs(t) % e.colors.length];
|
|
15
|
-
}
|
|
16
|
-
e.selectColor = y;
|
|
17
|
-
function e(n) {
|
|
18
|
-
let t, r = null, o, f;
|
|
19
|
-
function s(...l) {
|
|
20
|
-
if (!s.enabled)
|
|
21
|
-
return;
|
|
22
|
-
const i = s, u = Number(/* @__PURE__ */ new Date()), v = u - (t || u);
|
|
23
|
-
i.diff = v, i.prev = t, i.curr = u, t = u, l[0] = e.coerce(l[0]), typeof l[0] != "string" && l.unshift("%O");
|
|
24
|
-
let c = 0;
|
|
25
|
-
l[0] = l[0].replace(/%([a-zA-Z%])/g, (a, j) => {
|
|
26
|
-
if (a === "%%")
|
|
27
|
-
return "%";
|
|
28
|
-
c++;
|
|
29
|
-
const p = e.formatters[j];
|
|
30
|
-
if (typeof p == "function") {
|
|
31
|
-
const O = l[c];
|
|
32
|
-
a = p.call(i, O), l.splice(c, 1), c--;
|
|
33
|
-
}
|
|
34
|
-
return a;
|
|
35
|
-
}), e.formatArgs.call(i, l), (i.log || e.log).apply(i, l);
|
|
36
|
-
}
|
|
37
|
-
return s.namespace = n, s.useColors = e.useColors(), s.color = e.selectColor(n), s.extend = C, s.destroy = e.destroy, Object.defineProperty(s, "enabled", {
|
|
38
|
-
enumerable: !0,
|
|
39
|
-
configurable: !1,
|
|
40
|
-
get: () => r !== null ? r : (o !== e.namespaces && (o = e.namespaces, f = e.enabled(n)), f),
|
|
41
|
-
set: (l) => {
|
|
42
|
-
r = l;
|
|
43
|
-
}
|
|
44
|
-
}), typeof e.init == "function" && e.init(s), s;
|
|
45
|
-
}
|
|
46
|
-
function C(n, t) {
|
|
47
|
-
const r = e(this.namespace + (typeof t > "u" ? ":" : t) + n);
|
|
48
|
-
return r.log = this.log, r;
|
|
49
|
-
}
|
|
50
|
-
function x(n) {
|
|
51
|
-
e.save(n), e.namespaces = n, e.names = [], e.skips = [];
|
|
52
|
-
const t = (typeof n == "string" ? n : "").trim().replace(/\s+/g, ",").split(",").filter(Boolean);
|
|
53
|
-
for (const r of t)
|
|
54
|
-
r[0] === "-" ? e.skips.push(r.slice(1)) : e.names.push(r);
|
|
55
|
-
}
|
|
56
|
-
function h(n, t) {
|
|
57
|
-
let r = 0, o = 0, f = -1, s = 0;
|
|
58
|
-
for (; r < n.length; )
|
|
59
|
-
if (o < t.length && (t[o] === n[r] || t[o] === "*"))
|
|
60
|
-
t[o] === "*" ? (f = o, s = r, o++) : (r++, o++);
|
|
61
|
-
else if (f !== -1)
|
|
62
|
-
o = f + 1, s++, r = s;
|
|
63
|
-
else
|
|
64
|
-
return !1;
|
|
65
|
-
for (; o < t.length && t[o] === "*"; )
|
|
66
|
-
o++;
|
|
67
|
-
return o === t.length;
|
|
68
|
-
}
|
|
69
|
-
function k() {
|
|
70
|
-
const n = [
|
|
71
|
-
...e.names,
|
|
72
|
-
...e.skips.map((t) => "-" + t)
|
|
73
|
-
].join(",");
|
|
74
|
-
return e.enable(""), n;
|
|
75
|
-
}
|
|
76
|
-
function w(n) {
|
|
77
|
-
for (const t of e.skips)
|
|
78
|
-
if (h(n, t))
|
|
79
|
-
return !1;
|
|
80
|
-
for (const t of e.names)
|
|
81
|
-
if (h(n, t))
|
|
82
|
-
return !0;
|
|
83
|
-
return !1;
|
|
84
|
-
}
|
|
85
|
-
function I(n) {
|
|
86
|
-
return n instanceof Error ? n.stack || n.message : n;
|
|
87
|
-
}
|
|
88
|
-
function q() {
|
|
89
|
-
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
90
|
-
}
|
|
91
|
-
return e.enable(e.load()), e;
|
|
92
|
-
}
|
|
93
|
-
return d = g, d;
|
|
94
|
-
}
|
|
95
|
-
export {
|
|
96
|
-
z as __require
|
|
97
|
-
};
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
const o = /"(?:_|\\u0{2}5[Ff]){2}(?:p|\\u0{2}70)(?:r|\\u0{2}72)(?:o|\\u0{2}6[Ff])(?:t|\\u0{2}74)(?:o|\\u0{2}6[Ff])(?:_|\\u0{2}5[Ff]){2}"\s*:/, s = /"(?:c|\\u0063)(?:o|\\u006[Ff])(?:n|\\u006[Ee])(?:s|\\u0073)(?:t|\\u0074)(?:r|\\u0072)(?:u|\\u0075)(?:c|\\u0063)(?:t|\\u0074)(?:o|\\u006[Ff])(?:r|\\u0072)"\s*:/, u = /^\s*["[{]|^\s*-?\d{1,16}(\.\d{1,17})?([Ee][+-]?\d+)?\s*$/;
|
|
2
|
-
function i(r, t) {
|
|
3
|
-
if (r === "__proto__" || r === "constructor" && t && typeof t == "object" && "prototype" in t) {
|
|
4
|
-
c(r);
|
|
5
|
-
return;
|
|
6
|
-
}
|
|
7
|
-
return t;
|
|
8
|
-
}
|
|
9
|
-
function c(r) {
|
|
10
|
-
console.warn(`[destr] Dropping "${r}" key to prevent prototype pollution.`);
|
|
11
|
-
}
|
|
12
|
-
function f(r, t = {}) {
|
|
13
|
-
if (typeof r != "string")
|
|
14
|
-
return r;
|
|
15
|
-
if (r[0] === '"' && r[r.length - 1] === '"' && r.indexOf("\\") === -1)
|
|
16
|
-
return r.slice(1, -1);
|
|
17
|
-
const n = r.trim();
|
|
18
|
-
if (n.length <= 9)
|
|
19
|
-
switch (n.toLowerCase()) {
|
|
20
|
-
case "true":
|
|
21
|
-
return !0;
|
|
22
|
-
case "false":
|
|
23
|
-
return !1;
|
|
24
|
-
case "undefined":
|
|
25
|
-
return;
|
|
26
|
-
case "null":
|
|
27
|
-
return null;
|
|
28
|
-
case "nan":
|
|
29
|
-
return Number.NaN;
|
|
30
|
-
case "infinity":
|
|
31
|
-
return Number.POSITIVE_INFINITY;
|
|
32
|
-
case "-infinity":
|
|
33
|
-
return Number.NEGATIVE_INFINITY;
|
|
34
|
-
}
|
|
35
|
-
if (!u.test(r)) {
|
|
36
|
-
if (t.strict)
|
|
37
|
-
throw new SyntaxError("[destr] Invalid JSON");
|
|
38
|
-
return r;
|
|
39
|
-
}
|
|
40
|
-
try {
|
|
41
|
-
if (o.test(r) || s.test(r)) {
|
|
42
|
-
if (t.strict)
|
|
43
|
-
throw new Error("[destr] Possible prototype pollution");
|
|
44
|
-
return JSON.parse(r, i);
|
|
45
|
-
}
|
|
46
|
-
return JSON.parse(r);
|
|
47
|
-
} catch (e) {
|
|
48
|
-
if (t.strict)
|
|
49
|
-
throw e;
|
|
50
|
-
return r;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
export {
|
|
54
|
-
f as default,
|
|
55
|
-
f as destr
|
|
56
|
-
};
|