@arsedizioni/ars-utils 21.1.74 → 21.1.76
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 +18 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +13 -3
- 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 +6 -0
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +1 -1
package/package.json
CHANGED
|
@@ -979,6 +979,12 @@ declare class ClipperSearchUtils {
|
|
|
979
979
|
* @returns : the text normalized or undefined
|
|
980
980
|
*/
|
|
981
981
|
static normalizeTextQuery(text: string): string | undefined;
|
|
982
|
+
/**
|
|
983
|
+
* Normalize text query 2: if the number of quotes, plus and minus is odd, add a quote at the end of the query
|
|
984
|
+
* @param text : the text to normalize
|
|
985
|
+
* @returns : the normalized text
|
|
986
|
+
*/
|
|
987
|
+
static normalizeTextQuery2(text: string): string;
|
|
982
988
|
/**
|
|
983
989
|
* Return a rank number from a char value (A, B, C)
|
|
984
990
|
* @param value : the char value
|
|
@@ -1052,7 +1052,7 @@ declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
|
|
|
1052
1052
|
private changeDetector;
|
|
1053
1053
|
private clipperService;
|
|
1054
1054
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1055
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1055
|
+
readonly selectionSource: _angular_core.InputSignal<"bag" | "selection" | "none">;
|
|
1056
1056
|
protected selection: () => ClipperDocumentInfo[];
|
|
1057
1057
|
readonly parent: _angular_core.InputSignal<ClipperSearchResultManager>;
|
|
1058
1058
|
readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;
|