@ckbox/components 2.1.0-rc.1 → 2.1.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.
package/README.md CHANGED
@@ -13,7 +13,7 @@ Using a build served from the CDN is the simplest and fastest way of embedding C
13
13
  To start using CKBox on your website, embed the following `script` element in the HTML code of the page:
14
14
 
15
15
  ```html
16
- <script src="https://cdn.ckbox.io/ckbox/2.1.0-rc.1/ckbox.js"></script>
16
+ <script src="https://cdn.ckbox.io/ckbox/2.1.0/ckbox.js"></script>
17
17
  ```
18
18
 
19
19
  Quick implementation example:
@@ -23,7 +23,7 @@ Quick implementation example:
23
23
  <html>
24
24
  <head>
25
25
  <meta charset="UTF-8" />
26
- <script src="https://cdn.ckbox.io/ckbox/2.1.0-rc.1/ckbox.js"></script>
26
+ <script src="https://cdn.ckbox.io/ckbox/2.1.0/ckbox.js"></script>
27
27
  </head>
28
28
  <body>
29
29
  <div id="ckbox"></div>
@@ -49,7 +49,7 @@ The code snippet below presents the simplest scenario for integration of CKEdito
49
49
  <head>
50
50
  <meta charset="UTF-8" />
51
51
  <script src="https://cdn.ckeditor.com/ckeditor5/39.0.0/classic/ckeditor.js"></script>
52
- <script src="https://cdn.ckbox.io/ckbox/2.1.0-rc.1/ckbox.js"></script>
52
+ <script src="https://cdn.ckbox.io/ckbox/2.1.0/ckbox.js"></script>
53
53
  </head>
54
54
  <body>
55
55
  <div id="editor"></div>
package/dist/index.d.ts CHANGED
@@ -406,6 +406,10 @@ interface Props$36 {
406
406
  * Sets full-width mode.
407
407
  */
408
408
  fullWidth?: boolean;
409
+ /**
410
+ * Occupies space but is not displayed.
411
+ */
412
+ hidden?: boolean;
409
413
  /**
410
414
  * Button's html type.
411
415
  */