@arsedizioni/ars-utils 18.2.478 → 18.2.479
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.common/common/definitions.d.ts +3 -2
- package/esm2022/clipper.common/common/definitions.mjs +1 -1
- package/esm2022/help/components/help-viewer/help-viewer.component.mjs +3 -3
- package/esm2022/ui.application/ui/dialogs/select-tree/select-tree-dialog.component.mjs +3 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-help.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-help.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -683,9 +683,10 @@ export declare enum ClipperArchiveFileStorageType {
|
|
|
683
683
|
export interface ClipperArchiveFileInfo {
|
|
684
684
|
id?: string | null;
|
|
685
685
|
parentFolderId?: string | null;
|
|
686
|
-
isFolder
|
|
686
|
+
isFolder?: boolean | null;
|
|
687
687
|
folderId?: string | null;
|
|
688
|
-
folderName
|
|
688
|
+
folderName?: string | null;
|
|
689
|
+
folderItemsCount?: number | null;
|
|
689
690
|
teamId?: string | null;
|
|
690
691
|
topicId?: string | null;
|
|
691
692
|
topicPath?: string | null;
|