@visactor/vtable-sheet 1.23.2 → 1.23.3

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/cjs/index.d.ts CHANGED
@@ -2,5 +2,5 @@ import VTableSheet from './components/vtable-sheet';
2
2
  import type { ISheetDefine, IVTableSheetOptions, IVTableSheetUpdateOptions } from './ts-types';
3
3
  import * as TYPES from './ts-types';
4
4
  import * as VTable from './vtable';
5
- export declare const version = "1.23.2";
5
+ export declare const version = "1.23.3";
6
6
  export { VTableSheet, TYPES, VTable, ISheetDefine, IVTableSheetOptions, IVTableSheetUpdateOptions };
package/cjs/index.js CHANGED
@@ -47,4 +47,4 @@ exports.VTable = VTable;
47
47
 
48
48
  const style_manager_1 = require("./styles/style-manager");
49
49
 
50
- exports.version = "1.23.2", (0, style_manager_1.importStyles)();
50
+ exports.version = "1.23.3", (0, style_manager_1.importStyles)();
package/cjs/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6EAAoD;AAW3C,sBAXF,sBAAW,CAWE;AATpB,kDAAoC;AASd,sBAAK;AAR3B,iDAAmC;AAQN,wBAAM;AAPnC,0DAAsD;AACzC,QAAA,OAAO,GAAG,QAAQ,CAAC;AAEhC,IAAA,4BAAY,GAAE,CAAC","file":"index.js","sourcesContent":["import VTableSheet from './components/vtable-sheet';\nimport type { ISheetDefine, IVTableSheetOptions, IVTableSheetUpdateOptions } from './ts-types';\nimport * as TYPES from './ts-types';\nimport * as VTable from './vtable';\nimport { importStyles } from './styles/style-manager';\nexport const version = \"1.23.2\";\n// 导入样式\nimportStyles();\n/**\n * @namespace VTableSheet\n */\nexport { VTableSheet, TYPES, VTable, ISheetDefine, IVTableSheetOptions, IVTableSheetUpdateOptions };\n"]}
1
+ {"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6EAAoD;AAW3C,sBAXF,sBAAW,CAWE;AATpB,kDAAoC;AASd,sBAAK;AAR3B,iDAAmC;AAQN,wBAAM;AAPnC,0DAAsD;AACzC,QAAA,OAAO,GAAG,QAAQ,CAAC;AAEhC,IAAA,4BAAY,GAAE,CAAC","file":"index.js","sourcesContent":["import VTableSheet from './components/vtable-sheet';\nimport type { ISheetDefine, IVTableSheetOptions, IVTableSheetUpdateOptions } from './ts-types';\nimport * as TYPES from './ts-types';\nimport * as VTable from './vtable';\nimport { importStyles } from './styles/style-manager';\nexport const version = \"1.23.3\";\n// 导入样式\nimportStyles();\n/**\n * @namespace VTableSheet\n */\nexport { VTableSheet, TYPES, VTable, ISheetDefine, IVTableSheetOptions, IVTableSheetUpdateOptions };\n"]}
@@ -3735,28 +3735,59 @@
3735
3735
  }
3736
3736
  addEventListener(type, listener, options) {
3737
3737
  if (!listener) return;
3738
+ const capture = this._resolveCapture(options),
3739
+ once = this._resolveOnce(options),
3740
+ listenerTypeMap = this._getOrCreateListenerTypeMap(type),
3741
+ wrappedMap = this._getOrCreateWrappedMap(listenerTypeMap, listener);
3742
+ if (wrappedMap.has(capture)) return;
3738
3743
  const wrappedListener = event => {
3739
3744
  const transformedEvent = this._eventListenerTransformer(event);
3740
- "function" == typeof listener ? listener(transformedEvent) : listener.handleEvent && listener.handleEvent(transformedEvent);
3745
+ "function" == typeof listener ? listener(transformedEvent) : listener.handleEvent && listener.handleEvent(transformedEvent), once && this._deleteListenerRecord(type, listener, capture);
3741
3746
  };
3742
- this._listenerMap.has(type) || this._listenerMap.set(type, new Map()), this._listenerMap.get(type).set(listener, wrappedListener), this._nativeAddEventListener(type, wrappedListener, options);
3747
+ wrappedMap.set(capture, {
3748
+ wrappedListener: wrappedListener,
3749
+ options: options
3750
+ }), this._nativeAddEventListener(type, wrappedListener, options);
3743
3751
  }
