@arsedizioni/ars-utils 19.4.11 → 19.4.15
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.
|
@@ -13,7 +13,7 @@ export declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
|
|
|
13
13
|
private changeDetector;
|
|
14
14
|
private clipperService;
|
|
15
15
|
readonly useSelections: import("@angular/core").InputSignal<boolean>;
|
|
16
|
-
readonly selectionSource: import("@angular/core").InputSignal<"
|
|
16
|
+
readonly selectionSource: import("@angular/core").InputSignal<"none" | "selection" | "bag">;
|
|
17
17
|
protected selection: () => ClipperDocumentInfo[];
|
|
18
18
|
readonly parent: import("@angular/core").InputSignal<ClipperSearchResultManager>;
|
|
19
19
|
readonly item: import("@angular/core").InputSignal<ClipperDocumentInfo>;
|
package/core/system.d.ts
CHANGED
|
@@ -186,13 +186,13 @@ export declare class SystemUtils {
|
|
|
186
186
|
* @param locale : the locale to use (default is IT)
|
|
187
187
|
* @returns : the formatted string
|
|
188
188
|
*/
|
|
189
|
-
static formatDate(value: Date | string, fmt?: DateFormat | string, locale?: any): string
|
|
189
|
+
static formatDate(value: Date | string, fmt?: DateFormat | string, locale?: any): string;
|
|
190
190
|
/**
|
|
191
191
|
* Return an italian local date
|
|
192
192
|
* @param value : the date
|
|
193
193
|
* @returns : the new date
|
|
194
194
|
*/
|
|
195
|
-
static toLocalDate(value: Date | string): Date
|
|
195
|
+
static toLocalDate(value: Date | string): Date;
|
|
196
196
|
/**
|
|
197
197
|
* Update a DateInterval object according to a string
|
|
198
198
|
* @param value : string value
|
|
@@ -218,7 +218,7 @@ export declare class SystemUtils {
|
|
|
218
218
|
* @param name : the parameter name
|
|
219
219
|
* @returns : the string value
|
|
220
220
|
*/
|
|
221
|
-
static getQueryStringValueByName(name: string): string
|
|
221
|
+
static getQueryStringValueByName(name: string): string;
|
|
222
222
|
/**
|
|
223
223
|
* Generate a password
|
|
224
224
|
* @returns : the password string
|