@gravity-ui/page-constructor 5.13.0 → 5.14.1

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 (80) hide show
  1. package/build/cjs/blocks/Questions/QuestionBlockItem/QuestionBlockItem.css +1 -0
  2. package/build/cjs/editor/components/AddBlock/AddBlock.css +1 -2
  3. package/build/cjs/editor/components/CodeEditor/CodeEditor.css +3 -1
  4. package/build/cjs/editor/components/ControlPanel/ControlPanel.css +2 -4
  5. package/build/cjs/editor/components/ControlPanel/ControlPanel.d.ts +4 -2
  6. package/build/cjs/editor/components/ControlPanel/ControlPanel.js +24 -15
  7. package/build/cjs/editor/components/ControlPanel/i18n/en.json +2 -1
  8. package/build/cjs/editor/components/ControlPanel/i18n/index.d.ts +1 -1
  9. package/build/cjs/editor/components/ControlPanel/i18n/ru.json +2 -1
  10. package/build/cjs/editor/components/Layout/Layout.css +10 -6
  11. package/build/cjs/editor/components/Layout/Layout.d.ts +4 -7
  12. package/build/cjs/editor/components/Layout/Layout.js +8 -10
  13. package/build/cjs/editor/components/PageSettings/PageSettings.css +26 -0
  14. package/build/cjs/editor/components/PageSettings/PageSettings.d.ts +11 -0
  15. package/build/cjs/editor/components/PageSettings/PageSettings.js +30 -0
  16. package/build/cjs/editor/components/PageSettings/i18n/en.json +3 -0
  17. package/build/cjs/editor/components/PageSettings/i18n/index.d.ts +1 -0
  18. package/build/cjs/editor/components/PageSettings/i18n/index.js +9 -0
  19. package/build/cjs/editor/components/PageSettings/i18n/ru.json +3 -0
  20. package/build/cjs/editor/containers/Editor/Editor.css +17 -0
  21. package/build/cjs/editor/containers/Editor/Editor.d.ts +1 -1
  22. package/build/cjs/editor/containers/Editor/Editor.js +17 -65
  23. package/build/cjs/editor/containers/Editor/hooks/useCode.d.ts +14 -0
  24. package/build/cjs/editor/containers/{Form/hooks.js → Editor/hooks/useCode.js} +4 -14
  25. package/build/cjs/editor/containers/Editor/hooks/useEditorState.d.ts +49 -0
  26. package/build/cjs/editor/containers/Editor/hooks/useEditorState.js +99 -0
  27. package/build/cjs/editor/containers/Form/Form.css +0 -10
  28. package/build/cjs/editor/containers/Form/Form.d.ts +1 -8
  29. package/build/cjs/editor/containers/Form/Form.js +14 -39
  30. package/build/cjs/editor/store/main/index.js +1 -1
  31. package/build/cjs/editor/store/settings/index.d.ts +3 -3
  32. package/build/cjs/editor/store/settings/index.js +4 -4
  33. package/build/cjs/editor/store/settings/reducer.d.ts +9 -9
  34. package/build/cjs/editor/store/settings/reducer.js +6 -6
  35. package/build/cjs/editor/types/index.d.ts +3 -4
  36. package/build/cjs/editor/types/index.js +7 -8
  37. package/build/esm/blocks/Questions/QuestionBlockItem/QuestionBlockItem.css +1 -0
  38. package/build/esm/editor/components/AddBlock/AddBlock.css +1 -2
  39. package/build/esm/editor/components/CodeEditor/CodeEditor.css +3 -1
  40. package/build/esm/editor/components/ControlPanel/ControlPanel.css +2 -4
  41. package/build/esm/editor/components/ControlPanel/ControlPanel.d.ts +4 -2
  42. package/build/esm/editor/components/ControlPanel/ControlPanel.js +26 -17
  43. package/build/esm/editor/components/ControlPanel/i18n/en.json +2 -1
  44. package/build/esm/editor/components/ControlPanel/i18n/index.d.ts +1 -1
  45. package/build/esm/editor/components/ControlPanel/i18n/ru.json +2 -1
  46. package/build/esm/editor/components/Layout/Layout.css +10 -6
  47. package/build/esm/editor/components/Layout/Layout.d.ts +4 -7
  48. package/build/esm/editor/components/Layout/Layout.js +9 -11
  49. package/build/esm/editor/components/PageSettings/PageSettings.css +26 -0
  50. package/build/esm/editor/components/PageSettings/PageSettings.d.ts +12 -0
  51. package/build/esm/editor/components/PageSettings/PageSettings.js +27 -0
  52. package/build/esm/editor/components/PageSettings/i18n/en.json +3 -0
  53. package/build/esm/editor/components/PageSettings/i18n/index.d.ts +1 -0
  54. package/build/esm/editor/components/PageSettings/i18n/index.js +5 -0
  55. package/build/esm/editor/components/PageSettings/i18n/ru.json +3 -0
  56. package/build/esm/editor/containers/Editor/Editor.css +17 -0
  57. package/build/esm/editor/containers/Editor/Editor.d.ts +2 -1
  58. package/build/esm/editor/containers/Editor/Editor.js +18 -66
  59. package/build/esm/editor/containers/Editor/hooks/useCode.d.ts +14 -0
  60. package/build/esm/editor/containers/{Form/hooks.js → Editor/hooks/useCode.js} +4 -14
  61. package/build/esm/editor/containers/Editor/hooks/useEditorState.d.ts +49 -0
  62. package/build/esm/editor/containers/Editor/hooks/useEditorState.js +95 -0
  63. package/build/esm/editor/containers/Form/Form.css +0 -10
  64. package/build/esm/editor/containers/Form/Form.d.ts +1 -8
  65. package/build/esm/editor/containers/Form/Form.js +16 -42
  66. package/build/esm/editor/store/main/index.js +1 -1
  67. package/build/esm/editor/store/settings/index.d.ts +3 -3
  68. package/build/esm/editor/store/settings/index.js +5 -5
  69. package/build/esm/editor/store/settings/reducer.d.ts +9 -9
  70. package/build/esm/editor/store/settings/reducer.js +6 -6
  71. package/build/esm/editor/types/index.d.ts +3 -4
  72. package/build/esm/editor/types/index.js +6 -7
  73. package/package.json +1 -1
  74. package/widget/index.js +1 -1
  75. package/build/cjs/editor/components/PagePropsForm/PagePropsForm.d.ts +0 -10
  76. package/build/cjs/editor/components/PagePropsForm/PagePropsForm.js +0 -17
  77. package/build/cjs/editor/containers/Form/hooks.d.ts +0 -8
  78. package/build/esm/editor/components/PagePropsForm/PagePropsForm.d.ts +0 -10
  79. package/build/esm/editor/components/PagePropsForm/PagePropsForm.js +0 -13
  80. package/build/esm/editor/containers/Form/hooks.d.ts +0 -8

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.