@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.
@@ -1,2 +1,3 @@
1
1
  export { default as UCardList, cardListProps } from './src/CardList';
2
2
  export type { CardListProps } from './src/CardList';
3
+ export type { ListItemOptions } from './src/interface';
@@ -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.0";
1
+ declare const _default: "1.4.1";
2
2
  export default _default;
package/es/version.js CHANGED
@@ -1 +1 @@
1
- export default '1.4.0';
1
+ export default '1.4.1';
@@ -1,2 +1,3 @@
1
1
  export { default as UCardList, cardListProps } from './src/CardList';
2
2
  export type { CardListProps } from './src/CardList';
3
+ export type { ListItemOptions } from './src/interface';
@@ -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.0";
1
+ declare const _default: "1.4.1";
2
2
  export default _default;
package/lib/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '1.4.0';
3
+ exports.default = '1.4.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uzum-tech/ui",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
package/web-types.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "framework": "vue",
4
4
  "name": "@uzum-tech/ui",
5
- "version": "1.4.0",
5
+ "version": "1.4.1",
6
6
  "js-types-syntax": "typescript",
7
7
  "contributions": {
8
8
  "html": {