rx-compo 1.0.53 → 1.0.55

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.
Files changed (69) hide show
  1. package/entry/{types/index.d.ts → index.d.ts} +2 -3
  2. package/es/components/RxButton/index.d.ts +2 -1
  3. package/es/components/RxButton/index.js +1 -1821
  4. package/es/components/RxButton/src/RxButton.d.ts +8 -0
  5. package/es/components/RxButton/src/RxButton.vue.d.ts +6 -0
  6. package/es/components/date/index.d.ts +4 -0
  7. package/es/components/date/index.js +1 -0
  8. package/es/components/date/src/date.d.ts +24 -0
  9. package/es/components/date/src/date.vue.d.ts +32 -0
  10. package/es/components/icon/index.css +1 -0
  11. package/es/components/icon/index.d.ts +4 -0
  12. package/es/components/icon/index.js +1 -0
  13. package/es/components/icon/src/icon.d.ts +25 -0
  14. package/es/components/icon/src/icon.vue.d.ts +37 -0
  15. package/es/components/index.d.ts +8 -1
  16. package/es/components/index.js +1 -1
  17. package/es/index.d.ts +2 -3
  18. package/es/index.js +1 -14
  19. package/es/utils/index.d.ts +1 -0
  20. package/es/utils/index.js +1 -0
  21. package/es/utils/src/props.d.ts +74 -0
  22. package/es/utils/src/props.js +115 -0
  23. package/es/utils/with-install.d.ts +2 -2
  24. package/es/utils/with-install.js +0 -1
  25. package/index.esm.js +1 -1842
  26. package/index.js +1 -1850
  27. package/lib/components/RxButton/index.d.ts +2 -1
  28. package/lib/components/RxButton/index.js +1 -1826
  29. package/lib/components/RxButton/src/RxButton.d.ts +8 -0
  30. package/lib/components/RxButton/src/RxButton.vue.d.ts +6 -0
  31. package/lib/components/date/index.d.ts +4 -0
  32. package/lib/components/date/index.js +1 -0
  33. package/lib/components/date/src/date.d.ts +24 -0
  34. package/lib/components/date/src/date.vue.d.ts +32 -0
  35. package/lib/components/icon/index.css +1 -0
  36. package/lib/components/icon/index.d.ts +4 -0
  37. package/lib/components/icon/index.js +1 -0
  38. package/lib/components/icon/src/icon.d.ts +25 -0
  39. package/lib/components/icon/src/icon.vue.d.ts +37 -0
  40. package/lib/components/index.d.ts +8 -1
  41. package/lib/components/index.js +1 -14
  42. package/lib/index.d.ts +2 -3
  43. package/lib/index.js +1 -43
  44. package/lib/utils/index.d.ts +1 -0
  45. package/lib/utils/index.js +17 -0
  46. package/lib/utils/src/props.d.ts +74 -0
  47. package/lib/utils/src/props.js +120 -0
  48. package/lib/utils/with-install.d.ts +2 -2
  49. package/lib/utils/with-install.js +0 -1
  50. package/package.json +22 -16
  51. package/theme-chalk/components-style.css +1 -0
  52. package/theme-chalk/date.css +1 -0
  53. package/theme-chalk/fonts/iconfont.ttf +0 -0
  54. package/theme-chalk/fonts/iconfont.woff +0 -0
  55. package/theme-chalk/fonts/iconfont.woff2 +0 -0
  56. package/theme-chalk/icon.css +1 -0
  57. package/theme-chalk/index.css +2 -0
  58. package/types/index.d.ts +9 -0
  59. package/es/components/RxButton/src/index.d.ts +0 -3
  60. package/es/components/RxButton/src/index.vue.d.ts +0 -10
  61. package/lib/components/RxButton/src/index.d.ts +0 -3
  62. package/lib/components/RxButton/src/index.vue.d.ts +0 -10
  63. package/theme-chalk/css/icon.css +0 -1
  64. package/theme-chalk/css/index.css +0 -1
  65. package/types/components/RxButton/index.d.ts +0 -3
  66. package/types/components/RxButton/src/index.d.ts +0 -3
  67. package/types/components/RxButton/src/index.vue.d.ts +0 -10
  68. package/types/components/index.d.ts +0 -2
  69. package/types/utils/with-install.d.ts +0 -3
@@ -1,3 +0,0 @@
1
- declare const RxButton: import("@vue/runtime-core").Plugin;
2
- export { RxButton };
3
- export default RxButton;
@@ -1,3 +0,0 @@
1
- import type { ExtractPropTypes } from 'vue';
2
- export declare const RxButtonProps: {};
3
- export declare type RxButtonPropsType = ExtractPropTypes<typeof RxButtonProps>;
@@ -1,10 +0,0 @@
1
- declare const _default: import("vue").DefineComponent<Readonly<import("vue").ComponentPropsOptions<{
2
- [x: string]: unknown;
3
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, readonly string[] | Readonly<{
4
- [x: string]: unknown;
5
- } & {} & {
6
- [x: string]: unknown;
7
- }>, {
8
- [x: number]: string;
9
- } | {}>;
10
- export default _default;
@@ -1,2 +0,0 @@
1
- export * from './RxButton';
2
- export * from './RxButton';
@@ -1,3 +0,0 @@
1
- import type { Plugin } from 'vue';
2
- export declare type SFCWithInstall<T> = T & Plugin;
3
- export declare const withInstall: <T>(comp: any) => SFCWithInstall<T>;