@ckbox/i18n 0.0.7 → 1.1.1-dev.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 +105 -2
- package/dist/index.d.ts +1 -9
- package/dist/index.js +1 -1
- package/package.json +22 -3
package/README.md
CHANGED
|
@@ -1,3 +1,106 @@
|
|
|
1
|
-
|
|
1
|
+
# CKBox
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
https://ckeditor.com/ckbox/
|
|
4
|
+
|
|
5
|
+
CKBox is a file management platform that makes working with your files easier while providing an outstanding user experience.
|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
## Quick start
|
|
10
|
+
|
|
11
|
+
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.
|
|
12
|
+
|
|
13
|
+
To start using CKBox on your website, embed the following `script` element in the HTML code of the page:
|
|
14
|
+
|
|
15
|
+
```html
|
|
16
|
+
<script src="https://cdn.ckbox.io/CKBox/1.1.1-dev.0/ckbox.js"></script>
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Quick implementation example:
|
|
20
|
+
|
|
21
|
+
```html
|
|
22
|
+
<html>
|
|
23
|
+
<head>
|
|
24
|
+
<meta charset="UTF-8" />
|
|
25
|
+
<script src="https://cdn.ckbox.io/CKBox/1.1.1-dev.0/ckbox.js"></script>
|
|
26
|
+
</head>
|
|
27
|
+
<body>
|
|
28
|
+
<div id="ckbox"></div>
|
|
29
|
+
<script>
|
|
30
|
+
// You must provide a valid token URL in order to use the application
|
|
31
|
+
// After registering to CKBox, the fastest way to try out CKBox is to use the development token endpoint:
|
|
32
|
+
// https://ckeditor.com/docs/ckbox/latest/guides/configuration/authentication.html#token-endpoint
|
|
33
|
+
CKBox.mount(document.getElementById("ckbox"), {
|
|
34
|
+
tokenUrl: "https://your.token.url",
|
|
35
|
+
});
|
|
36
|
+
</script>
|
|
37
|
+
</body>
|
|
38
|
+
</html>
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Integration with CKEditor 5
|
|
42
|
+
|
|
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
|
+
|
|
45
|
+
```html
|
|
46
|
+
<html>
|
|
47
|
+
<head>
|
|
48
|
+
<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.1.1-dev.0/ckbox.js"></script>
|
|
51
|
+
</head>
|
|
52
|
+
<body>
|
|
53
|
+
<div id="editor"></div>
|
|
54
|
+
<script>
|
|
55
|
+
ClassicEditor.create(document.querySelector("#editor"), {
|
|
56
|
+
ckbox: {
|
|
57
|
+
tokenUrl: "https://your.token.url",
|
|
58
|
+
},
|
|
59
|
+
toolbar: [
|
|
60
|
+
"ckbox",
|
|
61
|
+
"imageUpload",
|
|
62
|
+
"|",
|
|
63
|
+
"heading",
|
|
64
|
+
"|",
|
|
65
|
+
"undo",
|
|
66
|
+
"redo",
|
|
67
|
+
"|",
|
|
68
|
+
"bold",
|
|
69
|
+
"italic",
|
|
70
|
+
"|",
|
|
71
|
+
"blockQuote",
|
|
72
|
+
"indent",
|
|
73
|
+
"link",
|
|
74
|
+
"|",
|
|
75
|
+
"bulletedList",
|
|
76
|
+
"numberedList",
|
|
77
|
+
],
|
|
78
|
+
}).catch((error) => {
|
|
79
|
+
console.error(error);
|
|
80
|
+
});
|
|
81
|
+
</script>
|
|
82
|
+
</body>
|
|
83
|
+
</html>
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
For more advanced integration scenarios, please refer to the [CKBox documentation](https://ckeditor.com/docs/ckbox/latest/guides/index.html).
|
|
87
|
+
|
|
88
|
+
## Documentation
|
|
89
|
+
|
|
90
|
+
[CKBox documentation](https://ckeditor.com/docs/ckbox/latest/guides/index.html) includes information about:
|
|
91
|
+
|
|
92
|
+
- Enabling CKBox in your application.
|
|
93
|
+
- Integrating CKBox with CKEditor 5.
|
|
94
|
+
- Configuring and customizing CKBox.
|
|
95
|
+
|
|
96
|
+
You will find ready to use code snippets and live examples there.
|
|
97
|
+
|
|
98
|
+
## License
|
|
99
|
+
|
|
100
|
+
**CKBox** (https://ckeditor.com/ckbox/)
|
|
101
|
+
|
|
102
|
+
Copyright (c) 2003-2022, [CKSource Holding sp. z o.o.](https://cksource.com/) All rights reserved.
|
|
103
|
+
**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).
|
|
104
|
+
|
|
105
|
+
Trademarks
|
|
106
|
+
**CKBox** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com/) All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
|
package/dist/index.d.ts
CHANGED
|
@@ -99,14 +99,6 @@ interface Props extends I18nProps {
|
|
|
99
99
|
children: React.ReactNode;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
/**
|
|
103
|
-
* Gets resources from global scope.
|
|
104
|
-
*
|
|
105
|
-
* @param locale requested language
|
|
106
|
-
* @returns translations
|
|
107
|
-
*/
|
|
108
|
-
declare const getTranslations: (locale: string) => I18nTranslations;
|
|
109
|
-
|
|
110
102
|
interface TOpts<T extends boolean> {
|
|
111
103
|
/**
|
|
112
104
|
* Values to interpolate message with.
|
|
@@ -135,4 +127,4 @@ declare const useTranslation: () => {
|
|
|
135
127
|
lang: string;
|
|
136
128
|
};
|
|
137
129
|
|
|
138
|
-
export { I18nContext, I18nProps, I18nProvider, I18nResources, I18nTranslations,
|
|
130
|
+
export { I18nContext, I18nProps, I18nProvider, I18nResources, I18nTranslations, useTranslation };
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
*/
|
|
4
|
-
const
|
|
4
|
+
const _0x416c97=_0xf10d;(function(_0x380545,_0x445408){const _0x3ff01e=_0xf10d,_0x53fff3=_0x380545();while(!![]){try{const _0x22591c=-parseInt(_0x3ff01e(0x129))/0x1+-parseInt(_0x3ff01e(0x12d))/0x2*(-parseInt(_0x3ff01e(0x121))/0x3)+-parseInt(_0x3ff01e(0x12b))/0x4*(-parseInt(_0x3ff01e(0x136))/0x5)+-parseInt(_0x3ff01e(0x134))/0x6+-parseInt(_0x3ff01e(0x142))/0x7+-parseInt(_0x3ff01e(0x139))/0x8*(-parseInt(_0x3ff01e(0x147))/0x9)+parseInt(_0x3ff01e(0x128))/0xa*(-parseInt(_0x3ff01e(0x12a))/0xb);if(_0x22591c===_0x445408)break;else _0x53fff3['push'](_0x53fff3['shift']());}catch(_0x398d21){_0x53fff3['push'](_0x53fff3['shift']());}}}(_0x1d07,0xb8763));import*as _0x34d0c7 from'react';import{sprintf}from'sprintf-js';class Plural{constructor(_0x53f0f8){const _0x2ea7e7=_0xf10d;this[_0x2ea7e7(0x12f)]=_0x53f0f8;try{this[_0x2ea7e7(0x11f)]=new Intl[(_0x2ea7e7(0x138))](_0x53f0f8);}catch(_0x3a9d51){console[_0x2ea7e7(0x122)](_0x2ea7e7(0x13d));}}[_0x416c97(0x133)](_0x28d687,_0x43e552){const _0x198748=_0x416c97;if(!this['_rules'])return _0x28d687+'_one';const _0x4ac8a6=this[_0x198748(0x11f)][_0x198748(0x140)](_0x43e552);return _0x28d687+'_'+_0x4ac8a6;}}Plural[_0x416c97(0x13b)]=_0x5b877f=>{const _0x141b18=_0x416c97;try{return Intl[_0x141b18(0x138)][_0x141b18(0x11b)]([_0x5b877f])[_0x141b18(0x126)]>0x0;}catch(_0x40a097){return![];}};const I18nContext=_0x34d0c7['createContext']({'changeLang':()=>{},'debug':![],'lang':'en','resources':{},'pluralUtils':new Plural('en')});function reducer(_0x5889f3,_0x49156d){const _0x32f6bd=_0x416c97;switch(_0x49156d[_0x32f6bd(0x12e)]){case _0x32f6bd(0x135):return{..._0x5889f3,'lang':_0x49156d['payload']};case'loadTranslations':return{..._0x5889f3,'lang':_0x49156d['payload'][_0x32f6bd(0x12f)],'resources':{..._0x5889f3['resources'],[_0x49156d[_0x32f6bd(0x13e)][_0x32f6bd(0x12f)]]:_0x49156d['payload']['translations']}};}}const useI18n=({debug:debug=![],loadURL:_0x11a3ee,lang:_0x538e15='en',resources:_0x3a35cd={}})=>{const _0x2c3083=_0x416c97,[{lang:_0x5c13f6,resources:_0x284eca},_0x2de3ca]=_0x34d0c7['useReducer'](reducer,{'lang':_0x538e15,'resources':_0x3a35cd});_0x34d0c7[_0x2c3083(0x131)](()=>{const _0x361295=_0x2c3083,_0x47f2ba=Plural[_0x361295(0x13b)](_0x5c13f6);!_0x47f2ba&&console[_0x361295(0x122)](_0x361295(0x144)+_0x5c13f6+_0x361295(0x123));},[_0x5c13f6]),_0x34d0c7[_0x2c3083(0x131)](()=>{const _0x54c818=_0x2c3083;if(_0x284eca[_0x5c13f6]||!_0x11a3ee)return;fetch(_0x11a3ee(_0x5c13f6))[_0x54c818(0x125)](_0x21ca13=>_0x21ca13['json']())['then'](_0x307756=>{_0x2de3ca({'type':'loadTranslations','payload':{'lang':_0x5c13f6,'translations':_0x307756}});});},[_0x5c13f6,_0x11a3ee,_0x284eca]);const _0x10e729=_0x419cda=>{const _0x33875c=_0x2c3083;_0x2de3ca({'type':_0x33875c(0x135),'payload':_0x419cda});};return{'changeLang':_0x10e729,'debug':debug,'lang':_0x5c13f6,'pluralUtils':new Plural(_0x5c13f6),'resources':_0x284eca};},I18nProvider=({children:_0x524d10,..._0x421e58})=>{const _0x3089d3=_0x416c97,_0xbece8d=useI18n(_0x421e58);return _0x34d0c7[_0x3089d3(0x143)](I18nContext[_0x3089d3(0x127)],{'value':_0xbece8d},_0x524d10);},TAG_REGEX=/<[a-zA-Z0-9\-!/](?:"[^"]*"|'[^']*'|[^'">])*>/g,ALLOWED_TAGS=['em','strong',_0x416c97(0x120)],getMsg=(_0x2ba87b,_0x35debf={},_0x4dbce4)=>{const _0x131a28=_0x416c97,_0xa14ac5=_0x4dbce4[_0x131a28(0x119)];if(_0x35debf[_0x2ba87b]&&_0xa14ac5===undefined)return{'found':!![],'msg':_0x35debf[_0x2ba87b]};const _0x12457e=Object[_0x131a28(0x11a)](_0x35debf)[_0x131a28(0x146)](_0x22e702=>_0x22e702[_0x131a28(0x137)](_0x2ba87b)===0x0);if(_0x12457e[_0x131a28(0x126)]===0x0||_0xa14ac5===undefined)return{'found':![],'msg':_0x2ba87b};const _0x4a35ae=_0x4dbce4[_0x131a28(0x13f)][_0x131a28(0x133)](_0x2ba87b,_0xa14ac5);return{'found':!![],'msg':_0x35debf[_0x4a35ae]};},parseMsgTags=_0x5975e6=>{const _0x133ddc=_0x416c97,_0x2673db=[];let _0x41261b=0x0,_0x122af4;while((_0x122af4=TAG_REGEX[_0x133ddc(0x13a)](_0x5975e6))!==null){const _0x40a05f=_0x122af4[0x0],{index:_0x56d8c2}=_0x122af4,_0x1de92f=_0x40a05f[_0x133ddc(0x141)](0x1)==='/',_0x22b1dc=_0x1de92f?_0x40a05f[_0x133ddc(0x13c)](0x2,-0x1):_0x40a05f[_0x133ddc(0x13c)](0x1,-0x1),_0x2950c0=ALLOWED_TAGS['includes'](_0x22b1dc);if(!_0x2950c0)continue;const _0x1f75e6=_0x5975e6['slice'](_0x41261b,_0x56d8c2);if(!_0x1f75e6){_0x41261b=_0x56d8c2+_0x40a05f[_0x133ddc(0x126)];continue;}_0x1de92f?_0x2673db[_0x133ddc(0x130)]({'type':_0x133ddc(0x11d),'name':_0x40a05f[_0x133ddc(0x13c)](0x2,-0x1),'content':_0x1f75e6}):_0x2673db[_0x133ddc(0x130)]({'type':_0x133ddc(0x12c),'content':_0x1f75e6}),_0x41261b=_0x56d8c2+_0x40a05f['length'];}return _0x41261b<_0x5975e6[_0x133ddc(0x126)]&&_0x2673db[_0x133ddc(0x130)]({'type':_0x133ddc(0x12c),'content':_0x5975e6[_0x133ddc(0x13c)](_0x41261b)}),_0x2673db;};function _0xf10d(_0x5857bb,_0x27dd72){const _0x1d0783=_0x1d07();return _0xf10d=function(_0xf10dee,_0x39a522){_0xf10dee=_0xf10dee-0x119;let _0x1954d5=_0x1d0783[_0xf10dee];return _0x1954d5;},_0xf10d(_0x5857bb,_0x27dd72);}function formatMsgWithTags(_0x11e4d3){const _0x5e5805=parseMsgTags(_0x11e4d3),_0x11031b=_0x5e5805['map'](({content:_0x191a05,type:_0x31a026,name:_0x1518e4},_0x240fad)=>{const _0x2009e8=_0xf10d,_0x3790ad=_0x31a026!==_0x2009e8(0x12c)&&_0x1518e4?_0x1518e4:_0x34d0c7['Fragment'];return _0x34d0c7[_0x2009e8(0x143)](_0x3790ad,{'key':''+_0x240fad},_0x191a05);});return _0x11031b;}function formatMsg(_0x5a869f,_0x352621,_0x52c7e9){const _0x2dd151=sprintf(_0x5a869f,..._0x352621!==null&&_0x352621!==void 0x0?_0x352621:[]);if(!_0x52c7e9)return _0x2dd151;return formatMsgWithTags(_0x2dd151);}const useTranslation=()=>{const _0x55bdca=_0x416c97,{lang:_0x2eeb7b,debug:_0x1fd6db,pluralUtils:_0x2ce070,resources:_0x18ab49}=_0x34d0c7[_0x55bdca(0x132)](I18nContext);function _0x19d823(_0x5d95a1,_0x2d0ccf){const _0x2aa484=_0x55bdca,{found:_0x73c58e,msg:_0xc42b69}=getMsg(_0x5d95a1,_0x18ab49[_0x2eeb7b],{'plural':_0x2d0ccf===null||_0x2d0ccf===void 0x0?void 0x0:_0x2d0ccf[_0x2aa484(0x119)],'pluralUtils':_0x2ce070});_0x1fd6db&&!_0x73c58e&&console['log']('['+_0x2eeb7b+_0x2aa484(0x124)+_0x5d95a1+_0x2aa484(0x11e));if(_0x2d0ccf===null||_0x2d0ccf===void 0x0?void 0x0:_0x2d0ccf[_0x2aa484(0x11c)])return formatMsg(_0xc42b69,_0x2d0ccf===null||_0x2d0ccf===void 0x0?void 0x0:_0x2d0ccf[_0x2aa484(0x145)],!![]);return formatMsg(_0xc42b69,_0x2d0ccf===null||_0x2d0ccf===void 0x0?void 0x0:_0x2d0ccf[_0x2aa484(0x145)],![]);}return{'t':_0x19d823,'lang':_0x2eeb7b};};function _0x1d07(){const _0x4c44fd=['text','4HVZhsu','type','lang','push','useEffect','useContext','getKey','30864feFjvE','changeLang','15lNltXj','indexOf','PluralRules','1750344PZkKhL','exec','isSupported','slice','Plural\x20rules\x20could\x20not\x20be\x20created.\x20Perhaps\x20`Intl.PluralRules`\x20is\x20not\x20supported?','payload','pluralUtils','select','charAt','4501301oFCznq','createElement','Plural\x20form\x20for\x20language\x20\x22','values','filter','27HuSmId','plural','keys','supportedLocalesOf','processTags','tag','\x27\x20is\x20missing.','_rules','code','1755849bGDyxH','warn','\x22\x20is\x20not\x20supported.',']:\x20Translation\x20for\x20key\x20\x27','then','length','Provider','10SQLEJc','214055QKiCom','3180573NOzdqv','106660HEONgx'];_0x1d07=function(){return _0x4c44fd;};return _0x1d07();}export{I18nContext,I18nProvider,useTranslation};
|
package/package.json
CHANGED
|
@@ -1,10 +1,29 @@
|
|
|
1
1
|
{
|
|
2
|
+
"homepage": "https://ckeditor.com/ckbox",
|
|
3
|
+
"keywords": [
|
|
4
|
+
"file manager",
|
|
5
|
+
"ckeditor",
|
|
6
|
+
"file upload",
|
|
7
|
+
"image upload",
|
|
8
|
+
"upload",
|
|
9
|
+
"files",
|
|
10
|
+
"drag and drop",
|
|
11
|
+
"multilingual",
|
|
12
|
+
"component",
|
|
13
|
+
"react",
|
|
14
|
+
"uploader",
|
|
15
|
+
"rescaling images",
|
|
16
|
+
"responsive images",
|
|
17
|
+
"webp",
|
|
18
|
+
"api",
|
|
19
|
+
"cross-domain"
|
|
20
|
+
],
|
|
21
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
2
22
|
"name": "@ckbox/i18n",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
23
|
+
"version": "1.1.1-dev.0",
|
|
24
|
+
"description": "I18n utils of CKBox",
|
|
5
25
|
"main": "dist/index.js",
|
|
6
26
|
"types": "dist/index.d.ts",
|
|
7
|
-
"license": "SEE LICENSE IN LICENSE.md",
|
|
8
27
|
"peerDependencies": {
|
|
9
28
|
"react": "^18"
|
|
10
29
|
},
|