superdesk-ui-framework 2.4.14 → 2.4.18

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 (154) hide show
  1. package/app/index.js +1 -0
  2. package/app/scripts/modals.js +22 -9
  3. package/app/styles/_accessibility.scss +3 -2
  4. package/app/styles/_buttons.scss +17 -0
  5. package/app/styles/_modals.scss +23 -17
  6. package/app/styles/_tooltips.scss +66 -0
  7. package/app/styles/app.scss +1 -0
  8. package/app/styles/components/_sd-toaster.scss +6 -5
  9. package/app/styles/form-elements/_inputs.scss +1 -0
  10. package/app/styles/form-elements/_select-grid.scss +77 -0
  11. package/app/styles/pr-superdesk-theme.scss +3 -1
  12. package/app/styles/primereact/_pr-menu.scss +38 -0
  13. package/app/styles/primereact/_pr-skeleton.scss +35 -0
  14. package/app/styles/variables/_colors.scss +30 -18
  15. package/app-typescript/components/Button.tsx +2 -2
  16. package/app-typescript/components/Dropdown.tsx +0 -1
  17. package/app-typescript/components/DropdownFirst.tsx +2 -2
  18. package/app-typescript/components/IconPicker.tsx +277 -0
  19. package/app-typescript/components/Input.tsx +8 -3
  20. package/app-typescript/components/ListItemLoader.tsx +30 -0
  21. package/app-typescript/components/Menu.tsx +149 -0
  22. package/app-typescript/components/PropsList.tsx +2 -2
  23. package/app-typescript/components/Radio.tsx +19 -10
  24. package/app-typescript/components/Select.tsx +6 -3
  25. package/app-typescript/components/SelectGrid.tsx +233 -0
  26. package/app-typescript/components/SelectWithTemplate.tsx +0 -2
  27. package/app-typescript/components/Skeleton.tsx +48 -0
  28. package/app-typescript/components/Tag.tsx +2 -2
  29. package/app-typescript/components/Toast.tsx +31 -5
  30. package/app-typescript/components/ToastMessage.tsx +9 -16
  31. package/app-typescript/components/ToastText.tsx +2 -4
  32. package/app-typescript/components/ToastWrapper.tsx +4 -4
  33. package/app-typescript/components/Togglebox.tsx +108 -0
  34. package/app-typescript/components/Tooltip.tsx +25 -1
  35. package/app-typescript/index.ts +8 -0
  36. package/dist/components/modals.html +180 -4
  37. package/dist/examples.bundle.css +52 -36
  38. package/dist/examples.bundle.js +5775 -3059
  39. package/dist/playgrounds/react-playgrounds/SamsPlayground.tsx +14 -1
  40. package/dist/react/Alerts.tsx +4 -4
  41. package/dist/react/Autocomplete.tsx +17 -17
  42. package/dist/react/Badges.tsx +4 -4
  43. package/dist/react/BigIconFont.tsx +3 -3
  44. package/dist/react/ButtonGroups.tsx +6 -6
  45. package/dist/react/Buttons.tsx +11 -11
  46. package/dist/react/Carousel.tsx +15 -15
  47. package/dist/react/Checkboxs.tsx +10 -10
  48. package/dist/react/DatePicker.tsx +6 -6
  49. package/dist/react/Dropdowns.tsx +15 -15
  50. package/dist/react/EmptyStates.tsx +4 -4
  51. package/dist/react/GridItem.tsx +8 -8
  52. package/dist/react/GridList.tsx +3 -3
  53. package/dist/react/IconButtons.tsx +3 -3
  54. package/dist/react/IconFont.tsx +10 -9
  55. package/dist/react/IconLabels.tsx +4 -4
  56. package/dist/react/IconPicker.tsx +65 -0
  57. package/dist/react/Index.tsx +27 -2
  58. package/dist/react/Inputs.tsx +29 -11
  59. package/dist/react/Labels.tsx +6 -6
  60. package/dist/react/LeftNavigations.tsx +6 -6
  61. package/dist/react/ListItems.tsx +34 -0
  62. package/dist/react/Menu.tsx +159 -0
  63. package/dist/react/Modal.tsx +9 -9
  64. package/dist/react/NavButtons.tsx +7 -7
  65. package/dist/react/Popover.tsx +5 -5
  66. package/dist/react/Radios.tsx +29 -29
  67. package/dist/react/SelectGrid.tsx +121 -0
  68. package/dist/react/Selects.tsx +31 -9
  69. package/dist/react/Switch.tsx +5 -5
  70. package/dist/react/Tabs.tsx +12 -12
  71. package/dist/react/TimePicker.tsx +4 -4
  72. package/dist/react/Toasts.tsx +44 -56
  73. package/dist/react/Togglebox.tsx +51 -0
  74. package/dist/react/Tooltips.tsx +48 -4
  75. package/dist/superdesk-ui.bundle.css +3774 -96
  76. package/dist/superdesk-ui.bundle.js +4503 -2050
  77. package/dist/vendor.bundle.js +53312 -53308
  78. package/examples/pages/components/modals.html +180 -4
  79. package/examples/pages/playgrounds/react-playgrounds/SamsPlayground.tsx +14 -1
  80. package/examples/pages/react/Alerts.tsx +4 -4
  81. package/examples/pages/react/Autocomplete.tsx +17 -17
  82. package/examples/pages/react/Badges.tsx +4 -4
  83. package/examples/pages/react/BigIconFont.tsx +3 -3
  84. package/examples/pages/react/ButtonGroups.tsx +6 -6
  85. package/examples/pages/react/Buttons.tsx +11 -11
  86. package/examples/pages/react/Carousel.tsx +15 -15
  87. package/examples/pages/react/Checkboxs.tsx +10 -10
  88. package/examples/pages/react/DatePicker.tsx +6 -6
  89. package/examples/pages/react/Dropdowns.tsx +15 -15
  90. package/examples/pages/react/EmptyStates.tsx +4 -4
  91. package/examples/pages/react/GridItem.tsx +8 -8
  92. package/examples/pages/react/GridList.tsx +3 -3
  93. package/examples/pages/react/IconButtons.tsx +3 -3
  94. package/examples/pages/react/IconFont.tsx +10 -9
  95. package/examples/pages/react/IconLabels.tsx +4 -4
  96. package/examples/pages/react/IconPicker.tsx +65 -0
  97. package/examples/pages/react/Index.tsx +27 -2
  98. package/examples/pages/react/Inputs.tsx +29 -11
  99. package/examples/pages/react/Labels.tsx +6 -6
  100. package/examples/pages/react/LeftNavigations.tsx +6 -6
  101. package/examples/pages/react/ListItems.tsx +34 -0
  102. package/examples/pages/react/Menu.tsx +159 -0
  103. package/examples/pages/react/Modal.tsx +9 -9
  104. package/examples/pages/react/NavButtons.tsx +7 -7
  105. package/examples/pages/react/Popover.tsx +5 -5
  106. package/examples/pages/react/Radios.tsx +29 -29
  107. package/examples/pages/react/SelectGrid.tsx +121 -0
  108. package/examples/pages/react/Selects.tsx +31 -9
  109. package/examples/pages/react/Switch.tsx +5 -5
  110. package/examples/pages/react/Tabs.tsx +12 -12
  111. package/examples/pages/react/TimePicker.tsx +4 -4
  112. package/examples/pages/react/Toasts.tsx +44 -56
  113. package/examples/pages/react/Togglebox.tsx +51 -0
  114. package/examples/pages/react/Tooltips.tsx +48 -4
  115. package/package.json +2 -2
  116. package/patches/@superdesk+primereact+5.0.2-4.patch +13 -0
  117. package/react/components/Button.d.ts +1 -1
  118. package/react/components/Button.js +2 -1
  119. package/react/components/Dropdown.js +0 -1
  120. package/react/components/DropdownFirst.js +1 -1
  121. package/react/components/IconPicker.d.ts +24 -0
  122. package/react/components/IconPicker.js +283 -0
  123. package/react/components/Input.d.ts +2 -1
  124. package/react/components/Input.js +4 -1
  125. package/react/components/ListItemLoader.d.ts +4 -0
  126. package/react/components/ListItemLoader.js +62 -0
  127. package/react/components/Menu.d.ts +59 -0
  128. package/react/components/Menu.js +92 -0
  129. package/react/components/PropsList.d.ts +1 -1
  130. package/react/components/PropsList.js +1 -1
  131. package/react/components/Radio.d.ts +8 -7
  132. package/react/components/Radio.js +1 -1
  133. package/react/components/Select.d.ts +2 -1
  134. package/react/components/Select.js +4 -2
  135. package/react/components/SelectGrid.d.ts +45 -0
  136. package/react/components/SelectGrid.js +179 -0
  137. package/react/components/SelectWithTemplate.js +0 -1
  138. package/react/components/Skeleton.d.ts +30 -0
  139. package/react/components/Skeleton.js +55 -0
  140. package/react/components/Tag.js +1 -1
  141. package/react/components/Toast.d.ts +15 -0
  142. package/react/components/Toast.js +69 -0
  143. package/react/components/ToastMessage.d.ts +18 -0
  144. package/react/components/ToastMessage.js +66 -0
  145. package/react/components/ToastText.d.ts +9 -0
  146. package/react/components/ToastText.js +42 -0
  147. package/react/components/ToastWrapper.d.ts +31 -0
  148. package/react/components/ToastWrapper.js +116 -0
  149. package/react/components/Togglebox.d.ts +27 -0
  150. package/react/components/Togglebox.js +76 -0
  151. package/react/components/Tooltip.d.ts +2 -5
  152. package/react/components/Tooltip.js +48 -7
  153. package/react/index.d.ts +7 -0
  154. package/react/index.js +14 -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.