dozy 1.0.49 → 1.0.50
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/dist/assets/fonts/forthecode.ttf +0 -0
- package/dist/assets/fonts/forthecode.woff2 +0 -0
- package/dist/assets/fonts/forthefont.ttf +0 -0
- package/dist/assets/fonts/forthefont.woff2 +0 -0
- package/dist/assets/fonts/xaifont.ttf +0 -0
- package/dist/assets/fonts/xaifont.woff2 +0 -0
- package/dist/assets/reset.css +3 -3
- package/dist/chunk-UIXT2MYS.js +2 -0
- package/dist/chunk-UIXT2MYS.js.map +1 -0
- package/dist/index.d.ts +227 -229
- package/dist/index.js +57 -45
- package/dist/index.js.map +1 -7
- package/dist/nanoid.d.ts +1 -0
- package/dist/nanoid.js +2 -0
- package/dist/nanoid.js.map +1 -0
- package/package.json +10 -13
- package/dist/Dozy.d.ts +0 -9
- package/dist/Dozy.d.ts.map +0 -1
- package/dist/Functions.d.ts +0 -48
- package/dist/Functions.d.ts.map +0 -1
- package/dist/Test.d.ts +0 -2
- package/dist/Test.d.ts.map +0 -1
- package/dist/WebFunctions.d.ts +0 -20
- package/dist/WebFunctions.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/modules/Color.d.ts +0 -75
- package/dist/modules/Color.d.ts.map +0 -1
- package/dist/modules/EnableScaler.d.ts +0 -39
- package/dist/modules/EnableScaler.d.ts.map +0 -1
- package/dist/modules/Interface.d.ts +0 -4
- package/dist/modules/Interface.d.ts.map +0 -1
- package/dist/modules/Store.d.ts +0 -83
- package/dist/modules/Store.d.ts.map +0 -1
- package/dist/modules/XCode.d.ts +0 -9
- package/dist/modules/XCode.d.ts.map +0 -1
- package/dist/modules/gens/Gens.d.ts +0 -18
- package/dist/modules/gens/Gens.d.ts.map +0 -1
- package/dist/modules/gens/GensDirectives.d.ts +0 -4
- package/dist/modules/gens/GensDirectives.d.ts.map +0 -1
- package/dist/modules/gens/GensStyleIds.d.ts +0 -3
- package/dist/modules/gens/GensStyleIds.d.ts.map +0 -1
package/dist/nanoid.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { customAlphabet, nanoid, urlAlphabet } from 'nanoid';
|
package/dist/nanoid.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/package.json
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dozy",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.50",
|
|
4
4
|
"description": "My shared typescript utilities.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./*": {
|
|
14
|
+
"types": "./dist/*.d.ts",
|
|
15
|
+
"import": "./dist/*.js"
|
|
13
16
|
},
|
|
14
17
|
"./package.json": "./package.json",
|
|
15
18
|
"./reset": {
|
|
@@ -23,21 +26,15 @@
|
|
|
23
26
|
"README.md"
|
|
24
27
|
],
|
|
25
28
|
"scripts": {
|
|
26
|
-
"clean": "
|
|
27
|
-
"build
|
|
28
|
-
"build:types:bundle": "dts-bundle-generator -o dist/index.d.ts src/index.ts --inline-declare-externals --no-banner",
|
|
29
|
-
"build:bundle": "esbuild src/index.ts --bundle --platform=browser --format=esm --target=es2020 --outfile=dist/index.js --sourcemap --minify",
|
|
30
|
-
"build": "npm run clean && npm run build:types && npm run build:types:bundle && npm run build:bundle && node scripts/copy-assets.js",
|
|
29
|
+
"clean": "tsup --clean",
|
|
30
|
+
"build": "tsup && node scripts/copy-assets.js",
|
|
31
31
|
"prepare": "npm run build"
|
|
32
32
|
},
|
|
33
33
|
"author": "xaidozy",
|
|
34
34
|
"license": "ISC",
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "^24.10.1",
|
|
37
|
-
"
|
|
38
|
-
"esbuild": "^0.18.18",
|
|
39
|
-
"javascript-obfuscator": "^4.2.0",
|
|
40
|
-
"rimraf": "^5.0.0",
|
|
37
|
+
"tsup": "^8.5.1",
|
|
41
38
|
"typescript": "^5.4.2"
|
|
42
39
|
},
|
|
43
40
|
"dependencies": {
|
package/dist/Dozy.d.ts
DELETED
package/dist/Dozy.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Dozy.d.ts","sourceRoot":"","sources":["../src/Dozy.ts"],"names":[],"mappings":"AAIA,MAAM,MAAM,cAAc,GAAG,EAAE,CAAA;AAC/B,MAAM,MAAM,UAAU,GAAG,OAAO,CAAC,cAAc,CAAC,CAAA;AAChD,cAAM,IAAI;IACT,UAAU,CAAC,MAAM,EAAE,UAAU;IAG7B,MAAM,EAAE,UAAU,CAAK;CACvB;AACD,eAAO,MAAM,IAAI,MAAa,CAAA"}
|
package/dist/Functions.d.ts
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
export declare function $isObject(value: unknown): value is Record<string, unknown>;
|
|
2
|
-
export declare function $deepClone<T>(value: T): T;
|
|
3
|
-
export declare function $capitalize(s: string): string;
|
|
4
|
-
export declare function $clamp(n: number, min: number, max: number): number;
|
|
5
|
-
export declare function $loadOpt(thiz: Object, obj?: Object): any;
|
|
6
|
-
export declare function errMsg(msg: string): void;
|
|
7
|
-
export declare function $pureText(fragment: string): string;
|
|
8
|
-
export declare function $oc(o: any): o is Record<string, any>;
|
|
9
|
-
export declare function $s(s: any, val?: boolean): s is string;
|
|
10
|
-
export declare function $sc(n: any): n is number;
|
|
11
|
-
export declare function $lplus(v: number, t: number, plus?: number): number;
|
|
12
|
-
export declare function $lindex(arr: Array<any>, i: number): any;
|
|
13
|
-
export declare function $validName(id?: string): id is string;
|
|
14
|
-
export type FileType = 'text' | 'image' | 'audio' | 'video' | 'font' | 'unknown';
|
|
15
|
-
export declare function $getFileType(fileName: string): FileType;
|
|
16
|
-
export declare function $isValidOrBriefURL(url?: string): boolean;
|
|
17
|
-
export declare function $getTimeString(stampTicks: number, short: boolean, unitS?: boolean, exact?: boolean): string;
|
|
18
|
-
export declare function $magic(start: number, end?: number): number;
|
|
19
|
-
export declare function $randomByte(len?: number): string;
|
|
20
|
-
export declare function $rsValue(s?: string, path?: string, def?: any): any;
|
|
21
|
-
export declare function $rsetValue(obj: Object, path: string, value: any): any;
|
|
22
|
-
export declare function $rvalue(obj: Object, path?: string, def?: any, sdef?: boolean, set?: boolean): any;
|
|
23
|
-
export declare function $hasKey(obj: Object, key: string): boolean;
|
|
24
|
-
export declare function maybeString(a: any, maxLength?: number): string;
|
|
25
|
-
export declare function errToString(e: unknown): string;
|
|
26
|
-
export declare function smallChance(): boolean;
|
|
27
|
-
export declare function $isPlainClass(obj: any, clas?: Function): boolean;
|
|
28
|
-
export declare function $encodeUnicodeToBase64(str: string): string;
|
|
29
|
-
export declare function $decodeBase64ToUnicode(base64: string): string;
|
|
30
|
-
export declare function $fileToBase64(file: File): Promise<string>;
|
|
31
|
-
export declare function $decodeBase64ToBinary(base64: string): Uint8Array<ArrayBuffer>;
|
|
32
|
-
export declare function $setRange(v: number, min?: number, max?: number): number;
|
|
33
|
-
export declare function $inRange2(v: number, mid: number, range: number): boolean;
|
|
34
|
-
export declare function $inRange(v: number, min?: number, max?: number): boolean;
|
|
35
|
-
export declare function $strings(str: string, cut?: string): string[];
|
|
36
|
-
export declare function $genSSF(f: (s1: string, s2: string) => string, gap?: string): (...args: string[]) => string;
|
|
37
|
-
export declare function xtrim(s: string): string;
|
|
38
|
-
export declare function $if<T extends string | number | symbol, V>(val: T, fs: Record<T, Function | V>): any;
|
|
39
|
-
export declare function $lastIndex(items: Array<any> | number): number;
|
|
40
|
-
export declare function $replaceHolesWithUndefined<T>(arr: Array<T | undefined>): Array<T | undefined>;
|
|
41
|
-
export declare function $stringToRange(str: string, max: number): number;
|
|
42
|
-
export declare function $rmvSlash(path: string): string;
|
|
43
|
-
export declare function $parseParams(path: string): (string | undefined)[];
|
|
44
|
-
export declare function $formatWithCommas(num: number | string): string;
|
|
45
|
-
export declare function $isValidEmailWithUnicode(email?: string): boolean;
|
|
46
|
-
export declare function $checkValidEmailWithUnicode(email?: string): void;
|
|
47
|
-
export declare function $formatDate(dateInput: string | number | Date): string;
|
|
48
|
-
//# sourceMappingURL=Functions.d.ts.map
|
package/dist/Functions.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Functions.d.ts","sourceRoot":"","sources":["../src/Functions.ts"],"names":[],"mappings":"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"}
|
package/dist/Test.d.ts
DELETED
package/dist/Test.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Test.d.ts","sourceRoot":"","sources":["../src/Test.ts"],"names":[],"mappings":""}
|
package/dist/WebFunctions.d.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { Options } from 'browser-image-compression';
|
|
2
|
-
export declare function web$setPathTarget(s: string): void;
|
|
3
|
-
export declare function web$pathStartData(): {
|
|
4
|
-
href: string;
|
|
5
|
-
origin: string;
|
|
6
|
-
target: string;
|
|
7
|
-
host: string;
|
|
8
|
-
path: string;
|
|
9
|
-
search: string;
|
|
10
|
-
standardJump: boolean;
|
|
11
|
-
};
|
|
12
|
-
export declare function web$enableProdProtector(): void;
|
|
13
|
-
export declare function web$enableHttpsRedirect(): void;
|
|
14
|
-
export declare function web$redirectToDomain(newDomain: string): void;
|
|
15
|
-
export declare function $copy(content: string): Promise<boolean | undefined>;
|
|
16
|
-
export declare function $fallbackCopy(content: string): boolean;
|
|
17
|
-
export declare function web$encodeURI(hash?: string): string;
|
|
18
|
-
export declare function $compressImage(file: File, options?: Options): Promise<File>;
|
|
19
|
-
export declare function $compressImage(files: File[], options?: Options): Promise<File[]>;
|
|
20
|
-
//# sourceMappingURL=WebFunctions.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"WebFunctions.d.ts","sourceRoot":"","sources":["../src/WebFunctions.ts"],"names":[],"mappings":"AACA,OAAyB,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAA;AAGrE,wBAAgB,iBAAiB,CAAC,CAAC,EAAE,MAAM,QAG1C;AACD,wBAAgB,iBAAiB;;;;;;;;EA+BhC;AAED,wBAAgB,uBAAuB,SA6CtC;AACD,wBAAgB,uBAAuB,SAWtC;AACD,wBAAgB,oBAAoB,CAAC,SAAS,EAAE,MAAM,QAIrD;AAED,wBAAsB,KAAK,CAAC,OAAO,EAAE,MAAM,gCAa1C;AAED,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,WAiB5C;AAED,wBAAgB,aAAa,CAAC,IAAI,CAAC,EAAE,MAAM,UAM1C;AAED,wBAAsB,cAAc,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;AAClF,wBAAsB,cAAc,CAAC,KAAK,EAAE,IAAI,EAAE,EAAE,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC,CAAA"}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AACzB,cAAc,aAAa,CAAA;AAC3B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,2BAA2B,CAAA;AACzC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,qBAAqB,CAAA;AACnC,cAAc,wBAAwB,CAAA;AACtC,cAAc,kCAAkC,CAAA;AAChD,cAAc,iBAAiB,CAAA;AAE/B,cAAc,2BAA2B,CAAA;AACzC,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,2BAA2B,CAAA;AAGvE,cAAc,OAAO,CAAA;AACrB,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,OAAO,CAAA;AAExC,OAAO,KAAK,CAAC,MAAM,WAAW,CAAA;AAC9B,OAAO,EAAE,CAAC,EAAE,CAAA;AAEZ,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,WAAW,CAAA;AAI/C,cAAc,KAAK,CAAA;AACnB,OAAO,EAAE,OAAO,IAAI,CAAC,EAAE,MAAM,KAAK,CAAA;AAElC,eAAO,MAAM,IAAI,WAAW,CAAA"}
|
package/dist/modules/Color.d.ts
DELETED
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
import { type Color } from 'culori';
|
|
2
|
-
import * as ColorLib from 'culori';
|
|
3
|
-
export { ColorLib };
|
|
4
|
-
/**
|
|
5
|
-
* Register a custom color alias.
|
|
6
|
-
* @param name The name of the alias (e.g., 'abc', 'myColor')
|
|
7
|
-
* @param color The valid color string it maps to (e.g., '#ff0000', 'red')
|
|
8
|
-
*/
|
|
9
|
-
export declare function registerCustomColor(name: string, color: string): void;
|
|
10
|
-
/**
|
|
11
|
-
* Smartly parses a color string.
|
|
12
|
-
* Supports:
|
|
13
|
-
* - All standard CSS colors (names, hex, rgb, hsl, oklch, etc.) via culori.
|
|
14
|
-
* - Hex strings without '#' (e.g., 'ff5555', 'abc', 'aabbccdd').
|
|
15
|
-
* - Custom aliases registered via registerCustomColor.
|
|
16
|
-
* - Existing Color objects (passed through).
|
|
17
|
-
*
|
|
18
|
-
* @param input The color string or Color object to parse.
|
|
19
|
-
* @param fallback Optional fallback color string if parsing fails.
|
|
20
|
-
* @returns The parsed Color object or undefined if invalid.
|
|
21
|
-
*/
|
|
22
|
-
export declare function smartParse(input: string | Color | any, fallback?: string): Color | undefined;
|
|
23
|
-
/**
|
|
24
|
-
* Smartly parses a color and returns a CSS string.
|
|
25
|
-
* Defaults to Hex for sRGB colors, or CSS function for others (like oklch).
|
|
26
|
-
* @param input The color string or object.
|
|
27
|
-
*/
|
|
28
|
-
export declare function smartString(input: string | Color | any, fallback?: string): string | undefined;
|
|
29
|
-
/**
|
|
30
|
-
* Check if a color string is valid (smartly).
|
|
31
|
-
* @param input The color string or object.
|
|
32
|
-
*/
|
|
33
|
-
export declare function isValidColor(input: string | Color | any): boolean;
|
|
34
|
-
/**
|
|
35
|
-
* Calculates the brightness of a color.
|
|
36
|
-
* Uses the Rec. 601 luma formula: (R * 299 + G * 587 + B * 114) / 1000.
|
|
37
|
-
* Returns a value between 0 (black) and 1 (white).
|
|
38
|
-
*
|
|
39
|
-
* @param input The color string or object to check.
|
|
40
|
-
* @returns The brightness value (0-1), or 0 if invalid.
|
|
41
|
-
*/
|
|
42
|
-
export declare function getBrightness(input: string | Color | any): number;
|
|
43
|
-
/**
|
|
44
|
-
* Converts a color to an RGBA array [r, g, b, a].
|
|
45
|
-
* RGB values are 0-255, Alpha is 0-1.
|
|
46
|
-
*
|
|
47
|
-
* @param input The color string or object to convert.
|
|
48
|
-
* @returns [r, g, b, a] or undefined if invalid.
|
|
49
|
-
*/
|
|
50
|
-
export declare function toRgbaArray(input: string | Color | any): [number, number, number, number] | undefined;
|
|
51
|
-
/**
|
|
52
|
-
* Converts a color to a Hex string.
|
|
53
|
-
* @param input The color string or object.
|
|
54
|
-
* @returns Hex string (e.g. #ff0000) or undefined.
|
|
55
|
-
*/
|
|
56
|
-
export declare function toHexString(input: string | Color | any): string | undefined;
|
|
57
|
-
/**
|
|
58
|
-
* Converts a color to an RGB/RGBA string.
|
|
59
|
-
* Uses modern comma-separated syntax for compatibility if preferred, or standard CSS.
|
|
60
|
-
* Note: culori's formatRgb might use space-separated syntax (CSS Color 4).
|
|
61
|
-
* This function forces comma-separated legacy syntax: rgb(r, g, b) or rgba(r, g, b, a).
|
|
62
|
-
*
|
|
63
|
-
* @param input The color string or object.
|
|
64
|
-
* @returns RGB/RGBA string or undefined.
|
|
65
|
-
*/
|
|
66
|
-
export declare function toRgbString(input: string | Color | any): string | undefined;
|
|
67
|
-
/**
|
|
68
|
-
* Converts a color to an HSL/HSLA string.
|
|
69
|
-
* Forces legacy comma-separated syntax: hsl(h, s%, l%) or hsla(h, s%, l%, a).
|
|
70
|
-
*
|
|
71
|
-
* @param input The color string or object.
|
|
72
|
-
* @returns HSL/HSLA string or undefined.
|
|
73
|
-
*/
|
|
74
|
-
export declare function toHslString(input: string | Color | any): string | undefined;
|
|
75
|
-
//# sourceMappingURL=Color.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Color.d.ts","sourceRoot":"","sources":["../../src/modules/Color.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0C,KAAK,KAAK,EAAE,MAAM,QAAQ,CAAC;AAC5E,OAAO,KAAK,QAAQ,MAAM,QAAQ,CAAC;AAGnC,OAAO,EAAE,QAAQ,EAAE,CAAC;AA8BpB;;;;GAIG;AACH,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAE9D;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,GAAG,GAAG,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,KAAK,GAAG,SAAS,CAkC5F;AAED;;;;GAIG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,GAAG,GAAG,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAI9F;AAED;;;GAGG;AACH,wBAAgB,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,GAAG,GAAG,GAAG,OAAO,CAEjE;AAED;;;;;;;GAOG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,GAAG,GAAG,GAAG,MAAM,CAcjE;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,GAAG,GAAG,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,GAAG,SAAS,CAarG;AAED;;;;GAIG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,GAAG,GAAG,GAAG,MAAM,GAAG,SAAS,CAI3E;AAED;;;;;;;;GAQG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,GAAG,GAAG,GAAG,MAAM,GAAG,SAAS,CAS3E;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,GAAG,GAAG,GAAG,MAAM,GAAG,SAAS,CAgB3E"}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
export type ScaleComputer = undefined | ((scaler: Scaler) => number);
|
|
2
|
-
export type ScaleIniter = (scaler: Scaler) => void;
|
|
3
|
-
declare class Scaler {
|
|
4
|
-
#private;
|
|
5
|
-
heightElement: HTMLElement;
|
|
6
|
-
widthElement: HTMLElement;
|
|
7
|
-
set base(val: number);
|
|
8
|
-
get base(): number;
|
|
9
|
-
set mainScale(val: number);
|
|
10
|
-
get mainScale(): number;
|
|
11
|
-
get scaleComputer(): ScaleComputer;
|
|
12
|
-
set scaleComputer(val: ScaleComputer);
|
|
13
|
-
onMainScaleChange?: (scale: number) => void;
|
|
14
|
-
innerContainer: HTMLElement;
|
|
15
|
-
constructor(innerContainer: HTMLElement);
|
|
16
|
-
}
|
|
17
|
-
export declare function enableScaler(outerContainer: HTMLElement, initer?: ScaleIniter, innerContainer?: HTMLElement): {
|
|
18
|
-
resizer: () => void;
|
|
19
|
-
clean: () => void;
|
|
20
|
-
setBase: (val: number) => void;
|
|
21
|
-
} | undefined;
|
|
22
|
-
/**
|
|
23
|
-
* Hello
|
|
24
|
-
* @param widthElement 容器
|
|
25
|
-
* @param heightElement 容器
|
|
26
|
-
* @param maxAspectRatio 请输入 Number(0.57) && 0.64
|
|
27
|
-
* @returns
|
|
28
|
-
*/
|
|
29
|
-
export declare const standardIniter: (args: {
|
|
30
|
-
maxAspectRatio?: number;
|
|
31
|
-
setFullScreenWidth?: (x: number) => void;
|
|
32
|
-
setFullContentHeight?: (x: number) => void;
|
|
33
|
-
setMainScale?: (x: number) => void;
|
|
34
|
-
heightElement?: HTMLElement;
|
|
35
|
-
widthElement?: HTMLElement;
|
|
36
|
-
base?: number;
|
|
37
|
-
}) => ScaleIniter;
|
|
38
|
-
export {};
|
|
39
|
-
//# sourceMappingURL=EnableScaler.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"EnableScaler.d.ts","sourceRoot":"","sources":["../../src/modules/EnableScaler.ts"],"names":[],"mappings":"AASA,MAAM,MAAM,aAAa,GAAG,SAAS,GAAG,CAAC,CAAC,MAAM,EAAE,MAAM,KAAK,MAAM,CAAC,CAAA;AACpE,MAAM,MAAM,WAAW,GAAG,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAA;AAClD,cAAM,MAAM;;IACX,aAAa,EAAG,WAAW,CAAA;IAC3B,YAAY,EAAG,WAAW,CAAA;IAE1B,IAAI,IAAI,CAAC,GAAG,EAAE,MAAM,EAEnB;IACD,IAAI,IAAI,IAHM,MAAM,CAKnB;IAED,IAAI,SAAS,CAAC,GAAG,EAAE,MAAM,EAMxB;IACD,IAAI,SAAS,IAPM,MAAM,CASxB;IAED,IAAI,aAAa,IAGM,aAAa,CADnC;IACD,IAAI,aAAa,CAAC,GAAG,EAAE,aAAa,EAKnC;IAED,iBAAiB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IAE3C,cAAc,cAAA;gBACF,cAAc,EAAE,WAAW;CAGvC;AAED,wBAAgB,YAAY,CAC3B,cAAc,EAAE,WAAW,EAC3B,MAAM,CAAC,EAAE,WAAW,EACpB,cAAc,CAAC,EAAE,WAAW;;;mBAwBN,MAAM;cAoC5B;AAED;;;;;;GAMG;AACH,eAAO,MAAM,cAAc,EAAE,CAAC,IAAI,EAAE;IACnC,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,kBAAkB,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAA;IACxC,oBAAoB,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAA;IAC1C,YAAY,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI,CAAA;IAClC,aAAa,CAAC,EAAE,WAAW,CAAA;IAC3B,YAAY,CAAC,EAAE,WAAW,CAAA;IAC1B,IAAI,CAAC,EAAE,MAAM,CAAA;CACb,KAAK,WA2BH,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Interface.d.ts","sourceRoot":"","sources":["../../src/modules/Interface.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,KAAK,CAAC,CAAC,IAAI;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,CAAC,CAAA;CAAE,CAAA"}
|
package/dist/modules/Store.d.ts
DELETED
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
export declare const $jsonParse: (text: string, reviver?: (this: any, key: string, value: any) => any) => any;
|
|
2
|
-
export declare const $jsonStringify: {
|
|
3
|
-
(value: any, replacer?: (this: any, key: string, value: any) => any, space?: string | number): string;
|
|
4
|
-
(value: any, replacer?: (number | string)[] | null, space?: string | number): string;
|
|
5
|
-
};
|
|
6
|
-
export declare const $keys: <T extends object>(obj: T) => (keyof T & string)[];
|
|
7
|
-
export declare const $entries: <T extends object>(obj: T) => [keyof T & string, T[keyof T]][];
|
|
8
|
-
export declare const $values: {
|
|
9
|
-
<T>(o: {
|
|
10
|
-
[s: string]: T;
|
|
11
|
-
} | ArrayLike<T>): T[];
|
|
12
|
-
(o: {}): any[];
|
|
13
|
-
};
|
|
14
|
-
export declare const $assign: {
|
|
15
|
-
<T extends {}, U>(target: T, source: U): T & U;
|
|
16
|
-
<T extends {}, U, V>(target: T, source1: U, source2: V): T & U & V;
|
|
17
|
-
<T extends {}, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
|
|
18
|
-
(target: object, ...sources: any[]): any;
|
|
19
|
-
};
|
|
20
|
-
export declare const $defineProperty: <T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>) => T;
|
|
21
|
-
export declare const $freeze: {
|
|
22
|
-
<T extends Function>(f: T): T;
|
|
23
|
-
<T extends {
|
|
24
|
-
[idx: string]: U | null | undefined | object;
|
|
25
|
-
}, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
|
|
26
|
-
<T>(o: T): Readonly<T>;
|
|
27
|
-
};
|
|
28
|
-
export declare const $is: (value1: any, value2: any) => boolean;
|
|
29
|
-
export declare const $arrayFrom: {
|
|
30
|
-
<T>(arrayLike: ArrayLike<T>): T[];
|
|
31
|
-
<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
32
|
-
<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
33
|
-
<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
34
|
-
};
|
|
35
|
-
export declare const $arrayIsArray: (arg: any) => arg is any[];
|
|
36
|
-
export declare const $stringFromCharCode: (...codes: number[]) => string;
|
|
37
|
-
export declare const $stringFromCodePoint: (...codePoints: number[]) => string;
|
|
38
|
-
export declare const $numberIsNaN: (number: unknown) => boolean;
|
|
39
|
-
export declare const $numberIsFinite: (number: unknown) => boolean;
|
|
40
|
-
export declare const $math: Math;
|
|
41
|
-
export declare const $now: () => number;
|
|
42
|
-
export declare const $date: DateConstructor;
|
|
43
|
-
export declare const $promise: PromiseConstructor;
|
|
44
|
-
export declare const $URL: {
|
|
45
|
-
new (url: string | URL, base?: string | URL): URL;
|
|
46
|
-
prototype: URL;
|
|
47
|
-
canParse(url: string | URL, base?: string | URL): boolean;
|
|
48
|
-
createObjectURL(obj: Blob | MediaSource): string;
|
|
49
|
-
parse(url: string | URL, base?: string | URL): URL | null;
|
|
50
|
-
revokeObjectURL(url: string): void;
|
|
51
|
-
};
|
|
52
|
-
export declare const $URLSearchParams: {
|
|
53
|
-
new (init?: string[][] | Record<string, string> | string | URLSearchParams): URLSearchParams;
|
|
54
|
-
prototype: URLSearchParams;
|
|
55
|
-
};
|
|
56
|
-
export declare const $clone: typeof structuredClone;
|
|
57
|
-
export declare const $window: (Window & typeof globalThis) | undefined;
|
|
58
|
-
export declare const $document: Document | undefined;
|
|
59
|
-
export declare const $location: Location | undefined;
|
|
60
|
-
export declare const $open: (((url?: string | URL, target?: string, features?: string) => WindowProxy | null) & typeof open) | undefined;
|
|
61
|
-
export declare const $setTimeout: (((handler: TimerHandler, timeout?: number, ...arguments: any[]) => number) & typeof setTimeout) | undefined;
|
|
62
|
-
export declare const $clearTimeout: (((id: number | undefined) => void) & typeof clearTimeout) | undefined;
|
|
63
|
-
export declare const $setInterval: (((handler: TimerHandler, timeout?: number, ...arguments: any[]) => number) & typeof setInterval) | undefined;
|
|
64
|
-
export declare const $clearInterval: (((id: number | undefined) => void) & typeof clearInterval) | undefined;
|
|
65
|
-
export declare const $fetch: typeof fetch | undefined;
|
|
66
|
-
export declare const $Headers: {
|
|
67
|
-
new (init?: HeadersInit): Headers;
|
|
68
|
-
prototype: Headers;
|
|
69
|
-
} | undefined;
|
|
70
|
-
export declare const $Request: {
|
|
71
|
-
new (input: RequestInfo | URL, init?: RequestInit): Request;
|
|
72
|
-
prototype: Request;
|
|
73
|
-
} | undefined;
|
|
74
|
-
export declare const $Response: {
|
|
75
|
-
new (body?: BodyInit | null, init?: ResponseInit): Response;
|
|
76
|
-
prototype: Response;
|
|
77
|
-
error(): Response;
|
|
78
|
-
json(data: any, init?: ResponseInit): Response;
|
|
79
|
-
redirect(url: string | URL, status?: number): Response;
|
|
80
|
-
} | undefined;
|
|
81
|
-
export declare const $log: <T>(a?: T, ...x: any[]) => T | undefined;
|
|
82
|
-
export declare const $crypto: Crypto | undefined;
|
|
83
|
-
//# sourceMappingURL=Store.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Store.d.ts","sourceRoot":"","sources":["../../src/modules/Store.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,UAAU,8EAAa,CAAA;AACpC,eAAO,MAAM,cAAc;;;CAAiB,CAAA;AAG5C,eAAO,MAAM,KAAK,EAAkB,CAAC,CAAC,SAAS,MAAM,EAAE,GAAG,EAAE,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC,EAAE,CAAA;AACtF,eAAO,MAAM,QAAQ,EAAqB,CAAC,CAAC,SAAS,MAAM,EAC1D,GAAG,EAAE,CAAC,KACF,CAAC,MAAM,CAAC,GAAG,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAA;AACrC,eAAO,MAAM,OAAO;;;;;CAAgB,CAAA;AACpC,eAAO,MAAM,OAAO;;;;;CAAgB,CAAA;AACpC,eAAO,MAAM,eAAe,gFAAwB,CAAA;AACpD,eAAO,MAAM,OAAO;;;;;;CAAgB,CAAA;AACpC,eAAO,MAAM,GAAG,uCAAY,CAAA;AAG5B,eAAO,MAAM,UAAU;;;;;CAAa,CAAA;AACpC,eAAO,MAAM,aAAa,4BAAgB,CAAA;AAG1C,eAAO,MAAM,mBAAmB,gCAAsB,CAAA;AACtD,eAAO,MAAM,oBAAoB,qCAAuB,CAAA;AAGxD,eAAO,MAAM,YAAY,8BAAe,CAAA;AACxC,eAAO,MAAM,eAAe,8BAAkB,CAAA;AAG9C,eAAO,MAAM,KAAK,MAAO,CAAA;AAGzB,eAAO,MAAM,IAAI,cAAW,CAAA;AAC5B,eAAO,MAAM,KAAK,iBAAO,CAAA;AAGzB,eAAO,MAAM,QAAQ,oBAAU,CAAA;AAG/B,eAAO,MAAM,IAAI;;;;;;;CAAM,CAAA;AACvB,eAAO,MAAM,gBAAgB;;;CAAkB,CAAA;AAG/C,eAAO,MAAM,MAAM,wBAA6B,CAAA;AAGhD,eAAO,MAAM,OAAO,0CAAqD,CAAA;AACzE,eAAO,MAAM,SAAS,sBAAyD,CAAA;AAC/E,eAAO,MAAM,SAAS,sBAA8D,CAAA;AACpF,eAAO,MAAM,KAAK,8GAA0D,CAAA;AAC5E,eAAO,MAAM,WAAW,8GAAgE,CAAA;AACxF,eAAO,MAAM,aAAa,wEAAkE,CAAA;AAC5F,eAAO,MAAM,YAAY,+GAAiE,CAAA;AAC1F,eAAO,MAAM,cAAc,yEAAmE,CAAA;AAG9F,eAAO,MAAM,MAAM,0BAAmD,CAAA;AACtE,eAAO,MAAM,QAAQ;;;aAAuD,CAAA;AAC5E,eAAO,MAAM,QAAQ;;;aAAuD,CAAA;AAC5E,eAAO,MAAM,SAAS;;;;;;aAAyD,CAAA;AAI/E,eAAO,MAAM,IAAI,GAAI,CAAC,EAAE,IAAI,CAAC,EAAE,GAAG,GAAG,GAAG,EAAE,kBAGzC,CAAA;AAGD,eAAO,MAAM,OAAO,oBAAqD,CAAA"}
|
package/dist/modules/XCode.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export declare class StringObfuscator {
|
|
2
|
-
key: string;
|
|
3
|
-
length: number;
|
|
4
|
-
constructor(key: string, length?: number);
|
|
5
|
-
xors(str: string, key: string): string;
|
|
6
|
-
en(input: string): string;
|
|
7
|
-
de(obfuscated: string): string;
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=XCode.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"XCode.d.ts","sourceRoot":"","sources":["../../src/modules/XCode.ts"],"names":[],"mappings":"AAEA,qBAAa,gBAAgB;IAC5B,GAAG,EAAE,MAAM,CAAA;IACX,MAAM,EAAE,MAAM,CAAA;gBAEF,GAAG,EAAE,MAAM,EAAE,MAAM,GAAE,MAAW;IAK5C,IAAI,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,MAAM;IAQtC,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM;IAUzB,EAAE,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM;CAU9B"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export declare function $escapeHTML(str: string): string;
|
|
2
|
-
export declare class RainbowGen {
|
|
3
|
-
i: number;
|
|
4
|
-
ten: number;
|
|
5
|
-
static staticRainbowHTMLRaw(text: string, dark?: boolean, offset?: number): string;
|
|
6
|
-
static rainbowHTMLRaw(text: string, version?: number, offset?: number): string;
|
|
7
|
-
backAStep(): this;
|
|
8
|
-
getColorValue(): string;
|
|
9
|
-
versions: number[];
|
|
10
|
-
getStyleId(version: number): string;
|
|
11
|
-
constructor(useTimes?: number);
|
|
12
|
-
}
|
|
13
|
-
export declare function boxShadow(color?: string): string;
|
|
14
|
-
export declare function textShadow(color?: string, focus?: boolean, removeName?: boolean): string;
|
|
15
|
-
export declare function s(literature: string, ...args: any[]): string;
|
|
16
|
-
export declare function getColorMap(dark?: boolean): string[];
|
|
17
|
-
export declare function Gens(literature: string, ...args: any[]): string;
|
|
18
|
-
//# sourceMappingURL=Gens.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Gens.d.ts","sourceRoot":"","sources":["../../../src/modules/gens/Gens.ts"],"names":[],"mappings":"AAKA,wBAAgB,WAAW,CAAC,GAAG,EAAE,MAAM,UAWtC;AAED,qBAAa,UAAU;IACtB,CAAC,SAAK;IACN,GAAG,SAAK;IAER,MAAM,CAAC,oBAAoB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,GAAE,OAAe,EAAE,MAAM,GAAE,MAAU;IAenF,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,GAAE,MAAU,EAAE,MAAM,GAAE,MAAU;IAY3E,SAAS;IAKT,aAAa;IAKb,QAAQ,WAA8B;IAWtC,UAAU,CAAC,OAAO,EAAE,MAAM;gBAMd,QAAQ,GAAE,MAAU;CAGhC;AAED,wBAAgB,SAAS,CAAC,KAAK,GAAE,MAAe,UAE/C;AAED,wBAAgB,UAAU,CAAC,KAAK,GAAE,MAAe,EAAE,KAAK,CAAC,EAAE,OAAO,EAAE,UAAU,GAAE,OAAe,UAO9F;AAQD,wBAAgB,CAAC,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,UAEnD;AAKD,wBAAgB,WAAW,CAAC,IAAI,GAAE,OAAe,YAgBhD;AAED,wBAAgB,IAAI,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,UAYtD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GensDirectives.d.ts","sourceRoot":"","sources":["../../../src/modules/gens/GensDirectives.ts"],"names":[],"mappings":"AAAA,eAAO,IAAI,IAAI,GAAI,GAAG,MAAM,WAAM,CAAA;AAElC,OAAO,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAA;AAGvC,wBAAgB,gBAAgB,oBACR,MAAM,EAAE,KAAK,MAAM,EAuB1C"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GensStyleIds.d.ts","sourceRoot":"","sources":["../../../src/modules/gens/GensStyleIds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAGrC,wBAAgB,cAAc,IAwDrB,KAAK,CAAC,MAAM,CAAC,CACrB"}
|