x4js 1.6.3 → 1.6.5

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.
@@ -28,7 +28,7 @@
28
28
  *
29
29
  **/
30
30
 
31
- import { EventMap, MapEvents, EventSource, EvTimer } from './x4events';
31
+ import { EventMap, MapEvents, EvSource, EvTimer } from './x4events';
32
32
 
33
33
  /**
34
34
  * Timer Callback
@@ -61,7 +61,7 @@ export interface BaseComponentProps<T = BaseComponentEventMap> {
61
61
  */
62
62
 
63
63
  export class BaseComponent< P extends BaseComponentProps<BaseComponentEventMap>, E extends BaseComponentEventMap >
64
- extends EventSource< E > {
64
+ extends EvSource< E > {
65
65
 
66
66
  protected m_props: P;
67
67
  #m_timers: Map<string, Function>;
@@ -29,7 +29,7 @@
29
29
 
30
30
  import { ajaxRequest } from './request';
31
31
  import { isArray, isString } from './tools';
32
- import { BasicEvent, EvChange, EventSource, EventMap, MapEvents } from './x4events';
32
+ import { BasicEvent, EvChange, EvSource, EventMap, } from './x4events';
33
33
  import { BaseComponent, BaseComponentEventMap, BaseComponentProps } from './base_component';
34
34
 
35
35
  export type ChangeCallback = (type: string, id?: any) => void;
@@ -621,7 +621,7 @@ interface DataStoreEventMap extends EventMap {
621
621
  *
622
622
  */
623
623
 
624
- export class DataStore<T extends Record = Record> extends EventSource<DataStoreEventMap> {
624
+ export class DataStore<T extends Record = Record> extends EvSource<DataStoreEventMap> {
625
625
 
626
626
  protected m_model: T;
627
627
  protected m_fields: FieldInfo[];
package/lib/src/icon.ts CHANGED
@@ -30,7 +30,7 @@
30
30
  import { Component, CProps } from './component'
31
31
  import { Stylesheet } from './styles'
32
32
  import { HtmlString, isString } from './tools';
33
- import { BasicEvent, EvChange, EventMap, EventSource } from './x4events';
33
+ import { BasicEvent, EventMap, EvSource } from './x4events';
34
34
 
35
35
  // ============================================================================
36
36
  // [ICON]
@@ -83,7 +83,7 @@ function trimQuotes( str:string ): string {
83
83
  return str;
84
84
  }
85
85
 
86
- class Loader extends EventSource<LoadingEventMap> {
86
+ class Loader extends EvSource<LoadingEventMap> {
87
87
  svgs: Map<string,string>;
88
88
 
89
89
  constructor( ) {
package/lib/src/menu.ts CHANGED
@@ -297,7 +297,7 @@ export class MenuItem extends Component<MenuItemProps, MenuItemEventMap> {
297
297
  let text = props.text;
298
298
 
299
299
  if (props.checked !== undefined) {
300
- icon = props.checked ? 'var( --x4-icon-check )' : 0;
300
+ icon = props.checked ? 'var( --x4-icon-check )' : 'var( --x4-icon-uncheck )';
301
301
  }
302
302
 
303
303
  if (this.m_action) {
package/lib/src/router.ts CHANGED
@@ -29,7 +29,7 @@
29
29
 
30
30
  import { x4document } from './x4dom'
31
31
 
32
- import { EventSource, EvError, EventMap } from "./x4events"
32
+ import { EvSource, EvError, EventMap } from "./x4events"
33
33
 
34
34
  type RouteHandler = ( params: any, path: string ) => void;
35
35
 
@@ -120,7 +120,7 @@ interface RouterEventMap extends EventMap {
120
120
  */
121
121
 
122
122
 
123
- export class Router extends EventSource< RouterEventMap > {
123
+ export class Router extends EvSource< RouterEventMap > {
124
124
 
125
125
  private m_routes: Route[];
126
126
  private m_useHash: boolean;
package/lib/src/x4.less CHANGED
@@ -76,6 +76,7 @@
76
76
  --x4-icon-calendar-days: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="currentColor"><path d="M160 32V64H288V32C288 14.33 302.3 0 320 0C337.7 0 352 14.33 352 32V64H400C426.5 64 448 85.49 448 112V160H0V112C0 85.49 21.49 64 48 64H96V32C96 14.33 110.3 0 128 0C145.7 0 160 14.33 160 32zM0 192H448V464C448 490.5 426.5 512 400 512H48C21.49 512 0 490.5 0 464V192zM64 304C64 312.8 71.16 320 80 320H112C120.8 320 128 312.8 128 304V272C128 263.2 120.8 256 112 256H80C71.16 256 64 263.2 64 272V304zM192 304C192 312.8 199.2 320 208 320H240C248.8 320 256 312.8 256 304V272C256 263.2 248.8 256 240 256H208C199.2 256 192 263.2 192 272V304zM336 256C327.2 256 320 263.2 320 272V304C320 312.8 327.2 320 336 320H368C376.8 320 384 312.8 384 304V272C384 263.2 376.8 256 368 256H336zM64 432C64 440.8 71.16 448 80 448H112C120.8 448 128 440.8 128 432V400C128 391.2 120.8 384 112 384H80C71.16 384 64 391.2 64 400V432zM208 384C199.2 384 192 391.2 192 400V432C192 440.8 199.2 448 208 448H240C248.8 448 256 440.8 256 432V400C256 391.2 248.8 384 240 384H208zM320 432C320 440.8 327.2 448 336 448H368C376.8 448 384 440.8 384 432V400C384 391.2 376.8 384 368 384H336C327.2 384 320 391.2 320 400V432z"/></svg>';
77
77
  --x4-icon-tip: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464zM296 336h-16V248C280 234.8 269.3 224 256 224H224C210.8 224 200 234.8 200 248S210.8 272 224 272h8v64h-16C202.8 336 192 346.8 192 360S202.8 384 216 384h80c13.25 0 24-10.75 24-24S309.3 336 296 336zM256 192c17.67 0 32-14.33 32-32c0-17.67-14.33-32-32-32S224 142.3 224 160C224 177.7 238.3 192 256 192z"/></svg>';
78
78
  --x4-icon-check: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="currentColor"><path d="M440.1 103C450.3 112.4 450.3 127.6 440.1 136.1L176.1 400.1C167.6 410.3 152.4 410.3 143 400.1L7.029 264.1C-2.343 255.6-2.343 240.4 7.029 231C16.4 221.7 31.6 221.7 40.97 231L160 350.1L407 103C416.4 93.66 431.6 93.66 440.1 103V103z"/></svg>';
79
+ --x4-icon-uncheck: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="currentColor"></svg>';
79
80
  --x4-icon-folder-closed: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M448 96h-172.1L226.7 50.75C214.7 38.74 198.5 32 181.5 32H64C28.65 32 0 60.66 0 96v320c0 35.34 28.65 64 64 64h384c35.35 0 64-28.66 64-64V160C512 124.7 483.3 96 448 96zM64 80h117.5c4.273 0 8.293 1.664 11.31 4.688L256 144h192c8.822 0 16 7.176 16 16v32h-416V96C48 87.18 55.18 80 64 80zM448 432H64c-8.822 0-16-7.176-16-16V240h416V416C464 424.8 456.8 432 448 432z"/></svg>';
80
81
  --x4-icon-folder-opened: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="currentColor"><path d="M572.6 270.3l-96 192C471.2 473.2 460.1 480 447.1 480H64c-35.35 0-64-28.66-64-64V96c0-35.34 28.65-64 64-64h117.5c16.97 0 33.25 6.742 45.26 18.75L275.9 96H416c35.35 0 64 28.66 64 64v32h-48V160c0-8.824-7.178-16-16-16H256L192.8 84.69C189.8 81.66 185.8 80 181.5 80H64C55.18 80 48 87.18 48 96v288l71.16-142.3C124.6 230.8 135.7 224 147.8 224h396.2C567.7 224 583.2 249 572.6 270.3z"/></svg>';
81
82
 
@@ -241,7 +241,7 @@ export type MapEvents<Type> = {
241
241
  * doit: EvDoIt;
242
242
  * }
243
243
  *
244
- * let ee = new EventSource<TestEventMap>(null);
244
+ * let ee = new EvSource<TestEventMap>(null);
245
245
  * ee.listen({
246
246
  * doit: (e) => {
247
247
  * console.log(e);
@@ -267,7 +267,7 @@ export type MapEvents<Type> = {
267
267
  * ```
268
268
  */
269
269
 
270
- export class EventSource<Q extends EventMap, T extends EventTypes = MapEvents<Q>> {
270
+ export class EvSource<Q extends EventMap, T extends EventTypes = MapEvents<Q>> {
271
271
 
272
272
  private m_source: unknown;
273
273
  private m_eventRegistry: Map<string, EventCallback[]>;
package/lib/styles/x4.css CHANGED
@@ -61,6 +61,7 @@
61
61
  --x4-icon-calendar-days: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="currentColor"><path d="M160 32V64H288V32C288 14.33 302.3 0 320 0C337.7 0 352 14.33 352 32V64H400C426.5 64 448 85.49 448 112V160H0V112C0 85.49 21.49 64 48 64H96V32C96 14.33 110.3 0 128 0C145.7 0 160 14.33 160 32zM0 192H448V464C448 490.5 426.5 512 400 512H48C21.49 512 0 490.5 0 464V192zM64 304C64 312.8 71.16 320 80 320H112C120.8 320 128 312.8 128 304V272C128 263.2 120.8 256 112 256H80C71.16 256 64 263.2 64 272V304zM192 304C192 312.8 199.2 320 208 320H240C248.8 320 256 312.8 256 304V272C256 263.2 248.8 256 240 256H208C199.2 256 192 263.2 192 272V304zM336 256C327.2 256 320 263.2 320 272V304C320 312.8 327.2 320 336 320H368C376.8 320 384 312.8 384 304V272C384 263.2 376.8 256 368 256H336zM64 432C64 440.8 71.16 448 80 448H112C120.8 448 128 440.8 128 432V400C128 391.2 120.8 384 112 384H80C71.16 384 64 391.2 64 400V432zM208 384C199.2 384 192 391.2 192 400V432C192 440.8 199.2 448 208 448H240C248.8 448 256 440.8 256 432V400C256 391.2 248.8 384 240 384H208zM320 432C320 440.8 327.2 448 336 448H368C376.8 448 384 440.8 384 432V400C384 391.2 376.8 384 368 384H336C327.2 384 320 391.2 320 400V432z"/></svg>';
62
62
  --x4-icon-tip: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464zM296 336h-16V248C280 234.8 269.3 224 256 224H224C210.8 224 200 234.8 200 248S210.8 272 224 272h8v64h-16C202.8 336 192 346.8 192 360S202.8 384 216 384h80c13.25 0 24-10.75 24-24S309.3 336 296 336zM256 192c17.67 0 32-14.33 32-32c0-17.67-14.33-32-32-32S224 142.3 224 160C224 177.7 238.3 192 256 192z"/></svg>';
63
63
  --x4-icon-check: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="currentColor"><path d="M440.1 103C450.3 112.4 450.3 127.6 440.1 136.1L176.1 400.1C167.6 410.3 152.4 410.3 143 400.1L7.029 264.1C-2.343 255.6-2.343 240.4 7.029 231C16.4 221.7 31.6 221.7 40.97 231L160 350.1L407 103C416.4 93.66 431.6 93.66 440.1 103V103z"/></svg>';
64
+ --x4-icon-uncheck: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="currentColor"></svg>';
64
65
  --x4-icon-folder-closed: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M448 96h-172.1L226.7 50.75C214.7 38.74 198.5 32 181.5 32H64C28.65 32 0 60.66 0 96v320c0 35.34 28.65 64 64 64h384c35.35 0 64-28.66 64-64V160C512 124.7 483.3 96 448 96zM64 80h117.5c4.273 0 8.293 1.664 11.31 4.688L256 144h192c8.822 0 16 7.176 16 16v32h-416V96C48 87.18 55.18 80 64 80zM448 432H64c-8.822 0-16-7.176-16-16V240h416V416C464 424.8 456.8 432 448 432z"/></svg>';
65
66
  --x4-icon-folder-opened: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="currentColor"><path d="M572.6 270.3l-96 192C471.2 473.2 460.1 480 447.1 480H64c-35.35 0-64-28.66-64-64V96c0-35.34 28.65-64 64-64h117.5c16.97 0 33.25 6.742 45.26 18.75L275.9 96H416c35.35 0 64 28.66 64 64v32h-48V160c0-8.824-7.178-16-16-16H256L192.8 84.69C189.8 81.66 185.8 80 181.5 80H64C55.18 80 48 87.18 48 96v288l71.16-142.3C124.6 230.8 135.7 224 147.8 224h396.2C567.7 224 583.2 249 572.6 270.3z"/></svg>';
66
67
  --x4-icon-chevron-down: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="currentColor"><path d="M432.6 209.3l-191.1 183.1C235.1 397.8 229.1 400 224 400s-11.97-2.219-16.59-6.688L15.41 209.3C5.814 200.2 5.502 184.1 14.69 175.4c9.125-9.625 24.38-9.938 33.91-.7187L224 342.8l175.4-168c9.5-9.219 24.78-8.906 33.91 .7187C442.5 184.1 442.2 200.2 432.6 209.3z"/></svg>';
@@ -76,6 +76,7 @@
76
76
  --x4-icon-calendar-days: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="currentColor"><path d="M160 32V64H288V32C288 14.33 302.3 0 320 0C337.7 0 352 14.33 352 32V64H400C426.5 64 448 85.49 448 112V160H0V112C0 85.49 21.49 64 48 64H96V32C96 14.33 110.3 0 128 0C145.7 0 160 14.33 160 32zM0 192H448V464C448 490.5 426.5 512 400 512H48C21.49 512 0 490.5 0 464V192zM64 304C64 312.8 71.16 320 80 320H112C120.8 320 128 312.8 128 304V272C128 263.2 120.8 256 112 256H80C71.16 256 64 263.2 64 272V304zM192 304C192 312.8 199.2 320 208 320H240C248.8 320 256 312.8 256 304V272C256 263.2 248.8 256 240 256H208C199.2 256 192 263.2 192 272V304zM336 256C327.2 256 320 263.2 320 272V304C320 312.8 327.2 320 336 320H368C376.8 320 384 312.8 384 304V272C384 263.2 376.8 256 368 256H336zM64 432C64 440.8 71.16 448 80 448H112C120.8 448 128 440.8 128 432V400C128 391.2 120.8 384 112 384H80C71.16 384 64 391.2 64 400V432zM208 384C199.2 384 192 391.2 192 400V432C192 440.8 199.2 448 208 448H240C248.8 448 256 440.8 256 432V400C256 391.2 248.8 384 240 384H208zM320 432C320 440.8 327.2 448 336 448H368C376.8 448 384 440.8 384 432V400C384 391.2 376.8 384 368 384H336C327.2 384 320 391.2 320 400V432z"/></svg>';
77
77
  --x4-icon-tip: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464zM296 336h-16V248C280 234.8 269.3 224 256 224H224C210.8 224 200 234.8 200 248S210.8 272 224 272h8v64h-16C202.8 336 192 346.8 192 360S202.8 384 216 384h80c13.25 0 24-10.75 24-24S309.3 336 296 336zM256 192c17.67 0 32-14.33 32-32c0-17.67-14.33-32-32-32S224 142.3 224 160C224 177.7 238.3 192 256 192z"/></svg>';
78
78
  --x4-icon-check: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="currentColor"><path d="M440.1 103C450.3 112.4 450.3 127.6 440.1 136.1L176.1 400.1C167.6 410.3 152.4 410.3 143 400.1L7.029 264.1C-2.343 255.6-2.343 240.4 7.029 231C16.4 221.7 31.6 221.7 40.97 231L160 350.1L407 103C416.4 93.66 431.6 93.66 440.1 103V103z"/></svg>';
79
+ --x4-icon-uncheck: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="currentColor"></svg>';
79
80
  --x4-icon-folder-closed: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M448 96h-172.1L226.7 50.75C214.7 38.74 198.5 32 181.5 32H64C28.65 32 0 60.66 0 96v320c0 35.34 28.65 64 64 64h384c35.35 0 64-28.66 64-64V160C512 124.7 483.3 96 448 96zM64 80h117.5c4.273 0 8.293 1.664 11.31 4.688L256 144h192c8.822 0 16 7.176 16 16v32h-416V96C48 87.18 55.18 80 64 80zM448 432H64c-8.822 0-16-7.176-16-16V240h416V416C464 424.8 456.8 432 448 432z"/></svg>';
80
81
  --x4-icon-folder-opened: 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="currentColor"><path d="M572.6 270.3l-96 192C471.2 473.2 460.1 480 447.1 480H64c-35.35 0-64-28.66-64-64V96c0-35.34 28.65-64 64-64h117.5c16.97 0 33.25 6.742 45.26 18.75L275.9 96H416c35.35 0 64 28.66 64 64v32h-48V160c0-8.824-7.178-16-16-16H256L192.8 84.69C189.8 81.66 185.8 80 181.5 80H64C55.18 80 48 87.18 48 96v288l71.16-142.3C124.6 230.8 135.7 224 147.8 224h396.2C567.7 224 583.2 249 572.6 270.3z"/></svg>';
81
82
 
@@ -219,7 +219,7 @@ declare module 'x4events' {
219
219
  * doit: EvDoIt;
220
220
  * }
221
221
  *
222
- * let ee = new EventSource<TestEventMap>(null);
222
+ * let ee = new EvSource<TestEventMap>(null);
223
223
  * ee.listen({
224
224
  * doit: (e) => {
225
225
  * console.log(e);
@@ -244,7 +244,7 @@ declare module 'x4events' {
244
244
  * }
245
245
  * ```
246
246
  */
247
- export class EventSource<Q extends EventMap, T extends EventTypes = MapEvents<Q>> {
247
+ export class EvSource<Q extends EventMap, T extends EventTypes = MapEvents<Q>> {
248
248
  private m_source;
249
249
  private m_eventRegistry;
250
250
  private m_defaultHandlers;
@@ -352,7 +352,7 @@ declare module 'base_component' {
352
352
  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
353
353
  *
354
354
  **/
355
- import { EventMap, MapEvents, EventSource, EvTimer } from 'x4events';
355
+ import { EventMap, MapEvents, EvSource, EvTimer } from 'x4events';
356
356
  /**
357
357
  * Timer Callback
358
358
  * @see EvTimer, startTimer, stopTimer
@@ -376,7 +376,7 @@ declare module 'base_component' {
376
376
  /**
377
377
  * BaseComponent class
378
378
  */
379
- export class BaseComponent<P extends BaseComponentProps<BaseComponentEventMap>, E extends BaseComponentEventMap> extends EventSource<E> {
379
+ export class BaseComponent<P extends BaseComponentProps<BaseComponentEventMap>, E extends BaseComponentEventMap> extends EvSource<E> {
380
380
  #private;
381
381
  protected m_props: P;
382
382
  constructor(props: P);
@@ -1913,7 +1913,7 @@ declare module 'router' {
1913
1913
  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1914
1914
  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1915
1915
  **/
1916
- import { EventSource, EvError, EventMap } from 'x4events';
1916
+ import { EvSource, EvError, EventMap } from 'x4events';
1917
1917
  type RouteHandler = (params: any, path: string) => void;
1918
1918
  interface RouterEventMap extends EventMap {
1919
1919
  error: EvError;
@@ -1941,7 +1941,7 @@ declare module 'router' {
1941
1941
  * router.init( );
1942
1942
  * ```
1943
1943
  */
1944
- export class Router extends EventSource<RouterEventMap> {
1944
+ export class Router extends EvSource<RouterEventMap> {
1945
1945
  private m_routes;
1946
1946
  private m_useHash;
1947
1947
  constructor(useHash?: boolean);
@@ -3835,7 +3835,7 @@ declare module 'datastore' {
3835
3835
  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3836
3836
  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3837
3837
  **/
3838
- import { BasicEvent, EvChange, EventSource, EventMap } from 'x4events';
3838
+ import { BasicEvent, EvChange, EvSource, EventMap } from 'x4events';
3839
3839
  import { BaseComponent, BaseComponentEventMap, BaseComponentProps } from 'base_component';
3840
3840
  export type ChangeCallback = (type: string, id?: any) => void;
3841
3841
  export type CalcCallback = () => string;
@@ -4042,7 +4042,7 @@ declare module 'datastore' {
4042
4042
  /**
4043
4043
  *
4044
4044
  */
4045
- export class DataStore<T extends Record = Record> extends EventSource<DataStoreEventMap> {
4045
+ export class DataStore<T extends Record = Record> extends EvSource<DataStoreEventMap> {
4046
4046
  protected m_model: T;
4047
4047
  protected m_fields: FieldInfo[];
4048
4048
  protected m_records: T[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "x4js",
3
- "version": "1.6.3",
3
+ "version": "1.6.5",
4
4
  "description": "X4js core files",
5
5
  "main": "lib/cjs/x4js.js",
6
6
  "types": "lib/types/x4js.d.ts",