@tipp/ui 1.0.36 → 1.0.38

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.
Files changed (56) hide show
  1. package/dist/atoms/card.cjs +32 -1
  2. package/dist/atoms/card.cjs.map +1 -1
  3. package/dist/atoms/card.d.cts +11 -1
  4. package/dist/atoms/card.d.ts +11 -1
  5. package/dist/atoms/card.js +1 -1
  6. package/dist/atoms/field-error-wrapper.js +2 -2
  7. package/dist/atoms/index.cjs +94 -80
  8. package/dist/atoms/index.cjs.map +1 -1
  9. package/dist/atoms/index.d.cts +2 -1
  10. package/dist/atoms/index.d.ts +2 -1
  11. package/dist/atoms/index.js +33 -33
  12. package/dist/atoms/pagination.js +2 -2
  13. package/dist/chunk-2WPHYT3E.js +119 -0
  14. package/dist/chunk-2WPHYT3E.js.map +1 -0
  15. package/dist/chunk-34C3EN6V.js +30 -0
  16. package/dist/chunk-34C3EN6V.js.map +1 -0
  17. package/dist/chunk-3R2IB6WJ.js +104 -0
  18. package/dist/chunk-3R2IB6WJ.js.map +1 -0
  19. package/dist/chunk-CHHLIPDN.js +23 -0
  20. package/dist/chunk-CHHLIPDN.js.map +1 -0
  21. package/dist/chunk-L46ZSIX4.js +49 -0
  22. package/dist/chunk-L46ZSIX4.js.map +1 -0
  23. package/dist/chunk-MCCH6NN7.js +28 -0
  24. package/dist/chunk-MCCH6NN7.js.map +1 -0
  25. package/dist/chunk-PMZKJZHU.js +119 -0
  26. package/dist/chunk-PMZKJZHU.js.map +1 -0
  27. package/dist/chunk-PRQ7MDRT.js +119 -0
  28. package/dist/chunk-PRQ7MDRT.js.map +1 -0
  29. package/dist/chunk-QOY42XM2.js +59 -0
  30. package/dist/chunk-QOY42XM2.js.map +1 -0
  31. package/dist/chunk-RDMWH747.js +119 -0
  32. package/dist/chunk-RDMWH747.js.map +1 -0
  33. package/dist/chunk-REALQMTZ.js +117 -0
  34. package/dist/chunk-REALQMTZ.js.map +1 -0
  35. package/dist/chunk-REVQ5LF7.js +29 -0
  36. package/dist/chunk-REVQ5LF7.js.map +1 -0
  37. package/dist/chunk-WXMFYTVG.js +28 -0
  38. package/dist/chunk-WXMFYTVG.js.map +1 -0
  39. package/dist/index.cjs +145 -131
  40. package/dist/index.cjs.map +1 -1
  41. package/dist/index.d.cts +3 -2
  42. package/dist/index.d.ts +3 -2
  43. package/dist/index.js +59 -59
  44. package/dist/molecules/expand-table/index.cjs.map +1 -1
  45. package/dist/molecules/expand-table/index.d.cts +1 -1
  46. package/dist/molecules/expand-table/index.d.ts +1 -1
  47. package/dist/molecules/expand-table/index.js +19 -19
  48. package/dist/molecules/expand-table/row.js +16 -16
  49. package/dist/molecules/index.cjs.map +1 -1
  50. package/dist/molecules/index.d.cts +1 -1
  51. package/dist/molecules/index.d.ts +1 -1
  52. package/dist/molecules/index.js +20 -20
  53. package/dist/molecules/navigation.js +17 -17
  54. package/package.json +1 -1
  55. package/src/atoms/card.tsx +23 -1
  56. package/src/molecules/expand-table/index.tsx +7 -2
@@ -1,4 +1,9 @@
1
- import type { ColumnDef, SortingState, RowData } from '@tanstack/react-table';
1
+ import type {
2
+ ColumnDef,
3
+ SortingState,
4
+ RowData,
5
+ Row as RowType,
6
+ } from '@tanstack/react-table';
2
7
  import type { CSSProperties } from 'react';
3
8
  import {
4
9
  flexRender,
@@ -13,7 +18,7 @@ import { TriangleArrowDownIcon } from '../../icons/down';
13
18
  import { TriangleArrowUpIcon } from '../../icons/up';
14
19
  import { Row, type ExpandComp, type OnRowClick } from './row';
15
20
 
16
- export type { ExpandComp, OnRowClick, ColumnDef };
21
+ export type { ExpandComp, OnRowClick, ColumnDef, RowType as Row };
17
22
  export { createColumnHelper };
18
23
 
19
24
  export interface ExpandTableProps<Datum extends RowData> {