ling-yun-custom-components 0.0.35 → 0.0.37
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/es/BuildComponents.mjs +104 -69
- package/es/IconRenderer.mjs +62 -13
- package/es/IconSelect.mjs +15 -15
- package/es/PageNotFound.mjs +42 -0
- package/es/SearchBar.mjs +1 -1
- package/es/UpdatePasswordDialog.mjs +1 -1
- package/es/assets/layout3.css +1 -1
- package/es/chunks/global.BoqYDmws.js +8387 -0
- package/es/chunks/global.CukegTf7.js +15878 -0
- package/es/chunks/global.DBatr4rf.js +15746 -0
- package/es/chunks/layout.C9yoozRN.js +592 -0
- package/es/index.mjs +49 -44
- package/lib/BuildComponents.js +1 -1
- package/lib/IconRenderer.js +1 -1
- package/lib/IconSelect.js +1 -1
- package/lib/PageNotFound.js +1 -0
- package/lib/SearchBar.js +1 -1
- package/lib/UpdatePasswordDialog.js +1 -1
- package/lib/assets/layout3.css +1 -1
- package/lib/chunks/global.BNCddmRI.js +1 -0
- package/lib/chunks/global.DUq6tY9B.js +1 -0
- package/lib/chunks/global.f4aUhDyq.js +1 -0
- package/lib/chunks/layout.D0p4CwoO.js +1 -0
- package/lib/index.js +1 -1
- package/package.json +5 -4
package/es/index.mjs
CHANGED
|
@@ -3,79 +3,84 @@ import { SearchBar as e } from "./SearchBar.mjs";
|
|
|
3
3
|
import { PaginationTable as i } from "./PaginationTable.mjs";
|
|
4
4
|
import { UploadFile as p } from "./UploadFile.mjs";
|
|
5
5
|
import { FileList as n } from "./FileList.mjs";
|
|
6
|
-
import { BatchImport as
|
|
7
|
-
import { GradientButton as
|
|
6
|
+
import { BatchImport as a } from "./BatchImport.mjs";
|
|
7
|
+
import { GradientButton as f } from "./GradientButton.mjs";
|
|
8
8
|
import { CustomDialog as l } from "./CustomDialog.mjs";
|
|
9
9
|
import { CustomPagination as s } from "./CustomPagination.mjs";
|
|
10
10
|
import { CustomTitle as c } from "./CustomTitle.mjs";
|
|
11
11
|
import { CustomDropdown as S } from "./CustomDropdown.mjs";
|
|
12
12
|
import { TreeSelect as u } from "./TreeSelect.mjs";
|
|
13
|
-
import { TreeShowSelect as
|
|
14
|
-
import { IconEmpty as
|
|
15
|
-
import { IconRenderer as I } from "./IconRenderer.mjs";
|
|
16
|
-
import { IconSelect as
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
13
|
+
import { TreeShowSelect as d } from "./TreeShowSelect.mjs";
|
|
14
|
+
import { IconEmpty as T } from "./IconEmpty.mjs";
|
|
15
|
+
import { IconRenderer as I, iconLibraryMap as _ } from "./IconRenderer.mjs";
|
|
16
|
+
import { IconSelect as B } from "./IconSelect.mjs";
|
|
17
|
+
import { PageNotFound as L } from "./PageNotFound.mjs";
|
|
18
|
+
import { UpdatePasswordDialog as P } from "./UpdatePasswordDialog.mjs";
|
|
19
|
+
import { BUILD_BIG_TITLES as g, BUILD_STEPS as C, BUILD_TITLES as D, BUILD_TYPES as E, BuildComponents as b, STEP_ARROW_IMAGE as U } from "./BuildComponents.mjs";
|
|
20
|
+
import { CustomTab as y } from "./CustomTab.mjs";
|
|
21
|
+
import { dayjs as w } from "element-plus";
|
|
21
22
|
const o = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22
23
|
__proto__: null,
|
|
23
|
-
BUILD_BIG_TITLES:
|
|
24
|
-
BUILD_STEPS:
|
|
25
|
-
BUILD_TITLES:
|
|
26
|
-
BUILD_TYPES:
|
|
27
|
-
BatchImport:
|
|
28
|
-
BuildComponents:
|
|
24
|
+
BUILD_BIG_TITLES: g,
|
|
25
|
+
BUILD_STEPS: C,
|
|
26
|
+
BUILD_TITLES: D,
|
|
27
|
+
BUILD_TYPES: E,
|
|
28
|
+
BatchImport: a,
|
|
29
|
+
BuildComponents: b,
|
|
29
30
|
CustomDialog: l,
|
|
30
31
|
CustomDropdown: S,
|
|
31
32
|
CustomPagination: s,
|
|
32
33
|
CustomSelect: m,
|
|
33
|
-
CustomTab:
|
|
34
|
+
CustomTab: y,
|
|
34
35
|
CustomTitle: c,
|
|
35
36
|
FileList: n,
|
|
36
|
-
GradientButton:
|
|
37
|
-
IconEmpty:
|
|
37
|
+
GradientButton: f,
|
|
38
|
+
IconEmpty: T,
|
|
38
39
|
IconRenderer: I,
|
|
39
|
-
IconSelect:
|
|
40
|
+
IconSelect: B,
|
|
41
|
+
PageNotFound: L,
|
|
40
42
|
PaginationTable: i,
|
|
41
|
-
STEP_ARROW_IMAGE:
|
|
43
|
+
STEP_ARROW_IMAGE: U,
|
|
42
44
|
SearchBar: e,
|
|
43
45
|
TreeSelect: u,
|
|
44
|
-
TreeShowSelect:
|
|
45
|
-
UpdatePasswordDialog:
|
|
46
|
-
UploadFile: p
|
|
46
|
+
TreeShowSelect: d,
|
|
47
|
+
UpdatePasswordDialog: P,
|
|
48
|
+
UploadFile: p,
|
|
49
|
+
iconLibraryMap: _
|
|
47
50
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
48
|
-
|
|
49
|
-
const
|
|
50
|
-
for (const
|
|
51
|
-
o[
|
|
52
|
-
},
|
|
53
|
-
install:
|
|
51
|
+
w.en.weekStart = 1;
|
|
52
|
+
const h = (t) => {
|
|
53
|
+
for (const r in o)
|
|
54
|
+
o[r].install && t.use(o[r]);
|
|
55
|
+
}, Z = {
|
|
56
|
+
install: h
|
|
54
57
|
};
|
|
55
58
|
export {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
59
|
+
g as BUILD_BIG_TITLES,
|
|
60
|
+
C as BUILD_STEPS,
|
|
61
|
+
D as BUILD_TITLES,
|
|
62
|
+
E as BUILD_TYPES,
|
|
63
|
+
a as BatchImport,
|
|
64
|
+
b as BuildComponents,
|
|
62
65
|
l as CustomDialog,
|
|
63
66
|
S as CustomDropdown,
|
|
64
67
|
s as CustomPagination,
|
|
65
68
|
m as CustomSelect,
|
|
66
|
-
|
|
69
|
+
y as CustomTab,
|
|
67
70
|
c as CustomTitle,
|
|
68
71
|
n as FileList,
|
|
69
|
-
|
|
70
|
-
|
|
72
|
+
f as GradientButton,
|
|
73
|
+
T as IconEmpty,
|
|
71
74
|
I as IconRenderer,
|
|
72
|
-
|
|
75
|
+
B as IconSelect,
|
|
76
|
+
L as PageNotFound,
|
|
73
77
|
i as PaginationTable,
|
|
74
|
-
|
|
78
|
+
U as STEP_ARROW_IMAGE,
|
|
75
79
|
e as SearchBar,
|
|
76
80
|
u as TreeSelect,
|
|
77
|
-
|
|
78
|
-
|
|
81
|
+
d as TreeShowSelect,
|
|
82
|
+
P as UpdatePasswordDialog,
|
|
79
83
|
p as UploadFile,
|
|
80
|
-
|
|
84
|
+
Z as default,
|
|
85
|
+
_ as iconLibraryMap
|
|
81
86
|
};
|