@uzum-tech/ui 1.4.0 → 1.4.1
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/index.js +4 -4
- package/dist/index.prod.js +2 -2
- package/es/card-list/index.d.ts +1 -0
- package/es/card-list/src/CardListItem.js +3 -6
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/card-list/index.d.ts +1 -0
- package/lib/card-list/src/CardListItem.js +3 -6
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +1 -1
package/dist/index.js
CHANGED
|
@@ -52727,7 +52727,7 @@
|
|
|
52727
52727
|
onClick: isDropdown && items.length ? this.toggle : void 0,
|
|
52728
52728
|
ref: "selfRef"
|
|
52729
52729
|
},
|
|
52730
|
-
isDropdown && /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__wrapper` }, /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__wrapper-content` }, this.title && /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__title` },
|
|
52730
|
+
isDropdown && /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__wrapper` }, /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__wrapper-content` }, this.title && /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__title` }, this.title), this.subtitle && /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__subtitle` }, this.subtitle)), /* @__PURE__ */ vue.h(
|
|
52731
52731
|
ChevronDownIcon,
|
|
52732
52732
|
{
|
|
52733
52733
|
style: {
|
|
@@ -52750,7 +52750,7 @@
|
|
|
52750
52750
|
]
|
|
52751
52751
|
},
|
|
52752
52752
|
items.map((item, idx) => [
|
|
52753
|
-
/* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__item`, key: idx }, item.title && /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__title` },
|
|
52753
|
+
/* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__item`, key: idx }, item.title && /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__title` }, item.title), item.content && /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__subtitle` }, item.content)),
|
|
52754
52754
|
idx < items.length - 1 && (this.renderDivider ? this.renderDivider({
|
|
52755
52755
|
index: idx,
|
|
52756
52756
|
count: items.length,
|
|
@@ -52774,7 +52774,7 @@
|
|
|
52774
52774
|
e.stopPropagation();
|
|
52775
52775
|
}
|
|
52776
52776
|
},
|
|
52777
|
-
items.map((item, idx) => /* @__PURE__ */ vue.h("li", { key: idx }, /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__dropdown-item` }, item.title && /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__title` },
|
|
52777
|
+
items.map((item, idx) => /* @__PURE__ */ vue.h("li", { key: idx }, /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__dropdown-item` }, item.title && /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__title` }, item.title), item.content && /* @__PURE__ */ vue.h("div", { class: `${mergedClsPrefix}-card-list-item__subtitle` }, item.content))))
|
|
52778
52778
|
) : null,
|
|
52779
52779
|
this.$slots.default?.()
|
|
52780
52780
|
);
|
|
@@ -125401,7 +125401,7 @@
|
|
|
125401
125401
|
watermarkProps: watermarkProps
|
|
125402
125402
|
});
|
|
125403
125403
|
|
|
125404
|
-
var version = "1.4.
|
|
125404
|
+
var version = "1.4.1";
|
|
125405
125405
|
|
|
125406
125406
|
function create({
|
|
125407
125407
|
componentPrefix = "U",
|