beca-ui 0.1.52 → 0.1.54
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/beca-ui.js +18 -14
- package/dist/main.css +1 -1
- package/package.json +1 -1
package/dist/beca-ui.js
CHANGED
|
@@ -88408,15 +88408,16 @@ const AppContext = createContext$1({}), MainLayout = (a) => {
|
|
|
88408
88408
|
}, paginationItemRender = (a, s, c) => {
|
|
88409
88409
|
switch (s) {
|
|
88410
88410
|
case "page":
|
|
88411
|
-
return /* @__PURE__ */ jsx(Button$3, { type: "text",
|
|
88411
|
+
return /* @__PURE__ */ jsx(Button$3, { type: "text", status: "info", className: "pagination-btn", children: a });
|
|
88412
88412
|
case "prev":
|
|
88413
88413
|
return /* @__PURE__ */ jsx(
|
|
88414
88414
|
Button$3,
|
|
88415
88415
|
{
|
|
88416
88416
|
type: "text",
|
|
88417
|
-
icon: /* @__PURE__ */ jsx(
|
|
88418
|
-
|
|
88419
|
-
|
|
88417
|
+
icon: /* @__PURE__ */ jsx(SvgArrowLeft2OutlinedStyle, { size: 14 }),
|
|
88418
|
+
status: "info",
|
|
88419
|
+
className: "pagination-btn",
|
|
88420
|
+
shape: "circle"
|
|
88420
88421
|
}
|
|
88421
88422
|
);
|
|
88422
88423
|
case "next":
|
|
@@ -88424,9 +88425,10 @@ const AppContext = createContext$1({}), MainLayout = (a) => {
|
|
|
88424
88425
|
Button$3,
|
|
88425
88426
|
{
|
|
88426
88427
|
type: "text",
|
|
88427
|
-
icon: /* @__PURE__ */ jsx(
|
|
88428
|
-
|
|
88429
|
-
|
|
88428
|
+
icon: /* @__PURE__ */ jsx(SvgArrowRight3OutlinedStyle, { size: 14 }),
|
|
88429
|
+
status: "info",
|
|
88430
|
+
className: "pagination-btn",
|
|
88431
|
+
shape: "circle"
|
|
88430
88432
|
}
|
|
88431
88433
|
);
|
|
88432
88434
|
case "jump-prev":
|
|
@@ -88434,9 +88436,10 @@ const AppContext = createContext$1({}), MainLayout = (a) => {
|
|
|
88434
88436
|
Button$3,
|
|
88435
88437
|
{
|
|
88436
88438
|
type: "text",
|
|
88437
|
-
icon: /* @__PURE__ */ jsx(SvgArrowLeft3OutlinedStyle, {}),
|
|
88438
|
-
|
|
88439
|
-
|
|
88439
|
+
icon: /* @__PURE__ */ jsx(SvgArrowLeft3OutlinedStyle, { size: 14 }),
|
|
88440
|
+
status: "info",
|
|
88441
|
+
className: "pagination-btn",
|
|
88442
|
+
shape: "circle"
|
|
88440
88443
|
}
|
|
88441
88444
|
);
|
|
88442
88445
|
case "jump-next":
|
|
@@ -88444,9 +88447,10 @@ const AppContext = createContext$1({}), MainLayout = (a) => {
|
|
|
88444
88447
|
Button$3,
|
|
88445
88448
|
{
|
|
88446
88449
|
type: "text",
|
|
88447
|
-
icon: /* @__PURE__ */ jsx(SvgArrowRight2OutlinedStyle, {}),
|
|
88448
|
-
|
|
88449
|
-
|
|
88450
|
+
icon: /* @__PURE__ */ jsx(SvgArrowRight2OutlinedStyle, { size: 14 }),
|
|
88451
|
+
status: "info",
|
|
88452
|
+
shape: "circle",
|
|
88453
|
+
className: "pagination-btn"
|
|
88450
88454
|
}
|
|
88451
88455
|
);
|
|
88452
88456
|
default:
|
|
@@ -111505,7 +111509,7 @@ const Avatar$1 = Avatar, getClassName$t = (a) => {
|
|
|
111505
111509
|
return c && (u += " " + c), s && (u += " mobile-dropdown"), u;
|
|
111506
111510
|
}, DatePicker$1 = (a) => {
|
|
111507
111511
|
const {
|
|
111508
|
-
allowClear: s,
|
|
111512
|
+
allowClear: s = !0,
|
|
111509
111513
|
superPrevIcon: c,
|
|
111510
111514
|
superNextIcon: u,
|
|
111511
111515
|
prevIcon: d,
|