@rafal.lemieszewski/tide-ui 0.46.2 → 0.46.3
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/components/ui/attributes-list.d.ts +6 -0
- package/dist/index.cjs.js +1671 -1671
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +15989 -15955
- package/dist/index.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import { CollapsibleContent } from './collapsible';
|
|
2
2
|
import * as React from "react";
|
|
3
|
+
type AttributesListSize = 'sm' | 'xsm';
|
|
3
4
|
export interface AttributesListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
5
|
+
/**
|
|
6
|
+
* Size variant for the entire attributes list
|
|
7
|
+
* @default "sm"
|
|
8
|
+
*/
|
|
9
|
+
size?: AttributesListSize;
|
|
4
10
|
/**
|
|
5
11
|
* Label for the "View all" button that shows hidden items
|
|
6
12
|
* @default "More details"
|