ckbox 1.2.0-rc.1 → 1.2.1-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/README.md +8 -7
  2. package/dist/ckbox.js +1 -1
  3. package/dist/index.js +1 -1
  4. package/dist/styles/ckbox.css +3 -3
  5. package/dist/translations/bg.js +1 -1
  6. package/dist/translations/bn.js +1 -1
  7. package/dist/translations/ca.js +1 -1
  8. package/dist/translations/cs.js +1 -1
  9. package/dist/translations/da.js +1 -1
  10. package/dist/translations/de.js +1 -1
  11. package/dist/translations/el.js +1 -1
  12. package/dist/translations/en.js +1 -1
  13. package/dist/translations/es-la.js +1 -1
  14. package/dist/translations/es-mx.js +1 -1
  15. package/dist/translations/es.js +1 -1
  16. package/dist/translations/et.js +1 -1
  17. package/dist/translations/fi.js +1 -1
  18. package/dist/translations/fr-ca.js +1 -1
  19. package/dist/translations/fr.js +1 -1
  20. package/dist/translations/hi.js +1 -1
  21. package/dist/translations/hu.js +1 -1
  22. package/dist/translations/id.js +1 -1
  23. package/dist/translations/it.js +1 -1
  24. package/dist/translations/ja.js +1 -1
  25. package/dist/translations/ko.js +1 -1
  26. package/dist/translations/lt.js +1 -1
  27. package/dist/translations/mr.js +1 -1
  28. package/dist/translations/ms.js +1 -1
  29. package/dist/translations/nl.js +1 -1
  30. package/dist/translations/no.js +1 -1
  31. package/dist/translations/pl.js +1 -1
  32. package/dist/translations/pt-br.js +1 -1
  33. package/dist/translations/pt.js +1 -1
  34. package/dist/translations/ro.js +1 -1
  35. package/dist/translations/ru.js +1 -1
  36. package/dist/translations/sk.js +1 -1
  37. package/dist/translations/sr.js +1 -1
  38. package/dist/translations/sv.js +1 -1
  39. package/dist/translations/th.js +1 -1
  40. package/dist/translations/tr.js +1 -1
  41. package/dist/translations/uk.js +1 -1
  42. package/dist/translations/vi.js +1 -1
  43. package/dist/translations/zh-tw.js +1 -1
  44. package/dist/translations/zh.js +1 -1
  45. package/package.json +4 -4
package/README.md CHANGED
@@ -1,11 +1,10 @@
1
1
  # CKBox
2
2
 
3
- https://ckeditor.com/ckbox/
3
+ https://ckbox.io/
4
4
 
5
5
  CKBox is a file management platform that makes working with your files easier while providing an outstanding user experience.
6
6
 
7
- ![](https://user-images.githubusercontent.com/803299/178721119-1c5b2bec-087e-4bee-a924-a737161a7bf0.png)
8
-
7
+ ![](https://user-images.githubusercontent.com/803299/201629735-d210d2e7-ece8-4d6c-8912-0cd36ebca206.png)
9
8
  ## Quick start
10
9
 
11
10
  Using a build served from the CDN is the simplest and fastest way of embedding CKBox in your application. Additionally, all the scripts served from the CDN are loaded faster, as they are hosted on multiple servers around the globe, shortening the response time.
@@ -13,16 +12,17 @@ Using a build served from the CDN is the simplest and fastest way of embedding C
13
12
  To start using CKBox on your website, embed the following `script` element in the HTML code of the page:
14
13
 
15
14
  ```html
16
- <script src="https://cdn.ckbox.io/CKBox/1.2.0-rc.1/ckbox.js"></script>
15
+ <script src="https://cdn.ckbox.io/CKBox/1.2.1-rc.0/ckbox.js"></script>
17
16
  ```
18
17
 
19
18
  Quick implementation example:
20
19
 
21
20
  ```html
21
+ <!DOCTYPE html>
22
22
  <html>
23
23
  <head>
24
24
  <meta charset="UTF-8" />
25
- <script src="https://cdn.ckbox.io/CKBox/1.2.0-rc.1/ckbox.js"></script>
25
+ <script src="https://cdn.ckbox.io/CKBox/1.2.1-rc.0/ckbox.js"></script>
26
26
  </head>
27
27
  <body>
28
28
  <div id="ckbox"></div>
@@ -43,11 +43,12 @@ Quick implementation example:
43
43
  The code snippet below presents the simplest scenario for integration of CKEditor 5 with CKBox. To read more about the integration, please refer to the [CKEditor 5 integration guide](https://ckeditor.com/docs/ckbox/latest/guides/configuration/ckeditor-integration.html).
44
44
 
45
45
  ```html
46
+ <!DOCTYPE html>
46
47
  <html>
47
48
  <head>
48
49
  <meta charset="UTF-8" />
49
- <script src="https://cdn.ckeditor.com/ckeditor5/34.2.0/classic/ckeditor.js"></script>
50
- <script src="https://cdn.ckbox.io/CKBox/1.2.0-rc.1/ckbox.js"></script>
50
+ <script src="https://cdn.ckeditor.com/ckeditor5/35.3.1/classic/ckeditor.js"></script>
51
+ <script src="https://cdn.ckbox.io/CKBox/1.2.1-rc.0/ckbox.js"></script>
51
52
  </head>
52
53
  <body>
53
54
  <div id="editor"></div>