rx-compo 1.0.62 → 1.0.63

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 (38) hide show
  1. package/es/components/RxCheckbox/index.js +1 -1
  2. package/es/components/RxCheckbox/src/RxCheckbox.d.ts +6 -1
  3. package/es/components/RxCheckbox/src/RxCheckbox.vue.d.ts +15 -4
  4. package/es/components/RxCheckboxButton/index.d.ts +4 -0
  5. package/es/components/RxCheckboxButton/index.js +1 -0
  6. package/es/components/RxCheckboxButton/src/RxCheckboxButton.d.ts +14 -0
  7. package/es/components/RxCheckboxButton/src/RxCheckboxButton.vue.d.ts +25 -0
  8. package/es/components/RxFormPlus/src/components/form-select.vue.d.ts +2 -2
  9. package/es/components/RxSelect/index.d.ts +2 -3
  10. package/es/components/RxSelect/index.js +1 -1
  11. package/es/components/RxSelect/src/RxSelect.d.ts +3 -2
  12. package/es/components/RxSelect/src/types.d.ts +8 -0
  13. package/es/components/RxSelectPlus/index.d.ts +2 -3
  14. package/es/components/RxSelectPlus/src/RxSelectPlus.d.ts +0 -1
  15. package/es/components/RxSelectPlus/src/types.d.ts +10 -0
  16. package/es/components/index.d.ts +1 -0
  17. package/es/components/index.js +1 -1
  18. package/index.esm.js +1 -1
  19. package/index.js +1 -1
  20. package/lib/components/RxCheckbox/index.js +1 -1
  21. package/lib/components/RxCheckbox/src/RxCheckbox.d.ts +6 -1
  22. package/lib/components/RxCheckbox/src/RxCheckbox.vue.d.ts +15 -4
  23. package/lib/components/RxCheckboxButton/index.d.ts +4 -0
  24. package/lib/components/RxCheckboxButton/index.js +1 -0
  25. package/lib/components/RxCheckboxButton/src/RxCheckboxButton.d.ts +14 -0
  26. package/lib/components/RxCheckboxButton/src/RxCheckboxButton.vue.d.ts +25 -0
  27. package/lib/components/RxFormPlus/src/components/form-select.vue.d.ts +2 -2
  28. package/lib/components/RxSelect/index.d.ts +2 -3
  29. package/lib/components/RxSelect/index.js +1 -1
  30. package/lib/components/RxSelect/src/RxSelect.d.ts +3 -2
  31. package/lib/components/RxSelect/src/types.d.ts +8 -0
  32. package/lib/components/RxSelectPlus/index.d.ts +2 -3
  33. package/lib/components/RxSelectPlus/src/RxSelectPlus.d.ts +0 -1
  34. package/lib/components/RxSelectPlus/src/types.d.ts +10 -0
  35. package/lib/components/index.d.ts +1 -0
  36. package/lib/components/index.js +1 -1
  37. package/package.json +1 -1
  38. package/theme-chalk/rx-checkbox-button.css +0 -0
