@arsedizioni/ars-utils 21.2.185 → 21.2.187
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/arsedizioni-ars-utils-clipper.common.mjs +3 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.common.d.ts +4 -2
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +1 -1
package/package.json
CHANGED
|
@@ -30,8 +30,9 @@ declare const ClipperMessages: {
|
|
|
30
30
|
COMMAND_CALENDAR_ADD: string;
|
|
31
31
|
COMMAND_WORKING_OPEN: string;
|
|
32
32
|
COMMAND_WORKING_ADD: string;
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
COMMAND_PROPERTY_ADD: string;
|
|
34
|
+
COMMAND_PROPERTY_DELETE: string;
|
|
35
|
+
COMMAND_PROPERTY_UPDATE: string;
|
|
35
36
|
COMMAND_SEARCH_RESTORED: string;
|
|
36
37
|
COMMAND_SEARCH_EXECUTED: string;
|
|
37
38
|
COMMAND_SEARCH_EMPTY_RESULT: string;
|
|
@@ -343,6 +344,7 @@ interface ClipperDocumentProperty {
|
|
|
343
344
|
id?: number;
|
|
344
345
|
teamId?: string;
|
|
345
346
|
teamTitle?: string;
|
|
347
|
+
documentId?: string;
|
|
346
348
|
color?: string;
|
|
347
349
|
name?: string;
|
|
348
350
|
note?: string;
|
|
@@ -1054,7 +1054,7 @@ declare class ClipperDocumentMenuComponent implements OnInit {
|
|
|
1054
1054
|
private readonly changeDetector;
|
|
1055
1055
|
private readonly clipperService;
|
|
1056
1056
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1057
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1057
|
+
readonly selectionSource: _angular_core.InputSignal<"bag" | "selection" | "none">;
|
|
1058
1058
|
protected selection: () => ClipperDocumentInfo[];
|
|
1059
1059
|
readonly parent: _angular_core.InputSignal<any>;
|
|
1060
1060
|
readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;
|