superdesk-ui-framework 3.1.28 → 4.0.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 (90) hide show
  1. package/app-typescript/components/Dropdown.tsx +120 -165
  2. package/app-typescript/components/Layouts/Panel.tsx +3 -2
  3. package/app-typescript/components/Menu.tsx +3 -4
  4. package/app-typescript/components/Modal.tsx +4 -2
  5. package/app-typescript/components/MultiSelect.tsx +3 -2
  6. package/app-typescript/components/Popover.tsx +0 -2
  7. package/app-typescript/components/SelectWithTemplate.tsx +3 -1
  8. package/app-typescript/components/ShowPopup.tsx +9 -5
  9. package/app-typescript/components/SubNav.tsx +5 -6
  10. package/app-typescript/components/TreeMenu.tsx +3 -2
  11. package/app-typescript/components/TreeSelect/TreeSelect.tsx +3 -2
  12. package/app-typescript/components/WithPopover.tsx +0 -2
  13. package/app-typescript/components/_Positioner.tsx +3 -4
  14. package/app-typescript/components/avatar/avatar-group.tsx +0 -3
  15. package/app-typescript/index.ts +1 -0
  16. package/app-typescript/zIndex.tsx +5 -0
  17. package/dist/components/CreateButton.tsx +2 -2
  18. package/dist/components/Dropdowns.tsx +4 -483
  19. package/dist/components/Modal.tsx +0 -12
  20. package/dist/components/MultiSelect.tsx +0 -2
  21. package/dist/components/NavButtons.tsx +4 -4
  22. package/dist/components/Panel.tsx +0 -1
  23. package/dist/components/Popover.tsx +0 -3
  24. package/dist/components/SubNav.tsx +9 -10
  25. package/dist/components/TableList.tsx +1 -1
  26. package/dist/design-patterns/ThreePaneLayoutPattern.tsx +3 -3
  27. package/dist/examples.bundle.js +3110 -3478
  28. package/dist/playgrounds/react-playgrounds/CoreLayout.tsx +2 -3
  29. package/dist/playgrounds/react-playgrounds/EditorTest.tsx +1 -1
  30. package/dist/playgrounds/react-playgrounds/Multiedit.tsx +1 -2
  31. package/dist/playgrounds/react-playgrounds/PageLayoutTest.tsx +1 -1
  32. package/dist/playgrounds/react-playgrounds/PersonalProfile.tsx +2 -2
  33. package/dist/playgrounds/react-playgrounds/Rundowns.tsx +3 -10
  34. package/dist/playgrounds/react-playgrounds/SamsPlayground.tsx +2 -3
  35. package/dist/playgrounds/react-playgrounds/TestGround.tsx +0 -4
  36. package/dist/playgrounds/react-playgrounds/UiPlayground.tsx +2 -3
  37. package/dist/superdesk-ui.bundle.js +2406 -2399
  38. package/dist/vendor.bundle.js +21 -21
  39. package/examples/pages/components/CreateButton.tsx +2 -2
  40. package/examples/pages/components/Dropdowns.tsx +4 -483
  41. package/examples/pages/components/Modal.tsx +0 -12
  42. package/examples/pages/components/MultiSelect.tsx +0 -2
  43. package/examples/pages/components/NavButtons.tsx +4 -4
  44. package/examples/pages/components/Panel.tsx +0 -1
  45. package/examples/pages/components/Popover.tsx +0 -3
  46. package/examples/pages/components/SubNav.tsx +9 -10
  47. package/examples/pages/components/TableList.tsx +1 -1
  48. package/examples/pages/design-patterns/ThreePaneLayoutPattern.tsx +3 -3
  49. package/examples/pages/playgrounds/react-playgrounds/CoreLayout.tsx +2 -3
  50. package/examples/pages/playgrounds/react-playgrounds/EditorTest.tsx +1 -1
  51. package/examples/pages/playgrounds/react-playgrounds/Multiedit.tsx +1 -2
  52. package/examples/pages/playgrounds/react-playgrounds/PageLayoutTest.tsx +1 -1
  53. package/examples/pages/playgrounds/react-playgrounds/PersonalProfile.tsx +2 -2
  54. package/examples/pages/playgrounds/react-playgrounds/Rundowns.tsx +3 -10
  55. package/examples/pages/playgrounds/react-playgrounds/SamsPlayground.tsx +2 -3
  56. package/examples/pages/playgrounds/react-playgrounds/TestGround.tsx +0 -4
  57. package/examples/pages/playgrounds/react-playgrounds/UiPlayground.tsx +2 -3
  58. package/package.json +1 -1
  59. package/react/components/Dropdown.d.ts +1 -3
  60. package/react/components/Dropdown.js +31 -60
  61. package/react/components/Layouts/Panel.d.ts +1 -1
  62. package/react/components/Layouts/Panel.js +5 -2
  63. package/react/components/Menu.d.ts +1 -1
  64. package/react/components/Menu.js +3 -3
  65. package/react/components/Modal.d.ts +1 -1
  66. package/react/components/Modal.js +5 -2
  67. package/react/components/MultiSelect.d.ts +1 -1
  68. package/react/components/MultiSelect.js +3 -1
  69. package/react/components/Popover.d.ts +0 -1
  70. package/react/components/Popover.js +1 -1
  71. package/react/components/SelectWithTemplate.d.ts +3 -0
  72. package/react/components/SelectWithTemplate.js +3 -0
  73. package/react/components/ShowPopup.d.ts +20 -1
  74. package/react/components/ShowPopup.js +12 -5
  75. package/react/components/SubNav.d.ts +0 -1
  76. package/react/components/SubNav.js +1 -4
  77. package/react/components/TreeMenu.d.ts +1 -1
  78. package/react/components/TreeMenu.js +3 -1
  79. package/react/components/TreeSelect/TreeSelect.d.ts +1 -1
  80. package/react/components/TreeSelect/TreeSelect.js +3 -1
  81. package/react/components/WithPopover.d.ts +0 -1
  82. package/react/components/WithPopover.js +1 -1
  83. package/react/components/_Positioner.d.ts +0 -1
  84. package/react/components/_Positioner.js +3 -3
  85. package/react/components/avatar/avatar-group.d.ts +0 -1
  86. package/react/components/avatar/avatar-group.js +2 -3
  87. package/react/index.d.ts +1 -0
  88. package/react/index.js +4 -1
  89. package/react/zIndex.d.ts +2 -0
  90. package/react/zIndex.js +8 -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.