@indico-data/design-system 2.49.0 → 2.51.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.
Files changed (83) hide show
  1. package/lib/components/tanstackTable/TankstackTable.types.d.ts +40 -0
  2. package/lib/components/tanstackTable/TanstackTable.stories.d.ts +15 -0
  3. package/lib/components/tanstackTable/TanstakTable.d.ts +4 -0
  4. package/lib/components/tanstackTable/__tests__/TanstackTable.test.d.ts +1 -0
  5. package/lib/components/tanstackTable/__tests__/__mocks__/test-mock-data.d.ts +8 -0
  6. package/lib/components/tanstackTable/components/ActionBar/ActionBar.d.ts +17 -0
  7. package/lib/components/tanstackTable/components/ActionBar/ActionBar.stories.d.ts +10 -0
  8. package/lib/components/tanstackTable/components/ActionBar/__tests__/ActionBar.test.d.ts +1 -0
  9. package/lib/components/tanstackTable/components/ActionBar/index.d.ts +1 -0
  10. package/lib/components/tanstackTable/components/NoResults/NoResults.d.ts +7 -0
  11. package/lib/components/tanstackTable/components/NoResults/__tests__/NoResult.test.d.ts +1 -0
  12. package/lib/components/tanstackTable/components/NoResults/index.d.ts +1 -0
  13. package/lib/components/tanstackTable/components/TableBody/TableBody.d.ts +12 -0
  14. package/lib/components/tanstackTable/components/TableBody/index.d.ts +1 -0
  15. package/lib/components/tanstackTable/components/TableHeader/TableHeader.d.ts +6 -0
  16. package/lib/components/tanstackTable/components/TableHeader/index.d.ts +1 -0
  17. package/lib/components/tanstackTable/components/TablePagination/TablePagination.d.ts +9 -0
  18. package/lib/components/tanstackTable/components/TablePagination/__tests__/TablePagination.test.d.ts +1 -0
  19. package/lib/components/tanstackTable/components/TablePagination/index.d.ts +1 -0
  20. package/lib/components/tanstackTable/docs/pinnedColumns/PinnedColumn.stories.d.ts +7 -0
  21. package/lib/components/tanstackTable/docs/withRowClick/WithRowClick.stories.d.ts +7 -0
  22. package/lib/components/tanstackTable/helpers.d.ts +830 -0
  23. package/lib/components/tanstackTable/index.d.ts +2 -0
  24. package/lib/components/tanstackTable/mock-data/mock-data.d.ts +14 -0
  25. package/lib/components/tanstackTable/mock-data/table-configuration.d.ts +3 -0
  26. package/lib/components/tanstackTable/useTanstackTable.d.ts +16 -0
  27. package/lib/index.css +407 -80
  28. package/lib/index.d.ts +62 -17
  29. package/lib/index.esm.css +407 -80
  30. package/lib/index.esm.js +20455 -56
  31. package/lib/index.esm.js.map +1 -1
  32. package/lib/index.js +20455 -55
  33. package/lib/index.js.map +1 -1
  34. package/lib/stylesAndAnimations/utilityClasses/UtilityClassesData.d.ts +7 -0
  35. package/lib/stylesAndAnimations/utilityClasses/UtilityClassesTable.d.ts +1 -0
  36. package/lib/stylesAndAnimations/utilityClasses/UtilityClassesTable.stories.d.ts +6 -0
  37. package/package.json +2 -1
  38. package/src/components/tanstackTable/TankstackTable.types.ts +39 -0
  39. package/src/components/tanstackTable/TanstackTable.mdx +122 -0
  40. package/src/components/tanstackTable/TanstackTable.stories.tsx +260 -0
  41. package/src/components/tanstackTable/TanstakTable.tsx +157 -0
  42. package/src/components/tanstackTable/__tests__/TanstackTable.test.tsx +87 -0
  43. package/src/components/tanstackTable/__tests__/__mocks__/test-mock-data.tsx +83 -0
  44. package/src/components/tanstackTable/components/ActionBar/ActionBar.mdx +10 -0
  45. package/src/components/tanstackTable/components/ActionBar/ActionBar.scss +30 -0
  46. package/src/components/tanstackTable/components/ActionBar/ActionBar.stories.tsx +98 -0
  47. package/src/components/tanstackTable/components/ActionBar/ActionBar.tsx +51 -0
  48. package/src/components/tanstackTable/components/ActionBar/__tests__/ActionBar.test.tsx +87 -0
  49. package/src/components/tanstackTable/components/ActionBar/index.ts +1 -0
  50. package/src/components/tanstackTable/components/NoResults/NoResults.scss +24 -0
  51. package/src/components/tanstackTable/components/NoResults/NoResults.tsx +22 -0
  52. package/src/components/tanstackTable/components/NoResults/__tests__/NoResult.test.tsx +25 -0
  53. package/src/components/tanstackTable/components/NoResults/index.ts +1 -0
  54. package/src/components/tanstackTable/components/TableBody/TableBody.tsx +87 -0
  55. package/src/components/tanstackTable/components/TableBody/index.ts +1 -0
  56. package/src/components/tanstackTable/components/TableHeader/TableHeader.tsx +49 -0
  57. package/src/components/tanstackTable/components/TableHeader/index.ts +1 -0
  58. package/src/components/tanstackTable/components/TablePagination/TablePagination.tsx +45 -0
  59. package/src/components/tanstackTable/components/TablePagination/__tests__/TablePagination.test.tsx +18 -0
  60. package/src/components/tanstackTable/components/TablePagination/index.ts +1 -0
  61. package/src/components/tanstackTable/docs/pinnedColumns/PinnedColumn.mdx +34 -0
  62. package/src/components/tanstackTable/docs/pinnedColumns/PinnedColumn.stories.tsx +40 -0
  63. package/src/components/tanstackTable/docs/withRowClick/WithRowClick.mdx +48 -0
  64. package/src/components/tanstackTable/docs/withRowClick/WithRowClick.stories.tsx +32 -0
  65. package/src/components/tanstackTable/helpers.ts +45 -0
  66. package/src/components/tanstackTable/index.ts +2 -0
  67. package/src/components/tanstackTable/mock-data/mock-data.ts +256 -0
  68. package/src/components/tanstackTable/mock-data/table-configuration.tsx +219 -0
  69. package/src/components/tanstackTable/styles/_variables.scss +35 -0
  70. package/src/components/tanstackTable/styles/table.scss +204 -0
  71. package/src/components/tanstackTable/styles/test.scss +19 -0
  72. package/src/components/tanstackTable/tanstack-table.d.ts +18 -0
  73. package/src/components/tanstackTable/useTanstackTable.tsx +42 -0
  74. package/src/index.ts +1 -0
  75. package/src/legacy/components/loading-indicators/CirclePulse/CirclePulse.tsx +1 -0
  76. package/src/storybookDocs/Permafrost.mdx +22 -11
  77. package/src/styles/_borders.scss +2 -1
  78. package/src/styles/index.scss +1 -0
  79. package/src/stylesAndAnimations/borders/BorderColor.tsx +14 -6
  80. package/src/stylesAndAnimations/utilityClasses/UtilityClasses.mdx +24 -0
  81. package/src/stylesAndAnimations/utilityClasses/UtilityClassesData.ts +230 -0
  82. package/src/stylesAndAnimations/utilityClasses/UtilityClassesTable.stories.tsx +13 -0
  83. package/src/stylesAndAnimations/utilityClasses/UtilityClassesTable.tsx +146 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.