@@ -1 +1 @@
1
- import{withInstall as e}from"rx-compo/es/utils/with-install";import{defineComponent as o,resolveComponent as s,openBlock as l,createBlock as t,mergeProps as a,createSlots as r,withCtx as u,renderSlot as m}from"vue";import{IxPropTypes as c}from"rx-compo/es/utils";import{ElCheckbox as p}from"element-plus";import{useVModel as n}from"@vueuse/core";var f=o({name:"RxCheckbox",components:{ElCheckbox:p},props:{value:c.bool.def(!1)},setup:(e,{emit:o})=>({valuePass:n(e,"value",o)})});f.render=function(e,o,c,p,n,f){const i=s("el-checkbox");return l(),t(i,a({...e.$attrs,...e.$props},{modelValue:e.valuePass,"onUpdate:modelValue":o[0]||(o[0]=o=>e.valuePass=o),class:"rx-checkbox"}),r({_:2},[e.$slots.default?{name:"default",fn:u((()=>[m(e.$slots,"default")]))}:void 0]),1040,["modelValue"])},f.__file="packages/components/RxCheckbox/src/RxCheckbox.vue";const i=e(f);export{i as RxCheckbox,i as default};
1
+ import{withInstall as e}from"rx-compo/es/utils/with-install";import{defineComponent as o,resolveComponent as l,openBlock as t,createBlock as s,mergeProps as a,createSlots as r,withCtx as u,resolveDynamicComponent as c,normalizeProps as n,renderSlot as m}from"vue";import{ElCheckbox as p}from"element-plus";import{useVModel as x}from"@vueuse/core";var d=o({name:"RxCheckbox",components:{ElCheckbox:p},props:{modelValue:{type:[String,Number,Boolean],default:!1},slots:{type:Function,default:null}},setup:(e,{emit:o})=>({rxCheckBoxModelValue:x(e,"modelValue",o)})});d.render=function(e,o,p,x,d,f){const i=l("el-checkbox");return t(),s(i,a({...e.$attrs,...e.$props},{modelValue:e.rxCheckBoxModelValue,"onUpdate:modelValue":o[0]||(o[0]=o=>e.rxCheckBoxModelValue=o),class:"rx-checkbox"}),r({_:2},[e.$slots.default||e.slots?{name:"default",fn:u((()=>[e.slots?(t(),s(c(e.slots.call(null,e.$attrs)),n(a({key:0},e.$attrs)),null,16)):m(e.$slots,"default",{key:1})]))}:void 0]),1040,["modelValue"])},d.__file="packages/components/RxCheckbox/src/RxCheckbox.vue";const f=e(d);export{f as RxCheckbox,f as default};
@@ -1,8 +1,13 @@
1
1
  import type { ExtractPropTypes, DefineComponent } from 'vue';
