@zhongguo168a/yxeditor-common 0.0.18 → 0.0.20

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/dist/index.d.ts CHANGED
@@ -893,28 +893,19 @@ declare class List<T = any> {
893
893
  private _onDeleteCaller;
894
894
  }
895
895
 
896
- interface IModule {
897
- get controllers(): ControllerDict;
898
- }
899
-
900
896
  interface IController {
901
897
  get name(): string;
902
- get module(): IModule;
903
- init(core: IModule, ...args: any): any;
904
898
  enable(): any;
905
899
  disable(): any;
906
900
  dispose(): any;
907
901
  }
908
902
  declare class Controller {
909
903
  constructor(name: string);
910
- init(module: IModule, ...args: any[]): void;
911
904
  enable(): void;
912
905
  disable(): void;
913
906
  dispose(): void;
914
907
  get name(): string;
915
- get module(): IModule;
916
908
  get isEnable(): boolean;
917
- protected _module: IModule;
918
909
  protected _name: string;
919
910
  protected _enabled: boolean;
920
911
  }
@@ -926,11 +917,13 @@ declare class ControllerDict extends Dictionary<string, IController> {
926
917
  disableAll(): void;
927
918
  }
928
919
  declare class ControllerRepo extends ControllerDict {
929
- constructor(mod: IModule);
920
+ constructor();
930
921
  add(controller: IController): void;
931
922
  remove(name: string): void;
932
923
  dispose(): void;
933
- protected _mod: IModule;
924
+ }
925
+
926
+ interface IModule {
934
927
  }
935
928
 
