@lls/store 24.8.0-dc98effb → 24.8.0-e0d110cb
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 -119
- 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);
|
|
@@ -992,21 +992,13 @@ init_define_import_meta();
|
|
|
992
992
|
import { makeEntitiesFilter as makeEntitiesFilter8 } from "@lls/utils";
|
|
993
993
|
var search10 = ({
|
|
994
994
|
ids,
|
|
995
|
-
uuids,
|
|
996
995
|
resourceIds,
|
|
997
|
-
levelIds
|
|
998
|
-
formats,
|
|
999
|
-
documentTypes,
|
|
1000
|
-
subDocumentTypes
|
|
996
|
+
levelIds
|
|
1001
997
|
}) => {
|
|
1002
998
|
return makeEntitiesFilter8({
|
|
1003
999
|
id: ids,
|
|
1004
1000
|
resourceId: resourceIds,
|
|
1005
|
-
levels: levelIds
|
|
1006
|
-
uuidV2: uuids,
|
|
1007
|
-
format: formats,
|
|
1008
|
-
documentType: documentTypes,
|
|
1009
|
-
subDocumentType: subDocumentTypes
|
|
1001
|
+
levels: levelIds
|
|
1010
1002
|
});
|
|
1011
1003
|
};
|
|
1012
1004
|
var { useSearchDocuments } = crud("documents", {
|
|
@@ -1020,7 +1012,7 @@ var search11 = ({ ids, read, pageIds }) => {
|
|
|
1020
1012
|
return makeEntitiesFilter9({ read, id: ids, page: pageIds });
|
|
1021
1013
|
};
|
|
1022
1014
|
var makeSearchDrawerNotifications = () => createSearchSelector4(
|
|
1023
|
-
[makeGetCurrentUser(), makeGetAllEntities3("drawerNotifications"), (
|
|
1015
|
+
[makeGetCurrentUser(), makeGetAllEntities3("drawerNotifications"), (_20, params) => params],
|
|
1024
1016
|
(currentUser, drawerNotifications, { read, pageIds }) => {
|
|
1025
1017
|
const ids = currentUser?.drawerNotifications;
|
|
1026
1018
|
return search11({ ids, read, pageIds })(drawerNotifications);
|
|
@@ -1058,22 +1050,9 @@ var getUserGroups = (0, import_reselect2.createSelector)(
|
|
|
1058
1050
|
// src/selectors/level.ts
|
|
1059
1051
|
init_define_import_meta();
|
|
1060
1052
|
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
1053
|
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 = ({
|
|
1054
|
+
import _10 from "lodash/fp.js";
|
|
1055
|
+
var search14 = ({
|
|
1077
1056
|
ids,
|
|
1078
1057
|
slugs,
|
|
1079
1058
|
isPreSchool,
|
|
@@ -1081,10 +1060,9 @@ var search15 = ({
|
|
|
1081
1060
|
isHighSchool,
|
|
1082
1061
|
isProHighSchool,
|
|
1083
1062
|
isGenHighSchool,
|
|
1084
|
-
isElementarySchool
|
|
1085
|
-
schoolTypes
|
|
1063
|
+
isElementarySchool
|
|
1086
1064
|
}) => _10.flow(
|
|
1087
|
-
|
|
1065
|
+
makeEntitiesFilter11({
|
|
1088
1066
|
id: ids,
|
|
1089
1067
|
slug: slugs,
|
|
1090
1068
|
isPreSchool,
|
|
@@ -1092,49 +1070,35 @@ var search15 = ({
|
|
|
1092
1070
|
isHighSchool,
|
|
1093
1071
|
isProHighSchool,
|
|
1094
1072
|
isGenHighSchool,
|
|
1095
|
-
isElementarySchool
|
|
1096
|
-
schoolTypes
|
|
1073
|
+
isElementarySchool
|
|
1097
1074
|
}),
|
|
1098
1075
|
_10.orderBy("order", "desc")
|
|
1099
1076
|
);
|
|
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);
|
|
1077
|
+
var crudLevels = crud("levels", { search: search14 });
|
|
1078
|
+
var { getLevel, useSearchLevels } = crudLevels;
|
|
1079
|
+
var getLevels = (0, import_reselect3.createSelector)(crudLevels.getLevels, _10.orderBy("order", "desc"));
|
|
1116
1080
|
|
|
1117
1081
|
// src/selectors/mainNotification.ts
|
|
1118
1082
|
init_define_import_meta();
|
|
1119
1083
|
var import_reselect4 = __toESM(require_lib(), 1);
|
|
1120
|
-
import { makeEntitiesFilter as
|
|
1084
|
+
import { makeEntitiesFilter as makeEntitiesFilter12, makeGetAllEntities as makeGetAllEntities5 } from "@lls/utils";
|
|
1121
1085
|
import _11 from "lodash/fp.js";
|
|
1122
|
-
var
|
|
1086
|
+
var search15 = ({ ids }) => makeEntitiesFilter12({ id: ids });
|
|
1123
1087
|
var getMainNotifications = (0, import_reselect4.createSelector)(
|
|
1124
|
-
[_11.flow(makeGetCurrentUser(), _11.get("mainNotifications")),
|
|
1125
|
-
(userNotifications, notifications) =>
|
|
1088
|
+
[_11.flow(makeGetCurrentUser(), _11.get("mainNotifications")), makeGetAllEntities5("mainNotifications")],
|
|
1089
|
+
(userNotifications, notifications) => search15({ ids: userNotifications })(notifications)
|
|
1126
1090
|
);
|
|
1127
1091
|
|
|
1128
1092
|
// src/selectors/news.ts
|
|
1129
1093
|
init_define_import_meta();
|
|
1130
|
-
import { makeEntitiesFilter as
|
|
1131
|
-
var
|
|
1094
|
+
import { makeEntitiesFilter as makeEntitiesFilter13 } from "@lls/utils";
|
|
1095
|
+
var search16 = ({ ids }) => makeEntitiesFilter13({ id: ids });
|
|
1132
1096
|
var {
|
|
1133
1097
|
getNews: getAllNews,
|
|
1134
1098
|
getNew: getNews,
|
|
1135
1099
|
useSearchNews
|
|
1136
1100
|
} = crud("news", {
|
|
1137
|
-
search:
|
|
1101
|
+
search: search16
|
|
1138
1102
|
});
|
|
1139
1103
|
|
|
1140
1104
|
// src/selectors/panorama.ts
|
|
@@ -1144,26 +1108,26 @@ var getPanorama = makeGetEntityById3("panoramas");
|
|
|
1144
1108
|
|
|
1145
1109
|
// src/selectors/premiumResource.ts
|
|
1146
1110
|
init_define_import_meta();
|
|
1147
|
-
import { makeEntitiesFilter as
|
|
1148
|
-
var
|
|
1111
|
+
import { makeEntitiesFilter as makeEntitiesFilter14 } from "@lls/utils";
|
|
1112
|
+
var search17 = ({ bookIds }) => makeEntitiesFilter14({ book: bookIds });
|
|
1149
1113
|
var { getPremiumResources, getPremiumResource, useSearchPremiumResources } = crud("premiumResources", {
|
|
1150
|
-
search:
|
|
1114
|
+
search: search17
|
|
1151
1115
|
});
|
|
1152
1116
|
|
|
1153
1117
|
// src/selectors/lexicalFlower.ts
|
|
1154
1118
|
init_define_import_meta();
|
|
1155
|
-
import { makeEntitiesFilter as
|
|
1156
|
-
var
|
|
1119
|
+
import { makeEntitiesFilter as makeEntitiesFilter15 } from "@lls/utils";
|
|
1120
|
+
var search18 = ({ ids }) => makeEntitiesFilter15({ id: ids });
|
|
1157
1121
|
var { getLexicalFlowers, useSearchLexicalFlowers } = crud("lexicalFlowers", {
|
|
1158
|
-
search:
|
|
1122
|
+
search: search18
|
|
1159
1123
|
});
|
|
1160
1124
|
|
|
1161
1125
|
// src/selectors/product.ts
|
|
1162
1126
|
init_define_import_meta();
|
|
1163
1127
|
import _12 from "lodash/fp.js";
|
|
1164
|
-
import { createSearchSelector as
|
|
1165
|
-
var getProducts =
|
|
1166
|
-
var
|
|
1128
|
+
import { createSearchSelector as createSearchSelector5, makeEntitiesFilter as makeEntitiesFilter16, makeGetAllEntities as makeGetAllEntities6 } from "@lls/utils";
|
|
1129
|
+
var getProducts = makeGetAllEntities6("products");
|
|
1130
|
+
var search19 = ({
|
|
1167
1131
|
ids,
|
|
1168
1132
|
eans,
|
|
1169
1133
|
isAdoptant,
|
|
@@ -1173,7 +1137,7 @@ var search20 = ({
|
|
|
1173
1137
|
productTypes
|
|
1174
1138
|
}) => {
|
|
1175
1139
|
let bookIds;
|
|
1176
|
-
const filter =
|
|
1140
|
+
const filter = makeEntitiesFilter16(
|
|
1177
1141
|
{
|
|
1178
1142
|
id: ids,
|
|
1179
1143
|
ean: eans,
|
|
@@ -1190,28 +1154,36 @@ var search20 = ({
|
|
|
1190
1154
|
};
|
|
1191
1155
|
var makeSearchProducts = () => {
|
|
1192
1156
|
const searchBooks = makeSearchBooks();
|
|
1193
|
-
return
|
|
1194
|
-
|
|
1157
|
+
return createSearchSelector5(
|
|
1158
|
+
makeGetAllEntities6("products"),
|
|
1195
1159
|
(state, { levelIds, subjectIds }) => searchBooks(state, { levelIds, subjectIds }),
|
|
1196
1160
|
(_state, params) => params,
|
|
1197
|
-
(products, books, params) =>
|
|
1161
|
+
(products, books, params) => search19(params)(products, books)
|
|
1198
1162
|
);
|
|
1199
1163
|
};
|
|
1200
1164
|
var useSearchProducts = makeUseSearch(makeSearchProducts);
|
|
1201
1165
|
|
|
1202
1166
|
// src/selectors/resource.ts
|
|
1203
1167
|
init_define_import_meta();
|
|
1204
|
-
import { makeEntitiesFilter as
|
|
1205
|
-
var
|
|
1168
|
+
import { makeEntitiesFilter as makeEntitiesFilter17 } from "@lls/utils";
|
|
1169
|
+
var search20 = ({ chapterIds }) => makeEntitiesFilter17({
|
|
1206
1170
|
chapter: chapterIds
|
|
1207
1171
|
});
|
|
1208
1172
|
var { getResources, getResource, useSearchResources } = crud("resources", {
|
|
1173
|
+
search: search20
|
|
1174
|
+
});
|
|
1175
|
+
|
|
1176
|
+
// src/selectors/schoolType.ts
|
|
1177
|
+
init_define_import_meta();
|
|
1178
|
+
import { makeEntitiesFilter as makeEntitiesFilter18 } from "@lls/utils";
|
|
1179
|
+
var search21 = ({ slugs }) => makeEntitiesFilter18({ slug: slugs });
|
|
1180
|
+
var { getSchoolTypes, getSchoolType, useSearchSchoolTypes, makeSearchSchoolTypes } = crud("schoolTypes", {
|
|
1209
1181
|
search: search21
|
|
1210
1182
|
});
|
|
1211
1183
|
|
|
1212
1184
|
// src/selectors/sharedPage.ts
|
|
1213
1185
|
init_define_import_meta();
|
|
1214
|
-
import { createSearchSelector as
|
|
1186
|
+
import { createSearchSelector as createSearchSelector6, makeEntitiesFilter as makeEntitiesFilter19 } from "@lls/utils";
|
|
1215
1187
|
import _13 from "lodash/fp.js";
|
|
1216
1188
|
var search22 = ({
|
|
1217
1189
|
parentIds,
|
|
@@ -1231,7 +1203,7 @@ var search22 = ({
|
|
|
1231
1203
|
var { getSharedPages, getSharedPage, useSearchSharedPages } = crud("sharedPages", {
|
|
1232
1204
|
search: search22
|
|
1233
1205
|
});
|
|
1234
|
-
var makeSearchCurrentUserSharedPages = () =>
|
|
1206
|
+
var makeSearchCurrentUserSharedPages = () => createSearchSelector6(
|
|
1235
1207
|
getCurrentUser,
|
|
1236
1208
|
getSharedPages,
|
|
1237
1209
|
(__, params) => params,
|
|
@@ -1337,30 +1309,16 @@ var { getCirconscriptions } = crud("circonscriptions", {
|
|
|
1337
1309
|
|
|
1338
1310
|
// src/selectors/documentType.ts
|
|
1339
1311
|
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", {
|
|
1312
|
+
import _16 from "lodash/fp.js";
|
|
1313
|
+
var search30 = (_params) => _16.identity;
|
|
1314
|
+
var { getDocumentTypes, getDocumentType } = crud("documentTypes", {
|
|
1357
1315
|
search: search30
|
|
1358
1316
|
});
|
|
1359
1317
|
|
|
1360
1318
|
// src/reducers/entities.ts
|
|
1361
1319
|
init_define_import_meta();
|
|
1362
1320
|
import { makeReducer } from "@lls/utils";
|
|
1363
|
-
import
|
|
1321
|
+
import _17 from "lodash/fp.js";
|
|
1364
1322
|
|
|
1365
1323
|
// src/actions/index.ts
|
|
1366
1324
|
init_define_import_meta();
|
|
@@ -1383,16 +1341,16 @@ var resetAuth = makeActionCreator(actionTypes.RESET_AUTH);
|
|
|
1383
1341
|
// src/reducers/entities.ts
|
|
1384
1342
|
var deleteEntityReducer = (state, payload) => {
|
|
1385
1343
|
const { path } = payload;
|
|
1386
|
-
return
|
|
1344
|
+
return _17.omit(path, state);
|
|
1387
1345
|
};
|
|
1388
1346
|
var updateEntityReducer = (state, payload) => {
|
|
1389
1347
|
const { path, entity } = payload;
|
|
1390
|
-
const currentEntity =
|
|
1391
|
-
return
|
|
1348
|
+
const currentEntity = _17.get(path, state);
|
|
1349
|
+
return _17.set(path, _17.merge(currentEntity, entity), state);
|
|
1392
1350
|
};
|
|
1393
1351
|
var setEntityReducer = (state, payload) => {
|
|
1394
1352
|
const { path, entity } = payload;
|
|
1395
|
-
return
|
|
1353
|
+
return _17.set(path, entity, state);
|
|
1396
1354
|
};
|
|
1397
1355
|
var setEntitiesReducer = (state, payload) => {
|
|
1398
1356
|
if (typeof payload !== "object") return state;
|
|
@@ -1413,7 +1371,7 @@ var setEntitiesReducer = (state, payload) => {
|
|
|
1413
1371
|
}
|
|
1414
1372
|
const diff = Object.keys(entity).some((prop) => {
|
|
1415
1373
|
const value = entity[prop];
|
|
1416
|
-
if (!
|
|
1374
|
+
if (!_17.isEqual(state[entityName]?.[id]?.[prop], value)) {
|
|
1417
1375
|
return true;
|
|
1418
1376
|
}
|
|
1419
1377
|
});
|
|
@@ -1445,7 +1403,7 @@ var entities_default = entities;
|
|
|
1445
1403
|
// src/reducers/auth.ts
|
|
1446
1404
|
init_define_import_meta();
|
|
1447
1405
|
import { makeReducer as makeReducer2 } from "@lls/utils";
|
|
1448
|
-
import
|
|
1406
|
+
import _18 from "lodash/fp.js";
|
|
1449
1407
|
var initialState = {
|
|
1450
1408
|
id: void 0,
|
|
1451
1409
|
role: null,
|
|
@@ -1458,18 +1416,16 @@ var initialState = {
|
|
|
1458
1416
|
llsUserId: null
|
|
1459
1417
|
};
|
|
1460
1418
|
var auth = makeReducer2(initialState, {
|
|
1461
|
-
[actionTypes.SET_AUTH]:
|
|
1462
|
-
[actionTypes.RESET_AUTH]:
|
|
1419
|
+
[actionTypes.SET_AUTH]: _18.assign,
|
|
1420
|
+
[actionTypes.RESET_AUTH]: _18.constant(initialState)
|
|
1463
1421
|
});
|
|
1464
1422
|
var auth_default = auth;
|
|
1465
1423
|
|
|
1466
1424
|
// src/schema/index.ts
|
|
1467
1425
|
init_define_import_meta();
|
|
1468
1426
|
var import_normalizr = __toESM(require_normalizr(), 1);
|
|
1469
|
-
import
|
|
1427
|
+
import _19 from "lodash/fp.js";
|
|
1470
1428
|
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
1429
|
var subject = new import_normalizr.schema.Entity("subjects");
|
|
1474
1430
|
var level = new import_normalizr.schema.Entity("levels");
|
|
1475
1431
|
var book = new import_normalizr.schema.Entity("books");
|
|
@@ -1528,14 +1484,9 @@ var garDivisionSchema = define(garDivision, {
|
|
|
1528
1484
|
students: [user],
|
|
1529
1485
|
school
|
|
1530
1486
|
});
|
|
1531
|
-
var documentTypeSchema = define(documentType, {
|
|
1532
|
-
subTypes: [subDocumentType]
|
|
1533
|
-
});
|
|
1534
1487
|
var documentSchema = define(document, {
|
|
1535
1488
|
page,
|
|
1536
|
-
levels: [level]
|
|
1537
|
-
documentType,
|
|
1538
|
-
subDocumentType
|
|
1489
|
+
levels: [level]
|
|
1539
1490
|
});
|
|
1540
1491
|
var chapterSchema = define(chapter, {
|
|
1541
1492
|
book,
|
|
@@ -1625,9 +1576,6 @@ var newsSchema = define(news, {
|
|
|
1625
1576
|
var premiumResourceSchema = define(premiumResource, {
|
|
1626
1577
|
book
|
|
1627
1578
|
});
|
|
1628
|
-
var levelSchema = define(level, {
|
|
1629
|
-
schoolTypes: [schoolType]
|
|
1630
|
-
});
|
|
1631
1579
|
var querySchema = {
|
|
1632
1580
|
viewer: {
|
|
1633
1581
|
addCorrectionsToGroup: group,
|
|
@@ -1643,8 +1591,6 @@ var querySchema = {
|
|
|
1643
1591
|
createUser: user,
|
|
1644
1592
|
createLexicalFlower: lexicalFlower,
|
|
1645
1593
|
documents: { hits: [document] },
|
|
1646
|
-
documentTypes: { hits: [documentType] },
|
|
1647
|
-
subDocumentTypes: { hits: [subDocumentType] },
|
|
1648
1594
|
explorerResults: [explorerResult],
|
|
1649
1595
|
levels: [level],
|
|
1650
1596
|
me: user,
|
|
@@ -1685,7 +1631,7 @@ var querySchema = {
|
|
|
1685
1631
|
}
|
|
1686
1632
|
}
|
|
1687
1633
|
};
|
|
1688
|
-
var normalizeData =
|
|
1634
|
+
var normalizeData = _19.flow((data) => (0, import_normalizr.normalize)(data, querySchema));
|
|
1689
1635
|
export {
|
|
1690
1636
|
auth_default as authReducer,
|
|
1691
1637
|
entities_default as entitiesReducer,
|
|
@@ -1739,7 +1685,6 @@ export {
|
|
|
1739
1685
|
getSharedPages,
|
|
1740
1686
|
getStudent,
|
|
1741
1687
|
getStudents,
|
|
1742
|
-
getSubDocumentTypes,
|
|
1743
1688
|
getSubject,
|
|
1744
1689
|
getSubjects,
|
|
1745
1690
|
getTeacher,
|
|
@@ -1754,7 +1699,6 @@ export {
|
|
|
1754
1699
|
makeGetCurrentUser,
|
|
1755
1700
|
makeSearchBooks,
|
|
1756
1701
|
makeSearchDrawerNotifications,
|
|
1757
|
-
makeSearchLevels,
|
|
1758
1702
|
makeSearchPages,
|
|
1759
1703
|
makeSearchSchoolTypes,
|
|
1760
1704
|
makeSearchSubjects,
|
|
@@ -1762,8 +1706,6 @@ export {
|
|
|
1762
1706
|
makeUseSearch,
|
|
1763
1707
|
normalizeData,
|
|
1764
1708
|
querySchema,
|
|
1765
|
-
searchLevels,
|
|
1766
|
-
searchSchoolTypes,
|
|
1767
1709
|
setEntitiesReducer,
|
|
1768
1710
|
useSearchBooks,
|
|
1769
1711
|
useSearchBuilderIos,
|
|
@@ -1773,7 +1715,6 @@ export {
|
|
|
1773
1715
|
useSearchContacts,
|
|
1774
1716
|
useSearchCopyNotifications,
|
|
1775
1717
|
useSearchCurrentUserSharedPages,
|
|
1776
|
-
useSearchDocumentTypes,
|
|
1777
1718
|
useSearchDocuments,
|
|
1778
1719
|
useSearchDrafts,
|
|
1779
1720
|
useSearchDrawerNotifications,
|
|
@@ -1792,7 +1733,6 @@ export {
|
|
|
1792
1733
|
useSearchSchools,
|
|
1793
1734
|
useSearchSharedPages,
|
|
1794
1735
|
useSearchStudents,
|
|
1795
|
-
useSearchSubDocumentTypes,
|
|
1796
1736
|
useSearchSubjects,
|
|
1797
1737
|
useSearchTeachers,
|
|
1798
1738
|
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-e0d110cb",
|
|
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-e0d110cb",
|
|
52
|
+
"@lls/vitescripts": "24.8.0-e0d110cb"
|
|
53
53
|
},
|
|
54
54
|
"license": "ISC",
|
|
55
55
|
"dependencies": {
|