wacom 21.0.6 → 21.1.0
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/wacom.mjs +79 -82
- package/fesm2022/wacom.mjs.map +1 -1
- package/package.json +1 -1
- package/types/wacom.d.ts +3 -10
package/fesm2022/wacom.mjs
CHANGED
|
@@ -186,10 +186,10 @@ class MetaService {
|
|
|
186
186
|
console.warn(`To disable these warnings, set metaConfig.warnMissingGuard: false in your MetaConfig passed to MetaModule.forRoot()`);
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
190
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.
|
|
189
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: MetaService, deps: [{ token: CONFIG_TOKEN, optional: true }, { token: i1.Router }, { token: i2.Meta }, { token: i2.Title }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
190
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: MetaService, providedIn: 'root' }); }
|
|
191
191
|
}
|
|
192
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
192
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: MetaService, decorators: [{
|
|
193
193
|
type: Injectable,
|
|
194
194
|
args: [{
|
|
195
195
|
providedIn: 'root',
|
|
@@ -249,10 +249,10 @@ class MetaGuard {
|
|
|
249
249
|
this.metaService.setTag(key, this._meta.defaults[key]);
|
|
250
250
|
});
|
|
251
251
|
}
|
|
252
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
253
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.
|
|
252
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: MetaGuard, deps: [{ token: MetaService }, { token: CONFIG_TOKEN, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
253
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: MetaGuard, providedIn: 'root' }); }
|
|
254
254
|
}
|
|
255
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
255
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: MetaGuard, decorators: [{
|
|
256
256
|
type: Injectable,
|
|
257
257
|
args: [{ providedIn: 'root' }]
|
|
258
258
|
}], ctorParameters: () => [{ type: MetaService }, { type: undefined, decorators: [{
|
|
@@ -675,10 +675,10 @@ class CoreService {
|
|
|
675
675
|
if (sig)
|
|
676
676
|
sig.update(updater);
|
|
677
677
|
}
|
|
678
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
679
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.
|
|
678
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: CoreService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
679
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: CoreService, providedIn: 'root' }); }
|
|
680
680
|
}
|
|
681
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
681
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: CoreService, decorators: [{
|
|
682
682
|
type: Injectable,
|
|
683
683
|
args: [{
|
|
684
684
|
providedIn: 'root',
|
|
@@ -698,14 +698,11 @@ class CrudComponent {
|
|
|
698
698
|
*
|
|
699
699
|
* @param formConfig - Object describing form title and its component structure
|
|
700
700
|
* @param formService - Any service that conforms to FormServiceInterface (usually casted)
|
|
701
|
-
* @param translateService - An object providing a translate() method for i18n
|
|
702
701
|
* @param crudService - CRUD service implementing get/create/update/delete
|
|
703
702
|
*/
|
|
704
|
-
constructor(formConfig, formService,
|
|
705
|
-
this.formService = formService;
|
|
706
|
-
this.translateService = translateService;
|
|
703
|
+
constructor(formConfig, formService, crudService, module = '') {
|
|
707
704
|
/** The array of documents currently loaded and shown */
|
|
708
|
-
this.documents = signal([], ...(ngDevMode ?
|
|
705
|
+
this.documents = signal([], { ...(ngDevMode ? { debugName: "documents" } : {}) });
|
|
709
706
|
/** Current pagination page */
|
|
710
707
|
this.page = 1;
|
|
711
708
|
/** CoreService handles timing and copying helpers */
|
|
@@ -722,7 +719,7 @@ class CrudComponent {
|
|
|
722
719
|
this._module = '';
|
|
723
720
|
const form = formConfig;
|
|
724
721
|
this.__form = formService;
|
|
725
|
-
this.form =
|
|
722
|
+
this.form = form;
|
|
726
723
|
this.crudService = crudService;
|
|
727
724
|
this._module = module;
|
|
728
725
|
}
|
|
@@ -974,10 +971,10 @@ class ClickOutsideDirective {
|
|
|
974
971
|
// cleanup
|
|
975
972
|
this._dref.onDestroy(() => document.removeEventListener('pointerdown', this.handler, true));
|
|
976
973
|
}
|
|
977
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
978
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.
|
|
974
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: ClickOutsideDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
975
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.0.1", type: ClickOutsideDirective, isStandalone: true, selector: "[clickOutside]", outputs: { clickOutside: "clickOutside" }, ngImport: i0 }); }
|
|
979
976
|
}
|
|
980
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
977
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: ClickOutsideDirective, decorators: [{
|
|
981
978
|
type: Directive,
|
|
982
979
|
args: [{
|
|
983
980
|
selector: '[clickOutside]',
|
|
@@ -988,7 +985,7 @@ class ManualTypeDirective {
|
|
|
988
985
|
constructor() {
|
|
989
986
|
this.el = inject(ElementRef);
|
|
990
987
|
// Bind as: manualType="password" or [manualType]="expr"
|
|
991
|
-
this.manualType = input(null, ...(ngDevMode ?
|
|
988
|
+
this.manualType = input(null, { ...(ngDevMode ? { debugName: "manualType" } : {}), alias: 'manualType' });
|
|
992
989
|
this.syncTypeEffect = effect(() => {
|
|
993
990
|
const t = this.manualType();
|
|
994
991
|
if (!t)
|
|
@@ -999,12 +996,12 @@ class ManualTypeDirective {
|
|
|
999
996
|
if (native.type !== t) {
|
|
1000
997
|
native.type = t;
|
|
1001
998
|
}
|
|
1002
|
-
}, ...(ngDevMode ?
|
|
999
|
+
}, { ...(ngDevMode ? { debugName: "syncTypeEffect" } : {}) });
|
|
1003
1000
|
}
|
|
1004
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
1005
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.0.
|
|
1001
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: ManualTypeDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1002
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "21.0.1", type: ManualTypeDirective, isStandalone: true, selector: "input[manualType]", inputs: { manualType: { classPropertyName: "manualType", publicName: "manualType", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0 }); }
|
|
1006
1003
|
}
|
|
1007
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
1004
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: ManualTypeDirective, decorators: [{
|
|
1008
1005
|
type: Directive,
|
|
1009
1006
|
args: [{
|
|
1010
1007
|
selector: 'input[manualType]',
|
|
@@ -1043,10 +1040,10 @@ class ArrPipe {
|
|
|
1043
1040
|
}
|
|
1044
1041
|
return arr;
|
|
1045
1042
|
}
|
|
1046
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
1047
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.
|
|
1043
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: ArrPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1044
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.1", ngImport: i0, type: ArrPipe, isStandalone: true, name: "arr" }); }
|
|
1048
1045
|
}
|
|
1049
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
1046
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: ArrPipe, decorators: [{
|
|
1050
1047
|
type: Pipe,
|
|
1051
1048
|
args: [{
|
|
1052
1049
|
name: 'arr',
|
|
@@ -1060,10 +1057,10 @@ class MongodatePipe {
|
|
|
1060
1057
|
let timestamp = _id.toString().substring(0, 8);
|
|
1061
1058
|
return new Date(parseInt(timestamp, 16) * 1000);
|
|
1062
1059
|
}
|
|
1063
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
1064
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.
|
|
1060
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: MongodatePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1061
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.1", ngImport: i0, type: MongodatePipe, isStandalone: true, name: "mongodate" }); }
|
|
1065
1062
|
}
|
|
1066
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
1063
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: MongodatePipe, decorators: [{
|
|
1067
1064
|
type: Pipe,
|
|
1068
1065
|
args: [{
|
|
1069
1066
|
name: 'mongodate',
|
|
@@ -1075,10 +1072,10 @@ class NumberPipe {
|
|
|
1075
1072
|
const result = Number(value); // Convert value to a number
|
|
1076
1073
|
return isNaN(result) ? 0 : result; // Return 0 if conversion fails
|
|
1077
1074
|
}
|
|
1078
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
1079
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.
|
|
1075
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: NumberPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1076
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.1", ngImport: i0, type: NumberPipe, isStandalone: true, name: "number" }); }
|
|
1080
1077
|
}
|
|
1081
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
1078
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: NumberPipe, decorators: [{
|
|
1082
1079
|
type: Pipe,
|
|
1083
1080
|
args: [{
|
|
1084
1081
|
name: 'number',
|
|
@@ -1106,10 +1103,10 @@ class PaginationPipe {
|
|
|
1106
1103
|
}
|
|
1107
1104
|
return arr.slice((config.page - 1) * config.perPage, config.page * config.perPage);
|
|
1108
1105
|
}
|
|
1109
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
1110
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.
|
|
1106
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: PaginationPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1107
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.1", ngImport: i0, type: PaginationPipe, isStandalone: true, name: "page", pure: false }); }
|
|
1111
1108
|
}
|
|
1112
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
1109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: PaginationPipe, decorators: [{
|
|
1113
1110
|
type: Pipe,
|
|
1114
1111
|
args: [{
|
|
1115
1112
|
name: 'page',
|
|
@@ -1124,10 +1121,10 @@ class SafePipe {
|
|
|
1124
1121
|
transform(html) {
|
|
1125
1122
|
return this._sanitizer.bypassSecurityTrustResourceUrl(html);
|
|
1126
1123
|
}
|
|
1127
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
1128
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.
|
|
1124
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: SafePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1125
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.1", ngImport: i0, type: SafePipe, isStandalone: true, name: "safe" }); }
|
|
1129
1126
|
}
|
|
1130
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
1127
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: SafePipe, decorators: [{
|
|
1131
1128
|
type: Pipe,
|
|
1132
1129
|
args: [{
|
|
1133
1130
|
name: 'safe',
|
|
@@ -1194,10 +1191,10 @@ class SearchPipe {
|
|
|
1194
1191
|
: Object.entries(items).forEach(([k, v]) => check(v, k));
|
|
1195
1192
|
return limit ? out.slice(0, limit) : out;
|
|
1196
1193
|
}
|
|
1197
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
1198
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.
|
|
1194
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: SearchPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1195
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.1", ngImport: i0, type: SearchPipe, isStandalone: true, name: "search" }); }
|
|
1199
1196
|
}
|
|
1200
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
1197
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: SearchPipe, decorators: [{
|
|
1201
1198
|
type: Pipe,
|
|
1202
1199
|
args: [{ name: 'search', pure: true }]
|
|
1203
1200
|
}] });
|
|
@@ -1257,10 +1254,10 @@ class SplicePipe {
|
|
|
1257
1254
|
}
|
|
1258
1255
|
return arr;
|
|
1259
1256
|
}
|
|
1260
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
1261
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.
|
|
1257
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: SplicePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1258
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.1", ngImport: i0, type: SplicePipe, isStandalone: true, name: "splice" }); }
|
|
1262
1259
|
}
|
|
1263
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
1260
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: SplicePipe, decorators: [{
|
|
1264
1261
|
type: Pipe,
|
|
1265
1262
|
args: [{
|
|
1266
1263
|
name: 'splice',
|
|
@@ -1272,10 +1269,10 @@ class SplitPipe {
|
|
|
1272
1269
|
const arr = value.split(devider);
|
|
1273
1270
|
return arr.length > index ? arr[index] : '';
|
|
1274
1271
|
}
|
|
1275
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
1276
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.
|
|
1272
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: SplitPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
1273
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.0.1", ngImport: i0, type: SplitPipe, isStandalone: true, name: "split" }); }
|
|
1277
1274
|
}
|
|
1278
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
1275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: SplitPipe, decorators: [{
|
|
1279
1276
|
type: Pipe,
|
|
1280
1277
|
args: [{
|
|
1281
1278
|
name: 'split',
|
|
@@ -1398,10 +1395,10 @@ class EmitterService {
|
|
|
1398
1395
|
}
|
|
1399
1396
|
return source$;
|
|
1400
1397
|
}
|
|
1401
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
1402
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.
|
|
1398
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: EmitterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1399
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: EmitterService, providedIn: 'root' }); }
|
|
1403
1400
|
}
|
|
1404
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
1401
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: EmitterService, decorators: [{
|
|
1405
1402
|
type: Injectable,
|
|
1406
1403
|
args: [{ providedIn: 'root' }]
|
|
1407
1404
|
}] });
|
|
@@ -1727,10 +1724,10 @@ class HttpService {
|
|
|
1727
1724
|
}
|
|
1728
1725
|
return newDoc;
|
|
1729
1726
|
}
|
|
1730
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
1731
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.
|
|
1727
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: HttpService, deps: [{ token: CONFIG_TOKEN, optional: true }, { token: i1$1.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1728
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: HttpService, providedIn: 'root' }); }
|
|
1732
1729
|
}
|
|
1733
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
1730
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: HttpService, decorators: [{
|
|
1734
1731
|
type: Injectable,
|
|
1735
1732
|
args: [{
|
|
1736
1733
|
providedIn: 'root',
|
|
@@ -1750,9 +1747,9 @@ class NetworkService {
|
|
|
1750
1747
|
*/
|
|
1751
1748
|
constructor(config) {
|
|
1752
1749
|
/** Internal mutable signals. */
|
|
1753
|
-
this._status = signal(navigator.onLine ? 'poor' : 'none', ...(ngDevMode ?
|
|
1754
|
-
this._latencyMs = signal(null, ...(ngDevMode ?
|
|
1755
|
-
this._isOnline = signal(navigator.onLine, ...(ngDevMode ?
|
|
1750
|
+
this._status = signal(navigator.onLine ? 'poor' : 'none', { ...(ngDevMode ? { debugName: "_status" } : {}) });
|
|
1751
|
+
this._latencyMs = signal(null, { ...(ngDevMode ? { debugName: "_latencyMs" } : {}) });
|
|
1752
|
+
this._isOnline = signal(navigator.onLine, { ...(ngDevMode ? { debugName: "_isOnline" } : {}) });
|
|
1756
1753
|
/** Public read-only signals. */
|
|
1757
1754
|
this.status = this._status.asReadonly();
|
|
1758
1755
|
this.latencyMs = this._latencyMs.asReadonly();
|
|
@@ -1874,10 +1871,10 @@ class NetworkService {
|
|
|
1874
1871
|
return { ok: false, latency: null };
|
|
1875
1872
|
}
|
|
1876
1873
|
}
|
|
1877
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
1878
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.
|
|
1874
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: NetworkService, deps: [{ token: CONFIG_TOKEN, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1875
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: NetworkService, providedIn: 'root' }); }
|
|
1879
1876
|
}
|
|
1880
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
1877
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: NetworkService, decorators: [{
|
|
1881
1878
|
type: Injectable,
|
|
1882
1879
|
args: [{ providedIn: 'root' }]
|
|
1883
1880
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
@@ -2052,10 +2049,10 @@ class StoreService {
|
|
|
2052
2049
|
}
|
|
2053
2050
|
return key;
|
|
2054
2051
|
}
|
|
2055
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
2056
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.
|
|
2052
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: StoreService, deps: [{ token: CONFIG_TOKEN, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2053
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: StoreService, providedIn: 'root' }); }
|
|
2057
2054
|
}
|
|
2058
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
2055
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: StoreService, decorators: [{
|
|
2059
2056
|
type: Injectable,
|
|
2060
2057
|
args: [{
|
|
2061
2058
|
providedIn: 'root',
|
|
@@ -2867,10 +2864,10 @@ class DomService {
|
|
|
2867
2864
|
delete this._providedIn[providedIn];
|
|
2868
2865
|
}
|
|
2869
2866
|
}
|
|
2870
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
2871
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.
|
|
2867
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: DomService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2868
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: DomService, providedIn: 'root' }); }
|
|
2872
2869
|
}
|
|
2873
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
2870
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: DomService, decorators: [{
|
|
2874
2871
|
type: Injectable,
|
|
2875
2872
|
args: [{
|
|
2876
2873
|
providedIn: 'root',
|
|
@@ -2988,10 +2985,10 @@ class RtcService {
|
|
|
2988
2985
|
this.localStream?.getTracks().forEach((track) => track.stop());
|
|
2989
2986
|
this.localStream = null;
|
|
2990
2987
|
}
|
|
2991
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
2992
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.
|
|
2988
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: RtcService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2989
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: RtcService, providedIn: 'root' }); }
|
|
2993
2990
|
}
|
|
2994
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
2991
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: RtcService, decorators: [{
|
|
2995
2992
|
type: Injectable,
|
|
2996
2993
|
args: [{ providedIn: 'root' }]
|
|
2997
2994
|
}] });
|
|
@@ -3112,10 +3109,10 @@ class SocketService {
|
|
|
3112
3109
|
}
|
|
3113
3110
|
this._io.emit(to, message, room);
|
|
3114
3111
|
}
|
|
3115
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
3116
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.
|
|
3112
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: SocketService, deps: [{ token: CONFIG_TOKEN, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3113
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: SocketService, providedIn: 'root' }); }
|
|
3117
3114
|
}
|
|
3118
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
3115
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: SocketService, decorators: [{
|
|
3119
3116
|
type: Injectable,
|
|
3120
3117
|
args: [{
|
|
3121
3118
|
providedIn: 'root',
|
|
@@ -3557,10 +3554,10 @@ class TimeService {
|
|
|
3557
3554
|
}
|
|
3558
3555
|
return lastWeek - firstWeek + 1;
|
|
3559
3556
|
}
|
|
3560
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
3561
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.
|
|
3557
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: TimeService, deps: [{ token: i1$2.DatePipe }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3558
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: TimeService, providedIn: 'root' }); }
|
|
3562
3559
|
}
|
|
3563
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
3560
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: TimeService, decorators: [{
|
|
3564
3561
|
type: Injectable,
|
|
3565
3562
|
args: [{
|
|
3566
3563
|
providedIn: 'root',
|
|
@@ -3576,7 +3573,7 @@ class UtilService {
|
|
|
3576
3573
|
// --- CSS variables (persisted) ---
|
|
3577
3574
|
this._storageKey = 'css_variables';
|
|
3578
3575
|
this._css = {};
|
|
3579
|
-
this._cssSig = signal({}, ...(ngDevMode ?
|
|
3576
|
+
this._cssSig = signal({}, { ...(ngDevMode ? { debugName: "_cssSig" } : {}) });
|
|
3580
3577
|
// --- Forms store ---
|
|
3581
3578
|
this._forms = new Map();
|
|
3582
3579
|
// --- Global bag for design/debug ---
|
|
@@ -3802,10 +3799,10 @@ class UtilService {
|
|
|
3802
3799
|
}
|
|
3803
3800
|
catch { }
|
|
3804
3801
|
}
|
|
3805
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
3806
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.
|
|
3802
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: UtilService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3803
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: UtilService, providedIn: 'root' }); }
|
|
3807
3804
|
}
|
|
3808
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
3805
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: UtilService, decorators: [{
|
|
3809
3806
|
type: Injectable,
|
|
3810
3807
|
args: [{ providedIn: 'root' }]
|
|
3811
3808
|
}], ctorParameters: () => [] });
|
|
@@ -3842,8 +3839,8 @@ class WacomModule {
|
|
|
3842
3839
|
],
|
|
3843
3840
|
};
|
|
3844
3841
|
}
|
|
3845
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.
|
|
3846
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.0.
|
|
3842
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: WacomModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3843
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.0.1", ngImport: i0, type: WacomModule, imports: [CommonModule, FormsModule, ArrPipe,
|
|
3847
3844
|
SafePipe,
|
|
3848
3845
|
SplicePipe,
|
|
3849
3846
|
SearchPipe,
|
|
@@ -3854,12 +3851,12 @@ class WacomModule {
|
|
|
3854
3851
|
SearchPipe,
|
|
3855
3852
|
MongodatePipe,
|
|
3856
3853
|
PaginationPipe, ClickOutsideDirective] }); }
|
|
3857
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.0.
|
|
3854
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: WacomModule, providers: [
|
|
3858
3855
|
{ provide: CONFIG_TOKEN, useValue: DEFAULT_CONFIG },
|
|
3859
3856
|
provideHttpClient(withInterceptorsFromDi()),
|
|
3860
3857
|
], imports: [CommonModule, FormsModule] }); }
|
|
3861
3858
|
}
|
|
3862
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.
|
|
3859
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.1", ngImport: i0, type: WacomModule, decorators: [{
|
|
3863
3860
|
type: NgModule,
|
|
3864
3861
|
args: [{
|
|
3865
3862
|
imports: [CommonModule, FormsModule, ...PIPES, ...DIRECTIVES],
|