@nimbus-ds/patterns 1.29.0 → 1.30.0
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
|
|
@@ -453,7 +458,7 @@ declare const InteractiveListStructure: React.FC<InteractiveListStructureProps>;
|
|
|
453
458
|
export type InteractiveListStructureSkeletonProperties = InteractiveListStructureProperties;
|
|
454
459
|
export type InteractiveListStructureSkeletonProps = InteractiveListStructureSkeletonProperties & Omit<HTMLAttributes<HTMLElement>, "color">;
|
|
455
460
|
declare const InteractiveListStructureSkeleton: React.FC<InteractiveListStructureSkeletonProps>;
|
|
456
|
-
export interface InteractiveListRowProperties extends Omit<BoxProperties, "padding"> {
|
|
461
|
+
export interface InteractiveListRowProperties extends Omit<BoxProperties, "padding" | "paddingBottom"> {
|
|
457
462
|
/**
|
|
458
463
|
* Content of the row.
|
|
459
464
|
* @TJS-type React.ReactNode
|