decap-cms-core 2.56.0-beta.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 (290) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +9 -0
  3. package/dist/decap-cms-core.js +47 -0
  4. package/dist/decap-cms-core.js.LICENSE.txt +109 -0
  5. package/dist/decap-cms-core.js.map +1 -0
  6. package/dist/esm/actions/auth.js +118 -0
  7. package/dist/esm/actions/collections.js +23 -0
  8. package/dist/esm/actions/config.js +482 -0
  9. package/dist/esm/actions/deploys.js +89 -0
  10. package/dist/esm/actions/editorialWorkflow.js +511 -0
  11. package/dist/esm/actions/entries.js +940 -0
  12. package/dist/esm/actions/media.js +168 -0
  13. package/dist/esm/actions/mediaLibrary.js +606 -0
  14. package/dist/esm/actions/notifications.js +32 -0
  15. package/dist/esm/actions/search.js +156 -0
  16. package/dist/esm/actions/status.js +93 -0
  17. package/dist/esm/actions/waitUntil.js +39 -0
  18. package/dist/esm/backend.js +1073 -0
  19. package/dist/esm/bootstrap.js +107 -0
  20. package/dist/esm/components/App/App.js +301 -0
  21. package/dist/esm/components/App/Header.js +162 -0
  22. package/dist/esm/components/App/NotFoundPage.js +27 -0
  23. package/dist/esm/components/Collection/Collection.js +210 -0
  24. package/dist/esm/components/Collection/CollectionControls.js +54 -0
  25. package/dist/esm/components/Collection/CollectionSearch.js +235 -0
  26. package/dist/esm/components/Collection/CollectionTop.js +77 -0
  27. package/dist/esm/components/Collection/ControlButton.js +23 -0
  28. package/dist/esm/components/Collection/Entries/Entries.js +74 -0
  29. package/dist/esm/components/Collection/Entries/EntriesCollection.js +193 -0
  30. package/dist/esm/components/Collection/Entries/EntriesSearch.js +117 -0
  31. package/dist/esm/components/Collection/Entries/EntryCard.js +134 -0
  32. package/dist/esm/components/Collection/Entries/EntryListing.js +120 -0
  33. package/dist/esm/components/Collection/FilterControl.js +41 -0
  34. package/dist/esm/components/Collection/GroupControl.js +41 -0
  35. package/dist/esm/components/Collection/NestedCollection.js +311 -0
  36. package/dist/esm/components/Collection/Sidebar.js +102 -0
  37. package/dist/esm/components/Collection/SortControl.js +67 -0
  38. package/dist/esm/components/Collection/ViewStyleControl.js +47 -0
  39. package/dist/esm/components/Editor/Editor.js +479 -0
  40. package/dist/esm/components/Editor/EditorControlPane/EditorControl.js +393 -0
  41. package/dist/esm/components/Editor/EditorControlPane/EditorControlPane.js +259 -0
  42. package/dist/esm/components/Editor/EditorControlPane/Widget.js +355 -0
  43. package/dist/esm/components/Editor/EditorInterface.js +401 -0
  44. package/dist/esm/components/Editor/EditorPreviewPane/EditorPreview.js +56 -0
  45. package/dist/esm/components/Editor/EditorPreviewPane/EditorPreviewContent.js +34 -0
  46. package/dist/esm/components/Editor/EditorPreviewPane/EditorPreviewPane.js +252 -0
  47. package/dist/esm/components/Editor/EditorPreviewPane/PreviewHOC.js +39 -0
  48. package/dist/esm/components/Editor/EditorToolbar.js +551 -0
  49. package/dist/esm/components/Editor/withWorkflow.js +64 -0
  50. package/dist/esm/components/EditorWidgets/Unknown/UnknownControl.js +26 -0
  51. package/dist/esm/components/EditorWidgets/Unknown/UnknownPreview.js +28 -0
  52. package/dist/esm/components/EditorWidgets/index.js +7 -0
  53. package/dist/esm/components/MediaLibrary/EmptyMessage.js +30 -0
  54. package/dist/esm/components/MediaLibrary/MediaLibrary.js +444 -0
  55. package/dist/esm/components/MediaLibrary/MediaLibraryButtons.js +110 -0
  56. package/dist/esm/components/MediaLibrary/MediaLibraryCard.js +108 -0
  57. package/dist/esm/components/MediaLibrary/MediaLibraryCardGrid.js +211 -0
  58. package/dist/esm/components/MediaLibrary/MediaLibraryHeader.js +40 -0
  59. package/dist/esm/components/MediaLibrary/MediaLibraryModal.js +163 -0
  60. package/dist/esm/components/MediaLibrary/MediaLibrarySearch.js +60 -0
  61. package/dist/esm/components/MediaLibrary/MediaLibraryTop.js +134 -0
  62. package/dist/esm/components/UI/DragDrop.js +84 -0
  63. package/dist/esm/components/UI/ErrorBoundary.js +184 -0
  64. package/dist/esm/components/UI/FileUploadButton.js +34 -0
  65. package/dist/esm/components/UI/Modal.js +113 -0
  66. package/dist/esm/components/UI/Notifications.js +74 -0
  67. package/dist/esm/components/UI/SettingsDropdown.js +118 -0
  68. package/dist/esm/components/UI/index.js +60 -0
  69. package/dist/esm/components/Workflow/Workflow.js +144 -0
  70. package/dist/esm/components/Workflow/WorkflowCard.js +137 -0
  71. package/dist/esm/components/Workflow/WorkflowList.js +219 -0
  72. package/dist/esm/constants/collectionTypes.js +10 -0
  73. package/dist/esm/constants/collectionViews.js +10 -0
  74. package/dist/esm/constants/commitProps.js +10 -0
  75. package/dist/esm/constants/configSchema.js +594 -0
  76. package/dist/esm/constants/fieldInference.js +67 -0
  77. package/dist/esm/constants/publishModes.js +28 -0
  78. package/dist/esm/constants/validationErrorTypes.js +13 -0
  79. package/dist/esm/formats/formats.js +82 -0
  80. package/dist/esm/formats/frontmatter.js +163 -0
  81. package/dist/esm/formats/helpers.js +18 -0
  82. package/dist/esm/formats/json.js +15 -0
  83. package/dist/esm/formats/toml.js +40 -0
  84. package/dist/esm/formats/yaml.js +63 -0
  85. package/dist/esm/index.js +20 -0
  86. package/dist/esm/integrations/index.js +37 -0
  87. package/dist/esm/integrations/providers/algolia/implementation.js +184 -0
  88. package/dist/esm/integrations/providers/assetStore/implementation.js +175 -0
  89. package/dist/esm/lib/consoleError.js +9 -0
  90. package/dist/esm/lib/formatters.js +204 -0
  91. package/dist/esm/lib/i18n.js +381 -0
  92. package/dist/esm/lib/phrases.js +13 -0
  93. package/dist/esm/lib/registry.js +322 -0
  94. package/dist/esm/lib/serializeEntryValues.js +74 -0
  95. package/dist/esm/lib/textHelper.js +15 -0
  96. package/dist/esm/lib/urlHelper.js +128 -0
  97. package/dist/esm/mediaLibrary.js +42 -0
  98. package/dist/esm/reducers/auth.js +35 -0
  99. package/dist/esm/reducers/collections.js +424 -0
  100. package/dist/esm/reducers/combinedReducer.js +19 -0
  101. package/dist/esm/reducers/config.js +42 -0
  102. package/dist/esm/reducers/cursors.js +38 -0
  103. package/dist/esm/reducers/deploys.js +53 -0
  104. package/dist/esm/reducers/editorialWorkflow.js +98 -0
  105. package/dist/esm/reducers/entries.js +591 -0
  106. package/dist/esm/reducers/entryDraft.js +184 -0
  107. package/dist/esm/reducers/globalUI.js +32 -0
  108. package/dist/esm/reducers/index.js +84 -0
  109. package/dist/esm/reducers/integrations.js +68 -0
  110. package/dist/esm/reducers/mediaLibrary.js +265 -0
  111. package/dist/esm/reducers/medias.js +76 -0
  112. package/dist/esm/reducers/notifications.js +36 -0
  113. package/dist/esm/reducers/search.js +89 -0
  114. package/dist/esm/reducers/status.js +37 -0
  115. package/dist/esm/redux/index.js +14 -0
  116. package/dist/esm/redux/middleware/waitUntilAction.js +56 -0
  117. package/dist/esm/routing/history.js +21 -0
  118. package/dist/esm/types/diacritics.d.js +1 -0
  119. package/dist/esm/types/global.d.js +5 -0
  120. package/dist/esm/types/immutable.js +5 -0
  121. package/dist/esm/types/redux.js +16 -0
  122. package/dist/esm/types/tomlify-j0.4.d.js +1 -0
  123. package/dist/esm/valueObjects/AssetProxy.js +60 -0
  124. package/dist/esm/valueObjects/EditorComponent.js +48 -0
  125. package/dist/esm/valueObjects/Entry.js +27 -0
  126. package/index.d.ts +587 -0
  127. package/package.json +102 -0
  128. package/src/__tests__/backend.spec.js +934 -0
  129. package/src/actions/__tests__/config.spec.js +1009 -0
  130. package/src/actions/__tests__/editorialWorkflow.spec.js +216 -0
  131. package/src/actions/__tests__/entries.spec.js +575 -0
  132. package/src/actions/__tests__/media.spec.ts +171 -0
  133. package/src/actions/__tests__/mediaLibrary.spec.js +327 -0
  134. package/src/actions/__tests__/search.spec.js +209 -0
  135. package/src/actions/auth.ts +127 -0
  136. package/src/actions/collections.ts +18 -0
  137. package/src/actions/config.ts +538 -0
  138. package/src/actions/deploys.ts +104 -0
  139. package/src/actions/editorialWorkflow.ts +567 -0
  140. package/src/actions/entries.ts +1041 -0
  141. package/src/actions/media.ts +139 -0
  142. package/src/actions/mediaLibrary.ts +574 -0
  143. package/src/actions/notifications.ts +36 -0
  144. package/src/actions/search.ts +194 -0
  145. package/src/actions/status.ts +99 -0
  146. package/src/actions/waitUntil.ts +49 -0
  147. package/src/backend.ts +1342 -0
  148. package/src/bootstrap.js +102 -0
  149. package/src/components/App/App.js +280 -0
  150. package/src/components/App/Header.js +236 -0
  151. package/src/components/App/NotFoundPage.js +23 -0
  152. package/src/components/Collection/Collection.js +205 -0
  153. package/src/components/Collection/CollectionControls.js +58 -0
  154. package/src/components/Collection/CollectionSearch.js +238 -0
  155. package/src/components/Collection/CollectionTop.js +81 -0
  156. package/src/components/Collection/ControlButton.js +27 -0
  157. package/src/components/Collection/Entries/Entries.js +73 -0
  158. package/src/components/Collection/Entries/EntriesCollection.js +165 -0
  159. package/src/components/Collection/Entries/EntriesSearch.js +91 -0
  160. package/src/components/Collection/Entries/EntryCard.js +167 -0
  161. package/src/components/Collection/Entries/EntryListing.js +86 -0
  162. package/src/components/Collection/Entries/__tests__/EntriesCollection.spec.js +155 -0
  163. package/src/components/Collection/Entries/__tests__/__snapshots__/EntriesCollection.spec.js.snap +49 -0
  164. package/src/components/Collection/FilterControl.js +39 -0
  165. package/src/components/Collection/GroupControl.js +39 -0
  166. package/src/components/Collection/NestedCollection.js +309 -0
  167. package/src/components/Collection/Sidebar.js +130 -0
  168. package/src/components/Collection/SortControl.js +68 -0
  169. package/src/components/Collection/ViewStyleControl.js +50 -0
  170. package/src/components/Collection/__tests__/Collection.spec.js +75 -0
  171. package/src/components/Collection/__tests__/NestedCollection.spec.js +442 -0
  172. package/src/components/Collection/__tests__/Sidebar.spec.js +87 -0
  173. package/src/components/Collection/__tests__/__snapshots__/Collection.spec.js.snap +144 -0
  174. package/src/components/Collection/__tests__/__snapshots__/NestedCollection.spec.js.snap +550 -0
  175. package/src/components/Collection/__tests__/__snapshots__/Sidebar.spec.js.snap +308 -0
  176. package/src/components/Editor/Editor.js +494 -0
  177. package/src/components/Editor/EditorControlPane/EditorControl.js +428 -0
  178. package/src/components/Editor/EditorControlPane/EditorControlPane.js +256 -0
  179. package/src/components/Editor/EditorControlPane/Widget.js +351 -0
  180. package/src/components/Editor/EditorInterface.js +434 -0
  181. package/src/components/Editor/EditorPreviewPane/EditorPreview.js +40 -0
  182. package/src/components/Editor/EditorPreviewPane/EditorPreviewContent.js +34 -0
  183. package/src/components/Editor/EditorPreviewPane/EditorPreviewPane.js +278 -0
  184. package/src/components/Editor/EditorPreviewPane/PreviewHOC.js +33 -0
  185. package/src/components/Editor/EditorToolbar.js +678 -0
  186. package/src/components/Editor/__tests__/Editor.spec.js +219 -0
  187. package/src/components/Editor/__tests__/EditorToolbar.spec.js +120 -0
  188. package/src/components/Editor/__tests__/__snapshots__/Editor.spec.js.snap +45 -0
  189. package/src/components/Editor/__tests__/__snapshots__/EditorToolbar.spec.js.snap +4020 -0
  190. package/src/components/Editor/withWorkflow.js +61 -0
  191. package/src/components/EditorWidgets/Unknown/UnknownControl.js +17 -0
  192. package/src/components/EditorWidgets/Unknown/UnknownPreview.js +19 -0
  193. package/src/components/EditorWidgets/index.js +5 -0
  194. package/src/components/MediaLibrary/EmptyMessage.js +28 -0
  195. package/src/components/MediaLibrary/MediaLibrary.js +407 -0
  196. package/src/components/MediaLibrary/MediaLibraryButtons.js +136 -0
  197. package/src/components/MediaLibrary/MediaLibraryCard.js +128 -0
  198. package/src/components/MediaLibrary/MediaLibraryCardGrid.js +199 -0
  199. package/src/components/MediaLibrary/MediaLibraryHeader.js +48 -0
  200. package/src/components/MediaLibrary/MediaLibraryModal.js +200 -0
  201. package/src/components/MediaLibrary/MediaLibrarySearch.js +61 -0
  202. package/src/components/MediaLibrary/MediaLibraryTop.js +143 -0
  203. package/src/components/MediaLibrary/__tests__/MediaLibraryButtons.spec.js +45 -0
  204. package/src/components/MediaLibrary/__tests__/MediaLibraryCard.spec.js +49 -0
  205. package/src/components/MediaLibrary/__tests__/__snapshots__/MediaLibraryCard.spec.js.snap +216 -0
  206. package/src/components/UI/DragDrop.js +66 -0
  207. package/src/components/UI/ErrorBoundary.js +209 -0
  208. package/src/components/UI/FileUploadButton.js +24 -0
  209. package/src/components/UI/Modal.js +109 -0
  210. package/src/components/UI/Notifications.tsx +83 -0
  211. package/src/components/UI/SettingsDropdown.js +103 -0
  212. package/src/components/UI/__tests__/ErrorBoundary.spec.js +57 -0
  213. package/src/components/UI/index.js +6 -0
  214. package/src/components/Workflow/Workflow.js +166 -0
  215. package/src/components/Workflow/WorkflowCard.js +177 -0
  216. package/src/components/Workflow/WorkflowList.js +269 -0
  217. package/src/constants/__tests__/configSchema.spec.js +511 -0
  218. package/src/constants/collectionTypes.ts +2 -0
  219. package/src/constants/collectionViews.js +2 -0
  220. package/src/constants/commitProps.ts +2 -0
  221. package/src/constants/configSchema.js +399 -0
  222. package/src/constants/fieldInference.tsx +78 -0
  223. package/src/constants/publishModes.ts +22 -0
  224. package/src/constants/validationErrorTypes.js +6 -0
  225. package/src/formats/__tests__/frontmatter.spec.js +429 -0
  226. package/src/formats/__tests__/toml.spec.js +9 -0
  227. package/src/formats/__tests__/yaml.spec.js +162 -0
  228. package/src/formats/formats.ts +86 -0
  229. package/src/formats/frontmatter.ts +150 -0
  230. package/src/formats/helpers.ts +14 -0
  231. package/src/formats/json.ts +9 -0
  232. package/src/formats/toml.ts +33 -0
  233. package/src/formats/yaml.ts +58 -0
  234. package/src/index.js +8 -0
  235. package/src/integrations/index.js +35 -0
  236. package/src/integrations/providers/algolia/implementation.js +176 -0
  237. package/src/integrations/providers/assetStore/implementation.js +147 -0
  238. package/src/lib/__tests__/formatters.spec.js +723 -0
  239. package/src/lib/__tests__/i18n.spec.js +792 -0
  240. package/src/lib/__tests__/phrases.spec.js +119 -0
  241. package/src/lib/__tests__/registry.spec.js +246 -0
  242. package/src/lib/__tests__/serializeEntryValues.spec.js +22 -0
  243. package/src/lib/__tests__/urlHelper.spec.js +138 -0
  244. package/src/lib/consoleError.js +7 -0
  245. package/src/lib/formatters.ts +267 -0
  246. package/src/lib/i18n.ts +427 -0
  247. package/src/lib/phrases.js +8 -0
  248. package/src/lib/registry.js +282 -0
  249. package/src/lib/serializeEntryValues.js +75 -0
  250. package/src/lib/textHelper.js +11 -0
  251. package/src/lib/urlHelper.ts +125 -0
  252. package/src/mediaLibrary.ts +51 -0
  253. package/src/reducers/__tests__/auth.spec.ts +38 -0
  254. package/src/reducers/__tests__/collections.spec.js +571 -0
  255. package/src/reducers/__tests__/config.spec.js +38 -0
  256. package/src/reducers/__tests__/entries.spec.js +694 -0
  257. package/src/reducers/__tests__/entryDraft.spec.js +198 -0
  258. package/src/reducers/__tests__/globalUI.js +43 -0
  259. package/src/reducers/__tests__/integrations.spec.ts +76 -0
  260. package/src/reducers/__tests__/mediaLibrary.spec.js +154 -0
  261. package/src/reducers/__tests__/medias.spec.ts +49 -0
  262. package/src/reducers/auth.ts +46 -0
  263. package/src/reducers/collections.ts +483 -0
  264. package/src/reducers/combinedReducer.ts +11 -0
  265. package/src/reducers/config.ts +38 -0
  266. package/src/reducers/cursors.js +36 -0
  267. package/src/reducers/deploys.ts +52 -0
  268. package/src/reducers/editorialWorkflow.ts +163 -0
  269. package/src/reducers/entries.ts +806 -0
  270. package/src/reducers/entryDraft.js +218 -0
  271. package/src/reducers/globalUI.ts +45 -0
  272. package/src/reducers/index.ts +82 -0
  273. package/src/reducers/integrations.ts +59 -0
  274. package/src/reducers/mediaLibrary.ts +296 -0
  275. package/src/reducers/medias.ts +66 -0
  276. package/src/reducers/notifications.ts +53 -0
  277. package/src/reducers/search.ts +89 -0
  278. package/src/reducers/status.ts +40 -0
  279. package/src/redux/index.ts +18 -0
  280. package/src/redux/middleware/waitUntilAction.ts +64 -0
  281. package/src/routing/__tests__/history.spec.ts +49 -0
  282. package/src/routing/history.ts +17 -0
  283. package/src/types/diacritics.d.ts +1 -0
  284. package/src/types/global.d.ts +8 -0
  285. package/src/types/immutable.ts +39 -0
  286. package/src/types/redux.ts +810 -0
  287. package/src/types/tomlify-j0.4.d.ts +13 -0
  288. package/src/valueObjects/AssetProxy.ts +48 -0
  289. package/src/valueObjects/EditorComponent.js +38 -0
  290. package/src/valueObjects/Entry.ts +63 -0