3744
3752
  removeEventListener(type, listener, options) {
3745
- var _a;
3753
+ var _a, _b;
3746
3754
  if (!listener) return;
3747
- const wrappedListener = null === (_a = this._listenerMap.get(type)) || void 0 === _a ? void 0 : _a.get(listener);
3748
- wrappedListener && (this._nativeRemoveEventListener(type, wrappedListener, options), this._listenerMap.get(type).delete(listener), 0 === this._listenerMap.get(type).size && this._listenerMap.delete(type));
3755
+ const capture = this._resolveCapture(options),
3756
+ wrappedRecord = null === (_b = null === (_a = this._listenerMap.get(type)) || void 0 === _a ? void 0 : _a.get(listener)) || void 0 === _b ? void 0 : _b.get(capture);
3757
+ wrappedRecord && (this._nativeRemoveEventListener(type, wrappedRecord.wrappedListener, capture), this._deleteListenerRecord(type, listener, capture));
3749
3758
  }
3750
3759
  dispatchEvent(event) {
3751
3760
  return this._nativeDispatchEvent(event);
3752
3761
  }
3753
3762
  clearAllEventListeners() {
3754
- this._listenerMap.forEach((listenersMap, type) => {
3755
- listenersMap.forEach((wrappedListener, originalListener) => {
3756
- this._nativeRemoveEventListener(type, wrappedListener, void 0);
3763
+ this._listenerMap.forEach((listenerMap, type) => {
3764
+ listenerMap.forEach(wrappedMap => {
3765
+ wrappedMap.forEach((wrappedRecord, capture) => {
3766
+ this._nativeRemoveEventListener(type, wrappedRecord.wrappedListener, capture);
3767
+ });
3757
3768
  });
3758
3769
  }), this._listenerMap.clear();
3759
3770
  }
3771
+ _resolveCapture(options) {
3772
+ return "boolean" == typeof options ? options : !!(null == options ? void 0 : options.capture);
3773
+ }
3774
+ _resolveOnce(options) {
3775
+ return "object" == typeof options && !!(null == options ? void 0 : options.once);
3776
+ }
3777
+ _getOrCreateListenerTypeMap(type) {
3778
+ let listenerTypeMap = this._listenerMap.get(type);
3779
+ return listenerTypeMap || (listenerTypeMap = new Map(), this._listenerMap.set(type, listenerTypeMap)), listenerTypeMap;
3780
+ }
3781
+ _getOrCreateWrappedMap(listenerTypeMap, listener) {
3782
+ let wrappedMap = listenerTypeMap.get(listener);
3783
+ return wrappedMap || (wrappedMap = new Map(), listenerTypeMap.set(listener, wrappedMap)), wrappedMap;
3784
+ }
3785
+ _deleteListenerRecord(type, listener, capture) {
3786
+ const listenerTypeMap = this._listenerMap.get(type);
3787
+ if (!listenerTypeMap) return;
3788
+ const wrappedMap = listenerTypeMap.get(listener);
3789
+ wrappedMap && (wrappedMap.delete(capture), 0 === wrappedMap.size && listenerTypeMap.delete(listener), 0 === listenerTypeMap.size && this._listenerMap.delete(type));
3790
+ }
3760
3791
  _nativeAddEventListener(type, listener, options) {
3761
3792
  throw new Error("_nativeAddEventListener must be implemented by derived classes");
3762
3793
  }
@@ -10270,7 +10301,9 @@
10270
10301
  var _a;
10271
10302
  if (event.manager !== this) throw new Error("It is illegal to free an event not managed by this EventManager!");
10272
10303
  const constructor = event.constructor;
10273
- this.eventPool.has(constructor) || this.eventPool.set(constructor, []), null === (_a = this.eventPool.get(constructor)) || void 0 === _a || _a.push(event);
10304
+ this.eventPool.has(constructor) || (this.eventPool.get(constructor).forEach(e => {
10305
+ e.eventPhase = event.NONE, e.currentTarget = null, e.path = [], e.detailPath = [], e.target = null;
10306
+ }), this.eventPool.set(constructor, [])), null === (_a = this.eventPool.get(constructor)) || void 0 === _a || _a.push(event);
10274
10307
  }
10275
10308
  notifyListeners(e, type) {
10276
10309
  const listeners = e.currentTarget._events[type];
@@ -12874,7 +12907,7 @@
12874
12907
  });
12875
12908
  }
12876
12909
  release() {
12877
- this.releaseStatus = "released", this.stopAnimates(), application.graphicService.onRelease(this);
12910
+ this.releaseStatus = "released", this.stopAnimates(), application.graphicService.onRelease(this), super.release();
12878
12911
  }
12879
12912
  _emitCustomEvent(type, context) {
12880
12913
  var _a, _b;
@@ -20281,12 +20314,12 @@
20281
20314
  throw new Error("暂不支持");
20282
20315
  }
20283
20316
  release() {
20284
- var _a, _b;
20317
+ var _a, _b, _d;
20285
20318
  super.release(), this.hooks.beforeRender.unTap("constructor", this.beforeRender), this.hooks.afterRender.unTap("constructor", this.afterRender), this.eventSystem && this.eventSystem.release(), this.layerService.releaseStage(this), this.pluginService.release(), this.forEach(layer => {
20286
20319
  layer.release();
20287
20320
  }), this.interactiveLayer && (this.interactiveLayer.forEachChildren(item => {
20288
20321
  item.setStage && item.setStage(null, null), this.interactiveLayer.removeChild(item);
20289
- }), this.interactiveLayer.release()), this.window.release(), null === (_a = this._ticker) || void 0 === _a || _a.remTimeline(null == this ? void 0 : this.timeline), null === (_b = this._ticker) || void 0 === _b || _b.removeListener("tick", this.afterTickCb), this.renderService.renderTreeRoots = [];
20322
+ }), this.interactiveLayer.release()), this.window.release(), null === (_a = this._ticker) || void 0 === _a || _a.remTimeline(null == this ? void 0 : this.timeline), null === (_b = this._ticker) || void 0 === _b || _b.removeListener("tick", this.afterTickCb), this.params.ticker || null === (_d = this._ticker) || void 0 === _d || _d.release(), this.renderService.renderTreeRoots = [];
20290
20323
  }
