@onehat/ui 0.1.3 → 0.2.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 (356) hide show
  1. package/ckeditor5/LICENSE.md +49 -0
  2. package/ckeditor5/README.md +68 -0
  3. package/ckeditor5/build/ckeditor.js +6 -0
  4. package/ckeditor5/build/ckeditor.js.map +1 -0
  5. package/ckeditor5/build/translations/af.js +1 -0
  6. package/ckeditor5/build/translations/ar.js +1 -0
  7. package/ckeditor5/build/translations/ast.js +1 -0
  8. package/ckeditor5/build/translations/az.js +1 -0
  9. package/ckeditor5/build/translations/bg.js +1 -0
  10. package/ckeditor5/build/translations/bn.js +1 -0
  11. package/ckeditor5/build/translations/bs.js +1 -0
  12. package/ckeditor5/build/translations/ca.js +1 -0
  13. package/ckeditor5/build/translations/cs.js +1 -0
  14. package/ckeditor5/build/translations/da.js +1 -0
  15. package/ckeditor5/build/translations/de-ch.js +1 -0
  16. package/ckeditor5/build/translations/de.js +1 -0
  17. package/ckeditor5/build/translations/el.js +1 -0
  18. package/ckeditor5/build/translations/en-au.js +1 -0
  19. package/ckeditor5/build/translations/en-gb.js +1 -0
  20. package/ckeditor5/build/translations/eo.js +1 -0
  21. package/ckeditor5/build/translations/es-co.js +1 -0
  22. package/ckeditor5/build/translations/es.js +1 -0
  23. package/ckeditor5/build/translations/et.js +1 -0
  24. package/ckeditor5/build/translations/eu.js +1 -0
  25. package/ckeditor5/build/translations/fa.js +1 -0
  26. package/ckeditor5/build/translations/fi.js +1 -0
  27. package/ckeditor5/build/translations/fr.js +1 -0
  28. package/ckeditor5/build/translations/gl.js +1 -0
  29. package/ckeditor5/build/translations/gu.js +1 -0
  30. package/ckeditor5/build/translations/he.js +1 -0
  31. package/ckeditor5/build/translations/hi.js +1 -0
  32. package/ckeditor5/build/translations/hr.js +1 -0
  33. package/ckeditor5/build/translations/hu.js +1 -0
  34. package/ckeditor5/build/translations/id.js +1 -0
  35. package/ckeditor5/build/translations/it.js +1 -0
  36. package/ckeditor5/build/translations/ja.js +1 -0
  37. package/ckeditor5/build/translations/jv.js +1 -0
  38. package/ckeditor5/build/translations/kk.js +1 -0
  39. package/ckeditor5/build/translations/km.js +1 -0
  40. package/ckeditor5/build/translations/kn.js +1 -0
  41. package/ckeditor5/build/translations/ko.js +1 -0
  42. package/ckeditor5/build/translations/ku.js +1 -0
  43. package/ckeditor5/build/translations/lt.js +1 -0
  44. package/ckeditor5/build/translations/lv.js +1 -0
  45. package/ckeditor5/build/translations/ms.js +1 -0
  46. package/ckeditor5/build/translations/nb.js +1 -0
  47. package/ckeditor5/build/translations/ne.js +1 -0
  48. package/ckeditor5/build/translations/nl.js +1 -0
  49. package/ckeditor5/build/translations/no.js +1 -0
  50. package/ckeditor5/build/translations/oc.js +1 -0
  51. package/ckeditor5/build/translations/pl.js +1 -0
  52. package/ckeditor5/build/translations/pt-br.js +1 -0
  53. package/ckeditor5/build/translations/pt.js +1 -0
  54. package/ckeditor5/build/translations/ro.js +1 -0
  55. package/ckeditor5/build/translations/ru.js +1 -0
  56. package/ckeditor5/build/translations/si.js +1 -0
  57. package/ckeditor5/build/translations/sk.js +1 -0
  58. package/ckeditor5/build/translations/sl.js +1 -0
  59. package/ckeditor5/build/translations/sq.js +1 -0
  60. package/ckeditor5/build/translations/sr-latn.js +1 -0
  61. package/ckeditor5/build/translations/sr.js +1 -0
  62. package/ckeditor5/build/translations/sv.js +1 -0
  63. package/ckeditor5/build/translations/th.js +1 -0
  64. package/ckeditor5/build/translations/tk.js +1 -0
  65. package/ckeditor5/build/translations/tr.js +1 -0
  66. package/ckeditor5/build/translations/tt.js +1 -0
  67. package/ckeditor5/build/translations/ug.js +1 -0
  68. package/ckeditor5/build/translations/uk.js +1 -0
  69. package/ckeditor5/build/translations/ur.js +1 -0
  70. package/ckeditor5/build/translations/uz.js +1 -0
  71. package/ckeditor5/build/translations/vi.js +1 -0
  72. package/ckeditor5/build/translations/zh-cn.js +1 -0
  73. package/ckeditor5/build/translations/zh.js +1 -0
  74. package/ckeditor5/package.json +46 -0
  75. package/ckeditor5/sample/index.html +130 -0
  76. package/ckeditor5/sample/styles.css +496 -0
  77. package/ckeditor5/src/ckeditor.js +138 -0
  78. package/ckeditor5/webpack.config.js +96 -0
  79. package/package.json +19 -23
  80. package/src/Components/Accordion/Accordion.js +144 -0
  81. package/src/Components/Blank.js +14 -0
  82. package/src/Components/Buttons/BackButton.js +14 -0
  83. package/src/Components/Buttons/CartButtonWithBadge.js +25 -0
  84. package/src/Components/Buttons/IconButton.js +42 -0
  85. package/src/Components/Container/Container.js +178 -0
  86. package/src/Components/Container/Splitter.js +61 -0
  87. package/src/Components/Filter/DateRange.js +99 -0
  88. package/src/Components/Filter/NumberRange.js +96 -0
  89. package/src/Components/Form/Field/CKEditor/CKEditor.js +62 -0
  90. package/src/Components/Form/Field/CKEditor/styles.css +503 -0
  91. package/src/Components/Form/Field/CKEditor.js +12 -0
  92. package/src/Components/Form/Field/CheckboxGroup/ArrayCheckboxGroup.js +13 -0
  93. package/src/Components/Form/Field/CheckboxGroup/CheckboxGroup.js +61 -0
  94. package/src/Components/Form/Field/Color.js +226 -0
  95. package/src/Components/Form/Field/Combo/ArrayCombo.js +15 -0
  96. package/src/Components/Form/Field/Combo/BooleanCombo.js +23 -0
  97. package/src/Components/Form/Field/Combo/Combo.js +504 -0
  98. package/src/Components/Form/Field/Combo/ComboEditor.js +22 -0
  99. package/src/Components/Form/Field/Combo/IntervalsCombo.js +18 -0
  100. package/src/Components/Form/Field/Combo/MonthsCombo.js +24 -0
  101. package/src/Components/Form/Field/Combo/PageSizeCombo.js +38 -0
  102. package/src/Components/Form/Field/Combo/Tag.js +12 -0
  103. package/src/Components/Form/Field/Combo/TimezonesCombo.js +432 -0
  104. package/src/Components/Form/Field/Combo/YearsCombo.js +35 -0
  105. package/src/Components/Form/Field/Date.js +370 -0
  106. package/src/Components/Form/Field/DisplayField.js +28 -0
  107. package/src/Components/Form/Field/Field.js +14 -0
  108. package/src/Components/Form/Field/File.js +218 -0
  109. package/src/Components/Form/Field/Input.js +96 -0
  110. package/src/Components/Form/Field/Number.js +151 -0
  111. package/src/Components/Form/Field/RadioGroup/ArrayRadioGroup.js +13 -0
  112. package/src/Components/Form/Field/RadioGroup/RadioGroup.js +62 -0
  113. package/src/Components/Form/Field/Tag.js +11 -0
  114. package/src/Components/Form/Field/Text.js +28 -0
  115. package/src/Components/Form/Field/TextArea.js +26 -0
  116. package/src/Components/Form/Field/Toggle.js +39 -0
  117. package/src/Components/Form/Field/datetime.css +5 -0
  118. package/src/Components/Form/FieldSet.js +64 -0
  119. package/src/Components/Form/FiltersForm.js +66 -0
  120. package/src/Components/Form/Form.js +535 -0
  121. package/src/Components/Form/Label.js +24 -0
  122. package/src/Components/Grid/Grid.js +877 -0
  123. package/src/Components/Grid/GridHeaderRow.js +455 -0
  124. package/src/Components/Grid/GridRow.js +134 -0
  125. package/src/Components/Grid/HeaderReorderHandle.js +29 -0
  126. package/src/Components/Grid/HeaderResizeHandle.js +29 -0
  127. package/src/Components/Grid/NoRecordsFound.js +43 -0
  128. package/src/Components/Grid/ReactGrid.js +468 -0
  129. package/src/Components/Grid/SenchaGrid.js +421 -0
  130. package/src/Components/Grid/reactgrid.css +6 -0
  131. package/src/Components/Hoc/withAlert.js +176 -0
  132. package/src/Components/Hoc/withBlank.js +12 -0
  133. package/src/Components/Hoc/withCollapsible.js +20 -0
  134. package/src/Components/Hoc/withContextMenu.js +127 -0
  135. package/src/Components/Hoc/withData.js +85 -0
  136. package/src/Components/Hoc/withDraggable.js +259 -0
  137. package/src/Components/Hoc/withEditor.js +160 -0
  138. package/src/Components/Hoc/withEvents.js +12 -0
  139. package/src/Components/Hoc/withFilters.js +456 -0
  140. package/src/Components/Hoc/withInlineEditor.js +119 -0
  141. package/src/Components/Hoc/withMultiSelection.js +16 -0
  142. package/src/Components/Hoc/withPresetButtons.js +239 -0
  143. package/src/Components/Hoc/withSelection.js +332 -0
  144. package/src/Components/Hoc/withTooltip.js +21 -0
  145. package/src/Components/Hoc/withValue.js +87 -0
  146. package/src/Components/Hoc/withWindowedEditor.js +51 -0
  147. package/src/Components/Icons/AddressBook.js +14 -0
  148. package/src/Components/Icons/Alt.js +17 -0
  149. package/src/Components/Icons/AngleLeft.js +18 -0
  150. package/src/Components/Icons/AngleRight.js +18 -0
  151. package/src/Components/Icons/AnglesLeft.js +18 -0
  152. package/src/Components/Icons/AnglesRight.js +18 -0
  153. package/src/Components/Icons/Asterisk.js +14 -0
  154. package/src/Components/Icons/Ban.js +18 -0
  155. package/src/Components/Icons/Bars.js +14 -0
  156. package/src/Components/Icons/BigCircle.js +17 -0
  157. package/src/Components/Icons/Book.js +14 -0
  158. package/src/Components/Icons/BookOpen.js +14 -0
  159. package/src/Components/Icons/Bug.js +14 -0
  160. package/src/Components/Icons/Building.js +14 -0
  161. package/src/Components/Icons/Calendar.js +18 -0
  162. package/src/Components/Icons/Calendar2.js +18 -0
  163. package/src/Components/Icons/CalendarDays.js +18 -0
  164. package/src/Components/Icons/Camera.js +18 -0
  165. package/src/Components/Icons/CaretDown.js +18 -0
  166. package/src/Components/Icons/CaretUp.js +18 -0
  167. package/src/Components/Icons/CartPlus.js +14 -0
  168. package/src/Components/Icons/CartShopping.js +14 -0
  169. package/src/Components/Icons/CashRegister.js +14 -0
  170. package/src/Components/Icons/ChartLine.js +14 -0
  171. package/src/Components/Icons/Check.js +14 -0
  172. package/src/Components/Icons/CheckDouble.js +14 -0
  173. package/src/Components/Icons/ChevronDown.js +14 -0
  174. package/src/Components/Icons/ChevronLeft.js +14 -0
  175. package/src/Components/Icons/ChevronRight.js +14 -0
  176. package/src/Components/Icons/ChevronUp.js +14 -0
  177. package/src/Components/Icons/CircleArrowRight.js +14 -0
  178. package/src/Components/Icons/CircleExclamation.js +18 -0
  179. package/src/Components/Icons/CircleInfo.js +14 -0
  180. package/src/Components/Icons/CircleQuestion.js +14 -0
  181. package/src/Components/Icons/CircleXmark.js +14 -0
  182. package/src/Components/Icons/CircleXmarkRegular.js +14 -0
  183. package/src/Components/Icons/Clipboard.js +18 -0
  184. package/src/Components/Icons/Clock.js +14 -0
  185. package/src/Components/Icons/ClockRegular.js +14 -0
  186. package/src/Components/Icons/ClockRotateLeft.js +14 -0
  187. package/src/Components/Icons/Clone.js +14 -0
  188. package/src/Components/Icons/Comment.js +14 -0
  189. package/src/Components/Icons/CommentRegular.js +14 -0
  190. package/src/Components/Icons/Comments.js +14 -0
  191. package/src/Components/Icons/CommentsRegular.js +14 -0
  192. package/src/Components/Icons/Copyright.js +14 -0
  193. package/src/Components/Icons/Duplicate.js +18 -0
  194. package/src/Components/Icons/Edit.js +18 -0
  195. package/src/Components/Icons/EllipsisVertical.js +18 -0
  196. package/src/Components/Icons/Envelope.js +14 -0
  197. package/src/Components/Icons/EnvelopeRegular.js +14 -0
  198. package/src/Components/Icons/Exclamation.js +14 -0
  199. package/src/Components/Icons/Expand.js +14 -0
  200. package/src/Components/Icons/Eye.js +18 -0
  201. package/src/Components/Icons/File.js +18 -0
  202. package/src/Components/Icons/FloppyDiskRegular.js +14 -0
  203. package/src/Components/Icons/Gear.js +18 -0
  204. package/src/Components/Icons/Gift.js +14 -0
  205. package/src/Components/Icons/Grip.js +18 -0
  206. package/src/Components/Icons/GripLines.js +18 -0
  207. package/src/Components/Icons/GripLinesVertical.js +18 -0
  208. package/src/Components/Icons/GripVertical.js +18 -0
  209. package/src/Components/Icons/Hammer.js +14 -0
  210. package/src/Components/Icons/Hand.js +14 -0
  211. package/src/Components/Icons/House.js +14 -0
  212. package/src/Components/Icons/Info.js +14 -0
  213. package/src/Components/Icons/ItunesNote.js +14 -0
  214. package/src/Components/Icons/List.js +14 -0
  215. package/src/Components/Icons/ListCheck.js +14 -0
  216. package/src/Components/Icons/LocationDot.js +14 -0
  217. package/src/Components/Icons/Loop.js +17 -0
  218. package/src/Components/Icons/Loop1.js +18 -0
  219. package/src/Components/Icons/LoopAll.js +18 -0
  220. package/src/Components/Icons/Maximize.js +14 -0
  221. package/src/Components/Icons/Microphone.js +14 -0
  222. package/src/Components/Icons/Minimize.js +14 -0
  223. package/src/Components/Icons/Minus.js +18 -0
  224. package/src/Components/Icons/MobileScreenButton.js +14 -0
  225. package/src/Components/Icons/MoneyBill.js +14 -0
  226. package/src/Components/Icons/MoneyBillWave.js +14 -0
  227. package/src/Components/Icons/Mouth.js +24 -0
  228. package/src/Components/Icons/Music.js +14 -0
  229. package/src/Components/Icons/NoLoop.js +24 -0
  230. package/src/Components/Icons/NoReorderRows.js +25 -0
  231. package/src/Components/Icons/ObjectGroupRegular.js +14 -0
  232. package/src/Components/Icons/Pause.js +14 -0
  233. package/src/Components/Icons/Pencil.js +18 -0
  234. package/src/Components/Icons/Phone.js +14 -0
  235. package/src/Components/Icons/Play.js +14 -0
  236. package/src/Components/Icons/Plus.js +18 -0
  237. package/src/Components/Icons/Presentation.js +19 -0
  238. package/src/Components/Icons/Print.js +18 -0
  239. package/src/Components/Icons/Question.js +14 -0
  240. package/src/Components/Icons/Rate-.25x.js +20 -0
  241. package/src/Components/Icons/Rate-.5x.js +19 -0
  242. package/src/Components/Icons/Rate-.75x.js +19 -0
  243. package/src/Components/Icons/Rate-1.25x.js +20 -0
  244. package/src/Components/Icons/Rate-1.5x.js +19 -0
  245. package/src/Components/Icons/Rate-1.75x.js +19 -0
  246. package/src/Components/Icons/Rate-1x.js +19 -0
  247. package/src/Components/Icons/Rate-2x.js +19 -0
  248. package/src/Components/Icons/RateIcon-.25x.js +20 -0
  249. package/src/Components/Icons/RateIcon-.5x.js +19 -0
  250. package/src/Components/Icons/RateIcon-.75x.js +19 -0
  251. package/src/Components/Icons/RateIcon-1.25x.js +20 -0
  252. package/src/Components/Icons/RateIcon-1.5x.js +19 -0
  253. package/src/Components/Icons/RateIcon-1.75x.js +19 -0
  254. package/src/Components/Icons/RateIcon-1x.js +19 -0
  255. package/src/Components/Icons/RateIcon-2x.js +19 -0
  256. package/src/Components/Icons/RectangleXmark.js +14 -0
  257. package/src/Components/Icons/RectangleXmarkRegular.js +14 -0
  258. package/src/Components/Icons/ReorderRows.js +21 -0
  259. package/src/Components/Icons/RightFromBracket.js +14 -0
  260. package/src/Components/Icons/RightToBracket.js +14 -0
  261. package/src/Components/Icons/Rotate.js +18 -0
  262. package/src/Components/Icons/RotateLeft.js +14 -0
  263. package/src/Components/Icons/RotateRight.js +18 -0
  264. package/src/Components/Icons/ScrewdriverWrench.js +14 -0
  265. package/src/Components/Icons/Scroll.js +14 -0
  266. package/src/Components/Icons/Share.js +14 -0
  267. package/src/Components/Icons/Shop.js +14 -0
  268. package/src/Components/Icons/SortDown.js +18 -0
  269. package/src/Components/Icons/SortUp.js +18 -0
  270. package/src/Components/Icons/Square.js +14 -0
  271. package/src/Components/Icons/SquareCheck.js +14 -0
  272. package/src/Components/Icons/SquareCheckRegular.js +14 -0
  273. package/src/Components/Icons/SquareMinus.js +18 -0
  274. package/src/Components/Icons/SquareRegular.js +14 -0
  275. package/src/Components/Icons/Store.js +14 -0
  276. package/src/Components/Icons/ThumbsDown.js +14 -0
  277. package/src/Components/Icons/ThumbsDownRegular.js +14 -0
  278. package/src/Components/Icons/ThumbsUp.js +14 -0
  279. package/src/Components/Icons/ThumbsUpRegular.js +14 -0
  280. package/src/Components/Icons/Trash.js +18 -0
  281. package/src/Components/Icons/TrashCan.js +18 -0
  282. package/src/Components/Icons/TriangleExclamation.js +18 -0
  283. package/src/Components/Icons/Truck.js +14 -0
  284. package/src/Components/Icons/TruckFast.js +14 -0
  285. package/src/Components/Icons/User.js +14 -0
  286. package/src/Components/Icons/UserGroup.js +14 -0
  287. package/src/Components/Icons/UserSecret.js +14 -0
  288. package/src/Components/Icons/X.js +14 -0
  289. package/src/Components/Icons/Xmark.js +14 -0
  290. package/src/Components/Mask.js +11 -0
  291. package/src/Components/Messages/ConfirmationMessage.js +26 -0
  292. package/src/Components/Messages/ErrorMessage.js +15 -0
  293. package/src/Components/Messages/Loading.js +16 -0
  294. package/src/Components/Messages/OkMessage.js +24 -0
  295. package/src/Components/Messages/WaitMessage.js +18 -0
  296. package/src/Components/Panel/AccordionGridPanel.js +94 -0
  297. package/src/Components/Panel/Footer.js +20 -0
  298. package/src/Components/Panel/FormPanel.js +23 -0
  299. package/src/Components/Panel/GridPanel.js +45 -0
  300. package/src/Components/Panel/Header.js +107 -0
  301. package/src/Components/Panel/Panel.js +152 -0
  302. package/src/Components/Panel/TabPanel.js +331 -0
  303. package/src/Components/Panel/UploadDownload.js +10 -0
  304. package/src/Components/Picker/Picker.js +64 -0
  305. package/src/Components/ScreenContainer.js +71 -0
  306. package/src/Components/Screens/DataMgt.js +250 -0
  307. package/src/Components/Toolbar/FilterToolbar.js +20 -0
  308. package/src/Components/Toolbar/Pagination.js +146 -0
  309. package/src/Components/Toolbar/PaginationToolbar.js +22 -0
  310. package/src/Components/Toolbar/Toolbar.js +18 -0
  311. package/src/Components/WaitModal.js +31 -0
  312. package/src/Components/Window/Editor.js +19 -0
  313. package/src/Constants/Alert.js +3 -0
  314. package/src/Constants/Date.js +3 -0
  315. package/src/Constants/Directions.js +8 -0
  316. package/src/Constants/EditorTypes.js +4 -0
  317. package/src/Constants/File.js +2 -0
  318. package/src/Constants/Grid.js +4 -0
  319. package/src/Constants/Input.js +1 -0
  320. package/src/Constants/Selection.js +5 -0
  321. package/src/Constants/Styles.js +86 -0
  322. package/src/Constants/UiModes.js +2 -0
  323. package/src/Data/Hoc/withRedux.js +48 -0
  324. package/src/Data/useOneHatData.js +75 -0
  325. package/src/Functions/BankersRound.js +11 -0
  326. package/src/Functions/Timer.js +92 -0
  327. package/src/Functions/deleteSecure.js +6 -0
  328. package/src/Functions/emptyFn.js +1 -0
  329. package/src/Functions/getComponentFromType.js +106 -0
  330. package/src/Functions/getIsMobile.js +5 -0
  331. package/src/Functions/getPref.js +7 -0
  332. package/src/Functions/getSecure.js +21 -0
  333. package/src/Functions/getTokenHeaders.js +13 -0
  334. package/src/Functions/inArray.js +5 -0
  335. package/src/Functions/isJson.js +8 -0
  336. package/src/Functions/processImage.js +16 -0
  337. package/src/Functions/setPref.js +14 -0
  338. package/src/Functions/setProgress.js +49 -0
  339. package/src/Functions/setSecure.js +35 -0
  340. package/src/Functions/setUiMode.js +5 -0
  341. package/src/Functions/sleep.js +3 -0
  342. package/src/Functions/testProps.js +24 -0
  343. package/src/Functions/trackEngagementHit.js +11 -0
  344. package/src/Functions/verifyCompleted.js +18 -0
  345. package/src/Functions/waitFor.js +16 -0
  346. package/src/Hooks/useAppState.js +34 -0
  347. package/src/Hooks/useAsync.js +13 -0
  348. package/src/Hooks/useBlocking.js +18 -0
  349. package/src/Hooks/useCameraRoll.js +41 -0
  350. package/src/Hooks/useForceUpdate.js +14 -0
  351. package/src/Hooks/useIsMounted.js +14 -0
  352. package/src/Hooks/useNotifications.js +279 -0
  353. package/src/Styles/StyleSheets.js +14 -0
  354. package/src/Styles/ThemeOverrides.js +264 -0
  355. package/src/UiConfig.js +19 -0
  356. package/src/index.js +1 -1
