@ckbox/i18n 2.5.0-rc.0 → 2.5.0-rc.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 +56 -15
- package/dist/index.js +1 -1
- package/package.json +1 -1
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.5.0-rc.
|
|
16
|
+
<script src="https://cdn.ckbox.io/ckbox/2.5.0-rc.1/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.5.0-rc.
|
|
26
|
+
<script src="https://cdn.ckbox.io/ckbox/2.5.0-rc.1/ckbox.js"></script>
|
|
27
27
|
</head>
|
|
28
28
|
<body>
|
|
29
29
|
<div id="ckbox"></div>
|
|
@@ -48,21 +48,64 @@ The code snippet below presents the simplest scenario for integration of CKEdito
|
|
|
48
48
|
<html>
|
|
49
49
|
<head>
|
|
50
50
|
<meta charset="UTF-8" />
|
|
51
|
-
<script src="https://cdn.
|
|
52
|
-
<
|
|
51
|
+
<script src="https://cdn.ckbox.io/ckbox/2.5.0-rc.1/ckbox.js"></script>
|
|
52
|
+
<link
|
|
53
|
+
rel="stylesheet"
|
|
54
|
+
href="https://cdn.ckbox.io/ckbox/2.5.0-rc.1/styles/themes/lark.css"
|
|
55
|
+
/>
|
|
56
|
+
<link rel="stylesheet" href="https://cdn.ckeditor.com/ckeditor5/42.0.0/ckeditor5.css" />
|
|
53
57
|
</head>
|
|
54
58
|
<body>
|
|
55
59
|
<div id="editor"></div>
|
|
56
|
-
|
|
60
|
+
|
|
61
|
+
<script type="importmap">
|
|
62
|
+
{
|
|
63
|
+
"imports": {
|
|
64
|
+
"ckeditor5": "https://cdn.ckeditor.com/ckeditor5/42.0.0/ckeditor5.js",
|
|
65
|
+
"ckeditor5/": "https://cdn.ckeditor.com/ckeditor5/42.0.0/"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
</script>
|
|
69
|
+
|
|
70
|
+
<script type="module">
|
|
71
|
+
import {
|
|
72
|
+
ClassicEditor,
|
|
73
|
+
CKBox,
|
|
74
|
+
Bold,
|
|
75
|
+
CloudServices,
|
|
76
|
+
Essentials,
|
|
77
|
+
Font,
|
|
78
|
+
Image,
|
|
79
|
+
ImageUploadEditing,
|
|
80
|
+
ImageUploadProgress,
|
|
81
|
+
Italic,
|
|
82
|
+
LinkEditing,
|
|
83
|
+
Paragraph,
|
|
84
|
+
PictureEditing,
|
|
85
|
+
} from "ckeditor5";
|
|
86
|
+
|
|
57
87
|
ClassicEditor.create(document.querySelector("#editor"), {
|
|
88
|
+
plugins: [
|
|
89
|
+
ClassicEditor,
|
|
90
|
+
CKBox,
|
|
91
|
+
Bold,
|
|
92
|
+
CloudServices,
|
|
93
|
+
Essentials,
|
|
94
|
+
Font,
|
|
95
|
+
Image,
|
|
96
|
+
ImageUploadEditing,
|
|
97
|
+
ImageUploadProgress,
|
|
98
|
+
Italic,
|
|
99
|
+
LinkEditing,
|
|
100
|
+
Paragraph,
|
|
101
|
+
PictureEditing,
|
|
102
|
+
],
|
|
58
103
|
ckbox: {
|
|
59
104
|
tokenUrl: "https://your.token.url",
|
|
105
|
+
theme: "lark",
|
|
60
106
|
},
|
|
61
107
|
toolbar: [
|
|
62
108
|
"ckbox",
|
|
63
|
-
"imageUpload",
|
|
64
|
-
"|",
|
|
65
|
-
"heading",
|
|
66
109
|
"|",
|
|
67
110
|
"undo",
|
|
68
111
|
"redo",
|
|
@@ -70,12 +113,10 @@ The code snippet below presents the simplest scenario for integration of CKEdito
|
|
|
70
113
|
"bold",
|
|
71
114
|
"italic",
|
|
72
115
|
"|",
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"bulletedList",
|
|
78
|
-
"numberedList",
|
|
116
|
+
"fontSize",
|
|
117
|
+
"fontFamily",
|
|
118
|
+
"fontColor",
|
|
119
|
+
"fontBackgroundColor",
|
|
79
120
|
],
|
|
80
121
|
}).catch((error) => {
|
|
81
122
|
console.error(error);
|
|
@@ -101,7 +142,7 @@ You will find ready to use code snippets and live examples there.
|
|
|
101
142
|
|
|
102
143
|
**CKBox** (https://ckeditor.com/ckbox/)
|
|
103
144
|
|
|
104
|
-
Copyright (c) 2003-
|
|
145
|
+
Copyright (c) 2003-2024, [CKSource Holding sp. z o.o.](https://cksource.com/) All rights reserved.
|
|
105
146
|
**CKBox** is licensed under a commercial license and is protected by copyright law. For more details about available licensing options please contact us at [sales@cksource.com](mailto:sales@cksource.com).
|
|
106
147
|
|
|
107
148
|
Trademarks
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
*/
|
|
4
|
-
const
|
|
4
|
+
const _0x58c33f=_0x1889;(function(_0x20f26e,_0x562ffe){const _0x20e1d9=_0x1889,_0x501bf2=_0x20f26e();while(!![]){try{const _0x4c762d=-parseInt(_0x20e1d9(0x86))/0x1+-parseInt(_0x20e1d9(0x9b))/0x2+-parseInt(_0x20e1d9(0xa5))/0x3*(parseInt(_0x20e1d9(0x98))/0x4)+-parseInt(_0x20e1d9(0xa0))/0x5+-parseInt(_0x20e1d9(0x8c))/0x6*(parseInt(_0x20e1d9(0x97))/0x7)+parseInt(_0x20e1d9(0xa7))/0x8*(-parseInt(_0x20e1d9(0x99))/0x9)+-parseInt(_0x20e1d9(0x95))/0xa*(-parseInt(_0x20e1d9(0x88))/0xb);if(_0x4c762d===_0x562ffe)break;else _0x501bf2['push'](_0x501bf2['shift']());}catch(_0x1f5b35){_0x501bf2['push'](_0x501bf2['shift']());}}}(_0x5e6c,0x6b696));import*as _0x54cd30 from'react';import{sprintf}from'sprintf-js';class Plural{constructor(_0xc6bf59){const _0x3ced11=_0x1889;this[_0x3ced11(0x87)]=_0xc6bf59;try{this[_0x3ced11(0x82)]=new Intl[(_0x3ced11(0x8e))](_0xc6bf59);}catch(_0x5f37b3){console[_0x3ced11(0x81)](_0x3ced11(0x90));}}[_0x58c33f(0x96)](_0x48aa2f,_0x4ee553){const _0x19c756=_0x58c33f;if(!this[_0x19c756(0x82)])return _0x48aa2f+_0x19c756(0x83);const _0x51652a=this[_0x19c756(0x82)][_0x19c756(0xa6)](_0x4ee553);return _0x48aa2f+'_'+_0x51652a;}}Plural[_0x58c33f(0x9a)]=_0x3f9736=>{const _0x434517=_0x58c33f;try{return Intl[_0x434517(0x8e)][_0x434517(0xa4)]([_0x3f9736])['length']>0x0;}catch(_0x1c3929){return![];}};const I18nContext=_0x54cd30[_0x58c33f(0x91)]({'debug':![],'lang':'en','resources':{},'pluralUtils':new Plural('en')}),I18nProvider=({children:_0x3e6718,debug:debug=![],lang:lang='en',resources:resources={}})=>{const _0x80b477=_0x58c33f;return _0x54cd30[_0x80b477(0x8f)](()=>{const _0x4efc9f=_0x80b477,_0x5a21b7=Plural[_0x4efc9f(0x9a)](lang);!_0x5a21b7&&console[_0x4efc9f(0x81)]('Plural\x20form\x20for\x20language\x20\x22'+lang+'\x22\x20is\x20not\x20supported.');},[lang]),_0x54cd30[_0x80b477(0x84)](I18nContext[_0x80b477(0x85)],{'value':{'debug':debug,'lang':lang,'pluralUtils':new Plural(lang),'resources':resources}},_0x3e6718);},TAG_REGEX=/<[a-zA-Z0-9\-!/](?:"[^"]*"|'[^']*'|[^'">])*>/g,ALLOWED_TAGS=['em',_0x58c33f(0xa8),'code'],getMsg=(_0x222361,_0x53f3e6={},_0x3dd6d6)=>{const _0x29e295=_0x58c33f,_0x4932b5=_0x3dd6d6[_0x29e295(0xa3)];if(_0x53f3e6[_0x222361]&&_0x4932b5===undefined)return{'found':!![],'msg':_0x53f3e6[_0x222361]};const _0x472442=Object['keys'](_0x53f3e6)[_0x29e295(0x93)](_0x5bba72=>_0x5bba72['indexOf'](_0x222361)===0x0);if(_0x472442[_0x29e295(0x9f)]===0x0||_0x4932b5===undefined)return{'found':![],'msg':_0x222361};const _0x5f2695=_0x3dd6d6[_0x29e295(0x9c)]['getKey'](_0x222361,_0x4932b5);return{'found':!![],'msg':_0x53f3e6[_0x5f2695]};},parseMsgTags=_0xacf5c1=>{const _0x13efef=_0x58c33f,_0x34a6f6=[];let _0x3b07b1=0x0,_0x1a5960;while((_0x1a5960=TAG_REGEX['exec'](_0xacf5c1))!==null){const _0x3b0922=_0x1a5960[0x0],{index:_0x25c4cb}=_0x1a5960,_0x523c10=_0x3b0922[_0x13efef(0x94)](0x1)==='/',_0x243f0e=_0x523c10?_0x3b0922[_0x13efef(0x8d)](0x2,-0x1):_0x3b0922[_0x13efef(0x8d)](0x1,-0x1),_0x438c7d=ALLOWED_TAGS[_0x13efef(0xa2)](_0x243f0e);if(!_0x438c7d)continue;const _0xcfac73=_0xacf5c1['slice'](_0x3b07b1,_0x25c4cb);if(!_0xcfac73){_0x3b07b1=_0x25c4cb+_0x3b0922[_0x13efef(0x9f)];continue;}_0x523c10?_0x34a6f6['push']({'type':_0x13efef(0xa1),'name':_0x3b0922[_0x13efef(0x8d)](0x2,-0x1),'content':_0xcfac73}):_0x34a6f6[_0x13efef(0x89)]({'type':_0x13efef(0x8b),'content':_0xcfac73}),_0x3b07b1=_0x25c4cb+_0x3b0922['length'];}return _0x3b07b1<_0xacf5c1['length']&&_0x34a6f6[_0x13efef(0x89)]({'type':_0x13efef(0x8b),'content':_0xacf5c1[_0x13efef(0x8d)](_0x3b07b1)}),_0x34a6f6;};function formatMsgWithTags(_0x4c8405){const _0x466615=parseMsgTags(_0x4c8405),_0xdd80cc=_0x466615['map'](({content:_0x1b59ba,type:_0x10ac6d,name:_0x483a18},_0x52ab8e)=>{const _0x1434e1=_0x1889,_0x7bc03d=_0x10ac6d!==_0x1434e1(0x8b)&&_0x483a18?_0x483a18:_0x54cd30['Fragment'];return _0x54cd30[_0x1434e1(0x84)](_0x7bc03d,{'key':''+_0x52ab8e},_0x1b59ba);});return _0xdd80cc;}function _0x5e6c(){const _0x5c1c6c=['lang','187OKJvui','push','\x27\x20is\x20missing.','text','288978SdcWJK','slice','PluralRules','useEffect','Plural\x20rules\x20could\x20not\x20be\x20created.\x20Perhaps\x20`Intl.PluralRules`\x20is\x20not\x20supported?','createContext','log','filter','charAt','1389590HUfILG','getKey','112QokPHM','4CEWlzC','9nEbPaK','isSupported','371064TsxEgZ','pluralUtils','values','useContext','length','545365TVzaks','tag','includes','plural','supportedLocalesOf','148854UFPWPM','select','5249840EpdBIp','strong','warn','_rules','_one','createElement','Provider','151284EKwPsN'];_0x5e6c=function(){return _0x5c1c6c;};return _0x5e6c();}function _0x1889(_0x51f769,_0x2ca6b1){const _0x5e6cdb=_0x5e6c();return _0x1889=function(_0x1889a8,_0x1b088f){_0x1889a8=_0x1889a8-0x81;let _0x36521b=_0x5e6cdb[_0x1889a8];return _0x36521b;},_0x1889(_0x51f769,_0x2ca6b1);}function formatMsg(_0x168bfd,_0x516872,_0x430edc){const _0x831c1e=sprintf(_0x168bfd,..._0x516872!==null&&_0x516872!==void 0x0?_0x516872:[]);if(!_0x430edc)return _0x831c1e;return formatMsgWithTags(_0x831c1e);}const useTranslation=()=>{const _0x215acc=_0x58c33f,{lang:_0x5c4d92,debug:_0x425bfb,pluralUtils:_0x53ab27,resources:_0x5c2535}=_0x54cd30[_0x215acc(0x9e)](I18nContext);function _0x2c998e(_0x481b44,_0x4d7c2a){const _0x6f64ab=_0x215acc,{found:_0x118318,msg:_0x22c9c1}=getMsg(_0x481b44,_0x5c2535[_0x5c4d92],{'plural':_0x4d7c2a===null||_0x4d7c2a===void 0x0?void 0x0:_0x4d7c2a[_0x6f64ab(0xa3)],'pluralUtils':_0x53ab27});_0x425bfb&&!_0x118318&&console[_0x6f64ab(0x92)]('['+_0x5c4d92+']:\x20Translation\x20for\x20key\x20\x27'+_0x481b44+_0x6f64ab(0x8a));if(_0x4d7c2a===null||_0x4d7c2a===void 0x0?void 0x0:_0x4d7c2a['processTags'])return formatMsg(_0x22c9c1,_0x4d7c2a===null||_0x4d7c2a===void 0x0?void 0x0:_0x4d7c2a['values'],!![]);return formatMsg(_0x22c9c1,_0x4d7c2a===null||_0x4d7c2a===void 0x0?void 0x0:_0x4d7c2a[_0x6f64ab(0x9d)],![]);}return{'t':_0x2c998e,'lang':_0x5c4d92};};export{I18nContext,I18nProvider,useTranslation};
|