@duxweb/dvha-pro 0.0.8 → 1.0.15
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 +129 -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,5 +1,5 @@
|
|
|
1
1
|
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const r=`/* layer: properties */
|
|
2
|
-
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))){*, ::before, ::after, ::backdrop{--un-text-opacity:100%;--un-bg-opacity:100%;--un-divide-
|
|
2
|
+
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))){*, ::before, ::after, ::backdrop{--un-text-opacity:100%;--un-bg-opacity:100%;--un-from-opacity:100%;--un-divide-y-reverse:0;--un-border-style:solid;--un-divide-x-reverse:0;--un-divide-opacity:100%;--un-shadow-opacity:100%;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-border-opacity:100%;--un-to-opacity:100%;--un-outline-style:solid;--un-fill-opacity:100%;}}
|
|
3
3
|
@property --un-text-opacity{syntax:"<percentage>";inherits:false;initial-value:100%;}
|
|
4
4
|
@property --un-outline-style{syntax:"*";inherits:false;initial-value:solid;}
|
|
5
5
|
@property --un-border-opacity{syntax:"<percentage>";inherits:false;initial-value:100%;}
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
@property --un-translate-z{syntax:"*";inherits:false;initial-value:0;}
|
|
23
23
|
@property --un-ease{syntax:"*";inherits:false;}
|
|
24
24
|
@property --un-fill-opacity{syntax:"<percentage>";inherits:false;initial-value:100%;}
|
|
25
|
+
@property --un-from-opacity{syntax:"<percentage>";inherits:false;initial-value:100%;}
|
|
25
26
|
@property --un-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000;}
|
|
26
27
|
@property --un-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%;}
|
|
27
28
|
@property --un-gradient-position{syntax:"*";inherits:false;}
|
|
@@ -924,9 +925,12 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
924
925
|
.i-tabler\\:circle-x-filled{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M17 3.34a10 10 0 1 1-14.995 8.984L2 12l.005-.324A10 10 0 0 1 17 3.34m-6.489 5.8a1 1 0 0 0-1.218 1.567L10.585 12l-1.292 1.293l-.083.094a1 1 0 0 0 1.497 1.32L12 13.415l1.293 1.292l.094.083a1 1 0 0 0 1.32-1.497L13.415 12l1.292-1.293l.083-.094a1 1 0 0 0-1.497-1.32L12 10.585l-1.293-1.292l-.094-.083z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
925
926
|
.i-tabler\\:columns{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6h5.5M4 10h5.5M4 14h5.5M4 18h5.5m5-12H20m-5.5 4H20m-5.5 4H20m-5.5 4H20'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
926
927
|
.i-tabler\\:copy{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M7 9.667A2.667 2.667 0 0 1 9.667 7h8.666A2.667 2.667 0 0 1 21 9.667v8.666A2.667 2.667 0 0 1 18.333 21H9.667A2.667 2.667 0 0 1 7 18.333z'/%3E%3Cpath d='M4.012 16.737A2 2 0 0 1 3 15V5c0-1.1.9-2 2-2h10c.75 0 1.158.385 1.5 1'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
928
|
+
.i-tabler\\:cursor-text{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 12h4M9 4a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3m6-16a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
927
929
|
.i-tabler\\:database-export{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M4 6c0 1.657 3.582 3 8 3s8-1.343 8-3s-3.582-3-8-3s-8 1.343-8 3'/%3E%3Cpath d='M4 6v6c0 1.657 3.582 3 8 3c1.118 0 2.183-.086 3.15-.241M20 12V6'/%3E%3Cpath d='M4 12v6c0 1.657 3.582 3 8 3q.235 0 .466-.005M16 19h6m-3-3l3 3l-3 3'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
928
930
|
.i-tabler\\:database-import{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M4 6c0 1.657 3.582 3 8 3s8-1.343 8-3s-3.582-3-8-3s-8 1.343-8 3'/%3E%3Cpath d='M4 6v6c0 1.657 3.582 3 8 3c.856 0 1.68-.05 2.454-.144M20 12V6'/%3E%3Cpath d='M4 12v6c0 1.657 3.582 3 8 3q.256 0 .51-.006M19 22v-6m3 3l-3-3l-3 3'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
931
|
+
.i-tabler\\:device-desktop-up{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13.5 16H4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v7.5M19 22v-6m3 3l-3-3l-3 3m-9 1h5m-3-4v4'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
929
932
|
.i-tabler\\:dots-vertical{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11 12a1 1 0 1 0 2 0a1 1 0 1 0-2 0m0 7a1 1 0 1 0 2 0a1 1 0 1 0-2 0m0-14a1 1 0 1 0 2 0a1 1 0 1 0-2 0'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
933
|
+
.i-tabler\\:download{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2M7 11l5 5l5-5m-5-7v12'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
930
934
|
.i-tabler\\:exclamation-circle-filled{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M17 3.34A10 10 0 1 1 2 12l.005-.324A10 10 0 0 1 17 3.34M12 15a1 1 0 0 0-1 1v.01a1 1 0 0 0 2 0V16a1 1 0 0 0-1-1m0-7a1 1 0 0 0-1 1v4a1 1 0 0 0 2 0V9a1 1 0 0 0-1-1'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
931
935
|
.i-tabler\\:eye{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10 12a2 2 0 1 0 4 0a2 2 0 0 0-4 0'/%3E%3Cpath d='M21 12q-3.6 6-9 6t-9-6q3.6-6 9-6t9 6'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
932
936
|
.i-tabler\\:eye-off{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10.585 10.587a2 2 0 0 0 2.829 2.828'/%3E%3Cpath d='M16.681 16.673A8.7 8.7 0 0 1 12 18q-5.4 0-9-6q1.908-3.18 4.32-4.674m2.86-1.146A9 9 0 0 1 12 6q5.4 0 9 6q-1 1.665-2.138 2.87M3 3l18 18'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
@@ -945,15 +949,41 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
945
949
|
.i-tabler\\:moon{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 3h.393a7.5 7.5 0 0 0 7.92 12.446A9 9 0 1 1 12 2.992z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
946
950
|
.i-tabler\\:palette{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 21a9 9 0 0 1 0-18c4.97 0 9 3.582 9 8c0 1.06-.474 2.078-1.318 2.828S17.693 15 16.5 15H14a2 2 0 0 0-1 3.75A1.3 1.3 0 0 1 12 21'/%3E%3Cpath d='M7.5 10.5a1 1 0 1 0 2 0a1 1 0 1 0-2 0m4-3a1 1 0 1 0 2 0a1 1 0 1 0-2 0m4 3a1 1 0 1 0 2 0a1 1 0 1 0-2 0'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
947
951
|
.i-tabler\\:pencil{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 20h4L18.5 9.5a2.828 2.828 0 1 0-4-4L4 16zm9.5-13.5l4 4'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
952
|
+
.i-tabler\\:pencil-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 20h4L18.5 9.5a2.828 2.828 0 1 0-4-4L4 16zm9.5-13.5l4 4M19 16v6m3-3l-3 3l-3-3'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
953
|
+
.i-tabler\\:photo{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M15 8h.01M3 6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3z'/%3E%3Cpath d='m3 16l5-5c.928-.893 2.072-.893 3 0l5 5'/%3E%3Cpath d='m14 14l1-1c.928-.893 2.072-.893 3 0l3 3'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
948
954
|
.i-tabler\\:pinned{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 4v6l-2 4v2h10v-2l-2-4V4m-3 12v5M8 4h8'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
955
|
+
.i-tabler\\:plus{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 5v14m-7-7h14'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
949
956
|
.i-tabler\\:refresh{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M20 11A8.1 8.1 0 0 0 4.5 9M4 5v4h4m-4 4a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
957
|
+
.i-tabler\\:rotate{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19.95 11a8 8 0 1 0-.5 4m.5 5v-5h-5'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
958
|
+
.i-tabler\\:rotate-clockwise{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4.05 11a8 8 0 1 1 .5 4m-.5 5v-5h5'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
950
959
|
.i-tabler\\:search{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 10a7 7 0 1 0 14 0a7 7 0 1 0-14 0m18 11l-6-6'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
951
960
|
.i-tabler\\:send{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 14L21 3m0 0l-6.5 18a.55.55 0 0 1-1 0L10 14l-7-3.5a.55.55 0 0 1 0-1z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
952
961
|
.i-tabler\\:sun{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 12a4 4 0 1 0 8 0a4 4 0 1 0-8 0m-5 0h1m8-9v1m8 8h1m-9 8v1M5.6 5.6l.7.7m12.1-.7l-.7.7m0 11.4l.7.7m-12.1-.7l-.7.7'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
953
962
|
.i-tabler\\:trash{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 7h16m-10 4v6m4-6v6M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2l1-12M9 7V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
963
|
+
.i-tabler\\:upload{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2M7 9l5-5l5 5m-5-5v12'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
954
964
|
.i-tabler\\:user{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7a4 4 0 1 0 8 0a4 4 0 0 0-8 0M6 21v-2a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v2'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
955
965
|
.i-tabler\\:x{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
966
|
+
.i-tabler\\:zoom-in{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 10a7 7 0 1 0 14 0a7 7 0 1 0-14 0m4 0h6m-3-3v6m11 8l-6-6'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
967
|
+
.i-tabler\\:zoom-out{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 10a7 7 0 1 0 14 0a7 7 0 1 0-14 0m4 0h6m8 11l-6-6'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
|
|
968
|
+
/* layer: shortcuts */
|
|
969
|
+
.container{width:100%;}
|
|
970
|
+
@media (min-width: 40rem){
|
|
971
|
+
.container{max-width:40rem;}
|
|
972
|
+
}
|
|
973
|
+
@media (min-width: 48rem){
|
|
974
|
+
.container{max-width:48rem;}
|
|
975
|
+
}
|
|
976
|
+
@media (min-width: 64rem){
|
|
977
|
+
.container{max-width:64rem;}
|
|
978
|
+
}
|
|
979
|
+
@media (min-width: 80rem){
|
|
980
|
+
.container{max-width:80rem;}
|
|
981
|
+
}
|
|
982
|
+
@media (min-width: 96rem){
|
|
983
|
+
.container{max-width:96rem;}
|
|
984
|
+
}
|
|
956
985
|
/* layer: default */
|
|
986
|
+
.text-2xl{font-size:var(--text-2xl-fontSize);line-height:var(--un-leading, var(--text-2xl-lineHeight));}
|
|
957
987
|
.text-8px{font-size:8px;}
|
|
958
988
|
.text-base{font-size:var(--text-base-fontSize);line-height:var(--un-leading, var(--text-base-lineHeight));}
|
|
959
989
|
.text-base\\/5{font-size:var(--text-base-fontSize);line-height:1.25rem;}
|
|
@@ -964,20 +994,27 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
964
994
|
.text-error{color:color-mix(in srgb, var(--colors-error-DEFAULT) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-error)) var(--un-text-opacity, 100%), transparent) */;}
|
|
965
995
|
.text-gray-300{color:color-mix(in srgb, var(--colors-gray-300) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-300)) var(--un-text-opacity, 100%), transparent) */;}
|
|
966
996
|
.text-gray-500{color:color-mix(in srgb, var(--colors-gray-500) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-500)) var(--un-text-opacity, 100%), transparent) */;}
|
|
997
|
+
.text-info{color:color-mix(in srgb, var(--colors-info-DEFAULT) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-info)) var(--un-text-opacity, 100%), transparent) */;}
|
|
967
998
|
.text-primary{color:color-mix(in srgb, var(--colors-primary-DEFAULT) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
968
999
|
.text-success{color:color-mix(in srgb, var(--colors-success-DEFAULT) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-success)) var(--un-text-opacity, 100%), transparent) */;}
|
|
969
1000
|
.text-warning{color:color-mix(in srgb, var(--colors-warning-DEFAULT) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-warning)) var(--un-text-opacity, 100%), transparent) */;}
|
|
970
1001
|
.text-white{color:color-mix(in srgb, var(--colors-white-DEFAULT) var(--un-text-opacity), transparent) /* rgb(var(--ui-color-white)) */;}
|
|
1002
|
+
.text-white\\/90{color:color-mix(in srgb, var(--colors-white-DEFAULT) 90%, transparent) /* rgb(var(--ui-color-white)) */;}
|
|
971
1003
|
.hover\\:text-primary:hover{color:color-mix(in srgb, var(--colors-primary-DEFAULT) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
972
1004
|
.font-bold{--un-font-weight:var(--fontWeight-bold);font-weight:var(--fontWeight-bold);}
|
|
973
1005
|
.font-medium{--un-font-weight:var(--fontWeight-medium);font-weight:var(--fontWeight-medium);}
|
|
974
1006
|
.font-mono{font-family:var(--font-mono);}
|
|
975
1007
|
.tab{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}
|
|
976
|
-
.
|
|
977
|
-
.
|
|
978
|
-
.
|
|
1008
|
+
.m-0\\.7{margin:calc(var(--spacing) * 0.7);}
|
|
1009
|
+
.m-118\\.2{margin:calc(var(--spacing) * 118.2);}
|
|
1010
|
+
.m-302\\.2{margin:calc(var(--spacing) * 302.2);}
|
|
1011
|
+
.m14{margin:calc(var(--spacing) * 14);}
|
|
1012
|
+
.m146\\.8{margin:calc(var(--spacing) * 146.8);}
|
|
1013
|
+
.m29\\.3{margin:calc(var(--spacing) * 29.3);}
|
|
1014
|
+
.m3{margin:calc(var(--spacing) * 3);}
|
|
979
1015
|
.m5{margin:calc(var(--spacing) * 5);}
|
|
980
1016
|
.m7{margin:calc(var(--spacing) * 7);}
|
|
1017
|
+
.m7\\.6{margin:calc(var(--spacing) * 7.6);}
|
|
981
1018
|
.m9{margin:calc(var(--spacing) * 9);}
|
|
982
1019
|
.mx-auto{margin-inline:auto;}
|
|
983
1020
|
.my-6{margin-block:calc(var(--spacing) * 6);}
|
|
@@ -987,6 +1024,7 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
987
1024
|
.mt-1{margin-top:calc(var(--spacing) * 1);}
|
|
988
1025
|
.mt-1\\.5{margin-top:calc(var(--spacing) * 1.5);}
|
|
989
1026
|
.mt-2{margin-top:calc(var(--spacing) * 2);}
|
|
1027
|
+
.mt-3{margin-top:calc(var(--spacing) * 3);}
|
|
990
1028
|
.mt-4{margin-top:calc(var(--spacing) * 4);}
|
|
991
1029
|
.mt-auto{margin-top:auto;}
|
|
992
1030
|
.p-1{padding:calc(var(--spacing) * 1);}
|
|
@@ -997,6 +1035,7 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
997
1035
|
.p-6{padding:calc(var(--spacing) * 6);}
|
|
998
1036
|
.p-8{padding:calc(var(--spacing) * 8);}
|
|
999
1037
|
.\\!px-1{padding-inline:calc(var(--spacing) * 1) !important;}
|
|
1038
|
+
.\\!px-4{padding-inline:calc(var(--spacing) * 4) !important;}
|
|
1000
1039
|
.px-1{padding-inline:calc(var(--spacing) * 1);}
|
|
1001
1040
|
.px-2{padding-inline:calc(var(--spacing) * 2);}
|
|
1002
1041
|
.px-2\\.5{padding-inline:calc(var(--spacing) * 2.5);}
|
|
@@ -1010,6 +1049,8 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1010
1049
|
.py-3{padding-block:calc(var(--spacing) * 3);}
|
|
1011
1050
|
.py-4{padding-block:calc(var(--spacing) * 4);}
|
|
1012
1051
|
.py-5{padding-block:calc(var(--spacing) * 5);}
|
|
1052
|
+
.py-6{padding-block:calc(var(--spacing) * 6);}
|
|
1053
|
+
.pb-0{padding-bottom:calc(var(--spacing) * 0);}
|
|
1013
1054
|
.pb-1{padding-bottom:calc(var(--spacing) * 1);}
|
|
1014
1055
|
.pb-2{padding-bottom:calc(var(--spacing) * 2);}
|
|
1015
1056
|
.pb-4{padding-bottom:calc(var(--spacing) * 4);}
|
|
@@ -1021,6 +1062,7 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1021
1062
|
.ps-10{padding-inline-start:calc(var(--spacing) * 10);}
|
|
1022
1063
|
.ps-3{padding-inline-start:calc(var(--spacing) * 3);}
|
|
1023
1064
|
.pt-1{padding-top:calc(var(--spacing) * 1);}
|
|
1065
|
+
.pt-2{padding-top:calc(var(--spacing) * 2);}
|
|
1024
1066
|
.pt-4{padding-top:calc(var(--spacing) * 4);}
|
|
1025
1067
|
.pt-6{padding-top:calc(var(--spacing) * 6);}
|
|
1026
1068
|
.text-center{text-align:center;}
|
|
@@ -1032,7 +1074,8 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1032
1074
|
.border-0{border-width:0px;}
|
|
1033
1075
|
.border-b{border-bottom-width:1px;}
|
|
1034
1076
|
.border-t{border-top-width:1px;}
|
|
1035
|
-
.border-primary
|
|
1077
|
+
.border-primary,
|
|
1078
|
+
.group:hover .group-hover\\:border-primary{border-color:color-mix(in srgb, var(--colors-primary-DEFAULT) var(--un-border-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1036
1079
|
.hover\\:border-primary:hover{border-color:color-mix(in srgb, var(--colors-primary-DEFAULT) var(--un-border-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1037
1080
|
.rounded{border-radius:var(--radius-DEFAULT);}
|
|
1038
1081
|
.rounded-full{border-radius:calc(infinity * 1px);}
|
|
@@ -1041,11 +1084,14 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1041
1084
|
.rounded-sm{border-radius:var(--radius-sm);}
|
|
1042
1085
|
.rounded-b{border-bottom-left-radius:var(--radius-DEFAULT);border-bottom-right-radius:var(--radius-DEFAULT);}
|
|
1043
1086
|
.rounded-t{border-top-left-radius:var(--radius-DEFAULT);border-top-right-radius:var(--radius-DEFAULT);}
|
|
1087
|
+
.border-dashed{--un-border-style:dashed;border-style:dashed;}
|
|
1044
1088
|
.bg-error{background-color:color-mix(in srgb, var(--colors-error-DEFAULT) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-error)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1045
1089
|
.bg-gray-600{background-color:color-mix(in srgb, var(--colors-gray-600) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-600)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1046
1090
|
.bg-gray-800{background-color:color-mix(in srgb, var(--colors-gray-800) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-800)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1091
|
+
.bg-gray-900\\/30{background-color:color-mix(in srgb, var(--colors-gray-900) 30%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-900)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1047
1092
|
.bg-primary{background-color:color-mix(in srgb, var(--colors-primary-DEFAULT) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1048
1093
|
.bg-primary\\/10{background-color:color-mix(in srgb, var(--colors-primary-DEFAULT) 10%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1094
|
+
.bg-primary\\/5{background-color:color-mix(in srgb, var(--colors-primary-DEFAULT) 5%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1049
1095
|
.bg-success{background-color:color-mix(in srgb, var(--colors-success-DEFAULT) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-success)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1050
1096
|
.bg-transparent{background-color:transparent;}
|
|
1051
1097
|
.bg-warning{background-color:color-mix(in srgb, var(--colors-warning-DEFAULT) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-warning)) var(--un-text-opacity, 100%), transparent) */;}
|
|
@@ -1053,17 +1099,21 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1053
1099
|
.bg-white\\/70{background-color:color-mix(in srgb, var(--colors-white-DEFAULT) 70%, transparent) /* rgb(var(--ui-color-white)) */;}
|
|
1054
1100
|
.bg-white\\/8{background-color:color-mix(in srgb, var(--colors-white-DEFAULT) 8%, transparent) /* rgb(var(--ui-color-white)) */;}
|
|
1055
1101
|
.dark .dark\\:bg-gray-800\\/50{background-color:color-mix(in srgb, var(--colors-gray-800) 50%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-800)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1102
|
+
.dark .dark\\:bg-gray-800\\/60{background-color:color-mix(in srgb, var(--colors-gray-800) 60%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-800)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1056
1103
|
.dark .dark\\:bg-gray-900\\/70{background-color:color-mix(in srgb, var(--colors-gray-900) 70%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-900)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1057
|
-
.dark .dark\\:bg-gray-900\\/90{background-color:color-mix(in srgb, var(--colors-gray-900) 90%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-900)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1058
1104
|
.dark .dark\\:bg-primary-950{background-color:color-mix(in srgb, var(--colors-primary-950) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary-950)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1059
1105
|
.hover\\:bg-primary-hover:hover{background-color:color-mix(in srgb, var(--colors-primary-hover) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary-hover)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1106
|
+
.hover\\:bg-primary\\/10:hover{background-color:color-mix(in srgb, var(--colors-primary-DEFAULT) 10%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1107
|
+
.hover\\:bg-primary\\/5:hover{background-color:color-mix(in srgb, var(--colors-primary-DEFAULT) 5%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1060
1108
|
.bg-opacity-10{--un-bg-opacity:10%;}
|
|
1061
1109
|
.opacity-0{opacity:0%;}
|
|
1062
|
-
.opacity-100
|
|
1110
|
+
.opacity-100,
|
|
1111
|
+
.group:hover .group-hover\\:opacity-100{opacity:100%;}
|
|
1063
1112
|
.opacity-50{opacity:50%;}
|
|
1064
1113
|
.opacity-70{opacity:70%;}
|
|
1065
1114
|
.underline{text-decoration-line:underline;}
|
|
1066
|
-
.flex
|
|
1115
|
+
.flex,
|
|
1116
|
+
.group:hover .group-hover\\:flex{display:flex;}
|
|
1067
1117
|
.inline-flex{display:inline-flex;}
|
|
1068
1118
|
.flex-1{flex:1 1 0%;}
|
|
1069
1119
|
.flex-none{flex:none;}
|
|
@@ -1083,9 +1133,15 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1083
1133
|
.gap-x-8{column-gap:calc(var(--spacing) * 8);}
|
|
1084
1134
|
.gap-y-4{row-gap:calc(var(--spacing) * 4);}
|
|
1085
1135
|
.grid{display:grid;}
|
|
1136
|
+
.col-span-1{grid-column:span 1/span 1;}
|
|
1137
|
+
.col-span-2{grid-column:span 2/span 2;}
|
|
1138
|
+
.auto-cols-max{grid-auto-columns:max-content;}
|
|
1139
|
+
.grid-cols-\\[repeat\\(auto-fit\\,minmax\\(100px\\,1fr\\)\\)\\]{grid-template-columns:repeat(auto-fit,minmax(100px,1fr));}
|
|
1086
1140
|
.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}
|
|
1087
1141
|
.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}
|
|
1142
|
+
.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}
|
|
1088
1143
|
.size-10{width:calc(var(--spacing) * 10);height:calc(var(--spacing) * 10);}
|
|
1144
|
+
.size-12{width:calc(var(--spacing) * 12);height:calc(var(--spacing) * 12);}
|
|
1089
1145
|
.size-2{width:calc(var(--spacing) * 2);height:calc(var(--spacing) * 2);}
|
|
1090
1146
|
.size-3{width:calc(var(--spacing) * 3);height:calc(var(--spacing) * 3);}
|
|
1091
1147
|
.size-30{width:calc(var(--spacing) * 30);height:calc(var(--spacing) * 30);}
|
|
@@ -1097,6 +1153,7 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1097
1153
|
.size-60{width:calc(var(--spacing) * 60);height:calc(var(--spacing) * 60);}
|
|
1098
1154
|
.size-60px{width:60px;height:60px;}
|
|
1099
1155
|
.size-7{width:calc(var(--spacing) * 7);height:calc(var(--spacing) * 7);}
|
|
1156
|
+
.size-80px{width:80px;height:80px;}
|
|
1100
1157
|
.size-full{width:100%;height:100%;}
|
|
1101
1158
|
.h-10{height:calc(var(--spacing) * 10);}
|
|
1102
1159
|
.h-100{height:calc(var(--spacing) * 100);}
|
|
@@ -1108,21 +1165,27 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1108
1165
|
.h-4{height:calc(var(--spacing) * 4);}
|
|
1109
1166
|
.h-40{height:calc(var(--spacing) * 40);}
|
|
1110
1167
|
.h-5{height:calc(var(--spacing) * 5);}
|
|
1168
|
+
.h-500px{height:500px;}
|
|
1111
1169
|
.h-6,
|
|
1112
1170
|
.h6{height:calc(var(--spacing) * 6);}
|
|
1113
1171
|
.h-8\\.5{height:calc(var(--spacing) * 8.5);}
|
|
1114
1172
|
.h-auto{height:auto;}
|
|
1115
1173
|
.h-full{height:100%;}
|
|
1116
1174
|
.h-screen{height:100vh;}
|
|
1175
|
+
.max-h-500px{max-height:500px;}
|
|
1117
1176
|
.max-w-180{max-width:calc(var(--spacing) * 180);}
|
|
1118
1177
|
.max-w-full{max-width:100%;}
|
|
1119
1178
|
.min-h-0{min-height:calc(var(--spacing) * 0);}
|
|
1120
1179
|
.min-h-1{min-height:calc(var(--spacing) * 1);}
|
|
1121
1180
|
.min-w-0{min-width:calc(var(--spacing) * 0);}
|
|
1122
1181
|
.min-w-20{min-width:calc(var(--spacing) * 20);}
|
|
1123
|
-
.w-
|
|
1182
|
+
.w-120{width:calc(var(--spacing) * 120);}
|
|
1183
|
+
.w-120px{width:120px;}
|
|
1184
|
+
.w-15{width:calc(var(--spacing) * 15);}
|
|
1124
1185
|
.w-200px{width:200px;}
|
|
1186
|
+
.w-26{width:calc(var(--spacing) * 26);}
|
|
1125
1187
|
.w-30{width:calc(var(--spacing) * 30);}
|
|
1188
|
+
.w-4{width:calc(var(--spacing) * 4);}
|
|
1126
1189
|
.w-40{width:calc(var(--spacing) * 40);}
|
|
1127
1190
|
.w-400px{width:400px;}
|
|
1128
1191
|
.w-5{width:calc(var(--spacing) * 5);}
|
|
@@ -1132,7 +1195,8 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1132
1195
|
.w-px{width:1px;}
|
|
1133
1196
|
.w-screen{width:100vw;}
|
|
1134
1197
|
.inline{display:inline;}
|
|
1135
|
-
.block
|
|
1198
|
+
.block,
|
|
1199
|
+
.group:hover .group-hover\\:block{display:block;}
|
|
1136
1200
|
.contents{display:contents;}
|
|
1137
1201
|
.list-item{display:list-item;}
|
|
1138
1202
|
.hidden{display:none;}
|
|
@@ -1161,6 +1225,7 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1161
1225
|
.rotate-45{rotate:45deg;}
|
|
1162
1226
|
.transform{transform:var(--un-rotate-x) var(--un-rotate-y) var(--un-rotate-z) var(--un-skew-x) var(--un-skew-y);}
|
|
1163
1227
|
.transition-all{transition-property:all;transition-timing-function:var(--un-ease, var(--default-transition-timingFunction));transition-duration:var(--un-duration, var(--default-transition-duration));}
|
|
1228
|
+
.transition-opacity{transition-property:opacity;transition-timing-function:var(--un-ease, var(--default-transition-timingFunction));transition-duration:var(--un-duration, var(--default-transition-duration));}
|
|
1164
1229
|
.duration-150{--un-duration:150ms;transition-duration:150ms;}
|
|
1165
1230
|
.duration-200{--un-duration:200ms;transition-duration:200ms;}
|
|
1166
1231
|
.duration-300{--un-duration:300ms;transition-duration:300ms;}
|
|
@@ -1170,6 +1235,9 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1170
1235
|
.items-start{align-items:flex-start;}
|
|
1171
1236
|
.items-end{align-items:flex-end;}
|
|
1172
1237
|
.items-center{align-items:center;}
|
|
1238
|
+
.items-baseline{align-items:baseline;}
|
|
1239
|
+
.flex-justify-center,
|
|
1240
|
+
.justify-center{justify-content:center;}
|
|
1173
1241
|
.inset-0{inset:calc(var(--spacing) * 0);}
|
|
1174
1242
|
.end-0{inset-inline-end:calc(var(--spacing) * 0);}
|
|
1175
1243
|
.start-0{inset-inline-start:calc(var(--spacing) * 0);}
|
|
@@ -1180,7 +1248,9 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1180
1248
|
.-top-15{top:calc(calc(var(--spacing) * 15) * -1);}
|
|
1181
1249
|
.-top-7{top:calc(calc(var(--spacing) * 7) * -1);}
|
|
1182
1250
|
.bottom-0{bottom:calc(var(--spacing) * 0);}
|
|
1251
|
+
.bottom-2{bottom:calc(var(--spacing) * 2);}
|
|
1183
1252
|
.left-0{left:calc(var(--spacing) * 0);}
|
|
1253
|
+
.left-2{left:calc(var(--spacing) * 2);}
|
|
1184
1254
|
.right-0{right:calc(var(--spacing) * 0);}
|
|
1185
1255
|
.right-2{right:calc(var(--spacing) * 2);}
|
|
1186
1256
|
.right-2\\.5{right:calc(var(--spacing) * 2.5);}
|
|
@@ -1190,20 +1260,25 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1190
1260
|
.top-7{top:calc(var(--spacing) * 7);}
|
|
1191
1261
|
.justify-start{justify-content:flex-start;}
|
|
1192
1262
|
.justify-end{justify-content:flex-end;}
|
|
1193
|
-
.justify-center{justify-content:center;}
|
|
1194
1263
|
.justify-between{justify-content:space-between;}
|
|
1195
1264
|
.absolute{position:absolute;}
|
|
1196
1265
|
.fixed{position:fixed;}
|
|
1197
1266
|
.relative{position:relative;}
|
|
1267
|
+
.z-0{z-index:0;}
|
|
1268
|
+
.z-1{z-index:1;}
|
|
1198
1269
|
.overflow-auto{overflow:auto;}
|
|
1199
1270
|
.overflow-hidden{overflow:hidden;}
|
|
1200
1271
|
.fill-primary{fill:color-mix(in srgb, var(--colors-primary-DEFAULT) var(--un-fill-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1272
|
+
.dark .dark\\:from-\\[color-mix\\(in_oklch\\,theme\\(colors\\.primary\\.DEFAULT\\)\\,theme\\(colors\\.gray\\.950\\)_95\\%\\)\\]{--un-gradient-from:color-mix(in oklab, color-mix(in oklch,color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent),color-mix(in oklab, rgb(var(--ui-color-gray-950)) var(--un-text-opacity, 100%), transparent) 95%) var(--un-from-opacity), transparent);--un-gradient-stops:var(--un-gradient-via-stops, var(--un-gradient-position), var(--un-gradient-from) var(--un-gradient-from-position), var(--un-gradient-to) var(--un-gradient-to-position));}
|
|
1273
|
+
.from-\\[color-mix\\(in_oklch\\,theme\\(colors\\.primary\\.DEFAULT\\)\\,white_95\\%\\)\\]{--un-gradient-from:color-mix(in oklab, color-mix(in oklch,color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent),white 95%) var(--un-from-opacity), transparent);--un-gradient-stops:var(--un-gradient-via-stops, var(--un-gradient-position), var(--un-gradient-from) var(--un-gradient-from-position), var(--un-gradient-to) var(--un-gradient-to-position));}
|
|
1201
1274
|
.from-transparent{--un-gradient-from:transparent;--un-gradient-stops:var(--un-gradient-via-stops, var(--un-gradient-position), var(--un-gradient-from) var(--un-gradient-from-position), var(--un-gradient-to) var(--un-gradient-to-position));}
|
|
1202
1275
|
.to-error\\/20{--un-to-opacity:20%;--un-gradient-to:color-mix(in oklab, var(--colors-error-DEFAULT) var(--un-to-opacity), transparent);--un-gradient-stops:var(--un-gradient-via-stops, var(--un-gradient-position), var(--un-gradient-from) var(--un-gradient-from-position), var(--un-gradient-to) var(--un-gradient-to-position));}
|
|
1203
1276
|
.to-gray\\/20{--un-to-opacity:20%;--un-gradient-to:color-mix(in oklab, var(--colors-gray-DEFAULT) var(--un-to-opacity), transparent);--un-gradient-stops:var(--un-gradient-via-stops, var(--un-gradient-position), var(--un-gradient-from) var(--un-gradient-from-position), var(--un-gradient-to) var(--un-gradient-to-position));}
|
|
1204
1277
|
.to-info\\/20{--un-to-opacity:20%;--un-gradient-to:color-mix(in oklab, var(--colors-info-DEFAULT) var(--un-to-opacity), transparent);--un-gradient-stops:var(--un-gradient-via-stops, var(--un-gradient-position), var(--un-gradient-from) var(--un-gradient-from-position), var(--un-gradient-to) var(--un-gradient-to-position));}
|
|
1205
1278
|
.to-success\\/20{--un-to-opacity:20%;--un-gradient-to:color-mix(in oklab, var(--colors-success-DEFAULT) var(--un-to-opacity), transparent);--un-gradient-stops:var(--un-gradient-via-stops, var(--un-gradient-position), var(--un-gradient-from) var(--un-gradient-from-position), var(--un-gradient-to) var(--un-gradient-to-position));}
|
|
1279
|
+
.to-transparent{--un-gradient-to:transparent;--un-gradient-stops:var(--un-gradient-via-stops, var(--un-gradient-position), var(--un-gradient-from) var(--un-gradient-from-position), var(--un-gradient-to) var(--un-gradient-to-position));}
|
|
1206
1280
|
.to-warning\\/20{--un-to-opacity:20%;--un-gradient-to:color-mix(in oklab, var(--colors-warning-DEFAULT) var(--un-to-opacity), transparent);--un-gradient-stops:var(--un-gradient-via-stops, var(--un-gradient-position), var(--un-gradient-from) var(--un-gradient-from-position), var(--un-gradient-to) var(--un-gradient-to-position));}
|
|
1281
|
+
.bg-linear-to-b{--un-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--un-gradient-stops));}
|
|
1207
1282
|
.bg-linear-to-br{--un-gradient-position:to bottom right in oklab;background-image:linear-gradient(var(--un-gradient-stops));}
|
|
1208
1283
|
.object-cover{object-fit:cover;}
|
|
1209
1284
|
.backdrop-blur{--un-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--un-backdrop-blur,) var(--un-backdrop-brightness,) var(--un-backdrop-contrast,) var(--un-backdrop-grayscale,) var(--un-backdrop-hue-rotate,) var(--un-backdrop-invert,) var(--un-backdrop-opacity,) var(--un-backdrop-saturate,) var(--un-backdrop-sepia,);backdrop-filter:var(--un-backdrop-blur,) var(--un-backdrop-brightness,) var(--un-backdrop-contrast,) var(--un-backdrop-grayscale,) var(--un-backdrop-hue-rotate,) var(--un-backdrop-invert,) var(--un-backdrop-opacity,) var(--un-backdrop-saturate,) var(--un-backdrop-sepia,);}
|
|
@@ -1211,6 +1286,7 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1211
1286
|
.backdrop-filter{-webkit-backdrop-filter:var(--un-backdrop-blur,) var(--un-backdrop-brightness,) var(--un-backdrop-contrast,) var(--un-backdrop-grayscale,) var(--un-backdrop-hue-rotate,) var(--un-backdrop-invert,) var(--un-backdrop-opacity,) var(--un-backdrop-saturate,) var(--un-backdrop-sepia,);backdrop-filter:var(--un-backdrop-blur,) var(--un-backdrop-brightness,) var(--un-backdrop-contrast,) var(--un-backdrop-grayscale,) var(--un-backdrop-hue-rotate,) var(--un-backdrop-invert,) var(--un-backdrop-opacity,) var(--un-backdrop-saturate,) var(--un-backdrop-sepia,);}
|
|
1212
1287
|
.table{display:table;}
|
|
1213
1288
|
.border-collapse{border-collapse:collapse;}
|
|
1289
|
+
.table-fixed{table-layout:fixed;}
|
|
1214
1290
|
.divide-white\\/20>:not(:last-child){border-color:color-mix(in srgb, var(--colors-white-DEFAULT) 20%, transparent) /* rgb(var(--ui-color-white)) */;}
|
|
1215
1291
|
.divide-x>:not(:last-child){--un-divide-x-reverse:0;border-left-width:calc(1px * var(--un-divide-x-reverse));border-left-style:var(--un-border-style);border-right-width:calc(1px * calc(1 - var(--un-divide-x-reverse)));border-right-style:var(--un-border-style);}
|
|
1216
1292
|
.divide-y>:not(:last-child){--un-divide-y-reverse:0;border-top-width:calc(1px * var(--un-divide-y-reverse));border-top-style:var(--un-border-style);border-bottom-width:calc(1px * calc(1 - var(--un-divide-y-reverse)));border-bottom-style:var(--un-border-style);}
|
|
@@ -1221,15 +1297,23 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1221
1297
|
.text-highlighted{color:color-mix(in oklab, rgb(var(--ui-text-highlighted)) var(--un-text-opacity, 100%), transparent);--un-text-opacity:100%;}
|
|
1222
1298
|
.bg-default{background-color:color-mix(in oklab, rgb(var(--ui-bg)) var(--un-bg-opacity, 100%), transparent);--un-bg-opacity:100%;}
|
|
1223
1299
|
.hover\\:bg-default:hover{background-color:color-mix(in oklab, rgb(var(--ui-bg)) var(--un-bg-opacity, 100%), transparent);--un-bg-opacity:100%;}
|
|
1300
|
+
.bg-default\\/80{background-color:color-mix(in oklab, rgb(var(--ui-bg)) var(--un-bg-opacity, 100%), transparent);--un-bg-opacity:80%;}
|
|
1224
1301
|
.bg-muted,
|
|
1225
1302
|
.dark .dark\\:bg-muted{background-color:color-mix(in oklab, rgb(var(--ui-bg-muted)) var(--un-bg-opacity, 100%), transparent);--un-bg-opacity:100%;}
|
|
1226
1303
|
.bg-elevated{background-color:color-mix(in oklab, rgb(var(--ui-bg-elevated)) var(--un-bg-opacity, 100%), transparent);--un-bg-opacity:100%;}
|
|
1227
1304
|
.hover\\:bg-elevated:hover{background-color:color-mix(in oklab, rgb(var(--ui-bg-elevated)) var(--un-bg-opacity, 100%), transparent);--un-bg-opacity:100%;}
|
|
1305
|
+
.dark .dark\\:hover\\:bg-accented\\/50:hover{background-color:color-mix(in oklab, rgb(var(--ui-bg-accented)) var(--un-bg-opacity, 100%), transparent);--un-bg-opacity:50%;}
|
|
1306
|
+
.hover\\:bg-accented\\/50:hover{background-color:color-mix(in oklab, rgb(var(--ui-bg-accented)) var(--un-bg-opacity, 100%), transparent);--un-bg-opacity:50%;}
|
|
1228
1307
|
.bg-inverted{background-color:color-mix(in oklab, rgb(var(--ui-bg-inverted)) var(--un-bg-opacity, 100%), transparent);--un-bg-opacity:100%;}
|
|
1229
1308
|
.bg-inverted\\/5{background-color:color-mix(in oklab, rgb(var(--ui-bg-inverted)) var(--un-bg-opacity, 100%), transparent);--un-bg-opacity:5%;}
|
|
1230
1309
|
.border-default{border-color:color-mix(in oklab, rgb(var(--ui-border)) var(--un-border-opacity, 100%), transparent);--un-border-opacity:100%;}
|
|
1231
1310
|
.border-muted,
|
|
1232
1311
|
.dark .dark\\:border-muted{border-color:color-mix(in oklab, rgb(var(--ui-border-muted)) var(--un-border-opacity, 100%), transparent);--un-border-opacity:100%;}
|
|
1312
|
+
.border-muted\\/50{border-color:color-mix(in oklab, rgb(var(--ui-border-muted)) var(--un-border-opacity, 100%), transparent);--un-border-opacity:50%;}
|
|
1313
|
+
.border-accented,
|
|
1314
|
+
.dark .dark\\:border-accented{border-color:color-mix(in oklab, rgb(var(--ui-border-accented)) var(--un-border-opacity, 100%), transparent);--un-border-opacity:100%;}
|
|
1315
|
+
.dark .dark\\:hover\\:border-accented:hover{border-color:color-mix(in oklab, rgb(var(--ui-border-accented)) var(--un-border-opacity, 100%), transparent);--un-border-opacity:100%;}
|
|
1316
|
+
.hover\\:border-accented:hover{border-color:color-mix(in oklab, rgb(var(--ui-border-accented)) var(--un-border-opacity, 100%), transparent);--un-border-opacity:100%;}
|
|
1233
1317
|
.ring-muted{--un-ring-color:color-mix(in oklab, rgb(var(--ui-border-muted)) var(--un-ring-opacity, 100%), transparent);--un-ring-opacity:100%;}
|
|
1234
1318
|
|
|
1235
1319
|
.divide-muted > :not(:last-child) {
|
|
@@ -1240,28 +1324,35 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1240
1324
|
.text-error{color:color-mix(in oklab, var(--colors-error-DEFAULT) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-error)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1241
1325
|
.text-gray-300{color:color-mix(in oklab, var(--colors-gray-300) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-300)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1242
1326
|
.text-gray-500{color:color-mix(in oklab, var(--colors-gray-500) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-500)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1327
|
+
.text-info{color:color-mix(in oklab, var(--colors-info-DEFAULT) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-info)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1243
1328
|
.text-primary{color:color-mix(in oklab, var(--colors-primary-DEFAULT) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1244
1329
|
.text-success{color:color-mix(in oklab, var(--colors-success-DEFAULT) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-success)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1245
1330
|
.text-warning{color:color-mix(in oklab, var(--colors-warning-DEFAULT) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-warning)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1246
1331
|
.text-white{color:color-mix(in oklab, var(--colors-white-DEFAULT) var(--un-text-opacity), transparent) /* rgb(var(--ui-color-white)) */;}
|
|
1332
|
+
.text-white\\/90{color:color-mix(in oklab, var(--colors-white-DEFAULT) 90%, transparent) /* rgb(var(--ui-color-white)) */;}
|
|
1247
1333
|
.hover\\:text-primary:hover{color:color-mix(in oklab, var(--colors-primary-DEFAULT) var(--un-text-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1248
1334
|
.border-primary{border-color:color-mix(in oklab, var(--colors-primary-DEFAULT) var(--un-border-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1335
|
+
.group:hover .group-hover\\:border-primary{border-color:color-mix(in oklab, var(--colors-primary-DEFAULT) var(--un-border-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1249
1336
|
.hover\\:border-primary:hover{border-color:color-mix(in oklab, var(--colors-primary-DEFAULT) var(--un-border-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1250
1337
|
.bg-error{background-color:color-mix(in oklab, var(--colors-error-DEFAULT) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-error)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1251
1338
|
.bg-gray-600{background-color:color-mix(in oklab, var(--colors-gray-600) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-600)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1252
1339
|
.bg-gray-800{background-color:color-mix(in oklab, var(--colors-gray-800) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-800)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1340
|
+
.bg-gray-900\\/30{background-color:color-mix(in oklab, var(--colors-gray-900) 30%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-900)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1253
1341
|
.bg-primary{background-color:color-mix(in oklab, var(--colors-primary-DEFAULT) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1254
1342
|
.bg-primary\\/10{background-color:color-mix(in oklab, var(--colors-primary-DEFAULT) 10%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1343
|
+
.bg-primary\\/5{background-color:color-mix(in oklab, var(--colors-primary-DEFAULT) 5%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1255
1344
|
.bg-success{background-color:color-mix(in oklab, var(--colors-success-DEFAULT) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-success)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1256
1345
|
.bg-warning{background-color:color-mix(in oklab, var(--colors-warning-DEFAULT) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-warning)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1257
1346
|
.bg-white{background-color:color-mix(in oklab, var(--colors-white-DEFAULT) var(--un-bg-opacity), transparent) /* rgb(var(--ui-color-white)) */;}
|
|
1258
1347
|
.bg-white\\/70{background-color:color-mix(in oklab, var(--colors-white-DEFAULT) 70%, transparent) /* rgb(var(--ui-color-white)) */;}
|
|
1259
1348
|
.bg-white\\/8{background-color:color-mix(in oklab, var(--colors-white-DEFAULT) 8%, transparent) /* rgb(var(--ui-color-white)) */;}
|
|
1260
1349
|
.dark .dark\\:bg-gray-800\\/50{background-color:color-mix(in oklab, var(--colors-gray-800) 50%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-800)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1350
|
+
.dark .dark\\:bg-gray-800\\/60{background-color:color-mix(in oklab, var(--colors-gray-800) 60%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-800)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1261
1351
|
.dark .dark\\:bg-gray-900\\/70{background-color:color-mix(in oklab, var(--colors-gray-900) 70%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-900)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1262
|
-
.dark .dark\\:bg-gray-900\\/90{background-color:color-mix(in oklab, var(--colors-gray-900) 90%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-900)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1263
1352
|
.dark .dark\\:bg-primary-950{background-color:color-mix(in oklab, var(--colors-primary-950) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary-950)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1264
1353
|
.hover\\:bg-primary-hover:hover{background-color:color-mix(in oklab, var(--colors-primary-hover) var(--un-bg-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary-hover)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1354
|
+
.hover\\:bg-primary\\/10:hover{background-color:color-mix(in oklab, var(--colors-primary-DEFAULT) 10%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1355
|
+
.hover\\:bg-primary\\/5:hover{background-color:color-mix(in oklab, var(--colors-primary-DEFAULT) 5%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1265
1356
|
.dark .dark\\:shadow-gray-950\\/80{--un-shadow-color:color-mix(in oklab, var(--colors-gray-950) 80%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-950)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1266
1357
|
.shadow-gray-950\\/10{--un-shadow-color:color-mix(in oklab, var(--colors-gray-950) 10%, transparent) /* color-mix(in oklab, rgb(var(--ui-color-gray-950)) var(--un-text-opacity, 100%), transparent) */;}
|
|
1267
1358
|
.fill-primary{fill:color-mix(in oklab, var(--colors-primary-DEFAULT) var(--un-fill-opacity), transparent) /* color-mix(in oklab, rgb(var(--ui-color-primary)) var(--un-text-opacity, 100%), transparent) */;}
|
|
@@ -1279,6 +1370,7 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1279
1370
|
.md\\:flex-row{flex-direction:row;}
|
|
1280
1371
|
.md\\:gap-4{gap:calc(var(--spacing) * 4);}
|
|
1281
1372
|
.md\\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}
|
|
1373
|
+
.md\\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}
|
|
1282
1374
|
.md\\:h-auto{height:auto;}
|
|
1283
1375
|
.md\\:shadow{--un-shadow:0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / 0.1)),0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-inset-shadow), var(--un-inset-ring-shadow), var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}
|
|
1284
1376
|
.md\\:items-start{align-items:flex-start;}
|
|
@@ -1293,7 +1385,11 @@ input:where([type='button'], [type='reset'], [type='submit']),
|
|
|
1293
1385
|
.lg\\:flex-row{flex-direction:row;}
|
|
1294
1386
|
.lg\\:grid{display:grid;}
|
|
1295
1387
|
.lg\\:grid-cols-\\[repeat\\(auto-fit\\,minmax\\(\\$\\{props\\.minWidth\\}\\,\\$\\{props\\.maxWidth\\}\\)\\)\\]{grid-template-columns:repeat(auto-fit,minmax(\${props.minWidth},\${props.maxWidth}));}
|
|
1388
|
+
.lg\\:grid-cols-\\[repeat\\(auto-fit\\,minmax\\(100px\\,1fr\\)\\)\\]{grid-template-columns:repeat(auto-fit,minmax(100px,1fr));}
|
|
1389
|
+
.lg\\:grid-cols-\\[repeat\\(auto-fit\\,minmax\\(120px\\,1fr\\)\\)\\]{grid-template-columns:repeat(auto-fit,minmax(120px,1fr));}
|
|
1390
|
+
.lg\\:grid-cols-\\[repeat\\(auto-fit\\,minmax\\(150px\\,1fr\\)\\)\\]{grid-template-columns:repeat(auto-fit,minmax(150px,1fr));}
|
|
1296
1391
|
.lg\\:h-13{height:calc(var(--spacing) * 13);}
|
|
1392
|
+
.lg\\:h-26{height:calc(var(--spacing) * 26);}
|
|
1297
1393
|
.lg\\:max-w-2xl{max-width:var(--container-2xl);}
|
|
1298
1394
|
.lg\\:max-w-4xl{max-width:var(--container-4xl);}
|
|
1299
1395
|
.lg\\:max-w-lg{max-width:var(--container-lg);}
|
package/dist/esm/component.js
CHANGED
|
@@ -1,61 +1,78 @@
|
|
|
1
1
|
import { DuxApp as m } from "./app.js";
|
|
2
|
-
import { DuxCard as
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
2
|
+
import { DuxCard as t } from "./components/card/card.js";
|
|
3
|
+
import { DuxStatsStore as r, DuxStatsStoreItem as e } from "./components/card/store.js";
|
|
4
|
+
import { DuxCarousel as u } from "./components/carousel/carousel.js";
|
|
5
|
+
import { DuxChart as n } from "./components/chart/echart.js";
|
|
6
|
+
import { DuxImageCrop as D } from "./components/crop/imageCrop.js";
|
|
7
|
+
import { DuxImageCropModal as x } from "./components/crop/imageCropModal.js";
|
|
8
|
+
import { DuxDashboardHello as i } from "./components/dashboard/hello.js";
|
|
9
|
+
import { DuxDashboardHelloBig as a } from "./components/dashboard/helloBig.js";
|
|
10
|
+
import { DuxDashboardQuick as c } from "./components/dashboard/quick.js";
|
|
11
|
+
import { DuxDynamicData as l } from "./components/data/dynamicData.js";
|
|
12
|
+
import { DuxDynamicSelect as f } from "./components/data/dynamicSelect.js";
|
|
8
13
|
import "vue";
|
|
9
14
|
import "@duxweb/dvha-core";
|
|
10
|
-
import "@overlastic/vue";
|
|
11
15
|
import "naive-ui";
|
|
12
|
-
import { DuxDrawApps as x } from "./components/draw/drawApps.js";
|
|
13
|
-
import { DuxDrawAuth as i } from "./components/draw/drawAuth.js";
|
|
14
|
-
import { DuxDrawEmpty as c } from "./components/draw/drawEmpty.js";
|
|
15
|
-
import { DuxDrawEmptyForm as a } from "./components/draw/drawEmptyForm.js";
|
|
16
|
-
import { DuxDrawError as f } from "./components/draw/drawError.js";
|
|
17
|
-
import { DuxDrawerPage as l } from "./components/drawer/drawerPage.js";
|
|
18
|
-
import { DuxFormItem as g } from "./components/form/formItem.js";
|
|
19
|
-
import { DuxFormLayout as p } from "./components/form/formLayout.js";
|
|
20
|
-
import { DuxModalForm as P } from "./components/form/modalForm.js";
|
|
21
|
-
import { DuxPageForm as d } from "./components/form/pageForm.js";
|
|
22
|
-
import { DuxSettingForm as s } from "./components/form/settingForm.js";
|
|
23
|
-
import { DuxTableFilter as y } from "./components/layout/filter.js";
|
|
24
|
-
import { DuxListLayout as b } from "./components/layout/list.js";
|
|
25
|
-
import { DuxTableLayout as C } from "./components/layout/table.js";
|
|
26
|
-
import { DuxTableTools as L } from "./components/layout/tools.js";
|
|
27
|
-
import { DuxCardPage as M } from "./components/list/card.js";
|
|
28
|
-
import { DuxListPage as F } from "./components/list/list.js";
|
|
29
|
-
import { DuxMedia as h } from "./components/media/media.js";
|
|
30
|
-
import { DuxModal as w } from "./components/modal/modal.js";
|
|
31
|
-
import { DuxPanelAlert as A } from "./components/panel/alert.js";
|
|
32
|
-
import { DuxPanelCard as E } from "./components/panel/setting.js";
|
|
33
|
-
import { DuxSelectCard as T } from "./components/select/cardSelect.js";
|
|
34
|
-
import { DuxBlockEmpty as S } from "./components/status/blockEmpty.js";
|
|
35
|
-
import { DuxTablePage as k } from "./components/table/tablePage.js";
|
|
36
|
-
import { DuxWidgetConnect as B } from "./components/widget/connect.js";
|
|
37
|
-
import { DuxAuthLayout as H } from "./pages/authLayout.js";
|
|
38
|
-
import { DuxLayout as I } from "./pages/layout.js";
|
|
39
|
-
import { DuxLoginPage as Q } from "./pages/login.js";
|
|
40
16
|
import "vue-router";
|
|
17
|
+
import "@overlastic/vue";
|
|
18
|
+
import "dayjs";
|
|
19
|
+
import "mime";
|
|
41
20
|
import "lodash-es";
|
|
21
|
+
import "@tanstack/vue-query";
|
|
42
22
|
import "@duxweb/dvha-naiveui";
|
|
43
23
|
import "@vueuse/core";
|
|
44
24
|
import "pinia";
|
|
45
|
-
import {
|
|
46
|
-
import
|
|
47
|
-
import
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
|
|
25
|
+
import { DuxModal as g } from "./components/modal/modal.js";
|
|
26
|
+
import p from "./components/modal/modalPage.js";
|
|
27
|
+
import d from "./components/modal/modalTab.js";
|
|
28
|
+
import { DuxDrawApps as P } from "./components/draw/drawApps.js";
|
|
29
|
+
import { DuxDrawAuth as s } from "./components/draw/drawAuth.js";
|
|
30
|
+
import { DuxDrawEmpty as y } from "./components/draw/drawEmpty.js";
|
|
31
|
+
import { DuxDrawEmptyForm as M } from "./components/draw/drawEmptyForm.js";
|
|
32
|
+
import { DuxDrawError as b } from "./components/draw/drawError.js";
|
|
33
|
+
import { DuxDrawerPage as C } from "./components/drawer/drawerPage.js";
|
|
34
|
+
import { DuxAiEditor as S } from "./components/editor/aiEditor.js";
|
|
35
|
+
import { DuxFormItem as L } from "./components/form/formItem.js";
|
|
36
|
+
import { DuxFormLayout as F } from "./components/form/formLayout.js";
|
|
37
|
+
import { DuxModalForm as T } from "./components/form/modalForm.js";
|
|
38
|
+
import { DuxPageForm as h } from "./components/form/pageForm.js";
|
|
39
|
+
import { DuxSettingForm as w } from "./components/form/settingForm.js";
|
|
40
|
+
import { DuxTableFilter as A } from "./components/layout/filter.js";
|
|
41
|
+
import { DuxListLayout as E } from "./components/layout/list.js";
|
|
42
|
+
import { DuxTableLayout as I } from "./components/layout/table.js";
|
|
43
|
+
import { DuxTableTools as k } from "./components/layout/tools.js";
|
|
44
|
+
import { DuxLevel as B } from "./components/level/level.js";
|
|
45
|
+
import { DuxCardPage as H } from "./components/list/card.js";
|
|
46
|
+
import { DuxListPage as U } from "./components/list/list.js";
|
|
47
|
+
import { DuxMedia as v } from "./components/media/media.js";
|
|
48
|
+
import { DuxPanelAlert as N } from "./components/panel/alert.js";
|
|
49
|
+
import { DuxPanelCard as Q } from "./components/panel/setting.js";
|
|
50
|
+
import { DuxSelectCard as R } from "./components/select/cardSelect.js";
|
|
51
|
+
import { DuxStatsNumber as W } from "./components/stats/number.js";
|
|
52
|
+
import { DuxStatsRealTime as j } from "./components/stats/realTime.js";
|
|
53
|
+
import { DuxBlockEmpty as q } from "./components/status/blockEmpty.js";
|
|
54
|
+
import { DuxTablePage as z } from "./components/table/tablePage.js";
|
|
55
|
+
import { DuxFileUpload as G } from "./components/upload/file.js";
|
|
56
|
+
import { DuxImageUpload as J } from "./components/upload/image.js";
|
|
57
|
+
import "clsx";
|
|
58
|
+
import { DuxWidgetConnect as K } from "./components/widget/connect.js";
|
|
59
|
+
import { DuxAuthLayout as O } from "./pages/authLayout.js";
|
|
60
|
+
import { DuxLayout as V } from "./pages/layout.js";
|
|
61
|
+
import { DuxLoginPage as X } from "./pages/login.js";
|
|
62
|
+
import { DuxMenuCmd as Y } from "./pages/menu/cmd.js";
|
|
63
|
+
import { DuxMenuMain as Z } from "./pages/menu/main.js";
|
|
64
|
+
import { DuxMobileMenu as _ } from "./pages/menu/mobile.js";
|
|
65
|
+
import { DuxPage as $ } from "./pages/page.js";
|
|
66
|
+
import { DuxPage403 as oo } from "./pages/page403.js";
|
|
67
|
+
import { DuxPage404 as mo } from "./pages/page404.js";
|
|
68
|
+
import { DuxPage500 as to } from "./pages/page500.js";
|
|
69
|
+
import { DuxPageEmpty as ro } from "./pages/pageEmpty.js";
|
|
70
|
+
import { DuxPageStatus as eo } from "./pages/pageStatus.js";
|
|
71
|
+
const Cm = {
|
|
55
72
|
install(o) {
|
|
56
|
-
o.component("DuxCard",
|
|
73
|
+
o.component("DuxAiEditor", S), o.component("DuxCard", t), o.component("DuxDrawerPage", C), o.component("DuxDrawApps", P), o.component("DuxDrawAuth", s), o.component("DuxDrawEmpty", y), o.component("DuxDrawEmptyForm", M), o.component("DuxDrawError", b), o.component("DuxDynamicData", l), o.component("DuxDynamicSelect", f), o.component("DuxFormItem", L), o.component("DuxFormLayout", F), o.component("DuxModalForm", T), o.component("DuxPageForm", h), o.component("DuxSettingForm", w), o.component("DuxListLayout", E), o.component("DuxTableFilter", A), o.component("DuxTableLayout", I), o.component("DuxTableTools", k), o.component("DuxCardPage", H), o.component("DuxListPage", U), o.component("DuxMedia", v), o.component("DuxModal", g), o.component("DuxPanelAlert", N), o.component("DuxPanelCard", Q), o.component("DuxBlockEmpty", q), o.component("DuxTablePage", z), o.component("DuxLevel", B), o.component("DuxImageCrop", D), o.component("DuxImageCropModal", x), o.component("DuxModalPage", p), o.component("DuxModalTab", d), o.component("DuxFileUpload", G), o.component("DuxImageUpload", J), o.component("DuxDashboardHello", i), o.component("DuxDashboardHelloBig", a), o.component("DuxDashboardQuick", c), o.component("DuxCarousel", u), o.component("DuxWidgetConnect", K), o.component("DuxChart", n), o.component("DuxSelectCard", R), o.component("DuxStatsStore", r), o.component("DuxStatsStoreItem", e), o.component("DuxStatsRealTime", j), o.component("DuxStatsNumber", W), o.component("DuxAuthLayout", O), o.component("DuxLayout", V), o.component("DuxPage403", oo), o.component("DuxPage404", mo), o.component("DuxPage500", to), o.component("DuxPageEmpty", ro), o.component("DuxPageStatus", eo), o.component("DuxLoginPage", X), o.component("DuxPage", $), o.component("DuxMenuMain", Z), o.component("DuxMobileMenu", _), o.component("DuxMenuCmd", Y), o.component("DuxApp", m);
|
|
57
74
|
}
|
|
58
75
|
};
|
|
59
76
|
export {
|
|
60
|
-
|
|
77
|
+
Cm as default
|
|
61
78
|
};
|