@maxax/ui 1.1.15 → 1.1.16
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/components/basic-checkbox-group/BasicCheckboxGroup.d.ts.map +1 -1
- package/dist/components/basic-checkbox-group/interface.d.ts +3 -0
- package/dist/components/basic-checkbox-group/interface.d.ts.map +1 -1
- package/dist/components/basic-form/components/FormItem.vue.d.ts.map +1 -1
- package/dist/components/basic-form/types/form.d.ts +1 -0
- package/dist/components/basic-form/types/form.d.ts.map +1 -1
- package/dist/components/basic-radio-group/BasicRadioGroup.d.ts.map +1 -1
- package/dist/components/basic-radio-group/interface.d.ts +3 -0
- package/dist/components/basic-radio-group/interface.d.ts.map +1 -1
- package/dist/components/basic-select/BasicSelect.vue.d.ts +2 -4
- package/dist/components/basic-select/BasicSelect.vue.d.ts.map +1 -1
- package/dist/components/basic-select/interface.d.ts +4 -0
- package/dist/components/basic-select/interface.d.ts.map +1 -1
- package/dist/index.cjs +15 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +15 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -7650,8 +7650,11 @@ const BasicCheckboxGroup = /* @__PURE__ */ defineComponent({
|
|
|
7650
7650
|
async function reload(opt) {
|
|
7651
7651
|
return await fetch2(opt);
|
|
7652
7652
|
}
|
|
7653
|
-
|
|
7653
|
+
const checkboxGroupActionType = {
|
|
7654
7654
|
reload
|
|
7655
|
+
};
|
|
7656
|
+
expose({
|
|
7657
|
+
...checkboxGroupActionType
|
|
7655
7658
|
});
|
|
7656
7659
|
return () => {
|
|
7657
7660
|
var _a;
|
|
@@ -9028,8 +9031,11 @@ const BasicRadioGroup = /* @__PURE__ */ defineComponent({
|
|
|
9028
9031
|
async function reload(opt) {
|
|
9029
9032
|
return await fetch2(opt);
|
|
9030
9033
|
}
|
|
9031
|
-
|
|
9034
|
+
const radioGroupActionType = {
|
|
9032
9035
|
reload
|
|
9036
|
+
};
|
|
9037
|
+
expose({
|
|
9038
|
+
...radioGroupActionType
|
|
9033
9039
|
});
|
|
9034
9040
|
return () => {
|
|
9035
9041
|
var _a;
|
|
@@ -9145,9 +9151,12 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
9145
9151
|
function getSearchInfo() {
|
|
9146
9152
|
return searchInfoRef.value;
|
|
9147
9153
|
}
|
|
9148
|
-
|
|
9154
|
+
const selectActionType = {
|
|
9149
9155
|
reload,
|
|
9150
9156
|
getSearchInfo
|
|
9157
|
+
};
|
|
9158
|
+
__expose({
|
|
9159
|
+
...selectActionType
|
|
9151
9160
|
});
|
|
9152
9161
|
return (_ctx, _cache) => {
|
|
9153
9162
|
return openBlock(), createBlock(unref(NSelect), mergeProps(computedProps.value, {
|
|
@@ -10891,6 +10900,9 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
10891
10900
|
setFormModel: props.setFormModel,
|
|
10892
10901
|
formActionType: props.formActionType
|
|
10893
10902
|
};
|
|
10903
|
+
if (props.schema.ref) {
|
|
10904
|
+
compAttr.ref = props.schema.ref;
|
|
10905
|
+
}
|
|
10894
10906
|
if (customRenderComponent && isFunction(customRenderComponent)) {
|
|
10895
10907
|
return createVNode(customRenderComponent, compAttr, null);
|
|
10896
10908
|
}
|