mol_dump_lib 0.0.849 → 0.0.850
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 +1 -8
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.js +3 -12
- package/node.js.map +1 -1
- package/node.mjs +3 -12
- package/node.test.js +3 -12
- package/node.test.js.map +1 -1
- package/node.view.tree +1 -7
- package/package.json +1 -1
- package/web.d.ts +1 -8
- package/web.d.ts.map +1 -1
- package/web.deps.json +1 -1
- package/web.js +3 -12
- package/web.js.map +1 -1
- package/web.mjs +3 -12
- package/web.view.tree +1 -7
package/web.mjs
CHANGED
|
@@ -4925,20 +4925,11 @@ var $;
|
|
|
4925
4925
|
|
|
4926
4926
|
;
|
|
4927
4927
|
($.$mol_speck) = class $mol_speck extends ($.$mol_view) {
|
|
4928
|
-
theme(){
|
|
4929
|
-
return "$mol_theme_accent";
|
|
4930
|
-
}
|
|
4931
4928
|
value(){
|
|
4932
4929
|
return null;
|
|
4933
4930
|
}
|
|
4934
|
-
|
|
4935
|
-
return
|
|
4936
|
-
}
|
|
4937
|
-
attr(){
|
|
4938
|
-
return {...(super.attr()), "mol_theme": (this.theme())};
|
|
4939
|
-
}
|
|
4940
|
-
style(){
|
|
4941
|
-
return {...(super.style()), "minHeight": "1em"};
|
|
4931
|
+
theme(){
|
|
4932
|
+
return "$mol_theme_accent";
|
|
4942
4933
|
}
|
|
4943
4934
|
sub(){
|
|
4944
4935
|
return [(this.value())];
|
|
@@ -4970,7 +4961,7 @@ var $;
|
|
|
4970
4961
|
"use strict";
|
|
4971
4962
|
var $;
|
|
4972
4963
|
(function ($) {
|
|
4973
|
-
$mol_style_attach("mol/speck/speck.view.css", "[mol_speck] {\n\tfont-size: .75rem;\n\tborder-radius: 1rem;\n\tmargin: -0.5rem -0.2rem;\n\talign-self: flex-start;\n\tmin-height: 1em;\n\tvertical-align: sub;\n\tpadding: 0 .2rem;\n\tposition: absolute;\n\tz-index: var(--mol_layer_speck);\n\ttext-align: center;\n\tline-height: .9;\n\tdisplay: inline-block;\n\twhite-space: nowrap;\n\ttext-overflow: ellipsis;\n\tuser-select: none;\n\tbox-shadow: 0 0 3px rgba(0,0,0,.5);\n}\n");
|
|
4964
|
+
$mol_style_attach("mol/speck/speck.view.css", "[mol_speck] {\n\tfont-size: .75rem;\n\tborder-radius: 1rem;\n\tmargin: -0.5rem -0.2rem;\n\talign-self: flex-start;\n\tmin-height: 1em;\n\tmin-width: .75rem;\n\tvertical-align: sub;\n\tpadding: 0 .2rem;\n\tposition: absolute;\n\tz-index: var(--mol_layer_speck);\n\ttext-align: center;\n\tline-height: .9;\n\tdisplay: inline-block;\n\twhite-space: nowrap;\n\ttext-overflow: ellipsis;\n\tuser-select: none;\n\tbox-shadow: 0 0 3px rgba(0,0,0,.5);\n}\n");
|
|
4974
4965
|
})($ || ($ = {}));
|
|
4975
4966
|
|
|
4976
4967
|
;
|
package/web.view.tree
CHANGED