taon 19.0.60 → 19.0.62

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 (142) hide show
  1. package/README.md +160 -160
  2. package/bin/start.js +281 -279
  3. package/bin/taon +6 -6
  4. package/bin/taon-debug +5 -5
  5. package/bin/taon-debug-brk +5 -5
  6. package/browser/README.md +24 -24
  7. package/browser/fesm2022/taon.mjs +82 -24
  8. package/browser/fesm2022/taon.mjs.map +1 -1
  9. package/browser/lib/base-classes/base-context.d.ts +1 -6
  10. package/browser/lib/base-classes/base-controller.d.ts +18 -2
  11. package/browser/lib/base-classes/base-repository.d.ts +1 -1
  12. package/browser/lib/base-classes/base.d.ts +1 -6
  13. package/browser/lib/create-context.d.ts +2 -12
  14. package/browser/lib/endpoint-context.d.ts +3 -0
  15. package/browser/lib/index.d.ts +5 -18
  16. package/browser/lib/models.d.ts +6 -0
  17. package/browser/lib/realtime/realtime-client.d.ts +2 -2
  18. package/browser/package.json +1 -1
  19. package/icon-menu-taon.svg +15 -15
  20. package/lib/base-classes/base-context.d.ts +1 -6
  21. package/lib/base-classes/base-controller.d.ts +18 -2
  22. package/lib/base-classes/base-controller.js +25 -5
  23. package/lib/base-classes/base-controller.js.map +1 -1
  24. package/lib/base-classes/base-repository.d.ts +1 -1
  25. package/lib/base-classes/base-repository.js +12 -6
  26. package/lib/base-classes/base-repository.js.map +1 -1
  27. package/lib/base-classes/base.d.ts +1 -6
  28. package/lib/build-info._auto-generated_.d.ts +1 -1
  29. package/lib/build-info._auto-generated_.js +1 -1
  30. package/lib/create-context.d.ts +2 -12
  31. package/lib/create-context.js +21 -11
  32. package/lib/create-context.js.map +1 -1
  33. package/lib/decorators/classes/controller-config.d.ts +0 -11
  34. package/lib/decorators/classes/controller-config.js +0 -10
  35. package/lib/decorators/classes/controller-config.js.map +1 -1
  36. package/lib/decorators/classes/controller-options.d.ts +0 -5
  37. package/lib/decorators/classes/controller-options.js +0 -4
  38. package/lib/decorators/classes/controller-options.js.map +1 -1
  39. package/lib/endpoint-context.d.ts +3 -0
  40. package/lib/endpoint-context.js +24 -6
  41. package/lib/endpoint-context.js.map +1 -1
  42. package/lib/env/env.angular-node-app.d.ts +2 -0
  43. package/lib/env/env.angular-node-app.js +4 -2
  44. package/lib/env/env.angular-node-app.js.map +1 -1
  45. package/lib/env/env.docs-webapp.d.ts +2 -0
  46. package/lib/env/env.docs-webapp.js +4 -2
  47. package/lib/env/env.docs-webapp.js.map +1 -1
  48. package/lib/env/env.electron-app.d.ts +2 -0
  49. package/lib/env/env.electron-app.js +4 -2
  50. package/lib/env/env.electron-app.js.map +1 -1
  51. package/lib/env/env.mobile-app.d.ts +2 -0
  52. package/lib/env/env.mobile-app.js +4 -2
  53. package/lib/env/env.mobile-app.js.map +1 -1
  54. package/lib/env/env.npm-lib-and-cli-tool.d.ts +2 -0
  55. package/lib/env/env.npm-lib-and-cli-tool.js +4 -2
  56. package/lib/env/env.npm-lib-and-cli-tool.js.map +1 -1
  57. package/lib/env/env.vscode-plugin.d.ts +2 -0
  58. package/lib/env/env.vscode-plugin.js +4 -2
  59. package/lib/env/env.vscode-plugin.js.map +1 -1
  60. package/lib/env.d.ts +2 -0
  61. package/lib/env.js +7 -0
  62. package/lib/env.js.map +1 -0
  63. package/lib/index.d.ts +5 -18
  64. package/lib/index.js +3 -1
  65. package/lib/index.js.map +1 -1
  66. package/lib/models.d.ts +6 -0
  67. package/lib/models.js.map +1 -1
  68. package/lib/realtime/realtime-client.d.ts +2 -2
  69. package/lib/realtime/realtime-client.js +14 -7
  70. package/lib/realtime/realtime-client.js.map +1 -1
  71. package/lib/realtime/realtime-server.js +17 -14
  72. package/lib/realtime/realtime-server.js.map +1 -1
  73. package/lib/storage.d.ts +1 -0
  74. package/lib/storage.js +6 -0
  75. package/lib/storage.js.map +1 -0
  76. package/lib/ui/directives/index.d.ts +3 -0
  77. package/lib/ui/directives/index.js +5 -0
  78. package/lib/ui/directives/index.js.map +1 -0
  79. package/lib/ui/directives/safe.pipe.d.ts +7 -0
  80. package/lib/ui/directives/taon-inject-html.directive.d.ts +6 -0
  81. package/lib/ui/directives/taon-long-press.directive.d.ts +22 -0
  82. package/lib/ui/directives/view-mode.d.ts +5 -0
  83. package/lib/ui/directives/view-mode.js +10 -0
  84. package/lib/ui/directives/view-mode.js.map +1 -0
  85. package/lib/ui/index.js +2 -2
  86. package/lib/ui/taon-admin-mode-configuration/index.js +2 -2
  87. package/lib/ui/taon-admin-mode-configuration/taon-admin-mode-configuration.component.d.ts +43 -0
  88. package/lib/ui/taon-admin-mode-configuration/taon-admin.models.d.ts +5 -0
  89. package/lib/ui/taon-admin-mode-configuration/taon-admin.models.js +3 -0
  90. package/lib/ui/taon-admin-mode-configuration/taon-admin.models.js.map +1 -0
  91. package/lib/ui/taon-full-material.module.d.ts +5 -0
  92. package/lib/ui/taon-github-fork-me-corner/index.d.ts +2 -0
  93. package/lib/ui/taon-github-fork-me-corner/index.js +5 -0
  94. package/lib/ui/taon-github-fork-me-corner/index.js.map +1 -0
  95. package/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.component.d.ts +3 -0
  96. package/lib/ui/taon-github-fork-me-corner/taon-github-fork-me-corner.module.d.ts +2 -0
  97. package/lib/ui/taon-github-fork-me-ribbon/index.d.ts +2 -0
  98. package/lib/ui/taon-github-fork-me-ribbon/index.js +5 -0
  99. package/lib/ui/taon-github-fork-me-ribbon/index.js.map +1 -0
  100. package/lib/ui/taon-github-fork-me-ribbon/taon-github-fork-me-ribbon.component.d.ts +3 -0
  101. package/lib/ui/taon-github-fork-me-ribbon/taon-github-fork-me-ribbon.module.d.ts +2 -0
  102. package/lib/ui/taon-notifications/index.d.ts +4 -0
  103. package/lib/ui/taon-notifications/index.js +24 -0
  104. package/lib/ui/taon-notifications/index.js.map +1 -0
  105. package/lib/ui/taon-notifications/taon-notifications.component.d.ts +9 -0
  106. package/lib/ui/taon-notifications/taon-notifications.models.d.ts +6 -0
  107. package/lib/ui/taon-notifications/taon-notifications.models.js +5 -0
  108. package/lib/ui/taon-notifications/taon-notifications.models.js.map +1 -0
  109. package/lib/ui/taon-notifications/taon-notifications.module.d.ts +2 -0
  110. package/lib/ui/taon-notifications/taon-notifications.service.d.ts +11 -0
  111. package/lib/ui/taon-progress-bar/index.d.ts +2 -0
  112. package/lib/ui/taon-progress-bar/index.js +5 -0
  113. package/lib/ui/taon-progress-bar/index.js.map +1 -0
  114. package/lib/ui/taon-progress-bar/taon-progress-bar.component.d.ts +13 -0
  115. package/lib/ui/taon-progress-bar/taon-progress-bar.module.d.ts +2 -0
  116. package/lib/ui/taon-session-passcode/index.d.ts +1 -0
  117. package/lib/ui/taon-session-passcode/index.js +5 -0
  118. package/lib/ui/taon-session-passcode/index.js.map +1 -0
  119. package/lib/ui/taon-session-passcode/taon-session-passcode.component.d.ts +35 -0
  120. package/lib/ui/taon-table/index.d.ts +2 -0
  121. package/lib/ui/taon-table/index.js +5 -0
  122. package/lib/ui/taon-table/index.js.map +1 -0
  123. package/lib/ui/taon-table/taon-table.component.d.ts +34 -0
  124. package/lib/ui/taon-table/taon-table.module.d.ts +2 -0
  125. package/lib/ui/taon.models.d.ts +11 -0
  126. package/lib/ui/taon.models.js +3 -0
  127. package/lib/ui/taon.models.js.map +1 -0
  128. package/package.json +1 -1
  129. package/tmp-environment.json +39 -0
  130. package/websql/README.md +24 -24
  131. package/websql/fesm2022/taon.mjs +76 -20
  132. package/websql/fesm2022/taon.mjs.map +1 -1
  133. package/websql/lib/base-classes/base-context.d.ts +1 -6
  134. package/websql/lib/base-classes/base-controller.d.ts +18 -2
  135. package/websql/lib/base-classes/base-repository.d.ts +1 -1
  136. package/websql/lib/base-classes/base.d.ts +1 -6
  137. package/websql/lib/create-context.d.ts +2 -12
  138. package/websql/lib/endpoint-context.d.ts +3 -0
  139. package/websql/lib/index.d.ts +5 -18
  140. package/websql/lib/models.d.ts +6 -0
  141. package/websql/lib/realtime/realtime-client.d.ts +2 -2
  142. package/websql/package.json +1 -1
