prlg-ui 1.8.323 → 1.8.324
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/prlg-ui.css +1 -1
- package/dist/reka-ui/index.cjs.js +1 -1
- package/dist/reka-ui/index.es.js +4 -3
- package/dist/rekaUI.d.ts +1 -0
- package/package.json +1 -1
package/dist/reka-ui/index.es.js
CHANGED
|
@@ -21195,7 +21195,8 @@ const CS = /* @__PURE__ */ g({
|
|
|
21195
21195
|
file: {},
|
|
21196
21196
|
viewName: { type: Boolean, default: !1 },
|
|
21197
21197
|
outlined: { type: Boolean, default: !0 },
|
|
21198
|
-
removable: { type: Boolean }
|
|
21198
|
+
removable: { type: Boolean },
|
|
21199
|
+
size: { default: "default" }
|
|
21199
21200
|
},
|
|
21200
21201
|
emits: ["remove"],
|
|
21201
21202
|
setup(e, { emit: a }) {
|
|
@@ -21230,7 +21231,7 @@ const CS = /* @__PURE__ */ g({
|
|
|
21230
21231
|
} else
|
|
21231
21232
|
n.value = e.file;
|
|
21232
21233
|
}), (u, c) => (p(), T("div", {
|
|
21233
|
-
class: De(["file", { "file--outlined": u.outlined }])
|
|
21234
|
+
class: De(["file", { "file--outlined": u.outlined }, `file--${u.size}`])
|
|
21234
21235
|
}, [
|
|
21235
21236
|
u.removable && typeof u.file != "string" ? (p(), T("button", {
|
|
21236
21237
|
key: 0,
|
|
@@ -21248,7 +21249,7 @@ const CS = /* @__PURE__ */ g({
|
|
|
21248
21249
|
])) : z("", !0)
|
|
21249
21250
|
], 2));
|
|
21250
21251
|
}
|
|
21251
|
-
}), G1 = /* @__PURE__ */ F(Pw, [["__scopeId", "data-v-
|
|
21252
|
+
}), G1 = /* @__PURE__ */ F(Pw, [["__scopeId", "data-v-72e978eb"]]), kw = /* @__PURE__ */ g({
|
|
21252
21253
|
__name: "Label",
|
|
21253
21254
|
props: {
|
|
21254
21255
|
for: {},
|
package/dist/rekaUI.d.ts
CHANGED