mol_dump_lib 0.0.149 → 0.0.150
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/node.deps.json +1 -1
- package/node.js +5 -1
- package/node.js.map +1 -1
- package/node.mjs +5 -1
- package/node.test.js +6 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +26 -1
- package/web.deps.json +1 -1
- package/web.js +70 -4
- package/web.js.map +1 -1
- package/web.mjs +70 -4
- package/web.test.js +1 -53
- package/web.test.js.map +1 -1
package/node.js
CHANGED
|
@@ -888,11 +888,15 @@ var $;
|
|
|
888
888
|
(function ($) {
|
|
889
889
|
$.$mol_key_store = new WeakMap();
|
|
890
890
|
function $mol_key(value) {
|
|
891
|
+
if (typeof value === 'bigint')
|
|
892
|
+
return value.toString() + 'n';
|
|
891
893
|
if (!value)
|
|
892
894
|
return JSON.stringify(value);
|
|
893
895
|
if (typeof value !== 'object' && typeof value !== 'function')
|
|
894
896
|
return JSON.stringify(value);
|
|
895
897
|
return JSON.stringify(value, (field, value) => {
|
|
898
|
+
if (typeof value === 'bigint')
|
|
899
|
+
return value.toString() + 'n';
|
|
896
900
|
if (!value)
|
|
897
901
|
return value;
|
|
898
902
|
if (typeof value !== 'object' && typeof value !== 'function')
|
|
@@ -6187,7 +6191,7 @@ var $;
|
|
|
6187
6191
|
"use strict";
|
|
6188
6192
|
var $;
|
|
6189
6193
|
(function ($) {
|
|
6190
|
-
$mol_style_attach("mol/check/check.css", "[mol_check] {\n\tflex: 0 0 auto;\n\tjustify-content: flex-start;\n\talign-content: center;\n\
|
|
6194
|
+
$mol_style_attach("mol/check/check.css", "[mol_check] {\n\tflex: 0 0 auto;\n\tjustify-content: flex-start;\n\talign-content: center;\n\t/* align-items: flex-start; */\n\tborder: none;\n\tfont-weight: inherit;\n\tbox-shadow: none;\n\ttext-align: left;\n\tdisplay: inline-flex;\n\tflex-wrap: nowrap;\n}\n\n[mol_check_title] {\n\tflex-shrink: 1;\n}\n");
|
|
6191
6195
|
})($ || ($ = {}));
|
|
6192
6196
|
//mol/check/-css/check.css.ts
|
|
6193
6197
|
;
|