y-admin-ui 6.2.5 → 6.2.7
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/style/extension/y-message.scss +1 -1
- package/lib/style/fonts/real/iconfont.ttf +0 -0
- package/lib/style/fonts/real/iconfont.woff +0 -0
- package/lib/style/fonts/real/index.scss +168 -0
- package/lib/style/fonts/solid/iconfont.ttf +0 -0
- package/lib/style/fonts/solid/iconfont.woff +0 -0
- package/lib/style/fonts/solid/index.scss +318 -0
- package/lib/style/index.scss +2 -0
- package/lib/style.css +1 -1
- package/lib/style.css.gz +0 -0
- package/lib/utils/element/message.ts +1 -1
- package/lib/y-admin-ui.js +19 -14
- package/lib/y-admin-ui.js.gz +0 -0
- package/lib/y-admin-ui.umd.cjs +1 -1
- package/package.json +1 -1
package/lib/style.css.gz
CHANGED
|
Binary file
|
package/lib/y-admin-ui.js
CHANGED
|
@@ -1100,11 +1100,11 @@ const lu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1100
1100
|
}, Symbol.toStringTag, { value: "Module" })), ec = [
|
|
1101
1101
|
{
|
|
1102
1102
|
title: "\u7EBF\u6846",
|
|
1103
|
-
icons:
|
|
1103
|
+
icons: Array.from({ length: 100 }, (e, a) => `y-icon-solid y-iconsolid-${a + 1}`)
|
|
1104
1104
|
},
|
|
1105
1105
|
{
|
|
1106
1106
|
title: "\u5B9E\u5FC3",
|
|
1107
|
-
icons:
|
|
1107
|
+
icons: Array.from({ length: 50 }, (e, a) => `y-icon-real y-iconreal-${a + 1}`)
|
|
1108
1108
|
}
|
|
1109
1109
|
];
|
|
1110
1110
|
/*! Element Plus Icons Vue v2.3.2 */
|
|
@@ -6012,14 +6012,17 @@ const kh = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6012
6012
|
type: Boolean,
|
|
6013
6013
|
default: !0
|
|
6014
6014
|
},
|
|
6015
|
-
disabled:
|
|
6015
|
+
disabled: {
|
|
6016
|
+
type: Boolean,
|
|
6017
|
+
default: !1
|
|
6018
|
+
},
|
|
6016
6019
|
clearable: {
|
|
6017
6020
|
type: Boolean,
|
|
6018
6021
|
default: !0
|
|
6019
6022
|
},
|
|
6020
6023
|
theme: {
|
|
6021
6024
|
type: String,
|
|
6022
|
-
default: "
|
|
6025
|
+
default: ""
|
|
6023
6026
|
},
|
|
6024
6027
|
search: {
|
|
6025
6028
|
type: Boolean,
|
|
@@ -6033,7 +6036,7 @@ const kh = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6033
6036
|
emits: ["update:modelValue", "change", "update:visible"],
|
|
6034
6037
|
setup(e, { emit: a }) {
|
|
6035
6038
|
const l = e, t = yl({
|
|
6036
|
-
show: !
|
|
6039
|
+
show: !1,
|
|
6037
6040
|
keywords: "",
|
|
6038
6041
|
listShow: !1,
|
|
6039
6042
|
timer: null
|
|
@@ -6091,7 +6094,7 @@ const kh = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6091
6094
|
}, () => [
|
|
6092
6095
|
l.theme === "style2" ? (m(), pe(h, {
|
|
6093
6096
|
key: 0,
|
|
6094
|
-
value: l.modelValue,
|
|
6097
|
+
"model-value": l.modelValue,
|
|
6095
6098
|
placeholder: l.placeholder,
|
|
6096
6099
|
clearable: l.clearable,
|
|
6097
6100
|
disabled: l.disabled,
|
|
@@ -6101,19 +6104,21 @@ const kh = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6101
6104
|
}, {
|
|
6102
6105
|
append: K(() => [
|
|
6103
6106
|
p("i", {
|
|
6104
|
-
class: ze(l.modelValue)
|
|
6107
|
+
class: ze([l.modelValue, "!text-inherit"])
|
|
6105
6108
|
}, null, 2)
|
|
6106
6109
|
]),
|
|
6107
6110
|
_: 1
|
|
6108
|
-
}, 8, ["value", "placeholder", "clearable", "disabled", "size"])) : l.theme === "style3" ? (m(), pe(h, {
|
|
6111
|
+
}, 8, ["model-value", "placeholder", "clearable", "disabled", "size"])) : l.theme === "style3" ? (m(), pe(h, {
|
|
6109
6112
|
key: 1,
|
|
6113
|
+
"model-value": l.modelValue,
|
|
6110
6114
|
disabled: l.disabled,
|
|
6115
|
+
clearable: l.clearable,
|
|
6111
6116
|
size: l.size,
|
|
6112
6117
|
readonly: !0
|
|
6113
6118
|
}, {
|
|
6114
6119
|
prefix: K(() => [
|
|
6115
6120
|
p("i", {
|
|
6116
|
-
class: ze([l.modelValue, "!ml-[8px] !w-[30px]"])
|
|
6121
|
+
class: ze([l.modelValue, "!ml-[8px] !w-[30px] !text-inherit"])
|
|
6117
6122
|
}, null, 2)
|
|
6118
6123
|
]),
|
|
6119
6124
|
append: K(() => [
|
|
@@ -6125,12 +6130,12 @@ const kh = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6125
6130
|
})
|
|
6126
6131
|
]),
|
|
6127
6132
|
_: 1
|
|
6128
|
-
}, 8, ["disabled", "size"])) : (m(), pe(h, {
|
|
6133
|
+
}, 8, ["model-value", "disabled", "clearable", "size"])) : (m(), pe(h, {
|
|
6129
6134
|
key: 2,
|
|
6130
|
-
value: l.modelValue,
|
|
6135
|
+
"model-value": l.modelValue,
|
|
6131
6136
|
placeholder: l.placeholder,
|
|
6132
|
-
clearable: l.clearable,
|
|
6133
6137
|
disabled: l.disabled,
|
|
6138
|
+
clearable: l.clearable,
|
|
6134
6139
|
size: l.size,
|
|
6135
6140
|
"suffix-icon": ie(un),
|
|
6136
6141
|
onFocus: c,
|
|
@@ -6138,11 +6143,11 @@ const kh = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6138
6143
|
}, {
|
|
6139
6144
|
prefix: K(() => [
|
|
6140
6145
|
p("i", {
|
|
6141
|
-
class: ze([l.modelValue, ""])
|
|
6146
|
+
class: ze([l.modelValue, "!text-inherit"])
|
|
6142
6147
|
}, null, 2)
|
|
6143
6148
|
]),
|
|
6144
6149
|
_: 1
|
|
6145
|
-
}, 8, ["value", "placeholder", "
|
|
6150
|
+
}, 8, ["model-value", "placeholder", "disabled", "clearable", "size", "suffix-icon"]))
|
|
6146
6151
|
])
|
|
6147
6152
|
], 2)
|
|
6148
6153
|
]),
|
package/lib/y-admin-ui.js.gz
CHANGED
|
Binary file
|