@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.
package/dist/cjs/library.css
CHANGED
|
@@ -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/esm/library.css
CHANGED
|
@@ -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;
|