@ckbox/components 1.2.1-rc.0 → 1.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.
package/README.md CHANGED
@@ -12,7 +12,7 @@ Using a build served from the CDN is the simplest and fastest way of embedding C
12
12
  To start using CKBox on your website, embed the following `script` element in the HTML code of the page:
13
13
 
14
14
  ```html
15
- <script src="https://cdn.ckbox.io/CKBox/1.2.1-rc.0/ckbox.js"></script>
15
+ <script src="https://cdn.ckbox.io/CKBox/1.2.1/ckbox.js"></script>
16
16
  ```
17
17
 
18
18
  Quick implementation example:
@@ -22,7 +22,7 @@ Quick implementation example:
22
22
  <html>
23
23
  <head>
24
24
  <meta charset="UTF-8" />
25
- <script src="https://cdn.ckbox.io/CKBox/1.2.1-rc.0/ckbox.js"></script>
25
+ <script src="https://cdn.ckbox.io/CKBox/1.2.1/ckbox.js"></script>
26
26
  </head>
27
27
  <body>
28
28
  <div id="ckbox"></div>
@@ -48,7 +48,7 @@ The code snippet below presents the simplest scenario for integration of CKEdito
48
48
  <head>
49
49
  <meta charset="UTF-8" />
50
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
+ <script src="https://cdn.ckbox.io/CKBox/1.2.1/ckbox.js"></script>
52
52
  </head>
53
53
  <body>
54
54
  <div id="editor"></div>
package/dist/index.d.ts CHANGED
@@ -2793,6 +2793,10 @@ interface Props$C {
2793
2793
  * Main content of the component.
2794
2794
  */
2795
2795
  children?: React$1.ReactNode;
2796
+ /**
2797
+ * Data attribute useful for testing.
2798
+ */
2799
+ 'data-loaded'?: boolean;
2796
2800
  /**
2797
2801
  * Empty view icon.
2798
2802
  */