20291
20324
  setStage(stage) {}
20292
20325
  dirty(b, matrix) {
@@ -24512,7 +24545,7 @@
24512
24545
  this._sliderRenderBounds = null, this._sliderLimitRange = null;
24513
24546
  }
24514
24547
  release(all) {
24515
- super.release(all), ("browser" === vglobal.env ? vglobal : this.stage).addEventListener("touchmove", this._handleTouchMove, {
24548
+ super.release(all), ("browser" === vglobal.env ? vglobal : this.stage).removeEventListener("touchmove", this._handleTouchMove, {
24516
24549
  passive: !1
24517
24550
  }), this._clearDragEvents();
24518
24551
  }
@@ -26095,17 +26128,21 @@
26095
26128
  } = this.attribute.label;
26096
26129
  textStyle = isFunction$4(textStyle) ? merge({}, DEFAULT_AXIS_THEME.label.style, textStyle(tickDatum, index, tickData, layer)) : textStyle;
26097
26130
  const labelAlign = this.getLabelAlign(vector, inside, textStyle.angle);
26098
- return textStyle = merge(labelAlign, textStyle), isFunction$4(textStyle.text) && (textStyle.text = textStyle.text({
26131
+ textStyle = merge(labelAlign, textStyle), isFunction$4(textStyle.text) && (textStyle.text = textStyle.text({
26099
26132
  label: tickDatum.label,
26100
26133
  value: tickDatum.rawValue,
26101
26134
  index: tickDatum.index,
26102
26135
  layer: layer
26103
- })), Object.assign(Object.assign(Object.assign({}, this.getLabelPosition(point, vector, textContent, textStyle)), {
26136
+ }));
26137
+ let reactStyle = textStyle.react;
26138
+ return isFunction$4(reactStyle) && (reactStyle = reactStyle(tickDatum, index, tickData, layer)), Object.assign(Object.assign(Object.assign(Object.assign({}, this.getLabelPosition(point, vector, textContent, textStyle)), {
26104
26139
  text: null != text ? text : textContent,
26105
26140
  _originText: tickDatum.label,
26106
26141
  lineHeight: null == textStyle ? void 0 : textStyle.fontSize,
26107
26142
  type: type
26108
- }), textStyle);
26143
+ }), textStyle), {
26144
+ react: reactStyle
26145
+ });
26109
26146
  }
