ckbox 1.2.0-rc.1 → 1.2.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 +6 -7
  2. package/dist/ckbox.js +1 -1
  3. package/dist/index.js +1 -1
  4. package/dist/styles/ckbox.css +1 -1
  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 +2 -2
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,7 +12,7 @@ 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.0/ckbox.js"></script>
17
16
  ```
18
17
 
19
18
  Quick implementation example:
@@ -22,7 +21,7 @@ Quick implementation example:
22
21
  <html>
23
22
  <head>
24
23
  <meta charset="UTF-8" />
25
- <script src="https://cdn.ckbox.io/CKBox/1.2.0-rc.1/ckbox.js"></script>
24
+ <script src="https://cdn.ckbox.io/CKBox/1.2.0/ckbox.js"></script>
26
25
  </head>
27
26
  <body>
28
27
  <div id="ckbox"></div>
@@ -46,8 +45,8 @@ The code snippet below presents the simplest scenario for integration of CKEdito
46
45
  <html>
47
46
  <head>
48
47
  <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>
48
+ <script src="https://cdn.ckeditor.com/ckeditor5/35.3.1/classic/ckeditor.js"></script>
49
+ <script src="https://cdn.ckbox.io/CKBox/1.2.0/ckbox.js"></script>
51
50
  </head>
52
51
  <body>
53
52
  <div id="editor"></div>