@lumx/react 4.9.0-next.12 → 4.9.0-next.14
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/index.d.ts +7 -7
- package/index.js +779 -730
- package/index.js.map +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -1579,6 +1579,12 @@ interface ComboboxOptionSkeletonProps$1 extends HasClassName {
|
|
|
1579
1579
|
children?: JSXElement;
|
|
1580
1580
|
/** ref to the root <li> element. */
|
|
1581
1581
|
ref?: CommonRef;
|
|
1582
|
+
/**
|
|
1583
|
+
* Number of skeleton `<li>` elements to render.
|
|
1584
|
+
* Each is an independent element with `:nth-child` width cycling applied by SCSS.
|
|
1585
|
+
* @default 1
|
|
1586
|
+
*/
|
|
1587
|
+
count?: number;
|
|
1582
1588
|
}
|
|
1583
1589
|
/**
|
|
1584
1590
|
* Props that React/Vue wrappers need to re-declare with framework-specific types.
|
|
@@ -1596,12 +1602,6 @@ interface ComboboxOptionSkeletonProps extends GenericProps$1, ReactToJSX<Combobo
|
|
|
1596
1602
|
after?: ReactNode;
|
|
1597
1603
|
/** Override the default SkeletonTypography content entirely. */
|
|
1598
1604
|
children?: ReactNode;
|
|
1599
|
-
/**
|
|
1600
|
-
* Number of skeleton `<li>` elements to render.
|
|
1601
|
-
* Each is an independent element with `:nth-child` width cycling applied by SCSS.
|
|
1602
|
-
* @default 1
|
|
1603
|
-
*/
|
|
1604
|
-
count?: number;
|
|
1605
1605
|
}
|
|
1606
1606
|
|
|
1607
1607
|
/**
|
|
@@ -2107,7 +2107,7 @@ declare const Combobox: {
|
|
|
2107
2107
|
};
|
|
2108
2108
|
/** Loading placeholder skeleton(s) that auto-register loading state with the combobox handle. */
|
|
2109
2109
|
OptionSkeleton: {
|
|
2110
|
-
(props: ComboboxOptionSkeletonProps): react_jsx_runtime.JSX.Element
|
|
2110
|
+
(props: ComboboxOptionSkeletonProps): react_jsx_runtime.JSX.Element;
|
|
2111
2111
|
displayName: string;
|
|
2112
2112
|
className: "lumx-combobox-option-skeleton";
|
|
2113
2113
|
};
|