taon 19.0.50 → 19.0.52

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 (204) hide show
  1. package/browser/fesm2022/taon.mjs +167 -77
  2. package/browser/fesm2022/taon.mjs.map +1 -1
  3. package/browser/lib/base-classes/base-context.d.ts +1 -0
  4. package/browser/lib/base-classes/base-controller.d.ts +0 -6
  5. package/browser/lib/base-classes/base-injector.d.ts +4 -5
  6. package/browser/lib/base-classes/base-middleware.d.ts +17 -0
  7. package/browser/lib/base-classes/base.d.ts +3 -0
  8. package/browser/lib/constants.d.ts +1 -1
  9. package/browser/lib/create-context.d.ts +4 -2
  10. package/browser/lib/decorators/classes/middleware-decorator.d.ts +8 -0
  11. package/browser/lib/endpoint-context.d.ts +6 -5
  12. package/browser/lib/index.d.ts +8 -2
  13. package/browser/lib/models.d.ts +65 -5
  14. package/browser/package.json +1 -1
  15. package/lib/base-classes/base-context.d.ts +1 -0
  16. package/lib/base-classes/base-controller.d.ts +0 -6
  17. package/lib/base-classes/base-controller.js +0 -8
  18. package/lib/base-classes/base-controller.js.map +1 -1
  19. package/lib/base-classes/base-injector.d.ts +4 -5
  20. package/lib/base-classes/base-injector.js +6 -7
  21. package/lib/base-classes/base-injector.js.map +1 -1
  22. package/lib/base-classes/base-middleware.d.ts +20 -0
  23. package/lib/base-classes/base-middleware.js +13 -0
  24. package/lib/base-classes/base-middleware.js.map +1 -0
  25. package/lib/base-classes/base.d.ts +3 -0
  26. package/lib/base-classes/base.js +2 -0
  27. package/lib/base-classes/base.js.map +1 -1
  28. package/lib/build-info._auto-generated_.d.ts +1 -1
  29. package/lib/build-info._auto-generated_.js +1 -1
  30. package/lib/constants.d.ts +1 -1
  31. package/lib/constants.js +2 -3
  32. package/lib/constants.js.map +1 -1
  33. package/lib/create-context.d.ts +4 -2
  34. package/lib/create-context.js +40 -36
  35. package/lib/create-context.js.map +1 -1
  36. package/lib/decorators/classes/middleware-decorator.d.ts +7 -0
  37. package/lib/decorators/classes/middleware-decorator.js +21 -0
  38. package/lib/decorators/classes/middleware-decorator.js.map +1 -0
  39. package/lib/decorators/classes/provider-decorator.js +1 -1
  40. package/lib/decorators/classes/provider-decorator.js.map +1 -1
  41. package/lib/endpoint-context.d.ts +6 -5
  42. package/lib/endpoint-context.js +79 -29
  43. package/lib/endpoint-context.js.map +1 -1
  44. package/lib/env/env.angular-node-app.d.ts +1 -0
  45. package/lib/env/env.angular-node-app.js +3 -2
  46. package/lib/env/env.angular-node-app.js.map +1 -1
  47. package/lib/env/env.docs-webapp.d.ts +1 -0
  48. package/lib/env/env.docs-webapp.js +3 -2
  49. package/lib/env/env.docs-webapp.js.map +1 -1
  50. package/lib/env/env.electron-app.d.ts +1 -0
  51. package/lib/env/env.electron-app.js +3 -2
  52. package/lib/env/env.electron-app.js.map +1 -1
  53. package/lib/env/env.mobile-app.d.ts +1 -0
  54. package/lib/env/env.mobile-app.js +3 -2
  55. package/lib/env/env.mobile-app.js.map +1 -1
  56. package/lib/env/env.npm-lib-and-cli-tool.d.ts +1 -0
  57. package/lib/env/env.npm-lib-and-cli-tool.js +3 -2
  58. package/lib/env/env.npm-lib-and-cli-tool.js.map +1 -1
  59. package/lib/env/env.vscode-plugin.d.ts +1 -0
  60. package/lib/env/env.vscode-plugin.js +3 -2
  61. package/lib/env/env.vscode-plugin.js.map +1 -1
  62. package/lib/env.js +1 -5
  63. package/lib/env.js.map +1 -1
  64. package/lib/index.d.ts +8 -2
  65. package/lib/index.js +2 -0
  66. package/lib/index.js.map +1 -1
  67. package/lib/models.d.ts +65 -5
  68. package/lib/models.js +7 -5
  69. package/lib/models.js.map +1 -1
  70. package/lib/storage.d.ts +1 -1
  71. package/lib/storage.js +1 -5
  72. package/lib/storage.js.map +1 -1
  73. package/lib/ui/index.js +2 -2
  74. package/lib/ui/taon-admin-mode-configuration/index.js +2 -2
  75. package/package.json +1 -1
  76. package/websql/fesm2022/taon.mjs +168 -78
  77. package/websql/fesm2022/taon.mjs.map +1 -1
  78. package/websql/lib/base-classes/base-context.d.ts +1 -0
  79. package/websql/lib/base-classes/base-controller.d.ts +0 -6
  80. package/websql/lib/base-classes/base-injector.d.ts +4 -5
  81. package/websql/lib/base-classes/base-middleware.d.ts +21 -0
  82. package/websql/lib/base-classes/base.d.ts +3 -0
  83. package/websql/lib/constants.d.ts +1 -1
  84. package/websql/lib/create-context.d.ts +4 -2
  85. package/websql/lib/decorators/classes/middleware-decorator.d.ts +8 -0
  86. package/websql/lib/endpoint-context.d.ts +6 -5
  87. package/websql/lib/index.d.ts +8 -2
  88. package/websql/lib/models.d.ts +65 -5
  89. package/websql/package.json +1 -1
  90. package/lib/base-classes/base-subscriber.d.ts +0 -4
  91. package/lib/base-classes/base-subscriber.js +0 -25
  92. package/lib/base-classes/base-subscriber.js.map +0 -1
  93. package/lib/realtime/realtime-strategy/realtime-abstract-mock.d.ts +0 -10
  94. package/lib/realtime/realtime-strategy/realtime-abstract-mock.js +0 -214
  95. package/lib/realtime/realtime-strategy/realtime-abstract-mock.js.map +0 -1
  96. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/index.d.ts +0 -0
  97. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/index.js +0 -5
  98. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/index.js.map +0 -1
  99. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-namespace.d.ts +0 -22
  100. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-namespace.js +0 -139
  101. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-namespace.js.map +0 -1
  102. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-wrapper.d.ts +0 -16
  103. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-wrapper.js +0 -68
  104. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-main-wrapper.js.map +0 -1
  105. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-namespace.d.ts +0 -10
  106. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-namespace.js +0 -56
  107. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-namespace.js.map +0 -1
  108. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-wrapper.d.ts +0 -10
  109. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-wrapper.js +0 -50
  110. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc-renderer-wrapper.js.map +0 -1
  111. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc.models.d.ts +0 -13
  112. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc.models.js +0 -3
  113. package/lib/realtime/realtime-strategy/realtime-strategy-ipc-models/realtime-strategy-ipc.models.js.map +0 -1
  114. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/index.d.ts +0 -2
  115. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/index.js +0 -6
  116. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/index.js.map +0 -1
  117. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-client.d.ts +0 -16
  118. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-client.js +0 -54
  119. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-client.js.map +0 -1
  120. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-namespaces.d.ts +0 -17
  121. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-namespaces.js +0 -52
  122. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-namespaces.js.map +0 -1
  123. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-server.d.ts +0 -11
  124. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-server.js +0 -39
  125. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-server.js.map +0 -1
  126. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-socket.d.ts +0 -13
  127. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-socket.js +0 -46
  128. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock-socket.js.map +0 -1
  129. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock.models.d.ts +0 -11
  130. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock.models.js +0 -3
  131. package/lib/realtime/realtime-strategy/realtime-strategy-mock-models/realtime-strategy-mock.models.js.map +0 -1
  132. package/lib/ui/directives/firedev-inject-html.directive.d.ts +0 -6
  133. package/lib/ui/directives/firedev-long-press.directive.d.ts +0 -22
  134. package/lib/ui/directives/index.d.ts +0 -3
  135. package/lib/ui/directives/index.js +0 -5
  136. package/lib/ui/directives/index.js.map +0 -1
  137. package/lib/ui/directives/safe.pipe.d.ts +0 -7
  138. package/lib/ui/directives/taon-inject-html.directive.d.ts +0 -6
  139. package/lib/ui/directives/taon-long-press.directive.d.ts +0 -22
  140. package/lib/ui/directives/view-mode.d.ts +0 -5
  141. package/lib/ui/directives/view-mode.js +0 -10
  142. package/lib/ui/directives/view-mode.js.map +0 -1
  143. package/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/index.d.ts +0 -2
  144. package/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/index.js +0 -5
  145. package/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/index.js.map +0 -1
  146. package/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.component.d.ts +0 -29
  147. package/lib/ui/taon-admin-mode-configuration/components/taon-admin-edit-mode/taon-admin-edit-mode.module.d.ts +0 -2
  148. package/lib/ui/taon-admin-mode-configuration/components/taon-db-admin/index.d.ts +0 -1
  149. package/lib/ui/taon-admin-mode-configuration/components/taon-db-admin/index.js +0 -5
  150. package/lib/ui/taon-admin-mode-configuration/components/taon-db-admin/index.js.map +0 -1
  151. package/lib/ui/taon-admin-mode-configuration/components/taon-db-admin/taon-db-admin.component.d.ts +0 -8
  152. package/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/index.d.ts +0 -2
  153. package/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/index.js +0 -5
  154. package/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/index.js.map +0 -1
  155. package/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.component.d.ts +0 -13
  156. package/lib/ui/taon-admin-mode-configuration/components/taon-file-general-opt/taon-file-general-opt.module.d.ts +0 -2
  157. package/lib/ui/taon-admin-mode-configuration/models/taon-admin-mode-tabs.d.ts +0 -5
  158. package/lib/ui/taon-admin-mode-configuration/models/taon-admin-mode-tabs.js +0 -3
  159. package/lib/ui/taon-admin-mode-configuration/models/taon-admin-mode-tabs.js.map +0 -1
  160. package/lib/ui/taon-admin-mode-configuration/taon-admin-control.service.d.ts +0 -14
  161. package/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.component.d.ts +0 -43
  162. package/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.module.d.ts +0 -2
  163. package/lib/ui/taon-admin-mode-configuration/taon-admin.models.d.ts +0 -5
  164. package/lib/ui/taon-admin-mode-configuration/taon-admin.models.js +0 -3
  165. package/lib/ui/taon-admin-mode-configuration/taon-admin.models.js.map +0 -1
  166. package/lib/ui/taon-full-material.module.d.ts +0 -5
  167. package/lib/ui/taon-github-fork-me-corner/index.d.ts +0 -2
  168. package/lib/ui/taon-github-fork-me-corner/index.js +0 -5
  169. package/lib/ui/taon-github-fork-me-corner/index.js.map +0 -1
  170. package/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.component.d.ts +0 -3
  171. package/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.module.d.ts +0 -2
  172. package/lib/ui/taon-github-fork-me-ribbon/index.d.ts +0 -2
  173. package/lib/ui/taon-github-fork-me-ribbon/index.js +0 -5
  174. package/lib/ui/taon-github-fork-me-ribbon/index.js.map +0 -1
  175. package/lib/ui/taon-github-fork-me-ribbon/taon-github-fork-me-ribbon.component.d.ts +0 -3
  176. package/lib/ui/taon-github-fork-me-ribbon/taon-github-fork-me-ribbon.module.d.ts +0 -2
  177. package/lib/ui/taon-notifications/index.d.ts +0 -4
  178. package/lib/ui/taon-notifications/index.js +0 -24
  179. package/lib/ui/taon-notifications/index.js.map +0 -1
  180. package/lib/ui/taon-notifications/taon-notifications.component.d.ts +0 -9
  181. package/lib/ui/taon-notifications/taon-notifications.models.d.ts +0 -6
  182. package/lib/ui/taon-notifications/taon-notifications.models.js +0 -5
  183. package/lib/ui/taon-notifications/taon-notifications.models.js.map +0 -1
  184. package/lib/ui/taon-notifications/taon-notifications.module.d.ts +0 -2
  185. package/lib/ui/taon-notifications/taon-notifications.service.d.ts +0 -11
  186. package/lib/ui/taon-progress-bar/index.d.ts +0 -2
  187. package/lib/ui/taon-progress-bar/index.js +0 -5
  188. package/lib/ui/taon-progress-bar/index.js.map +0 -1
  189. package/lib/ui/taon-progress-bar/taon-progress-bar.component.d.ts +0 -13
  190. package/lib/ui/taon-progress-bar/taon-progress-bar.module.d.ts +0 -2
  191. package/lib/ui/taon-session-passcode/index.d.ts +0 -1
  192. package/lib/ui/taon-session-passcode/index.js +0 -5
  193. package/lib/ui/taon-session-passcode/index.js.map +0 -1
  194. package/lib/ui/taon-session-passcode/taon-session-passcode.component.d.ts +0 -35
  195. package/lib/ui/taon-table/index.d.ts +0 -2
  196. package/lib/ui/taon-table/index.js +0 -5
  197. package/lib/ui/taon-table/index.js.map +0 -1
  198. package/lib/ui/taon-table/taon-table.component.d.ts +0 -34
  199. package/lib/ui/taon-table/taon-table.module.d.ts +0 -2
  200. package/lib/ui/taon.models.d.ts +0 -11
  201. package/lib/ui/taon.models.js +0 -3
  202. package/lib/ui/taon.models.js.map +0 -1
  203. package/lib/ui/toan-full-material.module.d.ts +0 -2
  204. package/tmp-environment.json +0 -43
