@arsedizioni/ars-utils 20.4.11 → 20.4.12
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/clipper.ui/index.d.ts +1 -1
- package/core/index.d.ts +0 -33
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs +0 -176
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs.map +1 -1
- package/package.json +9 -9
package/clipper.ui/index.d.ts
CHANGED
|
@@ -1033,7 +1033,7 @@ declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
|
|
|
1033
1033
|
private changeDetector;
|
|
1034
1034
|
private clipperService;
|
|
1035
1035
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1036
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1036
|
+
readonly selectionSource: _angular_core.InputSignal<"selection" | "none" | "bag">;
|
|
1037
1037
|
protected selection: () => ClipperDocumentInfo[];
|
|
1038
1038
|
readonly parent: _angular_core.InputSignal<ClipperSearchResultManager>;
|
|
1039
1039
|
readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;
|
package/core/index.d.ts
CHANGED
|
@@ -408,39 +408,6 @@ declare class SystemUtils {
|
|
|
408
408
|
* @returns true if the color is light
|
|
409
409
|
*/
|
|
410
410
|
static isColorLight(color: string, minimumLuminance?: number): boolean;
|
|
411
|
-
/**
|
|
412
|
-
* Get a unique machine id
|
|
413
|
-
* @returns : the machine id
|
|
414
|
-
*/
|
|
415
|
-
static getMachineId(): string;
|
|
416
|
-
/**
|
|
417
|
-
* Browser fingerprint
|
|
418
|
-
*/
|
|
419
|
-
private static collectFingerprint;
|
|
420
|
-
/**
|
|
421
|
-
* Canvas fingerprinting
|
|
422
|
-
*/
|
|
423
|
-
private static getCanvasFingerprint;
|
|
424
|
-
/**
|
|
425
|
-
* WebGL fingerprinting
|
|
426
|
-
*/
|
|
427
|
-
private static getWebGLFingerprint;
|
|
428
|
-
/**
|
|
429
|
-
* Audio context fingerprinting
|
|
430
|
-
*/
|
|
431
|
-
private static getAudioFingerprint;
|
|
432
|
-
/**
|
|
433
|
-
* Rileva font disponibili
|
|
434
|
-
*/
|
|
435
|
-
private static detectFonts;
|
|
436
|
-
/**
|
|
437
|
-
* Ottiene lista plugins
|
|
438
|
-
*/
|
|
439
|
-
private static getPlugins;
|
|
440
|
-
/**
|
|
441
|
-
* Genera hash SHA-256-like da stringa (semplificato)
|
|
442
|
-
*/
|
|
443
|
-
private static generateHash;
|
|
444
411
|
}
|
|
445
412
|
|
|
446
413
|
interface DoneResult<T> {
|
|
@@ -2061,8 +2061,8 @@ class ClipperService {
|
|
|
2061
2061
|
if (!sessionStorage.getItem('clipper_client_id')) {
|
|
2062
2062
|
sessionStorage.setItem('clipper_client_id', SystemUtils.generateUUID());
|
|
2063
2063
|
}
|
|
2064
|
-
if (!
|
|
2065
|
-
|
|
2064
|
+
if (!localStorage.getItem('clipper_machine_id')) {
|
|
2065
|
+
localStorage.setItem('clipper_machine_id', SystemUtils.generateUUID());
|
|
2066
2066
|
}
|
|
2067
2067
|
// Initialize
|
|
2068
2068
|
this._serviceUri = serviceUri;
|