@es-joy/jsoe 0.5.0 → 0.6.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/.eslintignore +2 -0
- package/.eslintrc.cjs +2 -0
- package/.nyc_output/out.json +121296 -0
- package/CHANGES.md +10 -0
- package/README.md +47 -21
- package/cypress.config.ts +13 -0
- package/demo/index-instrumented.html +29 -0
- package/demo/index.html +10 -1
- package/demo/index.js +482 -126
- package/dist/formatAndTypeChoices.d.ts +10 -4
- package/dist/formatAndTypeChoices.d.ts.map +1 -1
- package/dist/formats/json.d.ts.map +1 -1
- package/dist/formats/structuredCloning.d.ts +2 -1
- package/dist/formats/structuredCloning.d.ts.map +1 -1
- package/dist/fundamentalTypes/arrayType.d.ts +6 -37
- package/dist/fundamentalTypes/arrayType.d.ts.map +1 -1
- package/dist/fundamentalTypes/dateType.d.ts.map +1 -1
- package/dist/fundamentalTypes/errorType.d.ts +6 -0
- package/dist/fundamentalTypes/errorType.d.ts.map +1 -0
- package/dist/fundamentalTypes/mapType.d.ts +6 -0
- package/dist/fundamentalTypes/mapType.d.ts.map +1 -0
- package/dist/fundamentalTypes/nullType.d.ts.map +1 -1
- package/dist/fundamentalTypes/objectReferenceType.d.ts.map +1 -1
- package/dist/fundamentalTypes/setType.d.ts +6 -0
- package/dist/fundamentalTypes/setType.d.ts.map +1 -0
- package/dist/fundamentalTypes/sparseUndefinedType.d.ts.map +1 -1
- package/dist/fundamentalTypes/undefinedType.d.ts.map +1 -1
- package/dist/subTypes/blobHTMLType.d.ts +12 -6
- package/dist/subTypes/blobHTMLType.d.ts.map +1 -1
- package/dist/superTypes/SpecialNumberType.d.ts +14 -0
- package/dist/superTypes/SpecialNumberType.d.ts.map +1 -0
- package/dist/superTypes/SpecialRealNumberType.d.ts +6 -0
- package/dist/superTypes/SpecialRealNumberType.d.ts.map +1 -0
- package/dist/superTypes/errorsSpecialType.d.ts +8 -0
- package/dist/superTypes/errorsSpecialType.d.ts.map +1 -0
- package/dist/typeChoices.d.ts +4 -2
- package/dist/typeChoices.d.ts.map +1 -1
- package/dist/types.d.ts +85 -233
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/dialogs.d.ts +22 -22
- package/dist/utils/dialogs.d.ts.map +1 -1
- package/dist/utils/templateUtils.d.ts +6 -6
- package/dist/utils/templateUtils.d.ts.map +1 -1
- package/dist/vendor-imports.d.ts +1 -1
- package/package.json +39 -34
- package/rollup.config.js +14 -2
- package/server.js +1 -1
- package/src/formatAndTypeChoices.js +14 -13
- package/src/formats/indexedDBKey.js +2 -2
- package/src/formats/json.js +1 -2
- package/src/formats/structuredCloning.js +104 -29
- package/src/formats.js +2 -2
- package/src/fundamentalTypes/arrayReferenceType.js +3 -3
- package/src/fundamentalTypes/arrayType.js +384 -79
- package/src/fundamentalTypes/dateType.js +4 -6
- package/src/fundamentalTypes/errorType.js +416 -0
- package/src/fundamentalTypes/mapType.js +34 -0
- package/src/fundamentalTypes/nullType.js +1 -2
- package/src/fundamentalTypes/objectReferenceType.js +2 -1
- package/src/fundamentalTypes/regexpType.js +2 -2
- package/src/fundamentalTypes/setType.js +34 -0
- package/src/fundamentalTypes/sparseUndefinedType.js +2 -3
- package/src/fundamentalTypes/undefinedType.js +2 -3
- package/src/jsoe.css +3 -0
- package/src/subTypes/blobHTMLType.js +37 -33
- package/src/subTypes/falseType.js +2 -2
- package/src/subTypes/trueType.js +2 -2
- package/src/superTypes/{SpecialNumberSuperType.js → SpecialNumberType.js} +1 -1
- package/src/superTypes/{SpecialRealNumberSuperType.js → SpecialRealNumberType.js} +3 -2
- package/src/superTypes/errorsSpecialType.js +768 -0
- package/src/typeChoices.js +27 -20
- package/src/types.js +72 -40
- package/src/utils/dialogs.js +11 -12
- package/src/utils/jsonPointer.js +3 -3
- package/src/utils/templateUtils.js +4 -4
- package/src/vendor-imports.js +2 -2
- package/tsconfig.json +1 -1
- package/typings/CypressPlugins.d.ts +10 -0
- package/vendor/jamilih/dist/jml-es.js +126 -106
- package/vendor/typeson-registry/dist/index.js +188 -44
package/dist/types.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export default Types;
|
|
|
3
3
|
/**
|
|
4
4
|
* Utility to retrieve the type out of a type root element.
|
|
5
5
|
*/
|
|
6
|
-
export type GetTypeForRoot = (root: RootElement | null) => string
|
|
6
|
+
export type GetTypeForRoot = (root: RootElement | null) => string;
|
|
7
7
|
/**
|
|
8
8
|
* Utility to get the value out of a type root element with a given
|
|
9
9
|
* state and path.
|
|
@@ -16,7 +16,7 @@ export type GetFormControlForRoot = (root: RootElement) => null | HTMLInputEleme
|
|
|
16
16
|
/**
|
|
17
17
|
* Utility to get the value for a root using its ancestor and state.
|
|
18
18
|
*/
|
|
19
|
-
export type GetValueFromRootAncestor = (selOrEl: string | HTMLElement, stateObj
|
|
19
|
+
export type GetValueFromRootAncestor = (selOrEl: string | HTMLElement, stateObj?: StateObject | undefined) => StructuredCloneValue;
|
|
20
20
|
export type GetFormControlFromRootAncestor = (selOrEl: string | HTMLElement) => null | HTMLInputElement | HTMLTextAreaElement | HTMLSelectElement | HTMLButtonElement;
|
|
21
21
|
export type GetTypesForFormatAndState = (format: string, state?: string | undefined) => AvailableType[] | undefined;
|
|
22
22
|
export type GetOptionForType = (type: AvailableType) => [string, {
|
|
@@ -85,6 +85,7 @@ export type StructuredCloneValue = import('./formats.js').StructuredCloneValue;
|
|
|
85
85
|
export type JamilihArray = import('jamilih').JamilihArray;
|
|
86
86
|
export type RootInfo = {
|
|
87
87
|
format: import('./formats.js').AvailableFormat;
|
|
88
|
+
match: boolean | RegExpMatchArray | null;
|
|
88
89
|
endMatchTypeObjs: TypeObject[];
|
|
89
90
|
remnant: string;
|
|
90
91
|
rootHolder: [
|
|
@@ -96,6 +97,10 @@ export type RootInfo = {
|
|
|
96
97
|
parent?: object;
|
|
97
98
|
parentPath?: string | number;
|
|
98
99
|
};
|
|
100
|
+
export type TypeObjectSetValue = (info: {
|
|
101
|
+
root: HTMLDivElement;
|
|
102
|
+
value: StructuredCloneValue;
|
|
103
|
+
}) => void;
|
|
99
104
|
export type TypeObject = {
|
|
100
105
|
/**
|
|
101
106
|
* Creates the option HTML. May set an option `title` or `value`
|
|
@@ -112,6 +117,26 @@ export type TypeObject = {
|
|
|
112
117
|
* it is an array. Do not use in other types.
|
|
113
118
|
*/
|
|
114
119
|
array?: boolean | undefined;
|
|
120
|
+
/**
|
|
121
|
+
* Private context variable. Whether or not
|
|
122
|
+
* it is a Map. Do not use in other types.
|
|
123
|
+
*/
|
|
124
|
+
map?: boolean | undefined;
|
|
125
|
+
/**
|
|
126
|
+
* Private context variable. Whether or not
|
|
127
|
+
* it is a set. Do not use in other types.
|
|
128
|
+
*/
|
|
129
|
+
set?: boolean | undefined;
|
|
130
|
+
/**
|
|
131
|
+
* Private context variable. Whether or not
|
|
132
|
+
* it is a sparse array. Do not use in other types.
|
|
133
|
+
*/
|
|
134
|
+
sparse?: boolean | undefined;
|
|
135
|
+
/**
|
|
136
|
+
* Private context variable. Whether or not
|
|
137
|
+
* it is a valid date. Do not use in other types.
|
|
138
|
+
*/
|
|
139
|
+
valid?: boolean | undefined;
|
|
115
140
|
/**
|
|
116
141
|
* Used for string parsing.
|
|
117
142
|
*/
|
|
@@ -146,7 +171,11 @@ export type TypeObject = {
|
|
|
146
171
|
* Converts from string to value. May use
|
|
147
172
|
* `stringRegex` to find components.
|
|
148
173
|
*/
|
|
149
|
-
toValue: (s: string, info?: RootInfo) =>
|
|
174
|
+
toValue: (s: string, info?: RootInfo) => {
|
|
175
|
+
value?: StructuredCloneValue;
|
|
176
|
+
remnant?: string;
|
|
177
|
+
assign?: false;
|
|
178
|
+
};
|
|
150
179
|
/**
|
|
151
180
|
* Gets the value for the type
|
|
152
181
|
*/
|
|
@@ -156,12 +185,10 @@ export type TypeObject = {
|
|
|
156
185
|
currentPath?: string;
|
|
157
186
|
}) => StructuredCloneValue;
|
|
158
187
|
/**
|
|
159
|
-
* Should set the value of the
|
|
188
|
+
* Should set the value of the
|
|
189
|
+
* form's `getInput` element
|
|
160
190
|
*/
|
|
161
|
-
setValue?:
|
|
162
|
-
root: HTMLDivElement;
|
|
163
|
-
value: StructuredCloneValue;
|
|
164
|
-
}) => void) | undefined;
|
|
191
|
+
setValue?: TypeObjectSetValue | undefined;
|
|
165
192
|
viewUI: (info: {
|
|
166
193
|
value?: StructuredCloneValue;
|
|
167
194
|
typeNamespace?: string;
|
|
@@ -177,6 +204,7 @@ export type TypeObject = {
|
|
|
177
204
|
format?: import('./formats.js').AvailableFormat;
|
|
178
205
|
resultType?: "keys" | "values" | "both";
|
|
179
206
|
type?: AvailableType;
|
|
207
|
+
arrayState?: string;
|
|
180
208
|
buildTypeChoices?: import('./typeChoices.js').BuildTypeChoices;
|
|
181
209
|
topRoot?: HTMLDivElement;
|
|
182
210
|
}) => import("jamilih").JamilihArray;
|
|
@@ -222,7 +250,7 @@ export type TypeObject = {
|
|
|
222
250
|
};
|
|
223
251
|
} | undefined;
|
|
224
252
|
};
|
|
225
|
-
export type AvailableType = "null" | "true" | "false" | "number" | "bigint" | "string" | "arrayReference" | "objectReference" | "array" | "object" | "date" | "userObject" | "undef" | "SpecialRealNumber" | "SpecialNumber" | "regexp" | "BooleanObject" | "NumberObject" | "StringObject" | "map" | "set" | "file" | "filelist" | "blobHTML" | "arraybuffer" | "arraybufferview" | "dataview" | "imagedata" | "imagebitmap" | "int8array" | "uint8array" | "uint8clampedarray" | "int16array" | "uint16array" | "int32array" | "uint32array" | "float32array" | "float64array" | "IntlCollator" | "IntlDateTimeFormat" | "IntlNumberFormat" | "
|
|
253
|
+
export type AvailableType = "null" | "true" | "false" | "number" | "bigint" | "string" | "arrayReference" | "objectReference" | "array" | "object" | "date" | "userObject" | "undef" | "SpecialRealNumber" | "SpecialNumber" | "regexp" | "BooleanObject" | "NumberObject" | "StringObject" | "map" | "set" | "file" | "filelist" | "blobHTML" | "arraybuffer" | "arraybufferview" | "dataview" | "imagedata" | "imagebitmap" | "int8array" | "uint8array" | "uint8clampedarray" | "int16array" | "uint16array" | "int32array" | "uint32array" | "float32array" | "float64array" | "IntlCollator" | "IntlDateTimeFormat" | "IntlNumberFormat" | "ValidDate" | "arrayNonindexKeys" | "error" | "errors";
|
|
226
254
|
export type GetPossibleSchemasForPathAndType = (keypath: string, parentPath: string, arrayOrObjectPropertyName: string, valueType: string) => StateObject;
|
|
227
255
|
export type StateObject = {
|
|
228
256
|
typeNamespace?: string | undefined;
|
|
@@ -249,7 +277,7 @@ export type RootElement = HTMLDivElement;
|
|
|
249
277
|
* Utility to retrieve the type out of a type root element.
|
|
250
278
|
* @callback GetTypeForRoot
|
|
251
279
|
* @param {?RootElement} root
|
|
252
|
-
* @returns {string
|
|
280
|
+
* @returns {string} Why would it not exist?
|
|
253
281
|
*/
|
|
254
282
|
/**
|
|
255
283
|
* Utility to get the value out of a type root element with a given
|
|
@@ -271,7 +299,7 @@ export type RootElement = HTMLDivElement;
|
|
|
271
299
|
* Utility to get the value for a root using its ancestor and state.
|
|
272
300
|
* @callback GetValueFromRootAncestor
|
|
273
301
|
* @param {string|HTMLElement} selOrEl
|
|
274
|
-
* @param {StateObject} stateObj
|
|
302
|
+
* @param {StateObject} [stateObj]
|
|
275
303
|
* @returns {StructuredCloneValue}
|
|
276
304
|
*/
|
|
277
305
|
/**
|
|
@@ -369,8 +397,7 @@ export type RootElement = HTMLDivElement;
|
|
|
369
397
|
/**
|
|
370
398
|
* @type {{
|
|
371
399
|
* availableTypes: {
|
|
372
|
-
* [key in AvailableType]: Partial<TypeObject>|string[]
|
|
373
|
-
* {valid: true}|{sparse: true}
|
|
400
|
+
* [key in AvailableType]: Partial<TypeObject>|string[]
|
|
374
401
|
* },
|
|
375
402
|
* getTypeForRoot: GetTypeForRoot,
|
|
376
403
|
* getValueForRoot: GetValueForRoot,
|
|
@@ -396,226 +423,51 @@ export type RootElement = HTMLDivElement;
|
|
|
396
423
|
*/
|
|
397
424
|
declare const Types: {
|
|
398
425
|
availableTypes: {
|
|
399
|
-
string: string[] | Partial<TypeObject
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
date: string[] | Partial<TypeObject> | {
|
|
445
|
-
valid: true;
|
|
446
|
-
} | {
|
|
447
|
-
sparse: true;
|
|
448
|
-
};
|
|
449
|
-
null: string[] | Partial<TypeObject> | {
|
|
450
|
-
valid: true;
|
|
451
|
-
} | {
|
|
452
|
-
sparse: true;
|
|
453
|
-
};
|
|
454
|
-
regexp: string[] | Partial<TypeObject> | {
|
|
455
|
-
valid: true;
|
|
456
|
-
} | {
|
|
457
|
-
sparse: true;
|
|
458
|
-
};
|
|
459
|
-
array: string[] | Partial<TypeObject> | {
|
|
460
|
-
valid: true;
|
|
461
|
-
} | {
|
|
462
|
-
sparse: true;
|
|
463
|
-
};
|
|
464
|
-
true: string[] | Partial<TypeObject> | {
|
|
465
|
-
valid: true;
|
|
466
|
-
} | {
|
|
467
|
-
sparse: true;
|
|
468
|
-
};
|
|
469
|
-
arrayReference: string[] | Partial<TypeObject> | {
|
|
470
|
-
valid: true;
|
|
471
|
-
} | {
|
|
472
|
-
sparse: true;
|
|
473
|
-
};
|
|
474
|
-
objectReference: string[] | Partial<TypeObject> | {
|
|
475
|
-
valid: true;
|
|
476
|
-
} | {
|
|
477
|
-
sparse: true;
|
|
478
|
-
};
|
|
479
|
-
userObject: string[] | Partial<TypeObject> | {
|
|
480
|
-
valid: true;
|
|
481
|
-
} | {
|
|
482
|
-
sparse: true;
|
|
483
|
-
};
|
|
484
|
-
undef: string[] | Partial<TypeObject> | {
|
|
485
|
-
valid: true;
|
|
486
|
-
} | {
|
|
487
|
-
sparse: true;
|
|
488
|
-
};
|
|
489
|
-
SpecialRealNumber: string[] | Partial<TypeObject> | {
|
|
490
|
-
valid: true;
|
|
491
|
-
} | {
|
|
492
|
-
sparse: true;
|
|
493
|
-
};
|
|
494
|
-
SpecialNumber: string[] | Partial<TypeObject> | {
|
|
495
|
-
valid: true;
|
|
496
|
-
} | {
|
|
497
|
-
sparse: true;
|
|
498
|
-
};
|
|
499
|
-
BooleanObject: string[] | Partial<TypeObject> | {
|
|
500
|
-
valid: true;
|
|
501
|
-
} | {
|
|
502
|
-
sparse: true;
|
|
503
|
-
};
|
|
504
|
-
NumberObject: string[] | Partial<TypeObject> | {
|
|
505
|
-
valid: true;
|
|
506
|
-
} | {
|
|
507
|
-
sparse: true;
|
|
508
|
-
};
|
|
509
|
-
StringObject: string[] | Partial<TypeObject> | {
|
|
510
|
-
valid: true;
|
|
511
|
-
} | {
|
|
512
|
-
sparse: true;
|
|
513
|
-
};
|
|
514
|
-
filelist: string[] | Partial<TypeObject> | {
|
|
515
|
-
valid: true;
|
|
516
|
-
} | {
|
|
517
|
-
sparse: true;
|
|
518
|
-
};
|
|
519
|
-
blobHTML: string[] | Partial<TypeObject> | {
|
|
520
|
-
valid: true;
|
|
521
|
-
} | {
|
|
522
|
-
sparse: true;
|
|
523
|
-
};
|
|
524
|
-
arraybufferview: string[] | Partial<TypeObject> | {
|
|
525
|
-
valid: true;
|
|
526
|
-
} | {
|
|
527
|
-
sparse: true;
|
|
528
|
-
};
|
|
529
|
-
dataview: string[] | Partial<TypeObject> | {
|
|
530
|
-
valid: true;
|
|
531
|
-
} | {
|
|
532
|
-
sparse: true;
|
|
533
|
-
};
|
|
534
|
-
imagedata: string[] | Partial<TypeObject> | {
|
|
535
|
-
valid: true;
|
|
536
|
-
} | {
|
|
537
|
-
sparse: true;
|
|
538
|
-
};
|
|
539
|
-
imagebitmap: string[] | Partial<TypeObject> | {
|
|
540
|
-
valid: true;
|
|
541
|
-
} | {
|
|
542
|
-
sparse: true;
|
|
543
|
-
};
|
|
544
|
-
int8array: string[] | Partial<TypeObject> | {
|
|
545
|
-
valid: true;
|
|
546
|
-
} | {
|
|
547
|
-
sparse: true;
|
|
548
|
-
};
|
|
549
|
-
uint8array: string[] | Partial<TypeObject> | {
|
|
550
|
-
valid: true;
|
|
551
|
-
} | {
|
|
552
|
-
sparse: true;
|
|
553
|
-
};
|
|
554
|
-
uint8clampedarray: string[] | Partial<TypeObject> | {
|
|
555
|
-
valid: true;
|
|
556
|
-
} | {
|
|
557
|
-
sparse: true;
|
|
558
|
-
};
|
|
559
|
-
int16array: string[] | Partial<TypeObject> | {
|
|
560
|
-
valid: true;
|
|
561
|
-
} | {
|
|
562
|
-
sparse: true;
|
|
563
|
-
};
|
|
564
|
-
uint16array: string[] | Partial<TypeObject> | {
|
|
565
|
-
valid: true;
|
|
566
|
-
} | {
|
|
567
|
-
sparse: true;
|
|
568
|
-
};
|
|
569
|
-
int32array: string[] | Partial<TypeObject> | {
|
|
570
|
-
valid: true;
|
|
571
|
-
} | {
|
|
572
|
-
sparse: true;
|
|
573
|
-
};
|
|
574
|
-
uint32array: string[] | Partial<TypeObject> | {
|
|
575
|
-
valid: true;
|
|
576
|
-
} | {
|
|
577
|
-
sparse: true;
|
|
578
|
-
};
|
|
579
|
-
float32array: string[] | Partial<TypeObject> | {
|
|
580
|
-
valid: true;
|
|
581
|
-
} | {
|
|
582
|
-
sparse: true;
|
|
583
|
-
};
|
|
584
|
-
float64array: string[] | Partial<TypeObject> | {
|
|
585
|
-
valid: true;
|
|
586
|
-
} | {
|
|
587
|
-
sparse: true;
|
|
588
|
-
};
|
|
589
|
-
IntlCollator: string[] | Partial<TypeObject> | {
|
|
590
|
-
valid: true;
|
|
591
|
-
} | {
|
|
592
|
-
sparse: true;
|
|
593
|
-
};
|
|
594
|
-
IntlDateTimeFormat: string[] | Partial<TypeObject> | {
|
|
595
|
-
valid: true;
|
|
596
|
-
} | {
|
|
597
|
-
sparse: true;
|
|
598
|
-
};
|
|
599
|
-
IntlNumberFormat: string[] | Partial<TypeObject> | {
|
|
600
|
-
valid: true;
|
|
601
|
-
} | {
|
|
602
|
-
sparse: true;
|
|
603
|
-
};
|
|
604
|
-
sparseUndefined: string[] | Partial<TypeObject> | {
|
|
605
|
-
valid: true;
|
|
606
|
-
} | {
|
|
607
|
-
sparse: true;
|
|
608
|
-
};
|
|
609
|
-
ValidDate: string[] | Partial<TypeObject> | {
|
|
610
|
-
valid: true;
|
|
611
|
-
} | {
|
|
612
|
-
sparse: true;
|
|
613
|
-
};
|
|
614
|
-
arrayNonindexKeys: string[] | Partial<TypeObject> | {
|
|
615
|
-
valid: true;
|
|
616
|
-
} | {
|
|
617
|
-
sparse: true;
|
|
618
|
-
};
|
|
426
|
+
string: string[] | Partial<TypeObject>;
|
|
427
|
+
number: string[] | Partial<TypeObject>;
|
|
428
|
+
bigint: string[] | Partial<TypeObject>;
|
|
429
|
+
object: string[] | Partial<TypeObject>;
|
|
430
|
+
map: string[] | Partial<TypeObject>;
|
|
431
|
+
set: string[] | Partial<TypeObject>;
|
|
432
|
+
false: string[] | Partial<TypeObject>;
|
|
433
|
+
error: string[] | Partial<TypeObject>;
|
|
434
|
+
file: string[] | Partial<TypeObject>;
|
|
435
|
+
arraybuffer: string[] | Partial<TypeObject>;
|
|
436
|
+
date: string[] | Partial<TypeObject>;
|
|
437
|
+
null: string[] | Partial<TypeObject>;
|
|
438
|
+
regexp: string[] | Partial<TypeObject>;
|
|
439
|
+
array: string[] | Partial<TypeObject>;
|
|
440
|
+
true: string[] | Partial<TypeObject>;
|
|
441
|
+
arrayReference: string[] | Partial<TypeObject>;
|
|
442
|
+
objectReference: string[] | Partial<TypeObject>;
|
|
443
|
+
userObject: string[] | Partial<TypeObject>;
|
|
444
|
+
undef: string[] | Partial<TypeObject>;
|
|
445
|
+
SpecialRealNumber: string[] | Partial<TypeObject>;
|
|
446
|
+
SpecialNumber: string[] | Partial<TypeObject>;
|
|
447
|
+
BooleanObject: string[] | Partial<TypeObject>;
|
|
448
|
+
NumberObject: string[] | Partial<TypeObject>;
|
|
449
|
+
StringObject: string[] | Partial<TypeObject>;
|
|
450
|
+
filelist: string[] | Partial<TypeObject>;
|
|
451
|
+
blobHTML: string[] | Partial<TypeObject>;
|
|
452
|
+
arraybufferview: string[] | Partial<TypeObject>;
|
|
453
|
+
dataview: string[] | Partial<TypeObject>;
|
|
454
|
+
imagedata: string[] | Partial<TypeObject>;
|
|
455
|
+
imagebitmap: string[] | Partial<TypeObject>;
|
|
456
|
+
int8array: string[] | Partial<TypeObject>;
|
|
457
|
+
uint8array: string[] | Partial<TypeObject>;
|
|
458
|
+
uint8clampedarray: string[] | Partial<TypeObject>;
|
|
459
|
+
int16array: string[] | Partial<TypeObject>;
|
|
460
|
+
uint16array: string[] | Partial<TypeObject>;
|
|
461
|
+
int32array: string[] | Partial<TypeObject>;
|
|
462
|
+
uint32array: string[] | Partial<TypeObject>;
|
|
463
|
+
float32array: string[] | Partial<TypeObject>;
|
|
464
|
+
float64array: string[] | Partial<TypeObject>;
|
|
465
|
+
IntlCollator: string[] | Partial<TypeObject>;
|
|
466
|
+
IntlDateTimeFormat: string[] | Partial<TypeObject>;
|
|
467
|
+
IntlNumberFormat: string[] | Partial<TypeObject>;
|
|
468
|
+
ValidDate: string[] | Partial<TypeObject>;
|
|
469
|
+
arrayNonindexKeys: string[] | Partial<TypeObject>;
|
|
470
|
+
errors: string[] | Partial<TypeObject>;
|
|
619
471
|
};
|
|
620
472
|
getTypeForRoot: GetTypeForRoot;
|
|
621
473
|
getValueForRoot: GetValueForRoot;
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.js"],"names":[],"mappings":"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"}
|
package/dist/utils/dialogs.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export type Locale = {
|
|
|
5
5
|
declare namespace dialogs {
|
|
6
6
|
let localeStrings: Locale;
|
|
7
7
|
/**
|
|
8
|
-
* @param {Locale} [locale
|
|
8
|
+
* @param {Locale} [locale]
|
|
9
9
|
* @returns {void}
|
|
10
10
|
*/
|
|
11
11
|
function setLocale(locale?: Locale | undefined): void;
|
|
@@ -13,7 +13,7 @@ declare namespace dialogs {
|
|
|
13
13
|
* @typedef {object} MakeDialogArgs
|
|
14
14
|
* @property {import('jamilih').JamilihAttributes} [atts={}]
|
|
15
15
|
* @property {import('jamilih').JamilihChildren} [children=[]]
|
|
16
|
-
* @property {import('jamilih').EventHandler} [close]
|
|
16
|
+
* @property {import('jamilih').EventHandler|boolean} [close]
|
|
17
17
|
* @property {boolean} [remove=true]
|
|
18
18
|
*/
|
|
19
19
|
/**
|
|
@@ -23,40 +23,40 @@ declare namespace dialogs {
|
|
|
23
23
|
function makeDialog({ atts, children, close, remove }?: {
|
|
24
24
|
atts?: import("jamilih").JamilihAttributes | undefined;
|
|
25
25
|
children?: import("jamilih").JamilihChildren | undefined;
|
|
26
|
-
close?: import("jamilih").EventHandler | undefined;
|
|
26
|
+
close?: boolean | import("jamilih").EventHandler | undefined;
|
|
27
27
|
remove?: boolean | undefined;
|
|
28
28
|
}): HTMLDialogElement;
|
|
29
29
|
/**
|
|
30
30
|
* @typedef {object} MakeCancelArgs
|
|
31
31
|
* @property {(
|
|
32
32
|
* info: {e: Event, dialog: HTMLDialogElement}
|
|
33
|
-
* ) => boolean} cancel
|
|
34
|
-
* @property {string} cancelClass
|
|
35
|
-
* @property {string} submitClass
|
|
36
|
-
* @property {...MakeDialogArgs} args
|
|
33
|
+
* ) => boolean} [cancel]
|
|
34
|
+
* @property {string} [cancelClass]
|
|
35
|
+
* @property {string} [submitClass]
|
|
36
|
+
* @property {...MakeDialogArgs} [args]
|
|
37
37
|
*/
|
|
38
38
|
/**
|
|
39
39
|
* @param {MakeCancelArgs} cfg
|
|
40
40
|
* @returns {HTMLDialogElement}
|
|
41
41
|
*/
|
|
42
42
|
function makeCancelDialog({ cancel, cancelClass, submitClass, ...args }: {
|
|
43
|
-
cancel
|
|
43
|
+
cancel?: ((info: {
|
|
44
44
|
e: Event;
|
|
45
45
|
dialog: HTMLDialogElement;
|
|
46
|
-
}) => boolean;
|
|
47
|
-
cancelClass
|
|
48
|
-
submitClass
|
|
49
|
-
args
|
|
46
|
+
}) => boolean) | undefined;
|
|
47
|
+
cancelClass?: string | undefined;
|
|
48
|
+
submitClass?: string | undefined;
|
|
49
|
+
args?: {
|
|
50
50
|
atts?: import("jamilih").JamilihAttributes | undefined;
|
|
51
51
|
children?: import("jamilih").JamilihChildren | undefined;
|
|
52
|
-
close?: import("jamilih").EventHandler | undefined;
|
|
52
|
+
close?: boolean | import("jamilih").EventHandler | undefined;
|
|
53
53
|
remove?: boolean | undefined;
|
|
54
54
|
} | undefined;
|
|
55
55
|
}): HTMLDialogElement;
|
|
56
56
|
/**
|
|
57
57
|
* @param {object} cfg
|
|
58
58
|
* @param {(info: {e: Event, dialog: HTMLDialogElement}) => void} cfg.submit
|
|
59
|
-
* @param {string} [cfg.submitClass
|
|
59
|
+
* @param {string} [cfg.submitClass]
|
|
60
60
|
* @param {MakeCancelArgs} [cfg.args]
|
|
61
61
|
* @returns {HTMLDialogElement}
|
|
62
62
|
*/
|
|
@@ -67,16 +67,16 @@ declare namespace dialogs {
|
|
|
67
67
|
}) => void;
|
|
68
68
|
submitClass?: string | undefined;
|
|
69
69
|
args?: {
|
|
70
|
-
cancel
|
|
70
|
+
cancel?: ((info: {
|
|
71
71
|
e: Event;
|
|
72
72
|
dialog: HTMLDialogElement;
|
|
73
|
-
}) => boolean;
|
|
74
|
-
cancelClass
|
|
75
|
-
submitClass
|
|
76
|
-
args
|
|
73
|
+
}) => boolean) | undefined;
|
|
74
|
+
cancelClass?: string | undefined;
|
|
75
|
+
submitClass?: string | undefined;
|
|
76
|
+
args?: {
|
|
77
77
|
atts?: import("jamilih").JamilihAttributes | undefined;
|
|
78
78
|
children?: import("jamilih").JamilihChildren | undefined;
|
|
79
|
-
close?: import("jamilih").EventHandler | undefined;
|
|
79
|
+
close?: boolean | import("jamilih").EventHandler | undefined;
|
|
80
80
|
remove?: boolean | undefined;
|
|
81
81
|
} | undefined;
|
|
82
82
|
} | undefined;
|
|
@@ -94,9 +94,9 @@ declare namespace dialogs {
|
|
|
94
94
|
}): Promise<void>;
|
|
95
95
|
/**
|
|
96
96
|
* @param {object} cfg
|
|
97
|
-
* @param {import('jamilih').JamilihAttributes} [cfg.atts
|
|
97
|
+
* @param {import('jamilih').JamilihAttributes} [cfg.atts]
|
|
98
98
|
* @param {string|{message: string}} cfg.message
|
|
99
|
-
* @param {string} [cfg.submitClass
|
|
99
|
+
* @param {string} [cfg.submitClass]
|
|
100
100
|
*/
|
|
101
101
|
function confirm({ atts, message, submitClass }: {
|
|
102
102
|
atts?: import("jamilih").JamilihAttributes | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dialogs.d.ts","sourceRoot":"","sources":["../../src/utils/dialogs.js"],"names":[],"mappings":";;;;;uBAiBa,MAAM;IAEjB;;;OAGG;IACH,sDAEC;IAED;;;;;;OAMG;IACH;;;OAGG;IACH;;;;;0BAmBC;IACD;;;;;;;;OAQG;IACH;;;OAGG;IACH;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"dialogs.d.ts","sourceRoot":"","sources":["../../src/utils/dialogs.js"],"names":[],"mappings":";;;;;uBAiBa,MAAM;IAEjB;;;OAGG;IACH,sDAEC;IAED;;;;;;OAMG;IACH;;;OAGG;IACH;;;;;0BAmBC;IACD;;;;;;;;OAQG;IACH;;;OAGG;IACH;;;;;;;;;;;;;0BA0BC;IACD;;;;;;OAMG;IACH;;;;;;;;;;;;;;;;;;;;0BAiBC;IACD;;;;;;OAMG;IACH;;;sBAiBC;IACD;;;;;OAKG;IACH;;;;;;qBAwBC"}
|
|
@@ -14,11 +14,11 @@ export function $(sel: string): HTMLElement | null;
|
|
|
14
14
|
*/
|
|
15
15
|
export function $$(sel: string): HTMLElement[];
|
|
16
16
|
/**
|
|
17
|
-
* @param {HTMLElement|string} el
|
|
17
|
+
* @param {Element|HTMLElement|string} el
|
|
18
18
|
* @param {string} descendentsSel
|
|
19
19
|
* @returns {HTMLElement|null}
|
|
20
20
|
*/
|
|
21
|
-
export function $e(el: HTMLElement | string, descendentsSel: string): HTMLElement | null;
|
|
21
|
+
export function $e(el: Element | HTMLElement | string, descendentsSel: string): HTMLElement | null;
|
|
22
22
|
/**
|
|
23
23
|
* @param {HTMLElement|string} el
|
|
24
24
|
* @param {string} descendentsSel
|
|
@@ -35,21 +35,21 @@ declare const nbsp: " ";
|
|
|
35
35
|
declare const upArrow: "↑";
|
|
36
36
|
declare const downArrow: "↓";
|
|
37
37
|
/**
|
|
38
|
-
* @param {Node} node
|
|
38
|
+
* @param {Node|string} node
|
|
39
39
|
* @returns {void}
|
|
40
40
|
*/
|
|
41
|
-
declare function removeChildren(node: Node): void;
|
|
41
|
+
declare function removeChildren(node: Node | string): void;
|
|
42
42
|
/**
|
|
43
43
|
* @param {HTMLElement|string} sel
|
|
44
44
|
* @returns {void}
|
|
45
45
|
*/
|
|
46
46
|
declare function removeIfExists(sel: HTMLElement | string): void;
|
|
47
47
|
/**
|
|
48
|
-
* @param {HTMLElement} el
|
|
48
|
+
* @param {HTMLElement|string} el
|
|
49
49
|
* @param {string|string[]} selectors
|
|
50
50
|
* @returns {HTMLElement[]}
|
|
51
51
|
*/
|
|
52
|
-
declare function filterChildElements(el: HTMLElement, selectors: string | string[]): HTMLElement[];
|
|
52
|
+
declare function filterChildElements(el: HTMLElement | string, selectors: string | string[]): HTMLElement[];
|
|
53
53
|
/**
|
|
54
54
|
* @param {string} s
|
|
55
55
|
* @returns {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"templateUtils.d.ts","sourceRoot":"","sources":["../../src/utils/templateUtils.js"],"names":[],"mappings":";;;;;
|
|
1
|
+
{"version":3,"file":"templateUtils.d.ts","sourceRoot":"","sources":["../../src/utils/templateUtils.js"],"names":[],"mappings":";;;;;AAKA;;;GAGG;AACH,uBAHW,MAAM,GACJ,WAAW,GAAC,IAAI,CAEiB;AAE9C;;;GAGG;AACH,wBAHW,MAAM,GACJ,WAAW,EAAE,CAIvB;AAEH;;;;GAIG;AACH,uBAJW,OAAO,GAAC,WAAW,GAAC,MAAM,kBAC1B,MAAM,GACJ,WAAW,GAAC,IAAI,CAQ5B;AAED;;;;GAIG;AACH,wBAJW,WAAW,GAAC,MAAM,kBAClB,MAAM,GACJ,WAAW,EAAE,CAUzB;;;;;;;AA7CD,wBAAsB;AACtB,2BAAyB;AACzB,6BAA2B;AA6C3B;;;GAGG;AACH,sCAHW,IAAI,GAAC,MAAM,GACT,IAAI,CAUhB;AAED;;;GAGG;AACH,qCAHW,WAAW,GAAC,MAAM,GAChB,IAAI,CAOhB;AAED;;;;GAIG;AACH,yCAJW,WAAW,GAAC,MAAM,aAClB,MAAM,GAAC,MAAM,EAAE,GACb,WAAW,EAAE,CAgCzB;AAED;;;GAGG;AACH,gCAHW,MAAM,GACJ,MAAM,CAIlB"}
|
package/dist/vendor-imports.d.ts
CHANGED