@@ -1,39 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MockServer = void 0;
4
- var realtime_strategy_mock_namespaces_1 = require("./realtime-strategy-mock-namespaces");
5
- var realtime_strategy_mock_socket_1 = require("./realtime-strategy-mock-socket");
6
- var MockServer = /** @class */ (function () {
7
- function MockServer(contextName) {
8
- this.contextName = contextName;
9
- this.namespaces = {
10
- '/': new realtime_strategy_mock_namespaces_1.MockNamespace('/', this.contextName)
11
- };
12
- }
13
- MockServer.prototype.of = function (namespace) {
14
- if (!this.namespaces[namespace]) {
15
- this.namespaces[namespace] = new realtime_strategy_mock_namespaces_1.MockNamespace(namespace, this.contextName);
16
- }
17
- return this.namespaces[namespace];
18
- };
19
- MockServer.prototype.on = function (event, callback) {
20
- if (event === 'connection') {
21
- this.namespaces['/'].on('connection', callback);
22
- }
23
- };
24
- MockServer.prototype.emit = function (event, data) {
25
- this.namespaces['/'].emit(event, data);
26
- };
27
- MockServer.prototype.connect = function (id, namespace) {
28
- if (namespace === void 0) { namespace = '/'; }
29
- var ns = this.of(namespace);
30
- var socket = new realtime_strategy_mock_socket_1.MockSocket(id, ns);
31
- ns.on('connection', function (socket) {
32
- socket.emit('connect');
33
- });
34
- return socket;
35
- };
36
- return MockServer;
37
- }());
38
- exports.MockServer = MockServer;
39
- //# sourceMappingURL=realtime-strategy-mock-server.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"realtime-strategy-mock-server.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;AAAA,yFAAoE;AACpE,iFAA6D;AAG7D;IAKE,oBAAmB,WAAmB;QAAnB,gBAAW,GAAX,WAAW,CAAQ;QAJ9B,eAAU,GAAe;YAC/B,GAAG,EAAE,IAAI,iDAAa,CAAC,GAAG,EAAE,IAAI,CAAC,WAAW,CAAC;SAC9C,CAAC;IAEuC,CAAC;IAE1C,uBAAE,GAAF,UAAG,SAAiB;QAClB,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,CAAC;YAChC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,GAAG,IAAI,iDAAa,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC;QAC9E,CAAC;QACD,OAAO,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC;IACpC,CAAC;IAED,uBAAE,GAAF,UAAG,KAAa,EAAE,QAAsC;QACtD,IAAI,KAAK,KAAK,YAAY,EAAE,CAAC;YAC3B,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,EAAE,CAAC,YAAY,EAAE,QAAQ,CAAC,CAAC;QAClD,CAAC;IACH,CAAC;IAED,yBAAI,GAAJ,UAAK,KAAa,EAAE,IAAU;QAC5B,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;IACzC,CAAC;IAED,4BAAO,GAAP,UAAQ,EAAU,EAAE,SAAuB;QAAvB,0BAAA,EAAA,eAAuB;QACzC,IAAM,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC;QAC9B,IAAM,MAAM,GAAG,IAAI,0CAAU,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC;QACtC,EAAE,CAAC,EAAE,CAAC,YAAY,EAAE,UAAC,MAAkB;YACrC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QACzB,CAAC,CAAC,CAAC;QACH,OAAO,MAAM,CAAC;IAChB,CAAC;IACH,iBAAC;AAAD,CAAC,AAhCD,IAgCC;AAhCY,gCAAU"}
@@ -1,13 +0,0 @@
1
- import { MockNamespace } from "./realtime-strategy-mock-namespaces";
2
- export declare class MockSocket {
3
- id: string;
4
- private namespace;
5
- private listeners;
6
- constructor(id: string, namespace: MockNamespace);
7
- on(event: string, callback: (data?: any) => void): void;
8
- off(event: string, callback?: (data?: any) => void): void;
9
- emit(event: string, data?: any): void;
10
- join(room: string): void;
11
- leave(room: string): void;
12
- disconnect(): void;
13
- }
@@ -1,46 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MockSocket = void 0;
4
- var MockSocket = /** @class */ (function () {
5
- function MockSocket(id, namespace) {
6
- this.id = id;
7
- this.namespace = namespace;
8
- this.listeners = {};
9
- this.namespace.addSocket(this);
10
- }
11
- MockSocket.prototype.on = function (event, callback) {
12
- if (!this.listeners[event]) {
13
- this.listeners[event] = [];
14
- }
15
- this.listeners[event].push(callback);
16
- };
17
- MockSocket.prototype.off = function (event, callback) {
18
- if (!this.listeners[event])
19
- return;
20
- if (callback) {
21
- this.listeners[event] = this.listeners[event].filter(function (listener) { return listener !== callback; });
22
- }
23
- else {
24
- delete this.listeners[event];
25
- }
26
- };
27
- MockSocket.prototype.emit = function (event, data) {
28
- if (this.listeners[event]) {
29
- this.listeners[event].forEach(function (listener) { return listener(data); });
30
- }
31
- };
32
- MockSocket.prototype.join = function (room) {
33
- this.namespace.joinRoom(this, room);
34
- };
35
- MockSocket.prototype.leave = function (room) {
36
- this.namespace.leaveRoom(this, room);
37
- };
38
- MockSocket.prototype.disconnect = function () {
39
- this.emit('disconnect');
40
- this.namespace.removeSocket(this);
41
- this.listeners = {};
42
- };
43
- return MockSocket;
44
- }());
45
- exports.MockSocket = MockSocket;
46
- //# sourceMappingURL=realtime-strategy-mock-socket.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"realtime-strategy-mock-socket.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;AAIA;IAGE,oBAAmB,EAAU,EAAU,SAAwB;QAA5C,OAAE,GAAF,EAAE,CAAQ;QAAU,cAAS,GAAT,SAAS,CAAe;QAFvD,cAAS,GAAmB,EAAE,CAAC;QAGrC,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;IACjC,CAAC;IAED,uBAAE,GAAF,UAAG,KAAa,EAAE,QAA8B;QAC9C,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,CAAC;YAC3B,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC;QAC7B,CAAC;QACD,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;IACvC,CAAC;IAED,wBAAG,GAAH,UAAI,KAAa,EAAE,QAA+B;QAChD,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC;YAAE,OAAO;QAEnC,IAAI,QAAQ,EAAE,CAAC;YACb,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,UAAA,QAAQ,IAAI,OAAA,QAAQ,KAAK,QAAQ,EAArB,CAAqB,CAAC,CAAC;QAC1F,CAAC;aAAM,CAAC;YACN,OAAO,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;QAC/B,CAAC;IACH,CAAC;IAED,yBAAI,GAAJ,UAAK,KAAa,EAAE,IAAU;QAC5B,IAAI,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,EAAE,CAAC;YAC1B,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,UAAA,QAAQ,IAAI,OAAA,QAAQ,CAAC,IAAI,CAAC,EAAd,CAAc,CAAC,CAAC;QAC5D,CAAC;IACH,CAAC;IAED,yBAAI,GAAJ,UAAK,IAAY;QACf,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IACtC,CAAC;IAED,0BAAK,GAAL,UAAM,IAAY;QAChB,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IACvC,CAAC;IAED,+BAAU,GAAV;QACE,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QACxB,IAAI,CAAC,SAAS,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;QAClC,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;IACtB,CAAC;IACH,iBAAC;AAAD,CAAC,AA3CD,IA2CC;AA3CY,gCAAU"}
@@ -1,11 +0,0 @@
1
- import { MockNamespace } from "./realtime-strategy-mock-namespaces";
2
- import { MockSocket } from "./realtime-strategy-mock-socket";
3
- export interface EventListeners {
4
- [event: string]: Array<(data?: any) => void>;
5
- }
6
- export interface Rooms {
7
- [room: string]: Set<MockSocket>;
8
- }
9
- export interface Namespaces {
10
- [namespace: string]: MockNamespace;
11
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=realtime-strategy-mock.models.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"realtime-strategy-mock.models.js","sourceRoot":"","sources":[""],"names":[],"mappings":""}
@@ -1,6 +0,0 @@
1
- import { ElementRef } from '@angular/core';
2
- export declare class TaonInjectHTMLDirective {
3
- private host;
4
- set taonInjectHTML(content: string);
5
- constructor(host: ElementRef);
6
- }
@@ -1,22 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { _ } from 'tnp-core';
3
- export declare class TaonLongPress {
4
- pressDuration: number;
5
- onLongPress: EventEmitter<any>;
6
- onLongPressing: EventEmitter<any>;
7
- onLongPressEnd: EventEmitter<any>;
8
- private pressing;
9
- private longPressing;
10
- private timeout;
11
- private mouseX;
12
- private mouseY;
13
- get press(): boolean;
14
- get longPress(): boolean;
15
- allowTrigger: boolean;
16
- triggerEnd: (() => void) & _.Cancelable;
17
- onMouseDown(event: any): void;
18
- onMouseMove(event: any): void;
19
- loop(event: any): void;
20
- endPress(emit?: boolean): void;
21
- onMouseUp(): void;
22
- }
@@ -1,3 +0,0 @@
1
- export * from './taon-long-press.directive';
2
- export * from './taon-inject-html.directive';
3
- export * from './safe.pipe';
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1747687978594 = dummy1747687978594;
4
- function dummy1747687978594() { }
5
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -1,7 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
3
- export declare class SafePipe implements PipeTransform {
4
- protected sanitizer: DomSanitizer;
5
- constructor(sanitizer: DomSanitizer);
6
- transform(value: any, type: string): SafeHtml | SafeStyle | SafeScript | SafeUrl | SafeResourceUrl;
7
- }
@@ -1,6 +0,0 @@
1
- import { ElementRef } from '@angular/core';
2
- export declare class TaonInjectHTMLDirective {
3
- private host;
4
- set taonInjectHTML(content: string);
5
- constructor(host: ElementRef);
6
- }
@@ -1,22 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { _ } from 'tnp-core';
3
- export declare class TaonLongPress {
4
- pressDuration: number;
5
- onLongPress: EventEmitter<any>;
6
- onLongPressing: EventEmitter<any>;
7
- onLongPressEnd: EventEmitter<any>;
8
- private pressing;
9
- private longPressing;
10
- private timeout;
11
- private mouseX;
12
- private mouseY;
13
- get press(): boolean;
14
- get longPress(): boolean;
15
- allowTrigger: boolean;
16
- triggerEnd: (() => void) & _.Cancelable;
17
- onMouseDown(event: any): void;
18
- onMouseMove(event: any): void;
19
- loop(event: any): void;
20
- endPress(emit?: boolean): void;
21
- onMouseUp(): void;
22
- }
@@ -1,5 +0,0 @@
1
- export declare enum ViewMode {
2
- Add = "Add",
3
- Edit = "Edit",
4
- Preview = "Preview"
5
- }
@@ -1,10 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ViewMode = void 0;
4
- var ViewMode;
5
- (function (ViewMode) {
6
- ViewMode["Add"] = "Add";
7
- ViewMode["Edit"] = "Edit";
8
- ViewMode["Preview"] = "Preview";
9
- })(ViewMode || (exports.ViewMode = ViewMode = {}));
10
- //# sourceMappingURL=view-mode.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"view-mode.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;;AAAA,IAAY,QAIX;AAJD,WAAY,QAAQ;IAClB,uBAAW,CAAA;IACX,yBAAa,CAAA;IACb,+BAAmB,CAAA;AACrB,CAAC,EAJW,QAAQ,wBAAR,QAAQ,QAInB"}
@@ -1,2 +0,0 @@
1
- export * from './taon-admin-edit-mode.component';
2
- export * from './taon-admin-edit-mode.module';
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1732703266643 = dummy1732703266643;
4
- function dummy1732703266643() { }
5
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -1,29 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { Subscription } from 'rxjs';
3
- import { Router } from '@angular/router';
4
- import 'brace';
5
- import 'brace/mode/css';
6
- import 'brace/mode/typescript';
7
- import 'brace/theme/github';
8
- import { MtxGridColumn } from '@ng-matero/extensions/grid';
9
- export declare class TaonAdminEditModeComponent implements OnInit {
10
- private router;
11
- inited$: import("rxjs").Observable<boolean>;
12
- private destroyed$;
13
- admin: any;
14
- handlers: Subscription[];
15
- entity: any;
16
- files: any;
17
- selectedTabIndex: number;
18
- fileToSearch: string;
19
- columns: MtxGridColumn[];
20
- taonAdminEditModeDataChanged: EventEmitter<any>;
21
- taonAdminEditModeData: any;
22
- constructor(router: Router);
23
- ngOnInit(): void;
24
- ngOnDestroy(): void;
25
- ngAfterViewInit(): void;
26
- expansionRow(e: any): void;
27
- refresFilesList(): void;
28
- searchFind(file: any): any;
29
- }
@@ -1,2 +0,0 @@
1
- export declare class TaonAdminEditModeModule {
2
- }
@@ -1 +0,0 @@
1
- export * from './taon-db-admin.component';
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1732703266704 = dummy1732703266704;
4
- function dummy1732703266704() { }
5
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -1,8 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- export declare class TaonDbAdminComponent implements OnInit {
3
- dataBaseInited: boolean;
4
- tables: any[];
5
- ngOnInit(): Promise<void>;
6
- trackByName(a: any): any;
7
- initDb(): Promise<void>;
8
- }
@@ -1,2 +0,0 @@
1
- export * from './taon-file-general-opt.component';
2
- export * from './taon-file-general-opt.module';
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1732703266743 = dummy1732703266743;
4
- function dummy1732703266743() { }
5
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -1,13 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { FormlyFieldConfig } from '@ngx-formly/core';
3
- import { Subscription } from 'rxjs';
4
- export declare class TaonFileGeneralOptComponent implements OnInit {
5
- height: number;
6
- handlers: Subscription[];
7
- fieldsOrder: any[];
8
- fields: FormlyFieldConfig[];
9
- file: any;
10
- constructor();
11
- ngOnInit(): void;
12
- ngOnDestroy(): void;
13
- }
@@ -1,2 +0,0 @@
1
- export declare class TaonFileGeneralOptModule {
2
- }
@@ -1,5 +0,0 @@
1
- import { TemplateRef } from '@angular/core';
2
- export interface TaonAdminModeTab {
3
- name: string;
4
- template: TemplateRef<any>;
5
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=taon-admin-mode-tabs.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"taon-admin-mode-tabs.js","sourceRoot":"","sources":[""],"names":[],"mappings":""}
@@ -1,14 +0,0 @@
1
- import { ApplicationRef, TemplateRef } from '@angular/core';
2
- import type { TaonAdminModeConfigurationComponent } from './taon-admin-mode-configuration.component';
3
- export declare class TaonAdminService {
4
- private cdr;
5
- taonAdminModeConfigurationComponent: TaonAdminModeConfigurationComponent;
6
- private readonly admin;
7
- /**
8
- * @deprecated
9
- */
10
- disableScroll(): void;
11
- constructor(cdr: ApplicationRef);
12
- addTab(name: string, template: TemplateRef<any>): void;
13
- init(taonAdminModeConfigurationComponent: TaonAdminModeConfigurationComponent): void;
14
- }
@@ -1,43 +0,0 @@
1
- import { CdkDragEnd, Point } from '@angular/cdk/drag-drop';
2
- import { ChangeDetectorRef, EventEmitter, OnInit, AfterViewInit, OnDestroy } from '@angular/core';
3
- import { Subject } from 'rxjs';
4
- import { BreakpointsService } from 'static-columns';
5
- import { TaonAdminService } from './taon-admin.service';
6
- export declare class TaonAdminModeConfigurationComponent implements OnInit, AfterViewInit, OnDestroy {
7
- private breakpointsService;
8
- $destroy: Subject<unknown>;
9
- readonly cdr: ChangeDetectorRef;
10
- readonly taonAdminService: TaonAdminService;
11
- readonly isDesktop: boolean;
12
- isWebSQLMode: boolean;
13
- hideTaonToolsInProduction: boolean;
14
- isIframe: boolean;
15
- height: number;
16
- openedOnce: boolean;
17
- reloading: boolean;
18
- showPasscode: boolean;
19
- passcode: string;
20
- message: string;
21
- dragPositionX: number;
22
- dragPositionY: number;
23
- dragPositionZero: Point;
24
- dragPosition: Point;
25
- selectedIndex: number;
26
- tabGroup: any;
27
- wasOpenDraggablePopup: boolean;
28
- taonAdminModeConfigurationDataChanged: EventEmitter<any>;
29
- taonAdminModeConfigurationData: any;
30
- get opened(): boolean;
31
- set opened(v: boolean);
32
- constructor(breakpointsService: BreakpointsService);
33
- ngOnInit(): Promise<void>;
34
- ngAfterViewInit(): void;
35
- ngOnDestroy(): void;
36
- onResize(event: Event): void;
37
- reloadTabs(): Promise<void>;
38
- toogle(): Promise<void>;
39
- toogleFullScreen(): Promise<void>;
40
- resetDrag(): void;
41
- moved(c: CdkDragEnd): void;
42
- scrollTabs(event: any): void;
43
- }
@@ -1,2 +0,0 @@
1
- export declare class TaonAdminModeConfigurationModule {
2
- }
@@ -1,5 +0,0 @@
1
- import { TemplateRef } from '@angular/core';
2
- export interface TaonAdminModeTab {
3
- name: string;
4
- template: TemplateRef<any>;
5
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=taon-admin.models.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"taon-admin.models.js","sourceRoot":"","sources":[""],"names":[],"mappings":""}
@@ -1,5 +0,0 @@
1
- /**
2
- * @deprecated too heavy!
3
- */
4
- export declare class TaonFullMaterialModule {
5
- }
@@ -1,2 +0,0 @@
1
- export * from './taon-github-fork-me-corner.component';
2
- export * from './taon-github-fork-me-corner.module';
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1747687978700 = dummy1747687978700;
4
- function dummy1747687978700() { }
5
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -1,3 +0,0 @@
1
- export declare class TaonGithubForkMeCornerComponent {
2
- url: string;
3
- }
@@ -1,2 +0,0 @@
1
- export declare class TaonGithubForkMeCornerModule {
2
- }
@@ -1,2 +0,0 @@
1
- export * from './taon-github-fork-me-ribbon.component';
2
- export * from './taon-github-fork-me-ribbon.module';
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1747687978739 = dummy1747687978739;
4
- function dummy1747687978739() { }
5
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -1,3 +0,0 @@
1
- export declare class TaonGithubForkMeRibbonComponent {
2
- url: string;
3
- }
@@ -1,2 +0,0 @@
1
- export declare class TaonGithubForkMeRibbonModule {
2
- }
@@ -1,4 +0,0 @@
1
- export * from './taon-notifications.component';
2
- export * from './taon-notifications.models';
3
- export * from './taon-notifications.module';
4
- export * from './taon-notifications.service';
@@ -1,24 +0,0 @@
1
- "use strict";
2
- /* */
3
- /* */
4
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
- if (k2 === undefined) k2 = k;
6
- var desc = Object.getOwnPropertyDescriptor(m, k);
7
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
- desc = { enumerable: true, get: function() { return m[k]; } };
9
- }
10
- Object.defineProperty(o, k2, desc);
11
- }) : (function(o, m, k, k2) {
12
- if (k2 === undefined) k2 = k;
13
- o[k2] = m[k];
14
- }));
15
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
17
- };
18
- Object.defineProperty(exports, "__esModule", { value: true });
19
- __exportStar(require("./taon-notifications.models"), exports);
20
- /* */
21
- /* */
22
- /* */
23
- /* */
24
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";AAAA,KAAK;AACL,KAAK;;;;;;;;;;;;;;;;AAEL,8DAA4C;AAC5C,KAAK;AACL,KAAK;AAEL,KAAK;AACL,KAAK"}
@@ -1,9 +0,0 @@
1
- import { OnInit, TemplateRef } from '@angular/core';
2
- import { Subscription } from 'rxjs';
3
- import { TaonNotificationsService } from './taon-notifications.service';
4
- export declare class TaonNotificationsComponent implements OnInit {
5
- private notification;
6
- constructor(notification: TaonNotificationsService);
7
- ngOnInit(): void;
8
- init(subscribtionsArray: Subscription[], template: TemplateRef<any>, callback: (dataToTempalte: any) => any): void;
9
- }
@@ -1,6 +0,0 @@
1
- import { HotToastService } from '@ngneat/hot-toast';
2
- export declare class TaonNotificationOptions {
3
- title: string;
4
- subtitle?: string;
5
- }
6
- export type TaonNotificationType = keyof Omit<HotToastService, 'defaultConfig' | 'observe'>;
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1747687978808 = dummy1747687978808;
4
- function dummy1747687978808() { }
5
- //# sourceMappingURL=taon-notifications.models.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"taon-notifications.models.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare class TaonNotificationsModule {
2
- }
@@ -1,11 +0,0 @@
1
- import { HotToastService } from '@ngneat/hot-toast';
2
- import { TaonNotificationOptions } from './taon-notifications.models';
3
- export declare class TaonNotificationsService {
4
- private toast;
5
- constructor(toast: HotToastService);
6
- private options;
7
- success(options: TaonNotificationOptions | string): import("@ngneat/hot-toast").CreateHotToastRef<unknown>;
8
- error(options: TaonNotificationOptions | string): import("@ngneat/hot-toast").CreateHotToastRef<unknown>;
9
- warn(options: TaonNotificationOptions | string): import("@ngneat/hot-toast").CreateHotToastRef<unknown>;
10
- info(options: TaonNotificationOptions | string): import("@ngneat/hot-toast").CreateHotToastRef<unknown>;
11
- }
@@ -1,2 +0,0 @@
1
- export * from './taon-progress-bar.component';
2
- export * from './taon-progress-bar.module';
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1747687978838 = dummy1747687978838;
4
- function dummy1747687978838() { }
5
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -1,13 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { Subscription } from 'rxjs';
3
- export declare class TaonProgressBarComponent implements OnInit {
4
- labProgress: any;
5
- isDesktop: boolean;
6
- admin: any;
7
- handlers: Subscription[];
8
- constructor();
9
- ngOnInit(): void;
10
- ngOnDestroy(): void;
11
- ngAfterViewInit(): void;
12
- loadProgressBar(config: any, instance?: import("axios").AxiosStatic): void;
13
- }
@@ -1,2 +0,0 @@
1
- export declare class TaonProgressBarModule {
2
- }
@@ -1 +0,0 @@
1
- export * from './taon-session-passcode.component';