@epie/bi-crud 2.0.43 → 2.0.44
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/bi-crud.esm.js +33 -15
- package/lib/bi-crud.umd.js +33 -15
- package/package.json +2 -2
package/lib/bi-crud.esm.js
CHANGED
|
@@ -8173,11 +8173,15 @@ const emitter$1 = {
|
|
|
8173
8173
|
var English = {
|
|
8174
8174
|
name: "en",
|
|
8175
8175
|
el: {
|
|
8176
|
+
breadcrumb: {
|
|
8177
|
+
label: "Breadcrumb"
|
|
8178
|
+
},
|
|
8176
8179
|
colorpicker: {
|
|
8177
8180
|
confirm: "OK",
|
|
8178
8181
|
clear: "Clear",
|
|
8179
8182
|
defaultLabel: "color picker",
|
|
8180
|
-
description: "current color is {color}. press enter to select a new color."
|
|
8183
|
+
description: "current color is {color}. press enter to select a new color.",
|
|
8184
|
+
alphaLabel: "pick alpha value"
|
|
8181
8185
|
},
|
|
8182
8186
|
datepicker: {
|
|
8183
8187
|
now: "Now",
|
|
@@ -8256,6 +8260,9 @@ var English = {
|
|
|
8256
8260
|
noData: "No data",
|
|
8257
8261
|
placeholder: "Select"
|
|
8258
8262
|
},
|
|
8263
|
+
mention: {
|
|
8264
|
+
loading: "Loading"
|
|
8265
|
+
},
|
|
8259
8266
|
dropdown: {
|
|
8260
8267
|
toggleDropdown: "Toggle Dropdown"
|
|
8261
8268
|
},
|
|
@@ -8309,6 +8316,11 @@ var English = {
|
|
|
8309
8316
|
clearFilter: "All",
|
|
8310
8317
|
sumText: "Sum"
|
|
8311
8318
|
},
|
|
8319
|
+
tour: {
|
|
8320
|
+
next: "Next",
|
|
8321
|
+
previous: "Previous",
|
|
8322
|
+
finish: "Finish"
|
|
8323
|
+
},
|
|
8312
8324
|
tree: {
|
|
8313
8325
|
emptyText: "No Data"
|
|
8314
8326
|
},
|
|
@@ -8329,6 +8341,11 @@ var English = {
|
|
|
8329
8341
|
popconfirm: {
|
|
8330
8342
|
confirmButtonText: "Yes",
|
|
8331
8343
|
cancelButtonText: "No"
|
|
8344
|
+
},
|
|
8345
|
+
carousel: {
|
|
8346
|
+
leftArrow: "Carousel arrow left",
|
|
8347
|
+
rightArrow: "Carousel arrow right",
|
|
8348
|
+
indicator: "Carousel switch to index {index}"
|
|
8332
8349
|
}
|
|
8333
8350
|
}
|
|
8334
8351
|
};
|
|
@@ -30440,32 +30457,33 @@ function useRender$1(ctx) {
|
|
|
30440
30457
|
});
|
|
30441
30458
|
},
|
|
30442
30459
|
default() {
|
|
30443
|
-
return createVNode(
|
|
30444
|
-
"class": "epie-form-item"
|
|
30445
|
-
}, [withDirectives(createVNode("div", {
|
|
30446
|
-
"class": [`epie-form-item__${name}`, {
|
|
30447
|
-
"is-flex": e.flex !== false
|
|
30448
|
-
}]
|
|
30449
|
-
}, [renderNode(e.component, {
|
|
30460
|
+
return createVNode(Fragment, null, [renderNode(e.component, {
|
|
30450
30461
|
item: e,
|
|
30451
30462
|
prop: e.prop,
|
|
30452
30463
|
scope: ctx.form,
|
|
30453
30464
|
slots: ctx.$slots
|
|
30454
|
-
})])
|
|
30465
|
+
})]);
|
|
30455
30466
|
}
|
|
30456
30467
|
}) : null;
|
|
30457
30468
|
return createVNode(resolveComponent("el-col"), mergeProps({
|
|
30458
|
-
"
|
|
30469
|
+
"sm": {
|
|
30470
|
+
span: 12
|
|
30471
|
+
},
|
|
30472
|
+
"md": {
|
|
30473
|
+
span: 8
|
|
30474
|
+
},
|
|
30475
|
+
"lg": {
|
|
30476
|
+
span: 6
|
|
30477
|
+
}
|
|
30459
30478
|
}, e), _isSlot$2(FormItem) ? FormItem : {
|
|
30460
30479
|
default: () => [FormItem]
|
|
30461
30480
|
});
|
|
30462
30481
|
}).filter(Boolean);
|
|
30463
30482
|
const op = createVNode(resolveComponent("el-col"), {
|
|
30464
|
-
"
|
|
30465
|
-
"xs": {
|
|
30483
|
+
"sm": {
|
|
30466
30484
|
span: 12
|
|
30467
30485
|
},
|
|
30468
|
-
"
|
|
30486
|
+
"md": {
|
|
30469
30487
|
span: 8
|
|
30470
30488
|
},
|
|
30471
30489
|
"lg": {
|
|
@@ -30485,7 +30503,7 @@ function useRender$1(ctx) {
|
|
|
30485
30503
|
"size": style.size,
|
|
30486
30504
|
"label-position": browser.isMini ? "top" : undefined,
|
|
30487
30505
|
"label-width": "100px",
|
|
30488
|
-
"inline":
|
|
30506
|
+
"inline": false,
|
|
30489
30507
|
"model": ctx.form
|
|
30490
30508
|
}, null);
|
|
30491
30509
|
if ((children?.length > 0 || 0) === 0) {
|
|
@@ -30495,7 +30513,7 @@ function useRender$1(ctx) {
|
|
|
30495
30513
|
return h(ElForm, {}, {
|
|
30496
30514
|
default: () => {
|
|
30497
30515
|
return createVNode(resolveComponent("el-row"), {
|
|
30498
|
-
"gutter":
|
|
30516
|
+
"gutter": 24
|
|
30499
30517
|
}, {
|
|
30500
30518
|
default: () => [children, op]
|
|
30501
30519
|
});
|
package/lib/bi-crud.umd.js
CHANGED
|
@@ -8176,11 +8176,15 @@
|
|
|
8176
8176
|
var English = {
|
|
8177
8177
|
name: "en",
|
|
8178
8178
|
el: {
|
|
8179
|
+
breadcrumb: {
|
|
8180
|
+
label: "Breadcrumb"
|
|
8181
|
+
},
|
|
8179
8182
|
colorpicker: {
|
|
8180
8183
|
confirm: "OK",
|
|
8181
8184
|
clear: "Clear",
|
|
8182
8185
|
defaultLabel: "color picker",
|
|
8183
|
-
description: "current color is {color}. press enter to select a new color."
|
|
8186
|
+
description: "current color is {color}. press enter to select a new color.",
|
|
8187
|
+
alphaLabel: "pick alpha value"
|
|
8184
8188
|
},
|
|
8185
8189
|
datepicker: {
|
|
8186
8190
|
now: "Now",
|
|
@@ -8259,6 +8263,9 @@
|
|
|
8259
8263
|
noData: "No data",
|
|
8260
8264
|
placeholder: "Select"
|
|
8261
8265
|
},
|
|
8266
|
+
mention: {
|
|
8267
|
+
loading: "Loading"
|
|
8268
|
+
},
|
|
8262
8269
|
dropdown: {
|
|
8263
8270
|
toggleDropdown: "Toggle Dropdown"
|
|
8264
8271
|
},
|
|
@@ -8312,6 +8319,11 @@
|
|
|
8312
8319
|
clearFilter: "All",
|
|
8313
8320
|
sumText: "Sum"
|
|
8314
8321
|
},
|
|
8322
|
+
tour: {
|
|
8323
|
+
next: "Next",
|
|
8324
|
+
previous: "Previous",
|
|
8325
|
+
finish: "Finish"
|
|
8326
|
+
},
|
|
8315
8327
|
tree: {
|
|
8316
8328
|
emptyText: "No Data"
|
|
8317
8329
|
},
|
|
@@ -8332,6 +8344,11 @@
|
|
|
8332
8344
|
popconfirm: {
|
|
8333
8345
|
confirmButtonText: "Yes",
|
|
8334
8346
|
cancelButtonText: "No"
|
|
8347
|
+
},
|
|
8348
|
+
carousel: {
|
|
8349
|
+
leftArrow: "Carousel arrow left",
|
|
8350
|
+
rightArrow: "Carousel arrow right",
|
|
8351
|
+
indicator: "Carousel switch to index {index}"
|
|
8335
8352
|
}
|
|
8336
8353
|
}
|
|
8337
8354
|
};
|
|
@@ -30443,32 +30460,33 @@
|
|
|
30443
30460
|
});
|
|
30444
30461
|
},
|
|
30445
30462
|
default() {
|
|
30446
|
-
return vue.createVNode(
|
|
30447
|
-
"class": "epie-form-item"
|
|
30448
|
-
}, [vue.withDirectives(vue.createVNode("div", {
|
|
30449
|
-
"class": [`epie-form-item__${name}`, {
|
|
30450
|
-
"is-flex": e.flex !== false
|
|
30451
|
-
}]
|
|
30452
|
-
}, [renderNode(e.component, {
|
|
30463
|
+
return vue.createVNode(vue.Fragment, null, [renderNode(e.component, {
|
|
30453
30464
|
item: e,
|
|
30454
30465
|
prop: e.prop,
|
|
30455
30466
|
scope: ctx.form,
|
|
30456
30467
|
slots: ctx.$slots
|
|
30457
|
-
})])
|
|
30468
|
+
})]);
|
|
30458
30469
|
}
|
|
30459
30470
|
}) : null;
|
|
30460
30471
|
return vue.createVNode(vue.resolveComponent("el-col"), vue.mergeProps({
|
|
30461
|
-
"
|
|
30472
|
+
"sm": {
|
|
30473
|
+
span: 12
|
|
30474
|
+
},
|
|
30475
|
+
"md": {
|
|
30476
|
+
span: 8
|
|
30477
|
+
},
|
|
30478
|
+
"lg": {
|
|
30479
|
+
span: 6
|
|
30480
|
+
}
|
|
30462
30481
|
}, e), _isSlot$2(FormItem) ? FormItem : {
|
|
30463
30482
|
default: () => [FormItem]
|
|
30464
30483
|
});
|
|
30465
30484
|
}).filter(Boolean);
|
|
30466
30485
|
const op = vue.createVNode(vue.resolveComponent("el-col"), {
|
|
30467
|
-
"
|
|
30468
|
-
"xs": {
|
|
30486
|
+
"sm": {
|
|
30469
30487
|
span: 12
|
|
30470
30488
|
},
|
|
30471
|
-
"
|
|
30489
|
+
"md": {
|
|
30472
30490
|
span: 8
|
|
30473
30491
|
},
|
|
30474
30492
|
"lg": {
|
|
@@ -30488,7 +30506,7 @@
|
|
|
30488
30506
|
"size": style.size,
|
|
30489
30507
|
"label-position": browser.isMini ? "top" : undefined,
|
|
30490
30508
|
"label-width": "100px",
|
|
30491
|
-
"inline":
|
|
30509
|
+
"inline": false,
|
|
30492
30510
|
"model": ctx.form
|
|
30493
30511
|
}, null);
|
|
30494
30512
|
if ((children?.length > 0 || 0) === 0) {
|
|
@@ -30498,7 +30516,7 @@
|
|
|
30498
30516
|
return vue.h(ElForm, {}, {
|
|
30499
30517
|
default: () => {
|
|
30500
30518
|
return vue.createVNode(vue.resolveComponent("el-row"), {
|
|
30501
|
-
"gutter":
|
|
30519
|
+
"gutter": 24
|
|
30502
30520
|
}, {
|
|
30503
30521
|
default: () => [children, op]
|
|
30504
30522
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epie/bi-crud",
|
|
3
3
|
"simpleName": "bi-crud",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.44",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "lib/bi-crud.umd.js",
|
|
7
7
|
"module": "lib/bi-crud.esm.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"array.prototype.flat": "^1.3.2",
|
|
28
28
|
"clone-deep": "^4.0.1",
|
|
29
29
|
"core-js": "^3.34.0",
|
|
30
|
-
"element-plus": "^2.
|
|
30
|
+
"element-plus": "^2.8.7",
|
|
31
31
|
"lodash-unified": "^1.0.3",
|
|
32
32
|
"merge": "^2.1.1",
|
|
33
33
|
"mitt": "^3.0.1",
|