bitz-react-admin-ui 2.7.4 → 2.7.5
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/node_modules/@ant-design/colors/es/generate.mjs +93 -0
- package/dist/node_modules/@ant-design/colors/es/presets.mjs +72 -0
- package/dist/node_modules/@ant-design/cssinjs/es/Cache.mjs +40 -0
- package/dist/node_modules/@ant-design/cssinjs/es/Keyframes.mjs +18 -0
- package/dist/node_modules/@ant-design/cssinjs/es/StyleContext.mjs +38 -0
- package/dist/node_modules/@ant-design/cssinjs/es/extractStyle.mjs +9 -0
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCSSVarRegister.mjs +51 -0
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCacheToken.mjs +92 -0
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCompatibleInsertionEffect.mjs +15 -0
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useEffectCleanupRegister.mjs +27 -0
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useGlobalCache.mjs +47 -0
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useHMR.mjs +22 -0
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useStyleRegister.mjs +210 -0
- package/dist/node_modules/@ant-design/cssinjs/es/linters/contentQuotesLinter.mjs +10 -0
- package/dist/node_modules/@ant-design/cssinjs/es/linters/hashedAnimationLinter.mjs +7 -0
- package/dist/node_modules/@ant-design/cssinjs/es/linters/utils.mjs +8 -0
- package/dist/node_modules/@ant-design/cssinjs/es/theme/Theme.mjs +20 -0
- package/dist/node_modules/@ant-design/cssinjs/es/theme/ThemeCache.mjs +104 -0
- package/dist/node_modules/@ant-design/cssinjs/es/theme/createTheme.mjs +10 -0
- package/dist/node_modules/@ant-design/cssinjs/es/transformers/legacyLogicalProperties.mjs +4 -0
- package/dist/node_modules/@ant-design/cssinjs/es/util/cacheMapUtil.mjs +42 -0
- package/dist/node_modules/@ant-design/cssinjs/es/util/css-variables.mjs +28 -0
- package/dist/node_modules/@ant-design/cssinjs/es/util/index.mjs +52 -0
- package/dist/node_modules/@ant-design/cssinjs/node_modules/@emotion/hash/dist/hash.browser.esm.mjs +22 -0
- package/dist/node_modules/@ant-design/cssinjs/node_modules/stylis/src/Enum.mjs +9 -0
- package/dist/node_modules/@ant-design/cssinjs/node_modules/stylis/src/Parser.mjs +114 -0
- package/dist/node_modules/@ant-design/cssinjs/node_modules/stylis/src/Serializer.mjs +29 -0
- package/dist/node_modules/@ant-design/cssinjs/node_modules/stylis/src/Tokenizer.mjs +127 -0
- package/dist/node_modules/@ant-design/cssinjs/node_modules/stylis/src/Utility.mjs +37 -0
- package/dist/node_modules/@ant-design/cssinjs-utils/es/_util/hooks/useUniqueMemo.mjs +63 -0
- package/dist/node_modules/@ant-design/cssinjs-utils/es/hooks/useCSP.mjs +6 -0
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/CSSCalculator.mjs +59 -0
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/NumCalculator.mjs +44 -0
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/calculator.mjs +8 -0
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/index.mjs +11 -0
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/genStyleUtils.mjs +156 -0
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getCompVarPrefix.mjs +6 -0
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getComponentToken.mjs +26 -0
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getDefaultComponentToken.mjs +11 -0
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/maxmin.mjs +36 -0
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/statistic.mjs +55 -0
- package/dist/node_modules/@ant-design/fast-color/es/FastColor.mjs +327 -0
- package/dist/node_modules/@ant-design/icons/es/components/AntdIcon.mjs +42 -0
- package/dist/node_modules/@ant-design/icons/es/components/Context.mjs +6 -0
- package/dist/node_modules/@ant-design/icons/es/components/IconBase.mjs +46 -0
- package/dist/node_modules/@ant-design/icons/es/components/twoTonePrimaryColor.mjs +18 -0
- package/dist/node_modules/@ant-design/icons/es/icons/AlignCenterOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/AppstoreOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/ArrowLeftOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/ArrowRightOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownFilled.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleFilled.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/CheckOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleFilled.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/CloseOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/CopyOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/DeleteOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/DownOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/DownloadOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/EditOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleFilled.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/EyeOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/FileTwoTone.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/FullscreenExitOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/FullscreenOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/InfoCircleFilled.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/InfoCircleOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/LeftOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/LoadingOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/MenuFoldOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/MenuOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/MenuUnfoldOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/PaperClipOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/PauseCircleFilled.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/PictureTwoTone.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/PlayCircleFilled.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/PlusCircleFilled.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/PlusOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/RedoOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/ReloadOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/RightOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/SearchOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/SettingFilled.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/SettingOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/SwapRightOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/icons/UploadOutlined.mjs +15 -0
- package/dist/node_modules/@ant-design/icons/es/utils.mjs +127 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/AlignCenterOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/AppstoreOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ArrowLeftOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ArrowRightOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownFilled.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleFilled.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ClockCircleOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleFilled.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CopyOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DeleteOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DownOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DownloadOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EditOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleFilled.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FileTwoTone.mjs +7 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FullscreenExitOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FullscreenOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/InfoCircleFilled.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/InfoCircleOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/LeftOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/LoadingOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MenuFoldOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MenuOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MenuUnfoldOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusCircleOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PaperClipOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PauseCircleFilled.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PictureTwoTone.mjs +7 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PlayCircleFilled.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusCircleFilled.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/RedoOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ReloadOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/RightOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/SearchOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/SettingFilled.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/SettingOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/SwapRightOutlined.mjs +5 -0
- package/dist/node_modules/@ant-design/icons-svg/es/asn/UploadOutlined.mjs +5 -0
- package/dist/node_modules/@babel/runtime/helpers/defineProperty.mjs +18 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.mjs +9 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.mjs +7 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.mjs +8 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.mjs +8 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.mjs +26 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/classCallCheck.mjs +7 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/construct.mjs +13 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/createClass.mjs +15 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/createSuper.mjs +18 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/defineProperty.mjs +12 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/extends.mjs +13 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.mjs +8 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/inherits.mjs +17 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/isNativeFunction.mjs +10 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.mjs +13 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArray.mjs +7 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.mjs +29 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableRest.mjs +7 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.mjs +7 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/objectSpread2.mjs +25 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.mjs +15 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.mjs +15 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.mjs +12 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.mjs +315 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.mjs +8 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/slicedToArray.mjs +10 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/toArray.mjs +10 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/toConsumableArray.mjs +10 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/toPrimitive.mjs +16 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/toPropertyKey.mjs +9 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/typeof.mjs +11 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.mjs +12 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.mjs +32 -0
- package/dist/node_modules/@babel/runtime/helpers/interopRequireDefault.mjs +13 -0
- package/dist/node_modules/@babel/runtime/helpers/objectSpread2.mjs +31 -0
- package/dist/node_modules/@babel/runtime/helpers/toPrimitive.mjs +22 -0
- package/dist/node_modules/@babel/runtime/helpers/toPropertyKey.mjs +15 -0
- package/dist/node_modules/@babel/runtime/helpers/typeof.mjs +16 -0
- package/dist/node_modules/@better-scroll/core/dist/core.esm.mjs +1377 -0
- package/dist/node_modules/@better-scroll/wheel/dist/wheel.esm.mjs +253 -0
- package/dist/node_modules/@ctrl/tinycolor/dist/module/conversion.mjs +115 -0
- package/dist/node_modules/@ctrl/tinycolor/dist/module/css-color-names.mjs +153 -0
- package/dist/node_modules/@ctrl/tinycolor/dist/module/format-input.mjs +68 -0
- package/dist/node_modules/@ctrl/tinycolor/dist/module/index.mjs +183 -0
- package/dist/node_modules/@ctrl/tinycolor/dist/module/util.mjs +32 -0
- package/dist/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.mjs +54 -0
- package/dist/node_modules/@dnd-kit/core/dist/core.esm.mjs +2524 -0
- package/dist/node_modules/@dnd-kit/modifiers/dist/modifiers.esm.mjs +27 -0
- package/dist/node_modules/@dnd-kit/sortable/dist/sortable.esm.mjs +367 -0
- package/dist/node_modules/@dnd-kit/utilities/dist/utilities.esm.mjs +235 -0
- package/dist/node_modules/@emotion/cache/dist/emotion-cache.browser.esm.mjs +251 -0
- package/dist/node_modules/@emotion/css/create-instance/dist/emotion-css-create-instance.esm.mjs +86 -0
- package/dist/node_modules/@emotion/css/dist/emotion-css.esm.mjs +7 -0
- package/dist/node_modules/@emotion/hash/dist/emotion-hash.esm.mjs +22 -0
- package/dist/node_modules/@emotion/memoize/dist/emotion-memoize.esm.mjs +9 -0
- package/dist/node_modules/@emotion/serialize/dist/emotion-serialize.esm.mjs +134 -0
- package/dist/node_modules/@emotion/serialize/node_modules/@emotion/unitless/dist/emotion-unitless.esm.mjs +53 -0
- package/dist/node_modules/@emotion/sheet/dist/emotion-sheet.esm.mjs +45 -0
- package/dist/node_modules/@emotion/unitless/dist/unitless.browser.esm.mjs +51 -0
- package/dist/node_modules/@emotion/utils/dist/emotion-utils.browser.esm.mjs +34 -0
- package/dist/node_modules/@fullcalendar/core/index.mjs +1365 -0
- package/dist/node_modules/@fullcalendar/core/internal-common.mjs +4823 -0
- package/dist/node_modules/@fullcalendar/core/locales/zh-cn.mjs +28 -0
- package/dist/node_modules/@fullcalendar/daygrid/index.mjs +32 -0
- package/dist/node_modules/@fullcalendar/daygrid/internal.mjs +746 -0
- package/dist/node_modules/@fullcalendar/interaction/index.mjs +842 -0
- package/dist/node_modules/@fullcalendar/list/index.mjs +54 -0
- package/dist/node_modules/@fullcalendar/list/internal.mjs +207 -0
- package/dist/node_modules/@fullcalendar/react/dist/index.mjs +71 -0
- package/dist/node_modules/@fullcalendar/timegrid/index.mjs +31 -0
- package/dist/node_modules/@fullcalendar/timegrid/internal.mjs +900 -0
- package/dist/node_modules/@rc-component/async-validator/es/index.mjs +159 -0
- package/dist/node_modules/@rc-component/async-validator/es/messages.mjs +58 -0
- package/dist/node_modules/@rc-component/async-validator/es/rule/enum.mjs +7 -0
- package/dist/node_modules/@rc-component/async-validator/es/rule/index.mjs +17 -0
- package/dist/node_modules/@rc-component/async-validator/es/rule/pattern.mjs +14 -0
- package/dist/node_modules/@rc-component/async-validator/es/rule/range.mjs +10 -0
- package/dist/node_modules/@rc-component/async-validator/es/rule/required.mjs +7 -0
- package/dist/node_modules/@rc-component/async-validator/es/rule/type.mjs +63 -0
- package/dist/node_modules/@rc-component/async-validator/es/rule/url.mjs +37 -0
- package/dist/node_modules/@rc-component/async-validator/es/rule/whitespace.mjs +7 -0
- package/dist/node_modules/@rc-component/async-validator/es/util.mjs +167 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/any.mjs +14 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/array.mjs +13 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/boolean.mjs +14 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/date.mjs +17 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/enum.mjs +14 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/float.mjs +14 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/index.mjs +37 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/integer.mjs +14 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/method.mjs +14 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/number.mjs +14 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/object.mjs +14 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/pattern.mjs +14 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/regexp.mjs +14 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/required.mjs +9 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/string.mjs +14 -0
- package/dist/node_modules/@rc-component/async-validator/es/validator/type.mjs +14 -0
- package/dist/node_modules/@rc-component/color-picker/es/ColorPicker.mjs +103 -0
- package/dist/node_modules/@rc-component/color-picker/es/color.mjs +47 -0
- package/dist/node_modules/@rc-component/color-picker/es/components/ColorBlock.mjs +18 -0
- package/dist/node_modules/@rc-component/color-picker/es/components/Gradient.mjs +22 -0
- package/dist/node_modules/@rc-component/color-picker/es/components/Handler.mjs +15 -0
- package/dist/node_modules/@rc-component/color-picker/es/components/Palette.mjs +14 -0
- package/dist/node_modules/@rc-component/color-picker/es/components/Picker.mjs +58 -0
- package/dist/node_modules/@rc-component/color-picker/es/components/Slider.mjs +76 -0
- package/dist/node_modules/@rc-component/color-picker/es/components/Transform.mjs +17 -0
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorDrag.mjs +41 -0
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorState.mjs +17 -0
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useComponent.mjs +11 -0
- package/dist/node_modules/@rc-component/color-picker/es/util.mjs +50 -0
- package/dist/node_modules/@rc-component/portal/es/Context.mjs +5 -0
- package/dist/node_modules/@rc-component/portal/es/Portal.mjs +45 -0
- package/dist/node_modules/@rc-component/portal/es/index.mjs +4 -0
- package/dist/node_modules/@rc-component/portal/es/mock.mjs +8 -0
- package/dist/node_modules/@rc-component/portal/es/useDom.mjs +37 -0
- package/dist/node_modules/@rc-component/portal/es/useScrollLocker.mjs +29 -0
- package/dist/node_modules/@rc-component/portal/es/util.mjs +6 -0
- package/dist/node_modules/@rc-component/trigger/es/Popup/Arrow.mjs +22 -0
- package/dist/node_modules/@rc-component/trigger/es/Popup/Mask.mjs +24 -0
- package/dist/node_modules/@rc-component/trigger/es/Popup/PopupContent.mjs +11 -0
- package/dist/node_modules/@rc-component/trigger/es/Popup/index.mjs +92 -0
- package/dist/node_modules/@rc-component/trigger/es/TriggerWrapper.mjs +14 -0
- package/dist/node_modules/@rc-component/trigger/es/context.mjs +5 -0
- package/dist/node_modules/@rc-component/trigger/es/hooks/useAction.mjs +13 -0
- package/dist/node_modules/@rc-component/trigger/es/hooks/useAlign.mjs +187 -0
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWatch.mjs +27 -0
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWinClick.mjs +27 -0
- package/dist/node_modules/@rc-component/trigger/es/index.mjs +213 -0
- package/dist/node_modules/@rc-component/trigger/es/util.mjs +61 -0
- package/dist/node_modules/ahooks/es/createUpdateEffect/index.mjs +20 -0
- package/dist/node_modules/ahooks/es/useClickAway/index.mjs +27 -0
- package/dist/node_modules/ahooks/es/useControllableValue/index.mjs +23 -0
- package/dist/node_modules/ahooks/es/useInterval/index.mjs +17 -0
- package/dist/node_modules/ahooks/es/useLatest/index.mjs +8 -0
- package/dist/node_modules/ahooks/es/useMemoizedFn/index.mjs +19 -0
- package/dist/node_modules/ahooks/es/useRafState/index.mjs +16 -0
- package/dist/node_modules/ahooks/es/useSetState/index.mjs +16 -0
- package/dist/node_modules/ahooks/es/useSize/index.mjs +34 -0
- package/dist/node_modules/ahooks/es/useThrottleFn/index.mjs +28 -0
- package/dist/node_modules/ahooks/es/useUnmount/index.mjs +17 -0
- package/dist/node_modules/ahooks/es/useUpdate/index.mjs +12 -0
- package/dist/node_modules/ahooks/es/useUpdateEffect/index.mjs +6 -0
- package/dist/node_modules/ahooks/es/useUpdateLayoutEffect/index.mjs +6 -0
- package/dist/node_modules/ahooks/es/utils/createEffectWithTarget.mjs +27 -0
- package/dist/node_modules/ahooks/es/utils/depsAreSame.mjs +11 -0
- package/dist/node_modules/ahooks/es/utils/domTarget.mjs +13 -0
- package/dist/node_modules/ahooks/es/utils/getDocumentOrShadow.mjs +18 -0
- package/dist/node_modules/ahooks/es/utils/index.mjs +9 -0
- package/dist/node_modules/ahooks/es/utils/isBrowser.mjs +5 -0
- package/dist/node_modules/ahooks/es/utils/isDev.mjs +5 -0
- package/dist/node_modules/ahooks/es/utils/useEffectWithTarget.mjs +7 -0
- package/dist/node_modules/ahooks/es/utils/useIsomorphicLayoutEffectWithTarget.mjs +8 -0
- package/dist/node_modules/ahooks/es/utils/useLayoutEffectWithTarget.mjs +7 -0
- package/dist/node_modules/antd/es/_util/ActionButton.mjs +70 -0
- package/dist/node_modules/antd/es/_util/ContextIsolator.mjs +20 -0
- package/dist/node_modules/antd/es/_util/PurePanel.mjs +16 -0
- package/dist/node_modules/antd/es/_util/colors.mjs +9 -0
- package/dist/node_modules/antd/es/_util/hooks/useClosable.mjs +66 -0
- package/dist/node_modules/antd/es/_util/hooks/useForceUpdate.mjs +8 -0
- package/dist/node_modules/antd/es/_util/hooks/usePatchElement.mjs +11 -0
- package/dist/node_modules/antd/es/_util/hooks/useZIndex.mjs +45 -0
- package/dist/node_modules/antd/es/_util/motion.mjs +34 -0
- package/dist/node_modules/antd/es/_util/placements.mjs +150 -0
- package/dist/node_modules/antd/es/_util/reactNode.mjs +13 -0
- package/dist/node_modules/antd/es/_util/styleChecker.mjs +5 -0
- package/dist/node_modules/antd/es/_util/toList.mjs +6 -0
- package/dist/node_modules/antd/es/_util/warning.mjs +38 -0
- package/dist/node_modules/antd/es/_util/wave/WaveEffect.mjs +96 -0
- package/dist/node_modules/antd/es/_util/wave/index.mjs +40 -0
- package/dist/node_modules/antd/es/_util/wave/interface.mjs +6 -0
- package/dist/node_modules/antd/es/_util/wave/style.mjs +47 -0
- package/dist/node_modules/antd/es/_util/wave/useWave.mjs +38 -0
- package/dist/node_modules/antd/es/_util/wave/util.mjs +16 -0
- package/dist/node_modules/antd/es/_util/zindexContext.mjs +7 -0
- package/dist/node_modules/antd/es/button/IconWrapper.mjs +18 -0
- package/dist/node_modules/antd/es/button/LoadingIcon.mjs +70 -0
- package/dist/node_modules/antd/es/button/button-group.mjs +65 -0
- package/dist/node_modules/antd/es/button/button.mjs +177 -0
- package/dist/node_modules/antd/es/button/buttonHelpers.mjs +44 -0
- package/dist/node_modules/antd/es/button/index.mjs +4 -0
- package/dist/node_modules/antd/es/button/style/compactCmp.mjs +75 -0
- package/dist/node_modules/antd/es/button/style/group.mjs +70 -0
- package/dist/node_modules/antd/es/button/style/index.mjs +373 -0
- package/dist/node_modules/antd/es/button/style/token.mjs +81 -0
- package/dist/node_modules/antd/es/calendar/locale/en_US.mjs +4 -0
- package/dist/node_modules/antd/es/color-picker/color.mjs +96 -0
- package/dist/node_modules/antd/es/color-picker/components/ColorPresets.mjs +17 -0
- package/dist/node_modules/antd/es/config-provider/DisabledContext.mjs +15 -0
- package/dist/node_modules/antd/es/config-provider/MotionWrapper.mjs +32 -0
- package/dist/node_modules/antd/es/config-provider/PropWarning.mjs +13 -0
- package/dist/node_modules/antd/es/config-provider/SizeContext.mjs +15 -0
- package/dist/node_modules/antd/es/config-provider/context.mjs +11 -0
- package/dist/node_modules/antd/es/config-provider/cssVariables.mjs +39 -0
- package/dist/node_modules/antd/es/config-provider/hooks/useCSSVarCls.mjs +23 -0
- package/dist/node_modules/antd/es/config-provider/hooks/useConfig.mjs +13 -0
- package/dist/node_modules/antd/es/config-provider/hooks/useSize.mjs +9 -0
- package/dist/node_modules/antd/es/config-provider/hooks/useTheme.mjs +41 -0
- package/dist/node_modules/antd/es/config-provider/hooks/useThemeKey.mjs +7 -0
- package/dist/node_modules/antd/es/config-provider/index.mjs +327 -0
- package/dist/node_modules/antd/es/date-picker/locale/en_US.mjs +20 -0
- package/dist/node_modules/antd/es/form/context.mjs +23 -0
- package/dist/node_modules/antd/es/form/validateMessagesContext.mjs +5 -0
- package/dist/node_modules/antd/es/locale/context.mjs +5 -0
- package/dist/node_modules/antd/es/locale/en_US.mjs +146 -0
- package/dist/node_modules/antd/es/locale/index.mjs +28 -0
- package/dist/node_modules/antd/es/locale/useLocale.mjs +17 -0
- package/dist/node_modules/antd/es/modal/ConfirmDialog.mjs +175 -0
- package/dist/node_modules/antd/es/modal/Modal.mjs +137 -0
- package/dist/node_modules/antd/es/modal/PurePanel.mjs +60 -0
- package/dist/node_modules/antd/es/modal/components/ConfirmCancelBtn.mjs +29 -0
- package/dist/node_modules/antd/es/modal/components/ConfirmOkBtn.mjs +30 -0
- package/dist/node_modules/antd/es/modal/components/NormalCancelBtn.mjs +16 -0
- package/dist/node_modules/antd/es/modal/components/NormalOkBtn.mjs +20 -0
- package/dist/node_modules/antd/es/modal/confirm.mjs +122 -0
- package/dist/node_modules/antd/es/modal/context.mjs +8 -0
- package/dist/node_modules/antd/es/modal/destroyFns.mjs +4 -0
- package/dist/node_modules/antd/es/modal/index.mjs +37 -0
- package/dist/node_modules/antd/es/modal/locale.mjs +19 -0
- package/dist/node_modules/antd/es/modal/shared.mjs +51 -0
- package/dist/node_modules/antd/es/modal/style/confirm.mjs +113 -0
- package/dist/node_modules/antd/es/modal/style/index.mjs +292 -0
- package/dist/node_modules/antd/es/modal/useModal/HookModal.mjs +60 -0
- package/dist/node_modules/antd/es/modal/useModal/index.mjs +73 -0
- package/dist/node_modules/antd/es/progress/Circle.mjs +60 -0
- package/dist/node_modules/antd/es/progress/Line.mjs +109 -0
- package/dist/node_modules/antd/es/progress/Steps.mjs +38 -0
- package/dist/node_modules/antd/es/progress/index.mjs +4 -0
- package/dist/node_modules/antd/es/progress/progress.mjs +120 -0
- package/dist/node_modules/antd/es/progress/style/index.mjs +313 -0
- package/dist/node_modules/antd/es/progress/utils.mjs +51 -0
- package/dist/node_modules/antd/es/skeleton/Avatar.mjs +31 -0
- package/dist/node_modules/antd/es/skeleton/Button.mjs +31 -0
- package/dist/node_modules/antd/es/skeleton/Element.mjs +29 -0
- package/dist/node_modules/antd/es/skeleton/Image.mjs +34 -0
- package/dist/node_modules/antd/es/skeleton/Input.mjs +31 -0
- package/dist/node_modules/antd/es/skeleton/Node.mjs +28 -0
- package/dist/node_modules/antd/es/skeleton/Paragraph.mjs +35 -0
- package/dist/node_modules/antd/es/skeleton/Skeleton.mjs +108 -0
- package/dist/node_modules/antd/es/skeleton/Title.mjs +22 -0
- package/dist/node_modules/antd/es/skeleton/index.mjs +4 -0
- package/dist/node_modules/antd/es/skeleton/style/index.mjs +311 -0
- package/dist/node_modules/antd/es/slider/Context.mjs +5 -0
- package/dist/node_modules/antd/es/slider/SliderTooltip.mjs +30 -0
- package/dist/node_modules/antd/es/slider/index.mjs +153 -0
- package/dist/node_modules/antd/es/slider/style/index.mjs +325 -0
- package/dist/node_modules/antd/es/slider/useRafLock.mjs +15 -0
- package/dist/node_modules/antd/es/space/Compact.mjs +37 -0
- package/dist/node_modules/antd/es/style/compact-item-vertical.mjs +44 -0
- package/dist/node_modules/antd/es/style/compact-item.mjs +61 -0
- package/dist/node_modules/antd/es/style/index.mjs +125 -0
- package/dist/node_modules/antd/es/style/motion/collapse.mjs +20 -0
- package/dist/node_modules/antd/es/style/motion/fade.mjs +50 -0
- package/dist/node_modules/antd/es/style/motion/motion.mjs +35 -0
- package/dist/node_modules/antd/es/style/motion/zoom.mjs +195 -0
- package/dist/node_modules/antd/es/style/placementArrow.mjs +164 -0
- package/dist/node_modules/antd/es/style/roundedArrow.mjs +74 -0
- package/dist/node_modules/antd/es/table/ExpandIcon.mjs +29 -0
- package/dist/node_modules/antd/es/theme/context.mjs +25 -0
- package/dist/node_modules/antd/es/theme/getDesignToken.mjs +23 -0
- package/dist/node_modules/antd/es/theme/interface/presetColors.mjs +4 -0
- package/dist/node_modules/antd/es/theme/themes/compact/genCompactSizeMapToken.mjs +20 -0
- package/dist/node_modules/antd/es/theme/themes/compact/index.mjs +16 -0
- package/dist/node_modules/antd/es/theme/themes/dark/colorAlgorithm.mjs +6 -0
- package/dist/node_modules/antd/es/theme/themes/dark/colors.mjs +51 -0
- package/dist/node_modules/antd/es/theme/themes/dark/index.mjs +21 -0
- package/dist/node_modules/antd/es/theme/themes/default/colorAlgorithm.mjs +6 -0
- package/dist/node_modules/antd/es/theme/themes/default/colors.mjs +49 -0
- package/dist/node_modules/antd/es/theme/themes/default/index.mjs +23 -0
- package/dist/node_modules/antd/es/theme/themes/seed.mjs +69 -0
- package/dist/node_modules/antd/es/theme/themes/shared/genColorMapToken.mjs +78 -0
- package/dist/node_modules/antd/es/theme/themes/shared/genCommonMapToken.mjs +20 -0
- package/dist/node_modules/antd/es/theme/themes/shared/genControlHeight.mjs +13 -0
- package/dist/node_modules/antd/es/theme/themes/shared/genFontMapToken.mjs +29 -0
- package/dist/node_modules/antd/es/theme/themes/shared/genFontSizes.mjs +17 -0
- package/dist/node_modules/antd/es/theme/themes/shared/genRadius.mjs +13 -0
- package/dist/node_modules/antd/es/theme/themes/shared/genSizeMapToken.mjs +29 -0
- package/dist/node_modules/antd/es/theme/useToken.mjs +118 -0
- package/dist/node_modules/antd/es/theme/util/alias.mjs +162 -0
- package/dist/node_modules/antd/es/theme/util/genPresetColor.mjs +15 -0
- package/dist/node_modules/antd/es/theme/util/genStyleUtils.mjs +50 -0
- package/dist/node_modules/antd/es/theme/util/getAlphaColor.mjs +38 -0
- package/dist/node_modules/antd/es/theme/util/useResetIconStyle.mjs +36 -0
- package/dist/node_modules/antd/es/time-picker/locale/en_US.mjs +7 -0
- package/dist/node_modules/antd/es/tooltip/PurePanel.mjs +33 -0
- package/dist/node_modules/antd/es/tooltip/index.mjs +148 -0
- package/dist/node_modules/antd/es/tooltip/style/index.mjs +139 -0
- package/dist/node_modules/antd/es/tooltip/util.mjs +15 -0
- package/dist/node_modules/antd/es/typography/hooks/useCopyClick.mjs +64 -0
- package/dist/node_modules/antd/es/upload/Dragger.mjs +32 -0
- package/dist/node_modules/antd/es/upload/Upload.mjs +304 -0
- package/dist/node_modules/antd/es/upload/UploadList/ListItem.mjs +156 -0
- package/dist/node_modules/antd/es/upload/UploadList/index.mjs +167 -0
- package/dist/node_modules/antd/es/upload/index.mjs +9 -0
- package/dist/node_modules/antd/es/upload/style/dragger.mjs +84 -0
- package/dist/node_modules/antd/es/upload/style/index.mjs +65 -0
- package/dist/node_modules/antd/es/upload/style/list.mjs +115 -0
- package/dist/node_modules/antd/es/upload/style/motion.mjs +54 -0
- package/dist/node_modules/antd/es/upload/style/picture.mjs +240 -0
- package/dist/node_modules/antd/es/upload/style/rtl.mjs +13 -0
- package/dist/node_modules/antd/es/upload/utils.mjs +79 -0
- package/dist/node_modules/antd/es/version/index.mjs +4 -0
- package/dist/node_modules/antd/es/version/version.mjs +4 -0
- package/dist/node_modules/antd/es/watermark/context.mjs +25 -0
- package/dist/node_modules/antd/lib/calendar/locale/en_US.mjs +11 -0
- package/dist/node_modules/antd/lib/date-picker/locale/en_US.mjs +28 -0
- package/dist/node_modules/antd/lib/locale/en_US.mjs +157 -0
- package/dist/node_modules/antd/lib/time-picker/locale/en_US.mjs +10 -0
- package/dist/node_modules/antd/locale/en_US.mjs +8 -0
- package/dist/node_modules/antd-img-crop/dist/antd-img-crop.esm.mjs +137 -0
- package/dist/node_modules/better-scroll/dist/better-scroll.esm.mjs +3670 -0
- package/dist/node_modules/classnames/index.mjs +42 -0
- package/dist/node_modules/clsx/dist/clsx.mjs +23 -0
- package/dist/node_modules/copy-to-clipboard/index.mjs +46 -0
- package/dist/node_modules/dayjs/dayjs.min.mjs +297 -0
- package/dist/node_modules/dayjs/locale/zh-cn.mjs +19 -0
- package/dist/node_modules/dayjs/plugin/isBetween.mjs +19 -0
- package/dist/node_modules/dayjs/plugin/isSameOrAfter.mjs +18 -0
- package/dist/node_modules/dayjs/plugin/isSameOrBefore.mjs +18 -0
- package/dist/node_modules/dayjs/plugin/isToday.mjs +19 -0
- package/dist/node_modules/dayjs/plugin/isoWeek.mjs +34 -0
- package/dist/node_modules/dayjs/plugin/objectSupport.mjs +49 -0
- package/dist/node_modules/dayjs/plugin/relativeTime.mjs +49 -0
- package/dist/node_modules/dayjs/plugin/utc.mjs +87 -0
- package/dist/node_modules/dayjs/plugin/weekOfYear.mjs +31 -0
- package/dist/node_modules/immer/dist/immer.mjs +473 -0
- package/dist/node_modules/lodash/_Symbol.mjs +5 -0
- package/dist/node_modules/lodash/_baseGetTag.mjs +11 -0
- package/dist/node_modules/lodash/_baseTrim.mjs +9 -0
- package/dist/node_modules/lodash/_freeGlobal.mjs +5 -0
- package/dist/node_modules/lodash/_getRawTag.mjs +16 -0
- package/dist/node_modules/lodash/_objectToString.mjs +8 -0
- package/dist/node_modules/lodash/_root.mjs +5 -0
- package/dist/node_modules/lodash/_trimmedEndIndex.mjs +10 -0
- package/dist/node_modules/lodash/debounce.mjs +55 -0
- package/dist/node_modules/lodash/isObject.mjs +8 -0
- package/dist/node_modules/lodash/isObjectLike.mjs +7 -0
- package/dist/node_modules/lodash/isSymbol.mjs +10 -0
- package/dist/node_modules/lodash/now.mjs +7 -0
- package/dist/node_modules/lodash/throttle.mjs +19 -0
- package/dist/node_modules/lodash/toNumber.mjs +23 -0
- package/dist/node_modules/lodash-es/_DataView.mjs +7 -0
- package/dist/node_modules/lodash-es/_Hash.mjs +20 -0
- package/dist/node_modules/lodash-es/_ListCache.mjs +20 -0
- package/dist/node_modules/lodash-es/_Map.mjs +7 -0
- package/dist/node_modules/lodash-es/_MapCache.mjs +20 -0
- package/dist/node_modules/lodash-es/_Promise.mjs +7 -0
- package/dist/node_modules/lodash-es/_Set.mjs +7 -0
- package/dist/node_modules/lodash-es/_Stack.mjs +18 -0
- package/dist/node_modules/lodash-es/_Symbol.mjs +6 -0
- package/dist/node_modules/lodash-es/_Uint8Array.mjs +6 -0
- package/dist/node_modules/lodash-es/_WeakMap.mjs +7 -0
- package/dist/node_modules/lodash-es/_apply.mjs +16 -0
- package/dist/node_modules/lodash-es/_arrayEach.mjs +8 -0
- package/dist/node_modules/lodash-es/_arrayFilter.mjs +10 -0
- package/dist/node_modules/lodash-es/_arrayLikeKeys.mjs +20 -0
- package/dist/node_modules/lodash-es/_arrayMap.mjs +8 -0
- package/dist/node_modules/lodash-es/_arrayPush.mjs +8 -0
- package/dist/node_modules/lodash-es/_assignMergeValue.mjs +8 -0
- package/dist/node_modules/lodash-es/_assignValue.mjs +10 -0
- package/dist/node_modules/lodash-es/_assocIndexOf.mjs +10 -0
- package/dist/node_modules/lodash-es/_baseAssign.mjs +8 -0
- package/dist/node_modules/lodash-es/_baseAssignIn.mjs +8 -0
- package/dist/node_modules/lodash-es/_baseAssignValue.mjs +12 -0
- package/dist/node_modules/lodash-es/_baseAt.mjs +9 -0
- package/dist/node_modules/lodash-es/_baseClone.mjs +65 -0
- package/dist/node_modules/lodash-es/_baseCreate.mjs +18 -0
- package/dist/node_modules/lodash-es/_baseFlatten.mjs +13 -0
- package/dist/node_modules/lodash-es/_baseFor.mjs +6 -0
- package/dist/node_modules/lodash-es/_baseGet.mjs +11 -0
- package/dist/node_modules/lodash-es/_baseGetAllKeys.mjs +9 -0
- package/dist/node_modules/lodash-es/_baseGetTag.mjs +10 -0
- package/dist/node_modules/lodash-es/_baseIsArguments.mjs +9 -0
- package/dist/node_modules/lodash-es/_baseIsMap.mjs +9 -0
- package/dist/node_modules/lodash-es/_baseIsNative.mjs +16 -0
- package/dist/node_modules/lodash-es/_baseIsSet.mjs +9 -0
- package/dist/node_modules/lodash-es/_baseIsTypedArray.mjs +12 -0
- package/dist/node_modules/lodash-es/_baseKeys.mjs +14 -0
- package/dist/node_modules/lodash-es/_baseKeysIn.mjs +15 -0
- package/dist/node_modules/lodash-es/_baseMerge.mjs +20 -0
- package/dist/node_modules/lodash-es/_baseMergeDeep.mjs +31 -0
- package/dist/node_modules/lodash-es/_baseRest.mjs +9 -0
- package/dist/node_modules/lodash-es/_baseSetToString.mjs +15 -0
- package/dist/node_modules/lodash-es/_baseSlice.mjs +10 -0
- package/dist/node_modules/lodash-es/_baseTimes.mjs +8 -0
- package/dist/node_modules/lodash-es/_baseToString.mjs +18 -0
- package/dist/node_modules/lodash-es/_baseUnary.mjs +8 -0
- package/dist/node_modules/lodash-es/_baseUnset.mjs +10 -0
- package/dist/node_modules/lodash-es/_castPath.mjs +10 -0
- package/dist/node_modules/lodash-es/_cloneArrayBuffer.mjs +8 -0
- package/dist/node_modules/lodash-es/_cloneBuffer.mjs +11 -0
- package/dist/node_modules/lodash-es/_cloneDataView.mjs +8 -0
- package/dist/node_modules/lodash-es/_cloneRegExp.mjs +8 -0
- package/dist/node_modules/lodash-es/_cloneSymbol.mjs +8 -0
- package/dist/node_modules/lodash-es/_cloneTypedArray.mjs +8 -0
- package/dist/node_modules/lodash-es/_copyArray.mjs +9 -0
- package/dist/node_modules/lodash-es/_copyObject.mjs +14 -0
- package/dist/node_modules/lodash-es/_copySymbols.mjs +8 -0
- package/dist/node_modules/lodash-es/_copySymbolsIn.mjs +8 -0
- package/dist/node_modules/lodash-es/_coreJsData.mjs +6 -0
- package/dist/node_modules/lodash-es/_createAssigner.mjs +15 -0
- package/dist/node_modules/lodash-es/_createBaseFor.mjs +13 -0
- package/dist/node_modules/lodash-es/_customOmitClone.mjs +7 -0
- package/dist/node_modules/lodash-es/_defineProperty.mjs +12 -0
- package/dist/node_modules/lodash-es/_flatRest.mjs +9 -0
- package/dist/node_modules/lodash-es/_freeGlobal.mjs +5 -0
- package/dist/node_modules/lodash-es/_getAllKeys.mjs +9 -0
- package/dist/node_modules/lodash-es/_getAllKeysIn.mjs +9 -0
- package/dist/node_modules/lodash-es/_getMapData.mjs +8 -0
- package/dist/node_modules/lodash-es/_getNative.mjs +9 -0
- package/dist/node_modules/lodash-es/_getPrototype.mjs +6 -0
- package/dist/node_modules/lodash-es/_getRawTag.mjs +15 -0
- package/dist/node_modules/lodash-es/_getSymbols.mjs +11 -0
- package/dist/node_modules/lodash-es/_getSymbolsIn.mjs +13 -0
- package/dist/node_modules/lodash-es/_getTag.mjs +29 -0
- package/dist/node_modules/lodash-es/_getValue.mjs +6 -0
- package/dist/node_modules/lodash-es/_hashClear.mjs +7 -0
- package/dist/node_modules/lodash-es/_hashDelete.mjs +7 -0
- package/dist/node_modules/lodash-es/_hashGet.mjs +13 -0
- package/dist/node_modules/lodash-es/_hashHas.mjs +9 -0
- package/dist/node_modules/lodash-es/_hashSet.mjs +9 -0
- package/dist/node_modules/lodash-es/_initCloneArray.mjs +8 -0
- package/dist/node_modules/lodash-es/_initCloneByTag.mjs +42 -0
- package/dist/node_modules/lodash-es/_initCloneObject.mjs +9 -0
- package/dist/node_modules/lodash-es/_isFlattenable.mjs +10 -0
- package/dist/node_modules/lodash-es/_isIndex.mjs +8 -0
- package/dist/node_modules/lodash-es/_isIterateeCall.mjs +13 -0
- package/dist/node_modules/lodash-es/_isKey.mjs +12 -0
- package/dist/node_modules/lodash-es/_isKeyable.mjs +7 -0
- package/dist/node_modules/lodash-es/_isMasked.mjs +11 -0
- package/dist/node_modules/lodash-es/_isPrototype.mjs +8 -0
- package/dist/node_modules/lodash-es/_listCacheClear.mjs +6 -0
- package/dist/node_modules/lodash-es/_listCacheDelete.mjs +12 -0
- package/dist/node_modules/lodash-es/_listCacheGet.mjs +8 -0
- package/dist/node_modules/lodash-es/_listCacheHas.mjs +7 -0
- package/dist/node_modules/lodash-es/_listCacheSet.mjs +8 -0
- package/dist/node_modules/lodash-es/_mapCacheClear.mjs +13 -0
- package/dist/node_modules/lodash-es/_mapCacheDelete.mjs +8 -0
- package/dist/node_modules/lodash-es/_mapCacheGet.mjs +7 -0
- package/dist/node_modules/lodash-es/_mapCacheHas.mjs +7 -0
- package/dist/node_modules/lodash-es/_mapCacheSet.mjs +8 -0
- package/dist/node_modules/lodash-es/_memoizeCapped.mjs +11 -0
- package/dist/node_modules/lodash-es/_nativeCreate.mjs +6 -0
- package/dist/node_modules/lodash-es/_nativeKeys.mjs +6 -0
- package/dist/node_modules/lodash-es/_nativeKeysIn.mjs +10 -0
- package/dist/node_modules/lodash-es/_nodeUtil.mjs +12 -0
- package/dist/node_modules/lodash-es/_objectToString.mjs +7 -0
- package/dist/node_modules/lodash-es/_overArg.mjs +8 -0
- package/dist/node_modules/lodash-es/_overRest.mjs +15 -0
- package/dist/node_modules/lodash-es/_parent.mjs +8 -0
- package/dist/node_modules/lodash-es/_root.mjs +6 -0
- package/dist/node_modules/lodash-es/_safeGet.mjs +7 -0
- package/dist/node_modules/lodash-es/_setToString.mjs +7 -0
- package/dist/node_modules/lodash-es/_shortOut.mjs +16 -0
- package/dist/node_modules/lodash-es/_stackClear.mjs +7 -0
- package/dist/node_modules/lodash-es/_stackDelete.mjs +7 -0
- package/dist/node_modules/lodash-es/_stackGet.mjs +6 -0
- package/dist/node_modules/lodash-es/_stackHas.mjs +6 -0
- package/dist/node_modules/lodash-es/_stackSet.mjs +17 -0
- package/dist/node_modules/lodash-es/_stringToPath.mjs +11 -0
- package/dist/node_modules/lodash-es/_toKey.mjs +11 -0
- package/dist/node_modules/lodash-es/_toSource.mjs +17 -0
- package/dist/node_modules/lodash-es/at.mjs +7 -0
- package/dist/node_modules/lodash-es/constant.mjs +8 -0
- package/dist/node_modules/lodash-es/eq.mjs +6 -0
- package/dist/node_modules/lodash-es/flatten.mjs +8 -0
- package/dist/node_modules/lodash-es/get.mjs +8 -0
- package/dist/node_modules/lodash-es/identity.mjs +6 -0
- package/dist/node_modules/lodash-es/isArguments.mjs +11 -0
- package/dist/node_modules/lodash-es/isArray.mjs +5 -0
- package/dist/node_modules/lodash-es/isArrayLike.mjs +8 -0
- package/dist/node_modules/lodash-es/isArrayLikeObject.mjs +8 -0
- package/dist/node_modules/lodash-es/isBoolean.mjs +9 -0
- package/dist/node_modules/lodash-es/isBuffer.mjs +7 -0
- package/dist/node_modules/lodash-es/isFunction.mjs +12 -0
- package/dist/node_modules/lodash-es/isLength.mjs +7 -0
- package/dist/node_modules/lodash-es/isMap.mjs +8 -0
- package/dist/node_modules/lodash-es/isObject.mjs +7 -0
- package/dist/node_modules/lodash-es/isObjectLike.mjs +6 -0
- package/dist/node_modules/lodash-es/isPlainObject.mjs +16 -0
- package/dist/node_modules/lodash-es/isSet.mjs +8 -0
- package/dist/node_modules/lodash-es/isSymbol.mjs +9 -0
- package/dist/node_modules/lodash-es/isTypedArray.mjs +8 -0
- package/dist/node_modules/lodash-es/keys.mjs +9 -0
- package/dist/node_modules/lodash-es/keysIn.mjs +9 -0
- package/dist/node_modules/lodash-es/last.mjs +7 -0
- package/dist/node_modules/lodash-es/memoize.mjs +18 -0
- package/dist/node_modules/lodash-es/merge.mjs +9 -0
- package/dist/node_modules/lodash-es/omit.mjs +24 -0
- package/dist/node_modules/lodash-es/stubArray.mjs +6 -0
- package/dist/node_modules/lodash-es/stubFalse.mjs +6 -0
- package/dist/node_modules/lodash-es/toPlainObject.mjs +8 -0
- package/dist/node_modules/lodash-es/toString.mjs +7 -0
- package/dist/node_modules/normalize-wheel/index.mjs +7 -0
- package/dist/node_modules/normalize-wheel/src/ExecutionEnvironment.mjs +11 -0
- package/dist/node_modules/normalize-wheel/src/UserAgent_DEPRECATED.mjs +142 -0
- package/dist/node_modules/normalize-wheel/src/isEventSupported.mjs +33 -0
- package/dist/node_modules/normalize-wheel/src/normalizeWheel.mjs +19 -0
- package/dist/node_modules/object-assign/index.mjs +55 -0
- package/dist/node_modules/preact/compat/dist/compat.module.mjs +202 -0
- package/dist/node_modules/preact/dist/preact.module.mjs +343 -0
- package/dist/node_modules/preact/hooks/dist/hooks.module.mjs +63 -0
- package/dist/node_modules/prop-types/checkPropTypes.mjs +55 -0
- package/dist/node_modules/prop-types/factoryWithThrowingShims.mjs +53 -0
- package/dist/node_modules/prop-types/factoryWithTypeCheckers.mjs +330 -0
- package/dist/node_modules/prop-types/index.mjs +16 -0
- package/dist/node_modules/prop-types/lib/ReactPropTypesSecret.mjs +11 -0
- package/dist/node_modules/prop-types/lib/has.mjs +7 -0
- package/dist/node_modules/rc-dialog/es/Dialog/Content/MemoChildren.mjs +11 -0
- package/dist/node_modules/rc-dialog/es/Dialog/Content/Panel.mjs +93 -0
- package/dist/node_modules/rc-dialog/es/Dialog/Content/index.mjs +43 -0
- package/dist/node_modules/rc-dialog/es/Dialog/Mask.mjs +25 -0
- package/dist/node_modules/rc-dialog/es/Dialog/index.mjs +114 -0
- package/dist/node_modules/rc-dialog/es/DialogWrap.mjs +32 -0
- package/dist/node_modules/rc-dialog/es/context.mjs +5 -0
- package/dist/node_modules/rc-dialog/es/index.mjs +6 -0
- package/dist/node_modules/rc-dialog/es/util.mjs +23 -0
- package/dist/node_modules/rc-field-form/es/Field.mjs +300 -0
- package/dist/node_modules/rc-field-form/es/FieldContext.mjs +41 -0
- package/dist/node_modules/rc-field-form/es/Form.mjs +78 -0
- package/dist/node_modules/rc-field-form/es/FormContext.mjs +46 -0
- package/dist/node_modules/rc-field-form/es/List.mjs +82 -0
- package/dist/node_modules/rc-field-form/es/ListContext.mjs +5 -0
- package/dist/node_modules/rc-field-form/es/index.mjs +22 -0
- package/dist/node_modules/rc-field-form/es/useForm.mjs +541 -0
- package/dist/node_modules/rc-field-form/es/useWatch.mjs +53 -0
- package/dist/node_modules/rc-field-form/es/utils/NameMap.mjs +66 -0
- package/dist/node_modules/rc-field-form/es/utils/asyncUtil.mjs +15 -0
- package/dist/node_modules/rc-field-form/es/utils/messages.mjs +50 -0
- package/dist/node_modules/rc-field-form/es/utils/typeUtil.mjs +10 -0
- package/dist/node_modules/rc-field-form/es/utils/validateUtil.mjs +203 -0
- package/dist/node_modules/rc-field-form/es/utils/valueUtil.mjs +60 -0
- package/dist/node_modules/rc-motion/es/CSSMotion.mjs +73 -0
- package/dist/node_modules/rc-motion/es/CSSMotionList.mjs +95 -0
- package/dist/node_modules/rc-motion/es/DomWrapper.mjs +21 -0
- package/dist/node_modules/rc-motion/es/context.mjs +13 -0
- package/dist/node_modules/rc-motion/es/hooks/useDomMotionEvents.mjs +20 -0
- package/dist/node_modules/rc-motion/es/hooks/useIsomorphicLayoutEffect.mjs +6 -0
- package/dist/node_modules/rc-motion/es/hooks/useNextFrame.mjs +28 -0
- package/dist/node_modules/rc-motion/es/hooks/useStatus.mjs +91 -0
- package/dist/node_modules/rc-motion/es/hooks/useStepQueue.mjs +38 -0
- package/dist/node_modules/rc-motion/es/index.mjs +7 -0
- package/dist/node_modules/rc-motion/es/interface.mjs +13 -0
- package/dist/node_modules/rc-motion/es/util/diff.mjs +65 -0
- package/dist/node_modules/rc-motion/es/util/motion.mjs +51 -0
- package/dist/node_modules/rc-pagination/es/locale/en_US.mjs +18 -0
- package/dist/node_modules/rc-pagination/lib/locale/en_US.mjs +21 -0
- package/dist/node_modules/rc-picker/es/locale/common.mjs +9 -0
- package/dist/node_modules/rc-picker/es/locale/en_US.mjs +31 -0
- package/dist/node_modules/rc-picker/lib/locale/common.mjs +14 -0
- package/dist/node_modules/rc-picker/lib/locale/en_US.mjs +37 -0
- package/dist/node_modules/rc-progress/es/Circle/PtgCircle.mjs +52 -0
- package/dist/node_modules/rc-progress/es/Circle/index.mjs +83 -0
- package/dist/node_modules/rc-progress/es/Circle/util.mjs +23 -0
- package/dist/node_modules/rc-progress/es/Line.mjs +3 -0
- package/dist/node_modules/rc-progress/es/common.mjs +27 -0
- package/dist/node_modules/rc-progress/es/hooks/useId.mjs +18 -0
- package/dist/node_modules/rc-resize-observer/es/Collection.mjs +22 -0
- package/dist/node_modules/rc-resize-observer/es/SingleObserver/DomWrapper.mjs +21 -0
- package/dist/node_modules/rc-resize-observer/es/SingleObserver/index.mjs +59 -0
- package/dist/node_modules/rc-resize-observer/es/index.mjs +24 -0
- package/dist/node_modules/rc-resize-observer/es/utils/observerUtil.mjs +23 -0
- package/dist/node_modules/rc-slider/es/Handles/Handle.mjs +103 -0
- package/dist/node_modules/rc-slider/es/Handles/index.mjs +69 -0
- package/dist/node_modules/rc-slider/es/Marks/Mark.mjs +22 -0
- package/dist/node_modules/rc-slider/es/Marks/index.mjs +20 -0
- package/dist/node_modules/rc-slider/es/Slider.mjs +225 -0
- package/dist/node_modules/rc-slider/es/Steps/Dot.mjs +16 -0
- package/dist/node_modules/rc-slider/es/Steps/index.mjs +28 -0
- package/dist/node_modules/rc-slider/es/Tracks/Track.mjs +34 -0
- package/dist/node_modules/rc-slider/es/Tracks/index.mjs +50 -0
- package/dist/node_modules/rc-slider/es/context.mjs +17 -0
- package/dist/node_modules/rc-slider/es/hooks/useDrag.mjs +104 -0
- package/dist/node_modules/rc-slider/es/hooks/useOffset.mjs +104 -0
- package/dist/node_modules/rc-slider/es/hooks/useRange.mjs +13 -0
- package/dist/node_modules/rc-slider/es/index.mjs +5 -0
- package/dist/node_modules/rc-slider/es/util.mjs +29 -0
- package/dist/node_modules/rc-tooltip/es/Popup.mjs +17 -0
- package/dist/node_modules/rc-tooltip/es/Tooltip.mjs +52 -0
- package/dist/node_modules/rc-tooltip/es/index.mjs +6 -0
- package/dist/node_modules/rc-tooltip/es/placements.mjs +84 -0
- package/dist/node_modules/rc-upload/es/AjaxUploader.mjs +284 -0
- package/dist/node_modules/rc-upload/es/Upload.mjs +57 -0
- package/dist/node_modules/rc-upload/es/attr-accept.mjs +22 -0
- package/dist/node_modules/rc-upload/es/index.mjs +4 -0
- package/dist/node_modules/rc-upload/es/request.mjs +46 -0
- package/dist/node_modules/rc-upload/es/traverseFileTree.mjs +137 -0
- package/dist/node_modules/rc-upload/es/uid.mjs +7 -0
- package/dist/node_modules/rc-util/es/Children/toArray.mjs +11 -0
- package/dist/node_modules/rc-util/es/Dom/canUseDom.mjs +6 -0
- package/dist/node_modules/rc-util/es/Dom/contains.mjs +15 -0
- package/dist/node_modules/rc-util/es/Dom/dynamicCSS.mjs +87 -0
- package/dist/node_modules/rc-util/es/Dom/findDOMNode.mjs +24 -0
- package/dist/node_modules/rc-util/es/Dom/isVisible.mjs +22 -0
- package/dist/node_modules/rc-util/es/Dom/shadow.mjs +14 -0
- package/dist/node_modules/rc-util/es/KeyCode.mjs +517 -0
- package/dist/node_modules/rc-util/es/React/render.mjs +81 -0
- package/dist/node_modules/rc-util/es/getScrollBarSize.mjs +38 -0
- package/dist/node_modules/rc-util/es/hooks/useEvent.mjs +14 -0
- package/dist/node_modules/rc-util/es/hooks/useId.mjs +27 -0
- package/dist/node_modules/rc-util/es/hooks/useLayoutEffect.mjs +21 -0
- package/dist/node_modules/rc-util/es/hooks/useMemo.mjs +8 -0
- package/dist/node_modules/rc-util/es/hooks/useMergedState.mjs +25 -0
- package/dist/node_modules/rc-util/es/hooks/useState.mjs +17 -0
- package/dist/node_modules/rc-util/es/hooks/useSyncState.mjs +16 -0
- package/dist/node_modules/rc-util/es/isEqual.mjs +35 -0
- package/dist/node_modules/rc-util/es/isMobile.mjs +9 -0
- package/dist/node_modules/rc-util/es/omit.mjs +9 -0
- package/dist/node_modules/rc-util/es/pickAttrs.mjs +42 -0
- package/dist/node_modules/rc-util/es/raf.mjs +40 -0
- package/dist/node_modules/rc-util/es/ref.mjs +39 -0
- package/dist/node_modules/rc-util/es/utils/get.mjs +11 -0
- package/dist/node_modules/rc-util/es/utils/set.mjs +47 -0
- package/dist/node_modules/rc-util/es/warning.mjs +44 -0
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.development.mjs +103 -0
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.production.min.mjs +82 -0
- package/dist/node_modules/rc-util/node_modules/react-is/index.mjs +8 -0
- package/dist/node_modules/react/cjs/react-jsx-runtime.development.mjs +616 -0
- package/dist/node_modules/react/cjs/react-jsx-runtime.production.min.mjs +32 -0
- package/dist/node_modules/react/jsx-runtime.mjs +8 -0
- package/dist/node_modules/react-device-detect/dist/lib.mjs +721 -0
- package/dist/node_modules/react-dom/client.mjs +26 -0
- package/dist/node_modules/react-draggable/build/cjs/Draggable.mjs +343 -0
- package/dist/node_modules/react-draggable/build/cjs/DraggableCore.mjs +324 -0
- package/dist/node_modules/react-draggable/build/cjs/cjs.mjs +14 -0
- package/dist/node_modules/react-draggable/build/cjs/utils/domFns.mjs +174 -0
- package/dist/node_modules/react-draggable/build/cjs/utils/getPrefix.mjs +35 -0
- package/dist/node_modules/react-draggable/build/cjs/utils/log.mjs +7 -0
- package/dist/node_modules/react-draggable/build/cjs/utils/positionFns.mjs +107 -0
- package/dist/node_modules/react-draggable/build/cjs/utils/shims.mjs +30 -0
- package/dist/node_modules/react-draggable/node_modules/clsx/dist/clsx.m.mjs +22 -0
- package/dist/node_modules/react-easy-crop/index.module.mjs +543 -0
- package/dist/node_modules/react-i18next/dist/es/context.mjs +19 -0
- package/dist/node_modules/react-i18next/dist/es/defaults.mjs +17 -0
- package/dist/node_modules/react-i18next/dist/es/i18nInstance.mjs +7 -0
- package/dist/node_modules/react-i18next/dist/es/unescape.mjs +25 -0
- package/dist/node_modules/react-i18next/dist/es/useTranslation.mjs +74 -0
- package/dist/node_modules/react-i18next/dist/es/utils.mjs +61 -0
- package/dist/node_modules/react-is/cjs/react-is.development.mjs +95 -0
- package/dist/node_modules/react-is/cjs/react-is.production.min.mjs +79 -0
- package/dist/node_modules/react-is/index.mjs +10 -0
- package/dist/node_modules/react-resizable/build/Resizable.mjs +201 -0
- package/dist/node_modules/react-resizable/build/ResizableBox.mjs +162 -0
- package/dist/node_modules/react-resizable/build/propTypes.mjs +118 -0
- package/dist/node_modules/react-resizable/build/utils.mjs +54 -0
- package/dist/node_modules/react-resizable/index.mjs +13 -0
- package/dist/node_modules/resize-observer-polyfill/dist/ResizeObserver.es.mjs +290 -0
- package/dist/node_modules/screenfull/index.mjs +122 -0
- package/dist/node_modules/stylis/src/Enum.mjs +12 -0
- package/dist/node_modules/stylis/src/Middleware.mjs +18 -0
- package/dist/node_modules/stylis/src/Parser.mjs +114 -0
- package/dist/node_modules/stylis/src/Serializer.mjs +28 -0
- package/dist/node_modules/stylis/src/Tokenizer.mjs +131 -0
- package/dist/node_modules/stylis/src/Utility.mjs +50 -0
- package/dist/node_modules/throttle-debounce/esm/index.mjs +35 -0
- package/dist/node_modules/toggle-selection/index.mjs +25 -0
- package/dist/node_modules/tslib/tslib.es6.mjs +97 -0
- package/dist/node_modules/ua-parser-js/dist/ua-parser.min.mjs +86 -0
- package/dist/node_modules/use-immer/dist/use-immer.module.mjs +13 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.mjs +61 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.min.mjs +60 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.mjs +85 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.min.mjs +50 -0
- package/dist/node_modules/use-sync-external-store/shim/index.mjs +10 -0
- package/dist/node_modules/use-sync-external-store/shim/with-selector.mjs +10 -0
- package/dist/node_modules/zustand/esm/index.mjs +24 -0
- package/dist/node_modules/zustand/esm/vanilla.mjs +16 -0
- package/dist/style.css +1 -1
- package/dist/utils/WithFluent.mjs +13 -13
- package/package.json +1 -1
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as t from "react";
|
|
2
|
+
import u from "../../../classnames/index.mjs";
|
|
3
|
+
import v from "../../../rc-util/es/omit.mjs";
|
|
4
|
+
import "../config-provider/index.mjs";
|
|
5
|
+
import h from "./Element.mjs";
|
|
6
|
+
import N from "./style/index.mjs";
|
|
7
|
+
import { ConfigContext as S } from "../config-provider/context.mjs";
|
|
8
|
+
const d = (s) => {
|
|
9
|
+
const {
|
|
10
|
+
prefixCls: a,
|
|
11
|
+
className: o,
|
|
12
|
+
rootClassName: r,
|
|
13
|
+
active: l,
|
|
14
|
+
shape: m = "circle",
|
|
15
|
+
size: c = "default"
|
|
16
|
+
} = s, {
|
|
17
|
+
getPrefixCls: i
|
|
18
|
+
} = t.useContext(S), e = i("skeleton", a), [n, f, p] = N(e), C = v(s, ["prefixCls", "className"]), x = u(e, `${e}-element`, {
|
|
19
|
+
[`${e}-active`]: l
|
|
20
|
+
}, o, r, f, p);
|
|
21
|
+
return n(/* @__PURE__ */ t.createElement("div", {
|
|
22
|
+
className: x
|
|
23
|
+
}, /* @__PURE__ */ t.createElement(h, Object.assign({
|
|
24
|
+
prefixCls: `${e}-avatar`,
|
|
25
|
+
shape: m,
|
|
26
|
+
size: c
|
|
27
|
+
}, C))));
|
|
28
|
+
}, A = d;
|
|
29
|
+
export {
|
|
30
|
+
A as default
|
|
31
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as t from "react";
|
|
2
|
+
import x from "../../../classnames/index.mjs";
|
|
3
|
+
import k from "../../../rc-util/es/omit.mjs";
|
|
4
|
+
import "../config-provider/index.mjs";
|
|
5
|
+
import S from "./Element.mjs";
|
|
6
|
+
import $ from "./style/index.mjs";
|
|
7
|
+
import { ConfigContext as b } from "../config-provider/context.mjs";
|
|
8
|
+
const d = (s) => {
|
|
9
|
+
const {
|
|
10
|
+
prefixCls: o,
|
|
11
|
+
className: r,
|
|
12
|
+
rootClassName: l,
|
|
13
|
+
active: a,
|
|
14
|
+
block: m = !1,
|
|
15
|
+
size: n = "default"
|
|
16
|
+
} = s, {
|
|
17
|
+
getPrefixCls: c
|
|
18
|
+
} = t.useContext(b), e = c("skeleton", o), [i, f, p] = $(e), C = k(s, ["prefixCls"]), u = x(e, `${e}-element`, {
|
|
19
|
+
[`${e}-active`]: a,
|
|
20
|
+
[`${e}-block`]: m
|
|
21
|
+
}, r, l, f, p);
|
|
22
|
+
return i(/* @__PURE__ */ t.createElement("div", {
|
|
23
|
+
className: u
|
|
24
|
+
}, /* @__PURE__ */ t.createElement(S, Object.assign({
|
|
25
|
+
prefixCls: `${e}-button`,
|
|
26
|
+
size: n
|
|
27
|
+
}, C))));
|
|
28
|
+
}, P = d;
|
|
29
|
+
export {
|
|
30
|
+
P as default
|
|
31
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as l from "react";
|
|
2
|
+
import a from "../../../classnames/index.mjs";
|
|
3
|
+
const p = (c) => {
|
|
4
|
+
const {
|
|
5
|
+
prefixCls: s,
|
|
6
|
+
className: n,
|
|
7
|
+
style: r,
|
|
8
|
+
size: e,
|
|
9
|
+
shape: t
|
|
10
|
+
} = c, o = a({
|
|
11
|
+
[`${s}-lg`]: e === "large",
|
|
12
|
+
[`${s}-sm`]: e === "small"
|
|
13
|
+
}), i = a({
|
|
14
|
+
[`${s}-circle`]: t === "circle",
|
|
15
|
+
[`${s}-square`]: t === "square",
|
|
16
|
+
[`${s}-round`]: t === "round"
|
|
17
|
+
}), m = l.useMemo(() => typeof e == "number" ? {
|
|
18
|
+
width: e,
|
|
19
|
+
height: e,
|
|
20
|
+
lineHeight: `${e}px`
|
|
21
|
+
} : {}, [e]);
|
|
22
|
+
return /* @__PURE__ */ l.createElement("span", {
|
|
23
|
+
className: a(s, o, i, n),
|
|
24
|
+
style: Object.assign(Object.assign({}, m), r)
|
|
25
|
+
});
|
|
26
|
+
}, $ = p;
|
|
27
|
+
export {
|
|
28
|
+
$ as default
|
|
29
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as t from "react";
|
|
2
|
+
import l from "../../../classnames/index.mjs";
|
|
3
|
+
import "../config-provider/index.mjs";
|
|
4
|
+
import C from "./style/index.mjs";
|
|
5
|
+
import { ConfigContext as q } from "../config-provider/context.mjs";
|
|
6
|
+
const x = "M365.714286 329.142857q0 45.714286-32.036571 77.677714t-77.677714 32.036571-77.677714-32.036571-32.036571-77.677714 32.036571-77.677714 77.677714-32.036571 77.677714 32.036571 32.036571 77.677714zM950.857143 548.571429l0 256-804.571429 0 0-109.714286 182.857143-182.857143 91.428571 91.428571 292.571429-292.571429zM1005.714286 146.285714l-914.285714 0q-7.460571 0-12.873143 5.412571t-5.412571 12.873143l0 694.857143q0 7.460571 5.412571 12.873143t12.873143 5.412571l914.285714 0q7.460571 0 12.873143-5.412571t5.412571-12.873143l0-694.857143q0-7.460571-5.412571-12.873143t-12.873143-5.412571zM1097.142857 164.571429l0 694.857143q0 37.741714-26.843429 64.585143t-64.585143 26.843429l-914.285714 0q-37.741714 0-64.585143-26.843429t-26.843429-64.585143l0-694.857143q0-37.741714 26.843429-64.585143t64.585143-26.843429l914.285714 0q37.741714 0 64.585143 26.843429t26.843429 64.585143z", v = (a) => {
|
|
7
|
+
const {
|
|
8
|
+
prefixCls: m,
|
|
9
|
+
className: s,
|
|
10
|
+
rootClassName: o,
|
|
11
|
+
style: r,
|
|
12
|
+
active: c
|
|
13
|
+
} = a, {
|
|
14
|
+
getPrefixCls: n
|
|
15
|
+
} = t.useContext(q), e = n("skeleton", m), [i, p, g] = C(e), f = l(e, `${e}-element`, {
|
|
16
|
+
[`${e}-active`]: c
|
|
17
|
+
}, s, o, p, g);
|
|
18
|
+
return i(/* @__PURE__ */ t.createElement("div", {
|
|
19
|
+
className: f
|
|
20
|
+
}, /* @__PURE__ */ t.createElement("div", {
|
|
21
|
+
className: l(`${e}-image`, s),
|
|
22
|
+
style: r
|
|
23
|
+
}, /* @__PURE__ */ t.createElement("svg", {
|
|
24
|
+
viewBox: "0 0 1098 1024",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
className: `${e}-image-svg`
|
|
27
|
+
}, /* @__PURE__ */ t.createElement("title", null, "Image placeholder"), /* @__PURE__ */ t.createElement("path", {
|
|
28
|
+
d: x,
|
|
29
|
+
className: `${e}-image-path`
|
|
30
|
+
})))));
|
|
31
|
+
}, w = v;
|
|
32
|
+
export {
|
|
33
|
+
w as default
|
|
34
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as t from "react";
|
|
2
|
+
import x from "../../../classnames/index.mjs";
|
|
3
|
+
import k from "../../../rc-util/es/omit.mjs";
|
|
4
|
+
import "../config-provider/index.mjs";
|
|
5
|
+
import S from "./Element.mjs";
|
|
6
|
+
import $ from "./style/index.mjs";
|
|
7
|
+
import { ConfigContext as d } from "../config-provider/context.mjs";
|
|
8
|
+
const N = (s) => {
|
|
9
|
+
const {
|
|
10
|
+
prefixCls: o,
|
|
11
|
+
className: r,
|
|
12
|
+
rootClassName: l,
|
|
13
|
+
active: i,
|
|
14
|
+
block: m,
|
|
15
|
+
size: n = "default"
|
|
16
|
+
} = s, {
|
|
17
|
+
getPrefixCls: a
|
|
18
|
+
} = t.useContext(d), e = a("skeleton", o), [c, f, p] = $(e), C = k(s, ["prefixCls"]), u = x(e, `${e}-element`, {
|
|
19
|
+
[`${e}-active`]: i,
|
|
20
|
+
[`${e}-block`]: m
|
|
21
|
+
}, r, l, f, p);
|
|
22
|
+
return c(/* @__PURE__ */ t.createElement("div", {
|
|
23
|
+
className: u
|
|
24
|
+
}, /* @__PURE__ */ t.createElement(S, Object.assign({
|
|
25
|
+
prefixCls: `${e}-input`,
|
|
26
|
+
size: n
|
|
27
|
+
}, C))));
|
|
28
|
+
}, I = N;
|
|
29
|
+
export {
|
|
30
|
+
I as default
|
|
31
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as t from "react";
|
|
2
|
+
import o from "../../../classnames/index.mjs";
|
|
3
|
+
import "../config-provider/index.mjs";
|
|
4
|
+
import x from "./style/index.mjs";
|
|
5
|
+
import { ConfigContext as N } from "../config-provider/context.mjs";
|
|
6
|
+
const u = (a) => {
|
|
7
|
+
const {
|
|
8
|
+
prefixCls: r,
|
|
9
|
+
className: s,
|
|
10
|
+
rootClassName: l,
|
|
11
|
+
style: c,
|
|
12
|
+
active: m,
|
|
13
|
+
children: n
|
|
14
|
+
} = a, {
|
|
15
|
+
getPrefixCls: i
|
|
16
|
+
} = t.useContext(N), e = i("skeleton", r), [f, C, p] = x(e), d = o(e, `${e}-element`, {
|
|
17
|
+
[`${e}-active`]: m
|
|
18
|
+
}, C, s, l, p);
|
|
19
|
+
return f(/* @__PURE__ */ t.createElement("div", {
|
|
20
|
+
className: d
|
|
21
|
+
}, /* @__PURE__ */ t.createElement("div", {
|
|
22
|
+
className: o(`${e}-image`, s),
|
|
23
|
+
style: c
|
|
24
|
+
}, n)));
|
|
25
|
+
}, h = u;
|
|
26
|
+
export {
|
|
27
|
+
h as default
|
|
28
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import m from "../../../@babel/runtime/helpers/esm/toConsumableArray.mjs";
|
|
2
|
+
import * as o from "react";
|
|
3
|
+
import c from "../../../classnames/index.mjs";
|
|
4
|
+
const i = (r, e) => {
|
|
5
|
+
const {
|
|
6
|
+
width: t,
|
|
7
|
+
rows: a = 2
|
|
8
|
+
} = e;
|
|
9
|
+
if (Array.isArray(t))
|
|
10
|
+
return t[r];
|
|
11
|
+
if (a - 1 === r)
|
|
12
|
+
return t;
|
|
13
|
+
}, f = (r) => {
|
|
14
|
+
const {
|
|
15
|
+
prefixCls: e,
|
|
16
|
+
className: t,
|
|
17
|
+
style: a,
|
|
18
|
+
rows: n
|
|
19
|
+
} = r, l = m(new Array(n)).map((u, s) => (
|
|
20
|
+
// eslint-disable-next-line react/no-array-index-key
|
|
21
|
+
/* @__PURE__ */ o.createElement("li", {
|
|
22
|
+
key: s,
|
|
23
|
+
style: {
|
|
24
|
+
width: i(s, r)
|
|
25
|
+
}
|
|
26
|
+
})
|
|
27
|
+
));
|
|
28
|
+
return /* @__PURE__ */ o.createElement("ul", {
|
|
29
|
+
className: c(e, t),
|
|
30
|
+
style: a
|
|
31
|
+
}, l);
|
|
32
|
+
}, w = f;
|
|
33
|
+
export {
|
|
34
|
+
w as default
|
|
35
|
+
};
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import * as s from "react";
|
|
2
|
+
import B from "../../../classnames/index.mjs";
|
|
3
|
+
import "../config-provider/index.mjs";
|
|
4
|
+
import I from "./Avatar.mjs";
|
|
5
|
+
import z from "./Button.mjs";
|
|
6
|
+
import V from "./Element.mjs";
|
|
7
|
+
import A from "./Image.mjs";
|
|
8
|
+
import T from "./Input.mjs";
|
|
9
|
+
import q from "./Node.mjs";
|
|
10
|
+
import D from "./Paragraph.mjs";
|
|
11
|
+
import R from "./style/index.mjs";
|
|
12
|
+
import _ from "./Title.mjs";
|
|
13
|
+
import { ConfigContext as F } from "../config-provider/context.mjs";
|
|
14
|
+
function u(e) {
|
|
15
|
+
return e && typeof e == "object" ? e : {};
|
|
16
|
+
}
|
|
17
|
+
function G(e, r) {
|
|
18
|
+
return e && !r ? {
|
|
19
|
+
size: "large",
|
|
20
|
+
shape: "square"
|
|
21
|
+
} : {
|
|
22
|
+
size: "large",
|
|
23
|
+
shape: "circle"
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
function H(e, r) {
|
|
27
|
+
return !e && r ? {
|
|
28
|
+
width: "38%"
|
|
29
|
+
} : e && r ? {
|
|
30
|
+
width: "50%"
|
|
31
|
+
} : {};
|
|
32
|
+
}
|
|
33
|
+
function J(e, r) {
|
|
34
|
+
const o = {};
|
|
35
|
+
return (!e || !r) && (o.width = "61%"), !e && r ? o.rows = 3 : o.rows = 2, o;
|
|
36
|
+
}
|
|
37
|
+
const a = (e) => {
|
|
38
|
+
const {
|
|
39
|
+
prefixCls: r,
|
|
40
|
+
loading: o,
|
|
41
|
+
className: b,
|
|
42
|
+
rootClassName: j,
|
|
43
|
+
style: O,
|
|
44
|
+
children: p,
|
|
45
|
+
avatar: g = !1,
|
|
46
|
+
title: d = !0,
|
|
47
|
+
paragraph: v = !0,
|
|
48
|
+
active: P,
|
|
49
|
+
round: S
|
|
50
|
+
} = e, {
|
|
51
|
+
getPrefixCls: $,
|
|
52
|
+
direction: k,
|
|
53
|
+
skeleton: n
|
|
54
|
+
} = s.useContext(F), t = $("skeleton", r), [x, E, w] = R(t);
|
|
55
|
+
if (o || !("loading" in e)) {
|
|
56
|
+
const i = !!g, l = !!d, c = !!v;
|
|
57
|
+
let h;
|
|
58
|
+
if (i) {
|
|
59
|
+
const m = Object.assign(Object.assign({
|
|
60
|
+
prefixCls: `${t}-avatar`
|
|
61
|
+
}, G(l, c)), u(g));
|
|
62
|
+
h = /* @__PURE__ */ s.createElement("div", {
|
|
63
|
+
className: `${t}-header`
|
|
64
|
+
}, /* @__PURE__ */ s.createElement(V, Object.assign({}, m)));
|
|
65
|
+
}
|
|
66
|
+
let N;
|
|
67
|
+
if (l || c) {
|
|
68
|
+
let m;
|
|
69
|
+
if (l) {
|
|
70
|
+
const f = Object.assign(Object.assign({
|
|
71
|
+
prefixCls: `${t}-title`
|
|
72
|
+
}, H(i, c)), u(d));
|
|
73
|
+
m = /* @__PURE__ */ s.createElement(_, Object.assign({}, f));
|
|
74
|
+
}
|
|
75
|
+
let C;
|
|
76
|
+
if (c) {
|
|
77
|
+
const f = Object.assign(Object.assign({
|
|
78
|
+
prefixCls: `${t}-paragraph`
|
|
79
|
+
}, J(i, l)), u(v));
|
|
80
|
+
C = /* @__PURE__ */ s.createElement(D, Object.assign({}, f));
|
|
81
|
+
}
|
|
82
|
+
N = /* @__PURE__ */ s.createElement("div", {
|
|
83
|
+
className: `${t}-content`
|
|
84
|
+
}, m, C);
|
|
85
|
+
}
|
|
86
|
+
const y = B(t, {
|
|
87
|
+
[`${t}-with-avatar`]: i,
|
|
88
|
+
[`${t}-active`]: P,
|
|
89
|
+
[`${t}-rtl`]: k === "rtl",
|
|
90
|
+
[`${t}-round`]: S
|
|
91
|
+
}, n == null ? void 0 : n.className, b, j, E, w);
|
|
92
|
+
return x(/* @__PURE__ */ s.createElement("div", {
|
|
93
|
+
className: y,
|
|
94
|
+
style: Object.assign(Object.assign({}, n == null ? void 0 : n.style), O)
|
|
95
|
+
}, h, N));
|
|
96
|
+
}
|
|
97
|
+
return p ?? null;
|
|
98
|
+
};
|
|
99
|
+
a.Button = z;
|
|
100
|
+
a.Avatar = I;
|
|
101
|
+
a.Input = T;
|
|
102
|
+
a.Image = A;
|
|
103
|
+
a.Node = q;
|
|
104
|
+
process.env.NODE_ENV !== "production" && (a.displayName = "Skeleton");
|
|
105
|
+
const se = a;
|
|
106
|
+
export {
|
|
107
|
+
se as default
|
|
108
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as r from "react";
|
|
2
|
+
import c from "../../../classnames/index.mjs";
|
|
3
|
+
const m = (e) => {
|
|
4
|
+
let {
|
|
5
|
+
prefixCls: t,
|
|
6
|
+
className: s,
|
|
7
|
+
width: a,
|
|
8
|
+
style: l
|
|
9
|
+
} = e;
|
|
10
|
+
return (
|
|
11
|
+
// biome-ignore lint/a11y/useHeadingContent: HOC here
|
|
12
|
+
/* @__PURE__ */ r.createElement("h3", {
|
|
13
|
+
className: c(t, s),
|
|
14
|
+
style: Object.assign({
|
|
15
|
+
width: a
|
|
16
|
+
}, l)
|
|
17
|
+
})
|
|
18
|
+
);
|
|
19
|
+
}, o = m;
|
|
20
|
+
export {
|
|
21
|
+
o as default
|
|
22
|
+
};
|
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
import "../../../../@ant-design/cssinjs/es/extractStyle.mjs";
|
|
2
|
+
import "../../../../@ant-design/cssinjs/es/hooks/useCacheToken.mjs";
|
|
3
|
+
import "react";
|
|
4
|
+
import "../../../../@ant-design/cssinjs/es/StyleContext.mjs";
|
|
5
|
+
import { unit as w } from "../../../../@ant-design/cssinjs/es/util/index.mjs";
|
|
6
|
+
import "../../../../@ant-design/cssinjs/es/hooks/useCompatibleInsertionEffect.mjs";
|
|
7
|
+
import "../../../../@ant-design/cssinjs/es/hooks/useEffectCleanupRegister.mjs";
|
|
8
|
+
import "../../../../@ant-design/cssinjs/es/hooks/useHMR.mjs";
|
|
9
|
+
import "../../../../rc-util/es/warning.mjs";
|
|
10
|
+
import B from "../../../../@ant-design/cssinjs/es/Keyframes.mjs";
|
|
11
|
+
import "../../../../@ant-design/cssinjs/es/theme/createTheme.mjs";
|
|
12
|
+
import "../../../../@ant-design/cssinjs/es/theme/ThemeCache.mjs";
|
|
13
|
+
import "../../../../@ant-design/cssinjs/es/transformers/legacyLogicalProperties.mjs";
|
|
14
|
+
import "../../../../rc-util/es/hooks/useLayoutEffect.mjs";
|
|
15
|
+
import "../../../../rc-util/es/ref.mjs";
|
|
16
|
+
import { merge as y } from "../../../../@ant-design/cssinjs-utils/es/util/statistic.mjs";
|
|
17
|
+
import "../../../../@ant-design/cssinjs-utils/es/_util/hooks/useUniqueMemo.mjs";
|
|
18
|
+
import { genStyleHooks as f } from "../../theme/util/genStyleUtils.mjs";
|
|
19
|
+
const E = new B("ant-skeleton-loading", {
|
|
20
|
+
"0%": {
|
|
21
|
+
backgroundPosition: "100% 50%"
|
|
22
|
+
},
|
|
23
|
+
"100%": {
|
|
24
|
+
backgroundPosition: "0 50%"
|
|
25
|
+
}
|
|
26
|
+
}), g = (t) => ({
|
|
27
|
+
height: t,
|
|
28
|
+
lineHeight: w(t)
|
|
29
|
+
}), s = (t) => Object.assign({
|
|
30
|
+
width: t
|
|
31
|
+
}, g(t)), I = (t) => ({
|
|
32
|
+
background: t.skeletonLoadingBackground,
|
|
33
|
+
backgroundSize: "400% 100%",
|
|
34
|
+
animationName: E,
|
|
35
|
+
animationDuration: t.skeletonLoadingMotionDuration,
|
|
36
|
+
animationTimingFunction: "ease",
|
|
37
|
+
animationIterationCount: "infinite"
|
|
38
|
+
}), d = (t, e) => Object.assign({
|
|
39
|
+
width: e(t).mul(5).equal(),
|
|
40
|
+
minWidth: e(t).mul(5).equal()
|
|
41
|
+
}, g(t)), M = (t) => {
|
|
42
|
+
const {
|
|
43
|
+
skeletonAvatarCls: e,
|
|
44
|
+
gradientFromColor: n,
|
|
45
|
+
controlHeight: o,
|
|
46
|
+
controlHeightLG: i,
|
|
47
|
+
controlHeightSM: l
|
|
48
|
+
} = t;
|
|
49
|
+
return {
|
|
50
|
+
[e]: Object.assign({
|
|
51
|
+
display: "inline-block",
|
|
52
|
+
verticalAlign: "top",
|
|
53
|
+
background: n
|
|
54
|
+
}, s(o)),
|
|
55
|
+
[`${e}${e}-circle`]: {
|
|
56
|
+
borderRadius: "50%"
|
|
57
|
+
},
|
|
58
|
+
[`${e}${e}-lg`]: Object.assign({}, s(i)),
|
|
59
|
+
[`${e}${e}-sm`]: Object.assign({}, s(l))
|
|
60
|
+
};
|
|
61
|
+
}, A = (t) => {
|
|
62
|
+
const {
|
|
63
|
+
controlHeight: e,
|
|
64
|
+
borderRadiusSM: n,
|
|
65
|
+
skeletonInputCls: o,
|
|
66
|
+
controlHeightLG: i,
|
|
67
|
+
controlHeightSM: l,
|
|
68
|
+
gradientFromColor: r,
|
|
69
|
+
calc: a
|
|
70
|
+
} = t;
|
|
71
|
+
return {
|
|
72
|
+
[o]: Object.assign({
|
|
73
|
+
display: "inline-block",
|
|
74
|
+
verticalAlign: "top",
|
|
75
|
+
background: r,
|
|
76
|
+
borderRadius: n
|
|
77
|
+
}, d(e, a)),
|
|
78
|
+
[`${o}-lg`]: Object.assign({}, d(i, a)),
|
|
79
|
+
[`${o}-sm`]: Object.assign({}, d(l, a))
|
|
80
|
+
};
|
|
81
|
+
}, h = (t) => Object.assign({
|
|
82
|
+
width: t
|
|
83
|
+
}, g(t)), F = (t) => {
|
|
84
|
+
const {
|
|
85
|
+
skeletonImageCls: e,
|
|
86
|
+
imageSizeBase: n,
|
|
87
|
+
gradientFromColor: o,
|
|
88
|
+
borderRadiusSM: i,
|
|
89
|
+
calc: l
|
|
90
|
+
} = t;
|
|
91
|
+
return {
|
|
92
|
+
[e]: Object.assign(Object.assign({
|
|
93
|
+
display: "inline-flex",
|
|
94
|
+
alignItems: "center",
|
|
95
|
+
justifyContent: "center",
|
|
96
|
+
verticalAlign: "middle",
|
|
97
|
+
background: o,
|
|
98
|
+
borderRadius: i
|
|
99
|
+
}, h(l(n).mul(2).equal())), {
|
|
100
|
+
[`${e}-path`]: {
|
|
101
|
+
fill: "#bfbfbf"
|
|
102
|
+
},
|
|
103
|
+
[`${e}-svg`]: Object.assign(Object.assign({}, h(n)), {
|
|
104
|
+
maxWidth: l(n).mul(4).equal(),
|
|
105
|
+
maxHeight: l(n).mul(4).equal()
|
|
106
|
+
}),
|
|
107
|
+
[`${e}-svg${e}-svg-circle`]: {
|
|
108
|
+
borderRadius: "50%"
|
|
109
|
+
}
|
|
110
|
+
}),
|
|
111
|
+
[`${e}${e}-circle`]: {
|
|
112
|
+
borderRadius: "50%"
|
|
113
|
+
}
|
|
114
|
+
};
|
|
115
|
+
}, m = (t, e, n) => {
|
|
116
|
+
const {
|
|
117
|
+
skeletonButtonCls: o
|
|
118
|
+
} = t;
|
|
119
|
+
return {
|
|
120
|
+
[`${n}${o}-circle`]: {
|
|
121
|
+
width: e,
|
|
122
|
+
minWidth: e,
|
|
123
|
+
borderRadius: "50%"
|
|
124
|
+
},
|
|
125
|
+
[`${n}${o}-round`]: {
|
|
126
|
+
borderRadius: e
|
|
127
|
+
}
|
|
128
|
+
};
|
|
129
|
+
}, u = (t, e) => Object.assign({
|
|
130
|
+
width: e(t).mul(2).equal(),
|
|
131
|
+
minWidth: e(t).mul(2).equal()
|
|
132
|
+
}, g(t)), L = (t) => {
|
|
133
|
+
const {
|
|
134
|
+
borderRadiusSM: e,
|
|
135
|
+
skeletonButtonCls: n,
|
|
136
|
+
controlHeight: o,
|
|
137
|
+
controlHeightLG: i,
|
|
138
|
+
controlHeightSM: l,
|
|
139
|
+
gradientFromColor: r,
|
|
140
|
+
calc: a
|
|
141
|
+
} = t;
|
|
142
|
+
return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({
|
|
143
|
+
[n]: Object.assign({
|
|
144
|
+
display: "inline-block",
|
|
145
|
+
verticalAlign: "top",
|
|
146
|
+
background: r,
|
|
147
|
+
borderRadius: e,
|
|
148
|
+
width: a(o).mul(2).equal(),
|
|
149
|
+
minWidth: a(o).mul(2).equal()
|
|
150
|
+
}, u(o, a))
|
|
151
|
+
}, m(t, o, n)), {
|
|
152
|
+
[`${n}-lg`]: Object.assign({}, u(i, a))
|
|
153
|
+
}), m(t, i, `${n}-lg`)), {
|
|
154
|
+
[`${n}-sm`]: Object.assign({}, u(l, a))
|
|
155
|
+
}), m(t, l, `${n}-sm`));
|
|
156
|
+
}, T = (t) => {
|
|
157
|
+
const {
|
|
158
|
+
componentCls: e,
|
|
159
|
+
skeletonAvatarCls: n,
|
|
160
|
+
skeletonTitleCls: o,
|
|
161
|
+
skeletonParagraphCls: i,
|
|
162
|
+
skeletonButtonCls: l,
|
|
163
|
+
skeletonInputCls: r,
|
|
164
|
+
skeletonImageCls: a,
|
|
165
|
+
controlHeight: $,
|
|
166
|
+
controlHeightLG: k,
|
|
167
|
+
controlHeightSM: b,
|
|
168
|
+
gradientFromColor: c,
|
|
169
|
+
padding: S,
|
|
170
|
+
marginSM: C,
|
|
171
|
+
borderRadius: j,
|
|
172
|
+
titleHeight: O,
|
|
173
|
+
blockRadius: p,
|
|
174
|
+
paragraphLiHeight: H,
|
|
175
|
+
controlHeightXS: R,
|
|
176
|
+
paragraphMarginTop: v
|
|
177
|
+
} = t;
|
|
178
|
+
return {
|
|
179
|
+
[e]: {
|
|
180
|
+
display: "table",
|
|
181
|
+
width: "100%",
|
|
182
|
+
[`${e}-header`]: {
|
|
183
|
+
display: "table-cell",
|
|
184
|
+
paddingInlineEnd: S,
|
|
185
|
+
verticalAlign: "top",
|
|
186
|
+
// Avatar
|
|
187
|
+
[n]: Object.assign({
|
|
188
|
+
display: "inline-block",
|
|
189
|
+
verticalAlign: "top",
|
|
190
|
+
background: c
|
|
191
|
+
}, s($)),
|
|
192
|
+
[`${n}-circle`]: {
|
|
193
|
+
borderRadius: "50%"
|
|
194
|
+
},
|
|
195
|
+
[`${n}-lg`]: Object.assign({}, s(k)),
|
|
196
|
+
[`${n}-sm`]: Object.assign({}, s(b))
|
|
197
|
+
},
|
|
198
|
+
[`${e}-content`]: {
|
|
199
|
+
display: "table-cell",
|
|
200
|
+
width: "100%",
|
|
201
|
+
verticalAlign: "top",
|
|
202
|
+
// Title
|
|
203
|
+
[o]: {
|
|
204
|
+
width: "100%",
|
|
205
|
+
height: O,
|
|
206
|
+
background: c,
|
|
207
|
+
borderRadius: p,
|
|
208
|
+
[`+ ${i}`]: {
|
|
209
|
+
marginBlockStart: b
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
// paragraph
|
|
213
|
+
[i]: {
|
|
214
|
+
padding: 0,
|
|
215
|
+
"> li": {
|
|
216
|
+
width: "100%",
|
|
217
|
+
height: H,
|
|
218
|
+
listStyle: "none",
|
|
219
|
+
background: c,
|
|
220
|
+
borderRadius: p,
|
|
221
|
+
"+ li": {
|
|
222
|
+
marginBlockStart: R
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
[`${i}> li:last-child:not(:first-child):not(:nth-child(2))`]: {
|
|
227
|
+
width: "61%"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
[`&-round ${e}-content`]: {
|
|
231
|
+
[`${o}, ${i} > li`]: {
|
|
232
|
+
borderRadius: j
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
[`${e}-with-avatar ${e}-content`]: {
|
|
237
|
+
// Title
|
|
238
|
+
[o]: {
|
|
239
|
+
marginBlockStart: C,
|
|
240
|
+
[`+ ${i}`]: {
|
|
241
|
+
marginBlockStart: v
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
// Skeleton element
|
|
246
|
+
[`${e}${e}-element`]: Object.assign(Object.assign(Object.assign(Object.assign({
|
|
247
|
+
display: "inline-block",
|
|
248
|
+
width: "auto"
|
|
249
|
+
}, L(t)), M(t)), A(t)), F(t)),
|
|
250
|
+
// Skeleton Block Button, Input
|
|
251
|
+
[`${e}${e}-block`]: {
|
|
252
|
+
width: "100%",
|
|
253
|
+
[l]: {
|
|
254
|
+
width: "100%"
|
|
255
|
+
},
|
|
256
|
+
[r]: {
|
|
257
|
+
width: "100%"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
// With active animation
|
|
261
|
+
[`${e}${e}-active`]: {
|
|
262
|
+
[`
|
|
263
|
+
${o},
|
|
264
|
+
${i} > li,
|
|
265
|
+
${n},
|
|
266
|
+
${l},
|
|
267
|
+
${r},
|
|
268
|
+
${a}
|
|
269
|
+
`]: Object.assign({}, I(t))
|
|
270
|
+
}
|
|
271
|
+
};
|
|
272
|
+
}, q = (t) => {
|
|
273
|
+
const {
|
|
274
|
+
colorFillContent: e,
|
|
275
|
+
colorFill: n
|
|
276
|
+
} = t, o = e, i = n;
|
|
277
|
+
return {
|
|
278
|
+
color: o,
|
|
279
|
+
colorGradientEnd: i,
|
|
280
|
+
gradientFromColor: o,
|
|
281
|
+
gradientToColor: i,
|
|
282
|
+
titleHeight: t.controlHeight / 2,
|
|
283
|
+
blockRadius: t.borderRadiusSM,
|
|
284
|
+
paragraphMarginTop: t.marginLG + t.marginXXS,
|
|
285
|
+
paragraphLiHeight: t.controlHeight / 2
|
|
286
|
+
};
|
|
287
|
+
}, nt = f("Skeleton", (t) => {
|
|
288
|
+
const {
|
|
289
|
+
componentCls: e,
|
|
290
|
+
calc: n
|
|
291
|
+
} = t, o = y(t, {
|
|
292
|
+
skeletonAvatarCls: `${e}-avatar`,
|
|
293
|
+
skeletonTitleCls: `${e}-title`,
|
|
294
|
+
skeletonParagraphCls: `${e}-paragraph`,
|
|
295
|
+
skeletonButtonCls: `${e}-button`,
|
|
296
|
+
skeletonInputCls: `${e}-input`,
|
|
297
|
+
skeletonImageCls: `${e}-image`,
|
|
298
|
+
imageSizeBase: n(t.controlHeight).mul(1.5).equal(),
|
|
299
|
+
borderRadius: 100,
|
|
300
|
+
// Large number to make capsule shape
|
|
301
|
+
skeletonLoadingBackground: `linear-gradient(90deg, ${t.gradientFromColor} 25%, ${t.gradientToColor} 37%, ${t.gradientFromColor} 63%)`,
|
|
302
|
+
skeletonLoadingMotionDuration: "1.4s"
|
|
303
|
+
});
|
|
304
|
+
return [T(o)];
|
|
305
|
+
}, q, {
|
|
306
|
+
deprecatedTokens: [["color", "gradientFromColor"], ["colorGradientEnd", "gradientToColor"]]
|
|
307
|
+
});
|
|
308
|
+
export {
|
|
309
|
+
nt as default,
|
|
310
|
+
q as prepareComponentToken
|
|
311
|
+
};
|