@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/es/card-list/index.d.ts
CHANGED
|
@@ -61,8 +61,7 @@ export default defineComponent({
|
|
|
61
61
|
return (h("div", { class: `${mergedClsPrefix}-card-list-item`, onClick: isDropdown && items.length ? this.toggle : undefined, ref: "selfRef" },
|
|
62
62
|
isDropdown && (h("div", { class: `${mergedClsPrefix}-card-list-item__wrapper` },
|
|
63
63
|
h("div", { class: `${mergedClsPrefix}-card-list-item__wrapper-content` },
|
|
64
|
-
this.title && (h("div", { class: `${mergedClsPrefix}-card-list-item__title` },
|
|
65
|
-
h("strong", null, this.title))),
|
|
64
|
+
this.title && (h("div", { class: `${mergedClsPrefix}-card-list-item__title` }, this.title)),
|
|
66
65
|
this.subtitle && (h("div", { class: `${mergedClsPrefix}-card-list-item__subtitle` }, this.subtitle))),
|
|
67
66
|
h(ChevronDown, { style: {
|
|
68
67
|
width: '20px',
|
|
@@ -79,8 +78,7 @@ export default defineComponent({
|
|
|
79
78
|
`${mergedClsPrefix}-card-list-item__items--grid`
|
|
80
79
|
] }, items.map((item, idx) => [
|
|
81
80
|
h("div", { class: `${mergedClsPrefix}-card-list-item__item`, key: idx },
|
|
82
|
-
item.title && (h("div", { class: `${mergedClsPrefix}-card-list-item__title` },
|
|
83
|
-
h("strong", null, item.title))),
|
|
81
|
+
item.title && (h("div", { class: `${mergedClsPrefix}-card-list-item__title` }, item.title)),
|
|
84
82
|
item.content && (h("div", { class: `${mergedClsPrefix}-card-list-item__subtitle` }, item.content))),
|
|
85
83
|
idx < items.length - 1 &&
|
|
86
84
|
(this.renderDivider
|
|
@@ -104,8 +102,7 @@ export default defineComponent({
|
|
|
104
102
|
e.stopPropagation();
|
|
105
103
|
} }, items.map((item, idx) => (h("li", { key: idx },
|
|
106
104
|
h("div", { class: `${mergedClsPrefix}-card-list-item__dropdown-item` },
|
|
107
|
-
item.title && (h("div", { class: `${mergedClsPrefix}-card-list-item__title` },
|
|
108
|
-
h("strong", null, item.title))),
|
|
105
|
+
item.title && (h("div", { class: `${mergedClsPrefix}-card-list-item__title` }, item.title)),
|
|
109
106
|
item.content && (h("div", { class: `${mergedClsPrefix}-card-list-item__subtitle` }, item.content)))))))) : null, (_b = (_a = this.$slots).default) === null || _b === void 0 ? void 0 :
|
|
110
107
|
_b.call(_a)));
|
|
111
108
|
}
|
package/es/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "1.4.
|
|
1
|
+
declare const _default: "1.4.1";
|
|
2
2
|
export default _default;
|
package/es/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '1.4.
|
|
1
|
+
export default '1.4.1';
|
package/lib/card-list/index.d.ts
CHANGED
|
@@ -66,8 +66,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
66
66
|
return ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item`, onClick: isDropdown && items.length ? this.toggle : undefined, ref: "selfRef" },
|
|
67
67
|
isDropdown && ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item__wrapper` },
|
|
68
68
|
(0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item__wrapper-content` },
|
|
69
|
-
this.title && ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item__title` },
|
|
70
|
-
(0, vue_1.h)("strong", null, this.title))),
|
|
69
|
+
this.title && ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item__title` }, this.title)),
|
|
71
70
|
this.subtitle && ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item__subtitle` }, this.subtitle))),
|
|
72
71
|
(0, vue_1.h)(ChevronDown_1.default, { style: {
|
|
73
72
|
width: '20px',
|
|
@@ -84,8 +83,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
84
83
|
`${mergedClsPrefix}-card-list-item__items--grid`
|
|
85
84
|
] }, items.map((item, idx) => [
|
|
86
85
|
(0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item__item`, key: idx },
|
|
87
|
-
item.title && ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item__title` },
|
|
88
|
-
(0, vue_1.h)("strong", null, item.title))),
|
|
86
|
+
item.title && ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item__title` }, item.title)),
|
|
89
87
|
item.content && ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item__subtitle` }, item.content))),
|
|
90
88
|
idx < items.length - 1 &&
|
|
91
89
|
(this.renderDivider
|
|
@@ -109,8 +107,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
109
107
|
e.stopPropagation();
|
|
110
108
|
} }, items.map((item, idx) => ((0, vue_1.h)("li", { key: idx },
|
|
111
109
|
(0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item__dropdown-item` },
|
|
112
|
-
item.title && ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item__title` },
|
|
113
|
-
(0, vue_1.h)("strong", null, item.title))),
|
|
110
|
+
item.title && ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item__title` }, item.title)),
|
|
114
111
|
item.content && ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-card-list-item__subtitle` }, item.content)))))))) : null, (_b = (_a = this.$slots).default) === null || _b === void 0 ? void 0 :
|
|
115
112
|
_b.call(_a)));
|
|
116
113
|
}
|
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "1.4.
|
|
1
|
+
declare const _default: "1.4.1";
|
|
2
2
|
export default _default;
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
package/web-types.json
CHANGED