@nimbus-ds/patterns 1.28.1 → 1.29.0-rc.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/CHANGELOG.md +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/DataList/index.d.ts +5 -0
- package/dist/DataList/index.js +1 -1
- package/dist/InteractiveList/index.d.ts +1 -1
- package/dist/InteractiveList/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -147,6 +147,11 @@ export interface DataListRowProperties {
|
|
|
147
147
|
* @default base
|
|
148
148
|
*/
|
|
149
149
|
padding?: "small" | "base" | "none";
|
|
150
|
+
/**
|
|
151
|
+
* Optional padding bottom for the row.
|
|
152
|
+
* @default base
|
|
153
|
+
*/
|
|
154
|
+
paddingBottom?: "small" | "base" | "none";
|
|
150
155
|
/**
|
|
151
156
|
* Content of the row.
|
|
152
157
|
* @TJS-type React.ReactNode
|
|
@@ -404,7 +409,7 @@ declare const InteractiveListStructure: React.FC<InteractiveListStructureProps>;
|
|
|
404
409
|
export type InteractiveListStructureSkeletonProperties = InteractiveListStructureProperties;
|
|
405
410
|
export type InteractiveListStructureSkeletonProps = InteractiveListStructureSkeletonProperties & Omit<HTMLAttributes<HTMLElement>, "color">;
|
|
406
411
|
declare const InteractiveListStructureSkeleton: React.FC<InteractiveListStructureSkeletonProps>;
|
|
407
|
-
export interface InteractiveListRowProperties extends Omit<BoxProperties, "padding"> {
|
|
412
|
+
export interface InteractiveListRowProperties extends Omit<BoxProperties, "padding" | "paddingBottom"> {
|
|
408
413
|
/**
|
|
409
414
|
* Content of the row.
|
|
410
415
|
* @TJS-type React.ReactNode
|