936
929
  interface IModel {
@@ -1026,68 +1019,12 @@ declare class UIObjectDict extends Dictionary<string, any | List> {
1026
1019
  }
1027
1020
  declare var uidict: UIObjectDict;
1028
1021
 
1029
- /**
1030
- * 视图管理器
1031
- * 打开一个视图的时候,可能会听过加载资源,读取数据,调整布局,切换特效等处理,所以使用视图模式封装视图打开关闭的逻辑
1032
- */
1033
- declare class PageLayer {
1034
- name: string;
1035
- constructor(name: string);
1036
- close(): void;
1037
- /**
1038
- * 当前的页面
1039
- */
1040
- currentPage: Page;
1041
- }
1042
-
1043
- declare class PageList extends List<Page> {
1044
- }
1045
- declare class PageRepo extends PageList {
1046
- constructor(module: IModule);
1047
- openByString(route: string): Page;
1048
- /**
1049
- * 打开页面
1050
- * 一个路由代表一个页面
1051
- * @param route
1052
- */
1053
- open(route: Route): Page;
1054
- close(route: Route): void;
1055
- /**
1056
- * 如果页面存在,则刷新
1057
- * @param route
1058
- */
1059
- refresh(route: Route): void;
1060
- /**
1061
- * 历史记录
1062
- */
1063
- getHistory(): Route[];
1064
- back(): void;
1065
- getByRoute(route: Route): Page;
1066
- listByTags(tags: string[]): PageList;
1067
- getLayerMain(): PageLayer;
1068
- /**
1069
- * @param name
1070
- */
1071
- getLayer(name: string): PageLayer;
1072
- protected getOrNewLayer(name: string): PageLayer;
1073
- getController(route: Route): PageController;
1074
- registerController(ctrl: PageController): void;
1075
- get objectDict(): UIObjectDict;
1076
- protected _objectDict: UIObjectDict;
1077
- protected _indexLayer: {};
1078
- protected _indexRoute: {};
1079
- protected _history: Route[];
1080
- protected _ctrlDict: ControllerDict;
1081
- protected _module: IModule;
1082
- }
1083
-
1084
1022
  declare class PageController extends Controller {
1085
1023
  constructor(routeName: string, config?: {
1086
1024
  layer?: string;
1087
1025
  tags?: string[];
1088
1026
  enableHistory?: boolean;
1089
1027
  });
1090
- init(module: IModule, pageRepo: PageRepo): void;
1091
1028
  open(...args: any[]): void;
1092
1029
  close(): void;
1093
1030
  protected onOpening(page: Page): void;
@@ -1114,7 +1051,6 @@ declare class PageController extends Controller {
1114
1051
  protected _lastPage: Page;
1115
1052
  protected _tags: {};
1116
1053
  protected _layer: string;
1117
- protected _pagerepo: PageRepo;
1118
1054
  }
1119
1055
 
1120
1056
  declare enum PageState {
@@ -1164,7 +1100,7 @@ declare class Page extends EventManager {
1164
1100
  protected _waitCloseComplete: boolean;
1165
1101
  get controller(): PageController;
1166
1102
  get route(): Route;
1167
- cache: {};
1103
+ datas: {};
1168
1104
  tags: {};
1169
1105
  layer: string;
1170
1106
  state: PageState;
@@ -1172,6 +1108,61 @@ declare class Page extends EventManager {
1172
1108
  protected _route: Route;
1173
1109
  }
1174
1110
 
1111
+ /**
1112
+ * 视图管理器
1113
+ * 打开一个视图的时候,可能会听过加载资源,读取数据,调整布局,切换特效等处理,所以使用视图模式封装视图打开关闭的逻辑
1114
+ */
1115
+ declare class PageLayer {
1116
+ name: string;
1117
+ constructor(name: string);
1118
+ close(): void;
1119
+ /**
1120
+ * 当前的页面
1121
+ */
1122
+ currentPage: Page;
1123
+ }
1124
+
1125
+ declare class PageList extends List<Page> {
1126
+ }
1127
+ declare class PageRepo extends PageList {
1128
+ constructor();
1129
+ openByString(route: string): Page;
1130
+ /**
1131
+ * 打开页面
1132
+ * 一个路由代表一个页面
1133
+ * @param route
1134
+ */
1135
+ open(route: Route): Page;
1136
+ close(route: Route): void;
1137
+ /**
1138
+ * 如果页面存在,则刷新
1139
+ * @param route
1140
+ */
1141
+ refresh(route: Route): void;
1142
+ /**
1143
+ * 历史记录
1144
+ */
1145
+ getHistory(): Route[];
1146
+ back(): void;
1147
+ getByRoute(route: Route): Page;
1148
+ listByTags(tags: string[]): PageList;
1149
+ getLayerMain(): PageLayer;
1150
+ /**
1151
+ * @param name
1152
+ */
1153
+ getLayer(name: string): PageLayer;
1154
+ protected getOrNewLayer(name: string): PageLayer;
1155
+ getController(name: string): PageController;
1156
+ registerController(ctrl: PageController): void;
1157
+ get objectDict(): UIObjectDict;
1158
+ protected _objectDict: UIObjectDict;
1159
+ protected _indexLayer: {};
1160
+ protected _indexRoute: {};
1161
+ protected _history: Route[];
1162
+ protected _ctrlDict: ControllerDict;
1163
+ }
1164
+ declare const pagerepo: PageRepo;
1165
+
1175
1166
  /**
1176
1167
  * 事件字符串分隔符
1177
1168
  */
@@ -2022,5 +2013,5 @@ declare class WidgetUtil {
2022
2013
  }
2023
2014
  declare var widgetutil: WidgetUtil;
2024
2015
 
2025
- export { ArrayUtil, AssetLoader, AssetURI, BitUtil, CallbackList, CameraUtil, CanvasUtil, Controller, ControllerDict, ControllerRepo, ConvertUtil, DictIterator, DictNode, DictSource, Dictionary, Dispatcher, DocUtil, ErrorUtil, EventItem, EventManager, EventUtil, Factory, FloatUtil, GeometryUtil, IdentUtil, LOGGER_EVENT, LinkError, List, ListIterator, ListNode, ListSource, Listener, LogLevel, LogManager, Logger, MapUtil, MathUtil, Model, NetUtil, Page, PageController, PageEvent, PageLayer, PageList, PageRepo, PageState, PathUtil, Pool, RandUtil, Route, SampleCallbackList, SamplePool, SamplePoolSet, ScaleUtil, SimpleModel, StringUtil, TimeUtil, Timer, TreeIterator, TreeNode, TreeNodePlugin, TreeRoot, TreeRootPlugin, TreeUtil, UIManager, UIObjectDict, UIPoolConfig, UISingleConfig, UIUtil, WidgetAlign, WidgetUtil, XAssetManager, XEvent, arrayutil, assetx, bitutil, camerautil, canvasutil, convertutil, docutil, errorutil, eventmgr, eventutil, floatutil, formatutil, geoutil, identutil, loadAtlas, logmgr, maputil, mathutil, netutil, parseAtlas, parsePlist, pathutil, randutil, resutil, scaleutil, stringutil, timer, timeutil, treeutil, uidict, uimgr, uiutil, widgetutil };
2016
+ export { ArrayUtil, AssetLoader, AssetURI, BitUtil, CallbackList, CameraUtil, CanvasUtil, Controller, ControllerDict, ControllerRepo, ConvertUtil, DictIterator, DictNode, DictSource, Dictionary, Dispatcher, DocUtil, ErrorUtil, EventItem, EventManager, EventUtil, Factory, FloatUtil, GeometryUtil, IdentUtil, LOGGER_EVENT, LinkError, List, ListIterator, ListNode, ListSource, Listener, LogLevel, LogManager, Logger, MapUtil, MathUtil, Model, NetUtil, Page, PageController, PageEvent, PageLayer, PageList, PageRepo, PageState, PathUtil, Pool, RandUtil, Route, SampleCallbackList, SamplePool, SamplePoolSet, ScaleUtil, SimpleModel, StringUtil, TimeUtil, Timer, TreeIterator, TreeNode, TreeNodePlugin, TreeRoot, TreeRootPlugin, TreeUtil, UIManager, UIObjectDict, UIPoolConfig, UISingleConfig, UIUtil, WidgetAlign, WidgetUtil, XAssetManager, XEvent, arrayutil, assetx, bitutil, camerautil, canvasutil, convertutil, docutil, errorutil, eventmgr, eventutil, floatutil, formatutil, geoutil, identutil, loadAtlas, logmgr, maputil, mathutil, netutil, pagerepo, parseAtlas, parsePlist, pathutil, randutil, resutil, scaleutil, stringutil, timer, timeutil, treeutil, uidict, uimgr, uiutil, widgetutil };
2026
2017
  export type { CreatorFunction, DisposeFunction, IController, IError, IEventManager, IExtend, IListItem, IModel, IModule, ITreeListItem, RecycleFunction };
package/dist/index.esm.js CHANGED
@@ -3348,9 +3348,6 @@ class Controller {
3348
3348
  this._enabled = false;
3349
3349
  this._name = name;
3350
3350
  }
3351
- init(module, ...args) {
3352
- this._module = module;
3353
- }
3354
3351
  enable() {
3355
3352
  if (this._enabled) {
3356
3353
  return;
@@ -3364,16 +3361,12 @@ class Controller {
3364
3361
  this._enabled = false;
3365
3362
  }
3366
3363
  dispose() {
3367
- this._module = null;
3368
3364
  this._enabled = false;
3369
3365
  this._name = "";
3370
3366
  }
3371
3367
  get name() {
3372
3368
  return this._name;
3373
3369
  }
3374
- get module() {
3375
- return this._module;
3376
- }
3377
3370
  get isEnable() {
3378
3371
  return this._enabled;
3379
3372
  }
@@ -3406,15 +3399,13 @@ class ControllerDict extends Dictionary {
3406
3399
  }
3407
3400
  }
3408
3401
  class ControllerRepo extends ControllerDict {
3409
- constructor(mod) {
3402
+ constructor() {
3410
3403
  super();
3411
- this._mod = mod;
3412
3404
  }
3413
3405
  add(controller) {
3414
3406
  if (this.get(controller.name)) {
3415
3407
  throw new Error("重复创建控制器: " + name);
3416
3408
  }
3417
- controller.init(this._mod);
3418
3409
  this.set(controller.name, controller);
3419
3410
  }
3420
3411
  remove(name) {
@@ -3569,7 +3560,7 @@ class Page extends EventManager {
3569
3560
  super();
3570
3561
  this._waitOpenComplete = false;
3571
3562
  this._waitCloseComplete = false;
3572
- this.cache = {};
3563
+ this.datas = {};
3573
3564
  this.tags = {};
3574
3565
  this.state = 0;
3575
3566
  this._controller = controller;
@@ -3775,6 +3766,124 @@ class Route {
3775
3766
  // 打开界面缓存的route对象
3776
3767
  Route.data = {};
3777
3768
 
3769
+ /**
3770
+ * 视图管理器
3771
+ * 打开一个视图的时候,可能会听过加载资源,读取数据,调整布局,切换特效等处理,所以使用视图模式封装视图打开关闭的逻辑
3772
+ */
3773
+ class PageLayer {
3774
+ constructor(name) {
3775
+ this.name = name;
3776
+ }
3777
+ close() {
3778
+ if (this.currentPage) {
3779
+ this.currentPage.controller.closeByRoute();
3780
+ }
3781
+ }
3782
+ }
3783
+
3784
+ class PageList extends List {
3785
+ }
3786
+ class PageRepo extends PageList {
3787
+ constructor() {
3788
+ super();
3789
+ this._indexLayer = {};
3790
+ this._indexRoute = {};
3791
+ this._history = [];
3792
+ this._ctrlDict = new ControllerDict();
3793
+ this.onSet(this, (item) => {
3794
+ this._indexRoute[item.route.path] = item;
3795
+ });
3796
+ this.onDelete(this, (item) => {
3797
+ delete this._indexRoute[item.route.path];
3798
+ });
3799
+ }
3800
+ openByString(route) {
3801
+ return this.open(new Route(route));
3802
+ }
3803
+ /**
3804
+ * 打开页面
3805
+ * 一个路由代表一个页面
3806
+ * @param route
3807
+ */
3808
+ open(route) {
3809
+ let controller = this.getController(route.path);
3810
+ if (!controller) {
3811
+ throw new Error("page controller no register: " + route.path);
3812
+ }
3813
+ return controller.openByRoute(route);
3814
+ }
3815
+ close(route) {
3816
+ let controller = this.getController(route.path);
3817
+ if (!controller) {
3818
+ throw new Error("page controller no register: " + route.path);
3819
+ }
3820
+ controller.closeByRoute(route);
3821
+ }
3822
+ /**
3823
+ * 如果页面存在,则刷新
3824
+ * @param route
3825
+ */
3826
+ refresh(route) {
3827
+ let page = this.getByRoute(route);
3828
+ if (page) {
3829
+ page.controller.refresh();
3830
+ }
3831
+ }
3832
+ /**
3833
+ * 历史记录
3834
+ */
3835
+ getHistory() {
3836
+ return this._history;
3837
+ }
3838
+ back() {
3839
+ this.open(this._history.pop());
3840
+ }
3841
+ getByRoute(route) {
3842
+ return this._indexRoute[route.path];
3843
+ }
3844
+ listByTags(tags) {
3845
+ let list = new PageList();
3846
+ this.forEach((index, item) => {
3847
+ if (item.controller.hasTags(tags)) {
3848
+ list.push(item);
3849
+ }
3850
+ });
3851
+ return list;
3852
+ }
3853
+ getLayerMain() {
3854
+ return this._indexLayer["main"];
3855
+ }
3856
+ /**
3857
+ * @param name
3858
+ */
3859
+ getLayer(name) {
3860
+ return this.getOrNewLayer(name);
3861
+ }
3862
+ getOrNewLayer(name) {
3863
+ let layer = this._indexLayer[name];
3864
+ if (!layer) {
3865
+ layer = new PageLayer(name);
3866
+ this._indexLayer[name] = layer;
3867
+ }
3868
+ return layer;
3869
+ }
3870
+ getController(name) {
3871
+ return this._ctrlDict.get(name);
3872
+ }
3873
+ registerController(ctrl) {
3874
+ this._ctrlDict.set(ctrl.name, ctrl);
3875
+ }
3876
+ get objectDict() {
3877
+ let dict = this._objectDict;
3878
+ if (!dict) {
3879
+ dict = new UIObjectDict();
3880
+ this._objectDict = dict;
3881
+ }
3882
+ return dict;
3883
+ }
3884
+ }
3885
+ const pagerepo = new PageRepo();
3886
+
3778
3887
  class PageController extends Controller {
3779
3888
  constructor(routeName, config) {
3780
3889
  super(routeName);
@@ -3793,10 +3902,6 @@ class PageController extends Controller {
3793
3902
  }
3794
3903
  }
3795
3904
  }
3796
- init(module, pageRepo) {
3797
- this._module = module;
3798
- this._pagerepo = pageRepo;
3799
- }
3800
3905
  open(...args) {
3801
3906
  }
3802
3907
  close() {
@@ -3815,7 +3920,6 @@ class PageController extends Controller {
3815
3920
  let newpage;
3816
3921
  let oldpage;
3817
3922
  if (this._layer) {
3818
- let pagerepo = this._pagerepo;
3819
3923
  let layer = pagerepo.getLayer(this._layer);
3820
3924
  oldpage = layer.currentPage;
3821
3925
  if (oldpage) {
@@ -3853,7 +3957,6 @@ class PageController extends Controller {
3853
3957
  page.dispatch(PageEvent.Opening);
3854
3958
  //
3855
3959
  try {
3856
- let pagerepo = this._pagerepo;
3857
3960
  pagerepo.push(page);
3858
3961
  this.onOpening(page);
3859
3962
  // @ts-ignore
@@ -3882,7 +3985,6 @@ class PageController extends Controller {
3882
3985
  page.dispatch(PageEvent.Opened);
3883
3986
  }
3884
3987
  closeByRoute(route) {
3885
- let pagerepo = this._pagerepo;
3886
3988
  let lastpage;
3887
3989
  if (this._layer) {
3888
3990
  let layer = pagerepo.getLayer(this._layer);
@@ -3929,7 +4031,6 @@ class PageController extends Controller {
3929
4031
  if (!page) {
3930
4032
  return;
3931
4033
  }
3932
- let pagerepo = this._pagerepo;
3933
4034
  pagerepo.remove(page);
3934
4035
  this._lastPage = page;
3935
4036
  // @ts-ignore
@@ -3978,124 +4079,6 @@ class PageController extends Controller {
3978
4079
  }
3979
4080
  }
3980
4081
 
3981
- /**
3982
- * 视图管理器
3983
- * 打开一个视图的时候,可能会听过加载资源,读取数据,调整布局,切换特效等处理,所以使用视图模式封装视图打开关闭的逻辑
3984
- */
3985
- class PageLayer {
3986
- constructor(name) {
3987
- this.name = name;
3988
- }
3989
- close() {
3990
- if (this.currentPage) {
3991
- this.currentPage.controller.closeByRoute();
3992
- }
3993
- }
3994
- }
3995
-
3996
- class PageList extends List {
3997
- }
3998
- class PageRepo extends PageList {
3999
- constructor(module) {
4000
- super();
4001
- this._indexLayer = {};
4002
- this._indexRoute = {};
4003
- this._history = [];
4004
- this._ctrlDict = new ControllerDict();
4005
- this.onSet(this, (item) => {
4006
- this._indexRoute[item.route.path] = item;
4007
- });
4008
- this.onDelete(this, (item) => {
4009
- delete this._indexRoute[item.route.path];
4010
- });
4011
- }
4012
- openByString(route) {
4013
- return this.open(new Route(route));
4014
- }
4015
- /**
4016
- * 打开页面
4017
- * 一个路由代表一个页面
4018
- * @param route
4019
- */
4020
- open(route) {
4021
- let controller = this.getController(route);
4022
- if (!controller) {
4023
- throw new Error("page controller no register: " + route.path);
4024
- }
4025
- return controller.openByRoute(route);
4026
- }
4027
- close(route) {
4028
- let controller = this.getController(route);
4029
- if (!controller) {
4030
- throw new Error("page controller no register: " + route.path);
4031
- }
4032
- controller.closeByRoute(route);
4033
- }
4034
- /**
4035
- * 如果页面存在,则刷新
4036
- * @param route
4037
- */
4038
- refresh(route) {
4039
- let page = this.getByRoute(route);
4040
- if (page) {
4041
- page.controller.refresh();
4042
- }
4043
- }
4044
- /**
4045
- * 历史记录
4046
- */
4047
- getHistory() {
4048
- return this._history;
4049
- }
4050
- back() {
4051
- this.open(this._history.pop());
4052
- }
4053
- getByRoute(route) {
4054
- return this._indexRoute[route.path];
4055
- }
4056
- listByTags(tags) {
4057
- let list = new PageList();
4058
- this.forEach((index, item) => {
4059
- if (item.controller.hasTags(tags)) {
4060
- list.push(item);
4061
- }
4062
- });
4063
- return list;
4064
- }
4065
- getLayerMain() {
4066
- return this._indexLayer["main"];
4067
- }
4068
- /**
4069
- * @param name
4070
- */
4071
- getLayer(name) {
4072
- return this.getOrNewLayer(name);
4073
- }
4074
- getOrNewLayer(name) {
4075
- let layer = this._indexLayer[name];
4076
- if (!layer) {
4077
- layer = new PageLayer(name);
4078
- this._indexLayer[name] = layer;
4079
- }
4080
- return layer;
4081
- }
4082
- getController(route) {
4083
- return this._ctrlDict.get(route.path);
4084
- }
4085
- registerController(ctrl) {
4086
- ctrl.init(this._module, this);
4087
- this._ctrlDict.set(ctrl.name, ctrl);
4088
- }
4089
- get objectDict() {
4090
- let dict = this._objectDict;
4091
- if (!dict) {
4092
- dict = new UIObjectDict();
4093
- this._objectDict = dict;
4094
- }
4095
- return dict;
4096
- }
4097
- }
4098
-
4099
4082
  class Listener {
4100
4083
  static create(ident) {
4101
4084
  return new Listener(ident);
@@ -6338,5 +6321,5 @@ class WidgetUtil {
6338
6321
  }
6339
6322
  var widgetutil = new WidgetUtil();
6340
6323
 
6341
- export { ArrayUtil, AssetLoader, AssetURI, BitUtil, CallbackList, CameraUtil, CanvasUtil, Controller, ControllerDict, ControllerRepo, ConvertUtil, DictIterator, DictNode, DictSource, Dictionary, Dispatcher, DocUtil, ErrorUtil, EventItem, EventManager, EventUtil, Factory, FloatUtil, GeometryUtil, IdentUtil, LOGGER_EVENT, LinkError, List, ListIterator, ListNode, ListSource, Listener, LogLevel, LogManager, Logger, MapUtil, MathUtil, Model, NetUtil, Page, PageController, PageEvent, PageLayer, PageList, PageRepo, PageState, PathUtil, Pool, RandUtil, Route, SampleCallbackList, SamplePool, SamplePoolSet, ScaleUtil, SimpleModel, StringUtil, TimeUtil, Timer, TreeIterator, TreeNode, TreeNodePlugin, TreeRoot, TreeRootPlugin, TreeUtil, UIManager, UIObjectDict, UIPoolConfig, UISingleConfig, UIUtil, WidgetAlign, WidgetUtil, XAssetManager, XEvent, arrayutil, assetx, bitutil, camerautil, canvasutil, convertutil, docutil, errorutil, eventmgr, eventutil, floatutil, formatutil, geoutil, identutil, loadAtlas, logmgr, maputil, mathutil, netutil, parseAtlas, parsePlist, pathutil, randutil, resutil, scaleutil, stringutil, timer, timeutil, treeutil, uidict, uimgr, uiutil, widgetutil };
6324
+ export { ArrayUtil, AssetLoader, AssetURI, BitUtil, CallbackList, CameraUtil, CanvasUtil, Controller, ControllerDict, ControllerRepo, ConvertUtil, DictIterator, DictNode, DictSource, Dictionary, Dispatcher, DocUtil, ErrorUtil, EventItem, EventManager, EventUtil, Factory, FloatUtil, GeometryUtil, IdentUtil, LOGGER_EVENT, LinkError, List, ListIterator, ListNode, ListSource, Listener, LogLevel, LogManager, Logger, MapUtil, MathUtil, Model, NetUtil, Page, PageController, PageEvent, PageLayer, PageList, PageRepo, PageState, PathUtil, Pool, RandUtil, Route, SampleCallbackList, SamplePool, SamplePoolSet, ScaleUtil, SimpleModel, StringUtil, TimeUtil, Timer, TreeIterator, TreeNode, TreeNodePlugin, TreeRoot, TreeRootPlugin, TreeUtil, UIManager, UIObjectDict, UIPoolConfig, UISingleConfig, UIUtil, WidgetAlign, WidgetUtil, XAssetManager, XEvent, arrayutil, assetx, bitutil, camerautil, canvasutil, convertutil, docutil, errorutil, eventmgr, eventutil, floatutil, formatutil, geoutil, identutil, loadAtlas, logmgr, maputil, mathutil, netutil, pagerepo, parseAtlas, parsePlist, pathutil, randutil, resutil, scaleutil, stringutil, timer, timeutil, treeutil, uidict, uimgr, uiutil, widgetutil };
6342
6325
  //# sourceMappingURL=index.esm.js.map