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