26110
26147
  getLabelPosition(point, vector, text, style) {
26111
26148
  return point;
@@ -27134,6 +27171,8 @@
27134
27171
  this.status === STATUS$1.RUNNING && (this.tickCounts++, this.timelines.forEach(timeline => {
27135
27172
  timeline.tick(delta);
27136
27173
  }), this.emit("tick", delta));
27174
+ }, this._handleGraphTick = () => {
27175
+ this.initHandler(!1);
27137
27176
  }, this.init(), this.lastFrameTime = -1, this.tickCounts = 0, this.stage = stage, this.autoStop = !0, this.interval = 16, this.computeTimeOffsetAndJitter();
27138
27177
  }
27139
27178
  bindStage(stage) {
@@ -27143,9 +27182,7 @@
27143
27182
  this.timeOffset = Math.floor(Math.random() * this.interval), this._jitter = Math.min(Math.max(.2 * this.interval, 6), .7 * this.interval);
27144
27183
  }
27145
27184
  init() {
27146
- this.interval = 16, this.status = STATUS$1.INITIAL, application.global.hooks.onSetEnv.tap("graph-ticker", () => {
27147
- this.initHandler(!1);
27148
- }), application.global.env && this.initHandler(!1);
27185
+ this.interval = 16, this.status = STATUS$1.INITIAL, application.global.hooks.onSetEnv.tap("graph-ticker", this._handleGraphTick), application.global.env && this.initHandler(!1);
27149
27186
  }
27150
27187
  addTimeline(timeline) {
27151
27188
  this.timelines.push(timeline);
@@ -27218,7 +27255,7 @@
27218
27255
  }
27219
27256
  release() {
27220
27257
  var _a;
27221
- this.stop(), this.timelines = [], null === (_a = this.tickerHandler) || void 0 === _a || _a.release(), this.tickerHandler = null, this.lastFrameTime = -1;
27258
+ this.stop(), this.timelines = [], null === (_a = this.tickerHandler) || void 0 === _a || _a.release(), this.tickerHandler = null, this.lastFrameTime = -1, application.global.hooks.onSetEnv.unTap("graph-ticker", this._handleGraphTick);
27222
27259
  }
27223
27260
  checkSkip(delta) {
27224
27261
  var _a, _b, _c;
@@ -35697,7 +35734,7 @@
35697
35734
  };
35698
35735
  }
35699
35736
  release(all) {
35700
- super.release(all), ("browser" === vglobal.env ? vglobal : this.stage).addEventListener("touchmove", this._handleTouchMove, {
35737
+ super.release(all), ("browser" === vglobal.env ? vglobal : this.stage).removeEventListener("touchmove", this._handleTouchMove, {
35701
35738
  passive: !1
35702
35739
  }), this._clearAllDragEvents();
35703
35740
  }
@@ -38185,6 +38222,7 @@
38185
38222
  };
38186
38223
  }
38187
38224
  on(type, listener) {
38225
+ if (!this.listenersData) return;
38188
38226
  const list = this.listenersData.listeners[type] || (this.listenersData.listeners[type] = []);
38189
38227
  list.push(listener);
38190
38228
  const id = idCount$1++;
@@ -38192,9 +38230,10 @@
38192
38230
  type: type,
38193
38231
  listener: listener,
38194
38232
  remove: () => {
38233
+ if (!this.listenersData) return;
38195
38234
  delete this.listenersData.listenerData[id];
38196
38235
  const index = list.indexOf(listener);
38197
- list.splice(index, 1), this.listenersData.listeners[type].length || delete this.listenersData.listeners[type];
38236
+ list.splice(index, 1), this.listenersData.listeners[type] && !this.listenersData.listeners[type].length && delete this.listenersData.listeners[type];
38198
38237
  }
38199
38238
  }, id;
