mali-ui-plus 1.0.54 → 1.0.56
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/lib/mali-ui-plus.common.js +62 -2
- package/lib/mali-ui-plus.umd.js +62 -2
- package/lib/mali-ui-plus.umd.min.js +2 -2
- package/package.json +1 -1
- package/types/index.d.ts +3 -0
|
@@ -18995,7 +18995,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
18995
18995
|
"default": function() { return /* binding */ entry_lib; }
|
|
18996
18996
|
});
|
|
18997
18997
|
|
|
18998
|
-
// UNUSED EXPORTS: MaliLoading, MaliModal, MaliStorage, MaliToast, MaliUI, MaliUtils, MlAmountInput, MlAmountText, MlApprovalType, MlButton, MlCalendar, MlCard, MlCascader, MlCheckbox, MlCheckboxGroup, MlCol, MlDatePicker, MlDateRangePicker, MlDateTimePicker, MlDatetimePicker, MlDictType, MlDrawer, MlEditor, MlForm, MlGrid, MlIcon, MlInput, MlInvoiceType, MlModal, MlNumberInput, MlPager, MlPopover, MlQuarterPicker, MlRadio, MlRadioButton, MlRadioGroup, MlRangePicker, MlRow, MlSearchInput, MlSelect, MlSwitch, MlTabPane, MlTable, MlTabs, MlText, MlTextarea, MlTooltip, MlTree, MlUpload, MlWeekPicker, components
|
|
18998
|
+
// UNUSED EXPORTS: MaliLoading, MaliModal, MaliStorage, MaliToast, MaliUI, MaliUtils, MlAmountInput, MlAmountText, MlApprovalType, MlButton, MlCalendar, MlCard, MlCascader, MlCheckbox, MlCheckboxGroup, MlCol, MlColorPicker, MlDatePicker, MlDateRangePicker, MlDateTimePicker, MlDatetimePicker, MlDictType, MlDrawer, MlEditor, MlForm, MlGrid, MlIcon, MlInput, MlInvoiceType, MlModal, MlNumberInput, MlPager, MlPopover, MlQuarterPicker, MlRadio, MlRadioButton, MlRadioGroup, MlRangePicker, MlRow, MlSearchInput, MlSelect, MlSwitch, MlTabPane, MlTable, MlTabs, MlText, MlTextarea, MlTooltip, MlTree, MlUpload, MlWeekPicker, components
|
|
18999
18999
|
|
|
19000
19000
|
// NAMESPACE OBJECT: ./node_modules/vxe-table/es/all.js
|
|
19001
19001
|
var all_namespaceObject = {};
|
|
@@ -47974,6 +47974,10 @@ const globalStore = {
|
|
|
47974
47974
|
// 金额格式化
|
|
47975
47975
|
amountText: {
|
|
47976
47976
|
digits: 2
|
|
47977
|
+
},
|
|
47978
|
+
// 颜色选择器
|
|
47979
|
+
colorPicker: {
|
|
47980
|
+
predefineColors: ['#F0F2F5', '#246BFD', '#00D35C', '#FF5064', '#FF9C00', '#9747FF', '#5e7092']
|
|
47977
47981
|
}
|
|
47978
47982
|
};
|
|
47979
47983
|
/* harmony default export */ var config_0 = (globalStore);
|
|
@@ -49925,6 +49929,59 @@ const MlRadioButton_exports_ = MlRadioButtonvue_type_script_lang_ts_setup_true;
|
|
|
49925
49929
|
const MlRadioGroup_exports_ = MlRadioGroupvue_type_script_lang_ts_setup_true;
|
|
49926
49930
|
|
|
49927
49931
|
/* harmony default export */ var MlRadioGroup = (MlRadioGroup_exports_);
|
|
49932
|
+
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/ml-color-picker/MlColorPicker.vue?vue&type=script&lang=ts&setup=true
|
|
49933
|
+
|
|
49934
|
+
|
|
49935
|
+
|
|
49936
|
+
|
|
49937
|
+
|
|
49938
|
+
/* harmony default export */ var MlColorPickervue_type_script_lang_ts_setup_true = (/*#__PURE__*/(0,external_commonjs_vue_commonjs2_vue_root_Vue_.defineComponent)({
|
|
49939
|
+
__name: 'MlColorPicker',
|
|
49940
|
+
props: {
|
|
49941
|
+
modelValue: {
|
|
49942
|
+
type: String,
|
|
49943
|
+
default: null
|
|
49944
|
+
},
|
|
49945
|
+
showAlpha: Boolean,
|
|
49946
|
+
predefineColors: {
|
|
49947
|
+
type: Array,
|
|
49948
|
+
default: () => xe_utils_default().clone(config_0.colorPicker?.predefineColors || [], true)
|
|
49949
|
+
}
|
|
49950
|
+
},
|
|
49951
|
+
setup(__props) {
|
|
49952
|
+
const props = __props;
|
|
49953
|
+
const selectVal = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.ref)(props.modelValue || '');
|
|
49954
|
+
(0,external_commonjs_vue_commonjs2_vue_root_Vue_.watch)(() => props.modelValue, val => {
|
|
49955
|
+
selectVal.value = val || '';
|
|
49956
|
+
});
|
|
49957
|
+
return (_ctx, _cache) => {
|
|
49958
|
+
const _component_el_color_picker = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.resolveComponent)("el-color-picker");
|
|
49959
|
+
return (0,external_commonjs_vue_commonjs2_vue_root_Vue_.openBlock)(), (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createBlock)(_component_el_color_picker, {
|
|
49960
|
+
modelValue: selectVal.value,
|
|
49961
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => selectVal.value = $event),
|
|
49962
|
+
class: "ml-color-picker",
|
|
49963
|
+
"show-alpha": "showAlpha",
|
|
49964
|
+
predefineColors: __props.predefineColors
|
|
49965
|
+
}, null, 8, ["modelValue", "predefineColors"]);
|
|
49966
|
+
};
|
|
49967
|
+
}
|
|
49968
|
+
}));
|
|
49969
|
+
;// CONCATENATED MODULE: ./components/ml-color-picker/MlColorPicker.vue?vue&type=script&lang=ts&setup=true
|
|
49970
|
+
|
|
49971
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/ml-color-picker/MlColorPicker.vue?vue&type=style&index=0&id=7548feec&lang=scss
|
|
49972
|
+
// extracted by mini-css-extract-plugin
|
|
49973
|
+
|
|
49974
|
+
;// CONCATENATED MODULE: ./components/ml-color-picker/MlColorPicker.vue?vue&type=style&index=0&id=7548feec&lang=scss
|
|
49975
|
+
|
|
49976
|
+
;// CONCATENATED MODULE: ./components/ml-color-picker/MlColorPicker.vue
|
|
49977
|
+
|
|
49978
|
+
|
|
49979
|
+
|
|
49980
|
+
;
|
|
49981
|
+
|
|
49982
|
+
const MlColorPicker_exports_ = MlColorPickervue_type_script_lang_ts_setup_true;
|
|
49983
|
+
|
|
49984
|
+
/* harmony default export */ var MlColorPicker = (MlColorPicker_exports_);
|
|
49928
49985
|
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/ml-date/MlDatePicker.vue?vue&type=script&lang=ts&setup=true
|
|
49929
49986
|
|
|
49930
49987
|
|
|
@@ -72829,6 +72886,7 @@ VXETable.setup({
|
|
|
72829
72886
|
|
|
72830
72887
|
|
|
72831
72888
|
|
|
72889
|
+
|
|
72832
72890
|
// import MlTimePicker from './components/ml-date/MlTimePicker.vue'
|
|
72833
72891
|
|
|
72834
72892
|
|
|
@@ -72885,6 +72943,7 @@ const index_MlCheckboxGroup = MlCheckboxGroup;
|
|
|
72885
72943
|
const index_MlRadio = MlRadio;
|
|
72886
72944
|
const index_MlRadioButton = MlRadioButton;
|
|
72887
72945
|
const index_MlRadioGroup = MlRadioGroup;
|
|
72946
|
+
const index_MlColorPicker = MlColorPicker;
|
|
72888
72947
|
// MlTimePicker:MlTimePicker
|
|
72889
72948
|
const index_MlDatePicker = MlDatePicker;
|
|
72890
72949
|
const index_MlDatetimePicker = MlDatetimePicker;
|
|
@@ -72940,6 +72999,7 @@ const componentMaps = {
|
|
|
72940
72999
|
MlRadio: index_MlRadio,
|
|
72941
73000
|
MlRadioButton: index_MlRadioButton,
|
|
72942
73001
|
MlRadioGroup: index_MlRadioGroup,
|
|
73002
|
+
MlColorPicker: index_MlColorPicker,
|
|
72943
73003
|
// MlTimePicker:MlTimePicker,
|
|
72944
73004
|
MlDatePicker: index_MlDatePicker,
|
|
72945
73005
|
MlDatetimePicker: index_MlDatetimePicker,
|
|
@@ -72992,7 +73052,7 @@ function index_config(options) {
|
|
|
72992
73052
|
return config_0;
|
|
72993
73053
|
}
|
|
72994
73054
|
const MaliUI = {
|
|
72995
|
-
version: "1.0.
|
|
73055
|
+
version: "1.0.55",
|
|
72996
73056
|
install: index_install,
|
|
72997
73057
|
config: index_config,
|
|
72998
73058
|
renderer: index_esm.renderer,
|
package/lib/mali-ui-plus.umd.js
CHANGED
|
@@ -19005,7 +19005,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
19005
19005
|
"default": function() { return /* binding */ entry_lib; }
|
|
19006
19006
|
});
|
|
19007
19007
|
|
|
19008
|
-
// UNUSED EXPORTS: MaliLoading, MaliModal, MaliStorage, MaliToast, MaliUI, MaliUtils, MlAmountInput, MlAmountText, MlApprovalType, MlButton, MlCalendar, MlCard, MlCascader, MlCheckbox, MlCheckboxGroup, MlCol, MlDatePicker, MlDateRangePicker, MlDateTimePicker, MlDatetimePicker, MlDictType, MlDrawer, MlEditor, MlForm, MlGrid, MlIcon, MlInput, MlInvoiceType, MlModal, MlNumberInput, MlPager, MlPopover, MlQuarterPicker, MlRadio, MlRadioButton, MlRadioGroup, MlRangePicker, MlRow, MlSearchInput, MlSelect, MlSwitch, MlTabPane, MlTable, MlTabs, MlText, MlTextarea, MlTooltip, MlTree, MlUpload, MlWeekPicker, components
|
|
19008
|
+
// UNUSED EXPORTS: MaliLoading, MaliModal, MaliStorage, MaliToast, MaliUI, MaliUtils, MlAmountInput, MlAmountText, MlApprovalType, MlButton, MlCalendar, MlCard, MlCascader, MlCheckbox, MlCheckboxGroup, MlCol, MlColorPicker, MlDatePicker, MlDateRangePicker, MlDateTimePicker, MlDatetimePicker, MlDictType, MlDrawer, MlEditor, MlForm, MlGrid, MlIcon, MlInput, MlInvoiceType, MlModal, MlNumberInput, MlPager, MlPopover, MlQuarterPicker, MlRadio, MlRadioButton, MlRadioGroup, MlRangePicker, MlRow, MlSearchInput, MlSelect, MlSwitch, MlTabPane, MlTable, MlTabs, MlText, MlTextarea, MlTooltip, MlTree, MlUpload, MlWeekPicker, components
|
|
19009
19009
|
|
|
19010
19010
|
// NAMESPACE OBJECT: ./node_modules/vxe-table/es/all.js
|
|
19011
19011
|
var all_namespaceObject = {};
|
|
@@ -47984,6 +47984,10 @@ const globalStore = {
|
|
|
47984
47984
|
// 金额格式化
|
|
47985
47985
|
amountText: {
|
|
47986
47986
|
digits: 2
|
|
47987
|
+
},
|
|
47988
|
+
// 颜色选择器
|
|
47989
|
+
colorPicker: {
|
|
47990
|
+
predefineColors: ['#F0F2F5', '#246BFD', '#00D35C', '#FF5064', '#FF9C00', '#9747FF', '#5e7092']
|
|
47987
47991
|
}
|
|
47988
47992
|
};
|
|
47989
47993
|
/* harmony default export */ var config_0 = (globalStore);
|
|
@@ -49935,6 +49939,59 @@ const MlRadioButton_exports_ = MlRadioButtonvue_type_script_lang_ts_setup_true;
|
|
|
49935
49939
|
const MlRadioGroup_exports_ = MlRadioGroupvue_type_script_lang_ts_setup_true;
|
|
49936
49940
|
|
|
49937
49941
|
/* harmony default export */ var MlRadioGroup = (MlRadioGroup_exports_);
|
|
49942
|
+
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/ml-color-picker/MlColorPicker.vue?vue&type=script&lang=ts&setup=true
|
|
49943
|
+
|
|
49944
|
+
|
|
49945
|
+
|
|
49946
|
+
|
|
49947
|
+
|
|
49948
|
+
/* harmony default export */ var MlColorPickervue_type_script_lang_ts_setup_true = (/*#__PURE__*/(0,external_commonjs_vue_commonjs2_vue_root_Vue_.defineComponent)({
|
|
49949
|
+
__name: 'MlColorPicker',
|
|
49950
|
+
props: {
|
|
49951
|
+
modelValue: {
|
|
49952
|
+
type: String,
|
|
49953
|
+
default: null
|
|
49954
|
+
},
|
|
49955
|
+
showAlpha: Boolean,
|
|
49956
|
+
predefineColors: {
|
|
49957
|
+
type: Array,
|
|
49958
|
+
default: () => xe_utils_default().clone(config_0.colorPicker?.predefineColors || [], true)
|
|
49959
|
+
}
|
|
49960
|
+
},
|
|
49961
|
+
setup(__props) {
|
|
49962
|
+
const props = __props;
|
|
49963
|
+
const selectVal = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.ref)(props.modelValue || '');
|
|
49964
|
+
(0,external_commonjs_vue_commonjs2_vue_root_Vue_.watch)(() => props.modelValue, val => {
|
|
49965
|
+
selectVal.value = val || '';
|
|
49966
|
+
});
|
|
49967
|
+
return (_ctx, _cache) => {
|
|
49968
|
+
const _component_el_color_picker = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.resolveComponent)("el-color-picker");
|
|
49969
|
+
return (0,external_commonjs_vue_commonjs2_vue_root_Vue_.openBlock)(), (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createBlock)(_component_el_color_picker, {
|
|
49970
|
+
modelValue: selectVal.value,
|
|
49971
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => selectVal.value = $event),
|
|
49972
|
+
class: "ml-color-picker",
|
|
49973
|
+
"show-alpha": "showAlpha",
|
|
49974
|
+
predefineColors: __props.predefineColors
|
|
49975
|
+
}, null, 8, ["modelValue", "predefineColors"]);
|
|
49976
|
+
};
|
|
49977
|
+
}
|
|
49978
|
+
}));
|
|
49979
|
+
;// CONCATENATED MODULE: ./components/ml-color-picker/MlColorPicker.vue?vue&type=script&lang=ts&setup=true
|
|
49980
|
+
|
|
49981
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-67.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-67.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-67.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-67.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/ml-color-picker/MlColorPicker.vue?vue&type=style&index=0&id=7548feec&lang=scss
|
|
49982
|
+
// extracted by mini-css-extract-plugin
|
|
49983
|
+
|
|
49984
|
+
;// CONCATENATED MODULE: ./components/ml-color-picker/MlColorPicker.vue?vue&type=style&index=0&id=7548feec&lang=scss
|
|
49985
|
+
|
|
49986
|
+
;// CONCATENATED MODULE: ./components/ml-color-picker/MlColorPicker.vue
|
|
49987
|
+
|
|
49988
|
+
|
|
49989
|
+
|
|
49990
|
+
;
|
|
49991
|
+
|
|
49992
|
+
const MlColorPicker_exports_ = MlColorPickervue_type_script_lang_ts_setup_true;
|
|
49993
|
+
|
|
49994
|
+
/* harmony default export */ var MlColorPicker = (MlColorPicker_exports_);
|
|
49938
49995
|
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/ml-date/MlDatePicker.vue?vue&type=script&lang=ts&setup=true
|
|
49939
49996
|
|
|
49940
49997
|
|
|
@@ -72839,6 +72896,7 @@ VXETable.setup({
|
|
|
72839
72896
|
|
|
72840
72897
|
|
|
72841
72898
|
|
|
72899
|
+
|
|
72842
72900
|
// import MlTimePicker from './components/ml-date/MlTimePicker.vue'
|
|
72843
72901
|
|
|
72844
72902
|
|
|
@@ -72895,6 +72953,7 @@ const index_MlCheckboxGroup = MlCheckboxGroup;
|
|
|
72895
72953
|
const index_MlRadio = MlRadio;
|
|
72896
72954
|
const index_MlRadioButton = MlRadioButton;
|
|
72897
72955
|
const index_MlRadioGroup = MlRadioGroup;
|
|
72956
|
+
const index_MlColorPicker = MlColorPicker;
|
|
72898
72957
|
// MlTimePicker:MlTimePicker
|
|
72899
72958
|
const index_MlDatePicker = MlDatePicker;
|
|
72900
72959
|
const index_MlDatetimePicker = MlDatetimePicker;
|
|
@@ -72950,6 +73009,7 @@ const componentMaps = {
|
|
|
72950
73009
|
MlRadio: index_MlRadio,
|
|
72951
73010
|
MlRadioButton: index_MlRadioButton,
|
|
72952
73011
|
MlRadioGroup: index_MlRadioGroup,
|
|
73012
|
+
MlColorPicker: index_MlColorPicker,
|
|
72953
73013
|
// MlTimePicker:MlTimePicker,
|
|
72954
73014
|
MlDatePicker: index_MlDatePicker,
|
|
72955
73015
|
MlDatetimePicker: index_MlDatetimePicker,
|
|
@@ -73002,7 +73062,7 @@ function index_config(options) {
|
|
|
73002
73062
|
return config_0;
|
|
73003
73063
|
}
|
|
73004
73064
|
const MaliUI = {
|
|
73005
|
-
version: "1.0.
|
|
73065
|
+
version: "1.0.55",
|
|
73006
73066
|
install: index_install,
|
|
73007
73067
|
config: index_config,
|
|
73008
73068
|
renderer: index_esm.renderer,
|