@arsedizioni/ars-utils 19.2.19 → 19.3.1
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 +402 -402
- package/clipper.ui/ui/document-menu/document-menu.component.d.ts +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +125 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-help.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.mjs.map +1 -1
- package/package.json +9 -9
- package/ui.application/ui/components/chips-selector/chips-selector.component.d.ts +1 -1
|
@@ -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<"bag" | "selection" | "none">;
|
|
17
17
|
protected selection: () => ClipperDocumentInfo[];
|
|
18
18
|
readonly parent: import("@angular/core").InputSignal<ClipperSearchResultManager>;
|
|
19
19
|
readonly item: import("@angular/core").InputSignal<ClipperDocumentInfo>;
|
|
@@ -1445,9 +1445,63 @@ class ClipperChannelSettings {
|
|
|
1445
1445
|
class ClipperSearchParams {
|
|
1446
1446
|
constructor() {
|
|
1447
1447
|
this.version = 6;
|
|
1448
|
+
this.searchId = null;
|
|
1449
|
+
this.searchName = null;
|
|
1450
|
+
this.text = null;
|
|
1451
|
+
this.augmentedText = null;
|
|
1452
|
+
this.title = null;
|
|
1453
|
+
this.titleOnly = false;
|
|
1454
|
+
this.showUnreadDocumentsOnly = false;
|
|
1455
|
+
this.showCommentedDocumentsOnly = false;
|
|
1456
|
+
this.showNotAbrogatedDocumentsOnly = false;
|
|
1457
|
+
this.expandTextQueryUsingAI = false;
|
|
1458
|
+
this.number = null;
|
|
1459
|
+
this.fromDate = null;
|
|
1460
|
+
this.toDate = null;
|
|
1461
|
+
this.year = null;
|
|
1462
|
+
this.sourceNumber = null;
|
|
1463
|
+
this.source = null;
|
|
1464
|
+
this.sourceFromDate = null;
|
|
1465
|
+
this.sourceToDate = null;
|
|
1466
|
+
this.sourceYear = null;
|
|
1467
|
+
this.sector = null;
|
|
1468
|
+
this.sectors = null;
|
|
1469
|
+
this.topic = null;
|
|
1470
|
+
this.topics = null;
|
|
1471
|
+
this.taxonomy = null;
|
|
1472
|
+
this.taxonomies = null;
|
|
1473
|
+
this.taxonomyPath = null;
|
|
1474
|
+
this.taxonomyNode = null;
|
|
1475
|
+
this.type = null;
|
|
1476
|
+
this.types = null;
|
|
1477
|
+
this.tag = null;
|
|
1478
|
+
this.tags = null;
|
|
1479
|
+
this.author = null;
|
|
1480
|
+
this.authors = null;
|
|
1481
|
+
this.changeReason = null;
|
|
1482
|
+
this.changedNumber = null;
|
|
1483
|
+
this.changedYear = null;
|
|
1484
|
+
this.changedTitle = null;
|
|
1485
|
+
this.changedId = null;
|
|
1486
|
+
this.modifierId = null;
|
|
1487
|
+
this.modifierNumber = null;
|
|
1488
|
+
this.modifierYear = null;
|
|
1489
|
+
this.modifierTitle = null;
|
|
1490
|
+
this.model = null;
|
|
1491
|
+
this.models = null;
|
|
1492
|
+
this.module = null;
|
|
1493
|
+
this.modules = null;
|
|
1494
|
+
this.mode = null;
|
|
1448
1495
|
this.channels = [...ClipperChannels];
|
|
1449
1496
|
this.count = 15;
|
|
1497
|
+
this.id = null;
|
|
1498
|
+
this.anchor = null;
|
|
1499
|
+
this.excludeTextReferences = false;
|
|
1500
|
+
this.excludeNotesReferences = false;
|
|
1501
|
+
this.useModifierInfo = false;
|
|
1502
|
+
this.returnModifierInfo = false;
|
|
1450
1503
|
this.first = 0;
|
|
1504
|
+
this.sortMode = null;
|
|
1451
1505
|
}
|
|
1452
1506
|
}
|
|
1453
1507
|
var ClipperDocumentContainer;
|
|
@@ -1471,8 +1525,15 @@ const ClipperDocumentChangeReasons = [
|
|
|
1471
1525
|
];
|
|
1472
1526
|
class ClipperSearchResult {
|
|
1473
1527
|
constructor() {
|
|
1528
|
+
this.days = null;
|
|
1529
|
+
this.interval = null;
|
|
1530
|
+
this.items = null;
|
|
1474
1531
|
this.facets = new ClipperSearchFacetsSnapshot();
|
|
1532
|
+
this.total = null;
|
|
1533
|
+
this.terms = null;
|
|
1534
|
+
this.searchInfo = null;
|
|
1475
1535
|
this.searchParams = new ClipperSearchParams();
|
|
1536
|
+
this.snapshotMode = null;
|
|
1476
1537
|
}
|
|
1477
1538
|
}
|
|
1478
1539
|
class ClipperSearchFacetsSnapshot {
|
|
@@ -1482,6 +1543,14 @@ class ClipperSearchFacetsSnapshot {
|
|
|
1482
1543
|
this.hasFacets = false;
|
|
1483
1544
|
this.hasMoreFacets = false;
|
|
1484
1545
|
this.hasTooManyResults = false;
|
|
1546
|
+
this.sector = null;
|
|
1547
|
+
this.author = null;
|
|
1548
|
+
this.anchor = null;
|
|
1549
|
+
this.type = null;
|
|
1550
|
+
this.reason = null;
|
|
1551
|
+
this.fromDate = null;
|
|
1552
|
+
this.toDate = null;
|
|
1553
|
+
this.interval = null;
|
|
1485
1554
|
this.changedInterval = false;
|
|
1486
1555
|
this.changedSector = false;
|
|
1487
1556
|
this.changedAuthor = false;
|
|
@@ -1491,6 +1560,9 @@ class ClipperSearchFacetsSnapshot {
|
|
|
1491
1560
|
}
|
|
1492
1561
|
}
|
|
1493
1562
|
class ClipperSearchCalendarSnapshotResult {
|
|
1563
|
+
constructor() {
|
|
1564
|
+
this.months = null;
|
|
1565
|
+
}
|
|
1494
1566
|
}
|
|
1495
1567
|
var ClipperSort;
|
|
1496
1568
|
(function (ClipperSort) {
|
|
@@ -1528,6 +1600,10 @@ var ClipperExportDocumentsFormat;
|
|
|
1528
1600
|
class ClipperDashboard {
|
|
1529
1601
|
constructor() {
|
|
1530
1602
|
this.items = signal([]);
|
|
1603
|
+
this.isTrial = false;
|
|
1604
|
+
this.expiredDeadlines = null;
|
|
1605
|
+
this.expiringDeadlines = null;
|
|
1606
|
+
this.documentUpdates = null;
|
|
1531
1607
|
this.unreadItems = computed(() => {
|
|
1532
1608
|
const states = [];
|
|
1533
1609
|
states.push([ClipperModule.News, this.items().find((x) => x.id == ClipperModule.News)?.unreadItems ?? 0]);
|
|
@@ -1621,6 +1697,15 @@ class ClipperDashboard {
|
|
|
1621
1697
|
}
|
|
1622
1698
|
}
|
|
1623
1699
|
class ClipperTeamMemberInfo {
|
|
1700
|
+
constructor() {
|
|
1701
|
+
this.name = null;
|
|
1702
|
+
this.email = null;
|
|
1703
|
+
this.isAdmin = null;
|
|
1704
|
+
this.isDisabled = null;
|
|
1705
|
+
this.hasPermission55 = null;
|
|
1706
|
+
this.hasPermission56 = null;
|
|
1707
|
+
this.hasPermission57 = null;
|
|
1708
|
+
}
|
|
1624
1709
|
}
|
|
1625
1710
|
var ClipperTeamProduct;
|
|
1626
1711
|
(function (ClipperTeamProduct) {
|
|
@@ -1633,6 +1718,14 @@ var ClipperTeamProductPermission;
|
|
|
1633
1718
|
ClipperTeamProductPermission[ClipperTeamProductPermission["SharedCalendar"] = 57] = "SharedCalendar";
|
|
1634
1719
|
})(ClipperTeamProductPermission || (ClipperTeamProductPermission = {}));
|
|
1635
1720
|
class ClipperTeamInfo {
|
|
1721
|
+
constructor() {
|
|
1722
|
+
this.id = null;
|
|
1723
|
+
this.customerId = null;
|
|
1724
|
+
this.title = null;
|
|
1725
|
+
this.isDisabled = null;
|
|
1726
|
+
this.created = null;
|
|
1727
|
+
this.lastModified = null;
|
|
1728
|
+
}
|
|
1636
1729
|
}
|
|
1637
1730
|
var ClipperCalendarState;
|
|
1638
1731
|
(function (ClipperCalendarState) {
|
|
@@ -1649,6 +1742,16 @@ const ClipperCalendarStates = [
|
|
|
1649
1742
|
];
|
|
1650
1743
|
class ClipperCalendarSearchParams {
|
|
1651
1744
|
constructor() {
|
|
1745
|
+
this.id = null;
|
|
1746
|
+
this.fromDate = null;
|
|
1747
|
+
this.toDate = null;
|
|
1748
|
+
this.teamId = null;
|
|
1749
|
+
this.text = null;
|
|
1750
|
+
this.month = null;
|
|
1751
|
+
this.year = null;
|
|
1752
|
+
this.sortDescending = null;
|
|
1753
|
+
this.state = null;
|
|
1754
|
+
this.recurrentOnly = null;
|
|
1652
1755
|
this.first = 0;
|
|
1653
1756
|
this.count = 15;
|
|
1654
1757
|
}
|
|
@@ -1692,8 +1795,29 @@ const ClipperArchiveFileStorageTypes = [
|
|
|
1692
1795
|
{ name: 'Altro cloud', value: ClipperArchiveFileStorageType.OtherCloud }
|
|
1693
1796
|
];
|
|
1694
1797
|
class ClipperArchiveFoldersSearchParams {
|
|
1798
|
+
constructor() {
|
|
1799
|
+
this.teamId = null;
|
|
1800
|
+
this.privateOnly = null;
|
|
1801
|
+
}
|
|
1695
1802
|
}
|
|
1696
1803
|
class ClipperArchiveFilesSearchParams {
|
|
1804
|
+
constructor() {
|
|
1805
|
+
this.teamId = null;
|
|
1806
|
+
this.folderId = null;
|
|
1807
|
+
this.folderName = null;
|
|
1808
|
+
this.fileType = null;
|
|
1809
|
+
this.fromDate = null;
|
|
1810
|
+
this.toDate = null;
|
|
1811
|
+
this.topicPath = null;
|
|
1812
|
+
this.topicId = null;
|
|
1813
|
+
this.topicName = null;
|
|
1814
|
+
this.titlesOnly = null;
|
|
1815
|
+
this.text = null;
|
|
1816
|
+
this.documentNumber = null;
|
|
1817
|
+
this.documentYear = null;
|
|
1818
|
+
this.first = null;
|
|
1819
|
+
this.count = null;
|
|
1820
|
+
}
|
|
1697
1821
|
}
|
|
1698
1822
|
var ClipperArchiveCopyMode;
|
|
1699
1823
|
(function (ClipperArchiveCopyMode) {
|
|
@@ -1731,7 +1855,7 @@ class ClipperUtils {
|
|
|
1731
1855
|
case ClipperModel.Scadenze: return ClipperModule.ScadenzeESegnalazioni;
|
|
1732
1856
|
case ClipperModel.AggiornamentoNormativo: return ClipperModule.GazzetteBollettiniEFontiDiverse;
|
|
1733
1857
|
}
|
|
1734
|
-
return
|
|
1858
|
+
return null;
|
|
1735
1859
|
}
|
|
1736
1860
|
/**
|
|
1737
1861
|
* Return the Clipper group name
|