@arsedizioni/ars-utils 22.0.22 → 22.0.25

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.
@@ -1132,6 +1132,14 @@ declare class FileInputComponent implements OnDestroy, DoCheck, MatFormFieldCont
1132
1132
  private readonly _placeholder;
1133
1133
  private _value;
1134
1134
  set value(value: FileInfo);
1135
+ /**
1136
+ * Updates the internal state. Form propagation is skipped for model->view
1137
+ * writes (writeValue) to avoid the CVA echo loop, and performed for
1138
+ * user-driven changes (selectFile/clearFile) and the public value setter.
1139
+ * @param value - The new file info to store and display.
1140
+ * @param propagate - When `true`, notifies the registered onChange callback.
1141
+ */
1142
+ private setValue;
1135
1143
  get value(): FileInfo;
1136
1144
  get size(): any;
1137
1145
  private _required;
@@ -1472,38 +1480,5 @@ declare class TreePickerComponent {
1472
1480
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<TreePickerComponent, "tree-picker", never, { "tree": { "alias": "tree"; "required": false; "isSignal": true; }; "selection": { "alias": "selection"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "descriptionEmpty": { "alias": "descriptionEmpty"; "required": false; "isSignal": true; }; "maxDepth": { "alias": "maxDepth"; "required": false; "isSignal": true; }; "maxDepthOverrides": { "alias": "maxDepthOverrides"; "required": false; "isSignal": true; }; "minDepth": { "alias": "minDepth"; "required": false; "isSignal": true; }; }, { "selection": "selectionChange"; "selectionCount": "selectionCount"; "changed": "changed"; }, never, never, true, never>;
1473
1481
  }
1474
1482
 
1475
- declare class ResizeTableColumnDirective {
1476
- /** Whether this column is resizable. Bound via the `resizeColumn` attribute. */
1477
- readonly resizable: _angular_core.InputSignal<boolean>;
1478
- /** Zero-based index of this column in the table, used to resize body cells. */
1479
- readonly index: _angular_core.InputSignal<number>;
1480
- private readonly renderer;
1481
- private readonly elementRef;
1482
- private startX;
1483
- private startWidth;
1484
- private readonly column;
1485
- private table;
1486
- private pressed;
1487
- /** Unlisten callbacks returned by renderer.listen, disposed on destroy. */
1488
- private readonly unlisteners;
1489
- constructor();
1490
- /**
1491
- * Record the drag start position and initial column width.
1492
- * @param e - The mousedown event.
1493
- */
1494
- onMouseDown: (e: MouseEvent) => void;
1495
- /**
1496
- * Resize the column header and all body cells while dragging.
1497
- * @param e - The mousemove event.
1498
- */
1499
- onMouseMove: (e: MouseEvent) => void;
1500
- /**
1501
- * End the drag and remove the resizing CSS class from the table.
1502
- */
1503
- onMouseUp: () => void;
1504
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<ResizeTableColumnDirective, never>;
1505
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ResizeTableColumnDirective, "[resizeColumn]", never, { "resizable": { "alias": "resizeColumn"; "required": false; "isSignal": true; }; "index": { "alias": "index"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1506
- }
1507
-
1508
- export { ApplicationDialogService, ButtonSelectorComponent, ButtonToggleComponent, CalendarEmptyHeader, ChipsSelectorComponent, CurrentFilter, CurrentFilterChanged, CurrentFilterItem, FileInputComponent, FilePreviewComponent, FilterBarComponent, Filters, ItemNode, PromptDateDialogComponent, PromptDialogComponent, PromptDialogType, PromptOtpDialogComponent, PromptTimeDialogComponent, ResizeTableColumnDirective, SelectDialogComponent, SelectFileDialogComponent, SelectPictureDialogComponent, SelectTreeDialogComponent, SelectableItem, SelectableNode, SendToDialogComponent, TreeDataSource, TreePickerComponent };
1483
+ export { ApplicationDialogService, ButtonSelectorComponent, ButtonToggleComponent, CalendarEmptyHeader, ChipsSelectorComponent, CurrentFilter, CurrentFilterChanged, CurrentFilterItem, FileInputComponent, FilePreviewComponent, FilterBarComponent, Filters, ItemNode, PromptDateDialogComponent, PromptDialogComponent, PromptDialogType, PromptOtpDialogComponent, PromptTimeDialogComponent, SelectDialogComponent, SelectFileDialogComponent, SelectPictureDialogComponent, SelectTreeDialogComponent, SelectableItem, SelectableNode, SendToDialogComponent, TreeDataSource, TreePickerComponent };
1509
1484
  export type { ButtonToggleInfo, FilePreviewDialogData, FilterGroup, FilterItem, ISelectableItem, PromptDateDialogResult, PromptDialogData, PromptDialogResult, PromptOtpDialogResult, PromptTimeDialogData, SelectDialogAppend, SelectDialogData, SelectDialogDelete, SelectDialogEdit, SelectDialogFilter, SelectDialogLookup, SelectDialogResult, SelectFile, SelectFileDialogData, SelectFileOption, SelectPictureFileDialogData, SelectTreeDialogAppend, SelectTreeDialogData, SelectTreeDialogResult, SelectableFilter, SendToDialogData, SendToDialogResult, SendToPopulateData };