@@ -0,0 +1,22 @@
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
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum ViewMode {
2
+ Add = "Add",
3
+ Edit = "Edit",
4
+ Preview = "Preview"
5
+ }
@@ -0,0 +1,10 @@
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
@@ -0,0 +1 @@
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"}
package/lib/ui/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1757176647501 = dummy1757176647501;
4
- function dummy1757176647501() { }
3
+ exports.dummy1759519130965 = dummy1759519130965;
4
+ function dummy1759519130965() { }
5
5
  //# sourceMappingURL=index.js.map
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.dummy1757176648128 = dummy1757176648128;
4
- function dummy1757176648128() { }
3
+ exports.dummy1759519132202 = dummy1759519132202;
4
+ function dummy1759519132202() { }
5
5
  //# sourceMappingURL=index.js.map
@@ -0,0 +1,43 @@
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
+ }
@@ -0,0 +1,5 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ export interface TaonAdminModeTab {
3
+ name: string;
4
+ template: TemplateRef<any>;
5
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=taon-admin.models.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"taon-admin.models.js","sourceRoot":"","sources":[""],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * @deprecated too heavy!
3
+ */
4
+ export declare class TaonFullMaterialModule {
5
+ }
@@ -0,0 +1,2 @@
1
+ export * from './taon-github-fork-me-corner.component';
2
+ export * from './taon-github-fork-me-corner.module';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.dummy1747308818363 = dummy1747308818363;
4
+ function dummy1747308818363() { }
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -0,0 +1,3 @@
1
+ export declare class TaonGithubForkMeCornerComponent {
2
+ url: string;
3
+ }
@@ -0,0 +1,2 @@
1
+ export declare class TaonGithubForkMeCornerModule {
2
+ }
@@ -0,0 +1,2 @@
1
+ export * from './taon-github-fork-me-ribbon.component';
2
+ export * from './taon-github-fork-me-ribbon.module';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.dummy1747308818371 = dummy1747308818371;
4
+ function dummy1747308818371() { }
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -0,0 +1,3 @@
1
+ export declare class TaonGithubForkMeRibbonComponent {
2
+ url: string;
3
+ }
@@ -0,0 +1,2 @@
1
+ export declare class TaonGithubForkMeRibbonModule {
2
+ }
@@ -0,0 +1,4 @@
1
+ export * from './taon-notifications.component';
2
+ export * from './taon-notifications.models';
3
+ export * from './taon-notifications.module';
4
+ export * from './taon-notifications.service';
@@ -0,0 +1,24 @@
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
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";AAAA,KAAK;AACL,KAAK;;;;;;;;;;;;;;;;AAEL,8DAA4C;AAC5C,KAAK;AACL,KAAK;AAEL,KAAK;AACL,KAAK"}
@@ -0,0 +1,9 @@
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
+ }
@@ -0,0 +1,6 @@
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'>;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.dummy1747308818386 = dummy1747308818386;
4
+ function dummy1747308818386() { }
5
+ //# sourceMappingURL=taon-notifications.models.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"taon-notifications.models.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare class TaonNotificationsModule {
2
+ }
@@ -0,0 +1,11 @@
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
+ }
@@ -0,0 +1,2 @@
1
+ export * from './taon-progress-bar.component';
2
+ export * from './taon-progress-bar.module';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.dummy1747308818392 = dummy1747308818392;
4
+ function dummy1747308818392() { }
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -0,0 +1,13 @@
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
+ }
@@ -0,0 +1,2 @@
1
+ export declare class TaonProgressBarModule {
2
+ }
@@ -0,0 +1 @@
1
+ export * from './taon-session-passcode.component';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.dummy1747308818401 = dummy1747308818401;
4
+ function dummy1747308818401() { }
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -0,0 +1,35 @@
1
+ import { ChangeDetectorRef, DestroyRef, ElementRef, OnInit } from '@angular/core';
2
+ import { FormControl, FormGroup } from '@angular/forms';
3
+ import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
4
+ export interface TaonSessionPasscodeModel {
5
+ passcode: string;
6
+ }
7
+ export type TaonSessionPasscodeForm = {
8
+ [prop in keyof TaonSessionPasscodeModel]: FormControl<TaonSessionPasscodeModel[prop]>;
9
+ };
10
+ export declare class TaonSessionPasscodeComponent implements OnInit {
11
+ private element;
12
+ private domSanitizer;
13
+ private cdr;
14
+ destroyRef: DestroyRef;
15
+ passcode: string;
16
+ message: string;
17
+ safeMessage: SafeHtml;
18
+ private lastPasscode;
19
+ display: string;
20
+ form: FormGroup<TaonSessionPasscodeForm>;
21
+ constructor(element: ElementRef<HTMLElement>, domSanitizer: DomSanitizer, cdr: ChangeDetectorRef);
22
+ ngOnInit(): void;
23
+ submit({ passcode }: Partial<TaonSessionPasscodeModel>): void;
24
+ private isPasscodeOK;
25
+ ngAfterViewInit(): void;
26
+ focus(): void;
27
+ hide(): void;
28
+ show(): void;
29
+ clear(): void;
30
+ onKeyup(event: KeyboardEvent & {
31
+ target: {
32
+ value: string;
33
+ };
34
+ }): void;
35
+ }
@@ -0,0 +1,2 @@
1
+ export * from './taon-table.component';
2
+ export * from './taon-table.module';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.dummy1747308818410 = dummy1747308818410;
4
+ function dummy1747308818410() { }
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
@@ -0,0 +1,34 @@
1
+ import { OnInit, TemplateRef, EventEmitter, ElementRef, OnDestroy } from '@angular/core';
2
+ import { PageEvent } from '@angular/material/paginator';
3
+ import { MtxGridColumn } from '@ng-matero/extensions/grid';
4
+ import { Taon } from 'taon';
5
+ export declare class TaonTableComponent implements OnDestroy, OnInit {
6
+ pageNumber: number;
7
+ pageSize: number;
8
+ allowedColumns: string[];
9
+ expansionTemplate: TemplateRef<any>;
10
+ rows: {
11
+ id: number;
12
+ name: string;
13
+ }[];
14
+ entityCrudController: Taon.Base.CrudController<any>;
15
+ columns: MtxGridColumn[];
16
+ pageSizeOptions: number[];
17
+ hideSearch: boolean;
18
+ expansionChange: EventEmitter<any>;
19
+ addingItem: EventEmitter<void>;
20
+ search?: ElementRef<HTMLElement>;
21
+ private searchInputChange$;
22
+ expandable: boolean;
23
+ showPaginator: boolean;
24
+ isLoading: boolean;
25
+ totalElements: number;
26
+ private sub;
27
+ get entity(): typeof Taon.Base.Entity;
28
+ ngOnInit(): Promise<void>;
29
+ ngOnDestroy(): void;
30
+ getNextPage(e: PageEvent): Promise<void>;
31
+ getData(): Promise<void>;
32
+ expansionRow(e: any): void;
33
+ onTableContextMenu(e: any): void;
34
+ }
@@ -0,0 +1,2 @@
1
+ export declare class TaonTableModule {
2
+ }
@@ -0,0 +1,11 @@
1
+ import { CoreModels } from 'tnp-core';
2
+ export type TaonDisplayMode = 'view' | 'edit';
3
+ export interface TaonUploadedFile {
4
+ data: Buffer;
5
+ encoding: string;
6
+ md5: string;
7
+ mimetype: CoreModels.ContentType;
8
+ mv: (path: any, callback: any) => any;
9
+ name: string;
10
+ truncated: boolean;
11
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=taon.models.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"taon.models.js","sourceRoot":"","sources":[""],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taon",
3
- "version": "19.0.60",
3
+ "version": "19.0.62",
4
4
  "scripts": {
5
5
  "mkdocs": "python3 -m mkdocs",
6
6
  "taon init": "taon init",
@@ -0,0 +1,39 @@
1
+ {
2
+ "website": {
3
+ "domain": "taon.example.domain.com",
4
+ "title": "Taon"
5
+ },
6
+ "paths": {},
7
+ "config": {},
8
+ "container": {
9
+ "start": "tnp"
10
+ },
11
+ "ports": {},
12
+ "init": {},
13
+ "build": {
14
+ "pwa": {},
15
+ "watch": false
16
+ },
17
+ "loading": {
18
+ "preAngularBootstrap": {},
19
+ "afterAngularBootstrap": {}
20
+ },
21
+ "release": {
22
+ "cli": {},
23
+ "lib": {},
24
+ "autoReleaseUsingConfig": true,
25
+ "releaseVersionBumpType": "patch",
26
+ "releaseType": "manual",
27
+ "targetArtifact": "npm-lib-and-cli-tool",
28
+ "envName": "__",
29
+ "resolvedNewVersion": "19.0.13"
30
+ },
31
+ "copyToManager": {},
32
+ "buildInfo": {
33
+ "date": "2025-05-13T21:02:51.000Z",
34
+ "hash": "ec29911645a4abf818923ce456c1678b84474453"
35
+ },
36
+ "currentProjectName": "taon",
37
+ "currentProjectType": "isomorphic-lib",
38
+ "pathsTsconfig": "\"paths\": {\"@lib\":[\"./src/lib\"],\"@lib/*\":[\"./src/lib/*\"],\"taon/src\":[\"./src/lib\"],\"taon/src/*\":[\"./src/lib/*\"]},"
39
+ }
package/websql/README.md CHANGED
@@ -1,24 +1,24 @@
1
- # MyLib
2
-
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
8
- > Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
9
-
10
- ## Build
11
-
12
- Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
-
14
- ## Publishing
15
-
16
- After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
17
-
18
- ## Running unit tests
19
-
20
- Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
-
22
- ## Further help
23
-
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
1
+ # MyLib
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
8
+ > Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
13
+
14
+ ## Publishing
15
+
16
+ After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
+
22
+ ## Further help
23
+
24
+ To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.