mol_plot_all 1.2.703 → 1.2.705
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.d.ts +7 -21
- package/node.deps.json +1 -1
- package/node.js +35 -23
- package/node.js.map +1 -1
- package/node.mjs +35 -23
- package/node.test.js +35 -23
- package/node.test.js.map +1 -1
- package/package.json +2 -1
- package/web.d.ts +7 -21
- package/web.deps.json +1 -1
- package/web.js +35 -23
- package/web.js.map +1 -1
- package/web.mjs +35 -23
package/node.mjs
CHANGED
|
@@ -2523,21 +2523,34 @@ var $;
|
|
|
2523
2523
|
"use strict";
|
|
2524
2524
|
var $;
|
|
2525
2525
|
(function ($) {
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2526
|
+
function $mol_style_prop(prefix, postfixes) {
|
|
2527
|
+
const record = postfixes.reduce((record_obj, postfix) => {
|
|
2528
|
+
record_obj[postfix] = $mol_style_func.vary(`--${prefix}_${postfix}`);
|
|
2529
|
+
return record_obj;
|
|
2530
|
+
}, {});
|
|
2531
|
+
return record;
|
|
2532
|
+
}
|
|
2533
|
+
$.$mol_style_prop = $mol_style_prop;
|
|
2534
|
+
})($ || ($ = {}));
|
|
2535
|
+
//mol/style/prop/prop.ts
|
|
2536
|
+
;
|
|
2537
|
+
"use strict";
|
|
2538
|
+
var $;
|
|
2539
|
+
(function ($) {
|
|
2540
|
+
$.$mol_theme = $mol_style_prop('mol_theme', [
|
|
2541
|
+
'back',
|
|
2542
|
+
'hover',
|
|
2543
|
+
'card',
|
|
2544
|
+
'current',
|
|
2545
|
+
'special',
|
|
2546
|
+
'text',
|
|
2547
|
+
'control',
|
|
2548
|
+
'shade',
|
|
2549
|
+
'line',
|
|
2550
|
+
'focus',
|
|
2551
|
+
'field',
|
|
2552
|
+
'image',
|
|
2553
|
+
]);
|
|
2541
2554
|
})($ || ($ = {}));
|
|
2542
2555
|
//mol/theme/theme.ts
|
|
2543
2556
|
;
|
|
@@ -2551,14 +2564,13 @@ var $;
|
|
|
2551
2564
|
"use strict";
|
|
2552
2565
|
var $;
|
|
2553
2566
|
(function ($) {
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
};
|
|
2567
|
+
$.$mol_gap = $mol_style_prop('mol_gap', [
|
|
2568
|
+
'block',
|
|
2569
|
+
'text',
|
|
2570
|
+
'round',
|
|
2571
|
+
'space',
|
|
2572
|
+
'blur',
|
|
2573
|
+
]);
|
|
2562
2574
|
})($ || ($ = {}));
|
|
2563
2575
|
//mol/gap/gap.ts
|
|
2564
2576
|
;
|
package/node.test.js
CHANGED
|
@@ -2515,21 +2515,34 @@ var $;
|
|
|
2515
2515
|
"use strict";
|
|
2516
2516
|
var $;
|
|
2517
2517
|
(function ($) {
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2518
|
+
function $mol_style_prop(prefix, postfixes) {
|
|
2519
|
+
const record = postfixes.reduce((record_obj, postfix) => {
|
|
2520
|
+
record_obj[postfix] = $mol_style_func.vary(`--${prefix}_${postfix}`);
|
|
2521
|
+
return record_obj;
|
|
2522
|
+
}, {});
|
|
2523
|
+
return record;
|
|
2524
|
+
}
|
|
2525
|
+
$.$mol_style_prop = $mol_style_prop;
|
|
2526
|
+
})($ || ($ = {}));
|
|
2527
|
+
//mol/style/prop/prop.ts
|
|
2528
|
+
;
|
|
2529
|
+
"use strict";
|
|
2530
|
+
var $;
|
|
2531
|
+
(function ($) {
|
|
2532
|
+
$.$mol_theme = $mol_style_prop('mol_theme', [
|
|
2533
|
+
'back',
|
|
2534
|
+
'hover',
|
|
2535
|
+
'card',
|
|
2536
|
+
'current',
|
|
2537
|
+
'special',
|
|
2538
|
+
'text',
|
|
2539
|
+
'control',
|
|
2540
|
+
'shade',
|
|
2541
|
+
'line',
|
|
2542
|
+
'focus',
|
|
2543
|
+
'field',
|
|
2544
|
+
'image',
|
|
2545
|
+
]);
|
|
2533
2546
|
})($ || ($ = {}));
|
|
2534
2547
|
//mol/theme/theme.ts
|
|
2535
2548
|
;
|
|
@@ -2543,14 +2556,13 @@ var $;
|
|
|
2543
2556
|
"use strict";
|
|
2544
2557
|
var $;
|
|
2545
2558
|
(function ($) {
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
};
|
|
2559
|
+
$.$mol_gap = $mol_style_prop('mol_gap', [
|
|
2560
|
+
'block',
|
|
2561
|
+
'text',
|
|
2562
|
+
'round',
|
|
2563
|
+
'space',
|
|
2564
|
+
'blur',
|
|
2565
|
+
]);
|
|
2554
2566
|
})($ || ($ = {}));
|
|
2555
2567
|
//mol/gap/gap.ts
|
|
2556
2568
|
;
|