@aplus-frontend/ui 0.0.1-beta.32 → 0.0.1-beta.34
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/es/src/ap-action/interface.d.ts +2 -1
- package/es/src/ap-action/item/index.vue2.mjs +20 -20
- package/es/src/ap-custom-column/custom-column.vue.mjs +17 -14
- package/es/src/ap-field/text/index.vue.d.ts +1 -1
- package/es/src/ap-field/text-area/index.vue.d.ts +1 -1
- package/es/src/ap-table/components/interface.d.ts +10 -0
- package/es/src/ap-table/components/style/pagination.css +12 -0
- package/es/src/ap-table/constants.d.ts +5666 -0
- package/es/src/ap-table/hooks/use-table-paging.d.ts +57 -0
- package/es/src/ap-table/interface.d.ts +155 -0
- package/es/src/ap-table/style/ap-table.css +14 -0
- package/es/src/ap-table/utils.d.ts +8 -0
- package/es/src/base-button/index.d.ts +137 -0
- package/es/src/basic/help.vue.d.ts +4 -4
- package/es/src/basic/index.d.ts +278 -0
- package/es/src/button/index.d.ts +51 -0
- package/es/src/config-provider/config-provider-props.d.ts +1 -1
- package/es/src/config-provider/config-provider.d.ts +11 -11
- package/es/src/config-provider/hooks/use-global-config.d.ts +1 -1
- package/es/src/config-provider/index.d.ts +691 -0
- package/es/src/container/index.d.ts +178 -0
- package/es/src/count-down/index.d.ts +150 -0
- package/es/src/cropper/index.d.ts +369 -0
- package/es/src/description/description.vue.d.ts +1 -1
- package/es/src/description/index.d.ts +214 -0
- package/es/src/dropdown/index.d.ts +113 -0
- package/es/src/icon/index.d.ts +208 -0
- package/es/src/icon-picker/icon-picker.vue.d.ts +2 -2
- package/es/src/icon-picker/index.d.ts +190 -0
- package/es/src/locale/lang/en.mjs +6 -0
- package/es/src/locale/lang/zh-cn.mjs +6 -0
- package/es/src/modal/basic.vue.d.ts +1 -1
- package/es/src/modal/components/modal-footer.vue.d.ts +1 -1
- package/es/src/modal/index.d.ts +963 -0
- package/es/src/pro-form/components/api-cascader.vue.d.ts +1 -1
- package/es/src/pro-form/components/api-radio-group.vue.d.ts +1 -1
- package/es/src/pro-form/components/api-select.vue.d.ts +2 -2
- package/es/src/pro-form/components/api-transfer.vue.d.ts +1 -1
- package/es/src/pro-form/components/api-tree-select.vue.d.ts +1 -1
- package/es/src/pro-form/components/api-tree.vue.d.ts +1 -1
- package/es/src/pro-form/hooks/use-label-width.d.ts +6 -6
- package/es/src/pro-form/pro-form.vue.d.ts +1 -1
- package/es/src/pro-form/style/table-form.css +3 -0
- package/es/src/pro-table/components/editable/editable-cell.vue.d.ts +1 -1
- package/es/src/pro-table/pro-table.vue.d.ts +1 -1
- package/es/src/scroll-bar/index.d.ts +176 -0
- package/es/src/strength-meter/index.d.ts +89 -0
- package/es/src/theme/antd-global-overwrite/admin/alert.css +16 -6
- package/es/src/theme/antd-global-overwrite/admin/form.css +25 -0
- package/es/src/theme/antd-global-overwrite/admin/index.css +82 -20
- package/es/src/theme/antd-global-overwrite/admin/modal.css +2 -5
- package/es/src/theme/antd-global-overwrite/admin/steps.css +20 -9
- package/es/src/theme/antd-global-overwrite/admin/table.css +19 -0
- package/es/src/theme/antd-global-overwrite/aplus/alert.css +12 -6
- package/es/src/theme/antd-global-overwrite/aplus/form.css +40 -0
- package/es/src/theme/antd-global-overwrite/aplus/index.css +76 -16
- package/es/src/theme/antd-global-overwrite/aplus/modal.css +3 -6
- package/es/src/theme/antd-global-overwrite/aplus/steps.css +21 -4
- package/es/src/theme/ap-table/ap-table-pagination.css +12 -0
- package/es/src/theme/ap-table/ap-table.css +14 -0
- package/es/src/theme/pro-form/table-form-inner.css +3 -0
- package/es/src/transition/index.d.ts +369 -0
- package/es/src/utils/config-provider-preset.d.ts +12 -12
- package/lib/src/ap-action/interface.d.ts +2 -1
- package/lib/src/ap-action/item/index.vue2.js +1 -1
- package/lib/src/ap-custom-column/custom-column.vue.js +1 -1
- package/lib/src/ap-field/text/index.vue.d.ts +1 -1
- package/lib/src/ap-field/text-area/index.vue.d.ts +1 -1
- package/lib/src/ap-table/components/interface.d.ts +10 -0
- package/lib/src/ap-table/components/style/pagination.css +12 -0
- package/lib/src/ap-table/constants.d.ts +5666 -0
- package/lib/src/ap-table/hooks/use-table-paging.d.ts +57 -0
- package/lib/src/ap-table/interface.d.ts +155 -0
- package/lib/src/ap-table/style/ap-table.css +14 -0
- package/lib/src/ap-table/utils.d.ts +8 -0
- package/lib/src/base-button/index.d.ts +137 -0
- package/lib/src/basic/help.vue.d.ts +4 -4
- package/lib/src/basic/index.d.ts +278 -0
- package/lib/src/button/index.d.ts +51 -0
- package/lib/src/config-provider/config-provider-props.d.ts +1 -1
- package/lib/src/config-provider/config-provider.d.ts +11 -11
- package/lib/src/config-provider/hooks/use-global-config.d.ts +1 -1
- package/lib/src/config-provider/index.d.ts +691 -0
- package/lib/src/container/index.d.ts +178 -0
- package/lib/src/count-down/index.d.ts +150 -0
- package/lib/src/cropper/index.d.ts +369 -0
- package/lib/src/description/description.vue.d.ts +1 -1
- package/lib/src/description/index.d.ts +214 -0
- package/lib/src/dropdown/index.d.ts +113 -0
- package/lib/src/icon/index.d.ts +208 -0
- package/lib/src/icon-picker/icon-picker.vue.d.ts +2 -2
- package/lib/src/icon-picker/index.d.ts +190 -0
- package/lib/src/locale/lang/en.js +1 -1
- package/lib/src/locale/lang/zh-cn.js +1 -1
- package/lib/src/modal/basic.vue.d.ts +1 -1
- package/lib/src/modal/components/modal-footer.vue.d.ts +1 -1
- package/lib/src/modal/index.d.ts +963 -0
- package/lib/src/pro-form/components/api-cascader.vue.d.ts +1 -1
- package/lib/src/pro-form/components/api-radio-group.vue.d.ts +1 -1
- package/lib/src/pro-form/components/api-select.vue.d.ts +2 -2
- package/lib/src/pro-form/components/api-transfer.vue.d.ts +1 -1
- package/lib/src/pro-form/components/api-tree-select.vue.d.ts +1 -1
- package/lib/src/pro-form/components/api-tree.vue.d.ts +1 -1
- package/lib/src/pro-form/hooks/use-label-width.d.ts +6 -6
- package/lib/src/pro-form/pro-form.vue.d.ts +1 -1
- package/lib/src/pro-form/style/table-form.css +3 -0
- package/lib/src/pro-table/components/editable/editable-cell.vue.d.ts +1 -1
- package/lib/src/pro-table/pro-table.vue.d.ts +1 -1
- package/lib/src/scroll-bar/index.d.ts +176 -0
- package/lib/src/strength-meter/index.d.ts +89 -0
- package/lib/src/theme/antd-global-overwrite/admin/alert.css +16 -6
- package/lib/src/theme/antd-global-overwrite/admin/form.css +25 -0
- package/lib/src/theme/antd-global-overwrite/admin/index.css +82 -20
- package/lib/src/theme/antd-global-overwrite/admin/modal.css +2 -5
- package/lib/src/theme/antd-global-overwrite/admin/steps.css +20 -9
- package/lib/src/theme/antd-global-overwrite/admin/table.css +19 -0
- package/lib/src/theme/antd-global-overwrite/aplus/alert.css +12 -6
- package/lib/src/theme/antd-global-overwrite/aplus/form.css +40 -0
- package/lib/src/theme/antd-global-overwrite/aplus/index.css +76 -16
- package/lib/src/theme/antd-global-overwrite/aplus/modal.css +3 -6
- package/lib/src/theme/antd-global-overwrite/aplus/steps.css +21 -4
- package/lib/src/theme/ap-table/ap-table-pagination.css +12 -0
- package/lib/src/theme/ap-table/ap-table.css +14 -0
- package/lib/src/theme/pro-form/table-form-inner.css +3 -0
- package/lib/src/transition/index.d.ts +369 -0
- package/lib/src/utils/config-provider-preset.d.ts +12 -12
- package/package.json +1 -1
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.