knight-web 2.0.3 → 2.0.5
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/frame/base/AbstractObject.d.ts +36 -0
- package/frame/base/AbstractPanel.d.ts +4 -0
- package/frame/base/index.d.ts +2 -0
- package/frame/core/Knight.d.ts +42 -0
- package/frame/core/Navgation.d.ts +26 -0
- package/frame/core/index.d.ts +2 -1
- package/frame/index.d.ts +2 -1
- package/frame/utility/BrowserUtility.d.ts +320 -0
- package/frame/utility/ConfigUtility.d.ts +33 -0
- package/frame/utility/CryptoUtility.d.ts +215 -0
- package/frame/utility/EnumUtility.d.ts +886 -0
- package/frame/utility/FileUtility.d.ts +31 -0
- package/frame/utility/InputUtility.d.ts +20 -0
- package/frame/utility/InterfaceUtility.d.ts +13 -0
- package/frame/utility/LogUtility.d.ts +44 -0
- package/frame/utility/MathUtility.d.ts +559 -0
- package/frame/utility/NetworkUtility.d.ts +155 -0
- package/frame/utility/ObjectUtility.d.ts +308 -0
- package/frame/utility/ProfilerUtility.d.ts +37 -0
- package/frame/utility/PromiseUtility.d.ts +89 -0
- package/frame/utility/ReflectionUtility.d.ts +316 -0
- package/frame/utility/StringUtility.d.ts +55 -0
- package/frame/utility/index.d.ts +15 -0
- package/index.js +84 -0
- package/index.js.map +1 -0
- package/package.json +3 -2
- package/frame/Main.d.ts +0 -3
- package/frame/core/Core.d.ts +0 -3
- package/knight.js +0 -2
- package/knight.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "knight-web",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.5",
|
|
4
|
+
"description": "基于React的Knight-web架构",
|
|
5
5
|
"main": "knight.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
8
|
"login": "npm login",
|
|
9
|
+
"authToken": "npm config set //registry.npmjs.org/:_authToken=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",
|
|
9
10
|
"publish": "npm publish"
|
|
10
11
|
},
|
|
11
12
|
"keywords": [
|
package/frame/Main.d.ts
DELETED
package/frame/core/Core.d.ts
DELETED
package/knight.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
!function(e,o){"object"==typeof exports&&"undefined"!=typeof module?o(exports):"function"==typeof define&&define.amd?define(["exports"],o):o((e="undefined"!=typeof globalThis?globalThis:e||self).Knight={})}(this,(function(e){"use strict";var o=Object.freeze({__proto__:null,Core:class{OnTest(){}}});window.onload=()=>{},e.Core=o,e.Main=class{OnTest(){}},Object.defineProperty(e,"__esModule",{value:!0})}));
|
|
2
|
-
//# sourceMappingURL=knight.js.map
|
package/knight.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"knight.js","sources":["../../src/frame/core/Core.ts","../../src/index.ts","../../src/frame/Main.ts"],"sourcesContent":[null,null,null],"names":["OnTest","window","onload"],"mappings":"6RAGW,MAAAA,GAGN,KCJLC,OAAOC,OAAS,6BCEL,MAAAF,GAGN"}
|