mol_plot_all 1.2.572 → 1.2.574

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 CHANGED
@@ -772,7 +772,7 @@ declare namespace $ {
772
772
  dom_name_space(): string;
773
773
  font_size(): number;
774
774
  font_family(): string;
775
- style_size(): {};
775
+ style_size(): Record<string, any>;
776
776
  }
777
777
  }
778
778
 
@@ -785,7 +785,7 @@ declare namespace $ {
785
785
 
786
786
  declare namespace $.$$ {
787
787
  class $mol_svg extends $.$mol_svg {
788
- computed_style(): CSSStyleDeclaration;
788
+ computed_style(): Record<string, any>;
789
789
  font_size(): number;
790
790
  font_family(): any;
791
791
  }
@@ -794,10 +794,7 @@ declare namespace $.$$ {
794
794
  declare namespace $ {
795
795
  class $mol_svg_root extends $mol_svg {
796
796
  dom_name(): string;
797
- attr(): {
798
- viewBox: string;
799
- preserveAspectRatio: string;
800
- };
797
+ attr(): Record<string, any>;
801
798
  view_box(): string;
802
799
  aspect(): string;
803
800
  }
@@ -895,12 +892,8 @@ declare namespace $ {
895
892
  class $mol_plot_graph extends $mol_svg_group {
896
893
  series_x(): readonly number[];
897
894
  series_y(): readonly number[];
898
- attr(): {
899
- mol_plot_graph_type: string;
900
- };
901
- style(): {
902
- color: string;
903
- };
895
+ attr(): Record<string, any>;
896
+ style(): Record<string, any>;
904
897
  viewport(): $mol_vector_2d<$mol_vector_range<number>>;
905
898
  shift(): readonly number[];
906
899
  scale(): readonly number[];
@@ -932,12 +925,8 @@ declare namespace $ {
932
925
  hint(): string;
933
926
  }
934
927
  class $mol_plot_graph_sample extends $mol_view {
935
- attr(): {
936
- mol_plot_graph_type: string;
937
- };
938
- style(): {
939
- color: string;
940
- };
928
+ attr(): Record<string, any>;
929
+ style(): Record<string, any>;
941
930
  type(): string;
942
931
  color(): string;
943
932
  }
@@ -990,17 +979,8 @@ declare namespace $ {
990
979
  draw_start(event?: any): any;
991
980
  draw(event?: any): any;
992
981
  draw_end(event?: any): any;
993
- style(): {
994
- "touch-action": string;
995
- "overscroll-behavior": string;
996
- };
997
- event(): {
998
- pointerdown: (event?: any) => any;
999
- pointermove: (event?: any) => any;
1000
- pointerup: (event?: any) => any;
1001
- pointerleave: (event?: any) => any;
1002
- wheel: (event?: any) => any;
1003
- };
982
+ style(): Record<string, any>;
983
+ event(): Record<string, any>;
1004
984
  event_start(event?: any): any;
1005
985
  event_move(event?: any): any;
1006
986
  event_end(event?: any): any;
@@ -1124,10 +1104,7 @@ declare namespace $ {
1124
1104
  spacing(): number;
1125
1105
  color_fill(): string;
1126
1106
  dom_name(): string;
1127
- attr(): {
1128
- d: string;
1129
- mol_plot_graph_type: string;
1130
- };
1107
+ attr(): Record<string, any>;
1131
1108
  sub(): readonly any[];
1132
1109
  Sample(): $mol_plot_graph_sample;
1133
1110
  curve(): string;
@@ -1168,9 +1145,7 @@ declare namespace $.$$ {
1168
1145
  declare namespace $ {
1169
1146
  class $mol_svg_path extends $mol_svg {
1170
1147
  dom_name(): string;
1171
- attr(): {
1172
- d: string;
1173
- };
1148
+ attr(): Record<string, any>;
1174
1149
  geometry(): string;
1175
1150
  }
1176
1151
  }
@@ -1179,10 +1154,7 @@ declare namespace $ {
1179
1154
  class $mol_plot_dot extends $mol_plot_graph {
1180
1155
  points_max(): number;
1181
1156
  aspect(): number;
1182
- style(): {
1183
- "stroke-width": number;
1184
- color: string;
1185
- };
1157
+ style(): Record<string, any>;
1186
1158
  sub(): readonly any[];
1187
1159
  Sample(): $mol_plot_graph_sample;
1188
1160
  diameter(): number;
@@ -1222,11 +1194,7 @@ declare namespace $ {
1222
1194
  level_aspect(): number;
1223
1195
  }
1224
1196
  class $mol_plot_map_heat_level extends $mol_plot_dot {
1225
- style(): {
1226
- opacity: string;
1227
- "stroke-width": number;
1228
- color: string;
1229
- };
1197
+ style(): Record<string, any>;
1230
1198
  opacity(): string;
1231
1199
  }
1232
1200
  }
@@ -1248,10 +1216,7 @@ declare namespace $ {
1248
1216
 
1249
1217
  declare namespace $ {
1250
1218
  class $mol_plot_bar extends $mol_plot_graph {
1251
- style(): {
1252
- "stroke-width": string;
1253
- color: string;
1254
- };
1219
+ style(): Record<string, any>;
1255
1220
  sub(): readonly any[];
1256
1221
  Sample(): $mol_plot_graph_sample;
1257
1222
  stroke_width(): string;
@@ -1294,11 +1259,7 @@ declare namespace $ {
1294
1259
  class $mol_svg_text extends $mol_svg {
1295
1260
  dom_name(): string;
1296
1261
  pos(): readonly any[];
1297
- attr(): {
1298
- x: string;
1299
- y: string;
1300
- "text-anchor": string;
1301
- };
1262
+ attr(): Record<string, any>;
1302
1263
  sub(): readonly any[];
1303
1264
  pos_x(): string;
1304
1265
  pos_y(): string;
@@ -1321,12 +1282,7 @@ declare namespace $ {
1321
1282
  class $mol_svg_rect extends $mol_svg {
1322
1283
  dom_name(): string;
1323
1284
  pos(): readonly any[];
1324
- attr(): {
1325
- width: string;
1326
- height: string;
1327
- x: string;
1328
- y: string;
1329
- };
1285
+ attr(): Record<string, any>;
1330
1286
  width(): string;
1331
1287
  height(): string;
1332
1288
  pos_x(): string;