@lls/store 24.8.0-dc98effb → 24.8.0-e376d469
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/lib/index.js +59 -125
- package/package.json +3 -3
package/lib/index.js
CHANGED
|
@@ -979,7 +979,7 @@ var search9 = ({ ids, read, pageIds }) => {
|
|
|
979
979
|
return makeEntitiesFilter7({ read, id: ids, page: pageIds });
|
|
980
980
|
};
|
|
981
981
|
var makeSearchCopyNotifications = () => createSearchSelector3(
|
|
982
|
-
[makeGetCurrentUser(), makeGetAllEntities2("copyNotifications"), (
|
|
982
|
+
[makeGetCurrentUser(), makeGetAllEntities2("copyNotifications"), (_20, params) => params],
|
|
983
983
|
(currentUser, copyNotifications, { pageIds, read }) => {
|
|
984
984
|
const ids = currentUser?.copyNotifications;
|
|
985
985
|
return search9({ ids, read, pageIds })(copyNotifications);
|
|
@@ -990,23 +990,10 @@ var useSearchCopyNotifications = makeUseSearch(makeSearchCopyNotifications);
|
|
|
990
990
|
// src/selectors/document.ts
|
|
991
991
|
init_define_import_meta();
|
|
992
992
|
import { makeEntitiesFilter as makeEntitiesFilter8 } from "@lls/utils";
|
|
993
|
-
var search10 = ({
|
|
994
|
-
ids,
|
|
995
|
-
uuids,
|
|
996
|
-
resourceIds,
|
|
997
|
-
levelIds,
|
|
998
|
-
formats,
|
|
999
|
-
documentTypes,
|
|
1000
|
-
subDocumentTypes
|
|
1001
|
-
}) => {
|
|
993
|
+
var search10 = ({ ids, resourceIds }) => {
|
|
1002
994
|
return makeEntitiesFilter8({
|
|
1003
995
|
id: ids,
|
|
1004
|
-
resourceId: resourceIds
|
|
1005
|
-
levels: levelIds,
|
|
1006
|
-
uuidV2: uuids,
|
|
1007
|
-
format: formats,
|
|
1008
|
-
documentType: documentTypes,
|
|
1009
|
-
subDocumentType: subDocumentTypes
|
|
996
|
+
resourceId: resourceIds
|
|
1010
997
|
});
|
|
1011
998
|
};
|
|
1012
999
|
var { useSearchDocuments } = crud("documents", {
|
|
@@ -1020,7 +1007,7 @@ var search11 = ({ ids, read, pageIds }) => {
|
|
|
1020
1007
|
return makeEntitiesFilter9({ read, id: ids, page: pageIds });
|
|
1021
1008
|
};
|
|
1022
1009
|
var makeSearchDrawerNotifications = () => createSearchSelector4(
|
|
1023
|
-
[makeGetCurrentUser(), makeGetAllEntities3("drawerNotifications"), (
|
|
1010
|
+
[makeGetCurrentUser(), makeGetAllEntities3("drawerNotifications"), (_20, params) => params],
|
|
1024
1011
|
(currentUser, drawerNotifications, { read, pageIds }) => {
|
|
1025
1012
|
const ids = currentUser?.drawerNotifications;
|
|
1026
1013
|
return search11({ ids, read, pageIds })(drawerNotifications);
|
|
@@ -1058,22 +1045,9 @@ var getUserGroups = (0, import_reselect2.createSelector)(
|
|
|
1058
1045
|
// src/selectors/level.ts
|
|
1059
1046
|
init_define_import_meta();
|
|
1060
1047
|
var import_reselect3 = __toESM(require_lib(), 1);
|
|
1061
|
-
import { createSearchSelector as createSearchSelector5, makeEntitiesFilter as makeEntitiesFilter12, makeGetAllEntities as makeGetAllEntities5 } from "@lls/utils";
|
|
1062
|
-
import _10 from "lodash/fp.js";
|
|
1063
|
-
|
|
1064
|
-
// src/selectors/schoolType.ts
|
|
1065
|
-
init_define_import_meta();
|
|
1066
1048
|
import { makeEntitiesFilter as makeEntitiesFilter11 } from "@lls/utils";
|
|
1067
|
-
|
|
1068
|
-
var
|
|
1069
|
-
"schoolTypes",
|
|
1070
|
-
{
|
|
1071
|
-
search: search14
|
|
1072
|
-
}
|
|
1073
|
-
);
|
|
1074
|
-
|
|
1075
|
-
// src/selectors/level.ts
|
|
1076
|
-
var search15 = ({
|
|
1049
|
+
import _10 from "lodash/fp.js";
|
|
1050
|
+
var search14 = ({
|
|
1077
1051
|
ids,
|
|
1078
1052
|
slugs,
|
|
1079
1053
|
isPreSchool,
|
|
@@ -1081,10 +1055,9 @@ var search15 = ({
|
|
|
1081
1055
|
isHighSchool,
|
|
1082
1056
|
isProHighSchool,
|
|
1083
1057
|
isGenHighSchool,
|
|
1084
|
-
isElementarySchool
|
|
1085
|
-
schoolTypes
|
|
1058
|
+
isElementarySchool
|
|
1086
1059
|
}) => _10.flow(
|
|
1087
|
-
|
|
1060
|
+
makeEntitiesFilter11({
|
|
1088
1061
|
id: ids,
|
|
1089
1062
|
slug: slugs,
|
|
1090
1063
|
isPreSchool,
|
|
@@ -1092,49 +1065,35 @@ var search15 = ({
|
|
|
1092
1065
|
isHighSchool,
|
|
1093
1066
|
isProHighSchool,
|
|
1094
1067
|
isGenHighSchool,
|
|
1095
|
-
isElementarySchool
|
|
1096
|
-
schoolTypes
|
|
1068
|
+
isElementarySchool
|
|
1097
1069
|
}),
|
|
1098
1070
|
_10.orderBy("order", "desc")
|
|
1099
1071
|
);
|
|
1100
|
-
var
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
makeGetAllEntities5("levels"),
|
|
1104
|
-
(state, { schoolTypes }) => schoolTypes ? searchSchoolTypes2(state, { slugs: schoolTypes }) : void 0,
|
|
1105
|
-
(_state, params) => params,
|
|
1106
|
-
(levels, schoolTypes, params) => search15({ ...params, schoolTypes: schoolTypes?.length ? schoolTypes?.map(({ id }) => id) : void 0 })(levels)
|
|
1107
|
-
);
|
|
1108
|
-
};
|
|
1109
|
-
var crudLevels = crud("levels", { search: search15 });
|
|
1110
|
-
var { getLevel, searchLevels } = crudLevels;
|
|
1111
|
-
var getLevels = (0, import_reselect3.createSelector)(
|
|
1112
|
-
crudLevels.getLevels,
|
|
1113
|
-
_10.orderBy("order", "desc")
|
|
1114
|
-
);
|
|
1115
|
-
var useSearchLevels = makeUseSearch(makeSearchLevels);
|
|
1072
|
+
var crudLevels = crud("levels", { search: search14 });
|
|
1073
|
+
var { getLevel, useSearchLevels } = crudLevels;
|
|
1074
|
+
var getLevels = (0, import_reselect3.createSelector)(crudLevels.getLevels, _10.orderBy("order", "desc"));
|
|
1116
1075
|
|
|
1117
1076
|
// src/selectors/mainNotification.ts
|
|
1118
1077
|
init_define_import_meta();
|
|
1119
1078
|
var import_reselect4 = __toESM(require_lib(), 1);
|
|
1120
|
-
import { makeEntitiesFilter as
|
|
1079
|
+
import { makeEntitiesFilter as makeEntitiesFilter12, makeGetAllEntities as makeGetAllEntities5 } from "@lls/utils";
|
|
1121
1080
|
import _11 from "lodash/fp.js";
|
|
1122
|
-
var
|
|
1081
|
+
var search15 = ({ ids }) => makeEntitiesFilter12({ id: ids });
|
|
1123
1082
|
var getMainNotifications = (0, import_reselect4.createSelector)(
|
|
1124
|
-
[_11.flow(makeGetCurrentUser(), _11.get("mainNotifications")),
|
|
1125
|
-
(userNotifications, notifications) =>
|
|
1083
|
+
[_11.flow(makeGetCurrentUser(), _11.get("mainNotifications")), makeGetAllEntities5("mainNotifications")],
|
|
1084
|
+
(userNotifications, notifications) => search15({ ids: userNotifications })(notifications)
|
|
1126
1085
|
);
|
|
1127
1086
|
|
|
1128
1087
|
// src/selectors/news.ts
|
|
1129
1088
|
init_define_import_meta();
|
|
1130
|
-
import { makeEntitiesFilter as
|
|
1131
|
-
var
|
|
1089
|
+
import { makeEntitiesFilter as makeEntitiesFilter13 } from "@lls/utils";
|
|
1090
|
+
var search16 = ({ ids }) => makeEntitiesFilter13({ id: ids });
|
|
1132
1091
|
var {
|
|
1133
1092
|
getNews: getAllNews,
|
|
1134
1093
|
getNew: getNews,
|
|
1135
1094
|
useSearchNews
|
|
1136
1095
|
} = crud("news", {
|
|
1137
|
-
search:
|
|
1096
|
+
search: search16
|
|
1138
1097
|
});
|
|
1139
1098
|
|
|
1140
1099
|
// src/selectors/panorama.ts
|
|
@@ -1144,26 +1103,26 @@ var getPanorama = makeGetEntityById3("panoramas");
|
|
|
1144
1103
|
|
|
1145
1104
|
// src/selectors/premiumResource.ts
|
|
1146
1105
|
init_define_import_meta();
|
|
1147
|
-
import { makeEntitiesFilter as
|
|
1148
|
-
var
|
|
1106
|
+
import { makeEntitiesFilter as makeEntitiesFilter14 } from "@lls/utils";
|
|
1107
|
+
var search17 = ({ bookIds }) => makeEntitiesFilter14({ book: bookIds });
|
|
1149
1108
|
var { getPremiumResources, getPremiumResource, useSearchPremiumResources } = crud("premiumResources", {
|
|
1150
|
-
search:
|
|
1109
|
+
search: search17
|
|
1151
1110
|
});
|
|
1152
1111
|
|
|
1153
1112
|
// src/selectors/lexicalFlower.ts
|
|
1154
1113
|
init_define_import_meta();
|
|
1155
|
-
import { makeEntitiesFilter as
|
|
1156
|
-
var
|
|
1114
|
+
import { makeEntitiesFilter as makeEntitiesFilter15 } from "@lls/utils";
|
|
1115
|
+
var search18 = ({ ids }) => makeEntitiesFilter15({ id: ids });
|
|
1157
1116
|
var { getLexicalFlowers, useSearchLexicalFlowers } = crud("lexicalFlowers", {
|
|
1158
|
-
search:
|
|
1117
|
+
search: search18
|
|
1159
1118
|
});
|
|
1160
1119
|
|
|
1161
1120
|
// src/selectors/product.ts
|
|
1162
1121
|
init_define_import_meta();
|
|
1163
1122
|
import _12 from "lodash/fp.js";
|
|
1164
|
-
import { createSearchSelector as
|
|
1165
|
-
var getProducts =
|
|
1166
|
-
var
|
|
1123
|
+
import { createSearchSelector as createSearchSelector5, makeEntitiesFilter as makeEntitiesFilter16, makeGetAllEntities as makeGetAllEntities6 } from "@lls/utils";
|
|
1124
|
+
var getProducts = makeGetAllEntities6("products");
|
|
1125
|
+
var search19 = ({
|
|
1167
1126
|
ids,
|
|
1168
1127
|
eans,
|
|
1169
1128
|
isAdoptant,
|
|
@@ -1173,7 +1132,7 @@ var search20 = ({
|
|
|
1173
1132
|
productTypes
|
|
1174
1133
|
}) => {
|
|
1175
1134
|
let bookIds;
|
|
1176
|
-
const filter =
|
|
1135
|
+
const filter = makeEntitiesFilter16(
|
|
1177
1136
|
{
|
|
1178
1137
|
id: ids,
|
|
1179
1138
|
ean: eans,
|
|
@@ -1190,28 +1149,36 @@ var search20 = ({
|
|
|
1190
1149
|
};
|
|
1191
1150
|
var makeSearchProducts = () => {
|
|
1192
1151
|
const searchBooks = makeSearchBooks();
|
|
1193
|
-
return
|
|
1194
|
-
|
|
1152
|
+
return createSearchSelector5(
|
|
1153
|
+
makeGetAllEntities6("products"),
|
|
1195
1154
|
(state, { levelIds, subjectIds }) => searchBooks(state, { levelIds, subjectIds }),
|
|
1196
1155
|
(_state, params) => params,
|
|
1197
|
-
(products, books, params) =>
|
|
1156
|
+
(products, books, params) => search19(params)(products, books)
|
|
1198
1157
|
);
|
|
1199
1158
|
};
|
|
1200
1159
|
var useSearchProducts = makeUseSearch(makeSearchProducts);
|
|
1201
1160
|
|
|
1202
1161
|
// src/selectors/resource.ts
|
|
1203
1162
|
init_define_import_meta();
|
|
1204
|
-
import { makeEntitiesFilter as
|
|
1205
|
-
var
|
|
1163
|
+
import { makeEntitiesFilter as makeEntitiesFilter17 } from "@lls/utils";
|
|
1164
|
+
var search20 = ({ chapterIds }) => makeEntitiesFilter17({
|
|
1206
1165
|
chapter: chapterIds
|
|
1207
1166
|
});
|
|
1208
1167
|
var { getResources, getResource, useSearchResources } = crud("resources", {
|
|
1168
|
+
search: search20
|
|
1169
|
+
});
|
|
1170
|
+
|
|
1171
|
+
// src/selectors/schoolType.ts
|
|
1172
|
+
init_define_import_meta();
|
|
1173
|
+
import { makeEntitiesFilter as makeEntitiesFilter18 } from "@lls/utils";
|
|
1174
|
+
var search21 = ({ slugs }) => makeEntitiesFilter18({ slug: slugs });
|
|
1175
|
+
var { getSchoolTypes, getSchoolType, useSearchSchoolTypes, makeSearchSchoolTypes } = crud("schoolTypes", {
|
|
1209
1176
|
search: search21
|
|
1210
1177
|
});
|
|
1211
1178
|
|
|
1212
1179
|
// src/selectors/sharedPage.ts
|
|
1213
1180
|
init_define_import_meta();
|
|
1214
|
-
import { createSearchSelector as
|
|
1181
|
+
import { createSearchSelector as createSearchSelector6, makeEntitiesFilter as makeEntitiesFilter19 } from "@lls/utils";
|
|
1215
1182
|
import _13 from "lodash/fp.js";
|
|
1216
1183
|
var search22 = ({
|
|
1217
1184
|
parentIds,
|
|
@@ -1231,7 +1198,7 @@ var search22 = ({
|
|
|
1231
1198
|
var { getSharedPages, getSharedPage, useSearchSharedPages } = crud("sharedPages", {
|
|
1232
1199
|
search: search22
|
|
1233
1200
|
});
|
|
1234
|
-
var makeSearchCurrentUserSharedPages = () =>
|
|
1201
|
+
var makeSearchCurrentUserSharedPages = () => createSearchSelector6(
|
|
1235
1202
|
getCurrentUser,
|
|
1236
1203
|
getSharedPages,
|
|
1237
1204
|
(__, params) => params,
|
|
@@ -1337,30 +1304,16 @@ var { getCirconscriptions } = crud("circonscriptions", {
|
|
|
1337
1304
|
|
|
1338
1305
|
// src/selectors/documentType.ts
|
|
1339
1306
|
init_define_import_meta();
|
|
1340
|
-
import
|
|
1341
|
-
var search30 = (
|
|
1342
|
-
|
|
1343
|
-
id: ids
|
|
1344
|
-
});
|
|
1345
|
-
};
|
|
1346
|
-
var searchSubDocumentType = ({
|
|
1347
|
-
ids
|
|
1348
|
-
}) => {
|
|
1349
|
-
return makeEntitiesFilter26({
|
|
1350
|
-
id: ids
|
|
1351
|
-
});
|
|
1352
|
-
};
|
|
1353
|
-
var { getSubDocumentTypes, useSearchSubDocumentTypes } = crud("subDocumentTypes", {
|
|
1354
|
-
search: searchSubDocumentType
|
|
1355
|
-
});
|
|
1356
|
-
var { getDocumentTypes, getDocumentType, useSearchDocumentTypes } = crud("documentTypes", {
|
|
1307
|
+
import _16 from "lodash/fp.js";
|
|
1308
|
+
var search30 = (_params) => _16.identity;
|
|
1309
|
+
var { getDocumentTypes, getDocumentType } = crud("documentTypes", {
|
|
1357
1310
|
search: search30
|
|
1358
1311
|
});
|
|
1359
1312
|
|
|
1360
1313
|
// src/reducers/entities.ts
|
|
1361
1314
|
init_define_import_meta();
|
|
1362
1315
|
import { makeReducer } from "@lls/utils";
|
|
1363
|
-
import
|
|
1316
|
+
import _17 from "lodash/fp.js";
|
|
1364
1317
|
|
|
1365
1318
|
// src/actions/index.ts
|
|
1366
1319
|
init_define_import_meta();
|
|
@@ -1383,16 +1336,16 @@ var resetAuth = makeActionCreator(actionTypes.RESET_AUTH);
|
|
|
1383
1336
|
// src/reducers/entities.ts
|
|
1384
1337
|
var deleteEntityReducer = (state, payload) => {
|
|
1385
1338
|
const { path } = payload;
|
|
1386
|
-
return
|
|
1339
|
+
return _17.omit(path, state);
|
|
1387
1340
|
};
|
|
1388
1341
|
var updateEntityReducer = (state, payload) => {
|
|
1389
1342
|
const { path, entity } = payload;
|
|
1390
|
-
const currentEntity =
|
|
1391
|
-
return
|
|
1343
|
+
const currentEntity = _17.get(path, state);
|
|
1344
|
+
return _17.set(path, _17.merge(currentEntity, entity), state);
|
|
1392
1345
|
};
|
|
1393
1346
|
var setEntityReducer = (state, payload) => {
|
|
1394
1347
|
const { path, entity } = payload;
|
|
1395
|
-
return
|
|
1348
|
+
return _17.set(path, entity, state);
|
|
1396
1349
|
};
|
|
1397
1350
|
var setEntitiesReducer = (state, payload) => {
|
|
1398
1351
|
if (typeof payload !== "object") return state;
|
|
@@ -1413,7 +1366,7 @@ var setEntitiesReducer = (state, payload) => {
|
|
|
1413
1366
|
}
|
|
1414
1367
|
const diff = Object.keys(entity).some((prop) => {
|
|
1415
1368
|
const value = entity[prop];
|
|
1416
|
-
if (!
|
|
1369
|
+
if (!_17.isEqual(state[entityName]?.[id]?.[prop], value)) {
|
|
1417
1370
|
return true;
|
|
1418
1371
|
}
|
|
1419
1372
|
});
|
|
@@ -1445,7 +1398,7 @@ var entities_default = entities;
|
|
|
1445
1398
|
// src/reducers/auth.ts
|
|
1446
1399
|
init_define_import_meta();
|
|
1447
1400
|
import { makeReducer as makeReducer2 } from "@lls/utils";
|
|
1448
|
-
import
|
|
1401
|
+
import _18 from "lodash/fp.js";
|
|
1449
1402
|
var initialState = {
|
|
1450
1403
|
id: void 0,
|
|
1451
1404
|
role: null,
|
|
@@ -1458,18 +1411,16 @@ var initialState = {
|
|
|
1458
1411
|
llsUserId: null
|
|
1459
1412
|
};
|
|
1460
1413
|
var auth = makeReducer2(initialState, {
|
|
1461
|
-
[actionTypes.SET_AUTH]:
|
|
1462
|
-
[actionTypes.RESET_AUTH]:
|
|
1414
|
+
[actionTypes.SET_AUTH]: _18.assign,
|
|
1415
|
+
[actionTypes.RESET_AUTH]: _18.constant(initialState)
|
|
1463
1416
|
});
|
|
1464
1417
|
var auth_default = auth;
|
|
1465
1418
|
|
|
1466
1419
|
// src/schema/index.ts
|
|
1467
1420
|
init_define_import_meta();
|
|
1468
1421
|
var import_normalizr = __toESM(require_normalizr(), 1);
|
|
1469
|
-
import
|
|
1422
|
+
import _19 from "lodash/fp.js";
|
|
1470
1423
|
var document = new import_normalizr.schema.Entity("documents");
|
|
1471
|
-
var documentType = new import_normalizr.schema.Entity("documentTypes");
|
|
1472
|
-
var subDocumentType = new import_normalizr.schema.Entity("subDocumentTypes");
|
|
1473
1424
|
var subject = new import_normalizr.schema.Entity("subjects");
|
|
1474
1425
|
var level = new import_normalizr.schema.Entity("levels");
|
|
1475
1426
|
var book = new import_normalizr.schema.Entity("books");
|
|
@@ -1528,14 +1479,8 @@ var garDivisionSchema = define(garDivision, {
|
|
|
1528
1479
|
students: [user],
|
|
1529
1480
|
school
|
|
1530
1481
|
});
|
|
1531
|
-
var documentTypeSchema = define(documentType, {
|
|
1532
|
-
subTypes: [subDocumentType]
|
|
1533
|
-
});
|
|
1534
1482
|
var documentSchema = define(document, {
|
|
1535
|
-
page
|
|
1536
|
-
levels: [level],
|
|
1537
|
-
documentType,
|
|
1538
|
-
subDocumentType
|
|
1483
|
+
page
|
|
1539
1484
|
});
|
|
1540
1485
|
var chapterSchema = define(chapter, {
|
|
1541
1486
|
book,
|
|
@@ -1625,9 +1570,6 @@ var newsSchema = define(news, {
|
|
|
1625
1570
|
var premiumResourceSchema = define(premiumResource, {
|
|
1626
1571
|
book
|
|
1627
1572
|
});
|
|
1628
|
-
var levelSchema = define(level, {
|
|
1629
|
-
schoolTypes: [schoolType]
|
|
1630
|
-
});
|
|
1631
1573
|
var querySchema = {
|
|
1632
1574
|
viewer: {
|
|
1633
1575
|
addCorrectionsToGroup: group,
|
|
@@ -1643,8 +1585,6 @@ var querySchema = {
|
|
|
1643
1585
|
createUser: user,
|
|
1644
1586
|
createLexicalFlower: lexicalFlower,
|
|
1645
1587
|
documents: { hits: [document] },
|
|
1646
|
-
documentTypes: { hits: [documentType] },
|
|
1647
|
-
subDocumentTypes: { hits: [subDocumentType] },
|
|
1648
1588
|
explorerResults: [explorerResult],
|
|
1649
1589
|
levels: [level],
|
|
1650
1590
|
me: user,
|
|
@@ -1685,7 +1625,7 @@ var querySchema = {
|
|
|
1685
1625
|
}
|
|
1686
1626
|
}
|
|
1687
1627
|
};
|
|
1688
|
-
var normalizeData =
|
|
1628
|
+
var normalizeData = _19.flow((data) => (0, import_normalizr.normalize)(data, querySchema));
|
|
1689
1629
|
export {
|
|
1690
1630
|
auth_default as authReducer,
|
|
1691
1631
|
entities_default as entitiesReducer,
|
|
@@ -1739,7 +1679,6 @@ export {
|
|
|
1739
1679
|
getSharedPages,
|
|
1740
1680
|
getStudent,
|
|
1741
1681
|
getStudents,
|
|
1742
|
-
getSubDocumentTypes,
|
|
1743
1682
|
getSubject,
|
|
1744
1683
|
getSubjects,
|
|
1745
1684
|
getTeacher,
|
|
@@ -1754,7 +1693,6 @@ export {
|
|
|
1754
1693
|
makeGetCurrentUser,
|
|
1755
1694
|
makeSearchBooks,
|
|
1756
1695
|
makeSearchDrawerNotifications,
|
|
1757
|
-
makeSearchLevels,
|
|
1758
1696
|
makeSearchPages,
|
|
1759
1697
|
makeSearchSchoolTypes,
|
|
1760
1698
|
makeSearchSubjects,
|
|
@@ -1762,8 +1700,6 @@ export {
|
|
|
1762
1700
|
makeUseSearch,
|
|
1763
1701
|
normalizeData,
|
|
1764
1702
|
querySchema,
|
|
1765
|
-
searchLevels,
|
|
1766
|
-
searchSchoolTypes,
|
|
1767
1703
|
setEntitiesReducer,
|
|
1768
1704
|
useSearchBooks,
|
|
1769
1705
|
useSearchBuilderIos,
|
|
@@ -1773,7 +1709,6 @@ export {
|
|
|
1773
1709
|
useSearchContacts,
|
|
1774
1710
|
useSearchCopyNotifications,
|
|
1775
1711
|
useSearchCurrentUserSharedPages,
|
|
1776
|
-
useSearchDocumentTypes,
|
|
1777
1712
|
useSearchDocuments,
|
|
1778
1713
|
useSearchDrafts,
|
|
1779
1714
|
useSearchDrawerNotifications,
|
|
@@ -1792,7 +1727,6 @@ export {
|
|
|
1792
1727
|
useSearchSchools,
|
|
1793
1728
|
useSearchSharedPages,
|
|
1794
1729
|
useSearchStudents,
|
|
1795
|
-
useSearchSubDocumentTypes,
|
|
1796
1730
|
useSearchSubjects,
|
|
1797
1731
|
useSearchTeachers,
|
|
1798
1732
|
useSearchTools,
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@lls/store",
|
|
3
3
|
"description": "model de donnée et selecteurs",
|
|
4
4
|
"homepage": "https://github.com/lelivrescolaire/monorepo/tree/dev/libs/store",
|
|
5
|
-
"version": "24.8.0-
|
|
5
|
+
"version": "24.8.0-e376d469",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "./lib/builttypes/store/src/index.d.ts",
|
|
8
8
|
"exports": {
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"typescript": "5.6.3",
|
|
49
49
|
"vite": "5.4.11",
|
|
50
50
|
"vite-tsconfig-paths": "5.1.3",
|
|
51
|
-
"@lls/utils": "24.8.0-
|
|
52
|
-
"@lls/vitescripts": "24.8.0-
|
|
51
|
+
"@lls/utils": "24.8.0-e376d469",
|
|
52
|
+
"@lls/vitescripts": "24.8.0-e376d469"
|
|
53
53
|
},
|
|
54
54
|
"license": "ISC",
|
|
55
55
|
"dependencies": {
|