@vxe-ui/plugin-menu 3.2.2 → 3.3.1
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/index.umd.js +1721 -1707
- package/dist/index.umd.min.js +1 -1
- package/es/index.esm.js +1462 -0
- package/es/index.js +1462 -0
- package/es/style.css +0 -0
- package/es/style.min.css +0 -0
- package/{dist → lib}/index.common.js +6 -5
- package/lib/index.js +1696 -0
- package/lib/index.umd.js +1723 -0
- package/lib/index.umd.min.js +1 -0
- package/lib/style.css +0 -0
- package/lib/style.min.css +0 -0
- package/package.json +13 -12
- package/src/index.ts +1474 -0
package/es/style.css
ADDED
|
File without changes
|
package/es/style.min.css
ADDED
|
File without changes
|
|
@@ -392,18 +392,19 @@ function selectMultipleRows() {
|
|
|
392
392
|
slots: {
|
|
393
393
|
"default": function _default(params, h) {
|
|
394
394
|
return h(VxeUINumberInputComponent, {
|
|
395
|
-
style: {
|
|
396
|
-
width: '100%'
|
|
397
|
-
},
|
|
398
395
|
props: {
|
|
399
396
|
value: rowSize,
|
|
400
397
|
min: 1,
|
|
401
398
|
max: 100,
|
|
399
|
+
type: 'integer',
|
|
402
400
|
align: 'center',
|
|
403
401
|
controlConfig: {
|
|
404
402
|
layout: 'default'
|
|
405
403
|
}
|
|
406
404
|
},
|
|
405
|
+
style: {
|
|
406
|
+
width: '100%'
|
|
407
|
+
},
|
|
407
408
|
on: {
|
|
408
409
|
modelValue: function modelValue(value) {
|
|
409
410
|
rowSize = value;
|
|
@@ -468,11 +469,11 @@ var VxeUIPluginMenu = exports.VxeUIPluginMenu = {
|
|
|
468
469
|
var pVersion = 3;
|
|
469
470
|
var sVersion = 13;
|
|
470
471
|
if (!VxeUI.checkVersion(VxeUI.tableVersion, pVersion, sVersion)) {
|
|
471
|
-
console.error("[@vxe-ui/plugin-menu 3.
|
|
472
|
+
console.error("[@vxe-ui/plugin-menu 3.3.1] ".concat(VxeUI.getI18n('vxe.error.errorVersion', ["vxe-table@".concat(VxeUI.tableVersion || '?'), "vxe-table v".concat(pVersion, ".").concat(sVersion, "+")])));
|
|
472
473
|
}
|
|
473
474
|
} else {
|
|
474
475
|
if (!/^(3)\./.test(VxeUI.uiVersion || VxeUI.tableVersion)) {
|
|
475
|
-
console.error('[@vxe-ui/plugin-menu 3.
|
|
476
|
+
console.error('[@vxe-ui/plugin-menu 3.3.1] Requires vxe-table 3.9.0+ version. https://vxeui.com/other3/#/plugin-menu/install');
|
|
476
477
|
}
|
|
477
478
|
}
|
|
478
479
|
pluginConfig(options);
|