taon 19.0.4 → 19.0.6

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.
Files changed (181) hide show
  1. package/README.md +175 -175
  2. package/assets/shared/shared_folder_info.txt +1 -1
  3. package/bin/start.js +279 -279
  4. package/bin/taon +6 -6
  5. package/bin/taon-debug +5 -5
  6. package/bin/taon-debug-brk +5 -5
  7. package/browser/README.md +24 -24
  8. package/browser/fesm2022/taon.mjs +1313 -259
  9. package/browser/fesm2022/taon.mjs.map +1 -1
  10. package/browser/lib/base-classes/base-class.d.ts +1 -1
  11. package/browser/lib/base-classes/base-context.d.ts +6 -6
  12. package/browser/lib/base-classes/base-repository.d.ts +3 -2
  13. package/browser/lib/base-classes/base.d.ts +6 -6
  14. package/browser/lib/create-context.d.ts +12 -12
  15. package/browser/lib/index.d.ts +18 -18
  16. package/browser/lib/inject.d.ts +4 -1
  17. package/browser/lib/ui/taon-table/taon-table.component.d.ts +8 -7
  18. package/browser/package.json +1 -1
  19. package/cli.js.map +1 -1
  20. package/client/README.md +24 -24
  21. package/client/fesm2022/taon.mjs +1313 -259
  22. package/client/fesm2022/taon.mjs.map +1 -1
  23. package/client/lib/base-classes/base-class.d.ts +1 -1
  24. package/client/lib/base-classes/base-context.d.ts +6 -6
  25. package/client/lib/base-classes/base-repository.d.ts +3 -2
  26. package/client/lib/base-classes/base.d.ts +6 -6
  27. package/client/lib/create-context.d.ts +12 -12
  28. package/client/lib/index.d.ts +18 -18
  29. package/client/lib/inject.d.ts +4 -1
  30. package/client/lib/ui/taon-table/taon-table.component.d.ts +8 -7
  31. package/client/package.json +1 -1
  32. package/index.js.map +1 -1
  33. package/lib/base-classes/base-abstract-entity.js +2 -2
  34. package/lib/base-classes/base-abstract-entity.js.map +1 -1
  35. package/lib/base-classes/base-class.d.ts +1 -1
  36. package/lib/base-classes/base-class.js +13 -4
  37. package/lib/base-classes/base-class.js.map +1 -1
  38. package/lib/base-classes/base-context.d.ts +6 -6
  39. package/lib/base-classes/base-context.js.map +1 -1
  40. package/lib/base-classes/base-controller.js.map +1 -1
  41. package/lib/base-classes/base-crud-controller.js +6 -6
  42. package/lib/base-classes/base-crud-controller.js.map +1 -1
  43. package/lib/base-classes/base-entity.js +2 -2
  44. package/lib/base-classes/base-entity.js.map +1 -1
  45. package/lib/base-classes/base-injector.js +2 -2
  46. package/lib/base-classes/base-injector.js.map +1 -1
  47. package/lib/base-classes/base-migration.d.ts +1 -1
  48. package/lib/base-classes/base-migration.js +2 -2
  49. package/lib/base-classes/base-migration.js.map +1 -1
  50. package/lib/base-classes/base-provider.js.map +1 -1
  51. package/lib/base-classes/base-repository.d.ts +3 -2
  52. package/lib/base-classes/base-repository.js +14 -11
  53. package/lib/base-classes/base-repository.js.map +1 -1
  54. package/lib/base-classes/base-subscriber-for-entity.d.ts +1 -1
  55. package/lib/base-classes/base-subscriber-for-entity.js.map +1 -1
  56. package/lib/base-classes/base.d.ts +6 -6
  57. package/lib/base-classes/base.js.map +1 -1
  58. package/lib/build-info._auto-generated_.d.ts +2 -1
  59. package/lib/build-info._auto-generated_.js +3 -2
  60. package/lib/build-info._auto-generated_.js.map +1 -1
  61. package/lib/constants.js.map +1 -1
  62. package/lib/context-db-migrations.d.ts +1 -1
  63. package/lib/context-db-migrations.js +7 -7
  64. package/lib/context-db-migrations.js.map +1 -1
  65. package/lib/create-context.d.ts +12 -12
  66. package/lib/create-context.js +13 -13
  67. package/lib/create-context.js.map +1 -1
  68. package/lib/decorators/classes/controller-decorator.js.map +1 -1
  69. package/lib/decorators/classes/entity-decorator.d.ts +1 -1
  70. package/lib/decorators/classes/entity-decorator.js +8 -8
  71. package/lib/decorators/classes/entity-decorator.js.map +1 -1
  72. package/lib/decorators/classes/migration-decorator.js.map +1 -1
  73. package/lib/decorators/classes/provider-decorator.js.map +1 -1
  74. package/lib/decorators/classes/repository-decorator.js.map +1 -1
  75. package/lib/decorators/classes/subscriber-decorator.js.map +1 -1
  76. package/lib/decorators/http/http-decorators.d.ts +1 -1
  77. package/lib/decorators/http/http-decorators.js +2 -2
  78. package/lib/decorators/http/http-decorators.js.map +1 -1
  79. package/lib/decorators/http/http-methods-decorators.d.ts +1 -1
  80. package/lib/decorators/http/http-methods-decorators.js +2 -2
  81. package/lib/decorators/http/http-methods-decorators.js.map +1 -1
  82. package/lib/decorators/http/http-params-decorators.js.map +1 -1
  83. package/lib/dependency-injection/di-container.js.map +1 -1
  84. package/lib/endpoint-context.js +112 -112
  85. package/lib/endpoint-context.js.map +1 -1
  86. package/lib/entity-process.js +35 -35
  87. package/lib/entity-process.js.map +1 -1
  88. package/lib/env.js +2 -2
  89. package/lib/env.js.map +1 -1
  90. package/lib/formly/formly-group-wrapper-component.js.map +1 -1
  91. package/lib/formly/formly-repeat-component.js.map +1 -1
  92. package/lib/formly/formly.models.js.map +1 -1
  93. package/lib/formly/fromly.d.ts +1 -1
  94. package/lib/formly/fromly.js +26 -26
  95. package/lib/formly/fromly.js.map +1 -1
  96. package/lib/formly/type-from-entity.js +6 -6
  97. package/lib/formly/type-from-entity.js.map +1 -1
  98. package/lib/get-response-value.js +2 -2
  99. package/lib/get-response-value.js.map +1 -1
  100. package/lib/helpers/class-helpers.js +21 -21
  101. package/lib/helpers/class-helpers.js.map +1 -1
  102. package/lib/helpers/taon-helpers.js +4 -4
  103. package/lib/helpers/taon-helpers.js.map +1 -1
  104. package/lib/index._auto-generated_.js.map +1 -1
  105. package/lib/index.d.ts +18 -18
  106. package/lib/index.js +1 -1
  107. package/lib/index.js.map +1 -1
  108. package/lib/inject.js +0 -5
  109. package/lib/inject.js.map +1 -1
  110. package/lib/models.d.ts +1 -1
  111. package/lib/models.js +5 -5
  112. package/lib/models.js.map +1 -1
  113. package/lib/orm.d.ts +1 -1
  114. package/lib/orm.js +4 -4
  115. package/lib/orm.js.map +1 -1
  116. package/lib/realtime/realtime-client.js +3 -3
  117. package/lib/realtime/realtime-client.js.map +1 -1
  118. package/lib/realtime/realtime-core.js +3 -3
  119. package/lib/realtime/realtime-core.js.map +1 -1
  120. package/lib/realtime/realtime-server.js +7 -7
  121. package/lib/realtime/realtime-server.js.map +1 -1
  122. package/lib/realtime/realtime-strategy/index.js.map +1 -1
  123. package/lib/realtime/realtime-strategy/realtime-strategy-ipc.js.map +1 -1
  124. package/lib/realtime/realtime-strategy/realtime-strategy-mock.js.map +1 -1
  125. package/lib/realtime/realtime-strategy/realtime-strategy-socket-io.js.map +1 -1
  126. package/lib/realtime/realtime-strategy/realtime-strategy.js.map +1 -1
  127. package/lib/realtime/realtime-subs-manager.js +3 -3
  128. package/lib/realtime/realtime-subs-manager.js.map +1 -1
  129. package/lib/realtime/realtime.models.js.map +1 -1
  130. package/lib/storage.js +2 -2
  131. package/lib/storage.js.map +1 -1
  132. package/lib/symbols.js +7 -7
  133. package/lib/symbols.js.map +1 -1
  134. package/lib/ui/directives/index.js +2 -2
  135. package/lib/ui/directives/index.js.map +1 -1
  136. package/lib/ui/directives/view-mode.js.map +1 -1
  137. package/lib/ui/index.js +2 -2
  138. package/lib/ui/index.js.map +1 -1
  139. package/lib/ui/taon-admin-mode-configuration/index.js +2 -2
  140. package/lib/ui/taon-admin-mode-configuration/index.js.map +1 -1
  141. package/lib/ui/taon-admin-mode-configuration/taon-admin.models.js.map +1 -1
  142. package/lib/ui/taon-github-fork-me-corner/index.js +2 -2
  143. package/lib/ui/taon-github-fork-me-corner/index.js.map +1 -1
  144. package/lib/ui/taon-github-fork-me-ribbon/index.js +2 -2
  145. package/lib/ui/taon-github-fork-me-ribbon/index.js.map +1 -1
  146. package/lib/ui/taon-notifications/index.js.map +1 -1
  147. package/lib/ui/taon-notifications/taon-notifications.models.js +2 -2
  148. package/lib/ui/taon-notifications/taon-notifications.models.js.map +1 -1
  149. package/lib/ui/taon-progress-bar/index.js +2 -2
  150. package/lib/ui/taon-progress-bar/index.js.map +1 -1
  151. package/lib/ui/taon-session-passcode/index.js +2 -2
  152. package/lib/ui/taon-session-passcode/index.js.map +1 -1
  153. package/lib/ui/taon-table/index.js +2 -2
  154. package/lib/ui/taon-table/index.js.map +1 -1
  155. package/lib/ui/taon-table/taon-table.component.d.ts +7 -6
  156. package/lib/ui/taon.models.d.ts +1 -1
  157. package/lib/ui/taon.models.js.map +1 -1
  158. package/lib/validators.js +8 -8
  159. package/lib/validators.js.map +1 -1
  160. package/migrations/index.js.map +1 -1
  161. package/migrations/migrations_index._auto-generated_.js.map +1 -1
  162. package/old-app .js +1 -1
  163. package/old-app .js.map +1 -1
  164. package/package.json +1 -1
  165. package/playground.js.map +1 -1
  166. package/tmp-environment.json +5 -4
  167. package/websql/README.md +24 -24
  168. package/websql/fesm2022/taon.mjs +1609 -282
  169. package/websql/fesm2022/taon.mjs.map +1 -1
  170. package/websql/lib/base-classes/base-class.d.ts +1 -1
  171. package/websql/lib/base-classes/base-context.d.ts +6 -6
  172. package/websql/lib/base-classes/base-repository.d.ts +3 -2
  173. package/websql/lib/base-classes/base.d.ts +6 -6
  174. package/websql/lib/create-context.d.ts +12 -12
  175. package/websql/lib/index.d.ts +18 -18
  176. package/websql/lib/inject.d.ts +4 -1
  177. package/websql/lib/ui/taon-table/taon-table.component.d.ts +8 -7
  178. package/websql/package.json +1 -1
  179. package/browser/lib/storage.d.ts +0 -2
  180. package/client/lib/storage.d.ts +0 -2
  181. package/websql/lib/storage.d.ts +0 -2
