rd-outer-component 0.0.95 → 0.0.97
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/esm2020/lib/modules/custom-checkbox/custom-checkbox.component.mjs +26 -19
- package/esm2020/lib/modules/custom-date/custom-date.component.mjs +141 -18
- package/esm2020/lib/modules/custom-date/custom-date.module.mjs +19 -4
- package/esm2020/lib/modules/custom-filter/custom-filter.component.mjs +2 -2
- package/esm2020/lib/modules/custom-input/custom-input.component.mjs +68 -34
- package/esm2020/lib/modules/custom-input-amount/custom-input-amount.component.mjs +28 -29
- package/esm2020/lib/modules/custom-radio/custom-radio.component.mjs +82 -16
- package/esm2020/lib/modules/custom-select/index.mjs +5 -3
- package/esm2020/lib/modules/custom-select/industry-cascader/industry-cascader.component.mjs +361 -0
- package/esm2020/lib/modules/custom-select/industry-cascader/industry-cascader.module.mjs +60 -0
- package/esm2020/lib/modules/custom-select/pure-select-token/pure-select-token.component.mjs +3 -3
- package/esm2020/lib/modules/custom-select/rd-select.component.mjs +432 -0
- package/esm2020/lib/modules/custom-select/rd-select.module.mjs +67 -0
- package/esm2020/lib/modules/custom-textarea/custom-textarea.component.mjs +2 -2
- package/esm2020/lib/modules/form-item/form-item.component.mjs +20 -3
- package/esm2020/lib/modules/rd-button/index.mjs +3 -0
- package/esm2020/lib/modules/rd-button/rd-button.component.mjs +133 -0
- package/esm2020/lib/modules/rd-button/rd-button.module.mjs +20 -0
- package/esm2020/lib/modules/rd-loading/OPLoading.json +1 -0
- package/esm2020/lib/modules/rd-loading/index.mjs +3 -0
- package/esm2020/lib/modules/rd-loading/rd-loading.component.mjs +178 -0
- package/esm2020/lib/modules/rd-loading/rd-loading.module.mjs +20 -0
- package/esm2020/lib/modules/rd-phone/index.mjs +3 -0
- package/esm2020/lib/modules/rd-phone/rd-phone.component.mjs +71 -0
- package/esm2020/lib/modules/rd-phone/rd-phone.module.mjs +36 -0
- package/esm2020/lib/modules/rd-remark-history/index.mjs +3 -0
- package/esm2020/lib/modules/rd-remark-history/rd-remark-history.component.mjs +24 -0
- package/esm2020/lib/modules/rd-remark-history/rd-remark-history.module.mjs +19 -0
- package/esm2020/lib/modules/rd-select-value/index.mjs +3 -0
- package/esm2020/lib/modules/rd-select-value/rd-select-value.component.mjs +136 -0
- package/esm2020/lib/modules/rd-select-value/rd-select-value.module.mjs +36 -0
- package/esm2020/lib/modules/rd-switch/index.mjs +3 -0
- package/esm2020/lib/modules/rd-switch/rd-switch.component.mjs +146 -0
- package/esm2020/lib/modules/rd-switch/rd-switch.module.mjs +39 -0
- package/esm2020/public-api.mjs +7 -1
- package/fesm2015/rd-outer-component.mjs +3990 -249
- package/fesm2015/rd-outer-component.mjs.map +1 -1
- package/fesm2020/rd-outer-component.mjs +3994 -258
- package/fesm2020/rd-outer-component.mjs.map +1 -1
- package/lib/modules/custom-checkbox/custom-checkbox.component.d.ts +7 -3
- package/lib/modules/custom-date/custom-date.component.d.ts +30 -6
- package/lib/modules/custom-date/custom-date.module.d.ts +2 -1
- package/lib/modules/custom-input/custom-input.component.d.ts +12 -3
- package/lib/modules/custom-input-amount/custom-input-amount.component.d.ts +5 -5
- package/lib/modules/custom-radio/custom-radio.component.d.ts +21 -7
- package/lib/modules/custom-select/index.d.ts +4 -2
- package/lib/modules/custom-select/industry-cascader/industry-cascader.component.d.ts +81 -0
- package/lib/modules/custom-select/industry-cascader/industry-cascader.module.d.ts +18 -0
- package/lib/modules/custom-select/rd-select.component.d.ts +90 -0
- package/lib/modules/custom-select/rd-select.module.d.ts +19 -0
- package/lib/modules/form-item/form-item.component.d.ts +7 -2
- package/lib/modules/rd-button/index.d.ts +2 -0
- package/lib/modules/rd-button/rd-button.component.d.ts +53 -0
- package/lib/modules/rd-button/rd-button.module.d.ts +10 -0
- package/lib/modules/rd-loading/index.d.ts +2 -0
- package/lib/modules/rd-loading/rd-loading.component.d.ts +49 -0
- package/lib/modules/rd-loading/rd-loading.module.d.ts +10 -0
- package/lib/modules/rd-phone/index.d.ts +2 -0
- package/lib/modules/rd-phone/rd-phone.component.d.ts +25 -0
- package/lib/modules/rd-phone/rd-phone.module.d.ts +12 -0
- package/lib/modules/rd-remark-history/index.d.ts +2 -0
- package/lib/modules/rd-remark-history/rd-remark-history.component.d.ts +9 -0
- package/lib/modules/rd-remark-history/rd-remark-history.module.d.ts +9 -0
- package/lib/modules/rd-select-value/index.d.ts +2 -0
- package/lib/modules/rd-select-value/rd-select-value.component.d.ts +41 -0
- package/lib/modules/rd-select-value/rd-select-value.module.d.ts +12 -0
- package/lib/modules/rd-switch/index.d.ts +2 -0
- package/lib/modules/rd-switch/rd-switch.component.d.ts +41 -0
- package/lib/modules/rd-switch/rd-switch.module.d.ts +12 -0
- package/package.json +3 -2
- package/public-api.d.ts +6 -0
- package/src/lib/assets/scss/form-item.scss +1 -1
- package/esm2020/lib/modules/custom-select/custom-select.component.mjs +0 -194
- package/esm2020/lib/modules/custom-select/custom-select.module.mjs +0 -39
- package/lib/modules/custom-select/custom-select.component.d.ts +0 -53
- package/lib/modules/custom-select/custom-select.module.d.ts +0 -12
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.