@mc-markets/ui 1.1.60 → 1.1.61
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/components/Select/Select.vue.d.ts.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/packages/components/Select/Select.vue +6 -2
- package/packages/styles/components/dialog.scss +1 -1
package/dist/index.mjs
CHANGED
|
@@ -304,6 +304,11 @@ const Bn = /* @__PURE__ */ Object.assign({
|
|
|
304
304
|
name: "MSelect"
|
|
305
305
|
}, {
|
|
306
306
|
__name: "Select",
|
|
307
|
+
props: {
|
|
308
|
+
styleType: {
|
|
309
|
+
type: String
|
|
310
|
+
}
|
|
311
|
+
},
|
|
307
312
|
setup(e, { expose: t }) {
|
|
308
313
|
const { innerRef: n, exposedProxy: o } = L("selectRef");
|
|
309
314
|
return t(o), (a, l) => {
|
|
@@ -311,7 +316,7 @@ const Bn = /* @__PURE__ */ Object.assign({
|
|
|
311
316
|
return d(), E(s, S({
|
|
312
317
|
ref_key: "selectRef",
|
|
313
318
|
ref: n,
|
|
314
|
-
class: ["m-select", { solid:
|
|
319
|
+
class: ["m-select", { solid: e.styleType === "solid" }],
|
|
315
320
|
"show-arrow": !1
|
|
316
321
|
}, a.$attrs), O({ _: 2 }, [
|
|
317
322
|
M(a.$slots, (r, i) => ({
|