jamespot-react-components 1.0.2 → 1.0.16

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 (91) hide show
  1. package/.storybook/StorybookContainer/StorybookContainer.css +1 -0
  2. package/babel.config.js +0 -1
  3. package/build/jamespot-react-components.js +254 -235
  4. package/build/jamespot-react-components.js.LICENSE.txt +19 -13
  5. package/build/jamespot-react-components.js.map +1 -1
  6. package/build/src/components/Common/JRCConditionalWrapper.d.ts +4 -4
  7. package/build/src/components/Form/Input/JRCInputCheckbox/JRCInputCheckbox.d.ts +5 -2
  8. package/build/src/components/Form/Input/JRCInputDate/JRCInputDate.d.ts +11 -0
  9. package/build/src/components/Form/Input/JRCInputDate/JRCInputDate.stories.d.ts +5 -0
  10. package/build/src/components/Form/Input/JRCInputText/JRCInputText.d.ts +1 -1
  11. package/build/src/components/Form/Input/JRCInputTextarea/JRCInputTextarea.d.ts +15 -0
  12. package/build/src/components/Form/Input/JRCInputTextarea/JRCInputTextarea.stories.d.ts +5 -0
  13. package/build/src/components/JRCAppContainer/JRCAppContainer.d.ts +1 -0
  14. package/build/src/components/JRCButton/JRCButton.d.ts +25 -0
  15. package/build/src/components/JRCButton/JRCButtonConfig.d.ts +1 -2
  16. package/build/src/components/JRCEllipsis/JRCEllipsis.d.ts +5 -0
  17. package/build/src/components/JRCEllipsis/JRCEllipsis.stories.d.ts +5 -0
  18. package/build/src/components/JRCHref/JRCHref.d.ts +18 -10
  19. package/build/src/components/JRCImg/url.util.d.ts +3 -3
  20. package/build/src/components/JRCList/JRCList.d.ts +2 -0
  21. package/build/src/components/JRCModal/JRCModal.d.ts +5 -1
  22. package/build/src/components/JRCModal/JRCModal.styles.d.ts +0 -1
  23. package/build/src/components/JRCTag/JRCTag.d.ts +2 -0
  24. package/build/src/components/Templates/JRCBase.template.d.ts +9 -0
  25. package/build/src/components/Templates/JRCTemplate.stories.d.ts +13 -0
  26. package/build/src/components/Templates/JRCTwoColumns.template.d.ts +7 -0
  27. package/build/src/hooks/UseDidMountEffect.d.ts +1 -2
  28. package/build/src/index.d.ts +11 -8
  29. package/build/src/styles/theme.d.ts +4 -1
  30. package/build/src/types.d.ts +6 -2
  31. package/externals.d.ts +0 -1
  32. package/externals.json +3 -1
  33. package/package.json +4 -4
  34. package/src/components/Common/JRCConditionalWrapper.tsx +6 -13
  35. package/src/components/Form/Input/JRCFormColor/JRCFormColor.tsx +12 -12
  36. package/src/components/Form/Input/JRCFormEmail/JRCInputEmail.tsx +4 -8
  37. package/src/components/Form/Input/JRCFormSelect/JRCFormSelect.tsx +5 -1
  38. package/src/components/Form/Input/JRCFormSelect/JRCFormSelectTag.tsx +3 -1
  39. package/src/components/Form/Input/JRCInputCheckbox/JRCInputCheckbox.stories.tsx +1 -4
  40. package/src/components/Form/Input/JRCInputCheckbox/JRCInputCheckbox.tsx +12 -10
  41. package/src/components/Form/Input/JRCInputDate/JRCInputDate.stories.tsx +50 -0
  42. package/src/components/Form/Input/JRCInputDate/JRCInputDate.tsx +26 -0
  43. package/src/components/Form/Input/JRCInputText/JRCInputText.tsx +2 -2
  44. package/src/components/Form/Input/JRCInputTextarea/JRCInputTextarea.stories.tsx +52 -0
  45. package/src/components/Form/Input/JRCInputTextarea/JRCInputTextarea.tsx +36 -0
  46. package/src/components/Form/Input/JRCSelect/JRCInputSelect.tsx +1 -1
  47. package/src/components/JRCAppContainer/JRCAppContainer.tsx +6 -2
  48. package/src/components/JRCAppLeftColumn/JRCAppLeftColumn.styles.tsx +2 -1
  49. package/src/components/JRCAvatar/JRCAvatar.test.tsx +10 -6
  50. package/src/components/JRCAvatar/JRCAvatar.tsx +1 -0
  51. package/src/components/JRCButton/JRCButton.stories.tsx +1 -1
  52. package/src/components/JRCButton/JRCButton.tsx +9 -3
  53. package/src/components/JRCButton/JRCButtonConfig.tsx +1 -1
  54. package/src/components/JRCButton/JRCValidationButton.tsx +10 -4
  55. package/src/components/JRCButton/__snapshots__/JRCButton.test.tsx.snap +1 -2
  56. package/src/components/JRCButtonDropdown/JRCButtonDropdown.tsx +2 -2
  57. package/src/components/JRCEllipsis/JRCEllipsis.stories.tsx +18 -0
  58. package/src/components/JRCEllipsis/JRCEllipsis.tsx +22 -0
  59. package/src/components/JRCHref/JRCHref.stories.tsx +2 -0
  60. package/src/components/JRCHref/JRCHref.tsx +42 -15
  61. package/src/components/JRCIcon/JRCIcon.tsx +1 -1
  62. package/src/components/JRCIconButton/JRCIconButton.tsx +1 -4
  63. package/src/components/JRCImg/JRCImg.tsx +4 -2
  64. package/src/components/JRCImg/url.util.ts +7 -6
  65. package/src/components/JRCImg/url.utils.test.ts +7 -1
  66. package/src/components/JRCList/JRCList.styles.tsx +16 -2
  67. package/src/components/JRCList/JRCList.tsx +5 -5
  68. package/src/components/JRCList/JRCListMockData.stories.tsx +1 -1
  69. package/src/components/JRCModal/JRCModal.styles.tsx +0 -6
  70. package/src/components/JRCModal/JRCModal.tsx +75 -61
  71. package/src/components/JRCTag/JRCTag.tsx +29 -9
  72. package/src/components/JRCThemeProvider/animation.css +19 -0
  73. package/src/components/JRCThemeProvider/font.css +1 -1
  74. package/src/components/JRCThemeProvider/gabarit.css +4 -0
  75. package/src/components/JRCTooltip/JRCTooltip.tsx +5 -2
  76. package/src/components/JRCTypography/__snapshots__/JRCTypography.test.tsx.snap +1 -1
  77. package/src/components/Templates/JRCBase.template.tsx +39 -0
  78. package/src/components/Templates/JRCTemplate.stories.tsx +55 -0
  79. package/src/components/Templates/JRCTwoColumns.template.tsx +20 -0
  80. package/src/hooks/UseDidMountEffect.tsx +1 -3
  81. package/src/index.tsx +17 -10
  82. package/src/styles/theme.tsx +12 -6
  83. package/src/translation/lang.json +3 -2
  84. package/src/types.ts +8 -2
  85. package/build/src/components/Form/Input/JRCFormTextEditor/JRCFormTextEditor.d.ts +0 -10
  86. package/build/src/components/Form/Input/JRCFormTextEditor/JRCFormTextEditor.stories.d.ts +0 -5
  87. package/build/src/components/JRCColumnCenterTitle/JRCColumnCenterTitle.d.ts +0 -12
  88. package/src/components/Form/Input/JRCFormTextEditor/JRCFormTextEditor.stories.tsx +0 -30
  89. package/src/components/Form/Input/JRCFormTextEditor/JRCFormTextEditor.tsx +0 -36
  90. package/src/components/JRCColumnCenterTitle/JRCColumnCenterTitle.tsx +0 -26
  91. package/src/variables.scss +0 -67

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.