@oc-digital/react-component-library 7.2.3-beta.0 → 7.2.3-beta.10

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 (88) hide show
  1. package/build/Alert/Alert.d.ts +5 -0
  2. package/build/Alert/Alert.types.d.ts +14 -0
  3. package/build/AlphabeticalList/AlphabeticalList.d.ts +5 -0
  4. package/build/AlphabeticalList/AlphabeticalList.types.d.ts +22 -0
  5. package/build/AutoSave/Select/AutoSave.types.d.ts +11 -0
  6. package/build/AutoSave/Select/index.d.ts +4 -0
  7. package/build/AutoSave/Text/AutoSave.types.d.ts +17 -0
  8. package/build/AutoSave/Text/index.d.ts +4 -0
  9. package/build/Breadcrumbs/Breadcrumbs.d.ts +5 -0
  10. package/build/Breadcrumbs/Breadcrumbs.types.d.ts +24 -0
  11. package/build/Button/Button.d.ts +4 -0
  12. package/build/Button/Button.types.d.ts +10 -0
  13. package/build/ButtonWithConfirm/ButtonWithConfirm.d.ts +5 -0
  14. package/build/ButtonWithConfirm/ButtonWithConfirm.types.d.ts +9 -0
  15. package/build/ContentBox/ContentBox.d.ts +5 -0
  16. package/build/ContentBox/ContentBox.types.d.ts +7 -0
  17. package/build/ContentLabel/ContentLabel.d.ts +5 -0
  18. package/build/ContentLabel/ContentLabel.types.d.ts +5 -0
  19. package/build/DatePicker/DatePicker.d.ts +5 -0
  20. package/build/DatePicker/DatePicker.types.d.ts +6 -0
  21. package/build/EditableTable/EditableTable.d.ts +5 -0
  22. package/build/EditableTable/EditableTable.types.d.ts +107 -0
  23. package/build/EditableTable/components/TableCheckbox.d.ts +8 -0
  24. package/build/EditableTable/components/TableDateInput.d.ts +8 -0
  25. package/build/EditableTable/components/TableTextInput.d.ts +21 -0
  26. package/build/EditableTable/components/utils/getTextWidth.d.ts +13 -0
  27. package/build/EditableTable/defaultCells.d.ts +31 -0
  28. package/build/EntityList/EntityList.d.ts +5 -0
  29. package/build/EntityList/EntityList.types.d.ts +15 -0
  30. package/build/ErrorIndicator/ErrorIndicator.d.ts +5 -0
  31. package/build/ErrorIndicator/ErrorIndicator.types.d.ts +5 -0
  32. package/build/ImageDisplayAndUpload/ImageDisplayAndUpload.d.ts +5 -0
  33. package/build/ImageDisplayAndUpload/ImageDisplayAndUpload.types.d.ts +9 -0
  34. package/build/KeyboardDatePicker/KeyboardDatePicker.d.ts +5 -0
  35. package/build/KeyboardDatePicker/KeyboardDatePicker.types.d.ts +6 -0
  36. package/build/LeftNavigation/LeftNavigation.d.ts +5 -0
  37. package/build/LeftNavigation/LeftNavigation.types.d.ts +97 -0
  38. package/build/LeftNavigation/NavListItem.d.ts +5 -0
  39. package/build/LeftNavigation/PrimaryLeftNavigation.d.ts +5 -0
  40. package/build/LeftNavigation/SecondaryLeftNavigation.d.ts +5 -0
  41. package/build/LoadingSpinner/LoadingSpinner.d.ts +5 -0
  42. package/build/LoadingSpinner/LoadingSpinner.types.d.ts +6 -0
  43. package/build/MainLayout/MainLayout.d.ts +5 -0
  44. package/build/MainLayout/MainLayout.types.d.ts +11 -0
  45. package/build/MobileDatePicker/MobileDatePicker.d.ts +5 -0
  46. package/build/MobileDatePicker/MobileDatePicker.types.d.ts +6 -0
  47. package/build/NavbarLayout/Navbar.d.ts +13 -0
  48. package/build/NavbarLayout/NavbarLayout.d.ts +17 -0
  49. package/build/NavbarLayout/index.d.ts +2 -0
  50. package/build/SearchBar/SearchBar.d.ts +5 -0
  51. package/build/SearchBar/SearchBar.types.d.ts +33 -0
  52. package/build/Select/Select.d.ts +5 -0
  53. package/build/Select/Select.types.d.ts +16 -0
  54. package/build/StaticTable/StaticTable.d.ts +5 -0
  55. package/build/StaticTable/StaticTable.types.d.ts +21 -0
  56. package/build/SvgComponents/ContainedPartnersLogo.d.ts +5 -0
  57. package/build/SvgComponents/HomeSvg.d.ts +5 -0
  58. package/build/SvgComponents/NovelLogoSvg.d.ts +5 -0
  59. package/build/SvgComponents/OrganisationList.d.ts +5 -0
  60. package/build/SvgComponents/ProjectsSvg.d.ts +5 -0
  61. package/build/SvgComponents/index.d.ts +5 -0
  62. package/build/SvgComponents/types.d.ts +6 -0
  63. package/build/TextField/TextField.d.ts +16 -0
  64. package/build/TextField/TextField.types.d.ts +8 -0
  65. package/build/Tooltip/OptionalTooltip.d.ts +9 -0
  66. package/build/Tooltip/index.d.ts +1 -0
  67. package/build/globals/index.d.ts +26 -0
  68. package/build/hooks/index.d.ts +3 -0
  69. package/build/hooks/useDebounceEffect.d.ts +2 -0
  70. package/build/hooks/useInterval.d.ts +2 -0
  71. package/build/hooks/useWhyDidYouUpdate.d.ts +1 -0
  72. package/build/index.d.ts +38 -0
  73. package/build/index.js +413 -62833
  74. package/build/index.js.map +1 -1
  75. package/build/stories/Button.d.ts +28 -0
  76. package/build/stories/Button.stories.d.ts +10 -0
  77. package/build/stories/Header.d.ts +12 -0
  78. package/build/stories/Header.stories.d.ts +8 -0
  79. package/build/stories/Page.d.ts +3 -0
  80. package/build/stories/Page.stories.d.ts +8 -0
  81. package/build/styles/colours.d.ts +3 -0
  82. package/build/styles/font.d.ts +1 -0
  83. package/build/styles/index.d.ts +3 -0
  84. package/build/styles/layout.d.ts +1 -0
  85. package/build/styles/spacing.d.ts +1 -0
  86. package/build/styles/themes.d.ts +2 -0
  87. package/build/utils/index.d.ts +6 -0
  88. package/package.json +6 -7

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.