sag_components 2.0.0-beta141 → 2.0.0-beta142
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/index.d.ts +4 -1
- package/dist/index.esm.js +450 -45
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +449 -44
- package/dist/index.js.map +1 -1
- package/dist/types/components/Table/CommentModal.d.ts +2 -0
- package/dist/types/components/Table/CommentModal.styles.d.ts +11 -0
- package/dist/types/components/Table/Table.d.ts +4 -2
- package/dist/types/components/Table/Table.stories.d.ts +23 -91
- package/dist/types/components/Table/TableBody.d.ts +31 -2
- package/dist/types/components/Table/TableBody.styles.d.ts +1 -0
- package/dist/types/components/Table/data.d.ts +206 -0
- package/dist/types/icons/CommentIcon.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1496,7 +1496,10 @@ declare function Analytics({ width, height, fill }: {
|
|
|
1496
1496
|
fill?: string;
|
|
1497
1497
|
}): react_jsx_runtime.JSX.Element;
|
|
1498
1498
|
|
|
1499
|
-
declare
|
|
1499
|
+
declare function Table(props: any): react_jsx_runtime.JSX.Element;
|
|
1500
|
+
declare namespace Table {
|
|
1501
|
+
const displayName: string;
|
|
1502
|
+
}
|
|
1500
1503
|
|
|
1501
1504
|
declare function FilterPop(props: any): react_jsx_runtime.JSX.Element;
|
|
1502
1505
|
|