@delightui/components 0.1.119 → 0.1.121

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.
@@ -7,7 +7,7 @@ export type ListAlignEnum = 'Horizontal' | 'Vertical';
7
7
  /**
8
8
  * Represents a generic list item.
9
9
  */
10
- export type ListItemType = {
10
+ export type ListItemType = object & {
11
11
  id?: string | number;
12
12
  itemClassName?: string;
13
13
  itemStyle?: React.CSSProperties;
@@ -1395,7 +1395,9 @@
1395
1395
  padding-right: var(--accordion-summary-padding-right);
1396
1396
  font-weight: var(--accordion-summary-font-weight);
1397
1397
  font-size: var(--accordion-summary-font-size);
1398
+ line-height: var(--accordion-summary-line-height);
1398
1399
  font-family: var(--accordion-summary-font-family);
1400
+ color: var(--accordion-summary-color);
1399
1401
  background-color: var(--accordion-summary-background-color);
1400
1402
  border-top-width: var(--accordion-summary-border-top-width);
1401
1403
  border-left-width: var(--accordion-summary-border-left-width);
@@ -7,7 +7,7 @@ export type ListAlignEnum = 'Horizontal' | 'Vertical';
7
7
  /**
8
8
  * Represents a generic list item.
9
9
  */
10
- export type ListItemType = {
10
+ export type ListItemType = object & {
11
11
  id?: string | number;
12
12
  itemClassName?: string;
13
13
  itemStyle?: React.CSSProperties;
@@ -1395,7 +1395,9 @@
1395
1395
  padding-right: var(--accordion-summary-padding-right);
1396
1396
  font-weight: var(--accordion-summary-font-weight);
1397
1397
  font-size: var(--accordion-summary-font-size);
1398
+ line-height: var(--accordion-summary-line-height);
1398
1399
  font-family: var(--accordion-summary-font-family);
1400
+ color: var(--accordion-summary-color);
1399
1401
  background-color: var(--accordion-summary-background-color);
1400
1402
  border-top-width: var(--accordion-summary-border-top-width);
1401
1403
  border-left-width: var(--accordion-summary-border-left-width);
package/dist/index.d.ts CHANGED
@@ -1173,7 +1173,7 @@ type ListAlignEnum = 'Horizontal' | 'Vertical';
1173
1173
  /**
1174
1174
  * Represents a generic list item.
1175
1175
  */
1176
- type ListItemType = {
1176
+ type ListItemType = object & {
1177
1177
  id?: string | number;
1178
1178
  itemClassName?: string;
1179
1179
  itemStyle?: React.CSSProperties;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delightui/components",
3
- "version": "0.1.119",
3
+ "version": "0.1.121",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "vite",