@acorex/modules 20.0.10 → 20.0.11
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/fesm2022/acorex-modules-data-management.mjs +4 -4
- package/fesm2022/acorex-modules-data-management.mjs.map +1 -1
- package/fesm2022/{acorex-modules-issue-management-acorex-modules-issue-management-BhascWnH.mjs → acorex-modules-issue-management-acorex-modules-issue-management-DKdtV_QL.mjs} +2 -7
- package/fesm2022/acorex-modules-issue-management-acorex-modules-issue-management-DKdtV_QL.mjs.map +1 -0
- package/fesm2022/{acorex-modules-issue-management-capture-screen.component-BIWYcqOI.mjs → acorex-modules-issue-management-capture-screen.component-CucnKDr1.mjs} +2 -2
- package/fesm2022/{acorex-modules-issue-management-capture-screen.component-BIWYcqOI.mjs.map → acorex-modules-issue-management-capture-screen.component-CucnKDr1.mjs.map} +1 -1
- package/fesm2022/acorex-modules-issue-management.mjs +1 -1
- package/package.json +1 -1
- package/fesm2022/acorex-modules-issue-management-acorex-modules-issue-management-BhascWnH.mjs.map +0 -1
@@ -1719,7 +1719,6 @@ const AXMCaptureScreenService = signalStore({ providedIn: 'root' }, withState(()
|
|
1719
1719
|
};
|
1720
1720
|
};
|
1721
1721
|
const finishRecording = async (result) => {
|
1722
|
-
debugger;
|
1723
1722
|
// if (store.onFinish() && result) {
|
1724
1723
|
// store.onFinish()?.(result);
|
1725
1724
|
// }
|
@@ -1729,7 +1728,6 @@ const AXMCaptureScreenService = signalStore({ providedIn: 'root' }, withState(()
|
|
1729
1728
|
componentRef.destroy();
|
1730
1729
|
};
|
1731
1730
|
const stopRecorder = async () => {
|
1732
|
-
debugger;
|
1733
1731
|
await stopRecorderSubject.pipe(take(1)).subscribe(async () => {
|
1734
1732
|
try {
|
1735
1733
|
if (mediaRecorder && videoStream?.active) {
|
@@ -1806,7 +1804,7 @@ const AXMCaptureScreenService = signalStore({ providedIn: 'root' }, withState(()
|
|
1806
1804
|
return {
|
1807
1805
|
init: async (onFinish) => {
|
1808
1806
|
try {
|
1809
|
-
const { AXMCaptureScreenComponent } = await import('./acorex-modules-issue-management-capture-screen.component-
|
1807
|
+
const { AXMCaptureScreenComponent } = await import('./acorex-modules-issue-management-capture-screen.component-CucnKDr1.mjs');
|
1810
1808
|
const viewContainerRef = application.components[0].injector.get(ViewContainerRef);
|
1811
1809
|
componentRef = viewContainerRef.createComponent(AXMCaptureScreenComponent);
|
1812
1810
|
document.body.appendChild(componentRef.location.nativeElement);
|
@@ -1818,7 +1816,6 @@ const AXMCaptureScreenService = signalStore({ providedIn: 'root' }, withState(()
|
|
1818
1816
|
}
|
1819
1817
|
},
|
1820
1818
|
cancelClick() {
|
1821
|
-
debugger;
|
1822
1819
|
if (store.isRecording()) {
|
1823
1820
|
stopRecorder();
|
1824
1821
|
return;
|
@@ -1952,7 +1949,6 @@ const AXMReportNewIssueViewModel = signalStore({ providedIn: 'root' }, withState
|
|
1952
1949
|
async startCapturing() {
|
1953
1950
|
patchState(store, { status: 'recording' });
|
1954
1951
|
captureScreenService.init(async (data) => {
|
1955
|
-
debugger;
|
1956
1952
|
try {
|
1957
1953
|
if (typeof data === 'object' && 'blob' in data) {
|
1958
1954
|
const newMedia = [];
|
@@ -2235,7 +2231,6 @@ class AXMDownloadLogAction extends AXPWorkflowAction {
|
|
2235
2231
|
this.translateService = inject(AXTranslationService);
|
2236
2232
|
}
|
2237
2233
|
async execute() {
|
2238
|
-
debugger;
|
2239
2234
|
const data = JSON.stringify(await this.logCaptureService.logs());
|
2240
2235
|
const fileName = `logs-${new Date().toLocaleDateString(this.translateService.getActiveLang())}.txt`;
|
2241
2236
|
const blobFile = await new Blob([data], { type: 'text/txt;charset=utf-8' });
|
@@ -2555,4 +2550,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.7", ngImpor
|
|
2555
2550
|
*/
|
2556
2551
|
|
2557
2552
|
export { AXMCaptureScreenService as A, RootConfig as R, AXMIssueTypeService as a, AXMIssueTypeServiceImpl as b, AXMMyReportedIssuesService as c, AXMMyReportedIssuesServiceImpl as d, AXMReportedIssuesService as e, AXMReportedIssuesServiceImpl as f, AXMEntityProvider as g, AXMLogCaptureService as h, issueTypeEntityFactory as i, AXMIssueManagementModule as j, AXMMenuProvider as k, AXMPermissionsKeys as l, myReportedIssuesEntityFactory as m, AXMSettingProvider as n, reportedIssuesEntityFactory as r };
|
2558
|
-
//# sourceMappingURL=acorex-modules-issue-management-acorex-modules-issue-management-
|
2553
|
+
//# sourceMappingURL=acorex-modules-issue-management-acorex-modules-issue-management-DKdtV_QL.mjs.map
|