@@ -5,5 +5,5 @@ export declare class BaseClass<CloneT extends BaseClass = any> {
5
5
  * taon after class instance creation
6
6
  */
7
7
  _(): Promise<void>;
8
- clone(override: Partial<CloneT>): CloneT;
8
+ clone(override?: Partial<CloneT>): CloneT;
9
9
  }
@@ -1,13 +1,13 @@
1
1
  // @ts-nocheck
2
2
  declare const BaseContext: {
3
3
  types: {
4
- readonly controllers: CTRL;
5
- readonly repositories: REPO;
6
- readonly providers: PROVIDER;
7
- readonly subscribers: SUBSCRIBER;
8
- readonly migrations: MIGRATION;
4
+ readonly controllers: any;
5
+ readonly repositories: any;
6
+ readonly providers: any;
7
+ readonly subscribers: any;
8
+ readonly migrations: any;
9
9
  };
10
- readonly contexts: CTX;
10
+ readonly contexts: any;
11
11
  readonly contextName: string;
12
12
  __ref(): Promise<import("taon/websql").EndpointContext>;
13
13
  readonly __refSync: import("taon/websql").EndpointContext;
@@ -1,5 +1,5 @@
1
1
  // @ts-nocheck
2
- import type { FindManyOptions, FindOneOptions, FindOptionsWhere, InsertResult, Repository, SaveOptions, UpdateResult } from 'taon-typeorm';
2
+ import type { FindManyOptions, FindOneOptions, FindOptionsWhere, InsertResult, Repository, SaveOptions, UpdateResult } from 'taon-typeorm/websql';
3
3
  import type { QueryDeepPartialEntity } from 'taon-typeorm/lib/typeorm/query-builder/QueryPartialEntity';
4
4
  import type { UpsertOptions } from 'taon-typeorm/lib/typeorm/repository/UpsertOptions';
5
5
  import type { DataSource as DataSourceType } from 'taon-typeorm/websql';
@@ -128,7 +128,8 @@ export declare abstract class BaseRepository<Entity extends {
128
128
  */
129
129
  insert(entity: QueryDeepPartialEntity<Entity> | QueryDeepPartialEntity<Entity>[]): Promise<InsertResult>;
130
130
  update(item: Entity): Promise<Entity>;
131
- updateById(id: number | string, item: Entity): Promise<Entity>;
131
+ private allowedTypesToUpdate;
132
+ updateById<ENTITY = Entity>(id: number | string, item: Entity): Promise<ENTITY>;
132
133
  bulkUpdate(items: Entity[]): Promise<{
133
134
  models: any[];
134
135
  }>;
@@ -21,13 +21,13 @@ export declare namespace Base {
21
21
  export import Migration = baseMigration.BaseMigration;
22
22
  const Context: {
23
23
  types: {
24
- readonly controllers: CTRL;
25
- readonly repositories: REPO;
26
- readonly providers: PROVIDER;
27
- readonly subscribers: SUBSCRIBER;
28
- readonly migrations: MIGRATION;
24
+ readonly controllers: any;
25
+ readonly repositories: any;
26
+ readonly providers: any;
27
+ readonly subscribers: any;
28
+ readonly migrations: any;
29
29
  };
30
- readonly contexts: CTX;
30
+ readonly contexts: any;
31
31
  readonly contextName: string;
32
32
  __ref(): Promise<import("taon/websql").EndpointContext>;
33
33
  readonly __refSync: import("taon/websql").EndpointContext;
@@ -3,13 +3,13 @@ import { EndpointContext } from './endpoint-context';
3
3
  import { Models } from './models';
4
4
  export declare const createContextTemplate: <CTX extends Record<string, object>, CTRL extends Record<string, new (...args: any[]) => any>, ENTITY extends Record<string, new (...args: any[]) => any>, REPO extends Record<string, new (...args: any[]) => any>, PROVIDER extends Record<string, new (...args: any[]) => any>, SUBSCRIBER extends Record<string, new (...args: any[]) => any>, MIGRATION extends Record<string, new (...args: any[]) => any>>(configFn: (env: any) => Models.ContextOptions<CTX, CTRL, ENTITY, REPO, PROVIDER, SUBSCRIBER, MIGRATION>) => () => {
5
5
  types: {
6
- readonly controllers: CTRL_1;
7
- readonly repositories: REPO_1;
8
- readonly providers: PROVIDER_1;
9
- readonly subscribers: SUBSCRIBER_1;
10
- readonly migrations: MIGRATION_1;
6
+ readonly controllers: any;
7
+ readonly repositories: any;
8
+ readonly providers: any;
9
+ readonly subscribers: any;
10
+ readonly migrations: any;
11
11
  };
12
- readonly contexts: CTX_1;
12
+ readonly contexts: any;
13
13
  readonly contextName: string;
14
14
  /**
15
15
  * @deprecated
@@ -44,13 +44,13 @@ export declare const createContextTemplate: <CTX extends Record<string, object>,
44
44
  };
45
45
  export declare const createContext: <CTX extends Record<string, object>, CTRL extends Record<string, new (...args: any[]) => any>, ENTITY extends Record<string, new (...args: any[]) => any>, REPO extends Record<string, new (...args: any[]) => any>, PROVIDER extends Record<string, new (...args: any[]) => any>, SUBSCRIBER extends Record<string, new (...args: any[]) => any>, MIGRATION extends Record<string, new (...args: any[]) => any>>(configFn: (env: any) => Models.ContextOptions<CTX, CTRL, ENTITY, REPO, PROVIDER, SUBSCRIBER, MIGRATION>) => {
46
46
  types: {
47
- readonly controllers: CTRL;
48
- readonly repositories: REPO;
49
- readonly providers: PROVIDER;
50
- readonly subscribers: SUBSCRIBER;
51
- readonly migrations: MIGRATION;
47
+ readonly controllers: any;
48
+ readonly repositories: any;
49
+ readonly providers: any;
50
+ readonly subscribers: any;
51
+ readonly migrations: any;
52
52
  };
53
- readonly contexts: CTX;
53
+ readonly contexts: any;
54
54
  readonly contextName: string;
55
55
  /**
56
56
  * @deprecated
@@ -48,13 +48,13 @@ export declare namespace Taon {
48
48
  const isElectron: boolean;
49
49
  const createContext: <CTX extends Record<string, object>, CTRL extends Record<string, new (...args: any[]) => any>, ENTITY extends Record<string, new (...args: any[]) => any>, REPO extends Record<string, new (...args: any[]) => any>, PROVIDER extends Record<string, new (...args: any[]) => any>, SUBSCRIBER extends Record<string, new (...args: any[]) => any>, MIGRATION extends Record<string, new (...args: any[]) => any>>(configFn: (env: any) => models.Models.ContextOptions<CTX, CTRL, ENTITY, REPO, PROVIDER, SUBSCRIBER, MIGRATION>) => {
50
50
  types: {
51
- readonly controllers: CTRL;
52
- readonly repositories: REPO;
53
- readonly providers: PROVIDER;
54
- readonly subscribers: SUBSCRIBER;
55
- readonly migrations: MIGRATION;
51
+ readonly controllers: any;
52
+ readonly repositories: any;
53
+ readonly providers: any;
54
+ readonly subscribers: any;
55
+ readonly migrations: any;
56
56
  };
57
- readonly contexts: CTX;
57
+ readonly contexts: any;
58
58
  readonly contextName: string;
59
59
  __ref(): Promise<endpointContext.EndpointContext>;
60
60
  readonly __refSync: endpointContext.EndpointContext;
@@ -73,13 +73,13 @@ export declare namespace Taon {
73
73
  };
74
74
  const createContextTemplate: <CTX extends Record<string, object>, CTRL extends Record<string, new (...args: any[]) => any>, ENTITY extends Record<string, new (...args: any[]) => any>, REPO extends Record<string, new (...args: any[]) => any>, PROVIDER extends Record<string, new (...args: any[]) => any>, SUBSCRIBER extends Record<string, new (...args: any[]) => any>, MIGRATION extends Record<string, new (...args: any[]) => any>>(configFn: (env: any) => models.Models.ContextOptions<CTX, CTRL, ENTITY, REPO, PROVIDER, SUBSCRIBER, MIGRATION>) => () => {
75
75
  types: {
76
- readonly controllers: CTRL_1;
77
- readonly repositories: REPO_1;
78
- readonly providers: PROVIDER_1;
79
- readonly subscribers: SUBSCRIBER_1;
80
- readonly migrations: MIGRATION_1;
76
+ readonly controllers: any;
77
+ readonly repositories: any;
78
+ readonly providers: any;
79
+ readonly subscribers: any;
80
+ readonly migrations: any;
81
81
  };
82
- readonly contexts: CTX_1;
82
+ readonly contexts: any;
83
83
  readonly contextName: string;
84
84
  __ref(): Promise<endpointContext.EndpointContext>;
85
85
  readonly __refSync: endpointContext.EndpointContext;
@@ -109,13 +109,13 @@ export declare namespace Taon {
109
109
  controllers: Function[];
110
110
  }) => Promise<{
111
111
  types: {
112
- readonly controllers: CTRL;
113
- readonly repositories: REPO;
114
- readonly providers: PROVIDER;
115
- readonly subscribers: SUBSCRIBER;
116
- readonly migrations: MIGRATION;
112
+ readonly controllers: any;
113
+ readonly repositories: any;
114
+ readonly providers: any;
115
+ readonly subscribers: any;
116
+ readonly migrations: any;
117
117
  };
118
- readonly contexts: CTX;
118
+ readonly contexts: any;
119
119
  readonly contextName: string;
120
120
  __ref(): Promise<endpointContext.EndpointContext>;
121
121
  readonly __refSync: endpointContext.EndpointContext;
@@ -1,2 +1,5 @@
1
1
  // @ts-nocheck
2
- export declare const inject: <T>(entity: () => new (...args: any[]) => T) => T;
2
+ export declare const inject: <T>(entity: () => new (...args: any[]) => T) => T;
3
+ /**
4
+ * TODO
5
+ */
@@ -1,21 +1,22 @@
1
1
  // @ts-nocheck
2
- import { TemplateRef, EventEmitter, ElementRef } from '@angular/core';
3
- import { Taon } from '../../../lib';
2
+ import { OnInit, TemplateRef, EventEmitter, ElementRef, OnDestroy } from '@angular/core';
4
3
  import { PageEvent } from '@angular/material/paginator';
5
4
  import { MtxGridColumn } from '@ng-matero/extensions/grid';
5
+ import { Taon } from '../../../lib';
6
6
  import * as i0 from "@angular/core";
7
- export declare class TaonTableComponent {
7
+ export declare class TaonTableComponent implements OnDestroy, OnInit {
8
8
  pageNumber: number;
9
9
  pageSize: number;
10
10
  allowedColumns: string[];
11
- entity: typeof Taon.Base.Entity | string;
12
11
  expansionTemplate: TemplateRef<any>;
13
12
  rows: {
14
13
  id: number;
15
14
  name: string;
16
15
  }[];
16
+ entityCrudController: Taon.Base.CrudController<any>;
17
17
  columns: MtxGridColumn[];
18
18
  pageSizeOptions: number[];
19
+ hideSearch: boolean;
19
20
  expansionChange: EventEmitter<any>;
20
21
  addingItem: EventEmitter<void>;
21
22
  search?: ElementRef<HTMLElement>;
@@ -25,13 +26,13 @@ export declare class TaonTableComponent {
25
26
  isLoading: boolean;
26
27
  totalElements: number;
27
28
  private sub;
28
- constructor();
29
+ get entity(): typeof Taon.Base.Entity;
29
30
  ngOnInit(): Promise<void>;
30
31
  ngOnDestroy(): void;
31
32
  getNextPage(e: PageEvent): Promise<void>;
32
- retriveData(): Promise<void>;
33
+ getData(): Promise<void>;
33
34
  expansionRow(e: any): void;
34
35
  onTableContextMenu(e: any): void;
35
36
  static ɵfac: i0.ɵɵFactoryDeclaration<TaonTableComponent, never>;
36
- static ɵcmp: i0.ɵɵComponentDeclaration<TaonTableComponent, "taon-table", never, { "pageNumber": { "alias": "pageNumber"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "allowedColumns": { "alias": "allowedColumns"; "required": false; }; "entity": { "alias": "entity"; "required": false; }; "expansionTemplate": { "alias": "expansionTemplate"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; }, { "expansionChange": "expansionChange"; "addingItem": "addingItem"; }, never, never, false, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<TaonTableComponent, "taon-table", never, { "pageNumber": { "alias": "pageNumber"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "allowedColumns": { "alias": "allowedColumns"; "required": false; }; "expansionTemplate": { "alias": "expansionTemplate"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "entityCrudController": { "alias": "entityCrudController"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "hideSearch": { "alias": "hideSearch"; "required": false; }; }, { "expansionChange": "expansionChange"; "addingItem": "addingItem"; }, never, never, false, never>;
37
38
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taon/websql",
3
- "version": "19.0.4",
3
+ "version": "19.0.6",
4
4
  "module": "fesm2022/taon.mjs",
5
5
  "typings": "index.d.ts",
6
6
  "exports": {
@@ -1,2 +0,0 @@
1
- // @ts-nocheck
2
- export declare const globalPublicStorage: typeof globalThis;
@@ -1,2 +0,0 @@
1
- // @ts-nocheck
2
- export declare const globalPublicStorage: typeof globalThis;
@@ -1,2 +0,0 @@
1
- // @ts-nocheck
2
- export declare const globalPublicStorage: typeof globalThis;