@@ -0,0 +1,4020 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`EditorToolbar should render normal save button 1`] = `
4
+ <DocumentFragment>
5
+ .emotion-21 {
6
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
7
+ position: fixed;
8
+ top: 0;
9
+ left: 0;
10
+ width: 100%;
11
+ min-width: 800px;
12
+ z-index: 300;
13
+ background-color: #fff;
14
+ height: 66px;
15
+ display: -webkit-box;
16
+ display: -webkit-flex;
17
+ display: -ms-flexbox;
18
+ display: flex;
19
+ -webkit-box-pack: justify;
20
+ -webkit-justify-content: space-between;
21
+ -ms-flex-pack: justify;
22
+ justify-content: space-between;
23
+ }
24
+
25
+ .emotion-0 {
26
+ color: #313d3e;
27
+ font-size: 21px;
28
+ font-weight: 600;
29
+ margin-right: 16px;
30
+ }
31
+
32
+ .emotion-2 {
33
+ color: #313d3e;
34
+ font-size: 14px;
35
+ }
36
+
37
+ .emotion-2 {
38
+ color: #313d3e;
39
+ font-size: 14px;
40
+ }
41
+
42
+ .emotion-17 {
43
+ height: 100%;
44
+ display: -webkit-box;
45
+ display: -webkit-flex;
46
+ display: -ms-flexbox;
47
+ display: flex;
48
+ -webkit-align-items: center;
49
+ -webkit-box-align: center;
50
+ -ms-flex-align: center;
51
+ align-items: center;
52
+ border: 0 solid #dfdfe3;
53
+ -webkit-flex: 10;
54
+ -ms-flex: 10;
55
+ flex: 10;
56
+ display: -webkit-box;
57
+ display: -webkit-flex;
58
+ display: -ms-flexbox;
59
+ display: flex;
60
+ -webkit-box-pack: justify;
61
+ -webkit-justify-content: space-between;
62
+ -ms-flex-pack: justify;
63
+ justify-content: space-between;
64
+ padding: 0 10px;
65
+ }
66
+
67
+ .emotion-13 {
68
+ display: -webkit-box;
69
+ display: -webkit-flex;
70
+ display: -ms-flexbox;
71
+ display: flex;
72
+ -webkit-align-items: center;
73
+ -webkit-box-align: center;
74
+ -ms-flex-align: center;
75
+ align-items: center;
76
+ }
77
+
78
+ .emotion-11 {
79
+ border: 0;
80
+ border-radius: 5px;
81
+ cursor: pointer;
82
+ height: 36px;
83
+ line-height: 36px;
84
+ font-weight: 500;
85
+ padding: 0 15px;
86
+ background-color: #798291;
87
+ color: #fff;
88
+ margin: 0 10px;
89
+ overflow: hidden;
90
+ white-space: nowrap;
91
+ text-overflow: ellipsis;
92
+ display: block;
93
+ background-color: #fcefea;
94
+ color: #D60032;
95
+ }
96
+
97
+ @media (max-width:1200px) {
98
+ .emotion-11 {
99
+ padding: 0 10px;
100
+ }
101
+ }
102
+
103
+ .emotion-15 {
104
+ display: -webkit-box;
105
+ display: -webkit-flex;
106
+ display: -ms-flexbox;
107
+ display: flex;
108
+ -webkit-align-items: center;
109
+ -webkit-box-align: center;
110
+ -ms-flex-align: center;
111
+ align-items: center;
112
+ -webkit-box-pack: end;
113
+ -webkit-justify-content: flex-end;
114
+ -ms-flex-pack: end;
115
+ justify-content: flex-end;
116
+ }
117
+
118
+ .emotion-19 {
119
+ height: 100%;
120
+ display: -webkit-box;
121
+ display: -webkit-flex;
122
+ display: -ms-flexbox;
123
+ display: flex;
124
+ -webkit-align-items: center;
125
+ -webkit-box-align: center;
126
+ -ms-flex-align: center;
127
+ align-items: center;
128
+ border: 0 solid #dfdfe3;
129
+ border-left-width: 1px;
130
+ padding: 0 7px;
131
+ }
132
+
133
+ .emotion-9 {
134
+ position: relative;
135
+ font-size: 14px;
136
+ -webkit-user-select: none;
137
+ -moz-user-select: none;
138
+ -ms-user-select: none;
139
+ user-select: none;
140
+ margin: 0 10px;
141
+ }
142
+
143
+ .emotion-9 .e1jeq5dr1 {
144
+ color: #17a2b8;
145
+ }
146
+
147
+ .emotion-4 {
148
+ margin-top: 6px;
149
+ font-size: 13px;
150
+ line-height: 1;
151
+ display: inline-block;
152
+ font-weight: 700;
153
+ text-transform: uppercase;
154
+ color: #ff003b;
155
+ }
156
+
157
+ .emotion-6 {
158
+ border: 0;
159
+ border-radius: 5px;
160
+ cursor: pointer;
161
+ height: 36px;
162
+ line-height: 36px;
163
+ font-weight: 500;
164
+ padding: 0 15px;
165
+ background-color: #798291;
166
+ color: #fff;
167
+ display: block;
168
+ padding-left: 20px;
169
+ padding-right: 40px;
170
+ position: relative;
171
+ overflow: hidden;
172
+ white-space: nowrap;
173
+ text-overflow: ellipsis;
174
+ background-color: #17a2b8;
175
+ }
176
+
177
+ .emotion-6:after {
178
+ color: #fff;
179
+ width: 0;
180
+ height: 0;
181
+ border: 5px solid transparent;
182
+ border-radius: 2px;
183
+ border-top: 6px solid currentColor;
184
+ border-bottom: 0;
185
+ content: '';
186
+ display: block;
187
+ position: absolute;
188
+ top: 16px;
189
+ right: 10px;
190
+ color: currentColor;
191
+ }
192
+
193
+ @media (max-width:1200px) {
194
+ .emotion-6 {
195
+ padding-left: 10px;
196
+ }
197
+ }
198
+
199
+ <div
200
+ class="emotion-21 emotion-22"
201
+ >
202
+ <mock-link
203
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
204
+ to=""
205
+ >
206
+ <div
207
+ class="emotion-0 emotion-1"
208
+ >
209
+
210
+ </div>
211
+ <div>
212
+ <div
213
+ class="emotion-2 emotion-3"
214
+ >
215
+ editor.editorToolbar.backCollection
216
+ </div>
217
+ <div
218
+ class="emotion-4 emotion-5"
219
+ >
220
+ editor.editorToolbar.unsavedChanges
221
+ </div>
222
+ </div>
223
+ </mock-link>
224
+ <div
225
+ class="emotion-17 emotion-18"
226
+ >
227
+ <div
228
+ class="emotion-13 emotion-14"
229
+ >
230
+ <div>
231
+ <div
232
+ class="emotion-8 emotion-9 emotion-10"
233
+ >
234
+ <span
235
+ aria-expanded="false"
236
+ aria-haspopup="true"
237
+ class="emotion-6 emotion-7"
238
+ role="button"
239
+ tabindex="0"
240
+ >
241
+ editor.editorToolbar.publish
242
+ </span>
243
+ </div>
244
+ </div>
245
+ <div>
246
+ <button
247
+ class="emotion-11 emotion-12"
248
+ >
249
+ editor.editorToolbar.deleteEntry
250
+ </button>
251
+ </div>
252
+ </div>
253
+ <div
254
+ class="emotion-15 emotion-16"
255
+ />
256
+ </div>
257
+ <div
258
+ class="emotion-19 emotion-20"
259
+ >
260
+ <mock-settings-dropdown />
261
+ </div>
262
+ </div>
263
+ </DocumentFragment>
264
+ `;
265
+
266
+ exports[`EditorToolbar should render normal save button 2`] = `
267
+ <DocumentFragment>
268
+ .emotion-21 {
269
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
270
+ position: fixed;
271
+ top: 0;
272
+ left: 0;
273
+ width: 100%;
274
+ min-width: 800px;
275
+ z-index: 300;
276
+ background-color: #fff;
277
+ height: 66px;
278
+ display: -webkit-box;
279
+ display: -webkit-flex;
280
+ display: -ms-flexbox;
281
+ display: flex;
282
+ -webkit-box-pack: justify;
283
+ -webkit-justify-content: space-between;
284
+ -ms-flex-pack: justify;
285
+ justify-content: space-between;
286
+ }
287
+
288
+ .emotion-0 {
289
+ color: #313d3e;
290
+ font-size: 21px;
291
+ font-weight: 600;
292
+ margin-right: 16px;
293
+ }
294
+
295
+ .emotion-2 {
296
+ color: #313d3e;
297
+ font-size: 14px;
298
+ }
299
+
300
+ .emotion-2 {
301
+ color: #313d3e;
302
+ font-size: 14px;
303
+ }
304
+
305
+ .emotion-17 {
306
+ height: 100%;
307
+ display: -webkit-box;
308
+ display: -webkit-flex;
309
+ display: -ms-flexbox;
310
+ display: flex;
311
+ -webkit-align-items: center;
312
+ -webkit-box-align: center;
313
+ -ms-flex-align: center;
314
+ align-items: center;
315
+ border: 0 solid #dfdfe3;
316
+ -webkit-flex: 10;
317
+ -ms-flex: 10;
318
+ flex: 10;
319
+ display: -webkit-box;
320
+ display: -webkit-flex;
321
+ display: -ms-flexbox;
322
+ display: flex;
323
+ -webkit-box-pack: justify;
324
+ -webkit-justify-content: space-between;
325
+ -ms-flex-pack: justify;
326
+ justify-content: space-between;
327
+ padding: 0 10px;
328
+ }
329
+
330
+ .emotion-13 {
331
+ display: -webkit-box;
332
+ display: -webkit-flex;
333
+ display: -ms-flexbox;
334
+ display: flex;
335
+ -webkit-align-items: center;
336
+ -webkit-box-align: center;
337
+ -ms-flex-align: center;
338
+ align-items: center;
339
+ }
340
+
341
+ .emotion-11 {
342
+ border: 0;
343
+ border-radius: 5px;
344
+ cursor: pointer;
345
+ height: 36px;
346
+ line-height: 36px;
347
+ font-weight: 500;
348
+ padding: 0 15px;
349
+ background-color: #798291;
350
+ color: #fff;
351
+ margin: 0 10px;
352
+ overflow: hidden;
353
+ white-space: nowrap;
354
+ text-overflow: ellipsis;
355
+ display: block;
356
+ background-color: #fcefea;
357
+ color: #D60032;
358
+ }
359
+
360
+ @media (max-width:1200px) {
361
+ .emotion-11 {
362
+ padding: 0 10px;
363
+ }
364
+ }
365
+
366
+ .emotion-15 {
367
+ display: -webkit-box;
368
+ display: -webkit-flex;
369
+ display: -ms-flexbox;
370
+ display: flex;
371
+ -webkit-align-items: center;
372
+ -webkit-box-align: center;
373
+ -ms-flex-align: center;
374
+ align-items: center;
375
+ -webkit-box-pack: end;
376
+ -webkit-justify-content: flex-end;
377
+ -ms-flex-pack: end;
378
+ justify-content: flex-end;
379
+ }
380
+
381
+ .emotion-19 {
382
+ height: 100%;
383
+ display: -webkit-box;
384
+ display: -webkit-flex;
385
+ display: -ms-flexbox;
386
+ display: flex;
387
+ -webkit-align-items: center;
388
+ -webkit-box-align: center;
389
+ -ms-flex-align: center;
390
+ align-items: center;
391
+ border: 0 solid #dfdfe3;
392
+ border-left-width: 1px;
393
+ padding: 0 7px;
394
+ }
395
+
396
+ .emotion-9 {
397
+ position: relative;
398
+ font-size: 14px;
399
+ -webkit-user-select: none;
400
+ -moz-user-select: none;
401
+ -ms-user-select: none;
402
+ user-select: none;
403
+ margin: 0 10px;
404
+ }
405
+
406
+ .emotion-9 .e1jeq5dr1 {
407
+ color: #17a2b8;
408
+ }
409
+
410
+ .emotion-4 {
411
+ margin-top: 6px;
412
+ font-size: 13px;
413
+ line-height: 1;
414
+ display: inline-block;
415
+ font-weight: 700;
416
+ text-transform: uppercase;
417
+ color: #ff003b;
418
+ }
419
+
420
+ .emotion-6 {
421
+ border: 0;
422
+ border-radius: 5px;
423
+ cursor: pointer;
424
+ height: 36px;
425
+ line-height: 36px;
426
+ font-weight: 500;
427
+ padding: 0 15px;
428
+ background-color: #798291;
429
+ color: #fff;
430
+ display: block;
431
+ padding-left: 20px;
432
+ padding-right: 40px;
433
+ position: relative;
434
+ overflow: hidden;
435
+ white-space: nowrap;
436
+ text-overflow: ellipsis;
437
+ background-color: #17a2b8;
438
+ }
439
+
440
+ .emotion-6:after {
441
+ color: #fff;
442
+ width: 0;
443
+ height: 0;
444
+ border: 5px solid transparent;
445
+ border-radius: 2px;
446
+ border-top: 6px solid currentColor;
447
+ border-bottom: 0;
448
+ content: '';
449
+ display: block;
450
+ position: absolute;
451
+ top: 16px;
452
+ right: 10px;
453
+ color: currentColor;
454
+ }
455
+
456
+ @media (max-width:1200px) {
457
+ .emotion-6 {
458
+ padding-left: 10px;
459
+ }
460
+ }
461
+
462
+ <div
463
+ class="emotion-21 emotion-22"
464
+ >
465
+ <mock-link
466
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
467
+ to=""
468
+ >
469
+ <div
470
+ class="emotion-0 emotion-1"
471
+ >
472
+
473
+ </div>
474
+ <div>
475
+ <div
476
+ class="emotion-2 emotion-3"
477
+ >
478
+ editor.editorToolbar.backCollection
479
+ </div>
480
+ <div
481
+ class="emotion-4 emotion-5"
482
+ >
483
+ editor.editorToolbar.unsavedChanges
484
+ </div>
485
+ </div>
486
+ </mock-link>
487
+ <div
488
+ class="emotion-17 emotion-18"
489
+ >
490
+ <div
491
+ class="emotion-13 emotion-14"
492
+ >
493
+ <div>
494
+ <div
495
+ class="emotion-8 emotion-9 emotion-10"
496
+ >
497
+ <span
498
+ aria-expanded="false"
499
+ aria-haspopup="true"
500
+ class="emotion-6 emotion-7"
501
+ role="button"
502
+ tabindex="0"
503
+ >
504
+ editor.editorToolbar.publish
505
+ </span>
506
+ </div>
507
+ </div>
508
+ <div>
509
+ <button
510
+ class="emotion-11 emotion-12"
511
+ >
512
+ editor.editorToolbar.deleteEntry
513
+ </button>
514
+ </div>
515
+ </div>
516
+ <div
517
+ class="emotion-15 emotion-16"
518
+ />
519
+ </div>
520
+ <div
521
+ class="emotion-19 emotion-20"
522
+ >
523
+ <mock-settings-dropdown />
524
+ </div>
525
+ </div>
526
+ </DocumentFragment>
527
+ `;
528
+
529
+ exports[`EditorToolbar should render with default props 1`] = `
530
+ <DocumentFragment>
531
+ .emotion-18 {
532
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
533
+ position: fixed;
534
+ top: 0;
535
+ left: 0;
536
+ width: 100%;
537
+ min-width: 800px;
538
+ z-index: 300;
539
+ background-color: #fff;
540
+ height: 66px;
541
+ display: -webkit-box;
542
+ display: -webkit-flex;
543
+ display: -ms-flexbox;
544
+ display: flex;
545
+ -webkit-box-pack: justify;
546
+ -webkit-justify-content: space-between;
547
+ -ms-flex-pack: justify;
548
+ justify-content: space-between;
549
+ }
550
+
551
+ .emotion-0 {
552
+ color: #313d3e;
553
+ font-size: 21px;
554
+ font-weight: 600;
555
+ margin-right: 16px;
556
+ }
557
+
558
+ .emotion-2 {
559
+ color: #313d3e;
560
+ font-size: 14px;
561
+ }
562
+
563
+ .emotion-2 {
564
+ color: #313d3e;
565
+ font-size: 14px;
566
+ }
567
+
568
+ .emotion-4 {
569
+ margin-top: 6px;
570
+ font-size: 13px;
571
+ line-height: 1;
572
+ display: inline-block;
573
+ font-weight: 700;
574
+ text-transform: uppercase;
575
+ color: #005614;
576
+ }
577
+
578
+ .emotion-14 {
579
+ height: 100%;
580
+ display: -webkit-box;
581
+ display: -webkit-flex;
582
+ display: -ms-flexbox;
583
+ display: flex;
584
+ -webkit-align-items: center;
585
+ -webkit-box-align: center;
586
+ -ms-flex-align: center;
587
+ align-items: center;
588
+ border: 0 solid #dfdfe3;
589
+ -webkit-flex: 10;
590
+ -ms-flex: 10;
591
+ flex: 10;
592
+ display: -webkit-box;
593
+ display: -webkit-flex;
594
+ display: -ms-flexbox;
595
+ display: flex;
596
+ -webkit-box-pack: justify;
597
+ -webkit-justify-content: space-between;
598
+ -ms-flex-pack: justify;
599
+ justify-content: space-between;
600
+ padding: 0 10px;
601
+ }
602
+
603
+ .emotion-10 {
604
+ display: -webkit-box;
605
+ display: -webkit-flex;
606
+ display: -ms-flexbox;
607
+ display: flex;
608
+ -webkit-align-items: center;
609
+ -webkit-box-align: center;
610
+ -ms-flex-align: center;
611
+ align-items: center;
612
+ }
613
+
614
+ .emotion-6 {
615
+ border: 0;
616
+ border-radius: 5px;
617
+ cursor: pointer;
618
+ height: 36px;
619
+ line-height: 36px;
620
+ font-weight: 500;
621
+ padding: 0 15px;
622
+ background-color: #798291;
623
+ color: #fff;
624
+ margin: 0 10px;
625
+ overflow: hidden;
626
+ white-space: nowrap;
627
+ text-overflow: ellipsis;
628
+ display: block;
629
+ background-color: #ddf5f9;
630
+ color: #117888;
631
+ }
632
+
633
+ @media (max-width:1200px) {
634
+ .emotion-6 {
635
+ padding: 0 10px;
636
+ }
637
+ }
638
+
639
+ .emotion-8 {
640
+ border: 0;
641
+ border-radius: 5px;
642
+ cursor: pointer;
643
+ height: 36px;
644
+ line-height: 36px;
645
+ font-weight: 500;
646
+ padding: 0 15px;
647
+ background-color: #798291;
648
+ color: #fff;
649
+ margin: 0 10px;
650
+ overflow: hidden;
651
+ white-space: nowrap;
652
+ text-overflow: ellipsis;
653
+ display: block;
654
+ background-color: #fcefea;
655
+ color: #D60032;
656
+ }
657
+
658
+ @media (max-width:1200px) {
659
+ .emotion-8 {
660
+ padding: 0 10px;
661
+ }
662
+ }
663
+
664
+ .emotion-12 {
665
+ display: -webkit-box;
666
+ display: -webkit-flex;
667
+ display: -ms-flexbox;
668
+ display: flex;
669
+ -webkit-align-items: center;
670
+ -webkit-box-align: center;
671
+ -ms-flex-align: center;
672
+ align-items: center;
673
+ -webkit-box-pack: end;
674
+ -webkit-justify-content: flex-end;
675
+ -ms-flex-pack: end;
676
+ justify-content: flex-end;
677
+ }
678
+
679
+ .emotion-16 {
680
+ height: 100%;
681
+ display: -webkit-box;
682
+ display: -webkit-flex;
683
+ display: -ms-flexbox;
684
+ display: flex;
685
+ -webkit-align-items: center;
686
+ -webkit-box-align: center;
687
+ -ms-flex-align: center;
688
+ align-items: center;
689
+ border: 0 solid #dfdfe3;
690
+ border-left-width: 1px;
691
+ padding: 0 7px;
692
+ }
693
+
694
+ <div
695
+ class="emotion-18 emotion-19"
696
+ >
697
+ <mock-link
698
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
699
+ to=""
700
+ >
701
+ <div
702
+ class="emotion-0 emotion-1"
703
+ >
704
+
705
+ </div>
706
+ <div>
707
+ <div
708
+ class="emotion-2 emotion-3"
709
+ >
710
+ editor.editorToolbar.backCollection
711
+ </div>
712
+ <div
713
+ class="emotion-4 emotion-5"
714
+ >
715
+ editor.editorToolbar.changesSaved
716
+ </div>
717
+ </div>
718
+ </mock-link>
719
+ <div
720
+ class="emotion-14 emotion-15"
721
+ >
722
+ <div
723
+ class="emotion-10 emotion-11"
724
+ >
725
+ <button
726
+ class="emotion-6 emotion-7"
727
+ >
728
+ editor.editorToolbar.published
729
+ </button>
730
+ <div>
731
+ <button
732
+ class="emotion-8 emotion-9"
733
+ >
734
+ editor.editorToolbar.deleteEntry
735
+ </button>
736
+ </div>
737
+ </div>
738
+ <div
739
+ class="emotion-12 emotion-13"
740
+ />
741
+ </div>
742
+ <div
743
+ class="emotion-16 emotion-17"
744
+ >
745
+ <mock-settings-dropdown />
746
+ </div>
747
+ </div>
748
+ </DocumentFragment>
749
+ `;
750
+
751
+ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=false 1`] = `
752
+ <DocumentFragment>
753
+ .emotion-23 {
754
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
755
+ position: fixed;
756
+ top: 0;
757
+ left: 0;
758
+ width: 100%;
759
+ min-width: 800px;
760
+ z-index: 300;
761
+ background-color: #fff;
762
+ height: 66px;
763
+ display: -webkit-box;
764
+ display: -webkit-flex;
765
+ display: -ms-flexbox;
766
+ display: flex;
767
+ -webkit-box-pack: justify;
768
+ -webkit-justify-content: space-between;
769
+ -ms-flex-pack: justify;
770
+ justify-content: space-between;
771
+ }
772
+
773
+ .emotion-0 {
774
+ color: #313d3e;
775
+ font-size: 21px;
776
+ font-weight: 600;
777
+ margin-right: 16px;
778
+ }
779
+
780
+ .emotion-2 {
781
+ color: #313d3e;
782
+ font-size: 14px;
783
+ }
784
+
785
+ .emotion-2 {
786
+ color: #313d3e;
787
+ font-size: 14px;
788
+ }
789
+
790
+ .emotion-4 {
791
+ margin-top: 6px;
792
+ font-size: 13px;
793
+ line-height: 1;
794
+ display: inline-block;
795
+ font-weight: 700;
796
+ text-transform: uppercase;
797
+ color: #005614;
798
+ }
799
+
800
+ .emotion-19 {
801
+ height: 100%;
802
+ display: -webkit-box;
803
+ display: -webkit-flex;
804
+ display: -ms-flexbox;
805
+ display: flex;
806
+ -webkit-align-items: center;
807
+ -webkit-box-align: center;
808
+ -ms-flex-align: center;
809
+ align-items: center;
810
+ border: 0 solid #dfdfe3;
811
+ -webkit-flex: 10;
812
+ -ms-flex: 10;
813
+ flex: 10;
814
+ display: -webkit-box;
815
+ display: -webkit-flex;
816
+ display: -ms-flexbox;
817
+ display: flex;
818
+ -webkit-box-pack: justify;
819
+ -webkit-justify-content: space-between;
820
+ -ms-flex-pack: justify;
821
+ justify-content: space-between;
822
+ padding: 0 10px;
823
+ }
824
+
825
+ .emotion-15 {
826
+ display: -webkit-box;
827
+ display: -webkit-flex;
828
+ display: -ms-flexbox;
829
+ display: flex;
830
+ -webkit-align-items: center;
831
+ -webkit-box-align: center;
832
+ -ms-flex-align: center;
833
+ align-items: center;
834
+ }
835
+
836
+ .emotion-13 {
837
+ border: 0;
838
+ border-radius: 5px;
839
+ cursor: pointer;
840
+ height: 36px;
841
+ line-height: 36px;
842
+ font-weight: 500;
843
+ padding: 0 15px;
844
+ background-color: #798291;
845
+ color: #fff;
846
+ margin: 0 10px;
847
+ overflow: hidden;
848
+ white-space: nowrap;
849
+ text-overflow: ellipsis;
850
+ display: block;
851
+ background-color: #fcefea;
852
+ color: #D60032;
853
+ }
854
+
855
+ @media (max-width:1200px) {
856
+ .emotion-13 {
857
+ padding: 0 10px;
858
+ }
859
+ }
860
+
861
+ .emotion-17 {
862
+ display: -webkit-box;
863
+ display: -webkit-flex;
864
+ display: -ms-flexbox;
865
+ display: flex;
866
+ -webkit-align-items: center;
867
+ -webkit-box-align: center;
868
+ -ms-flex-align: center;
869
+ align-items: center;
870
+ -webkit-box-pack: end;
871
+ -webkit-justify-content: flex-end;
872
+ -ms-flex-pack: end;
873
+ justify-content: flex-end;
874
+ }
875
+
876
+ .emotion-21 {
877
+ height: 100%;
878
+ display: -webkit-box;
879
+ display: -webkit-flex;
880
+ display: -ms-flexbox;
881
+ display: flex;
882
+ -webkit-align-items: center;
883
+ -webkit-box-align: center;
884
+ -ms-flex-align: center;
885
+ align-items: center;
886
+ border: 0 solid #dfdfe3;
887
+ border-left-width: 1px;
888
+ padding: 0 7px;
889
+ }
890
+
891
+ .emotion-6 {
892
+ border: 0;
893
+ border-radius: 5px;
894
+ cursor: pointer;
895
+ height: 36px;
896
+ line-height: 36px;
897
+ font-weight: 500;
898
+ padding: 0 15px;
899
+ background-color: #798291;
900
+ color: #fff;
901
+ margin: 0 10px;
902
+ overflow: hidden;
903
+ white-space: nowrap;
904
+ text-overflow: ellipsis;
905
+ display: block;
906
+ background-color: #e8f5fe;
907
+ color: #3a69c7;
908
+ }
909
+
910
+ @media (max-width:1200px) {
911
+ .emotion-6 {
912
+ padding: 0 10px;
913
+ }
914
+ }
915
+
916
+ .emotion-6[disabled] {
917
+ background-color: #eff0f4;
918
+ color: #798291;
919
+ cursor: default;
920
+ }
921
+
922
+ .emotion-11 {
923
+ position: relative;
924
+ font-size: 14px;
925
+ -webkit-user-select: none;
926
+ -moz-user-select: none;
927
+ -ms-user-select: none;
928
+ user-select: none;
929
+ margin: 0 10px;
930
+ }
931
+
932
+ .emotion-11 .e1jeq5dr1 {
933
+ color: #17a2b8;
934
+ }
935
+
936
+ .emotion-8 {
937
+ border: 0;
938
+ border-radius: 5px;
939
+ cursor: pointer;
940
+ height: 36px;
941
+ line-height: 36px;
942
+ font-weight: 500;
943
+ padding: 0 15px;
944
+ background-color: #798291;
945
+ color: #fff;
946
+ display: block;
947
+ padding-left: 20px;
948
+ padding-right: 40px;
949
+ position: relative;
950
+ overflow: hidden;
951
+ white-space: nowrap;
952
+ text-overflow: ellipsis;
953
+ background-color: #ddf5f9;
954
+ color: #17a2b8;
955
+ }
956
+
957
+ .emotion-8:after {
958
+ color: #fff;
959
+ width: 0;
960
+ height: 0;
961
+ border: 5px solid transparent;
962
+ border-radius: 2px;
963
+ border-top: 6px solid currentColor;
964
+ border-bottom: 0;
965
+ content: '';
966
+ display: block;
967
+ position: absolute;
968
+ top: 16px;
969
+ right: 10px;
970
+ color: currentColor;
971
+ }
972
+
973
+ @media (max-width:1200px) {
974
+ .emotion-8 {
975
+ padding-left: 10px;
976
+ }
977
+ }
978
+
979
+ <div
980
+ class="emotion-23 emotion-24"
981
+ >
982
+ <mock-link
983
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
984
+ to=""
985
+ >
986
+ <div
987
+ class="emotion-0 emotion-1"
988
+ >
989
+
990
+ </div>
991
+ <div>
992
+ <div
993
+ class="emotion-2 emotion-3"
994
+ >
995
+ editor.editorToolbar.backCollection
996
+ </div>
997
+ <div
998
+ class="emotion-4 emotion-5"
999
+ >
1000
+ editor.editorToolbar.changesSaved
1001
+ </div>
1002
+ </div>
1003
+ </mock-link>
1004
+ <div
1005
+ class="emotion-19 emotion-20"
1006
+ >
1007
+ <div
1008
+ class="emotion-15 emotion-16"
1009
+ >
1010
+ <button
1011
+ class="emotion-6 emotion-7"
1012
+ disabled=""
1013
+ >
1014
+ editor.editorToolbar.save
1015
+ </button>
1016
+ <div
1017
+ class="emotion-10 emotion-11 emotion-12"
1018
+ >
1019
+ <span
1020
+ aria-expanded="false"
1021
+ aria-haspopup="true"
1022
+ class="emotion-8 emotion-9"
1023
+ role="button"
1024
+ tabindex="0"
1025
+ >
1026
+ editor.editorToolbar.status
1027
+ </span>
1028
+ </div>
1029
+ <button
1030
+ class="emotion-13 emotion-14"
1031
+ >
1032
+ editor.editorToolbar.deletePublishedEntry
1033
+ </button>
1034
+ </div>
1035
+ <div
1036
+ class="emotion-17 emotion-18"
1037
+ />
1038
+ </div>
1039
+ <div
1040
+ class="emotion-21 emotion-22"
1041
+ >
1042
+ <mock-settings-dropdown />
1043
+ </div>
1044
+ </div>
1045
+ </DocumentFragment>
1046
+ `;
1047
+
1048
+ exports[`EditorToolbar should render with status=draft,useOpenAuthoring=true 1`] = `
1049
+ <DocumentFragment>
1050
+ .emotion-30 {
1051
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
1052
+ position: fixed;
1053
+ top: 0;
1054
+ left: 0;
1055
+ width: 100%;
1056
+ min-width: 800px;
1057
+ z-index: 300;
1058
+ background-color: #fff;
1059
+ height: 66px;
1060
+ display: -webkit-box;
1061
+ display: -webkit-flex;
1062
+ display: -ms-flexbox;
1063
+ display: flex;
1064
+ -webkit-box-pack: justify;
1065
+ -webkit-justify-content: space-between;
1066
+ -ms-flex-pack: justify;
1067
+ justify-content: space-between;
1068
+ }
1069
+
1070
+ .emotion-0 {
1071
+ color: #313d3e;
1072
+ font-size: 21px;
1073
+ font-weight: 600;
1074
+ margin-right: 16px;
1075
+ }
1076
+
1077
+ .emotion-2 {
1078
+ color: #313d3e;
1079
+ font-size: 14px;
1080
+ }
1081
+
1082
+ .emotion-2 {
1083
+ color: #313d3e;
1084
+ font-size: 14px;
1085
+ }
1086
+
1087
+ .emotion-4 {
1088
+ margin-top: 6px;
1089
+ font-size: 13px;
1090
+ line-height: 1;
1091
+ display: inline-block;
1092
+ font-weight: 700;
1093
+ text-transform: uppercase;
1094
+ color: #005614;
1095
+ }
1096
+
1097
+ .emotion-26 {
1098
+ height: 100%;
1099
+ display: -webkit-box;
1100
+ display: -webkit-flex;
1101
+ display: -ms-flexbox;
1102
+ display: flex;
1103
+ -webkit-align-items: center;
1104
+ -webkit-box-align: center;
1105
+ -ms-flex-align: center;
1106
+ align-items: center;
1107
+ border: 0 solid #dfdfe3;
1108
+ -webkit-flex: 10;
1109
+ -ms-flex: 10;
1110
+ flex: 10;
1111
+ display: -webkit-box;
1112
+ display: -webkit-flex;
1113
+ display: -ms-flexbox;
1114
+ display: flex;
1115
+ -webkit-box-pack: justify;
1116
+ -webkit-justify-content: space-between;
1117
+ -ms-flex-pack: justify;
1118
+ justify-content: space-between;
1119
+ padding: 0 10px;
1120
+ }
1121
+
1122
+ .emotion-22 {
1123
+ display: -webkit-box;
1124
+ display: -webkit-flex;
1125
+ display: -ms-flexbox;
1126
+ display: flex;
1127
+ -webkit-align-items: center;
1128
+ -webkit-box-align: center;
1129
+ -ms-flex-align: center;
1130
+ align-items: center;
1131
+ }
1132
+
1133
+ .emotion-24 {
1134
+ display: -webkit-box;
1135
+ display: -webkit-flex;
1136
+ display: -ms-flexbox;
1137
+ display: flex;
1138
+ -webkit-align-items: center;
1139
+ -webkit-box-align: center;
1140
+ -ms-flex-align: center;
1141
+ align-items: center;
1142
+ -webkit-box-pack: end;
1143
+ -webkit-justify-content: flex-end;
1144
+ -ms-flex-pack: end;
1145
+ justify-content: flex-end;
1146
+ }
1147
+
1148
+ .emotion-28 {
1149
+ height: 100%;
1150
+ display: -webkit-box;
1151
+ display: -webkit-flex;
1152
+ display: -ms-flexbox;
1153
+ display: flex;
1154
+ -webkit-align-items: center;
1155
+ -webkit-box-align: center;
1156
+ -ms-flex-align: center;
1157
+ align-items: center;
1158
+ border: 0 solid #dfdfe3;
1159
+ border-left-width: 1px;
1160
+ padding: 0 7px;
1161
+ }
1162
+
1163
+ .emotion-6 {
1164
+ border: 0;
1165
+ border-radius: 5px;
1166
+ cursor: pointer;
1167
+ height: 36px;
1168
+ line-height: 36px;
1169
+ font-weight: 500;
1170
+ padding: 0 15px;
1171
+ background-color: #798291;
1172
+ color: #fff;
1173
+ margin: 0 10px;
1174
+ overflow: hidden;
1175
+ white-space: nowrap;
1176
+ text-overflow: ellipsis;
1177
+ display: block;
1178
+ background-color: #e8f5fe;
1179
+ color: #3a69c7;
1180
+ }
1181
+
1182
+ @media (max-width:1200px) {
1183
+ .emotion-6 {
1184
+ padding: 0 10px;
1185
+ }
1186
+ }
1187
+
1188
+ .emotion-6[disabled] {
1189
+ background-color: #eff0f4;
1190
+ color: #798291;
1191
+ cursor: default;
1192
+ }
1193
+
1194
+ .emotion-11 {
1195
+ position: relative;
1196
+ font-size: 14px;
1197
+ -webkit-user-select: none;
1198
+ -moz-user-select: none;
1199
+ -ms-user-select: none;
1200
+ user-select: none;
1201
+ margin: 0 10px;
1202
+ }
1203
+
1204
+ .emotion-11 .emotion-13 {
1205
+ color: #17a2b8;
1206
+ }
1207
+
1208
+ .emotion-8 {
1209
+ border: 0;
1210
+ border-radius: 5px;
1211
+ cursor: pointer;
1212
+ height: 36px;
1213
+ line-height: 36px;
1214
+ font-weight: 500;
1215
+ padding: 0 15px;
1216
+ background-color: #798291;
1217
+ color: #fff;
1218
+ display: block;
1219
+ padding-left: 20px;
1220
+ padding-right: 40px;
1221
+ position: relative;
1222
+ overflow: hidden;
1223
+ white-space: nowrap;
1224
+ text-overflow: ellipsis;
1225
+ background-color: #ddf5f9;
1226
+ color: #17a2b8;
1227
+ }
1228
+
1229
+ .emotion-8:after {
1230
+ color: #fff;
1231
+ width: 0;
1232
+ height: 0;
1233
+ border: 5px solid transparent;
1234
+ border-radius: 2px;
1235
+ border-top: 6px solid currentColor;
1236
+ border-bottom: 0;
1237
+ content: '';
1238
+ display: block;
1239
+ position: absolute;
1240
+ top: 16px;
1241
+ right: 10px;
1242
+ color: currentColor;
1243
+ }
1244
+
1245
+ @media (max-width:1200px) {
1246
+ .emotion-8 {
1247
+ padding-left: 10px;
1248
+ }
1249
+ }
1250
+
1251
+ .emotion-20 {
1252
+ position: relative;
1253
+ }
1254
+
1255
+ .emotion-16 {
1256
+ position: relative;
1257
+ display: inline-block;
1258
+ }
1259
+
1260
+ .emotion-16:hover + .emotion-19 {
1261
+ visibility: visible;
1262
+ opacity: 0.9;
1263
+ }
1264
+
1265
+ .emotion-14 {
1266
+ display: inline-block;
1267
+ line-height: 0;
1268
+ width: 18px;
1269
+ height: 18px;
1270
+ -webkit-transform: rotate(0deg);
1271
+ -ms-transform: rotate(0deg);
1272
+ transform: rotate(0deg);
1273
+ }
1274
+
1275
+ .emotion-14 path:not(.no-fill),
1276
+ .emotion-14 circle:not(.no-fill),
1277
+ .emotion-14 polygon:not(.no-fill),
1278
+ .emotion-14 rect:not(.no-fill) {
1279
+ fill: currentColor;
1280
+ }
1281
+
1282
+ .emotion-14 path.clipped {
1283
+ fill: transparent;
1284
+ }
1285
+
1286
+ .emotion-14 svg {
1287
+ width: 100%;
1288
+ height: 100%;
1289
+ }
1290
+
1291
+ .emotion-18 {
1292
+ visibility: hidden;
1293
+ width: 321px;
1294
+ background-color: #555;
1295
+ color: #fff;
1296
+ text-align: unset;
1297
+ border-radius: 6px;
1298
+ padding: 5px;
1299
+ position: absolute;
1300
+ z-index: 1;
1301
+ top: 145%;
1302
+ left: 50%;
1303
+ margin-left: -320px;
1304
+ opacity: 0;
1305
+ -webkit-transition: opacity 0.3s;
1306
+ transition: opacity 0.3s;
1307
+ }
1308
+
1309
+ <div
1310
+ class="emotion-30 emotion-31"
1311
+ >
1312
+ <mock-link
1313
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
1314
+ to=""
1315
+ >
1316
+ <div
1317
+ class="emotion-0 emotion-1"
1318
+ >
1319
+
1320
+ </div>
1321
+ <div>
1322
+ <div
1323
+ class="emotion-2 emotion-3"
1324
+ >
1325
+ editor.editorToolbar.backCollection
1326
+ </div>
1327
+ <div
1328
+ class="emotion-4 emotion-5"
1329
+ >
1330
+ editor.editorToolbar.changesSaved
1331
+ </div>
1332
+ </div>
1333
+ </mock-link>
1334
+ <div
1335
+ class="emotion-26 emotion-27"
1336
+ >
1337
+ <div
1338
+ class="emotion-22 emotion-23"
1339
+ >
1340
+ <button
1341
+ class="emotion-6 emotion-7"
1342
+ disabled=""
1343
+ >
1344
+ editor.editorToolbar.save
1345
+ </button>
1346
+ <div
1347
+ class="emotion-10 emotion-11 emotion-12"
1348
+ >
1349
+ <span
1350
+ aria-expanded="false"
1351
+ aria-haspopup="true"
1352
+ class="emotion-8 emotion-9"
1353
+ role="button"
1354
+ tabindex="0"
1355
+ >
1356
+ editor.editorToolbar.status
1357
+ </span>
1358
+ </div>
1359
+ <div
1360
+ class="emotion-20 emotion-21"
1361
+ >
1362
+ <div
1363
+ class="emotion-16 emotion-17"
1364
+ >
1365
+ <span
1366
+ class="tooltip emotion-13 emotion-14 emotion-15"
1367
+ >
1368
+ <svg
1369
+ class="bi bi-info-circle"
1370
+ fill="currentColor"
1371
+ height="16"
1372
+ viewBox="0 0 16 16"
1373
+ width="16"
1374
+ xmlns="http://www.w3.org/2000/svg"
1375
+ >
1376
+ <path
1377
+ d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"
1378
+ />
1379
+ <path
1380
+ d="m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0z"
1381
+ />
1382
+ </svg>
1383
+ </span>
1384
+ </div>
1385
+ <div
1386
+ class="emotion-18 emotion-19"
1387
+ >
1388
+ editor.editorToolbar.statusInfoTooltipDraft
1389
+ </div>
1390
+ </div>
1391
+ </div>
1392
+ <div
1393
+ class="emotion-24 emotion-25"
1394
+ />
1395
+ </div>
1396
+ <div
1397
+ class="emotion-28 emotion-29"
1398
+ >
1399
+ <mock-settings-dropdown />
1400
+ </div>
1401
+ </div>
1402
+ </DocumentFragment>
1403
+ `;
1404
+
1405
+ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthoring=false 1`] = `
1406
+ <DocumentFragment>
1407
+ .emotion-23 {
1408
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
1409
+ position: fixed;
1410
+ top: 0;
1411
+ left: 0;
1412
+ width: 100%;
1413
+ min-width: 800px;
1414
+ z-index: 300;
1415
+ background-color: #fff;
1416
+ height: 66px;
1417
+ display: -webkit-box;
1418
+ display: -webkit-flex;
1419
+ display: -ms-flexbox;
1420
+ display: flex;
1421
+ -webkit-box-pack: justify;
1422
+ -webkit-justify-content: space-between;
1423
+ -ms-flex-pack: justify;
1424
+ justify-content: space-between;
1425
+ }
1426
+
1427
+ .emotion-0 {
1428
+ color: #313d3e;
1429
+ font-size: 21px;
1430
+ font-weight: 600;
1431
+ margin-right: 16px;
1432
+ }
1433
+
1434
+ .emotion-2 {
1435
+ color: #313d3e;
1436
+ font-size: 14px;
1437
+ }
1438
+
1439
+ .emotion-2 {
1440
+ color: #313d3e;
1441
+ font-size: 14px;
1442
+ }
1443
+
1444
+ .emotion-4 {
1445
+ margin-top: 6px;
1446
+ font-size: 13px;
1447
+ line-height: 1;
1448
+ display: inline-block;
1449
+ font-weight: 700;
1450
+ text-transform: uppercase;
1451
+ color: #005614;
1452
+ }
1453
+
1454
+ .emotion-19 {
1455
+ height: 100%;
1456
+ display: -webkit-box;
1457
+ display: -webkit-flex;
1458
+ display: -ms-flexbox;
1459
+ display: flex;
1460
+ -webkit-align-items: center;
1461
+ -webkit-box-align: center;
1462
+ -ms-flex-align: center;
1463
+ align-items: center;
1464
+ border: 0 solid #dfdfe3;
1465
+ -webkit-flex: 10;
1466
+ -ms-flex: 10;
1467
+ flex: 10;
1468
+ display: -webkit-box;
1469
+ display: -webkit-flex;
1470
+ display: -ms-flexbox;
1471
+ display: flex;
1472
+ -webkit-box-pack: justify;
1473
+ -webkit-justify-content: space-between;
1474
+ -ms-flex-pack: justify;
1475
+ justify-content: space-between;
1476
+ padding: 0 10px;
1477
+ }
1478
+
1479
+ .emotion-15 {
1480
+ display: -webkit-box;
1481
+ display: -webkit-flex;
1482
+ display: -ms-flexbox;
1483
+ display: flex;
1484
+ -webkit-align-items: center;
1485
+ -webkit-box-align: center;
1486
+ -ms-flex-align: center;
1487
+ align-items: center;
1488
+ }
1489
+
1490
+ .emotion-13 {
1491
+ border: 0;
1492
+ border-radius: 5px;
1493
+ cursor: pointer;
1494
+ height: 36px;
1495
+ line-height: 36px;
1496
+ font-weight: 500;
1497
+ padding: 0 15px;
1498
+ background-color: #798291;
1499
+ color: #fff;
1500
+ margin: 0 10px;
1501
+ overflow: hidden;
1502
+ white-space: nowrap;
1503
+ text-overflow: ellipsis;
1504
+ display: block;
1505
+ background-color: #fcefea;
1506
+ color: #D60032;
1507
+ }
1508
+
1509
+ @media (max-width:1200px) {
1510
+ .emotion-13 {
1511
+ padding: 0 10px;
1512
+ }
1513
+ }
1514
+
1515
+ .emotion-17 {
1516
+ display: -webkit-box;
1517
+ display: -webkit-flex;
1518
+ display: -ms-flexbox;
1519
+ display: flex;
1520
+ -webkit-align-items: center;
1521
+ -webkit-box-align: center;
1522
+ -ms-flex-align: center;
1523
+ align-items: center;
1524
+ -webkit-box-pack: end;
1525
+ -webkit-justify-content: flex-end;
1526
+ -ms-flex-pack: end;
1527
+ justify-content: flex-end;
1528
+ }
1529
+
1530
+ .emotion-21 {
1531
+ height: 100%;
1532
+ display: -webkit-box;
1533
+ display: -webkit-flex;
1534
+ display: -ms-flexbox;
1535
+ display: flex;
1536
+ -webkit-align-items: center;
1537
+ -webkit-box-align: center;
1538
+ -ms-flex-align: center;
1539
+ align-items: center;
1540
+ border: 0 solid #dfdfe3;
1541
+ border-left-width: 1px;
1542
+ padding: 0 7px;
1543
+ }
1544
+
1545
+ .emotion-6 {
1546
+ border: 0;
1547
+ border-radius: 5px;
1548
+ cursor: pointer;
1549
+ height: 36px;
1550
+ line-height: 36px;
1551
+ font-weight: 500;
1552
+ padding: 0 15px;
1553
+ background-color: #798291;
1554
+ color: #fff;
1555
+ margin: 0 10px;
1556
+ overflow: hidden;
1557
+ white-space: nowrap;
1558
+ text-overflow: ellipsis;
1559
+ display: block;
1560
+ background-color: #e8f5fe;
1561
+ color: #3a69c7;
1562
+ }
1563
+
1564
+ @media (max-width:1200px) {
1565
+ .emotion-6 {
1566
+ padding: 0 10px;
1567
+ }
1568
+ }
1569
+
1570
+ .emotion-6[disabled] {
1571
+ background-color: #eff0f4;
1572
+ color: #798291;
1573
+ cursor: default;
1574
+ }
1575
+
1576
+ .emotion-11 {
1577
+ position: relative;
1578
+ font-size: 14px;
1579
+ -webkit-user-select: none;
1580
+ -moz-user-select: none;
1581
+ -ms-user-select: none;
1582
+ user-select: none;
1583
+ margin: 0 10px;
1584
+ }
1585
+
1586
+ .emotion-11 .e1jeq5dr1 {
1587
+ color: #17a2b8;
1588
+ }
1589
+
1590
+ .emotion-8 {
1591
+ border: 0;
1592
+ border-radius: 5px;
1593
+ cursor: pointer;
1594
+ height: 36px;
1595
+ line-height: 36px;
1596
+ font-weight: 500;
1597
+ padding: 0 15px;
1598
+ background-color: #798291;
1599
+ color: #fff;
1600
+ display: block;
1601
+ padding-left: 20px;
1602
+ padding-right: 40px;
1603
+ position: relative;
1604
+ overflow: hidden;
1605
+ white-space: nowrap;
1606
+ text-overflow: ellipsis;
1607
+ background-color: #ddf5f9;
1608
+ color: #17a2b8;
1609
+ }
1610
+
1611
+ .emotion-8:after {
1612
+ color: #fff;
1613
+ width: 0;
1614
+ height: 0;
1615
+ border: 5px solid transparent;
1616
+ border-radius: 2px;
1617
+ border-top: 6px solid currentColor;
1618
+ border-bottom: 0;
1619
+ content: '';
1620
+ display: block;
1621
+ position: absolute;
1622
+ top: 16px;
1623
+ right: 10px;
1624
+ color: currentColor;
1625
+ }
1626
+
1627
+ @media (max-width:1200px) {
1628
+ .emotion-8 {
1629
+ padding-left: 10px;
1630
+ }
1631
+ }
1632
+
1633
+ <div
1634
+ class="emotion-23 emotion-24"
1635
+ >
1636
+ <mock-link
1637
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
1638
+ to=""
1639
+ >
1640
+ <div
1641
+ class="emotion-0 emotion-1"
1642
+ >
1643
+
1644
+ </div>
1645
+ <div>
1646
+ <div
1647
+ class="emotion-2 emotion-3"
1648
+ >
1649
+ editor.editorToolbar.backCollection
1650
+ </div>
1651
+ <div
1652
+ class="emotion-4 emotion-5"
1653
+ >
1654
+ editor.editorToolbar.changesSaved
1655
+ </div>
1656
+ </div>
1657
+ </mock-link>
1658
+ <div
1659
+ class="emotion-19 emotion-20"
1660
+ >
1661
+ <div
1662
+ class="emotion-15 emotion-16"
1663
+ >
1664
+ <button
1665
+ class="emotion-6 emotion-7"
1666
+ disabled=""
1667
+ >
1668
+ editor.editorToolbar.save
1669
+ </button>
1670
+ <div
1671
+ class="emotion-10 emotion-11 emotion-12"
1672
+ >
1673
+ <span
1674
+ aria-expanded="false"
1675
+ aria-haspopup="true"
1676
+ class="emotion-8 emotion-9"
1677
+ role="button"
1678
+ tabindex="0"
1679
+ >
1680
+ editor.editorToolbar.status
1681
+ </span>
1682
+ </div>
1683
+ <button
1684
+ class="emotion-13 emotion-14"
1685
+ >
1686
+ editor.editorToolbar.deletePublishedEntry
1687
+ </button>
1688
+ </div>
1689
+ <div
1690
+ class="emotion-17 emotion-18"
1691
+ />
1692
+ </div>
1693
+ <div
1694
+ class="emotion-21 emotion-22"
1695
+ >
1696
+ <mock-settings-dropdown />
1697
+ </div>
1698
+ </div>
1699
+ </DocumentFragment>
1700
+ `;
1701
+
1702
+ exports[`EditorToolbar should render with status=pending_publish,useOpenAuthoring=true 1`] = `
1703
+ <DocumentFragment>
1704
+ .emotion-28 {
1705
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
1706
+ position: fixed;
1707
+ top: 0;
1708
+ left: 0;
1709
+ width: 100%;
1710
+ min-width: 800px;
1711
+ z-index: 300;
1712
+ background-color: #fff;
1713
+ height: 66px;
1714
+ display: -webkit-box;
1715
+ display: -webkit-flex;
1716
+ display: -ms-flexbox;
1717
+ display: flex;
1718
+ -webkit-box-pack: justify;
1719
+ -webkit-justify-content: space-between;
1720
+ -ms-flex-pack: justify;
1721
+ justify-content: space-between;
1722
+ }
1723
+
1724
+ .emotion-0 {
1725
+ color: #313d3e;
1726
+ font-size: 21px;
1727
+ font-weight: 600;
1728
+ margin-right: 16px;
1729
+ }
1730
+
1731
+ .emotion-2 {
1732
+ color: #313d3e;
1733
+ font-size: 14px;
1734
+ }
1735
+
1736
+ .emotion-2 {
1737
+ color: #313d3e;
1738
+ font-size: 14px;
1739
+ }
1740
+
1741
+ .emotion-4 {
1742
+ margin-top: 6px;
1743
+ font-size: 13px;
1744
+ line-height: 1;
1745
+ display: inline-block;
1746
+ font-weight: 700;
1747
+ text-transform: uppercase;
1748
+ color: #005614;
1749
+ }
1750
+
1751
+ .emotion-24 {
1752
+ height: 100%;
1753
+ display: -webkit-box;
1754
+ display: -webkit-flex;
1755
+ display: -ms-flexbox;
1756
+ display: flex;
1757
+ -webkit-align-items: center;
1758
+ -webkit-box-align: center;
1759
+ -ms-flex-align: center;
1760
+ align-items: center;
1761
+ border: 0 solid #dfdfe3;
1762
+ -webkit-flex: 10;
1763
+ -ms-flex: 10;
1764
+ flex: 10;
1765
+ display: -webkit-box;
1766
+ display: -webkit-flex;
1767
+ display: -ms-flexbox;
1768
+ display: flex;
1769
+ -webkit-box-pack: justify;
1770
+ -webkit-justify-content: space-between;
1771
+ -ms-flex-pack: justify;
1772
+ justify-content: space-between;
1773
+ padding: 0 10px;
1774
+ }
1775
+
1776
+ .emotion-20 {
1777
+ display: -webkit-box;
1778
+ display: -webkit-flex;
1779
+ display: -ms-flexbox;
1780
+ display: flex;
1781
+ -webkit-align-items: center;
1782
+ -webkit-box-align: center;
1783
+ -ms-flex-align: center;
1784
+ align-items: center;
1785
+ }
1786
+
1787
+ .emotion-22 {
1788
+ display: -webkit-box;
1789
+ display: -webkit-flex;
1790
+ display: -ms-flexbox;
1791
+ display: flex;
1792
+ -webkit-align-items: center;
1793
+ -webkit-box-align: center;
1794
+ -ms-flex-align: center;
1795
+ align-items: center;
1796
+ -webkit-box-pack: end;
1797
+ -webkit-justify-content: flex-end;
1798
+ -ms-flex-pack: end;
1799
+ justify-content: flex-end;
1800
+ }
1801
+
1802
+ .emotion-26 {
1803
+ height: 100%;
1804
+ display: -webkit-box;
1805
+ display: -webkit-flex;
1806
+ display: -ms-flexbox;
1807
+ display: flex;
1808
+ -webkit-align-items: center;
1809
+ -webkit-box-align: center;
1810
+ -ms-flex-align: center;
1811
+ align-items: center;
1812
+ border: 0 solid #dfdfe3;
1813
+ border-left-width: 1px;
1814
+ padding: 0 7px;
1815
+ }
1816
+
1817
+ .emotion-6 {
1818
+ border: 0;
1819
+ border-radius: 5px;
1820
+ cursor: pointer;
1821
+ height: 36px;
1822
+ line-height: 36px;
1823
+ font-weight: 500;
1824
+ padding: 0 15px;
1825
+ background-color: #798291;
1826
+ color: #fff;
1827
+ margin: 0 10px;
1828
+ overflow: hidden;
1829
+ white-space: nowrap;
1830
+ text-overflow: ellipsis;
1831
+ display: block;
1832
+ background-color: #e8f5fe;
1833
+ color: #3a69c7;
1834
+ }
1835
+
1836
+ @media (max-width:1200px) {
1837
+ .emotion-6 {
1838
+ padding: 0 10px;
1839
+ }
1840
+ }
1841
+
1842
+ .emotion-6[disabled] {
1843
+ background-color: #eff0f4;
1844
+ color: #798291;
1845
+ cursor: default;
1846
+ }
1847
+
1848
+ .emotion-11 {
1849
+ position: relative;
1850
+ font-size: 14px;
1851
+ -webkit-user-select: none;
1852
+ -moz-user-select: none;
1853
+ -ms-user-select: none;
1854
+ user-select: none;
1855
+ margin: 0 10px;
1856
+ }
1857
+
1858
+ .emotion-11 .emotion-13 {
1859
+ color: #17a2b8;
1860
+ }
1861
+
1862
+ .emotion-8 {
1863
+ border: 0;
1864
+ border-radius: 5px;
1865
+ cursor: pointer;
1866
+ height: 36px;
1867
+ line-height: 36px;
1868
+ font-weight: 500;
1869
+ padding: 0 15px;
1870
+ background-color: #798291;
1871
+ color: #fff;
1872
+ display: block;
1873
+ padding-left: 20px;
1874
+ padding-right: 40px;
1875
+ position: relative;
1876
+ overflow: hidden;
1877
+ white-space: nowrap;
1878
+ text-overflow: ellipsis;
1879
+ background-color: #ddf5f9;
1880
+ color: #17a2b8;
1881
+ }
1882
+
1883
+ .emotion-8:after {
1884
+ color: #fff;
1885
+ width: 0;
1886
+ height: 0;
1887
+ border: 5px solid transparent;
1888
+ border-radius: 2px;
1889
+ border-top: 6px solid currentColor;
1890
+ border-bottom: 0;
1891
+ content: '';
1892
+ display: block;
1893
+ position: absolute;
1894
+ top: 16px;
1895
+ right: 10px;
1896
+ color: currentColor;
1897
+ }
1898
+
1899
+ @media (max-width:1200px) {
1900
+ .emotion-8 {
1901
+ padding-left: 10px;
1902
+ }
1903
+ }
1904
+
1905
+ .emotion-18 {
1906
+ position: relative;
1907
+ }
1908
+
1909
+ .emotion-16 {
1910
+ position: relative;
1911
+ display: inline-block;
1912
+ }
1913
+
1914
+ .emotion-16:hover + .e1d2l9mo0 {
1915
+ visibility: visible;
1916
+ opacity: 0.9;
1917
+ }
1918
+
1919
+ .emotion-14 {
1920
+ display: inline-block;
1921
+ line-height: 0;
1922
+ width: 18px;
1923
+ height: 18px;
1924
+ -webkit-transform: rotate(0deg);
1925
+ -ms-transform: rotate(0deg);
1926
+ transform: rotate(0deg);
1927
+ }
1928
+
1929
+ .emotion-14 path:not(.no-fill),
1930
+ .emotion-14 circle:not(.no-fill),
1931
+ .emotion-14 polygon:not(.no-fill),
1932
+ .emotion-14 rect:not(.no-fill) {
1933
+ fill: currentColor;
1934
+ }
1935
+
1936
+ .emotion-14 path.clipped {
1937
+ fill: transparent;
1938
+ }
1939
+
1940
+ .emotion-14 svg {
1941
+ width: 100%;
1942
+ height: 100%;
1943
+ }
1944
+
1945
+ <div
1946
+ class="emotion-28 emotion-29"
1947
+ >
1948
+ <mock-link
1949
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
1950
+ to=""
1951
+ >
1952
+ <div
1953
+ class="emotion-0 emotion-1"
1954
+ >
1955
+
1956
+ </div>
1957
+ <div>
1958
+ <div
1959
+ class="emotion-2 emotion-3"
1960
+ >
1961
+ editor.editorToolbar.backCollection
1962
+ </div>
1963
+ <div
1964
+ class="emotion-4 emotion-5"
1965
+ >
1966
+ editor.editorToolbar.changesSaved
1967
+ </div>
1968
+ </div>
1969
+ </mock-link>
1970
+ <div
1971
+ class="emotion-24 emotion-25"
1972
+ >
1973
+ <div
1974
+ class="emotion-20 emotion-21"
1975
+ >
1976
+ <button
1977
+ class="emotion-6 emotion-7"
1978
+ disabled=""
1979
+ >
1980
+ editor.editorToolbar.save
1981
+ </button>
1982
+ <div
1983
+ class="emotion-10 emotion-11 emotion-12"
1984
+ >
1985
+ <span
1986
+ aria-expanded="false"
1987
+ aria-haspopup="true"
1988
+ class="emotion-8 emotion-9"
1989
+ role="button"
1990
+ tabindex="0"
1991
+ >
1992
+ editor.editorToolbar.status
1993
+ </span>
1994
+ </div>
1995
+ <div
1996
+ class="emotion-18 emotion-19"
1997
+ >
1998
+ <div
1999
+ class="emotion-16 emotion-17"
2000
+ >
2001
+ <span
2002
+ class="tooltip emotion-13 emotion-14 emotion-15"
2003
+ >
2004
+ <svg
2005
+ class="bi bi-info-circle"
2006
+ fill="currentColor"
2007
+ height="16"
2008
+ viewBox="0 0 16 16"
2009
+ width="16"
2010
+ xmlns="http://www.w3.org/2000/svg"
2011
+ >
2012
+ <path
2013
+ d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"
2014
+ />
2015
+ <path
2016
+ d="m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0z"
2017
+ />
2018
+ </svg>
2019
+ </span>
2020
+ </div>
2021
+ </div>
2022
+ </div>
2023
+ <div
2024
+ class="emotion-22 emotion-23"
2025
+ />
2026
+ </div>
2027
+ <div
2028
+ class="emotion-26 emotion-27"
2029
+ >
2030
+ <mock-settings-dropdown />
2031
+ </div>
2032
+ </div>
2033
+ </DocumentFragment>
2034
+ `;
2035
+
2036
+ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring=false 1`] = `
2037
+ <DocumentFragment>
2038
+ .emotion-23 {
2039
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
2040
+ position: fixed;
2041
+ top: 0;
2042
+ left: 0;
2043
+ width: 100%;
2044
+ min-width: 800px;
2045
+ z-index: 300;
2046
+ background-color: #fff;
2047
+ height: 66px;
2048
+ display: -webkit-box;
2049
+ display: -webkit-flex;
2050
+ display: -ms-flexbox;
2051
+ display: flex;
2052
+ -webkit-box-pack: justify;
2053
+ -webkit-justify-content: space-between;
2054
+ -ms-flex-pack: justify;
2055
+ justify-content: space-between;
2056
+ }
2057
+
2058
+ .emotion-0 {
2059
+ color: #313d3e;
2060
+ font-size: 21px;
2061
+ font-weight: 600;
2062
+ margin-right: 16px;
2063
+ }
2064
+
2065
+ .emotion-2 {
2066
+ color: #313d3e;
2067
+ font-size: 14px;
2068
+ }
2069
+
2070
+ .emotion-2 {
2071
+ color: #313d3e;
2072
+ font-size: 14px;
2073
+ }
2074
+
2075
+ .emotion-4 {
2076
+ margin-top: 6px;
2077
+ font-size: 13px;
2078
+ line-height: 1;
2079
+ display: inline-block;
2080
+ font-weight: 700;
2081
+ text-transform: uppercase;
2082
+ color: #005614;
2083
+ }
2084
+
2085
+ .emotion-19 {
2086
+ height: 100%;
2087
+ display: -webkit-box;
2088
+ display: -webkit-flex;
2089
+ display: -ms-flexbox;
2090
+ display: flex;
2091
+ -webkit-align-items: center;
2092
+ -webkit-box-align: center;
2093
+ -ms-flex-align: center;
2094
+ align-items: center;
2095
+ border: 0 solid #dfdfe3;
2096
+ -webkit-flex: 10;
2097
+ -ms-flex: 10;
2098
+ flex: 10;
2099
+ display: -webkit-box;
2100
+ display: -webkit-flex;
2101
+ display: -ms-flexbox;
2102
+ display: flex;
2103
+ -webkit-box-pack: justify;
2104
+ -webkit-justify-content: space-between;
2105
+ -ms-flex-pack: justify;
2106
+ justify-content: space-between;
2107
+ padding: 0 10px;
2108
+ }
2109
+
2110
+ .emotion-15 {
2111
+ display: -webkit-box;
2112
+ display: -webkit-flex;
2113
+ display: -ms-flexbox;
2114
+ display: flex;
2115
+ -webkit-align-items: center;
2116
+ -webkit-box-align: center;
2117
+ -ms-flex-align: center;
2118
+ align-items: center;
2119
+ }
2120
+
2121
+ .emotion-13 {
2122
+ border: 0;
2123
+ border-radius: 5px;
2124
+ cursor: pointer;
2125
+ height: 36px;
2126
+ line-height: 36px;
2127
+ font-weight: 500;
2128
+ padding: 0 15px;
2129
+ background-color: #798291;
2130
+ color: #fff;
2131
+ margin: 0 10px;
2132
+ overflow: hidden;
2133
+ white-space: nowrap;
2134
+ text-overflow: ellipsis;
2135
+ display: block;
2136
+ background-color: #fcefea;
2137
+ color: #D60032;
2138
+ }
2139
+
2140
+ @media (max-width:1200px) {
2141
+ .emotion-13 {
2142
+ padding: 0 10px;
2143
+ }
2144
+ }
2145
+
2146
+ .emotion-17 {
2147
+ display: -webkit-box;
2148
+ display: -webkit-flex;
2149
+ display: -ms-flexbox;
2150
+ display: flex;
2151
+ -webkit-align-items: center;
2152
+ -webkit-box-align: center;
2153
+ -ms-flex-align: center;
2154
+ align-items: center;
2155
+ -webkit-box-pack: end;
2156
+ -webkit-justify-content: flex-end;
2157
+ -ms-flex-pack: end;
2158
+ justify-content: flex-end;
2159
+ }
2160
+
2161
+ .emotion-21 {
2162
+ height: 100%;
2163
+ display: -webkit-box;
2164
+ display: -webkit-flex;
2165
+ display: -ms-flexbox;
2166
+ display: flex;
2167
+ -webkit-align-items: center;
2168
+ -webkit-box-align: center;
2169
+ -ms-flex-align: center;
2170
+ align-items: center;
2171
+ border: 0 solid #dfdfe3;
2172
+ border-left-width: 1px;
2173
+ padding: 0 7px;
2174
+ }
2175
+
2176
+ .emotion-6 {
2177
+ border: 0;
2178
+ border-radius: 5px;
2179
+ cursor: pointer;
2180
+ height: 36px;
2181
+ line-height: 36px;
2182
+ font-weight: 500;
2183
+ padding: 0 15px;
2184
+ background-color: #798291;
2185
+ color: #fff;
2186
+ margin: 0 10px;
2187
+ overflow: hidden;
2188
+ white-space: nowrap;
2189
+ text-overflow: ellipsis;
2190
+ display: block;
2191
+ background-color: #e8f5fe;
2192
+ color: #3a69c7;
2193
+ }
2194
+
2195
+ @media (max-width:1200px) {
2196
+ .emotion-6 {
2197
+ padding: 0 10px;
2198
+ }
2199
+ }
2200
+
2201
+ .emotion-6[disabled] {
2202
+ background-color: #eff0f4;
2203
+ color: #798291;
2204
+ cursor: default;
2205
+ }
2206
+
2207
+ .emotion-11 {
2208
+ position: relative;
2209
+ font-size: 14px;
2210
+ -webkit-user-select: none;
2211
+ -moz-user-select: none;
2212
+ -ms-user-select: none;
2213
+ user-select: none;
2214
+ margin: 0 10px;
2215
+ }
2216
+
2217
+ .emotion-11 .e1jeq5dr1 {
2218
+ color: #17a2b8;
2219
+ }
2220
+
2221
+ .emotion-8 {
2222
+ border: 0;
2223
+ border-radius: 5px;
2224
+ cursor: pointer;
2225
+ height: 36px;
2226
+ line-height: 36px;
2227
+ font-weight: 500;
2228
+ padding: 0 15px;
2229
+ background-color: #798291;
2230
+ color: #fff;
2231
+ display: block;
2232
+ padding-left: 20px;
2233
+ padding-right: 40px;
2234
+ position: relative;
2235
+ overflow: hidden;
2236
+ white-space: nowrap;
2237
+ text-overflow: ellipsis;
2238
+ background-color: #ddf5f9;
2239
+ color: #17a2b8;
2240
+ }
2241
+
2242
+ .emotion-8:after {
2243
+ color: #fff;
2244
+ width: 0;
2245
+ height: 0;
2246
+ border: 5px solid transparent;
2247
+ border-radius: 2px;
2248
+ border-top: 6px solid currentColor;
2249
+ border-bottom: 0;
2250
+ content: '';
2251
+ display: block;
2252
+ position: absolute;
2253
+ top: 16px;
2254
+ right: 10px;
2255
+ color: currentColor;
2256
+ }
2257
+
2258
+ @media (max-width:1200px) {
2259
+ .emotion-8 {
2260
+ padding-left: 10px;
2261
+ }
2262
+ }
2263
+
2264
+ <div
2265
+ class="emotion-23 emotion-24"
2266
+ >
2267
+ <mock-link
2268
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
2269
+ to=""
2270
+ >
2271
+ <div
2272
+ class="emotion-0 emotion-1"
2273
+ >
2274
+
2275
+ </div>
2276
+ <div>
2277
+ <div
2278
+ class="emotion-2 emotion-3"
2279
+ >
2280
+ editor.editorToolbar.backCollection
2281
+ </div>
2282
+ <div
2283
+ class="emotion-4 emotion-5"
2284
+ >
2285
+ editor.editorToolbar.changesSaved
2286
+ </div>
2287
+ </div>
2288
+ </mock-link>
2289
+ <div
2290
+ class="emotion-19 emotion-20"
2291
+ >
2292
+ <div
2293
+ class="emotion-15 emotion-16"
2294
+ >
2295
+ <button
2296
+ class="emotion-6 emotion-7"
2297
+ disabled=""
2298
+ >
2299
+ editor.editorToolbar.save
2300
+ </button>
2301
+ <div
2302
+ class="emotion-10 emotion-11 emotion-12"
2303
+ >
2304
+ <span
2305
+ aria-expanded="false"
2306
+ aria-haspopup="true"
2307
+ class="emotion-8 emotion-9"
2308
+ role="button"
2309
+ tabindex="0"
2310
+ >
2311
+ editor.editorToolbar.status
2312
+ </span>
2313
+ </div>
2314
+ <button
2315
+ class="emotion-13 emotion-14"
2316
+ >
2317
+ editor.editorToolbar.deletePublishedEntry
2318
+ </button>
2319
+ </div>
2320
+ <div
2321
+ class="emotion-17 emotion-18"
2322
+ />
2323
+ </div>
2324
+ <div
2325
+ class="emotion-21 emotion-22"
2326
+ >
2327
+ <mock-settings-dropdown />
2328
+ </div>
2329
+ </div>
2330
+ </DocumentFragment>
2331
+ `;
2332
+
2333
+ exports[`EditorToolbar should render with status=pending_review,useOpenAuthoring=true 1`] = `
2334
+ <DocumentFragment>
2335
+ .emotion-30 {
2336
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
2337
+ position: fixed;
2338
+ top: 0;
2339
+ left: 0;
2340
+ width: 100%;
2341
+ min-width: 800px;
2342
+ z-index: 300;
2343
+ background-color: #fff;
2344
+ height: 66px;
2345
+ display: -webkit-box;
2346
+ display: -webkit-flex;
2347
+ display: -ms-flexbox;
2348
+ display: flex;
2349
+ -webkit-box-pack: justify;
2350
+ -webkit-justify-content: space-between;
2351
+ -ms-flex-pack: justify;
2352
+ justify-content: space-between;
2353
+ }
2354
+
2355
+ .emotion-0 {
2356
+ color: #313d3e;
2357
+ font-size: 21px;
2358
+ font-weight: 600;
2359
+ margin-right: 16px;
2360
+ }
2361
+
2362
+ .emotion-2 {
2363
+ color: #313d3e;
2364
+ font-size: 14px;
2365
+ }
2366
+
2367
+ .emotion-2 {
2368
+ color: #313d3e;
2369
+ font-size: 14px;
2370
+ }
2371
+
2372
+ .emotion-4 {
2373
+ margin-top: 6px;
2374
+ font-size: 13px;
2375
+ line-height: 1;
2376
+ display: inline-block;
2377
+ font-weight: 700;
2378
+ text-transform: uppercase;
2379
+ color: #005614;
2380
+ }
2381
+
2382
+ .emotion-26 {
2383
+ height: 100%;
2384
+ display: -webkit-box;
2385
+ display: -webkit-flex;
2386
+ display: -ms-flexbox;
2387
+ display: flex;
2388
+ -webkit-align-items: center;
2389
+ -webkit-box-align: center;
2390
+ -ms-flex-align: center;
2391
+ align-items: center;
2392
+ border: 0 solid #dfdfe3;
2393
+ -webkit-flex: 10;
2394
+ -ms-flex: 10;
2395
+ flex: 10;
2396
+ display: -webkit-box;
2397
+ display: -webkit-flex;
2398
+ display: -ms-flexbox;
2399
+ display: flex;
2400
+ -webkit-box-pack: justify;
2401
+ -webkit-justify-content: space-between;
2402
+ -ms-flex-pack: justify;
2403
+ justify-content: space-between;
2404
+ padding: 0 10px;
2405
+ }
2406
+
2407
+ .emotion-22 {
2408
+ display: -webkit-box;
2409
+ display: -webkit-flex;
2410
+ display: -ms-flexbox;
2411
+ display: flex;
2412
+ -webkit-align-items: center;
2413
+ -webkit-box-align: center;
2414
+ -ms-flex-align: center;
2415
+ align-items: center;
2416
+ }
2417
+
2418
+ .emotion-24 {
2419
+ display: -webkit-box;
2420
+ display: -webkit-flex;
2421
+ display: -ms-flexbox;
2422
+ display: flex;
2423
+ -webkit-align-items: center;
2424
+ -webkit-box-align: center;
2425
+ -ms-flex-align: center;
2426
+ align-items: center;
2427
+ -webkit-box-pack: end;
2428
+ -webkit-justify-content: flex-end;
2429
+ -ms-flex-pack: end;
2430
+ justify-content: flex-end;
2431
+ }
2432
+
2433
+ .emotion-28 {
2434
+ height: 100%;
2435
+ display: -webkit-box;
2436
+ display: -webkit-flex;
2437
+ display: -ms-flexbox;
2438
+ display: flex;
2439
+ -webkit-align-items: center;
2440
+ -webkit-box-align: center;
2441
+ -ms-flex-align: center;
2442
+ align-items: center;
2443
+ border: 0 solid #dfdfe3;
2444
+ border-left-width: 1px;
2445
+ padding: 0 7px;
2446
+ }
2447
+
2448
+ .emotion-6 {
2449
+ border: 0;
2450
+ border-radius: 5px;
2451
+ cursor: pointer;
2452
+ height: 36px;
2453
+ line-height: 36px;
2454
+ font-weight: 500;
2455
+ padding: 0 15px;
2456
+ background-color: #798291;
2457
+ color: #fff;
2458
+ margin: 0 10px;
2459
+ overflow: hidden;
2460
+ white-space: nowrap;
2461
+ text-overflow: ellipsis;
2462
+ display: block;
2463
+ background-color: #e8f5fe;
2464
+ color: #3a69c7;
2465
+ }
2466
+
2467
+ @media (max-width:1200px) {
2468
+ .emotion-6 {
2469
+ padding: 0 10px;
2470
+ }
2471
+ }
2472
+
2473
+ .emotion-6[disabled] {
2474
+ background-color: #eff0f4;
2475
+ color: #798291;
2476
+ cursor: default;
2477
+ }
2478
+
2479
+ .emotion-11 {
2480
+ position: relative;
2481
+ font-size: 14px;
2482
+ -webkit-user-select: none;
2483
+ -moz-user-select: none;
2484
+ -ms-user-select: none;
2485
+ user-select: none;
2486
+ margin: 0 10px;
2487
+ }
2488
+
2489
+ .emotion-11 .emotion-13 {
2490
+ color: #17a2b8;
2491
+ }
2492
+
2493
+ .emotion-8 {
2494
+ border: 0;
2495
+ border-radius: 5px;
2496
+ cursor: pointer;
2497
+ height: 36px;
2498
+ line-height: 36px;
2499
+ font-weight: 500;
2500
+ padding: 0 15px;
2501
+ background-color: #798291;
2502
+ color: #fff;
2503
+ display: block;
2504
+ padding-left: 20px;
2505
+ padding-right: 40px;
2506
+ position: relative;
2507
+ overflow: hidden;
2508
+ white-space: nowrap;
2509
+ text-overflow: ellipsis;
2510
+ background-color: #ddf5f9;
2511
+ color: #17a2b8;
2512
+ }
2513
+
2514
+ .emotion-8:after {
2515
+ color: #fff;
2516
+ width: 0;
2517
+ height: 0;
2518
+ border: 5px solid transparent;
2519
+ border-radius: 2px;
2520
+ border-top: 6px solid currentColor;
2521
+ border-bottom: 0;
2522
+ content: '';
2523
+ display: block;
2524
+ position: absolute;
2525
+ top: 16px;
2526
+ right: 10px;
2527
+ color: currentColor;
2528
+ }
2529
+
2530
+ @media (max-width:1200px) {
2531
+ .emotion-8 {
2532
+ padding-left: 10px;
2533
+ }
2534
+ }
2535
+
2536
+ .emotion-20 {
2537
+ position: relative;
2538
+ }
2539
+
2540
+ .emotion-16 {
2541
+ position: relative;
2542
+ display: inline-block;
2543
+ }
2544
+
2545
+ .emotion-16:hover + .emotion-19 {
2546
+ visibility: visible;
2547
+ opacity: 0.9;
2548
+ }
2549
+
2550
+ .emotion-14 {
2551
+ display: inline-block;
2552
+ line-height: 0;
2553
+ width: 18px;
2554
+ height: 18px;
2555
+ -webkit-transform: rotate(0deg);
2556
+ -ms-transform: rotate(0deg);
2557
+ transform: rotate(0deg);
2558
+ }
2559
+
2560
+ .emotion-14 path:not(.no-fill),
2561
+ .emotion-14 circle:not(.no-fill),
2562
+ .emotion-14 polygon:not(.no-fill),
2563
+ .emotion-14 rect:not(.no-fill) {
2564
+ fill: currentColor;
2565
+ }
2566
+
2567
+ .emotion-14 path.clipped {
2568
+ fill: transparent;
2569
+ }
2570
+
2571
+ .emotion-14 svg {
2572
+ width: 100%;
2573
+ height: 100%;
2574
+ }
2575
+
2576
+ .emotion-18 {
2577
+ visibility: hidden;
2578
+ width: 321px;
2579
+ background-color: #555;
2580
+ color: #fff;
2581
+ text-align: unset;
2582
+ border-radius: 6px;
2583
+ padding: 5px;
2584
+ position: absolute;
2585
+ z-index: 1;
2586
+ top: 145%;
2587
+ left: 50%;
2588
+ margin-left: -320px;
2589
+ opacity: 0;
2590
+ -webkit-transition: opacity 0.3s;
2591
+ transition: opacity 0.3s;
2592
+ }
2593
+
2594
+ <div
2595
+ class="emotion-30 emotion-31"
2596
+ >
2597
+ <mock-link
2598
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
2599
+ to=""
2600
+ >
2601
+ <div
2602
+ class="emotion-0 emotion-1"
2603
+ >
2604
+
2605
+ </div>
2606
+ <div>
2607
+ <div
2608
+ class="emotion-2 emotion-3"
2609
+ >
2610
+ editor.editorToolbar.backCollection
2611
+ </div>
2612
+ <div
2613
+ class="emotion-4 emotion-5"
2614
+ >
2615
+ editor.editorToolbar.changesSaved
2616
+ </div>
2617
+ </div>
2618
+ </mock-link>
2619
+ <div
2620
+ class="emotion-26 emotion-27"
2621
+ >
2622
+ <div
2623
+ class="emotion-22 emotion-23"
2624
+ >
2625
+ <button
2626
+ class="emotion-6 emotion-7"
2627
+ disabled=""
2628
+ >
2629
+ editor.editorToolbar.save
2630
+ </button>
2631
+ <div
2632
+ class="emotion-10 emotion-11 emotion-12"
2633
+ >
2634
+ <span
2635
+ aria-expanded="false"
2636
+ aria-haspopup="true"
2637
+ class="emotion-8 emotion-9"
2638
+ role="button"
2639
+ tabindex="0"
2640
+ >
2641
+ editor.editorToolbar.status
2642
+ </span>
2643
+ </div>
2644
+ <div
2645
+ class="emotion-20 emotion-21"
2646
+ >
2647
+ <div
2648
+ class="emotion-16 emotion-17"
2649
+ >
2650
+ <span
2651
+ class="tooltip emotion-13 emotion-14 emotion-15"
2652
+ >
2653
+ <svg
2654
+ class="bi bi-info-circle"
2655
+ fill="currentColor"
2656
+ height="16"
2657
+ viewBox="0 0 16 16"
2658
+ width="16"
2659
+ xmlns="http://www.w3.org/2000/svg"
2660
+ >
2661
+ <path
2662
+ d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"
2663
+ />
2664
+ <path
2665
+ d="m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0z"
2666
+ />
2667
+ </svg>
2668
+ </span>
2669
+ </div>
2670
+ <div
2671
+ class="emotion-18 emotion-19"
2672
+ >
2673
+ editor.editorToolbar.statusInfoTooltipInReview
2674
+ </div>
2675
+ </div>
2676
+ </div>
2677
+ <div
2678
+ class="emotion-24 emotion-25"
2679
+ />
2680
+ </div>
2681
+ <div
2682
+ class="emotion-28 emotion-29"
2683
+ >
2684
+ <mock-settings-dropdown />
2685
+ </div>
2686
+ </div>
2687
+ </DocumentFragment>
2688
+ `;
2689
+
2690
+ exports[`EditorToolbar should render with workflow controls hasUnpublishedChanges=false,isNewEntry=false,isModification=false,useOpenAuthoring=false 1`] = `
2691
+ <DocumentFragment>
2692
+ .emotion-18 {
2693
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
2694
+ position: fixed;
2695
+ top: 0;
2696
+ left: 0;
2697
+ width: 100%;
2698
+ min-width: 800px;
2699
+ z-index: 300;
2700
+ background-color: #fff;
2701
+ height: 66px;
2702
+ display: -webkit-box;
2703
+ display: -webkit-flex;
2704
+ display: -ms-flexbox;
2705
+ display: flex;
2706
+ -webkit-box-pack: justify;
2707
+ -webkit-justify-content: space-between;
2708
+ -ms-flex-pack: justify;
2709
+ justify-content: space-between;
2710
+ }
2711
+
2712
+ .emotion-0 {
2713
+ color: #313d3e;
2714
+ font-size: 21px;
2715
+ font-weight: 600;
2716
+ margin-right: 16px;
2717
+ }
2718
+
2719
+ .emotion-2 {
2720
+ color: #313d3e;
2721
+ font-size: 14px;
2722
+ }
2723
+
2724
+ .emotion-2 {
2725
+ color: #313d3e;
2726
+ font-size: 14px;
2727
+ }
2728
+
2729
+ .emotion-4 {
2730
+ margin-top: 6px;
2731
+ font-size: 13px;
2732
+ line-height: 1;
2733
+ display: inline-block;
2734
+ font-weight: 700;
2735
+ text-transform: uppercase;
2736
+ color: #005614;
2737
+ }
2738
+
2739
+ .emotion-14 {
2740
+ height: 100%;
2741
+ display: -webkit-box;
2742
+ display: -webkit-flex;
2743
+ display: -ms-flexbox;
2744
+ display: flex;
2745
+ -webkit-align-items: center;
2746
+ -webkit-box-align: center;
2747
+ -ms-flex-align: center;
2748
+ align-items: center;
2749
+ border: 0 solid #dfdfe3;
2750
+ -webkit-flex: 10;
2751
+ -ms-flex: 10;
2752
+ flex: 10;
2753
+ display: -webkit-box;
2754
+ display: -webkit-flex;
2755
+ display: -ms-flexbox;
2756
+ display: flex;
2757
+ -webkit-box-pack: justify;
2758
+ -webkit-justify-content: space-between;
2759
+ -ms-flex-pack: justify;
2760
+ justify-content: space-between;
2761
+ padding: 0 10px;
2762
+ }
2763
+
2764
+ .emotion-10 {
2765
+ display: -webkit-box;
2766
+ display: -webkit-flex;
2767
+ display: -ms-flexbox;
2768
+ display: flex;
2769
+ -webkit-align-items: center;
2770
+ -webkit-box-align: center;
2771
+ -ms-flex-align: center;
2772
+ align-items: center;
2773
+ }
2774
+
2775
+ .emotion-8 {
2776
+ border: 0;
2777
+ border-radius: 5px;
2778
+ cursor: pointer;
2779
+ height: 36px;
2780
+ line-height: 36px;
2781
+ font-weight: 500;
2782
+ padding: 0 15px;
2783
+ background-color: #798291;
2784
+ color: #fff;
2785
+ margin: 0 10px;
2786
+ overflow: hidden;
2787
+ white-space: nowrap;
2788
+ text-overflow: ellipsis;
2789
+ display: block;
2790
+ background-color: #fcefea;
2791
+ color: #D60032;
2792
+ }
2793
+
2794
+ @media (max-width:1200px) {
2795
+ .emotion-8 {
2796
+ padding: 0 10px;
2797
+ }
2798
+ }
2799
+
2800
+ .emotion-12 {
2801
+ display: -webkit-box;
2802
+ display: -webkit-flex;
2803
+ display: -ms-flexbox;
2804
+ display: flex;
2805
+ -webkit-align-items: center;
2806
+ -webkit-box-align: center;
2807
+ -ms-flex-align: center;
2808
+ align-items: center;
2809
+ -webkit-box-pack: end;
2810
+ -webkit-justify-content: flex-end;
2811
+ -ms-flex-pack: end;
2812
+ justify-content: flex-end;
2813
+ }
2814
+
2815
+ .emotion-16 {
2816
+ height: 100%;
2817
+ display: -webkit-box;
2818
+ display: -webkit-flex;
2819
+ display: -ms-flexbox;
2820
+ display: flex;
2821
+ -webkit-align-items: center;
2822
+ -webkit-box-align: center;
2823
+ -ms-flex-align: center;
2824
+ align-items: center;
2825
+ border: 0 solid #dfdfe3;
2826
+ border-left-width: 1px;
2827
+ padding: 0 7px;
2828
+ }
2829
+
2830
+ .emotion-6 {
2831
+ border: 0;
2832
+ border-radius: 5px;
2833
+ cursor: pointer;
2834
+ height: 36px;
2835
+ line-height: 36px;
2836
+ font-weight: 500;
2837
+ padding: 0 15px;
2838
+ background-color: #798291;
2839
+ color: #fff;
2840
+ margin: 0 10px;
2841
+ overflow: hidden;
2842
+ white-space: nowrap;
2843
+ text-overflow: ellipsis;
2844
+ display: block;
2845
+ background-color: #e8f5fe;
2846
+ color: #3a69c7;
2847
+ }
2848
+
2849
+ @media (max-width:1200px) {
2850
+ .emotion-6 {
2851
+ padding: 0 10px;
2852
+ }
2853
+ }
2854
+
2855
+ .emotion-6[disabled] {
2856
+ background-color: #eff0f4;
2857
+ color: #798291;
2858
+ cursor: default;
2859
+ }
2860
+
2861
+ <div
2862
+ class="emotion-18 emotion-19"
2863
+ >
2864
+ <mock-link
2865
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
2866
+ to=""
2867
+ >
2868
+ <div
2869
+ class="emotion-0 emotion-1"
2870
+ >
2871
+
2872
+ </div>
2873
+ <div>
2874
+ <div
2875
+ class="emotion-2 emotion-3"
2876
+ >
2877
+ editor.editorToolbar.backCollection
2878
+ </div>
2879
+ <div
2880
+ class="emotion-4 emotion-5"
2881
+ >
2882
+ editor.editorToolbar.changesSaved
2883
+ </div>
2884
+ </div>
2885
+ </mock-link>
2886
+ <div
2887
+ class="emotion-14 emotion-15"
2888
+ >
2889
+ <div
2890
+ class="emotion-10 emotion-11"
2891
+ >
2892
+ <button
2893
+ class="emotion-6 emotion-7"
2894
+ disabled=""
2895
+ >
2896
+ editor.editorToolbar.save
2897
+ </button>
2898
+ <button
2899
+ class="emotion-8 emotion-9"
2900
+ >
2901
+ editor.editorToolbar.deletePublishedEntry
2902
+ </button>
2903
+ </div>
2904
+ <div
2905
+ class="emotion-12 emotion-13"
2906
+ />
2907
+ </div>
2908
+ <div
2909
+ class="emotion-16 emotion-17"
2910
+ >
2911
+ <mock-settings-dropdown />
2912
+ </div>
2913
+ </div>
2914
+ </DocumentFragment>
2915
+ `;
2916
+
2917
+ exports[`EditorToolbar should render with workflow controls hasUnpublishedChanges=false,isNewEntry=false,isModification=false,useOpenAuthoring=true 1`] = `
2918
+ <DocumentFragment>
2919
+ .emotion-16 {
2920
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
2921
+ position: fixed;
2922
+ top: 0;
2923
+ left: 0;
2924
+ width: 100%;
2925
+ min-width: 800px;
2926
+ z-index: 300;
2927
+ background-color: #fff;
2928
+ height: 66px;
2929
+ display: -webkit-box;
2930
+ display: -webkit-flex;
2931
+ display: -ms-flexbox;
2932
+ display: flex;
2933
+ -webkit-box-pack: justify;
2934
+ -webkit-justify-content: space-between;
2935
+ -ms-flex-pack: justify;
2936
+ justify-content: space-between;
2937
+ }
2938
+
2939
+ .emotion-0 {
2940
+ color: #313d3e;
2941
+ font-size: 21px;
2942
+ font-weight: 600;
2943
+ margin-right: 16px;
2944
+ }
2945
+
2946
+ .emotion-2 {
2947
+ color: #313d3e;
2948
+ font-size: 14px;
2949
+ }
2950
+
2951
+ .emotion-2 {
2952
+ color: #313d3e;
2953
+ font-size: 14px;
2954
+ }
2955
+
2956
+ .emotion-4 {
2957
+ margin-top: 6px;
2958
+ font-size: 13px;
2959
+ line-height: 1;
2960
+ display: inline-block;
2961
+ font-weight: 700;
2962
+ text-transform: uppercase;
2963
+ color: #005614;
2964
+ }
2965
+
2966
+ .emotion-12 {
2967
+ height: 100%;
2968
+ display: -webkit-box;
2969
+ display: -webkit-flex;
2970
+ display: -ms-flexbox;
2971
+ display: flex;
2972
+ -webkit-align-items: center;
2973
+ -webkit-box-align: center;
2974
+ -ms-flex-align: center;
2975
+ align-items: center;
2976
+ border: 0 solid #dfdfe3;
2977
+ -webkit-flex: 10;
2978
+ -ms-flex: 10;
2979
+ flex: 10;
2980
+ display: -webkit-box;
2981
+ display: -webkit-flex;
2982
+ display: -ms-flexbox;
2983
+ display: flex;
2984
+ -webkit-box-pack: justify;
2985
+ -webkit-justify-content: space-between;
2986
+ -ms-flex-pack: justify;
2987
+ justify-content: space-between;
2988
+ padding: 0 10px;
2989
+ }
2990
+
2991
+ .emotion-8 {
2992
+ display: -webkit-box;
2993
+ display: -webkit-flex;
2994
+ display: -ms-flexbox;
2995
+ display: flex;
2996
+ -webkit-align-items: center;
2997
+ -webkit-box-align: center;
2998
+ -ms-flex-align: center;
2999
+ align-items: center;
3000
+ }
3001
+
3002
+ .emotion-10 {
3003
+ display: -webkit-box;
3004
+ display: -webkit-flex;
3005
+ display: -ms-flexbox;
3006
+ display: flex;
3007
+ -webkit-align-items: center;
3008
+ -webkit-box-align: center;
3009
+ -ms-flex-align: center;
3010
+ align-items: center;
3011
+ -webkit-box-pack: end;
3012
+ -webkit-justify-content: flex-end;
3013
+ -ms-flex-pack: end;
3014
+ justify-content: flex-end;
3015
+ }
3016
+
3017
+ .emotion-14 {
3018
+ height: 100%;
3019
+ display: -webkit-box;
3020
+ display: -webkit-flex;
3021
+ display: -ms-flexbox;
3022
+ display: flex;
3023
+ -webkit-align-items: center;
3024
+ -webkit-box-align: center;
3025
+ -ms-flex-align: center;
3026
+ align-items: center;
3027
+ border: 0 solid #dfdfe3;
3028
+ border-left-width: 1px;
3029
+ padding: 0 7px;
3030
+ }
3031
+
3032
+ .emotion-6 {
3033
+ border: 0;
3034
+ border-radius: 5px;
3035
+ cursor: pointer;
3036
+ height: 36px;
3037
+ line-height: 36px;
3038
+ font-weight: 500;
3039
+ padding: 0 15px;
3040
+ background-color: #798291;
3041
+ color: #fff;
3042
+ margin: 0 10px;
3043
+ overflow: hidden;
3044
+ white-space: nowrap;
3045
+ text-overflow: ellipsis;
3046
+ display: block;
3047
+ background-color: #e8f5fe;
3048
+ color: #3a69c7;
3049
+ }
3050
+
3051
+ @media (max-width:1200px) {
3052
+ .emotion-6 {
3053
+ padding: 0 10px;
3054
+ }
3055
+ }
3056
+
3057
+ .emotion-6[disabled] {
3058
+ background-color: #eff0f4;
3059
+ color: #798291;
3060
+ cursor: default;
3061
+ }
3062
+
3063
+ <div
3064
+ class="emotion-16 emotion-17"
3065
+ >
3066
+ <mock-link
3067
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
3068
+ to=""
3069
+ >
3070
+ <div
3071
+ class="emotion-0 emotion-1"
3072
+ >
3073
+
3074
+ </div>
3075
+ <div>
3076
+ <div
3077
+ class="emotion-2 emotion-3"
3078
+ >
3079
+ editor.editorToolbar.backCollection
3080
+ </div>
3081
+ <div
3082
+ class="emotion-4 emotion-5"
3083
+ >
3084
+ editor.editorToolbar.changesSaved
3085
+ </div>
3086
+ </div>
3087
+ </mock-link>
3088
+ <div
3089
+ class="emotion-12 emotion-13"
3090
+ >
3091
+ <div
3092
+ class="emotion-8 emotion-9"
3093
+ >
3094
+ <button
3095
+ class="emotion-6 emotion-7"
3096
+ disabled=""
3097
+ >
3098
+ editor.editorToolbar.save
3099
+ </button>
3100
+ </div>
3101
+ <div
3102
+ class="emotion-10 emotion-11"
3103
+ />
3104
+ </div>
3105
+ <div
3106
+ class="emotion-14 emotion-15"
3107
+ >
3108
+ <mock-settings-dropdown />
3109
+ </div>
3110
+ </div>
3111
+ </DocumentFragment>
3112
+ `;
3113
+
3114
+ exports[`EditorToolbar should render with workflow controls hasUnpublishedChanges=true,isNewEntry=false,isModification=false,useOpenAuthoring=false 1`] = `
3115
+ <DocumentFragment>
3116
+ .emotion-18 {
3117
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
3118
+ position: fixed;
3119
+ top: 0;
3120
+ left: 0;
3121
+ width: 100%;
3122
+ min-width: 800px;
3123
+ z-index: 300;
3124
+ background-color: #fff;
3125
+ height: 66px;
3126
+ display: -webkit-box;
3127
+ display: -webkit-flex;
3128
+ display: -ms-flexbox;
3129
+ display: flex;
3130
+ -webkit-box-pack: justify;
3131
+ -webkit-justify-content: space-between;
3132
+ -ms-flex-pack: justify;
3133
+ justify-content: space-between;
3134
+ }
3135
+
3136
+ .emotion-0 {
3137
+ color: #313d3e;
3138
+ font-size: 21px;
3139
+ font-weight: 600;
3140
+ margin-right: 16px;
3141
+ }
3142
+
3143
+ .emotion-2 {
3144
+ color: #313d3e;
3145
+ font-size: 14px;
3146
+ }
3147
+
3148
+ .emotion-2 {
3149
+ color: #313d3e;
3150
+ font-size: 14px;
3151
+ }
3152
+
3153
+ .emotion-4 {
3154
+ margin-top: 6px;
3155
+ font-size: 13px;
3156
+ line-height: 1;
3157
+ display: inline-block;
3158
+ font-weight: 700;
3159
+ text-transform: uppercase;
3160
+ color: #005614;
3161
+ }
3162
+
3163
+ .emotion-14 {
3164
+ height: 100%;
3165
+ display: -webkit-box;
3166
+ display: -webkit-flex;
3167
+ display: -ms-flexbox;
3168
+ display: flex;
3169
+ -webkit-align-items: center;
3170
+ -webkit-box-align: center;
3171
+ -ms-flex-align: center;
3172
+ align-items: center;
3173
+ border: 0 solid #dfdfe3;
3174
+ -webkit-flex: 10;
3175
+ -ms-flex: 10;
3176
+ flex: 10;
3177
+ display: -webkit-box;
3178
+ display: -webkit-flex;
3179
+ display: -ms-flexbox;
3180
+ display: flex;
3181
+ -webkit-box-pack: justify;
3182
+ -webkit-justify-content: space-between;
3183
+ -ms-flex-pack: justify;
3184
+ justify-content: space-between;
3185
+ padding: 0 10px;
3186
+ }
3187
+
3188
+ .emotion-10 {
3189
+ display: -webkit-box;
3190
+ display: -webkit-flex;
3191
+ display: -ms-flexbox;
3192
+ display: flex;
3193
+ -webkit-align-items: center;
3194
+ -webkit-box-align: center;
3195
+ -ms-flex-align: center;
3196
+ align-items: center;
3197
+ }
3198
+
3199
+ .emotion-8 {
3200
+ border: 0;
3201
+ border-radius: 5px;
3202
+ cursor: pointer;
3203
+ height: 36px;
3204
+ line-height: 36px;
3205
+ font-weight: 500;
3206
+ padding: 0 15px;
3207
+ background-color: #798291;
3208
+ color: #fff;
3209
+ margin: 0 10px;
3210
+ overflow: hidden;
3211
+ white-space: nowrap;
3212
+ text-overflow: ellipsis;
3213
+ display: block;
3214
+ background-color: #fcefea;
3215
+ color: #D60032;
3216
+ }
3217
+
3218
+ @media (max-width:1200px) {
3219
+ .emotion-8 {
3220
+ padding: 0 10px;
3221
+ }
3222
+ }
3223
+
3224
+ .emotion-12 {
3225
+ display: -webkit-box;
3226
+ display: -webkit-flex;
3227
+ display: -ms-flexbox;
3228
+ display: flex;
3229
+ -webkit-align-items: center;
3230
+ -webkit-box-align: center;
3231
+ -ms-flex-align: center;
3232
+ align-items: center;
3233
+ -webkit-box-pack: end;
3234
+ -webkit-justify-content: flex-end;
3235
+ -ms-flex-pack: end;
3236
+ justify-content: flex-end;
3237
+ }
3238
+
3239
+ .emotion-16 {
3240
+ height: 100%;
3241
+ display: -webkit-box;
3242
+ display: -webkit-flex;
3243
+ display: -ms-flexbox;
3244
+ display: flex;
3245
+ -webkit-align-items: center;
3246
+ -webkit-box-align: center;
3247
+ -ms-flex-align: center;
3248
+ align-items: center;
3249
+ border: 0 solid #dfdfe3;
3250
+ border-left-width: 1px;
3251
+ padding: 0 7px;
3252
+ }
3253
+
3254
+ .emotion-6 {
3255
+ border: 0;
3256
+ border-radius: 5px;
3257
+ cursor: pointer;
3258
+ height: 36px;
3259
+ line-height: 36px;
3260
+ font-weight: 500;
3261
+ padding: 0 15px;
3262
+ background-color: #798291;
3263
+ color: #fff;
3264
+ margin: 0 10px;
3265
+ overflow: hidden;
3266
+ white-space: nowrap;
3267
+ text-overflow: ellipsis;
3268
+ display: block;
3269
+ background-color: #e8f5fe;
3270
+ color: #3a69c7;
3271
+ }
3272
+
3273
+ @media (max-width:1200px) {
3274
+ .emotion-6 {
3275
+ padding: 0 10px;
3276
+ }
3277
+ }
3278
+
3279
+ .emotion-6[disabled] {
3280
+ background-color: #eff0f4;
3281
+ color: #798291;
3282
+ cursor: default;
3283
+ }
3284
+
3285
+ <div
3286
+ class="emotion-18 emotion-19"
3287
+ >
3288
+ <mock-link
3289
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
3290
+ to=""
3291
+ >
3292
+ <div
3293
+ class="emotion-0 emotion-1"
3294
+ >
3295
+
3296
+ </div>
3297
+ <div>
3298
+ <div
3299
+ class="emotion-2 emotion-3"
3300
+ >
3301
+ editor.editorToolbar.backCollection
3302
+ </div>
3303
+ <div
3304
+ class="emotion-4 emotion-5"
3305
+ >
3306
+ editor.editorToolbar.changesSaved
3307
+ </div>
3308
+ </div>
3309
+ </mock-link>
3310
+ <div
3311
+ class="emotion-14 emotion-15"
3312
+ >
3313
+ <div
3314
+ class="emotion-10 emotion-11"
3315
+ >
3316
+ <button
3317
+ class="emotion-6 emotion-7"
3318
+ disabled=""
3319
+ >
3320
+ editor.editorToolbar.save
3321
+ </button>
3322
+ <button
3323
+ class="emotion-8 emotion-9"
3324
+ >
3325
+ editor.editorToolbar.deleteUnpublishedEntry
3326
+ </button>
3327
+ </div>
3328
+ <div
3329
+ class="emotion-12 emotion-13"
3330
+ />
3331
+ </div>
3332
+ <div
3333
+ class="emotion-16 emotion-17"
3334
+ >
3335
+ <mock-settings-dropdown />
3336
+ </div>
3337
+ </div>
3338
+ </DocumentFragment>
3339
+ `;
3340
+
3341
+ exports[`EditorToolbar should render with workflow controls hasUnpublishedChanges=true,isNewEntry=false,isModification=false,useOpenAuthoring=true 1`] = `
3342
+ <DocumentFragment>
3343
+ .emotion-18 {
3344
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
3345
+ position: fixed;
3346
+ top: 0;
3347
+ left: 0;
3348
+ width: 100%;
3349
+ min-width: 800px;
3350
+ z-index: 300;
3351
+ background-color: #fff;
3352
+ height: 66px;
3353
+ display: -webkit-box;
3354
+ display: -webkit-flex;
3355
+ display: -ms-flexbox;
3356
+ display: flex;
3357
+ -webkit-box-pack: justify;
3358
+ -webkit-justify-content: space-between;
3359
+ -ms-flex-pack: justify;
3360
+ justify-content: space-between;
3361
+ }
3362
+
3363
+ .emotion-0 {
3364
+ color: #313d3e;
3365
+ font-size: 21px;
3366
+ font-weight: 600;
3367
+ margin-right: 16px;
3368
+ }
3369
+
3370
+ .emotion-2 {
3371
+ color: #313d3e;
3372
+ font-size: 14px;
3373
+ }
3374
+
3375
+ .emotion-2 {
3376
+ color: #313d3e;
3377
+ font-size: 14px;
3378
+ }
3379
+
3380
+ .emotion-4 {
3381
+ margin-top: 6px;
3382
+ font-size: 13px;
3383
+ line-height: 1;
3384
+ display: inline-block;
3385
+ font-weight: 700;
3386
+ text-transform: uppercase;
3387
+ color: #005614;
3388
+ }
3389
+
3390
+ .emotion-14 {
3391
+ height: 100%;
3392
+ display: -webkit-box;
3393
+ display: -webkit-flex;
3394
+ display: -ms-flexbox;
3395
+ display: flex;
3396
+ -webkit-align-items: center;
3397
+ -webkit-box-align: center;
3398
+ -ms-flex-align: center;
3399
+ align-items: center;
3400
+ border: 0 solid #dfdfe3;
3401
+ -webkit-flex: 10;
3402
+ -ms-flex: 10;
3403
+ flex: 10;
3404
+ display: -webkit-box;
3405
+ display: -webkit-flex;
3406
+ display: -ms-flexbox;
3407
+ display: flex;
3408
+ -webkit-box-pack: justify;
3409
+ -webkit-justify-content: space-between;
3410
+ -ms-flex-pack: justify;
3411
+ justify-content: space-between;
3412
+ padding: 0 10px;
3413
+ }
3414
+
3415
+ .emotion-10 {
3416
+ display: -webkit-box;
3417
+ display: -webkit-flex;
3418
+ display: -ms-flexbox;
3419
+ display: flex;
3420
+ -webkit-align-items: center;
3421
+ -webkit-box-align: center;
3422
+ -ms-flex-align: center;
3423
+ align-items: center;
3424
+ }
3425
+
3426
+ .emotion-8 {
3427
+ border: 0;
3428
+ border-radius: 5px;
3429
+ cursor: pointer;
3430
+ height: 36px;
3431
+ line-height: 36px;
3432
+ font-weight: 500;
3433
+ padding: 0 15px;
3434
+ background-color: #798291;
3435
+ color: #fff;
3436
+ margin: 0 10px;
3437
+ overflow: hidden;
3438
+ white-space: nowrap;
3439
+ text-overflow: ellipsis;
3440
+ display: block;
3441
+ background-color: #fcefea;
3442
+ color: #D60032;
3443
+ }
3444
+
3445
+ @media (max-width:1200px) {
3446
+ .emotion-8 {
3447
+ padding: 0 10px;
3448
+ }
3449
+ }
3450
+
3451
+ .emotion-12 {
3452
+ display: -webkit-box;
3453
+ display: -webkit-flex;
3454
+ display: -ms-flexbox;
3455
+ display: flex;
3456
+ -webkit-align-items: center;
3457
+ -webkit-box-align: center;
3458
+ -ms-flex-align: center;
3459
+ align-items: center;
3460
+ -webkit-box-pack: end;
3461
+ -webkit-justify-content: flex-end;
3462
+ -ms-flex-pack: end;
3463
+ justify-content: flex-end;
3464
+ }
3465
+
3466
+ .emotion-16 {
3467
+ height: 100%;
3468
+ display: -webkit-box;
3469
+ display: -webkit-flex;
3470
+ display: -ms-flexbox;
3471
+ display: flex;
3472
+ -webkit-align-items: center;
3473
+ -webkit-box-align: center;
3474
+ -ms-flex-align: center;
3475
+ align-items: center;
3476
+ border: 0 solid #dfdfe3;
3477
+ border-left-width: 1px;
3478
+ padding: 0 7px;
3479
+ }
3480
+
3481
+ .emotion-6 {
3482
+ border: 0;
3483
+ border-radius: 5px;
3484
+ cursor: pointer;
3485
+ height: 36px;
3486
+ line-height: 36px;
3487
+ font-weight: 500;
3488
+ padding: 0 15px;
3489
+ background-color: #798291;
3490
+ color: #fff;
3491
+ margin: 0 10px;
3492
+ overflow: hidden;
3493
+ white-space: nowrap;
3494
+ text-overflow: ellipsis;
3495
+ display: block;
3496
+ background-color: #e8f5fe;
3497
+ color: #3a69c7;
3498
+ }
3499
+
3500
+ @media (max-width:1200px) {
3501
+ .emotion-6 {
3502
+ padding: 0 10px;
3503
+ }
3504
+ }
3505
+
3506
+ .emotion-6[disabled] {
3507
+ background-color: #eff0f4;
3508
+ color: #798291;
3509
+ cursor: default;
3510
+ }
3511
+
3512
+ <div
3513
+ class="emotion-18 emotion-19"
3514
+ >
3515
+ <mock-link
3516
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
3517
+ to=""
3518
+ >
3519
+ <div
3520
+ class="emotion-0 emotion-1"
3521
+ >
3522
+
3523
+ </div>
3524
+ <div>
3525
+ <div
3526
+ class="emotion-2 emotion-3"
3527
+ >
3528
+ editor.editorToolbar.backCollection
3529
+ </div>
3530
+ <div
3531
+ class="emotion-4 emotion-5"
3532
+ >
3533
+ editor.editorToolbar.changesSaved
3534
+ </div>
3535
+ </div>
3536
+ </mock-link>
3537
+ <div
3538
+ class="emotion-14 emotion-15"
3539
+ >
3540
+ <div
3541
+ class="emotion-10 emotion-11"
3542
+ >
3543
+ <button
3544
+ class="emotion-6 emotion-7"
3545
+ disabled=""
3546
+ >
3547
+ editor.editorToolbar.save
3548
+ </button>
3549
+ <button
3550
+ class="emotion-8 emotion-9"
3551
+ >
3552
+ editor.editorToolbar.deleteUnpublishedEntry
3553
+ </button>
3554
+ </div>
3555
+ <div
3556
+ class="emotion-12 emotion-13"
3557
+ />
3558
+ </div>
3559
+ <div
3560
+ class="emotion-16 emotion-17"
3561
+ >
3562
+ <mock-settings-dropdown />
3563
+ </div>
3564
+ </div>
3565
+ </DocumentFragment>
3566
+ `;
3567
+
3568
+ exports[`EditorToolbar should render with workflow controls hasUnpublishedChanges=true,isNewEntry=false,isModification=true,useOpenAuthoring=false 1`] = `
3569
+ <DocumentFragment>
3570
+ .emotion-18 {
3571
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
3572
+ position: fixed;
3573
+ top: 0;
3574
+ left: 0;
3575
+ width: 100%;
3576
+ min-width: 800px;
3577
+ z-index: 300;
3578
+ background-color: #fff;
3579
+ height: 66px;
3580
+ display: -webkit-box;
3581
+ display: -webkit-flex;
3582
+ display: -ms-flexbox;
3583
+ display: flex;
3584
+ -webkit-box-pack: justify;
3585
+ -webkit-justify-content: space-between;
3586
+ -ms-flex-pack: justify;
3587
+ justify-content: space-between;
3588
+ }
3589
+
3590
+ .emotion-0 {
3591
+ color: #313d3e;
3592
+ font-size: 21px;
3593
+ font-weight: 600;
3594
+ margin-right: 16px;
3595
+ }
3596
+
3597
+ .emotion-2 {
3598
+ color: #313d3e;
3599
+ font-size: 14px;
3600
+ }
3601
+
3602
+ .emotion-2 {
3603
+ color: #313d3e;
3604
+ font-size: 14px;
3605
+ }
3606
+
3607
+ .emotion-4 {
3608
+ margin-top: 6px;
3609
+ font-size: 13px;
3610
+ line-height: 1;
3611
+ display: inline-block;
3612
+ font-weight: 700;
3613
+ text-transform: uppercase;
3614
+ color: #005614;
3615
+ }
3616
+
3617
+ .emotion-14 {
3618
+ height: 100%;
3619
+ display: -webkit-box;
3620
+ display: -webkit-flex;
3621
+ display: -ms-flexbox;
3622
+ display: flex;
3623
+ -webkit-align-items: center;
3624
+ -webkit-box-align: center;
3625
+ -ms-flex-align: center;
3626
+ align-items: center;
3627
+ border: 0 solid #dfdfe3;
3628
+ -webkit-flex: 10;
3629
+ -ms-flex: 10;
3630
+ flex: 10;
3631
+ display: -webkit-box;
3632
+ display: -webkit-flex;
3633
+ display: -ms-flexbox;
3634
+ display: flex;
3635
+ -webkit-box-pack: justify;
3636
+ -webkit-justify-content: space-between;
3637
+ -ms-flex-pack: justify;
3638
+ justify-content: space-between;
3639
+ padding: 0 10px;
3640
+ }
3641
+
3642
+ .emotion-10 {
3643
+ display: -webkit-box;
3644
+ display: -webkit-flex;
3645
+ display: -ms-flexbox;
3646
+ display: flex;
3647
+ -webkit-align-items: center;
3648
+ -webkit-box-align: center;
3649
+ -ms-flex-align: center;
3650
+ align-items: center;
3651
+ }
3652
+
3653
+ .emotion-8 {
3654
+ border: 0;
3655
+ border-radius: 5px;
3656
+ cursor: pointer;
3657
+ height: 36px;
3658
+ line-height: 36px;
3659
+ font-weight: 500;
3660
+ padding: 0 15px;
3661
+ background-color: #798291;
3662
+ color: #fff;
3663
+ margin: 0 10px;
3664
+ overflow: hidden;
3665
+ white-space: nowrap;
3666
+ text-overflow: ellipsis;
3667
+ display: block;
3668
+ background-color: #fcefea;
3669
+ color: #D60032;
3670
+ }
3671
+
3672
+ @media (max-width:1200px) {
3673
+ .emotion-8 {
3674
+ padding: 0 10px;
3675
+ }
3676
+ }
3677
+
3678
+ .emotion-12 {
3679
+ display: -webkit-box;
3680
+ display: -webkit-flex;
3681
+ display: -ms-flexbox;
3682
+ display: flex;
3683
+ -webkit-align-items: center;
3684
+ -webkit-box-align: center;
3685
+ -ms-flex-align: center;
3686
+ align-items: center;
3687
+ -webkit-box-pack: end;
3688
+ -webkit-justify-content: flex-end;
3689
+ -ms-flex-pack: end;
3690
+ justify-content: flex-end;
3691
+ }
3692
+
3693
+ .emotion-16 {
3694
+ height: 100%;
3695
+ display: -webkit-box;
3696
+ display: -webkit-flex;
3697
+ display: -ms-flexbox;
3698
+ display: flex;
3699
+ -webkit-align-items: center;
3700
+ -webkit-box-align: center;
3701
+ -ms-flex-align: center;
3702
+ align-items: center;
3703
+ border: 0 solid #dfdfe3;
3704
+ border-left-width: 1px;
3705
+ padding: 0 7px;
3706
+ }
3707
+
3708
+ .emotion-6 {
3709
+ border: 0;
3710
+ border-radius: 5px;
3711
+ cursor: pointer;
3712
+ height: 36px;
3713
+ line-height: 36px;
3714
+ font-weight: 500;
3715
+ padding: 0 15px;
3716
+ background-color: #798291;
3717
+ color: #fff;
3718
+ margin: 0 10px;
3719
+ overflow: hidden;
3720
+ white-space: nowrap;
3721
+ text-overflow: ellipsis;
3722
+ display: block;
3723
+ background-color: #e8f5fe;
3724
+ color: #3a69c7;
3725
+ }
3726
+
3727
+ @media (max-width:1200px) {
3728
+ .emotion-6 {
3729
+ padding: 0 10px;
3730
+ }
3731
+ }
3732
+
3733
+ .emotion-6[disabled] {
3734
+ background-color: #eff0f4;
3735
+ color: #798291;
3736
+ cursor: default;
3737
+ }
3738
+
3739
+ <div
3740
+ class="emotion-18 emotion-19"
3741
+ >
3742
+ <mock-link
3743
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
3744
+ to=""
3745
+ >
3746
+ <div
3747
+ class="emotion-0 emotion-1"
3748
+ >
3749
+
3750
+ </div>
3751
+ <div>
3752
+ <div
3753
+ class="emotion-2 emotion-3"
3754
+ >
3755
+ editor.editorToolbar.backCollection
3756
+ </div>
3757
+ <div
3758
+ class="emotion-4 emotion-5"
3759
+ >
3760
+ editor.editorToolbar.changesSaved
3761
+ </div>
3762
+ </div>
3763
+ </mock-link>
3764
+ <div
3765
+ class="emotion-14 emotion-15"
3766
+ >
3767
+ <div
3768
+ class="emotion-10 emotion-11"
3769
+ >
3770
+ <button
3771
+ class="emotion-6 emotion-7"
3772
+ disabled=""
3773
+ >
3774
+ editor.editorToolbar.save
3775
+ </button>
3776
+ <button
3777
+ class="emotion-8 emotion-9"
3778
+ >
3779
+ editor.editorToolbar.deleteUnpublishedChanges
3780
+ </button>
3781
+ </div>
3782
+ <div
3783
+ class="emotion-12 emotion-13"
3784
+ />
3785
+ </div>
3786
+ <div
3787
+ class="emotion-16 emotion-17"
3788
+ >
3789
+ <mock-settings-dropdown />
3790
+ </div>
3791
+ </div>
3792
+ </DocumentFragment>
3793
+ `;
3794
+
3795
+ exports[`EditorToolbar should render with workflow controls hasUnpublishedChanges=true,isNewEntry=false,isModification=true,useOpenAuthoring=true 1`] = `
3796
+ <DocumentFragment>
3797
+ .emotion-18 {
3798
+ box-shadow: 0 2px 6px 0 rgba(68,74,87,0.05),0 1px 3px 0 rgba(68,74,87,0.1),0 2px 54px rgba(0,0,0,0.1);
3799
+ position: fixed;
3800
+ top: 0;
3801
+ left: 0;
3802
+ width: 100%;
3803
+ min-width: 800px;
3804
+ z-index: 300;
3805
+ background-color: #fff;
3806
+ height: 66px;
3807
+ display: -webkit-box;
3808
+ display: -webkit-flex;
3809
+ display: -ms-flexbox;
3810
+ display: flex;
3811
+ -webkit-box-pack: justify;
3812
+ -webkit-justify-content: space-between;
3813
+ -ms-flex-pack: justify;
3814
+ justify-content: space-between;
3815
+ }
3816
+
3817
+ .emotion-0 {
3818
+ color: #313d3e;
3819
+ font-size: 21px;
3820
+ font-weight: 600;
3821
+ margin-right: 16px;
3822
+ }
3823
+
3824
+ .emotion-2 {
3825
+ color: #313d3e;
3826
+ font-size: 14px;
3827
+ }
3828
+
3829
+ .emotion-2 {
3830
+ color: #313d3e;
3831
+ font-size: 14px;
3832
+ }
3833
+
3834
+ .emotion-4 {
3835
+ margin-top: 6px;
3836
+ font-size: 13px;
3837
+ line-height: 1;
3838
+ display: inline-block;
3839
+ font-weight: 700;
3840
+ text-transform: uppercase;
3841
+ color: #005614;
3842
+ }
3843
+
3844
+ .emotion-14 {
3845
+ height: 100%;
3846
+ display: -webkit-box;
3847
+ display: -webkit-flex;
3848
+ display: -ms-flexbox;
3849
+ display: flex;
3850
+ -webkit-align-items: center;
3851
+ -webkit-box-align: center;
3852
+ -ms-flex-align: center;
3853
+ align-items: center;
3854
+ border: 0 solid #dfdfe3;
3855
+ -webkit-flex: 10;
3856
+ -ms-flex: 10;
3857
+ flex: 10;
3858
+ display: -webkit-box;
3859
+ display: -webkit-flex;
3860
+ display: -ms-flexbox;
3861
+ display: flex;
3862
+ -webkit-box-pack: justify;
3863
+ -webkit-justify-content: space-between;
3864
+ -ms-flex-pack: justify;
3865
+ justify-content: space-between;
3866
+ padding: 0 10px;
3867
+ }
3868
+
3869
+ .emotion-10 {
3870
+ display: -webkit-box;
3871
+ display: -webkit-flex;
3872
+ display: -ms-flexbox;
3873
+ display: flex;
3874
+ -webkit-align-items: center;
3875
+ -webkit-box-align: center;
3876
+ -ms-flex-align: center;
3877
+ align-items: center;
3878
+ }
3879
+
3880
+ .emotion-8 {
3881
+ border: 0;
3882
+ border-radius: 5px;
3883
+ cursor: pointer;
3884
+ height: 36px;
3885
+ line-height: 36px;
3886
+ font-weight: 500;
3887
+ padding: 0 15px;
3888
+ background-color: #798291;
3889
+ color: #fff;
3890
+ margin: 0 10px;
3891
+ overflow: hidden;
3892
+ white-space: nowrap;
3893
+ text-overflow: ellipsis;
3894
+ display: block;
3895
+ background-color: #fcefea;
3896
+ color: #D60032;
3897
+ }
3898
+
3899
+ @media (max-width:1200px) {
3900
+ .emotion-8 {
3901
+ padding: 0 10px;
3902
+ }
3903
+ }
3904
+
3905
+ .emotion-12 {
3906
+ display: -webkit-box;
3907
+ display: -webkit-flex;
3908
+ display: -ms-flexbox;
3909
+ display: flex;
3910
+ -webkit-align-items: center;
3911
+ -webkit-box-align: center;
3912
+ -ms-flex-align: center;
3913
+ align-items: center;
3914
+ -webkit-box-pack: end;
3915
+ -webkit-justify-content: flex-end;
3916
+ -ms-flex-pack: end;
3917
+ justify-content: flex-end;
3918
+ }
3919
+
3920
+ .emotion-16 {
3921
+ height: 100%;
3922
+ display: -webkit-box;
3923
+ display: -webkit-flex;
3924
+ display: -ms-flexbox;
3925
+ display: flex;
3926
+ -webkit-align-items: center;
3927
+ -webkit-box-align: center;
3928
+ -ms-flex-align: center;
3929
+ align-items: center;
3930
+ border: 0 solid #dfdfe3;
3931
+ border-left-width: 1px;
3932
+ padding: 0 7px;
3933
+ }
3934
+
3935
+ .emotion-6 {
3936
+ border: 0;
3937
+ border-radius: 5px;
3938
+ cursor: pointer;
3939
+ height: 36px;
3940
+ line-height: 36px;
3941
+ font-weight: 500;
3942
+ padding: 0 15px;
3943
+ background-color: #798291;
3944
+ color: #fff;
3945
+ margin: 0 10px;
3946
+ overflow: hidden;
3947
+ white-space: nowrap;
3948
+ text-overflow: ellipsis;
3949
+ display: block;
3950
+ background-color: #e8f5fe;
3951
+ color: #3a69c7;
3952
+ }
3953
+
3954
+ @media (max-width:1200px) {
3955
+ .emotion-6 {
3956
+ padding: 0 10px;
3957
+ }
3958
+ }
3959
+
3960
+ .emotion-6[disabled] {
3961
+ background-color: #eff0f4;
3962
+ color: #798291;
3963
+ cursor: default;
3964
+ }
3965
+
3966
+ <div
3967
+ class="emotion-18 emotion-19"
3968
+ >
3969
+ <mock-link
3970
+ classname="css-16gdrpq-ToolbarSectionBackLink-toolbarSection e1d2l9mo8"
3971
+ to=""
3972
+ >
3973
+ <div
3974
+ class="emotion-0 emotion-1"
3975
+ >
3976
+
3977
+ </div>
3978
+ <div>
3979
+ <div
3980
+ class="emotion-2 emotion-3"
3981
+ >
3982
+ editor.editorToolbar.backCollection
3983
+ </div>
3984
+ <div
3985
+ class="emotion-4 emotion-5"
3986
+ >
3987
+ editor.editorToolbar.changesSaved
3988
+ </div>
3989
+ </div>
3990
+ </mock-link>
3991
+ <div
3992
+ class="emotion-14 emotion-15"
3993
+ >
3994
+ <div
3995
+ class="emotion-10 emotion-11"
3996
+ >
3997
+ <button
3998
+ class="emotion-6 emotion-7"
3999
+ disabled=""
4000
+ >
4001
+ editor.editorToolbar.save
4002
+ </button>
4003
+ <button
4004
+ class="emotion-8 emotion-9"
4005
+ >
4006
+ editor.editorToolbar.deleteUnpublishedChanges
4007
+ </button>
4008
+ </div>
4009
+ <div
4010
+ class="emotion-12 emotion-13"
4011
+ />
4012
+ </div>
4013
+ <div
4014
+ class="emotion-16 emotion-17"
4015
+ >
4016
+ <mock-settings-dropdown />
4017
+ </div>
4018
+ </div>
4019
+ </DocumentFragment>
4020
+ `;