@sswroom/sswr 1.6.12 → 1.6.14
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/Changelog +10 -0
- package/certutil.d.ts +1 -1
- package/certutil.js +645 -23
- package/crypto.d.ts +27 -0
- package/crypto.js +149 -0
- package/data.d.ts +29 -1
- package/data.js +673 -72
- package/exporter/XLSXExporter.d.ts +40 -0
- package/exporter/XLSXExporter.js +1960 -0
- package/hash.d.ts +25 -0
- package/hash.js +257 -2
- package/osm.js +41 -2
- package/package.json +4 -1
- package/parser.js +46 -0
- package/spreadsheet.d.ts +574 -0
- package/spreadsheet.js +2227 -0
- package/text.d.ts +19 -0
- package/text.js +25 -0
- package/zip.d.ts +57 -0
- package/zip.js +474 -0
package/Changelog
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
1.6.14
|
|
2
|
+
-Added zip.ZIPBuilder
|
|
3
|
+
-Added Timestamp.toFILETIME
|
|
4
|
+
-Added Timestamp.toMSDOSDate, toMSDOSTime
|
|
5
|
+
-Added spreadsheet.js
|
|
6
|
+
-Added export/XLSXExporter.js
|
|
7
|
+
|
|
8
|
+
1.6.13
|
|
9
|
+
-Added crypto.ICrypto, crypto.AES256GCM
|
|
10
|
+
|
|
1
11
|
1.6.12
|
|
2
12
|
-Added dummy/i18next.js
|
|
3
13
|
-Added web.getButtonElement, getDivElement, getSpanElement
|
package/certutil.d.ts
CHANGED
|
@@ -97,7 +97,7 @@ export class ASN1Util
|
|
|
97
97
|
static oidEqualsText(oidPDU: Uint8Array | number[], oidText: string): boolean;
|
|
98
98
|
static oidToString(oidPDU: Uint8Array | number[]): string;
|
|
99
99
|
// static UOSInt OIDCalcPDUSize(const UTF8Char *oidText, UOSInt oidTextLen);
|
|
100
|
-
static oidText2PDU(oidText: string): number[];
|
|
100
|
+
static oidText2PDU(oidText: string): number[] | null;
|
|
101
101
|
|
|
102
102
|
// static void OIDToCPPCode(const UInt8 *oid, UOSInt oidLen, const UTF8Char *objectName, UOSInt nameLen, NotNullPtr<Text::StringBuilderUTF8> sb);
|
|
103
103
|
|