taon-ui 19.0.15 → 19.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/README.md +24 -24
- package/browser/fesm2022/taon-ui.mjs.map +1 -1
- package/browser/package.json +1 -1
- package/lib/build-info._auto-generated_.d.ts +2 -1
- package/lib/build-info._auto-generated_.js +3 -2
- package/lib/build-info._auto-generated_.js.map +1 -1
- package/lib/directives/index.d.ts +3 -0
- package/lib/directives/index.js +5 -0
- package/lib/directives/index.js.map +1 -0
- package/lib/directives/safe.pipe.d.ts +7 -0
- package/lib/directives/taon-inject-html.directive.d.ts +6 -0
- package/lib/directives/taon-long-press.directive.d.ts +22 -0
- package/lib/directives/view-mode.d.ts +5 -0
- package/lib/directives/view-mode.js +10 -0
- package/lib/directives/view-mode.js.map +1 -0
- package/lib/index.js +2 -2
- package/lib/layouts/taon-bootstrap-navbar/index.js +2 -2
- package/lib/ui/directives/index.js +2 -2
- package/lib/ui/index.js +2 -2
- package/lib/ui/taon-admin-mode-configuration/taon-admin.service.d.ts +21 -0
- package/lib/ui/taon-github-fork-me-corner/index.js +2 -2
- package/lib/ui/taon-github-fork-me-ribbon/index.js +2 -2
- package/lib/ui/taon-notifications/taon-notifications.models.js +2 -2
- package/lib/ui/taon-progress-bar/index.js +2 -2
- package/lib/ui/taon-session-passcode/index.js +2 -2
- package/lib/ui/taon-table/index.js +2 -2
- package/package.json +1 -1
- package/tmp-environment.json +39 -0
- package/websql/README.md +24 -24
- package/websql/fesm2022/taon-ui.mjs.map +1 -1
- package/websql/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":[""],"names":[],"mappings":";;AAAA,gDAAwC;AAAxC,SAAgB,kBAAkB,KAAK,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
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
|
+
}
|
|
@@ -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,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/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1754249670767 = dummy1754249670767;
|
|
4
|
+
function dummy1754249670767() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1754249671844 = dummy1754249671844;
|
|
4
|
+
function dummy1754249671844() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1754249671854 = dummy1754249671854;
|
|
4
|
+
function dummy1754249671854() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
package/lib/ui/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1754249670835 = dummy1754249670835;
|
|
4
|
+
function dummy1754249670835() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare class TaonAdminService {
|
|
2
|
+
private static _instance;
|
|
3
|
+
static get Instance(): TaonAdminService;
|
|
4
|
+
scrollableEnabled: boolean;
|
|
5
|
+
private onEditMode;
|
|
6
|
+
onEditMode$: import("rxjs").Observable<unknown>;
|
|
7
|
+
adminPanelIsOpen: boolean;
|
|
8
|
+
draggablePopupMode: boolean;
|
|
9
|
+
draggablePopupModeFullScreen: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* Property used in taon
|
|
12
|
+
*/
|
|
13
|
+
keepWebsqlDbDataAfterReload: boolean;
|
|
14
|
+
constructor();
|
|
15
|
+
setEditMode(value: boolean): void;
|
|
16
|
+
setKeepWebsqlDbDataAfterReload(value: boolean): void;
|
|
17
|
+
enabledTabs: any[];
|
|
18
|
+
hide(): void;
|
|
19
|
+
show(): void;
|
|
20
|
+
logout(): void;
|
|
21
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1754249671892 = dummy1754249671892;
|
|
4
|
+
function dummy1754249671892() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1754249671902 = dummy1754249671902;
|
|
4
|
+
function dummy1754249671902() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1754249671922 = dummy1754249671922;
|
|
4
|
+
function dummy1754249671922() { }
|
|
5
5
|
//# sourceMappingURL=taon-notifications.models.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1754249671930 = dummy1754249671930;
|
|
4
|
+
function dummy1754249671930() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1754249671942 = dummy1754249671942;
|
|
4
|
+
function dummy1754249671942() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1754249671955 = dummy1754249671955;
|
|
4
|
+
function dummy1754249671955() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"website": {
|
|
3
|
+
"domain": "taon-ui.example.domain.com",
|
|
4
|
+
"title": "Taon Ui"
|
|
5
|
+
},
|
|
6
|
+
"paths": {},
|
|
7
|
+
"config": {},
|
|
8
|
+
"container": {
|
|
9
|
+
"only": []
|
|
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.5"
|
|
30
|
+
},
|
|
31
|
+
"copyToManager": {},
|
|
32
|
+
"buildInfo": {
|
|
33
|
+
"date": "2025-05-29T20:31:46.000Z",
|
|
34
|
+
"hash": "b61fc23fc471434c4bcf6776f38d71d2438e83d8"
|
|
35
|
+
},
|
|
36
|
+
"currentProjectName": "taon-ui",
|
|
37
|
+
"currentProjectType": "isomorphic-lib",
|
|
38
|
+
"pathsTsconfig": "\"paths\": {\"@lib\":[\"./src/lib\"],\"@lib/*\":[\"./src/lib/*\"],\"taon-ui/src\":[\"./src/lib\"],\"taon-ui/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.
|