mol_plot_all 1.2.702 → 1.2.704
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.js
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
|
;
|