@@ -0,0 +1,496 @@
1
+ /**
2
+ * @license Copyright (c) 2014-2023, CKSource Holding sp. z o.o. All rights reserved.
3
+ * This file is licensed under the terms of the MIT License (see LICENSE.md).
4
+ */
5
+
6
+ :root {
7
+ --ck-sample-base-spacing: 2em;
8
+ --ck-sample-color-white: #fff;
9
+ --ck-sample-color-green: #279863;
10
+ --ck-sample-color-blue: #1a9aef;
11
+ --ck-sample-container-width: 1285px;
12
+ --ck-sample-sidebar-width: 350px;
13
+ --ck-sample-editor-min-height: 400px;
14
+ --ck-sample-editor-z-index: 10;
15
+ }
16
+
17
+ /* --------- EDITOR STYLES ---------------------------------------------------------------------------------------- */
18
+
19
+ .editor__editable,
20
+ /* Classic build. */
21
+ main .ck-editor[role='application'] .ck.ck-content,
22
+ /* Decoupled document build. */
23
+ .ck.editor__editable[role='textbox'],
24
+ .ck.ck-editor__editable[role='textbox'],
25
+ /* Inline & Balloon build. */
26
+ .ck.editor[role='textbox'] {
27
+ width: 100%;
28
+ background: #fff;
29
+ font-size: 1em;
30
+ line-height: 1.6em;
31
+ min-height: var(--ck-sample-editor-min-height);
32
+ padding: 1.5em 2em;
33
+ }
34
+
35
+ .ck.ck-editor__editable {
36
+ background: #fff;
37
+ border: 1px solid hsl(0, 0%, 70%);
38
+ width: 100%;
39
+ }
40
+
41
+ /* Because of sidebar `position: relative`, Edge is overriding the outline of a focused editor. */
42
+ .ck.ck-editor__editable {
43
+ position: relative;
44
+ z-index: var(--ck-sample-editor-z-index);
45
+ }
46
+
47
+ .editor-container {
48
+ display: flex;
49
+ flex-direction: row;
50
+ flex-wrap: nowrap;
51
+ position: relative;
52
+ width: 100%;
53
+ justify-content: center;
54
+ }
55
+
56
+ /* --------- DECOUPLED (DOCUMENT) BUILD. ---------------------------------------------*/
57
+ body[data-editor='DecoupledDocumentEditor'] .document-editor__toolbar {
58
+ width: 100%;
59
+ }
60
+
61
+ body[data-editor='DecoupledDocumentEditor'] .collaboration-demo__editable,
62
+ body[data-editor='DecoupledDocumentEditor'] .row-editor .editor {
63
+ /* A pixel is added for each of the border. */
64
+ width: calc(21cm + 2px);
65
+ min-height: calc(29.7cm + 2px);
66
+ /* To avoid having extra scrolls inside the editor container. */
67
+ height: fit-content;
68
+ padding: 2cm 1.2cm;
69
+ margin: 2.5rem;
70
+ border: 1px hsl( 0, 0%, 82.7% ) solid;
71
+ background-color: var(--ck-sample-color-white);
72
+ box-shadow: 0 0 5px hsla( 0, 0%, 0%, .1 );
73
+ box-sizing: border-box;
74
+ }
75
+
76
+ body[data-editor='DecoupledDocumentEditor'] .row-editor {
77
+ display: flex;
78
+ position: relative;
79
+ justify-content: center;
80
+ overflow-y: auto;
81
+ background-color: #f2f2f2;
82
+ border: 1px solid hsl(0, 0%, 77%);
83
+ /* Limit the max-height of the editor to avoid scrolling from bottom to top to see the toolbar. */
84
+ max-height: 700px;
85
+ }
86
+
87
+ body[data-editor='DecoupledDocumentEditor'] .sidebar {
88
+ background: transparent;
89
+ border: 0;
90
+ box-shadow: none;
91
+ }
92
+
93
+ /* --------- COMMENTS & TRACK CHANGES FEATURE ---------------------------------------------------------------------- */
94
+ .sidebar {
95
+ padding: 0 15px;
96
+ position: relative;
97
+ min-width: var(--ck-sample-sidebar-width);
98
+ max-width: var(--ck-sample-sidebar-width);
99
+ font-size: 20px;
100
+ border: 1px solid hsl(0, 0%, 77%);
101
+ background: hsl(0, 0%, 98%);
102
+ border-left: 0;
103
+ overflow: hidden;
104
+ min-height: 100%;
105
+ flex-grow: 1;
106
+ }
107
+
108
+ /* Do not inherit styles related to the editable editor content. See line 25.*/
109
+ .sidebar .ck-content[role='textbox'],
110
+ .ck.ck-annotation-wrapper .ck-content[role='textbox'] {
111
+ min-height: unset;
112
+ width: unset;
113
+ padding: 0;
114
+ background: transparent;
115
+ }
116
+
117
+ .sidebar.narrow {
118
+ min-width: 60px;
119
+ flex-grow: 0;
120
+ }
121
+
122
+ .sidebar.hidden {
123
+ display: none !important;
124
+ }
125
+
126
+ #sidebar-display-toggle {
127
+ position: absolute;
128
+ z-index: 1;
129
+ width: 30px;
130
+ height: 30px;
131
+ text-align: center;
132
+ left: 15px;
133
+ top: 30px;
134
+ border: 0;
135
+ padding: 0;
136
+ color: hsl( 0, 0%, 50% );
137
+ transition: 250ms ease color;
138
+ background-color: transparent;
139
+ }
140
+
141
+ #sidebar-display-toggle:hover {
142
+ color: hsl( 0, 0%, 30% );
143
+ cursor: pointer;
144
+ }
145
+
146
+ #sidebar-display-toggle:focus,
147
+ #sidebar-display-toggle:active {
148
+ outline: none;
149
+ border: 1px solid #a9d29d;
150
+ }
151
+
152
+ #sidebar-display-toggle svg {
153
+ fill: currentColor;
154
+ }
155
+
156
+ /* --------- COLLABORATION FEATURES (USERS) ------------------------------------------------------------------------ */
157
+ .row-presence {
158
+ width: 100%;
159
+ border: 1px solid hsl(0, 0%, 77%);
160
+ border-bottom: 0;
161
+ background: hsl(0, 0%, 98%);
162
+ padding: var(--ck-spacing-small);
163
+
164
+ /* Make `border-bottom` as `box-shadow` to not overlap with the editor border. */
165
+ box-shadow: 0 1px 0 0 hsl(0, 0%, 77%);
166
+
167
+ /* Make `z-index` bigger than `.editor` to properly display tooltips. */
168
+ z-index: 20;
169
+ }
170
+
171
+ .ck.ck-presence-list {
172
+ flex: 1;
173
+ padding: 1.25rem .75rem;
174
+ }
175
+
176
+ .presence .ck.ck-presence-list__counter {
177
+ order: 2;
178
+ margin-left: var(--ck-spacing-large)
179
+ }
180
+
181
+ /* --------- REAL TIME COLLABORATION FEATURES (SHARE TOPBAR CONTAINER) --------------------------------------------- */
182
+ .collaboration-demo__row {
183
+ display: flex;
184
+ position: relative;
185
+ justify-content: center;
186
+ overflow-y: auto;
187
+ background-color: #f2f2f2;
188
+ border: 1px solid hsl(0, 0%, 77%);
189
+ }
190
+
191
+ body[data-editor='InlineEditor'] .collaboration-demo__row {
192
+ border: 0;
193
+ }
194
+
195
+ .collaboration-demo__container {
196
+ max-width: var(--ck-sample-container-width);
197
+ margin: 0 auto;
198
+ padding: 1.25rem;
199
+ }
200
+
201
+ .presence, .collaboration-demo__row {
202
+ transition: .2s opacity;
203
+ }
204
+
205
+ .collaboration-demo__topbar {
206
+ background: #fff;
207
+ border: 1px solid var(--ck-color-toolbar-border);
208
+ display: flex;
209
+ justify-content: space-between;
210
+ align-items: center;
211
+ border-bottom: 0;
212
+ border-radius: 4px 4px 0 0;
213
+ }
214
+
215
+ .collaboration-demo__topbar .btn {
216
+ margin-right: 1em;
217
+ outline-offset: 2px;
218
+ outline-width: 2px;
219
+ background-color: var( --ck-sample-color-blue );
220
+ }
221
+
222
+ .collaboration-demo__topbar .btn:focus,
223
+ .collaboration-demo__topbar .btn:hover {
224
+ border-color: var( --ck-sample-color-blue );
225
+ }
226
+
227
+ .collaboration-demo__share {
228
+ display: flex;
229
+ align-items: center;
230
+ padding: 1.25rem .75rem
231
+ }
232
+
233
+ .collaboration-demo__share-description p {
234
+ margin: 0;
235
+ font-weight: bold;
236
+ font-size: 0.9em;
237
+ }
238
+
239
+ .collaboration-demo__share input {
240
+ height: auto;
241
+ font-size: 0.9em;
242
+ min-width: 220px;
243
+ margin: 0 10px;
244
+ border-radius: 4px;
245
+ border: 1px solid var(--ck-color-toolbar-border)
246
+ }
247
+
248
+ .collaboration-demo__share button,
249
+ .collaboration-demo__share input {
250
+ height: 40px;
251
+ padding: 5px 10px;
252
+ }
253
+
254
+ .collaboration-demo__share button {
255
+ position: relative;
256
+ }
257
+
258
+ .collaboration-demo__share button:focus {
259
+ outline: none;
260
+ }
261
+
262
+ .collaboration-demo__share button[data-tooltip]::before,
263
+ .collaboration-demo__share button[data-tooltip]::after {
264
+ position: absolute;
265
+ visibility: hidden;
266
+ opacity: 0;
267
+ pointer-events: none;
268
+ transition: all .15s cubic-bezier(.5,1,.25,1);
269
+ z-index: 1;
270
+ }
271
+
272
+ .collaboration-demo__share button[data-tooltip]::before {
273
+ content: attr(data-tooltip);
274
+ padding: 5px 15px;
275
+ border-radius: 3px;
276
+ background: #111;
277
+ color: #fff;
278
+ text-align: center;
279
+ font-size: 11px;
280
+ top: 100%;
281
+ left: 50%;
282
+ margin-top: 5px;
283
+ transform: translateX(-50%);
284
+ }
285
+
286
+ .collaboration-demo__share button[data-tooltip]::after {
287
+ content: '';
288
+ border: 5px solid transparent;
289
+ width: 0;
290
+ font-size: 0;
291
+ line-height: 0;
292
+ top: 100%;
293
+ left: 50%;
294
+ transform: translateX(-50%);
295
+ border-bottom: 5px solid #111;
296
+ border-top: none;
297
+ }
298
+
299
+ .collaboration-demo__share button[data-tooltip]:hover:before,
300
+ .collaboration-demo__share button[data-tooltip]:hover:after {
301
+ visibility: visible;
302
+ opacity: 1;
303
+ }
304
+
305
+ .collaboration-demo--ready {
306
+ overflow: visible;
307
+ height: auto;
308
+ }
309
+
310
+ .collaboration-demo--ready .presence,
311
+ .collaboration-demo--ready .collaboration-demo__row {
312
+ opacity: 1;
313
+ }
314
+
315
+ /* --------- PAGINATION FEATURE ------------------------------------------------------------------------------------ */
316
+
317
+ /* Pagination view line must be stacked at least at the same level as the editor,
318
+ otherwise it will be hidden underneath. */
319
+ .ck.ck-pagination-view-line {
320
+ z-index: var(--ck-sample-editor-z-index);
321
+ }
322
+
323
+ /* --------- REVISION HISTORY FEATURE ------------------------------------------------------------------------------ */
324
+
325
+ .revision-viewer-container {
326
+ display: none;
327
+ }
328
+
329
+ .revision-viewer-sidebar {
330
+ position: relative;
331
+ min-width: 310px;
332
+ overflow: hidden;
333
+ background: var(--ck-color-toolbar-background);
334
+ border: 1px solid var(--ck-color-toolbar-border);
335
+ margin-left: -1px;
336
+ }
337
+
338
+ /* A case when Pagination and Revision History features are enabled in the editor. */
339
+ /* Move the square with page number from the Pagination plugin to the left side, so that it does not cover the RH sidebar. */
340
+ body[data-revision-history='true'] .ck.ck-pagination-view-line::after {
341
+ transform: translateX(-100%) !important;
342
+ left: -1px !important;
343
+ right: unset !important;
344
+ }
345
+
346
+ /* --------- SAMPLE GENERIC STYLES (not related to CKEditor) ------------------------------------------------------- */
347
+ body, html {
348
+ padding: 0;
349
+ margin: 0;
350
+
351
+ font-family: sans-serif, Arial, Verdana, "Trebuchet MS", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
352
+ font-size: 16px;
353
+ line-height: 1.5;
354
+ }
355
+
356
+ body {
357
+ height: 100%;
358
+ color: #2D3A4A;
359
+ }
360
+
361
+ body * {
362
+ box-sizing: border-box;
363
+ }
364
+
365
+ a {
366
+ color: #38A5EE;
367
+ }
368
+
369
+ header .centered {
370
+ display: flex;
371
+ flex-flow: row nowrap;
372
+ justify-content: space-between;
373
+ align-items: center;
374
+ min-height: 8em;
375
+ }
376
+
377
+ header h1 a {
378
+ font-size: 20px;
379
+ display: flex;
380
+ align-items: center;
381
+ color: #2D3A4A;
382
+ text-decoration: none;
383
+ }
384
+
385
+ header h1 img {
386
+ display: block;
387
+ height: 64px;
388
+ }
389
+
390
+ header nav ul {
391
+ margin: 0;
392
+ padding: 0;
393
+ list-style-type: none;
394
+ }
395
+
396
+ header nav ul li {
397
+ display: inline-block;
398
+ }
399
+
400
+ header nav ul li + li {
401
+ margin-left: 1em;
402
+ }
403
+
404
+ header nav ul li a {
405
+ font-weight: bold;
406
+ text-decoration: none;
407
+ color: #2D3A4A;
408
+ }
409
+
410
+ header nav ul li a:hover {
411
+ text-decoration: underline;
412
+ }
413
+
414
+ main .message {
415
+ padding: 0 0 var(--ck-sample-base-spacing);
416
+ background: var(--ck-sample-color-green);
417
+ color: var(--ck-sample-color-white);
418
+ }
419
+
420
+ main .message::after {
421
+ content: "";
422
+ z-index: -1;
423
+ display: block;
424
+ height: 10em;
425
+ width: 100%;
426
+ background: var(--ck-sample-color-green);
427
+ position: absolute;
428
+ left: 0;
429
+ }
430
+
431
+ main .message h2 {
432
+ position: relative;
433
+ padding-top: 1em;
434
+ font-size: 2em;
435
+ }
436
+
437
+ .centered {
438
+ /* Hide overlapping comments. */
439
+ overflow: hidden;
440
+ max-width: var(--ck-sample-container-width);
441
+ margin: 0 auto;
442
+ padding: 0 var(--ck-sample-base-spacing);
443
+ }
444
+
445
+ .row {
446
+ display: flex;
447
+ position: relative;
448
+ }
449
+
450
+ .btn {
451
+ cursor: pointer;
452
+ padding: 8px 16px;
453
+ font-size: 1rem;
454
+ user-select: none;
455
+ border-radius: 4px;
456
+ transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out,opacity .2s ease-in-out;
457
+ background-color: var(--ck-sample-color-button-blue);
458
+ border-color: var(--ck-sample-color-button-blue);
459
+ color: var(--ck-sample-color-white);
460
+ display: inline-block;
461
+ }
462
+
463
+ .btn--tiny {
464
+ padding: 6px 12px;
465
+ font-size: .8rem;
466
+ }
467
+
468
+ footer {
469
+ margin: calc(2*var(--ck-sample-base-spacing)) var(--ck-sample-base-spacing);
470
+ font-size: .8em;
471
+ text-align: center;
472
+ color: rgba(0,0,0,.4);
473
+ }
474
+
475
+ /* --------- RWD --------------------------------------------------------------------------------------------------- */
476
+ @media screen and ( max-width: 800px ) {
477
+ :root {
478
+ --ck-sample-base-spacing: 1em;
479
+ }
480
+
481
+ header h1 {
482
+ width: 100%;
483
+ }
484
+
485
+ header h1 img {
486
+ height: 40px;
487
+ }
488
+
489
+ header nav ul {
490
+ text-align: right;
491
+ }
492
+
493
+ main .message h2 {
494
+ font-size: 1.5em;
495
+ }
496
+ }
@@ -0,0 +1,138 @@
1
+ /**
2
+ * @license Copyright (c) 2014-2023, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ import InlineEditor from '@ckeditor/ckeditor5-editor-inline/src/inlineeditor.js';
6
+ import Alignment from '@ckeditor/ckeditor5-alignment/src/alignment.js';
7
+ import Autoformat from '@ckeditor/ckeditor5-autoformat/src/autoformat.js';
8
+ import AutoLink from '@ckeditor/ckeditor5-link/src/autolink.js';
9
+ import BlockQuote from '@ckeditor/ckeditor5-block-quote/src/blockquote.js';
10
+ import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold.js';
11
+ import CKFinderUploadAdapter from '@ckeditor/ckeditor5-adapter-ckfinder/src/uploadadapter.js';
12
+ import CloudServices from '@ckeditor/ckeditor5-cloud-services/src/cloudservices.js';
13
+ import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials.js';
14
+ import FontColor from '@ckeditor/ckeditor5-font/src/fontcolor.js';
15
+ import FontFamily from '@ckeditor/ckeditor5-font/src/fontfamily.js';
16
+ import FontSize from '@ckeditor/ckeditor5-font/src/fontsize.js';
17
+ import GeneralHtmlSupport from '@ckeditor/ckeditor5-html-support/src/generalhtmlsupport.js';
18
+ import Heading from '@ckeditor/ckeditor5-heading/src/heading.js';
19
+ import HorizontalLine from '@ckeditor/ckeditor5-horizontal-line/src/horizontalline.js';
20
+ import Image from '@ckeditor/ckeditor5-image/src/image.js';
21
+ import ImageCaption from '@ckeditor/ckeditor5-image/src/imagecaption.js';
22
+ import ImageInsert from '@ckeditor/ckeditor5-image/src/imageinsert.js';
23
+ import ImageResize from '@ckeditor/ckeditor5-image/src/imageresize.js';
24
+ import ImageStyle from '@ckeditor/ckeditor5-image/src/imagestyle.js';
25
+ import ImageToolbar from '@ckeditor/ckeditor5-image/src/imagetoolbar.js';
26
+ import ImageUpload from '@ckeditor/ckeditor5-image/src/imageupload.js';
27
+ import Indent from '@ckeditor/ckeditor5-indent/src/indent.js';
28
+ import IndentBlock from '@ckeditor/ckeditor5-indent/src/indentblock.js';
29
+ import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic.js';
30
+ import Link from '@ckeditor/ckeditor5-link/src/link.js';
31
+ import LinkImage from '@ckeditor/ckeditor5-link/src/linkimage.js';
32
+ import List from '@ckeditor/ckeditor5-list/src/list.js';
33
+ import ListProperties from '@ckeditor/ckeditor5-list/src/listproperties.js';
34
+ import MediaEmbed from '@ckeditor/ckeditor5-media-embed/src/mediaembed.js';
35
+ import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph.js';
36
+ import PasteFromOffice from '@ckeditor/ckeditor5-paste-from-office/src/pastefromoffice.js';
37
+ import Strikethrough from '@ckeditor/ckeditor5-basic-styles/src/strikethrough.js';
38
+ import Superscript from '@ckeditor/ckeditor5-basic-styles/src/superscript.js';
39
+ import Table from '@ckeditor/ckeditor5-table/src/table.js';
40
+ import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar.js';
41
+ import TextTransformation from '@ckeditor/ckeditor5-typing/src/texttransformation.js';
42
+
43
+ class Editor extends InlineEditor {}
44
+
45
+ // Plugins to include in the build.
46
+ Editor.builtinPlugins = [
47
+ Alignment,
48
+ Autoformat,
49
+ AutoLink,
50
+ BlockQuote,
51
+ Bold,
52
+ CKFinderUploadAdapter,
53
+ CloudServices,
54
+ Essentials,
55
+ FontColor,
56
+ FontFamily,
57
+ FontSize,
58
+ GeneralHtmlSupport,
59
+ Heading,
60
+ HorizontalLine,
61
+ Image,
62
+ ImageCaption,
63
+ ImageInsert,
64
+ ImageResize,
65
+ ImageStyle,
66
+ ImageToolbar,
67
+ ImageUpload,
68
+ Indent,
69
+ IndentBlock,
70
+ Italic,
71
+ Link,
72
+ LinkImage,
73
+ List,
74
+ ListProperties,
75
+ MediaEmbed,
76
+ Paragraph,
77
+ PasteFromOffice,
78
+ Strikethrough,
79
+ Superscript,
80
+ Table,
81
+ TableToolbar,
82
+ TextTransformation
83
+ ];
84
+
85
+ // Editor configuration.
86
+ Editor.defaultConfig = {
87
+ toolbar: {
88
+ items: [
89
+ 'heading',
90
+ '|',
91
+ 'fontFamily',
92
+ 'fontSize',
93
+ 'fontColor',
94
+ '|',
95
+ 'bold',
96
+ 'italic',
97
+ 'strikethrough',
98
+ 'superscript',
99
+ 'link',
100
+ 'bulletedList',
101
+ 'numberedList',
102
+ 'horizontalLine',
103
+ '|',
104
+ 'alignment',
105
+ '|',
106
+ 'outdent',
107
+ 'indent',
108
+ '|',
109
+ 'imageUpload',
110
+ 'blockQuote',
111
+ 'insertTable',
112
+ 'imageInsert',
113
+ 'mediaEmbed',
114
+ 'undo',
115
+ 'redo'
116
+ ]
117
+ },
118
+ language: 'en',
119
+ image: {
120
+ toolbar: [
121
+ 'imageTextAlternative',
122
+ 'toggleImageCaption',
123
+ 'imageStyle:inline',
124
+ 'imageStyle:block',
125
+ 'imageStyle:side',
126
+ 'linkImage'
127
+ ]
128
+ },
129
+ table: {
130
+ contentToolbar: [
131
+ 'tableColumn',
132
+ 'tableRow',
133
+ 'mergeTableCells'
134
+ ]
135
+ }
136
+ };
137
+
138
+ export default Editor;
@@ -0,0 +1,96 @@
1
+ /**
2
+ * @license Copyright (c) 2014-2023, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+
6
+ 'use strict';
7
+
8
+ /* eslint-env node */
9
+
10
+ const path = require( 'path' );
11
+ const webpack = require( 'webpack' );
12
+ const { bundler, styles } = require( '@ckeditor/ckeditor5-dev-utils' );
13
+ const { CKEditorTranslationsPlugin } = require( '@ckeditor/ckeditor5-dev-translations' );
14
+ const TerserWebpackPlugin = require( 'terser-webpack-plugin' );
15
+
16
+ module.exports = {
17
+ devtool: 'source-map',
18
+ performance: { hints: false },
19
+
20
+ entry: path.resolve( __dirname, 'src', 'ckeditor.js' ),
21
+
22
+ output: {
23
+ // The name under which the editor will be exported.
24
+ library: 'InlineEditor',
25
+
26
+ path: path.resolve( __dirname, 'build' ),
27
+ filename: 'ckeditor.js',
28
+ libraryTarget: 'umd',
29
+ libraryExport: 'default'
30
+ },
31
+
32
+ optimization: {
33
+ minimizer: [
34
+ new TerserWebpackPlugin( {
35
+ sourceMap: true,
36
+ terserOptions: {
37
+ output: {
38
+ // Preserve CKEditor 5 license comments.
39
+ comments: /^!/
40
+ }
41
+ },
42
+ extractComments: false
43
+ } )
44
+ ]
45
+ },
46
+
47
+ plugins: [
48
+ new CKEditorTranslationsPlugin( {
49
+ // UI language. Language codes follow the https://en.wikipedia.org/wiki/ISO_639-1 format.
50
+ // When changing the built-in language, remember to also change it in the editor's configuration (src/ckeditor.js).
51
+ language: 'en',
52
+ additionalLanguages: 'all'
53
+ } ),
54
+ new webpack.BannerPlugin( {
55
+ banner: bundler.getLicenseBanner(),
56
+ raw: true
57
+ } )
58
+ ],
59
+
60
+ module: {
61
+ rules: [
62
+ {
63
+ test: /\.svg$/,
64
+ use: [ 'raw-loader' ]
65
+ },
66
+ {
67
+ test: /\.css$/,
68
+ use: [
69
+ {
70
+ loader: 'style-loader',
71
+ options: {
72
+ injectType: 'singletonStyleTag',
73
+ attributes: {
74
+ 'data-cke': true
75
+ }
76
+ }
77
+ },
78
+ {
79
+ loader: 'css-loader'
80
+ },
81
+ {
82
+ loader: 'postcss-loader',
83
+ options: {
84
+ postcssOptions: styles.getPostCssConfig( {
85
+ themeImporter: {
86
+ themePath: require.resolve( '@ckeditor/ckeditor5-theme-lark' )
87
+ },
88
+ minify: true
89
+ } )
90
+ }
91
+ },
92
+ ]
93
+ }
94
+ ]
95
+ }
96
+ };