@enonic/page-editor 0.0.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 (90) hide show
  1. package/LICENSE.txt +674 -0
  2. package/dist/fonts/OpenSans.woff2 +0 -0
  3. package/dist/fonts/icomoon.woff +0 -0
  4. package/dist/fonts/icomoon.woff2 +0 -0
  5. package/dist/index.cjs +14 -0
  6. package/dist/index.d.ts +2 -0
  7. package/dist/index.d.ts.map +1 -0
  8. package/dist/index.js +37611 -0
  9. package/dist/main.css +1 -0
  10. package/dist/page-editor/ComponentItemType.d.ts +6 -0
  11. package/dist/page-editor/ComponentItemType.d.ts.map +1 -0
  12. package/dist/page-editor/ComponentView.d.ts +84 -0
  13. package/dist/page-editor/ComponentView.d.ts.map +1 -0
  14. package/dist/page-editor/ComponentViewContextMenuTitle.d.ts +7 -0
  15. package/dist/page-editor/ComponentViewContextMenuTitle.d.ts.map +1 -0
  16. package/dist/page-editor/ContentBasedComponentView.d.ts +10 -0
  17. package/dist/page-editor/ContentBasedComponentView.d.ts.map +1 -0
  18. package/dist/page-editor/CreateItemViewConfig.d.ts +28 -0
  19. package/dist/page-editor/CreateItemViewConfig.d.ts.map +1 -0
  20. package/dist/page-editor/CreateTextComponentViewConfig.d.ts +8 -0
  21. package/dist/page-editor/CreateTextComponentViewConfig.d.ts.map +1 -0
  22. package/dist/page-editor/Cursor.d.ts +11 -0
  23. package/dist/page-editor/Cursor.d.ts.map +1 -0
  24. package/dist/page-editor/DescriptorBasedComponentView.d.ts +18 -0
  25. package/dist/page-editor/DescriptorBasedComponentView.d.ts.map +1 -0
  26. package/dist/page-editor/DescriptorBasedComponentViewPlaceholder.d.ts +6 -0
  27. package/dist/page-editor/DescriptorBasedComponentViewPlaceholder.d.ts.map +1 -0
  28. package/dist/page-editor/DragAndDrop.d.ts +74 -0
  29. package/dist/page-editor/DragAndDrop.d.ts.map +1 -0
  30. package/dist/page-editor/DragPlaceholder.d.ts +20 -0
  31. package/dist/page-editor/DragPlaceholder.d.ts.map +1 -0
  32. package/dist/page-editor/Highlighter.d.ts +27 -0
  33. package/dist/page-editor/Highlighter.d.ts.map +1 -0
  34. package/dist/page-editor/ItemView.d.ts +166 -0
  35. package/dist/page-editor/ItemView.d.ts.map +1 -0
  36. package/dist/page-editor/ItemViewContextMenuPosition.d.ts +6 -0
  37. package/dist/page-editor/ItemViewContextMenuPosition.d.ts.map +1 -0
  38. package/dist/page-editor/ItemViewFactory.d.ts +15 -0
  39. package/dist/page-editor/ItemViewFactory.d.ts.map +1 -0
  40. package/dist/page-editor/ItemViewId.d.ts +12 -0
  41. package/dist/page-editor/ItemViewId.d.ts.map +1 -0
  42. package/dist/page-editor/ItemViewIdProducer.d.ts +6 -0
  43. package/dist/page-editor/ItemViewIdProducer.d.ts.map +1 -0
  44. package/dist/page-editor/ItemViewPlaceholder.d.ts +10 -0
  45. package/dist/page-editor/ItemViewPlaceholder.d.ts.map +1 -0
  46. package/dist/page-editor/LiveEditPage.d.ts +42 -0
  47. package/dist/page-editor/LiveEditPage.d.ts.map +1 -0
  48. package/dist/page-editor/PageEditor.d.ts +5 -0
  49. package/dist/page-editor/PageEditor.d.ts.map +1 -0
  50. package/dist/page-editor/PagePlaceholder.d.ts +16 -0
  51. package/dist/page-editor/PagePlaceholder.d.ts.map +1 -0
  52. package/dist/page-editor/PagePlaceholderInfoBlock.d.ts +12 -0
  53. package/dist/page-editor/PagePlaceholderInfoBlock.d.ts.map +1 -0
  54. package/dist/page-editor/PageView.d.ts +94 -0
  55. package/dist/page-editor/PageView.d.ts.map +1 -0
  56. package/dist/page-editor/RegionPlaceholder.d.ts +5 -0
  57. package/dist/page-editor/RegionPlaceholder.d.ts.map +1 -0
  58. package/dist/page-editor/RegionView.d.ts +77 -0
  59. package/dist/page-editor/RegionView.d.ts.map +1 -0
  60. package/dist/page-editor/RegionViewContextMenuTitle.d.ts +5 -0
  61. package/dist/page-editor/RegionViewContextMenuTitle.d.ts.map +1 -0
  62. package/dist/page-editor/SelectedHighlighter.d.ts +9 -0
  63. package/dist/page-editor/SelectedHighlighter.d.ts.map +1 -0
  64. package/dist/page-editor/Shader.d.ts +42 -0
  65. package/dist/page-editor/Shader.d.ts.map +1 -0
  66. package/dist/page-editor/fragment/FragmentComponentView.d.ts +21 -0
  67. package/dist/page-editor/fragment/FragmentComponentView.d.ts.map +1 -0
  68. package/dist/page-editor/fragment/FragmentItemType.d.ts +8 -0
  69. package/dist/page-editor/fragment/FragmentItemType.d.ts.map +1 -0
  70. package/dist/page-editor/fragment/FragmentPlaceholder.d.ts +18 -0
  71. package/dist/page-editor/fragment/FragmentPlaceholder.d.ts.map +1 -0
  72. package/dist/page-editor/layout/LayoutComponentView.d.ts +25 -0
  73. package/dist/page-editor/layout/LayoutComponentView.d.ts.map +1 -0
  74. package/dist/page-editor/layout/LayoutItemType.d.ts +8 -0
  75. package/dist/page-editor/layout/LayoutItemType.d.ts.map +1 -0
  76. package/dist/page-editor/layout/LayoutPlaceholder.d.ts +7 -0
  77. package/dist/page-editor/layout/LayoutPlaceholder.d.ts.map +1 -0
  78. package/dist/page-editor/part/PartComponentView.d.ts +12 -0
  79. package/dist/page-editor/part/PartComponentView.d.ts.map +1 -0
  80. package/dist/page-editor/part/PartItemType.d.ts +8 -0
  81. package/dist/page-editor/part/PartItemType.d.ts.map +1 -0
  82. package/dist/page-editor/part/PartPlaceholder.d.ts +7 -0
  83. package/dist/page-editor/part/PartPlaceholder.d.ts.map +1 -0
  84. package/dist/page-editor/text/TextComponentView.d.ts +33 -0
  85. package/dist/page-editor/text/TextComponentView.d.ts.map +1 -0
  86. package/dist/page-editor/text/TextItemType.d.ts +10 -0
  87. package/dist/page-editor/text/TextItemType.d.ts.map +1 -0
  88. package/dist/page-editor/text/TextPlaceholder.d.ts +5 -0
  89. package/dist/page-editor/text/TextPlaceholder.d.ts.map +1 -0
  90. package/package.json +96 -0