38200
38239
  }
@@ -60574,7 +60613,7 @@
60574
60613
  }
60575
60614
  constructor(container, options = {}) {
60576
60615
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z;
60577
- if (super(), this.showFrozenIcon = !0, this._tableBorderWidth_left = 0, this._tableBorderWidth_right = 0, this._tableBorderWidth_top = 0, this._tableBorderWidth_bottom = 0, this.version = "1.23.2", this.id = `VTable${Date.now()}`, this.isReleased = !1, this._chartEventMap = {}, this.throttleInvalidate = throttle2(this.render.bind(this), 200), "node" === Env$1.mode ? (options = container, container = null) : container instanceof HTMLElement || (options = container, container = container.container ? container.container : null), !container && "node" !== options.mode && !options.canvas) throw new Error("vtable's container is undefined");
60616
+ if (super(), this.showFrozenIcon = !0, this._tableBorderWidth_left = 0, this._tableBorderWidth_right = 0, this._tableBorderWidth_top = 0, this._tableBorderWidth_bottom = 0, this.version = "1.23.3", this.id = `VTable${Date.now()}`, this.isReleased = !1, this._chartEventMap = {}, this.throttleInvalidate = throttle2(this.render.bind(this), 200), "node" === Env$1.mode ? (options = container, container = null) : container instanceof HTMLElement || (options = container, container = container.container ? container.container : null), !container && "node" !== options.mode && !options.canvas) throw new Error("vtable's container is undefined");
60578
60617
  this.pluginManager = new PluginManager(this, options), this.fireListeners(TABLE_EVENT_TYPE.BEFORE_INIT, {
60579
60618
  options: options,
60580
60619
  container: container
@@ -61513,17 +61552,18 @@
61513
61552
  this.release();
61514
61553
  }
61515
61554
  release() {
61516
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
61555
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1;
61556
+ null === (_c = null === (_b = null === (_a = this.scenegraph) || void 0 === _a ? void 0 : _a.component) || void 0 === _b ? void 0 : _b.vScrollBar) || void 0 === _c || _c.release(), null === (_f = null === (_e = null === (_d = this.scenegraph) || void 0 === _d ? void 0 : _d.component) || void 0 === _e ? void 0 : _e.hScrollBar) || void 0 === _f || _f.release(), this.animationManager.clear(), this.animationManager.ticker.release(), null === (_j = null === (_h = null === (_g = this.scenegraph) || void 0 === _g ? void 0 : _g.stage) || void 0 === _h ? void 0 : _h.ticker) || void 0 === _j || _j.release();
61517
61557
  const internalProps = this.internalProps;
61518
61558
  if (this.isReleased) return;
61519
- null === (_b = null === (_a = internalProps.tooltipHandler) || void 0 === _a ? void 0 : _a.release) || void 0 === _b || _b.call(_a), null === (_d = null === (_c = internalProps.menuHandler) || void 0 === _c ? void 0 : _c.release) || void 0 === _d || _d.call(_c), null === (_e = super.release) || void 0 === _e || _e.call(this), this.pluginManager.release(), null === (_g = null === (_f = internalProps.handler) || void 0 === _f ? void 0 : _f.release) || void 0 === _g || _g.call(_f), this.eventManager.release(), null === (_j = null === (_h = internalProps.focusControl) || void 0 === _h ? void 0 : _h.release) || void 0 === _j || _j.call(_h), null === (_k = internalProps.legends) || void 0 === _k || _k.forEach(legend => {
61559
+ null === (_l = null === (_k = internalProps.tooltipHandler) || void 0 === _k ? void 0 : _k.release) || void 0 === _l || _l.call(_k), null === (_o = null === (_m = internalProps.menuHandler) || void 0 === _m ? void 0 : _m.release) || void 0 === _o || _o.call(_m), null === (_p = super.release) || void 0 === _p || _p.call(this), this.pluginManager.release(), null === (_r = null === (_q = internalProps.handler) || void 0 === _q ? void 0 : _q.release) || void 0 === _r || _r.call(_q), this.eventManager.release(), null === (_t = null === (_s = internalProps.focusControl) || void 0 === _s ? void 0 : _s.release) || void 0 === _t || _t.call(_s), null === (_u = internalProps.legends) || void 0 === _u || _u.forEach(legend => {
61520
61560
  null == legend || legend.release();
61521
- }), null === (_l = internalProps.title) || void 0 === _l || _l.release(), internalProps.title = null, null === (_m = internalProps.emptyTip) || void 0 === _m || _m.release(), internalProps.emptyTip = null, internalProps.layoutMap.release(), internalProps.releaseList && (internalProps.releaseList.forEach(releaseObj => {
61561
+ }), null === (_v = internalProps.title) || void 0 === _v || _v.release(), internalProps.title = null, null === (_w = internalProps.emptyTip) || void 0 === _w || _w.release(), internalProps.emptyTip = null, internalProps.layoutMap.release(), internalProps.releaseList && (internalProps.releaseList.forEach(releaseObj => {
61522
61562
  var _a;
61523
61563
  return null === (_a = null == releaseObj ? void 0 : releaseObj.release) || void 0 === _a ? void 0 : _a.call(releaseObj);
61524
61564
  }), internalProps.releaseList = null), this.scenegraph.stage.release(), this.scenegraph.proxy.release();
61525
- const parentElement = null === (_o = internalProps.element) || void 0 === _o ? void 0 : _o.parentElement;
61526
- parentElement && !this.options.canvas && parentElement.removeChild(internalProps.element), null === (_r = null === (_q = null === (_p = this.editorManager) || void 0 === _p ? void 0 : _p.editingEditor) || void 0 === _q ? void 0 : _q.onEnd) || void 0 === _r || _r.call(_q), this.isReleased = !0, this.scenegraph = null, this.internalProps = null, null === (_s = this.reactCustomLayout) || void 0 === _s || _s.clearCache(), clearChartRenderQueue();
61565
+ const parentElement = null === (_x = internalProps.element) || void 0 === _x ? void 0 : _x.parentElement;
61566
+ parentElement && !this.options.canvas && parentElement.removeChild(internalProps.element), null === (_0 = null === (_z = null === (_y = this.editorManager) || void 0 === _y ? void 0 : _y.editingEditor) || void 0 === _z ? void 0 : _z.onEnd) || void 0 === _0 || _0.call(_z), this.isReleased = !0, this.scenegraph = null, this.internalProps = null, null === (_1 = this.reactCustomLayout) || void 0 === _1 || _1.clearCache(), clearChartRenderQueue();
61527
61567
  }
61528
61568
  fireListeners(type, event) {
61529
61569
  return super.fireListeners(type, event);
@@ -64352,7 +64392,10 @@
64352
64392
  }
64353
64393
  cancelEdit() {
64354
64394
  var _a, _b, _c, _d;
64355
- this.editingEditor && (null === (_b = (_a = this.editingEditor).exit) || void 0 === _b || _b.call(_a), null === (_d = (_c = this.editingEditor).onEnd) || void 0 === _d || _d.call(_c), this.editingEditor = null);
64395
+ this.editingEditor && (null === (_b = (_a = this.editingEditor).exit) || void 0 === _b || _b.call(_a), null === (_d = (_c = this.editingEditor).onEnd) || void 0 === _d || _d.call(_c), this.editingEditor = null), Object.values(this.cacheLastSelectedCellEditor).forEach(editor => {
64396
+ var _a;
64397
+ return null === (_a = null == editor ? void 0 : editor.onEnd) || void 0 === _a ? void 0 : _a.call(editor);
64398
+ }), this.cacheLastSelectedCellEditor = {};
64356
64399
  }
64357
64400
  release() {
64358
64401
  this.listenersId.forEach(id => {
@@ -92960,7 +93003,7 @@
92960
93003
  importStyle();
92961
93004
  }
92962
93005
 
92963
- const version = "1.23.2";
93006
+ const version = "1.23.3";
92964
93007
  importStyles();
92965
93008
 
92966
93009
  exports.TYPES = index;