@pristy/pristy-libvue 0.27.2 → 0.27.4
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/dist/pristy-libvue.js +14 -3
- package/dist/pristy-libvue.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/pristy-libvue.js
CHANGED
|
@@ -1123,7 +1123,7 @@ class iI {
|
|
|
1123
1123
|
getWorkspaces() {
|
|
1124
1124
|
const M = {
|
|
1125
1125
|
skipCount: 0,
|
|
1126
|
-
maxItems:
|
|
1126
|
+
maxItems: 1e3
|
|
1127
1127
|
};
|
|
1128
1128
|
return C.listSites(M).then((I) => I.list.entries.map((g) => g.entry)).catch((I) => {
|
|
1129
1129
|
j.getWorkspacesError(I);
|
|
@@ -1136,7 +1136,7 @@ class iI {
|
|
|
1136
1136
|
},
|
|
1137
1137
|
include: ["allowableOperations", "properties", "aspectNames"],
|
|
1138
1138
|
paging: {
|
|
1139
|
-
maxItems:
|
|
1139
|
+
maxItems: 1e3,
|
|
1140
1140
|
skipCount: 0
|
|
1141
1141
|
},
|
|
1142
1142
|
localization: { locales: ["fr_FR"] }
|
|
@@ -1160,6 +1160,16 @@ class iI {
|
|
|
1160
1160
|
j.getWorkspaceMembershipsError(g);
|
|
1161
1161
|
});
|
|
1162
1162
|
}
|
|
1163
|
+
getWorkspaceMembershipsWithOpts(M, I) {
|
|
1164
|
+
return C.listSiteMemberships(M, I).catch((g) => {
|
|
1165
|
+
throw c("getWorkspaceMemberships", g);
|
|
1166
|
+
});
|
|
1167
|
+
}
|
|
1168
|
+
getWorkspaceGroupsWithOpts(M, I) {
|
|
1169
|
+
return C.listSiteGroups(M, I).then((g) => g.list.entries.map((b) => b.entry)).catch((g) => {
|
|
1170
|
+
throw c("getWorkspaceGroups", g);
|
|
1171
|
+
});
|
|
1172
|
+
}
|
|
1163
1173
|
getWorkspaceGroups(M) {
|
|
1164
1174
|
const I = {};
|
|
1165
1175
|
return C.listSiteGroups(M, I).then((g) => g.list.entries.map((b) => b.entry)).catch((g) => {
|
|
@@ -1422,6 +1432,7 @@ const p = y({
|
|
|
1422
1432
|
ESPACES_HOST: "http://espaces",
|
|
1423
1433
|
ACTES_HOST: "http://actes",
|
|
1424
1434
|
PORTAIL_HOST: "http://portail",
|
|
1435
|
+
MARCHES_HOST: "http://marches",
|
|
1425
1436
|
COLLABORA_HOSTING_DISCOVERY: "http://collabora:9980/hosting/discovery",
|
|
1426
1437
|
ALFRESCO_AUTH: "BASIC",
|
|
1427
1438
|
ALFRESCO_ROOT: "alfresco",
|
|
@@ -2122,7 +2133,7 @@ const Ng = new kI(), bg = y({
|
|
|
2122
2133
|
changeTheme(N) {
|
|
2123
2134
|
return new Promise((M, I) => {
|
|
2124
2135
|
const g = document.head, b = document.getElementById("theme-link"), A = document.createElement("link");
|
|
2125
|
-
A.id = "theme-link", A.rel = "stylesheet", A.href = `https://cdnjs.cloudflare.com/ajax/libs/primevue/3.
|
|
2136
|
+
A.id = "theme-link", A.rel = "stylesheet", A.href = `https://cdnjs.cloudflare.com/ajax/libs/primevue/3.49.1/resources/themes/${N}/theme.min.css`, A.async = !0;
|
|
2126
2137
|
const D = () => {
|
|
2127
2138
|
M(!0);
|
|
2128
2139
|
}, m = (z) => {
|