2
2
  export declare const RxCheckboxProps: {
3
- value: import("vue-types").VueTypeValidableDef<boolean> & {
3
+ modelValue: {
4
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
4
5
  default: boolean;
5
6
  };
7
+ slots: {
8
+ type: FunctionConstructor;
9
+ default: any;
10
+ };
6
11
  };
7
12
  export declare type RxCheckboxPropsType = ExtractPropTypes<typeof RxCheckboxProps>;
8
13
  export declare type RxCheckboxComponent = DefineComponent<typeof RxCheckboxProps>;
@@ -1,14 +1,25 @@
1
1
  declare const _default: import("vue").DefineComponent<{
2
- value: import("vue-types").VueTypeValidableDef<boolean> & {
2
+ modelValue: {
3
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
3
4
  default: boolean;
4
5
  };
6
+ slots: {
7
+ type: FunctionConstructor;
8
+ default: any;
9
+ };
5
10
  }, {
6
- valuePass: import("vue").Ref<boolean> | import("vue").WritableComputedRef<boolean>;
11
+ rxCheckBoxModelValue: import("vue").Ref<string | number | boolean> | import("vue").WritableComputedRef<string | number | boolean>;
7
12
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
8
- value: import("vue-types").VueTypeValidableDef<boolean> & {
13
+ modelValue: {
14
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
9
15
  default: boolean;
10
16
  };
17
+ slots: {
18
+ type: FunctionConstructor;
19
+ default: any;
20
+ };
11
21
  }>>, {
12
- value: boolean;
22
+ slots: Function;
23
+ modelValue: string | number | boolean;
13
24
  }>;
14
25
  export default _default;
@@ -0,0 +1,4 @@
1
+ declare const RxCheckboxButton: any;
2
+ export { RxCheckboxButton };
3
+ export default RxCheckboxButton;
4
+ export type { RxCheckboxButtonProps, RxCheckboxButtonPropsType, RxCheckboxButtonComponent } from './src/RxCheckboxButton';
@@ -0,0 +1 @@
1
+ import{withInstall as e}from"rx-compo/es/utils/with-install";import{defineComponent as o,resolveComponent as t,openBlock as l,createBlock as u,mergeProps as s,createSlots as n,withCtx as a,resolveDynamicComponent as r,normalizeProps as c,renderSlot as m}from"vue";import{ElCheckboxButton as p}from"element-plus";import{useVModel as x}from"@vueuse/core";var d=o({name:"RxCheckboxButton",components:{ElCheckboxButton:p},props:{modelValue:{type:[String,Number,Boolean],default:!1},slots:{type:Function,default:null}},setup:(e,{emit:o})=>({rxCheckBoxModelValue:x(e,"modelValue",o)})});d.render=function(e,o,p,x,d,f){const i=t("el-checkbox-button");return l(),u(i,s({...e.$attrs,...e.$props},{modelValue:e.rxCheckBoxModelValue,"onUpdate:modelValue":o[0]||(o[0]=o=>e.rxCheckBoxModelValue=o),class:"rx-checkbox-button"}),n({_:2},[e.$slots.default||e.slots?{name:"default",fn:a((()=>[e.slots?(l(),u(r(e.slots.call(null,e.$attrs)),c(s({key:0},e.$attrs)),null,16)):m(e.$slots,"default",{key:1})]))}:void 0]),1040,["modelValue"])},d.__file="packages/components/RxCheckboxButton/src/RxCheckboxButton.vue";const f=e(d);export{f as RxCheckboxButton,f as default};
@@ -0,0 +1,14 @@
1
+ import type { ExtractPropTypes, DefineComponent } from 'vue';
2
+ export declare const RxCheckboxButtonProps: {
3
+ modelValue: {
4
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
5
+ default: boolean;
6
+ };
7
+ slots: {
8
+ type: FunctionConstructor;
9
+ default: any;
10
+ };
11
+ };
12
+ export declare type RxCheckboxButtonPropsType = ExtractPropTypes<typeof RxCheckboxButtonProps>;
13
+ export declare type RxCheckboxButtonComponent = DefineComponent<typeof RxCheckboxButtonProps>;
14
+ export declare type RxCheckboxButtonInstance = InstanceType<DefineComponent<typeof RxCheckboxButtonProps>>;
@@ -0,0 +1,25 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ modelValue: {
3
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
4
+ default: boolean;
5
+ };
6
+ slots: {
7
+ type: FunctionConstructor;
8
+ default: any;
9
+ };
10
+ }, {
11
+ rxCheckBoxModelValue: import("vue").Ref<string | number | boolean> | import("vue").WritableComputedRef<string | number | boolean>;
12
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
13
+ modelValue: {
14
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
15
+ default: boolean;
16
+ };
17
+ slots: {
18
+ type: FunctionConstructor;
19
+ default: any;
20
+ };
21
+ }>>, {
22
+ slots: Function;
23
+ modelValue: string | number | boolean;
24
+ }>;
25
+ export default _default;
@@ -1,5 +1,5 @@
1
1
  declare const _default: import("vue").DefineComponent<{
2
- options: (ObjectConstructor | ArrayConstructor | FunctionConstructor)[];
2
+ options: (ObjectConstructor | FunctionConstructor | ArrayConstructor)[];
3
3
  immediate: BooleanConstructor;
4
4
  }, {
5
5
  calcOptions: import("vue").Ref<{
@@ -12,7 +12,7 @@ declare const _default: import("vue").DefineComponent<{
12
12
  filterable: import("vue").ComputedRef<true>;
13
13
  remoteMethod: import("vue").ComputedRef<(value?: string) => Promise<void>>;
14
14
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
15
- options: (ObjectConstructor | ArrayConstructor | FunctionConstructor)[];
15
+ options: (ObjectConstructor | FunctionConstructor | ArrayConstructor)[];
16
16
  immediate: BooleanConstructor;
17
17
  }>>, {
18
18
  immediate: boolean;
@@ -1,6 +1,5 @@
1
- import { RxSelectPropsType } from './src/RxSelect';
2
- import { RxSelectExpose } from './src/types';
3
1
  declare const RxSelect: any;
4
2
  export { RxSelect };
5
- export type { RxSelectPropsType, RxSelectExpose };
6
3
  export default RxSelect;
4
+ export type { RxSelectExpose } from './src/types';
5
+ export type { RxSelectPropsType, RxSelectInstance, RxSelectComponent } from './src/RxSelect';
@@ -1 +1 @@
1
- import{withInstall as e}from"rx-compo/es/utils/with-install";import{ref as t,computed as o,unref as l,defineComponent as n,onMounted as r,resolveComponent as s,openBlock as c,createBlock as u,mergeProps as p,createSlots as a,withCtx as i,renderSlot as f,createElementBlock as x,Fragment as m,renderList as d,resolveDynamicComponent as S,normalizeProps as g,createCommentVNode as R}from"vue";import{useVModel as C}from"@vueuse/core";import{ElSelect as D}from"element-plus";import{RxOption as y}from"rx-compo/es/components/RxOption";var v=n({name:"RxSelect",components:{ElSelect:D,RxOption:y},props:{modelValue:{type:[Array,String,Number,Boolean,Object],default:""},options:{type:Array,default:[]},formatter:{type:Function,default:null}},setup(e,{attrs:n,emit:s,expose:c}){const u=t(),p=C(e,"modelValue",s),{rxSelectDropDownClass:a,updateRxSelectDropDown:i,getRxSelectDropDownConfig:f}=function(e,o){const l=t("rx-select-drop-option");return{rxSelectDropDownClass:l,updateRxSelectDropDown:function(){const{popperClass:e}=o;l.value=e?`rx-select-drop-option ${e}`:"rx-select-drop-option"},getRxSelectDropDownConfig:function(){return l.value}}}(0,n),{rxSelectConfig:x,updateRxSelectPlusConfig:m,getRxSelectPlusConfig:d}=function(e,n){const r=t();return{rxSelectConfig:r,updateRxSelectPlusConfig:function(){r.value={popperClass:o((()=>l(n)))}},getRxSelectPlusConfig:function(){return Object.assign(Object.assign({},e),r.value)}}}(n,a);return r((()=>{!function(e,t){e(),t()}(i,m)})),c({rxSelectRef:u,updateRxSelectPlusConfig:m,updateRxSelectDropDown:i,getRxSelectPlusConfig:d,getRxSelectDropDownConfig:f}),{rxSelectRef:u,rxSelectConfig:x,rxSelectModelValue:p}}});v.render=function(e,t,o,l,n,r){const C=s("rx-option"),D=s("el-select");return c(),u(D,p({modelValue:e.rxSelectModelValue,"onUpdate:modelValue":t[0]||(t[0]=t=>e.rxSelectModelValue=t),class:"rx-select",ref:"rxSelectRef"},{...e.$attrs,...e.rxSelectConfig}),a({default:i((()=>[e.$slots.default?f(e.$slots,"default",{key:0}):(c(!0),x(m,{key:1},d(e.options,((t,o)=>(c(),u(C,p({key:o},t,t),{default:i((()=>[e.formatter?(c(),u(S(e.formatter.call(null,t)),g(p({key:0},t)),null,16)):t.slots?(c(),u(S(t.slots.call(null,t)),g(p({key:1},t)),null,16)):R("v-if",!0)])),_:2},1040)))),128))])),_:2},[e.$slots.prefix?{name:"prefix",fn:i((()=>[f(e.$slots,"prefix")]))}:void 0,e.$slots.empty?{name:"empty",fn:i((()=>[f(e.$slots,"empty")]))}:void 0]),1040,["modelValue"])},v.__file="packages/components/RxSelect/src/RxSelect.vue";const w=e(v);export{w as RxSelect,w as default};
1
+ import{withInstall as e}from"rx-compo/es/utils/with-install";import{ref as t,computed as o,unref as l,defineComponent as n,onMounted as r,resolveComponent as s,openBlock as c,createBlock as u,mergeProps as p,createSlots as a,withCtx as i,renderSlot as f,createElementBlock as x,Fragment as m,renderList as d,resolveDynamicComponent as S,normalizeProps as g,createCommentVNode as R}from"vue";import{useVModel as C}from"@vueuse/core";import{ElSelect as D}from"element-plus";import{RxOption as y}from"rx-compo/es/components/RxOption";var v=n({name:"RxSelect",components:{ElSelect:D,RxOption:y},props:{modelValue:{type:[Array,String,Number,Boolean,Object],default:""},options:{type:Array,default:[]},formatter:{type:Function,default:null}},setup(e,{attrs:n,emit:s,expose:c}){const u=t(),p=C(e,"modelValue",s),{rxSelectDropDownClass:a,updateRxSelectDropDown:i,getRxSelectDropDownConfig:f}=function(e,o){const l=t("rx-select-drop-option");return{rxSelectDropDownClass:l,updateRxSelectDropDown:function(){const{popperClass:e}=o;l.value=e?`rx-select-drop-option ${e}`:"rx-select-drop-option"},getRxSelectDropDownConfig:function(){return l.value}}}(0,n),{rxSelectConfig:x,updateRxSelectPlusConfig:m,getRxSelectPlusConfig:d}=function(e,n){const r=t();return{rxSelectConfig:r,updateRxSelectPlusConfig:function(){r.value={popperClass:o((()=>l(n)))}},getRxSelectPlusConfig:function(){return Object.assign(Object.assign({},e),r.value)}}}(n,a);return r((()=>{!function(e,t){e(),t()}(i,m)})),c({rxSelectRef:u,updateRxSelectPlusConfig:m,updateRxSelectDropDown:i,getRxSelectPlusConfig:d,getRxSelectDropDownConfig:f}),{rxSelectRef:u,rxSelectConfig:x,rxSelectModelValue:p}}});v.render=function(e,t,o,l,n,r){const C=s("rx-option"),D=s("el-select");return c(),u(D,p({modelValue:e.rxSelectModelValue,"onUpdate:modelValue":t[0]||(t[0]=t=>e.rxSelectModelValue=t),class:"rx-select",ref:"rxSelectRef"},{...e.$attrs,...e.rxSelectConfig}),a({default:i((()=>[e.$slots.default?f(e.$slots,"default",{key:0}):(c(!0),x(m,{key:1},d(e.options,((t,o)=>(c(),u(C,p({key:o},t,t),{default:i((()=>[t.slots?(c(),u(S(t.slots.call(null,t)),g(p({key:0},t)),null,16)):e.formatter?(c(),u(S(e.formatter.call(null,t)),g(p({key:1},t)),null,16)):R("v-if",!0)])),_:2},1040)))),128))])),_:2},[e.$slots.prefix?{name:"prefix",fn:i((()=>[f(e.$slots,"prefix")]))}:void 0,e.$slots.empty?{name:"empty",fn:i((()=>[f(e.$slots,"empty")]))}:void 0]),1040,["modelValue"])},v.__file="packages/components/RxSelect/src/RxSelect.vue";const w=e(v);export{w as RxSelect,w as default};
@@ -1,6 +1,5 @@
1
- import type { ExtractPropTypes, PropType } from 'vue';
1
+ import type { ExtractPropTypes, PropType, DefineComponent } from 'vue';
2
2
  import type { RxOptionPropsType } from 'rx-compo/es/components';
3
- export type { RxSelectExpose } from './types';
4
3
  export declare const RxSelectProps: {
5
4
  modelValue: {
6
5
  type: (BooleanConstructor | StringConstructor | ObjectConstructor | NumberConstructor | ArrayConstructor)[];
@@ -16,3 +15,5 @@ export declare const RxSelectProps: {
16
15
  };
17
16
  };
18
17
  export declare type RxSelectPropsType = ExtractPropTypes<typeof RxSelectProps>;
18
+ export declare type RxSelectComponent = DefineComponent<typeof RxSelectProps>;
19
+ export declare type RxSelectInstance = InstanceType<DefineComponent<typeof RxSelectProps>>;
@@ -0,0 +1,8 @@
1
+ import { RxSelectInstance } from './RxSelect';
2
+ export interface RxSelectExpose {
3
+ rxSelectRef: RxSelectInstance;
4
+ updateRxSelectPlusConfig: () => void;
5
+ updateRxSelectDropDown: () => void;
6
+ getRxSelectConfig: () => any;
7
+ getRxSelectDropDownConfig: () => any;
8
+ }
@@ -1,6 +1,5 @@
1
- import { RxSelectPlusExpose } from './src/types';
2
1
  declare const RxSelectPlus: any;
3
2
  export { RxSelectPlus };
4
- export type { RxSelectPlusExpose };
5
3
  export default RxSelectPlus;
6
- export type { RxSelectPlusPropsType, RxSelectPlusComponent } from './src/RxSelectPlus';
4
+ export type { RxSelectPlusExpose } from './src/types';
5
+ export type { RxSelectPlusPropsType, RxSelectPlusInstance, RxSelectPlusComponent } from './src/RxSelectPlus';
@@ -1,7 +1,6 @@
1
1
  import type { ExtractPropTypes, PropType, DefineComponent } from 'vue';
2
2
  import type { RxOptionPropsType } from 'rx-compo/es/components';
3
3
  import { ScrollbarMaxHeight } from './types';
4
- export type { RxSelectPlusExpose } from './types';
5
4
  export declare type SelectType = ExtractPropTypes<Array<any> & String>;
6
5
  export declare const RxSelectPlusProps: {
7
6
  modelValue: {
@@ -0,0 +1,10 @@
1
+ import { RxSelectPlusInstance, RxSelectInstance } from 'rx-compo/es/components';
2
+ export interface ScrollbarMaxHeight {
3
+ maxHeight?: number;
4
+ }
5
+ export interface RxSelectPlusExpose {
6
+ rxSelectPlusRef: RxSelectPlusInstance;
7
+ rxSelectRef: RxSelectInstance;
8
+ updateRxToolTipConfig: () => void;
9
+ getRxToolTipConfig: () => any;
10
+ }
@@ -14,3 +14,4 @@ export * from './RxSelectPlus';
14
14
  export * from './RxScrollbar';
15
15
  export * from './RxSuperCondition';
16
16
  export * from './RxFormPlus';
17
+ export * from './RxCheckboxButton';
@@ -1 +1 @@
1
- import o from"element-plus";import*as r from"@element-plus/icons-vue";import t from"./RxButton";export*from"./RxButton";import m from"./RxCheckbox";export*from"./RxCheckbox";import e from"./RxDatePicker";export*from"./RxDatePicker";import p from"./RxInput";export*from"./RxInput";import x from"./RxOption";export*from"./RxOption";import f from"./RxSelect";export*from"./RxSelect";import i from"./RxTooltip";export*from"./RxTooltip";import n from"./RxSelectPlus";export*from"./RxSelectPlus";import R from"./RxScrollbar";export*from"./RxScrollbar";import l from"./RxSuperCondition";export*from"./RxSuperCondition";import c from"./RxFormPlus";export*from"./RxFormPlus";const u=[t,m,e,p,x,f,i,n,R,l,c];var s={install:function(t){u.forEach((o=>{t.component(o.name,o)})),t.use(o),Object.entries(r).forEach((([o,r])=>{t.component(o,r)}))}};export{s as default};
1
+ import o from"element-plus";import*as r from"@element-plus/icons-vue";import t from"./RxButton";export*from"./RxButton";import m from"./RxCheckbox";export*from"./RxCheckbox";import e from"./RxDatePicker";export*from"./RxDatePicker";import x from"./RxInput";export*from"./RxInput";import p from"./RxOption";export*from"./RxOption";import f from"./RxSelect";export*from"./RxSelect";import i from"./RxTooltip";export*from"./RxTooltip";import n from"./RxSelectPlus";export*from"./RxSelectPlus";import R from"./RxScrollbar";export*from"./RxScrollbar";import l from"./RxSuperCondition";export*from"./RxSuperCondition";import c from"./RxFormPlus";export*from"./RxFormPlus";import u from"./RxCheckboxButton";export*from"./RxCheckboxButton";const s=[t,m,e,x,p,f,i,n,R,l,c,u];var a={install:function(t){s.forEach((o=>{t.component(o.name,o)})),t.use(o),Object.entries(r).forEach((([o,r])=>{t.component(o,r)}))}};export{a as default};