package/dist/main.css ADDED
@@ -0,0 +1 @@
1
+ @keyframes rotate360{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@keyframes shake{0%{transform:translate(0)}8%{transform:translate(-10px)}25%{transform:translate(10px)}41%{transform:translate(-10px)}58%{transform:translate(10px)}75%{transform:translate(-5px)}92%{transform:translate(5px)}to{transform:translate(0)}}@keyframes pulsate{0%{transform:scale(1)}20%{transform:scale(1.03)}50%{transform:scale(.99)}70%{transform:scale(1.02)}to{transform:scale(1)}}.icon-small:before{font-size:14px}.icon-medium:before{font-size:24px}.icon-large:before{font-size:30px}@font-face{font-display:swap;font-family:Open Sans;src:url(./fonts/OpenSans.woff2) format("woff2")}@font-face{font-family:icomoon;src:url(./fonts/icomoon.woff2) format("woff2"),url(./fonts/icomoon.woff) format("woff")}.font-icon-default{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.font-icon-default:after,.font-icon-default:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-xlarge:before{font-size:48px}.icon-spinner{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-spinner:after,.icon-spinner:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-spinner:before{content:""}.icon-newspaper{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-newspaper:after,.icon-newspaper:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-newspaper:before{content:""}.icon-pencil{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-pencil:after,.icon-pencil:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-pencil:before{content:""}.icon-image{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-image:after,.icon-image:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-image:before{content:""}.icon-image,.xp-admin-common-icon-image{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-image:after,.icon-image:before,.xp-admin-common-icon-image:after,.xp-admin-common-icon-image:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-image:before,.xp-admin-common-icon-image:before{content:""}.icon-file,.xp-admin-common-icon-file{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-file:after,.icon-file:before,.xp-admin-common-icon-file:after,.xp-admin-common-icon-file:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-file:before,.xp-admin-common-icon-file:before{content:""}.icon-file-text2{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-file-text2:after,.icon-file-text2:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-file-text2:before{content:""}.xp-admin-common-icon-page{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.xp-admin-common-icon-page:after,.xp-admin-common-icon-page:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.xp-admin-common-icon-page:before{content:""}.icon-folder-closed{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-folder-closed:after,.icon-folder-closed:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-folder-closed:before{content:""}.icon-folder-open{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-folder-open:after,.icon-folder-open:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-folder-open:before{content:""}.icon-folder{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-folder:after,.icon-folder:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-folder:before{content:""}.icon.collapse+* .icon-folder{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon.collapse+* .icon-folder:after,.icon.collapse+* .icon-folder:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon.collapse+* .icon-folder:before{content:""}.icon-address-book{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-address-book:after,.icon-address-book:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-address-book:before{content:""}.icon-clock{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-clock:after,.icon-clock:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-clock:before{content:""}.icon-calendar{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-calendar:after,.icon-calendar:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-calendar:before{content:""}.xp-page-editor-icon-screen{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.xp-page-editor-icon-screen:after,.xp-page-editor-icon-screen:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.xp-page-editor-icon-screen:before{content:""}.xp-page-editor-icon-monitor{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.xp-page-editor-icon-monitor:after,.xp-page-editor-icon-monitor:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.xp-page-editor-icon-monitor:before{content:""}.xp-page-editor-icon-mobile{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.xp-page-editor-icon-mobile:after,.xp-page-editor-icon-mobile:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.xp-page-editor-icon-mobile:before{content:""}.xp-page-editor-icon-tablet{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.xp-page-editor-icon-tablet:after,.xp-page-editor-icon-tablet:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.xp-page-editor-icon-tablet:before{content:""}.icon-database{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-database:after,.icon-database:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-database:before{content:""}.icon-center_focus_strong{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-center_focus_strong:after,.icon-center_focus_strong:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-center_focus_strong:before{content:""}.icon-crop{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-crop:after,.icon-crop:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-crop:before{content:""}.icon-user{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-user:after,.icon-user:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-user:before{content:""}.icon-users{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-users:after,.icon-users:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-users:before{content:""}.icon-search{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-search:after,.icon-search:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-search:before{content:""}.icon-cog{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-cog:after,.icon-cog:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-cog:before{content:""}.icon-wand{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-wand:after,.icon-wand:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-wand:before{content:""}.icon-pie{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-pie:after,.icon-pie:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-pie:before{content:""}.icon-fragment{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-fragment:after,.icon-fragment:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-fragment:before{content:""}.xp-admin-common-icon-fragment{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.xp-admin-common-icon-fragment:after,.xp-admin-common-icon-fragment:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.xp-admin-common-icon-fragment:before{content:""}.icon-puzzle{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-puzzle:after,.icon-puzzle:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-puzzle:before{content:""}.xp-admin-common-icon-part{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.xp-admin-common-icon-part:after,.xp-admin-common-icon-part:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.xp-admin-common-icon-part:before{content:""}.icon-signup{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-signup:after,.icon-signup:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-signup:before{content:""}.icon-clipboard{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-clipboard:after,.icon-clipboard:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-clipboard:before{content:""}.icon-list{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-list:after,.icon-list:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-list:before{content:""}.icon-menu{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-menu:after,.icon-menu:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-menu:before{content:""}.icon-lock{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-lock:after,.icon-lock:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-lock:before{content:""}.icon-unlock{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-unlock:after,.icon-unlock:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-unlock:before{content:""}.icon-attachment{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-attachment:after,.icon-attachment:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-attachment:before{content:""}.icon-blocked{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-blocked:after,.icon-blocked:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-blocked:before{content:""}.icon-close{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-close:after,.icon-close:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-close:before{content:"";font-size:18px;font-weight:700}.icon-checkmark{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-checkmark:after,.icon-checkmark:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-checkmark:before{content:""}.xp-admin-common-icon-loop{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.xp-admin-common-icon-loop:after,.xp-admin-common-icon-loop:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.xp-admin-common-icon-loop:before{content:""}.icon-keyboard_arrow_left{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-keyboard_arrow_left:after,.icon-keyboard_arrow_left:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-keyboard_arrow_left:before{content:""}.icon-arrow-left{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-arrow-left:after,.icon-arrow-left:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-arrow-left:before{content:""}.icon-arrow-up{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f;transform:rotate(90deg)}.icon-arrow-up:after,.icon-arrow-up:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-arrow-up:before{content:""}.icon-arrow-right{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f;transform:rotate(180deg)}.icon-arrow-right:after,.icon-arrow-right:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-arrow-right:before{content:""}.icon-arrow-down{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f;transform:rotate(270deg)}.icon-arrow-down:after,.icon-arrow-down:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-arrow-down:before{content:""}.icon-arrow-left2{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-arrow-left2:after,.icon-arrow-left2:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-arrow-left2:before{content:""}.icon-more_vert{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-more_vert:after,.icon-more_vert:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-more_vert:before{content:""}.icon-arrow_drop_up{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-arrow_drop_up:after,.icon-arrow_drop_up:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-arrow_drop_up:before{content:""}.icon-arrow_drop_down{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-arrow_drop_down:after,.icon-arrow_drop_down:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-arrow_drop_down:before{content:"";transform:rotateX(180deg)}.icon-arrow-right2{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f;transform:rotate(90deg)}.icon-arrow-right2:after,.icon-arrow-right2:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-arrow-right2:before{content:""}.icon-circle-right{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-circle-right:after,.icon-circle-right:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-circle-right:before{content:""}.icon-rotate_right{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-rotate_right:after,.icon-rotate_right:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-rotate_right:before{content:""}.icon-font-size{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-font-size:after,.icon-font-size:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-font-size:before{content:""}.xp-admin-common-icon-text{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.xp-admin-common-icon-text:after,.xp-admin-common-icon-text:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.xp-admin-common-icon-text:before{content:""}.icon-insert-template{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-insert-template:after,.icon-insert-template:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-insert-template:before{content:""}.icon-layout{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-layout:after,.icon-layout:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-layout:before{content:"";display:inline-block;transform:rotate(90deg)}.xp-admin-common-icon-layout{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.xp-admin-common-icon-layout:after,.xp-admin-common-icon-layout:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.xp-admin-common-icon-layout:before{content:"";display:inline-block;transform:rotate(90deg)}.icon-page-template{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-page-template:after,.icon-page-template:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-page-template:before{content:""}.icon-paragraph-left{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-paragraph-left:after,.icon-paragraph-left:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-paragraph-left:before{content:""}.icon-paragraph-center{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-paragraph-center:after,.icon-paragraph-center:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-paragraph-center:before{content:""}.icon-paragraph-right{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-paragraph-right:after,.icon-paragraph-right:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-paragraph-right:before{content:""}.icon-paragraph-justify{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-paragraph-justify:after,.icon-paragraph-justify:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-paragraph-justify:before{content:""}.icon-compass2{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-compass2:after,.icon-compass2:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-compass2:before{content:""}.xp-admin-common-icon-region{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f;transform:rotate(270deg)}.xp-admin-common-icon-region:after,.xp-admin-common-icon-region:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.xp-admin-common-icon-region:before{content:""}.icon-tree{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-tree:after,.icon-tree:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-tree:before{content:""}.icon-user-tie{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-user-tie:after,.icon-user-tie:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-user-tie:before{content:""}.icon-masks{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-masks:after,.icon-masks:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-masks:before{content:""}.icon-flip{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-flip:after,.icon-flip:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-flip:before{content:""}.icon-menu2{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-menu2:after,.icon-menu2:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-menu2:before{content:""}.icon-sort-alpha-asc{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-sort-alpha-asc:after,.icon-sort-alpha-asc:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-sort-alpha-asc:before{content:"";font-size:14px}.icon-sort-alpha-desc{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-sort-alpha-desc:after,.icon-sort-alpha-desc:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-sort-alpha-desc:before{content:"";font-size:14px}.icon-sort-num-asc{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-sort-num-asc:after,.icon-sort-num-asc:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-sort-num-asc:before{content:"";font-size:14px}.icon-sort-num-desc{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-sort-num-desc:after,.icon-sort-num-desc:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-sort-num-desc:before{content:"";font-size:14px}.icon-sphere{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;color:#53585f}.icon-sphere:after,.icon-sphere:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-sphere:before{content:""}.xp-admin-common-names-view{font:normal;font-family:Open Sans,Helvetica,sans-serif;font-size:12px;font-style:normal;font-variant:normal;font-weight:400}.xp-admin-common-names-view,.xp-admin-common-names-view>*{animation:none;animation-delay:0;animation-direction:normal;animation-duration:0;animation-fill-mode:none;animation-iteration-count:1;animation-name:none;animation-play-state:running;animation-timing-function:ease;backface-visibility:visible;background:0;background-attachment:scroll;background-clip:border-box;background-color:transparent;background-image:none;background-origin:padding-box;background-position:0 0;background-position-x:0;background-position-y:0;background-repeat:repeat;background-size:auto auto;border:0;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;border-top-color:inherit;border-top-style:none;border-top-width:medium;box-shadow:none;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:inherit;-moz-columns:auto;-moz-column-count:auto;-moz-column-fill:balance;column-fill:balance;-moz-column-gap:normal;column-gap:normal;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-moz-column-rule-color:currentColor;column-rule-color:currentColor;-moz-column-rule-style:none;column-rule-style:none;-moz-column-rule-width:none;column-rule-width:none;-moz-column-span:1;column-span:1;-moz-column-width:auto;columns:auto;content:normal;counter-increment:none;counter-reset:none;cursor:auto;display:block;empty-cells:show;float:none;height:auto;-webkit-hyphens:none;hyphens:none;inset:auto;letter-spacing:normal;line-height:normal;list-style:none;list-style-image:none;list-style-position:outside;list-style-type:disc;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:0;outline-width:2px;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;perspective:none;perspective-origin:50% 50%;position:static;quotes:"“" "”" "‘" "’";-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:inherit;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-decoration-color:inherit;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-shadow:none;text-transform:none;transform:none;transform-style:flat;transition:none;transition-delay:0s;transition-duration:0s;transition-property:none;transition-timing-function:ease;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:0;width:auto;word-spacing:normal;z-index:auto}.xp-admin-common-names-view>*{font:normal;font-family:inherit;font-size:inherit;font-style:normal;font-variant:normal;font-weight:400}.xp-admin-common-names-view .xp-admin-common-main-name{color:#000;font-size:14px;font-weight:400;height:18px;line-height:18px;margin:0;overflow:hidden;padding:0;text-overflow:ellipsis;white-space:pre}.xp-admin-common-names-view .xp-admin-common-sub-name{color:#777770;font-size:12px;font-weight:400;line-height:normal;margin:0;overflow:hidden;padding:0;text-overflow:ellipsis;white-space:pre}.names-and-icon-view{animation:none;animation-delay:0;animation-direction:normal;animation-duration:0;animation-fill-mode:none;animation-iteration-count:1;animation-name:none;animation-play-state:running;animation-timing-function:ease;backface-visibility:visible;background:0;background-attachment:scroll;background-clip:border-box;background-color:transparent;background-image:none;background-origin:padding-box;background-position:0 0;background-position-x:0;background-position-y:0;background-repeat:repeat;background-size:auto auto;border:0;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;border-top-color:inherit;border-top-style:none;border-top-width:medium;box-shadow:none;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:inherit;-moz-columns:auto;-moz-column-count:auto;-moz-column-fill:balance;column-fill:balance;-moz-column-gap:normal;column-gap:normal;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-moz-column-rule-color:currentColor;column-rule-color:currentColor;-moz-column-rule-style:none;column-rule-style:none;-moz-column-rule-width:none;column-rule-width:none;-moz-column-span:1;column-span:1;-moz-column-width:auto;columns:auto;content:normal;counter-increment:none;counter-reset:none;cursor:auto;display:block;empty-cells:show;float:none;font:normal;font-style:normal;font-variant:normal;font-weight:400;height:auto;-webkit-hyphens:none;hyphens:none;inset:auto;letter-spacing:normal;line-height:normal;list-style:none;list-style-image:none;list-style-position:outside;list-style-type:disc;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:0;outline-width:2px;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;align-items:center;display:flex;font-family:Open Sans,Helvetica,sans-serif;font-size:12px;overflow:hidden;perspective:none;perspective-origin:50% 50%;position:static;position:relative;quotes:"“" "”" "‘" "’";-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:inherit;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-decoration-color:inherit;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-shadow:none;text-transform:none;transform:none;transform-style:flat;transition:none;transition-delay:0s;transition-duration:0s;transition-property:none;transition-timing-function:ease;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:0;width:auto;word-spacing:normal;z-index:auto}.names-and-icon-view .xp-admin-common-wrapper{align-items:center;display:flex;flex-shrink:0;height:48px;justify-content:center;line-height:46px;margin-right:15px;text-align:center;width:48px}.names-and-icon-view .xp-admin-common-wrapper:before{border-radius:10px;font-size:14px;height:16px;left:38px;line-height:16px;position:absolute;text-align:center;top:0;width:16px;z-index:1}.names-and-icon-view .xp-admin-common-wrapper .font-icon,.names-and-icon-view .xp-admin-common-wrapper .font-icon-default{font-size:48px;margin:auto}.names-and-icon-view .xp-admin-common-wrapper div.font-icon-default,.names-and-icon-view .xp-admin-common-wrapper img.font-icon-default{display:flex;height:100%;width:100%}.names-and-icon-view .xp-admin-common-wrapper img{-o-object-fit:contain;object-fit:contain}.names-and-icon-view .xp-admin-common-icon-label{left:38px;line-height:12px;padding:3px;position:absolute;top:0}.names-and-icon-view .xp-admin-common-icon-label:before{content:""}.names-and-icon-view.no-icon .xp-admin-common-wrapper{display:none}.names-and-icon-view.no-icon .xp-admin-common-names-view{margin-left:0}.names-and-icon-view.compact{overflow:hidden;position:relative}.names-and-icon-view.compact .xp-admin-common-wrapper{align-items:center;display:flex;flex-shrink:0;height:28px;justify-content:center;line-height:26px;margin-right:10px;text-align:center;width:28px}.names-and-icon-view.compact .xp-admin-common-wrapper:before{border-radius:10px;font-size:14px;height:16px;left:18px;line-height:16px;position:absolute;text-align:center;top:0;width:16px;z-index:1}.names-and-icon-view.compact .xp-admin-common-wrapper .font-icon,.names-and-icon-view.compact .xp-admin-common-wrapper .font-icon-default{font-size:28px;margin:auto}.names-and-icon-view.compact .xp-admin-common-wrapper div.font-icon-default,.names-and-icon-view.compact .xp-admin-common-wrapper img.font-icon-default{display:flex;height:100%;width:100%}.names-and-icon-view.compact .xp-admin-common-wrapper img{-o-object-fit:contain;object-fit:contain}.names-and-icon-view.compact .xp-admin-common-icon-label{left:18px;line-height:12px;padding:3px;position:absolute;top:0}.names-and-icon-view.compact .xp-admin-common-icon-label:before{content:""}.names-and-icon-view.compact.no-icon .xp-admin-common-wrapper{display:none}.names-and-icon-view.compact.no-icon .xp-admin-common-names-view{margin-left:0}.names-and-icon-view.small{overflow:hidden;position:relative}.names-and-icon-view.small .xp-admin-common-wrapper{align-items:center;display:flex;flex-shrink:0;height:32px;justify-content:center;line-height:30px;margin-right:15px;text-align:center;width:32px}.names-and-icon-view.small .xp-admin-common-wrapper:before{border-radius:10px;font-size:14px;height:16px;left:22px;line-height:16px;position:absolute;text-align:center;top:0;width:16px;z-index:1}.names-and-icon-view.small .xp-admin-common-wrapper .font-icon,.names-and-icon-view.small .xp-admin-common-wrapper .font-icon-default{font-size:32px;margin:auto}.names-and-icon-view.small .xp-admin-common-wrapper div.font-icon-default,.names-and-icon-view.small .xp-admin-common-wrapper img.font-icon-default{display:flex;height:100%;width:100%}.names-and-icon-view.small .xp-admin-common-wrapper img{-o-object-fit:contain;object-fit:contain}.names-and-icon-view.small .xp-admin-common-icon-label{left:22px;line-height:12px;padding:3px;position:absolute;top:0}.names-and-icon-view.small .xp-admin-common-icon-label:before{content:""}.names-and-icon-view.small.no-icon .xp-admin-common-wrapper{display:none}.names-and-icon-view.small.no-icon .xp-admin-common-names-view{margin-left:0}.names-and-icon-view.medium{overflow:hidden;position:relative}.names-and-icon-view.medium .xp-admin-common-wrapper{align-items:center;display:flex;flex-shrink:0;height:48px;justify-content:center;line-height:46px;margin-right:15px;text-align:center;width:48px}.names-and-icon-view.medium .xp-admin-common-wrapper:before{border-radius:10px;font-size:14px;height:16px;left:38px;line-height:16px;position:absolute;text-align:center;top:0;width:16px;z-index:1}.names-and-icon-view.medium .xp-admin-common-wrapper .font-icon,.names-and-icon-view.medium .xp-admin-common-wrapper .font-icon-default{font-size:48px;margin:auto}.names-and-icon-view.medium .xp-admin-common-wrapper div.font-icon-default,.names-and-icon-view.medium .xp-admin-common-wrapper img.font-icon-default{display:flex;height:100%;width:100%}.names-and-icon-view.medium .xp-admin-common-wrapper img{-o-object-fit:contain;object-fit:contain}.names-and-icon-view.medium .xp-admin-common-icon-label{left:38px;line-height:12px;padding:3px;position:absolute;top:0}.names-and-icon-view.medium .xp-admin-common-icon-label:before{content:""}.names-and-icon-view.medium.no-icon .xp-admin-common-wrapper{display:none}.names-and-icon-view.medium.no-icon .xp-admin-common-names-view{margin-left:0}.names-and-icon-view.large{overflow:hidden;position:relative}.names-and-icon-view.large .xp-admin-common-wrapper{align-items:center;display:flex;flex-shrink:0;height:64px;justify-content:center;line-height:62px;margin-right:15px;text-align:center;width:64px}.names-and-icon-view.large .xp-admin-common-wrapper:before{border-radius:10px;font-size:14px;height:16px;left:54px;line-height:16px;position:absolute;text-align:center;top:0;width:16px;z-index:1}.names-and-icon-view.large .xp-admin-common-wrapper .font-icon,.names-and-icon-view.large .xp-admin-common-wrapper .font-icon-default{font-size:64px;margin:auto}.names-and-icon-view.large .xp-admin-common-wrapper div.font-icon-default,.names-and-icon-view.large .xp-admin-common-wrapper img.font-icon-default{display:flex;height:100%;width:100%}.names-and-icon-view.large .xp-admin-common-wrapper img{-o-object-fit:contain;object-fit:contain}.names-and-icon-view.large .xp-admin-common-icon-label{left:54px;line-height:12px;padding:3px;position:absolute;top:0}.names-and-icon-view.large .xp-admin-common-icon-label:before{content:""}.names-and-icon-view.large.no-icon .xp-admin-common-wrapper{display:none}.names-and-icon-view.large.no-icon .xp-admin-common-names-view{margin-left:0}#drag-helper{animation:none;animation-delay:0;animation-direction:normal;animation-duration:0;animation-fill-mode:none;animation-iteration-count:1;animation-name:none;animation-play-state:running;animation-timing-function:ease;backface-visibility:visible;background:0;background-attachment:scroll;background-clip:border-box;background-color:transparent;background-image:none;background-origin:padding-box;background-position:0 0;background-position-x:0;background-position-y:0;background-repeat:repeat;background-size:auto auto;border:0;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;border-top-color:inherit;border-top-style:none;border-top-width:medium;box-shadow:none;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:inherit;-moz-columns:auto;-moz-column-count:auto;-moz-column-fill:balance;column-fill:balance;-moz-column-gap:normal;column-gap:normal;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-moz-column-rule-color:currentColor;column-rule-color:currentColor;-moz-column-rule-style:none;column-rule-style:none;-moz-column-rule-width:none;column-rule-width:none;-moz-column-span:1;column-span:1;-moz-column-width:auto;columns:auto;content:normal;counter-increment:none;counter-reset:none;cursor:auto;display:block;empty-cells:show;float:none;font:normal;font-style:normal;font-variant:normal;font-weight:400;height:auto;-webkit-hyphens:none;hyphens:none;inset:auto;letter-spacing:normal;line-height:normal;list-style:none;list-style-image:none;list-style-position:outside;list-style-type:disc;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:0;outline-width:2px;overflow:visible;overflow-x:visible;overflow-y:visible;padding:0;page-break-after:auto;page-break-before:auto;page-break-inside:auto;font-size:12px;height:48px!important;perspective:none;perspective-origin:50% 50%;position:static;quotes:"“" "”" "‘" "’";-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:inherit;text-align:center;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-decoration-color:inherit;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-shadow:none;text-transform:none;transform:none;transform-style:flat;transition:none;transition-delay:0s;transition-duration:0s;transition-property:none;transition-timing-function:ease;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:0;width:auto;width:48px!important;word-spacing:normal;z-index:auto;z-index:2147483601!important}#drag-helper,#drag-helper .drag-item-name{font-family:Open Sans,Helvetica,sans-serif}#drag-helper .drag-item-name{color:#224e83;font-size:20px;left:60px;line-height:32px;position:absolute;text-align:left;top:15px;width:200px}#drag-helper:before{color:#fff;font-size:24px;line-height:48px}#drag-helper.drop-allowed{font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;background-color:#609e24;color:#53585f}#drag-helper.drop-allowed:after,#drag-helper.drop-allowed:before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#drag-helper.drop-allowed:before{content:""}#drag-helper:not(.drop-allowed){font-style:normal;font-variant:normal;font-weight:400;text-transform:none;speak:none;background-color:#cb0300;color:#53585f}#drag-helper:not(.drop-allowed):after,#drag-helper:not(.drop-allowed):before{font-family:icomoon,monospace!important;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#drag-helper:not(.drop-allowed):before{content:""}.menu{background:0;background-attachment:scroll;background-clip:border-box;background-color:transparent;background-image:none;background-origin:padding-box;background-position:0 0;background-position-x:0;background-position-y:0;background-repeat:repeat;background-size:auto auto;background:#fff;box-shadow:none;box-shadow:0 0 5px #0000004d,0 5px 10px #0000004d;display:block;display:none;font:normal;font-family:Open Sans,Helvetica,sans-serif;font-size:12px;font-style:normal;font-variant:normal;font-weight:400;list-style-image:none;list-style-position:outside;list-style-type:disc;min-width:0;min-width:120px;padding:4px;top:100%}.menu,.menu>*{animation:none;animation-delay:0;animation-direction:normal;animation-duration:0;animation-fill-mode:none;animation-iteration-count:1;animation-name:none;animation-play-state:running;animation-timing-function:ease;backface-visibility:visible;border:0;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;border-top-color:inherit;border-top-style:none;border-top-width:medium;bottom:auto;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:inherit;-moz-columns:auto;-moz-column-count:auto;-moz-column-fill:balance;column-fill:balance;-moz-column-gap:normal;column-gap:normal;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-moz-column-rule-color:currentColor;column-rule-color:currentColor;-moz-column-rule-style:none;column-rule-style:none;-moz-column-rule-width:none;column-rule-width:none;-moz-column-span:1;column-span:1;-moz-column-width:auto;columns:auto;content:normal;counter-increment:none;counter-reset:none;cursor:auto;empty-cells:show;float:none;height:auto;-webkit-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;line-height:normal;max-height:none;max-width:none;min-height:0;opacity:1;orphans:0;outline-width:2px;overflow:visible;overflow-x:visible;overflow-y:visible;page-break-after:auto;page-break-before:auto;page-break-inside:auto;list-style:none;margin:0;perspective:none;perspective-origin:50% 50%;position:static;quotes:"“" "”" "‘" "’";right:auto;-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:inherit;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-decoration-color:inherit;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-shadow:none;text-transform:none;transform:none;transform-style:flat;transition:none;transition-delay:0s;transition-duration:0s;transition-property:none;transition-timing-function:ease;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:0;width:auto;word-spacing:normal;z-index:auto}.menu>*{background:0;background-attachment:scroll;background-clip:border-box;background-color:transparent;background-image:none;background-origin:padding-box;background-position:0 0;background-position-x:0;background-position-y:0;background-repeat:repeat;background-size:auto auto;box-shadow:none;display:block;font:normal;font-family:inherit;font-size:inherit;font-style:normal;font-variant:normal;font-weight:400;list-style-image:none;list-style-position:outside;list-style-type:disc;min-width:0;padding:0;top:auto}.menu dd,.menu dt,.menu li{background-color:transparent;border-width:0;color:#333;cursor:pointer;display:block;font-family:Open Sans,Helvetica,sans-serif;font-size:14px;font-weight:400;margin:0;padding:5px}.menu dd.disabled,.menu dd:disabled,.menu dt.disabled,.menu dt:disabled,.menu li.disabled,.menu li:disabled{cursor:default;opacity:.5;pointer-events:none}.menu dd:hover:not(.disabled),.menu dt:hover:not(.disabled),.menu li:hover:not(.disabled){background-color:#eee;color:#333}.context-menu{position:absolute;z-index:2147483602}.context-menu dt:not(.collapsible){display:none}.context-menu dt:not(.collapsible).expanded{display:block}.context-menu dt.collapsible:after{border-left:4px solid transparent;border-right:4px solid transparent;border-top:7px solid #53585f;content:"";left:90%;margin-top:5px;position:absolute}.context-menu dt.collapsible.expanded:after{border-bottom:7px solid #53585f;border-top:none}.context-menu dd{display:none;padding-left:20px}.context-menu dd.expanded{display:block}.context-menu dd:before{margin-right:5px}.item-view-context-menu{animation:none;animation-delay:0;animation-direction:normal;animation-duration:0;animation-fill-mode:none;animation-iteration-count:1;animation-name:none;animation-play-state:running;animation-timing-function:ease;backface-visibility:visible;background:0;background-attachment:scroll;background-clip:border-box;background-color:transparent;background-image:none;background-origin:padding-box;background-position:0 0;background-position-x:0;background-position-y:0;background-repeat:repeat;background-size:auto auto;border:0;border-collapse:separate;-o-border-image:none;border-image:none;border-radius:0;border-spacing:0;border-top-color:inherit;border-top-style:none;border-top-width:medium;box-shadow:none;box-sizing:content-box;caption-side:top;clear:none;clip:auto;color:inherit;-moz-columns:auto;-moz-column-count:auto;-moz-column-fill:balance;column-fill:balance;-moz-column-gap:normal;column-gap:normal;-moz-column-rule:medium none currentColor;column-rule:medium none currentColor;-moz-column-rule-color:currentColor;column-rule-color:currentColor;-moz-column-rule-style:none;column-rule-style:none;-moz-column-rule-width:none;column-rule-width:none;-moz-column-span:1;column-span:1;-moz-column-width:auto;columns:auto;content:normal;counter-increment:none;counter-reset:none;cursor:auto;display:block;empty-cells:show;float:none;font:normal;font-style:normal;font-variant:normal;font-weight:400;height:auto;-webkit-hyphens:none;hyphens:none;inset:auto;letter-spacing:normal;line-height:normal;list-style:none;list-style-image:none;list-style-position:outside;list-style-type:disc;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;orphans:0;outline-width:2px;overflow:visible;overflow-x:visible;overflow-y:visible;page-break-after:auto;page-break-before:auto;page-break-inside:auto;background:#fff;box-shadow:0 0 5px #0000004d,0 5px 10px #0000004d;display:none;font-family:Open Sans,Helvetica,sans-serif;font-size:12px;padding:4px;perspective:none;perspective-origin:50% 50%;position:static;position:absolute;quotes:"“" "”" "‘" "’";-moz-tab-size:8;-o-tab-size:8;tab-size:8;table-layout:auto;text-align:inherit;-moz-text-align-last:auto;text-align-last:auto;text-decoration:none;text-decoration-color:inherit;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-shadow:none;text-transform:none;transform:none;transform-style:flat;transition:none;transition-delay:0s;transition-duration:0s;transition-property:none;transition-timing-function:ease;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;widows:0;width:auto;width:160px;word-spacing:normal;z-index:auto;z-index:2147483602}.item-view-context-menu .item-view-context-menu-arrow{left:50%;position:absolute}.item-view-context-menu .item-view-context-menu-arrow:before{border:7px solid transparent;content:" ";height:0;pointer-events:none;position:absolute;width:0}.item-view-context-menu .item-view-context-menu-arrow.bottom{margin-top:7px}.item-view-context-menu .item-view-context-menu-arrow.bottom:before{border-bottom-color:#fff;left:50%;margin-left:-7px;top:-14px}.item-view-context-menu .item-view-context-menu-arrow.left{margin-right:7px}.item-view-context-menu .item-view-context-menu-arrow.left:before{border-left-color:#fff;margin-top:-7px;right:-14px;top:50%}.item-view-context-menu .item-view-context-menu-arrow.top{margin-bottom:7px}.item-view-context-menu .item-view-context-menu-arrow.top:before{border-top-color:#fff;bottom:-14px;left:50%;margin-left:-7px}.item-view-context-menu .item-view-context-menu-arrow.right{margin-left:7px}.item-view-context-menu .item-view-context-menu-arrow.right:before{border-right-color:#fff;left:-14px;margin-top:-7px;top:50%}.item-view-context-menu .item-view-context-menu-arrow.bottom{top:-7px}.item-view-context-menu .item-view-context-menu-arrow.top{bottom:-7px}.item-view-context-menu .names-and-icon-view{background-color:#4294de;margin-bottom:4px;padding:8px 5px}.item-view-context-menu .names-and-icon-view .xp-admin-common-wrapper{height:20px;line-height:20px;width:20px}.item-view-context-menu .names-and-icon-view .xp-admin-common-wrapper .font-icon-default{color:#fff;font-size:20px;line-height:20px;vertical-align:top}.item-view-context-menu .names-and-icon-view .xp-admin-common-names-view{margin:0}.item-view-context-menu .names-and-icon-view .xp-admin-common-names-view .xp-admin-common-main-name{color:#fff;font-family:Open Sans,Helvetica,sans-serif;height:20px;line-height:20px}.item-view-context-menu .names-and-icon-view .xp-admin-common-names-view .xp-admin-common-sub-name{display:none}.item-view-context-menu .context-menu{box-shadow:none;display:block;padding:0;position:static}.item-view-context-menu-title{display:flex}.item-view-context-menu-title .xp-admin-common-wrapper{margin-right:8px}.xp-admin-common-modal-dialog{font-family:Open Sans,Helvetica,sans-serif;font-size:12px}.xp-admin-common-modal-dialog h1{font-size:34px;line-height:40px}.xp-admin-common-modal-dialog h2{font-size:30px;line-height:40px}.xp-admin-common-modal-dialog h3{font-size:26px;line-height:40px}.xp-admin-common-modal-dialog h4{font-size:22px;line-height:20px}.xp-admin-common-modal-dialog h5{font-size:18px;line-height:20px}.xp-admin-common-modal-dialog h6{font-size:14px;line-height:16px}svg.xp-page-editor-highlighter{pointer-events:none;position:absolute;z-index:2147483600}svg.xp-page-editor-highlighter.crosshair rect{stroke-width:.5}svg.xp-page-editor-highlighter.crosshair path{opacity:.2}svg.xp-page-editor-highlighter rect{stroke-width:2}svg.xp-page-editor-highlighter path{stroke-width:1.2}svg.xp-page-editor-highlighter path[style~="stroke-dasharray:"]{stroke-width:1.5}svg.xp-page-editor-highlighter.rectangle path{display:none}.xp-page-editor-shader{background-color:#000;display:none;pointer-events:none;position:absolute;z-index:2147483600}.xp-page-editor-shader.xp-page-editor-page{pointer-events:all;position:fixed!important}.xp-page-editor-shader.xp-page-editor-page .centered{display:none;left:50%;margin-left:-48px;margin-top:-48px;position:absolute;text-align:center;top:50%}.xp-page-editor-page-view.locked.lock-visible .xp-page-editor-shader.xp-page-editor-page{opacity:.2}.xp-page-editor-page-view.locked .xp-page-editor-shader.xp-page-editor-page{display:block;opacity:0;transition:all 50ms}.xp-page-editor-page-view.locked .xp-page-editor-shader.xp-page-editor-page .centered{display:block}.xp-page-editor-drag-placeholder{box-shadow:0 5px 20px #33333380;display:none}.xp-page-editor-drag-placeholder .message{font-size:24px;line-height:32px;position:relative;text-align:center}.xp-page-editor-drag-placeholder.drop-allowed .message{color:#224e83}.xp-page-editor-drag-placeholder:not(.drop-allowed) .message{color:#cb0300}.xp-page-editor-item-view.empty>.xp-page-editor-item-placeholder,.xp-page-editor-item-view[data-portal-placeholder=true]>.xp-page-editor-item-placeholder{display:block}.xp-page-editor-item-view.empty>.xp-page-editor-item-placeholder .tree-grid,.xp-page-editor-item-view[data-portal-placeholder=true]>.xp-page-editor-item-placeholder .tree-grid{height:auto}.xp-page-editor-item-view.empty.has-descriptor .xp-page-editor-item-placeholder{align-items:center;display:flex;height:137px;justify-content:center}.xp-page-editor-item-view.empty.has-descriptor .xp-page-editor-item-placeholder .empty-descriptor-block{position:relative}.xp-page-editor-item-view.empty.has-descriptor .xp-page-editor-item-placeholder .selectable-listbox-wrapper{text-align:left}.xp-page-editor-item-view.empty.has-descriptor .xp-page-editor-item-placeholder .selectable-listbox-wrapper .selectable-listbox{margin:0;padding:0;z-index:2147483603}.xp-page-editor-item-view[data-portal-placeholder-error=true]{background-color:#f0a197;position:relative}.xp-page-editor-item-view[data-portal-placeholder-error=true] span.data-portal-placeholder-error{color:#fff;display:block;font-size:14px;position:absolute;text-align:center;top:calc(50% - 7px);width:100%;z-index:1}.xp-page-editor-item-view[data-portal-placeholder-error=true] .xp-page-editor-item-placeholder{background-color:#f0a197;border:0;border-top:1px solid #ccc}.xp-page-editor-item-view[data-portal-placeholder-error=true] .xp-page-editor-item-placeholder:before{color:#333;opacity:.75}.xp-page-editor-item-view[data-portal-placeholder-error=true] .xp-page-editor-item-placeholder .display-name{color:#fff}.xp-page-editor-item-view.error{background-color:#a31012}.xp-page-editor-item-view.error .rendering-error{pointer-events:none}.xp-page-editor-item-view.error p{color:#fff;font-size:20px;padding:28px 10px}.xp-page-editor-item-view.error a{color:#fff;display:inline-block;font-size:14px;padding:28px 10px;pointer-events:all;text-decoration:none}.xp-page-editor-item-view.error a:hover{color:#ccc}.xp-page-editor-item-view.error[data-portal-component-type]:before,.xp-page-editor-item-view.error[data-portal-region]:before{content:""}.xp-page-editor-item-view figure.empty{margin:0}.xp-page-editor-item-placeholder{background-color:#e6f1fe;box-sizing:border-box;font-family:Open Sans,Helvetica,sans-serif;margin:1px 0 10px;min-height:137px;padding:50px 15px;position:relative;text-align:center}.xp-page-editor-item-placeholder .selectable-listbox{margin:0;padding:0;z-index:2147483603}.xp-page-editor-item-placeholder .display-name{color:#224e83;display:none;line-height:36px;margin:0;overflow:hidden;position:relative;text-overflow:ellipsis;white-space:pre}[data-portal-placeholder=true] .xp-page-editor-item-placeholder{background-color:#fff;border:1px solid #ccc}[data-portal-placeholder=true] .xp-page-editor-item-placeholder .display-name{display:block}[data-portal-placeholder=true] .xp-page-editor-item-placeholder:hover{border-color:transparent}.xp-page-editor-item-placeholder:before{color:#d3e0f2;font-family:icomoon;font-size:105px;left:50%;line-height:136px;margin-left:-52px;margin-top:-68px;position:absolute;top:50%}.xp-page-editor-image-placeholder .rich-combobox-wrapper{display:none;margin:0 auto;max-width:540px;padding-right:36px;position:relative;width:auto}.xp-page-editor-image-placeholder .rich-combobox-wrapper .rich-combobox{display:block}.xp-page-editor-image-placeholder .rich-combobox-wrapper .rich-combobox.dz-dragover:before{animation:pulsate 4s ease 0s infinite;background-color:#4294de;border-radius:70px;box-shadow:0 0 10px #888;box-sizing:border-box;color:#fff;content:attr(data-drop);display:block;font-weight:400;height:140px;left:50%;line-height:140px;line-height:25px;margin:-70px auto 0 -70px;padding:45px 20px 0;position:absolute;text-align:center;top:50%;width:140px;z-index:1}.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button{align-content:center;align-items:center;background-color:#fff;background-position:50%;background-repeat:no-repeat;border-color:#ccc;box-sizing:border-box;box-sizing:content-box;cursor:pointer;display:flex;display:block;flex-direction:row;flex-wrap:wrap;height:35px;justify-content:start;margin:0;padding:0;position:absolute;right:0;top:0;vertical-align:middle;width:35px}.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button:hover:not(:disabled){background-color:#fff}.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button span,.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button:before{color:#777770}.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button:hover:not(:disabled) span,.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button:hover:not(:disabled):before{color:#333}.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button.active:hover:not(:disabled) span,.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button.active:hover:not(:disabled):before{color:#2c76e9}.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button.active span,.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button.active:before{color:#5a94ee}.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button span{font-family:Open Sans,Helvetica,sans-serif;font-size:14px;transition:color .2s ease-in-out;white-space:nowrap}.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button:disabled{cursor:default;opacity:.5}.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button:hover:not([disabled]){border:1px solid #98c9f2}.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button:hover[disabled]{border:1px solid #c5c5c5}.xp-page-editor-image-placeholder .rich-combobox-wrapper .upload-button:focus{border:1px solid #98c9f2;box-shadow:0 0 5px #98c9f2}.xp-page-editor-image-placeholder .rich-combobox-wrapper .image-uploader-el{position:absolute;right:-1px;top:0}a[data-portal-component-type=part]{display:block;pointer-events:auto}.figure-mixin figure{margin:0}.figure-mixin figure img{display:block;max-height:100%;max-width:100%;width:100%}.figure-mixin figure.editor-style-original img{width:auto}.figure-mixin figure.editor-align-center img{margin:0 auto}.figure-mixin figure.editor-align-left img{margin-right:auto}.figure-mixin figure.editor-align-right img{margin-left:auto}.figure-mixin figure figcaption:empty{display:none}.xp-page-editor-text-view{overflow:auto;padding:5px}.xp-page-editor-text-view ol,.xp-page-editor-text-view ul{margin:0 0 12px 40px}.xp-page-editor-text-view li{list-style:inherit}.xp-page-editor-text-view b,.xp-page-editor-text-view strong{font-style:inherit;font-weight:700}.xp-page-editor-text-view em{font-style:italic;font-weight:inherit}.xp-page-editor-text-view.empty:not(.edit-mode)>:not(.xp-page-editor-item-placeholder){height:0;margin:0}.xp-page-editor-text-view.edit-mode{border:1px solid #ccc;cursor:text;display:block;min-height:0}.xp-page-editor-text-view.edit-mode:hover:not([disabled]){border:1px solid #98c9f2}.xp-page-editor-text-view.edit-mode:hover[disabled]{border:1px solid #c5c5c5}.xp-page-editor-text-view.edit-mode:focus{border:1px solid #98c9f2;box-shadow:0 0 5px #98c9f2}.xp-page-editor-text-view.edit-mode.cke_editable{box-sizing:border-box;display:block;outline:none}.xp-page-editor-text-view.edit-mode.cke_editable>:first-child{margin-top:0}.xp-page-editor-text-view.edit-mode.cke_editable a{cursor:auto;pointer-events:auto}.xp-page-editor-text-view.edit-mode.cke_editable figure{margin:0}.xp-page-editor-text-view.edit-mode.cke_editable figure img{display:block;max-height:100%;max-width:100%;width:100%}.xp-page-editor-text-view.edit-mode.cke_editable figure.editor-style-original img{width:auto}.xp-page-editor-text-view.edit-mode.cke_editable figure.editor-align-center img{margin:0 auto}.xp-page-editor-text-view.edit-mode.cke_editable figure.editor-align-left img{margin-right:auto}.xp-page-editor-text-view.edit-mode.cke_editable figure.editor-align-right img{margin-left:auto}.xp-page-editor-text-view.edit-mode.cke_editable figure figcaption:empty{display:none}.xp-page-editor-text-view:not(.edit-mode){box-sizing:content-box;cursor:move;outline:0 none}.xp-page-editor-text-view:not(.edit-mode)>:first-child{margin-top:0}.xp-page-editor-text-view:not(.edit-mode)>:last-child{margin-bottom:0}.xp-page-editor-text-view:not(.edit-mode) figure{margin:0}.xp-page-editor-text-view:not(.edit-mode) figure img{display:block;max-height:100%;max-width:100%;width:100%}.xp-page-editor-text-view:not(.edit-mode) figure.editor-style-original img{width:auto}.xp-page-editor-text-view:not(.edit-mode) figure.editor-align-center img{margin:0 auto}.xp-page-editor-text-view:not(.edit-mode) figure.editor-align-left img{margin-right:auto}.xp-page-editor-text-view:not(.edit-mode) figure.editor-align-right img{margin-left:auto}.xp-page-editor-text-view:not(.edit-mode) figure figcaption:empty{display:none}.xp-page-editor-text-view:not(.edit-mode).empty{padding:0}.cke_top{border-bottom:1px solid #ccc!important;left:0;padding:6px 0 0!important;position:fixed!important;text-align:center!important;top:0;width:100%!important;z-index:65533}.cke_top .cke_toolbox{display:inline-block;padding-right:30px;vertical-align:middle}.cke_top .cke_toolbox a{pointer-events:auto}.cke_top>div{display:none}.cke_top.visible{box-shadow:0 8px 8px #969696b3}.cke_top.visible>div{display:block}.docked-panel .tab-bar{margin:0}.xp-page-editor-region-view.dragging{padding-bottom:20px;padding-top:10px}.xp-page-editor-region-view.dragging.dragged-over .xp-page-editor-drag-placeholder{display:block}.xp-page-editor-region-view.dragging.dragged-over.empty>.xp-page-editor-region-placeholder{display:none}.xp-page-editor-region-placeholder{background-color:#fff;border:2px dashed #add8e6;color:#add8e6;font-size:20px;line-height:33px}.xp-page-editor-region-placeholder:before{display:none}.xp-page-editor-region-placeholder p{margin:0}.xp-page-editor-page-view.empty .xp-page-editor-item-view{display:none}.xp-page-editor-page-view.empty>.xp-page-editor-page-placeholder{align-items:center;display:flex;height:100%;justify-content:center;margin:0}.xp-page-editor-page-view.empty>.xp-page-editor-page-placeholder .xp-page-editor-page-descriptor-placeholder{align-items:center;display:flex;flex-direction:column;justify-content:center}.xp-page-editor-page-view.empty>.xp-page-editor-page-placeholder .page-placeholder-info{position:relative}.xp-page-editor-page-view.empty>.xp-page-editor-page-placeholder .page-placeholder-info:not(.empty):before{color:#d3e0f2;display:block;font-size:105px;left:50%;margin-left:-50px;margin-top:65px;position:absolute}.xp-page-editor-page-view.empty>.xp-page-editor-page-placeholder .page-placeholder-info .page-placeholder-info-line1{color:#53585f;font-size:22px;margin-bottom:10px}.xp-page-editor-page-view.empty>.xp-page-editor-page-placeholder .page-placeholder-info .page-placeholder-info-line2{color:#acacac;font-size:14px}.xp-page-editor-page-view.locked .xp-page-editor-item-view.empty{display:none}.xp-page-editor-page-view .html-area-modal-dialog .xp-admin-common-text-input{color:inherit;font-size:12px}.xp-page-editor-page-view .html-area-modal-dialog .input-wrapper .checkbox.form-input{margin-top:0}.xp-page-editor-page-view:before{display:none}.xp-page-editor-page-view .fnr-panel{position:fixed!important;top:0!important}#drag-helper{border-radius:30px;height:30px!important;margin:5px 3px 0;position:absolute;width:30px!important}#drag-helper:before{font-size:20px;line-height:30px}
@@ -0,0 +1,6 @@
1
+ import { ItemTypeConfig } from '../../../../../../.xp/dev/lib-contentstudio/page-editor/ItemTypeConfig';
2
+ import { ItemType } from '../../../../../../.xp/dev/lib-contentstudio/page-editor/ItemType';
3
+ export declare class ComponentItemType extends ItemType {
4
+ protected getItemTypeConfig(itemType: string): ItemTypeConfig;
5
+ }
6
+ //# sourceMappingURL=ComponentItemType.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ComponentItemType.d.ts","sourceRoot":"","sources":["../../../../../src/main/resources/assets/js/page-editor/ComponentItemType.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,cAAc,EAA0B,MAAM,sDAAsD,CAAC;AAC7G,OAAO,EAAC,QAAQ,EAAC,MAAM,gDAAgD,CAAC;AAExE,qBAAa,iBACT,SAAQ,QAAQ;IAEhB,SAAS,CAAC,iBAAiB,CAAC,QAAQ,EAAE,MAAM,GAAG,cAAc;CAchE"}
@@ -0,0 +1,84 @@
1
+ import { Element } from '../../../../../../.xp/dev/lib-admin-ui/dom/Element';
2
+ import { Cloneable } from '../../../../../../.xp/dev/lib-admin-ui/Cloneable';
3
+ import { ItemViewIdProducer } from './ItemViewIdProducer';
4
+ import { ItemViewPlaceholder } from './ItemViewPlaceholder';
5
+ import { ItemView } from './ItemView';
6
+ import { ItemViewAddedEvent } from '../../../../../../.xp/dev/lib-contentstudio/page-editor/event/ItemViewAddedEvent';
7
+ import { ItemViewRemovedEvent } from '../../../../../../.xp/dev/lib-contentstudio/page-editor/event/ItemViewRemovedEvent';
8
+ import { ItemViewSelectedEventConfig } from '../../../../../../.xp/dev/lib-contentstudio/page-editor/event/outgoing/navigation/SelectComponentEvent';
9
+ import { ComponentItemType } from './ComponentItemType';
10
+ import { ItemViewContextMenuPosition } from './ItemViewContextMenuPosition';
11
+ import { CreateItemViewConfig } from './CreateItemViewConfig';
12
+ import { ItemViewFactory } from './ItemViewFactory';
13
+ import { RegionView } from './RegionView';
14
+ import { ComponentPath } from '../../../../../../.xp/dev/lib-contentstudio/app/page/region/ComponentPath';
15
+ import { Action } from '../../../../../../.xp/dev/lib-admin-ui/ui/Action';
16
+ import { LiveEditParams } from '../../../../../../.xp/dev/lib-contentstudio/page-editor/LiveEditParams';
17
+ export declare class ComponentViewBuilder {
18
+ itemViewIdProducer: ItemViewIdProducer;
19
+ itemViewFactory: ItemViewFactory;
20
+ type: ComponentItemType;
21
+ parentRegionView: RegionView;
22
+ parentElement: Element;
23
+ element: Element;
24
+ positionIndex: number;
25
+ contextMenuActions: Action[];
26
+ placeholder: ItemViewPlaceholder;
27
+ inspectActionRequired: boolean;
28
+ liveEditParams: LiveEditParams;
29
+ setItemViewIdProducer(value: ItemViewIdProducer): this;
30
+ setItemViewFactory(value: ItemViewFactory): this;
31
+ setType(value: ComponentItemType): this;
32
+ setParentRegionView(value: RegionView): this;
33
+ setParentElement(value: Element): this;
34
+ setElement(value: Element): this;
35
+ setPositionIndex(value: number): this;
36
+ setContextMenuActions(actions: Action[]): this;
37
+ setPlaceholder(value: ItemViewPlaceholder): this;
38
+ setInspectActionRequired(value: boolean): this;
39
+ setLiveEditParams(value: LiveEditParams): this;
40
+ }
41
+ export declare class ComponentView extends ItemView implements Cloneable {
42
+ protected empty: boolean;
43
+ private moving;
44
+ private itemViewAddedListeners;
45
+ private itemViewRemovedListeners;
46
+ protected initOnAdd: boolean;
47
+ protected resetAction: Action;
48
+ static debug: boolean;
49
+ private keyBinding;
50
+ constructor(builder: ComponentViewBuilder);
51
+ protected initListeners(): void;
52
+ refreshEmptyState(): ItemView;
53
+ protected addComponentContextMenuActions(inspectActionRequired: boolean): void;
54
+ private initKeyBoardBindings;
55
+ select(config?: ItemViewSelectedEventConfig, menuPosition?: ItemViewContextMenuPosition): void;
56
+ deselect(silent?: boolean): void;
57
+ remove(): ComponentView;
58
+ getType(): ComponentItemType;
59
+ getName(): string;
60
+ getParentItemView(): RegionView;
61
+ setMoving(value: boolean): void;
62
+ isMoving(): boolean;
63
+ getPath(): ComponentPath;
64
+ clone(): ComponentView;
65
+ protected makeDuplicateConfig(config?: CreateItemViewConfig<RegionView>): CreateItemViewConfig<RegionView>;
66
+ duplicate(): ComponentView;
67
+ toString(): string;
68
+ replaceWith(replacement: ComponentView): void;
69
+ moveToRegion(toRegionView: RegionView, toIndex: number): void;
70
+ onItemViewAdded(listener: (event: ItemViewAddedEvent) => void): void;
71
+ unItemViewAdded(listener: (event: ItemViewAddedEvent) => void): void;
72
+ notifyItemViewAdded(view: ItemView, isNew?: boolean): void;
73
+ onItemViewRemoved(listener: (event: ItemViewRemovedEvent) => void): void;
74
+ unItemViewRemoved(listener: (event: ItemViewRemovedEvent) => void): void;
75
+ notifyItemViewRemoved(view: ItemView): void;
76
+ getNewItemIndex(): number;
77
+ addComponentView(componentView: ComponentView, index: number): void;
78
+ protected getRegionView(): RegionView;
79
+ isEmpty(): boolean;
80
+ reset(): void;
81
+ private skipInitOnAdd;
82
+ protected isDragging(): boolean;
83
+ }
84
+ //# sourceMappingURL=ComponentView.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ComponentView.d.ts","sourceRoot":"","sources":["../../../../../src/main/resources/assets/js/page-editor/ComponentView.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ import { ItemViewContextMenuTitle } from '../../../../../../.xp/dev/lib-contentstudio/page-editor/ItemViewContextMenuTitle';
2
+ import { ComponentItemType } from './ComponentItemType';
3
+ import { Component } from '../../../../../../.xp/dev/lib-contentstudio/app/page/region/Component';
4
+ export declare class ComponentViewContextMenuTitle<_COMPONENT extends Component> extends ItemViewContextMenuTitle {
5
+ constructor(name: string, type: ComponentItemType);
6
+ }
7
+ //# sourceMappingURL=ComponentViewContextMenuTitle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ComponentViewContextMenuTitle.d.ts","sourceRoot":"","sources":["../../../../../src/main/resources/assets/js/page-editor/ComponentViewContextMenuTitle.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,wBAAwB,EAAC,MAAM,gEAAgE,CAAC;AACxG,OAAO,EAAC,KAAK,iBAAiB,EAAC,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAAC,KAAK,SAAS,EAAC,MAAM,qDAAqD,CAAC;AAEnF,qBAAa,6BAA6B,CAAC,UAAU,SAAS,SAAS,CACnE,SAAQ,wBAAwB;gBAEpB,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,iBAAiB;CAIpD"}
@@ -0,0 +1,10 @@
1
+ import { ComponentView, ComponentViewBuilder } from './ComponentView';
2
+ import { Action } from '../../../../../../.xp/dev/lib-admin-ui/ui/Action';
3
+ export declare abstract class ContentBasedComponentView extends ComponentView {
4
+ protected editAction: Action;
5
+ protected constructor(builder: ComponentViewBuilder);
6
+ private addEditActionToMenu;
7
+ private createEditAction;
8
+ protected getContentId(): string;
9
+ }
10
+ //# sourceMappingURL=ContentBasedComponentView.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ContentBasedComponentView.d.ts","sourceRoot":"","sources":["../../../../../src/main/resources/assets/js/page-editor/ContentBasedComponentView.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,aAAa,EAAE,KAAK,oBAAoB,EAAC,MAAM,iBAAiB,CAAC;AACzE,OAAO,EAAC,MAAM,EAAC,MAAM,gCAAgC,CAAC;AAKtD,8BAAsB,yBAClB,SAAQ,aAAa;IAErB,SAAS,CAAC,UAAU,EAAE,MAAM,CAAC;IAE7B,SAAS,aAAa,OAAO,EAAE,oBAAoB;IAMnD,OAAO,CAAC,mBAAmB;IAM3B,OAAO,CAAC,gBAAgB;IAQxB,SAAS,CAAC,YAAY,IAAI,MAAM;CAInC"}
@@ -0,0 +1,28 @@
1
+ import { Element } from '../../../../../../.xp/dev/lib-admin-ui/dom/Element';
2
+ import { ItemViewIdProducer } from './ItemViewIdProducer';
3
+ import { ItemView } from './ItemView';
4
+ import { ItemViewFactory } from './ItemViewFactory';
5
+ import { RegionView } from './RegionView';
6
+ import { LiveEditParams } from '../../../../../../.xp/dev/lib-contentstudio/page-editor/LiveEditParams';
7
+ import { ContentId } from '../../../../../../.xp/dev/lib-contentstudio/app/content/ContentId';
8
+ export declare class CreateItemViewConfig<PARENT extends ItemView> {
9
+ itemViewIdProducer: ItemViewIdProducer;
10
+ itemViewFactory: ItemViewFactory;
11
+ liveEditParams: LiveEditParams;
12
+ parentView: PARENT;
13
+ parentElement: Element;
14
+ element: Element;
15
+ positionIndex: number;
16
+ setItemViewIdProducer(value: ItemViewIdProducer): this;
17
+ setItemViewFactory(value: ItemViewFactory): this;
18
+ setParentView(value: PARENT): this;
19
+ setParentElement(value: Element): this;
20
+ setElement(value: Element): this;
21
+ setPositionIndex(value: number): this;
22
+ setLiveEditParams(value: LiveEditParams): this;
23
+ }
24
+ export declare class CreateFragmentViewConfig extends CreateItemViewConfig<RegionView> {
25
+ fragmentContentId: ContentId;
26
+ setFragmentContentId(value: ContentId): this;
27
+ }
28
+ //# sourceMappingURL=CreateItemViewConfig.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateItemViewConfig.d.ts","sourceRoot":"","sources":["../../../../../src/main/resources/assets/js/page-editor/CreateItemViewConfig.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,OAAO,EAAC,MAAM,kCAAkC,CAAC;AAC9D,OAAO,EAAC,KAAK,kBAAkB,EAAC,MAAM,sBAAsB,CAAC;AAC7D,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,YAAY,CAAC;AACzC,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,mBAAmB,CAAC;AACvD,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAC,KAAK,cAAc,EAAC,MAAM,sDAAsD,CAAC;AACzF,OAAO,EAAC,KAAK,SAAS,EAAC,MAAM,iDAAiD,CAAC;AAE/E,qBAAa,oBAAoB,CAAC,MAAM,SAAS,QAAQ;IAErD,kBAAkB,EAAE,kBAAkB,CAAC;IAEvC,eAAe,EAAE,eAAe,CAAC;IAEjC,cAAc,EAAE,cAAc,CAAC;IAE/B,UAAU,EAAE,MAAM,CAAC;IAEnB,aAAa,EAAE,OAAO,CAAC;IAEvB,OAAO,EAAE,OAAO,CAAC;IAEjB,aAAa,EAAE,MAAM,CAAM;IAK3B,qBAAqB,CAAC,KAAK,EAAE,kBAAkB,GAAG,IAAI;IAQtD,kBAAkB,CAAC,KAAK,EAAE,eAAe,GAAG,IAAI;IAKhD,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAKlC,gBAAgB,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI;IAKtC,UAAU,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI;IAKhC,gBAAgB,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAKrC,iBAAiB,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI;CAIjD;AAED,qBAAa,wBACT,SAAQ,oBAAoB,CAAC,UAAU,CAAC;IAExC,iBAAiB,EAAE,SAAS,CAAC;IAE7B,oBAAoB,CAAC,KAAK,EAAE,SAAS,GAAG,IAAI;CAK/C"}
@@ -0,0 +1,8 @@
1
+ import { CreateItemViewConfig } from './CreateItemViewConfig';
2
+ import { RegionView } from './RegionView';
3
+ export declare class CreateTextComponentViewConfig extends CreateItemViewConfig<RegionView> {
4
+ text: string;
5
+ constructor();
6
+ setText(value: string): this;
7
+ }
8
+ //# sourceMappingURL=CreateTextComponentViewConfig.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateTextComponentViewConfig.d.ts","sourceRoot":"","sources":["../../../../../src/main/resources/assets/js/page-editor/CreateTextComponentViewConfig.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,oBAAoB,EAAC,MAAM,wBAAwB,CAAC;AAC5D,OAAO,EAAC,KAAK,UAAU,EAAC,MAAM,cAAc,CAAC;AAE7C,qBAAa,6BACT,SAAQ,oBAAoB,CAAC,UAAU,CAAC;IAExC,IAAI,EAAE,MAAM,CAAC;;IAMb,OAAO,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;CAI/B"}
@@ -0,0 +1,11 @@
1
+ import { ItemView } from './ItemView';
2
+ export declare class Cursor {
3
+ defaultBodyCursor: string;
4
+ private static INSTANCE;
5
+ constructor();
6
+ static get(): Cursor;
7
+ displayItemViewCursor(itemView: ItemView): void;
8
+ hide(): void;
9
+ reset(): void;
10
+ }
11
+ //# sourceMappingURL=Cursor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Cursor.d.ts","sourceRoot":"","sources":["../../../../../src/main/resources/assets/js/page-editor/Cursor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,QAAQ,EAAC,MAAM,YAAY,CAAC;AAGzC,qBAAa,MAAM;IAEf,iBAAiB,EAAE,MAAM,CAAC;IAE1B,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAS;;WASlB,GAAG,IAAI,MAAM;IAO3B,qBAAqB,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;IAO/C,IAAI,IAAI,IAAI;IAIZ,KAAK,IAAI,IAAI;CAIhB"}
@@ -0,0 +1,18 @@
1
+ import { ComponentView, ComponentViewBuilder } from './ComponentView';
2
+ import { DescriptorBasedComponent } from '../../../../../../.xp/dev/lib-contentstudio/app/page/region/DescriptorBasedComponent';
3
+ import { DivEl } from '../../../../../../.xp/dev/lib-admin-ui/dom/DivEl';
4
+ import { DescriptorBasedComponentViewPlaceholder } from './DescriptorBasedComponentViewPlaceholder';
5
+ export declare abstract class DescriptorBasedComponentView extends ComponentView {
6
+ private static HAS_DESCRIPTOR_CLASS;
7
+ protected placeholder: DescriptorBasedComponentViewPlaceholder;
8
+ protected emptyDescriptorBlock?: DivEl;
9
+ protected inspectActionRequired: boolean;
10
+ protected constructor(builder: ComponentViewBuilder);
11
+ refreshEmptyState(): this;
12
+ protected getComponent(): DescriptorBasedComponent;
13
+ hasDescriptor(): boolean;
14
+ protected showEmptyDescriptorBlock(component: DescriptorBasedComponent): void;
15
+ protected abstract makeEmptyDescriptorText(component: DescriptorBasedComponent): string;
16
+ protected hideEmptyDescriptorBlock(): void;
17
+ }
18
+ //# sourceMappingURL=DescriptorBasedComponentView.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescriptorBasedComponentView.d.ts","sourceRoot":"","sources":["../../../../../src/main/resources/assets/js/page-editor/DescriptorBasedComponentView.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAE,KAAK,oBAAoB,EAAC,MAAM,iBAAiB,CAAC;AACzE,OAAO,EAAC,wBAAwB,EAAC,MAAM,oEAAoE,CAAC;AAE5G,OAAO,EAAC,KAAK,EAAC,MAAM,gCAAgC,CAAC;AACrD,OAAO,EAAC,KAAK,uCAAuC,EAAC,MAAM,2CAA2C,CAAC;AAEvG,8BAAsB,4BAClB,SAAQ,aAAa;IAErB,OAAO,CAAC,MAAM,CAAC,oBAAoB,CAAoB;IAEvD,UAAkB,WAAW,EAAE,uCAAuC,CAAC;IAEvE,SAAS,CAAC,oBAAoB,CAAC,EAAE,KAAK,CAAC;IAEvC,SAAS,CAAC,qBAAqB,EAAE,OAAO,CAAC;IAEzC,SAAS,aAAa,OAAO,EAAE,oBAAoB;IAMnD,iBAAiB,IAAI,IAAI;IAgBzB,SAAS,CAAC,YAAY,IAAI,wBAAwB;IAUlD,aAAa,IAAI,OAAO;IAIxB,SAAS,CAAC,wBAAwB,CAAC,SAAS,EAAE,wBAAwB,GAAG,IAAI;IAU7E,SAAS,CAAC,QAAQ,CAAC,uBAAuB,CAAC,SAAS,EAAE,wBAAwB,GAAG,MAAM;IAEvF,SAAS,CAAC,wBAAwB,IAAI,IAAI;CAG7C"}
@@ -0,0 +1,6 @@
1
+ import { ItemViewPlaceholder } from './ItemViewPlaceholder';
2
+ import { ComponentType } from '../../../../../../.xp/dev/lib-contentstudio/app/page/region/ComponentType';
3
+ export declare abstract class DescriptorBasedComponentViewPlaceholder extends ItemViewPlaceholder {
4
+ abstract getType(): ComponentType;
5
+ }
6
+ //# sourceMappingURL=DescriptorBasedComponentViewPlaceholder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DescriptorBasedComponentViewPlaceholder.d.ts","sourceRoot":"","sources":["../../../../../src/main/resources/assets/js/page-editor/DescriptorBasedComponentViewPlaceholder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,mBAAmB,EAAC,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAC,KAAK,aAAa,EAAC,MAAM,yDAAyD,CAAC;AAE3F,8BAAsB,uCAClB,SAAQ,mBAAmB;IAE3B,QAAQ,CAAC,OAAO,IAAI,aAAa;CACpC"}
@@ -0,0 +1,74 @@
1
+ import { ComponentView } from './ComponentView';
2
+ import { RegionView } from './RegionView';
3
+ import { ItemView } from './ItemView';
4
+ import { PageView } from './PageView';
5
+ export declare class DragAndDrop {
6
+ static debug: boolean;
7
+ private static messageCounter;
8
+ private static instance;
9
+ private pageView;
10
+ REGION_SELECTOR: string;
11
+ ITEM_NOT_DRAGGABLE_SELECTOR: string;
12
+ PLACEHOLDER_CONTAINER_SELECTOR: string;
13
+ DRAGGED_OVER_CLASS: string;
14
+ DRAGGING_ACTIVE_CLASS: string;
15
+ SORTABLE_ITEMS_SELECTOR: string;
16
+ private dragging;
17
+ private wasDropped;
18
+ private newlyDropped;
19
+ private wasDestroyed;
20
+ private newItemItemType;
21
+ private draggedComponentView;
22
+ private dragStartedListeners;
23
+ private dragStoppedListeners;
24
+ private droppedListeners;
25
+ private canceledListeners;
26
+ static init(pageView: PageView): void;
27
+ static get(): DragAndDrop;
28
+ constructor(pageView: PageView);
29
+ isDragging(): boolean;
30
+ createSortableLayout(component: ItemView): void;
31
+ refreshSortable(): void;
32
+ private processMouseOverRegionView;
33
+ private processMouseOutRegionView;
34
+ createSortable(selector: JQuery<HTMLElement>): void;
35
+ createDraggable(jq: JQuery): void;
36
+ destroyDraggable(jq: JQuery): void;
37
+ handleDraggableStart(event: Event, ui: JQueryUI.DraggableEventUIParams): void;
38
+ handleDraggableStop(event: Event, ui: JQueryUI.DraggableEventUIParams): void;
39
+ handleSortStart(event: JQueryEventObject, ui: JQueryUI.SortableUIParams): void;
40
+ handleBeforeStop(event: JQueryEventObject, ui: JQueryUI.SortableUIParams): void;
41
+ handleSortStop(event: JQueryEventObject, ui: JQueryUI.SortableUIParams): void;
42
+ isNewlyDropped(): boolean;
43
+ handleActivate(event: Event, ui: JQueryUI.SortableUIParams): void;
44
+ handleDeactivate(event: Event, ui: JQueryUI.SortableUIParams): void;
45
+ handleDragOver(event: Event, ui: JQueryUI.SortableUIParams): void;
46
+ handleDragOut(event: Event, ui: JQueryUI.SortableUIParams): void;
47
+ handleSortChange(event: Event, ui: JQueryUI.SortableUIParams): void;
48
+ handleSortUpdate(event: Event, ui: JQueryUI.SortableUIParams): void;
49
+ handleRemove(event: Event, ui: JQueryUI.SortableUIParams): void;
50
+ handleReceive(event: Event, ui: JQueryUI.SortableUIParams): void;
51
+ private cancelDrag;
52
+ onDragStarted(listener: (componentView: ComponentView) => void): void;
53
+ unDragStarted(listener: (componentView: ComponentView) => void): void;
54
+ private notifyDragStarted;
55
+ onDragStopped(listener: (componentView: ComponentView) => void): void;
56
+ unDragStopped(listener: (componentView: ComponentView) => void): void;
57
+ private notifyDragStopped;
58
+ onDropped(listener: (componentView: ComponentView, regionView: RegionView) => void): void;
59
+ unDropped(listener: (componentView: ComponentView, regionView: RegionView) => void): void;
60
+ private notifyDropped;
61
+ onCanceled(listener: (componentView: ComponentView) => void): void;
62
+ unCanceled(listener: (componentView: ComponentView) => void): void;
63
+ private notifyCanceled;
64
+ private updateHelperAndPlaceholder;
65
+ private getItemType;
66
+ private isDraggingFromContextWindow;
67
+ private isDraggingLayoutOverLayout;
68
+ private getComponentView;
69
+ private getRegionView;
70
+ private createSortableItemsSelector;
71
+ private updateScrollSensitivity;
72
+ private calculateScrollSensitivity;
73
+ }
74
+ //# sourceMappingURL=DragAndDrop.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DragAndDrop.d.ts","sourceRoot":"","sources":["../../../../../src/main/resources/assets/js/page-editor/DragAndDrop.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,20 @@
1
+ import { RegionView } from './RegionView';
2
+ import { ItemType } from '../../../../../../.xp/dev/lib-contentstudio/page-editor/ItemType';
3
+ import { ItemViewPlaceholder } from './ItemViewPlaceholder';
4
+ export declare class DragPlaceholder extends ItemViewPlaceholder {
5
+ private itemType;
6
+ private pattern;
7
+ private regionView;
8
+ private messageEl;
9
+ private static instance;
10
+ static debug: boolean;
11
+ static get(): DragPlaceholder;
12
+ constructor();
13
+ setItemType(type: ItemType): DragPlaceholder;
14
+ private getDefaultText;
15
+ setDropAllowed(allowed: boolean): DragPlaceholder;
16
+ setText(text: string): DragPlaceholder;
17
+ setRegionView(regionView: RegionView): DragPlaceholder;
18
+ reset(): DragPlaceholder;
19
+ }
20
+ //# sourceMappingURL=DragPlaceholder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DragPlaceholder.d.ts","sourceRoot":"","sources":["../../../../../src/main/resources/assets/js/page-editor/DragPlaceholder.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAC,KAAK,QAAQ,EAAC,MAAM,gDAAgD,CAAC;AAC7E,OAAO,EAAC,mBAAmB,EAAC,MAAM,uBAAuB,CAAC;AAI1D,qBAAa,eACT,SAAQ,mBAAmB;IAE3B,OAAO,CAAC,QAAQ,CAAW;IAE3B,OAAO,CAAC,OAAO,CAA2C;IAE1D,OAAO,CAAC,UAAU,CAAa;IAE/B,OAAO,CAAC,SAAS,CAAQ;IAEzB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAkB;IAEzC,OAAc,KAAK,EAAE,OAAO,CAAS;WAEvB,GAAG,IAAI,eAAe;;IAiBpC,WAAW,CAAC,IAAI,EAAE,QAAQ,GAAG,eAAe;IAiB5C,OAAO,CAAC,cAAc;IAItB,cAAc,CAAC,OAAO,EAAE,OAAO,GAAG,eAAe;IAWjD,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,eAAe;IAQtC,aAAa,CAAC,UAAU,EAAE,UAAU,GAAG,eAAe;IAStD,KAAK,IAAI,eAAe;CAM3B"}
@@ -0,0 +1,27 @@
1
+ import { Element } from '../../../../../../.xp/dev/lib-admin-ui/dom/Element';
2
+ import { ElementDimensions, ItemView } from './ItemView';
3
+ import { HighlighterStyle } from '../../../../../../.xp/dev/lib-contentstudio/page-editor/ItemTypeConfig';
4
+ export declare enum HighlighterMode {
5
+ RECTANGLE = 0,
6
+ CROSSHAIR = 1
7
+ }
8
+ export declare class Highlighter extends Element {
9
+ private rectangle;
10
+ private path;
11
+ private static INSTANCE;
12
+ private lastHighlightedItemView;
13
+ private mode;
14
+ constructor(type?: HighlighterMode);
15
+ static get(): Highlighter;
16
+ highlightItemView(itemView: ItemView): void;
17
+ highlightElement(dimensions: ElementDimensions, style: HighlighterStyle): void;
18
+ updateLastHighlightedItemView(): void;
19
+ setMode(mode: HighlighterMode): Highlighter;
20
+ isViewInsideSelectedContainer(itemView: ItemView): boolean;
21
+ getSelectedView(): ItemView;
22
+ unselect(): void;
23
+ protected preProcessStyle(style: HighlighterStyle, _isEmptyView: boolean): HighlighterStyle;
24
+ private resize;
25
+ private generatePath;
26
+ }
27
+ //# sourceMappingURL=Highlighter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Highlighter.d.ts","sourceRoot":"","sources":["../../../../../src/main/resources/assets/js/page-editor/Highlighter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,EAA2B,MAAM,kCAAkC,CAAC;AAEnF,OAAO,EAAC,KAAK,iBAAiB,EAAE,KAAK,QAAQ,EAAC,MAAM,YAAY,CAAC;AACjE,OAAO,KAAK,EAAC,gBAAgB,EAAC,MAAM,sDAAsD,CAAC;AAG3F,oBAAY,eAAe;IACvB,SAAS,IAAA;IACT,SAAS,IAAA;CACZ;AAED,qBAAa,WACT,SAAQ,OAAO;IAEf,OAAO,CAAC,SAAS,CAAU;IAE3B,OAAO,CAAC,IAAI,CAAU;IAEtB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAc;IAErC,OAAO,CAAC,uBAAuB,CAAW;IAE1C,OAAO,CAAC,IAAI,CAAkB;gBAElB,IAAI,CAAC,EAAE,eAAe;WAmBpB,GAAG,IAAI,WAAW;IAOhC,iBAAiB,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;IAc3C,gBAAgB,CAAC,UAAU,EAAE,iBAAiB,EAAE,KAAK,EAAE,gBAAgB,GAAG,IAAI;IAK9E,6BAA6B;IAI7B,OAAO,CAAC,IAAI,EAAE,eAAe,GAAG,WAAW;IAW3C,6BAA6B,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO;IAS1D,eAAe,IAAI,QAAQ;IAI3B,QAAQ;IAKR,SAAS,CAAC,eAAe,CAAC,KAAK,EAAE,gBAAgB,EAAE,YAAY,EAAE,OAAO,GAAG,gBAAgB;IAQ3F,OAAO,CAAC,MAAM;IAgDd,OAAO,CAAC,YAAY;CAKvB"}