jamespot-front-business 1.1.45 → 1.1.47
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/README.md +1 -1
- package/dist/cjs.js +241 -21
- package/dist/cjs.js.map +1 -1
- package/dist/esm.js +233 -22
- package/dist/esm.js.map +1 -1
- package/dist/types.d.ts +241 -43
- package/package.json +2 -2
package/dist/esm.js
CHANGED
|
@@ -117,7 +117,7 @@ const getAnimationsRTHandlers = function (dispatch) {
|
|
|
117
117
|
];
|
|
118
118
|
};
|
|
119
119
|
|
|
120
|
-
const initialState$
|
|
120
|
+
const initialState$m = {
|
|
121
121
|
animationConfiguration: null,
|
|
122
122
|
isActiveForCurrentUser: false,
|
|
123
123
|
isInitialized: false,
|
|
@@ -125,7 +125,7 @@ const initialState$k = {
|
|
|
125
125
|
};
|
|
126
126
|
const animationsSlice = createSlice({
|
|
127
127
|
name: 'animations',
|
|
128
|
-
initialState: initialState$
|
|
128
|
+
initialState: initialState$m,
|
|
129
129
|
reducers: {},
|
|
130
130
|
extraReducers: (builder) => {
|
|
131
131
|
builder.addCase(fetchCurrentAnimation.fulfilled, (state, action) => {
|
|
@@ -237,7 +237,7 @@ const Application = {
|
|
|
237
237
|
selectors: selectors$1,
|
|
238
238
|
};
|
|
239
239
|
|
|
240
|
-
const initialState$
|
|
240
|
+
const initialState$l = {
|
|
241
241
|
entities: [],
|
|
242
242
|
loading: 'idle',
|
|
243
243
|
nbResults: 0,
|
|
@@ -248,7 +248,7 @@ const fetchBookableAsset = createAsyncThunk('BookableAsset/fetchBookableAsset',
|
|
|
248
248
|
}));
|
|
249
249
|
const BookableAssetSlice = createSlice({
|
|
250
250
|
name: 'bookableAsset',
|
|
251
|
-
initialState: initialState$
|
|
251
|
+
initialState: initialState$l,
|
|
252
252
|
reducers: {},
|
|
253
253
|
extraReducers: (builder) => {
|
|
254
254
|
builder
|
|
@@ -269,7 +269,7 @@ const BookableAssetSlice = createSlice({
|
|
|
269
269
|
const fetchConfiguration = createAsyncThunk('AssetReservation/configuration', (_, { extra }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
270
270
|
return yield extra.jApi.assetReservation.configuration();
|
|
271
271
|
}));
|
|
272
|
-
const initialState$
|
|
272
|
+
const initialState$k = {
|
|
273
273
|
description: '',
|
|
274
274
|
right: {
|
|
275
275
|
manage: false,
|
|
@@ -283,7 +283,7 @@ const initialState$i = {
|
|
|
283
283
|
};
|
|
284
284
|
const AssetReservationConfigurationSlice = createSlice({
|
|
285
285
|
name: 'configuration',
|
|
286
|
-
initialState: initialState$
|
|
286
|
+
initialState: initialState$k,
|
|
287
287
|
reducers: {},
|
|
288
288
|
extraReducers: (builder) => {
|
|
289
289
|
builder
|
|
@@ -304,7 +304,7 @@ const initForm = {
|
|
|
304
304
|
hourStart: '',
|
|
305
305
|
hourEnd: '',
|
|
306
306
|
};
|
|
307
|
-
const initialState$
|
|
307
|
+
const initialState$j = {
|
|
308
308
|
entities: [],
|
|
309
309
|
loading: 'idle',
|
|
310
310
|
nbResults: 0,
|
|
@@ -316,7 +316,7 @@ const fetchReservation = createAsyncThunk('Reservation/fetchReservation', (viewM
|
|
|
316
316
|
}));
|
|
317
317
|
const ReservationSlice = createSlice({
|
|
318
318
|
name: 'reservation',
|
|
319
|
-
initialState: initialState$
|
|
319
|
+
initialState: initialState$j,
|
|
320
320
|
reducers: {
|
|
321
321
|
setForm: (state, action) => {
|
|
322
322
|
state.form = action.payload;
|
|
@@ -372,7 +372,7 @@ const AssetReservation = {
|
|
|
372
372
|
},
|
|
373
373
|
};
|
|
374
374
|
|
|
375
|
-
const initialState$
|
|
375
|
+
const initialState$i = {
|
|
376
376
|
loading: 'idle',
|
|
377
377
|
comments: [],
|
|
378
378
|
};
|
|
@@ -389,7 +389,7 @@ const fetchComments = createAsyncThunk('commentList/fetchCommentList', (params,
|
|
|
389
389
|
}));
|
|
390
390
|
const CommentListSlice = createSlice({
|
|
391
391
|
name: 'commentList',
|
|
392
|
-
initialState: initialState$
|
|
392
|
+
initialState: initialState$i,
|
|
393
393
|
reducers: {
|
|
394
394
|
discardComments: (state, action) => {
|
|
395
395
|
state.comments = state.comments.filter((c) => c.idArticle !== action.payload.idArticle);
|
|
@@ -480,7 +480,7 @@ const Comment = {
|
|
|
480
480
|
getCommentsLikeRTHandlers,
|
|
481
481
|
};
|
|
482
482
|
|
|
483
|
-
const initialState$
|
|
483
|
+
const initialState$h = {
|
|
484
484
|
bookmarks: [],
|
|
485
485
|
loading: 'idle',
|
|
486
486
|
status: undefined,
|
|
@@ -543,7 +543,7 @@ const deleteBookmark = createAsyncThunk('bookmarkList/deleteBookmark', (bookmark
|
|
|
543
543
|
}));
|
|
544
544
|
const BookmarkListSlice = createSlice({
|
|
545
545
|
name: 'bookmarkList',
|
|
546
|
-
initialState: initialState$
|
|
546
|
+
initialState: initialState$h,
|
|
547
547
|
reducers: {
|
|
548
548
|
resetAddBookmarkStatus: (state, action) => {
|
|
549
549
|
if (state.add[action.payload]) {
|
|
@@ -706,7 +706,7 @@ const getBookmarkRTHandlers = function (dispatch) {
|
|
|
706
706
|
];
|
|
707
707
|
};
|
|
708
708
|
|
|
709
|
-
const initialState$
|
|
709
|
+
const initialState$g = {
|
|
710
710
|
bookmark: undefined,
|
|
711
711
|
status: undefined,
|
|
712
712
|
loading: 'idle',
|
|
@@ -728,7 +728,7 @@ const editBookmark = createAsyncThunk('bookmarkEdit/editBookmark', (bookmark, {
|
|
|
728
728
|
}));
|
|
729
729
|
const BookmarkEditSlice = createSlice({
|
|
730
730
|
name: 'bookmarkEdit',
|
|
731
|
-
initialState: initialState$
|
|
731
|
+
initialState: initialState$g,
|
|
732
732
|
reducers: {
|
|
733
733
|
setEditBookmark: (state, action) => {
|
|
734
734
|
state.bookmark = Object.assign({}, action.payload);
|
|
@@ -781,7 +781,7 @@ const Bookmark = {
|
|
|
781
781
|
getRTHandlers: getBookmarkRTHandlers,
|
|
782
782
|
};
|
|
783
783
|
|
|
784
|
-
const initialState$
|
|
784
|
+
const initialState$f = {
|
|
785
785
|
loading: 'idle',
|
|
786
786
|
access: { createCategory: false },
|
|
787
787
|
};
|
|
@@ -810,7 +810,7 @@ const fetchFaqConfig = createAsyncThunk('faqConfig/fetch', () => __awaiter(void
|
|
|
810
810
|
}));
|
|
811
811
|
const FaqConfigSlice = createSlice({
|
|
812
812
|
name: 'config',
|
|
813
|
-
initialState: initialState$
|
|
813
|
+
initialState: initialState$f,
|
|
814
814
|
reducers: {},
|
|
815
815
|
extraReducers: (builder) => {
|
|
816
816
|
builder
|
|
@@ -845,7 +845,7 @@ const FaqConfigSlice = createSlice({
|
|
|
845
845
|
},
|
|
846
846
|
});
|
|
847
847
|
|
|
848
|
-
const initialState$
|
|
848
|
+
const initialState$e = {
|
|
849
849
|
loading: 'idle',
|
|
850
850
|
categories: null,
|
|
851
851
|
};
|
|
@@ -857,7 +857,7 @@ const fetchFaqCategories = createAsyncThunk('faqCategories/fetch', () => __await
|
|
|
857
857
|
}));
|
|
858
858
|
const FaqCategoriesSlice = createSlice({
|
|
859
859
|
name: 'categories',
|
|
860
|
-
initialState: initialState$
|
|
860
|
+
initialState: initialState$e,
|
|
861
861
|
reducers: {},
|
|
862
862
|
extraReducers: (builder) => {
|
|
863
863
|
builder
|
|
@@ -1165,7 +1165,7 @@ const initialMap = {
|
|
|
1165
1165
|
illustration: '',
|
|
1166
1166
|
assignLicense: false,
|
|
1167
1167
|
};
|
|
1168
|
-
const initialState$
|
|
1168
|
+
const initialState$d = {
|
|
1169
1169
|
map: Object.assign({}, initialMap),
|
|
1170
1170
|
loading: 'idle',
|
|
1171
1171
|
status: undefined,
|
|
@@ -1209,13 +1209,13 @@ const createMap = createAsyncThunk('mapCreate/create', ({ map, jlandUrlBase }, {
|
|
|
1209
1209
|
}));
|
|
1210
1210
|
const MapCreateSlice = createSlice({
|
|
1211
1211
|
name: 'mapCreate',
|
|
1212
|
-
initialState: initialState$
|
|
1212
|
+
initialState: initialState$d,
|
|
1213
1213
|
reducers: {
|
|
1214
1214
|
setMap: (state, action) => {
|
|
1215
1215
|
state.map = action.payload;
|
|
1216
1216
|
},
|
|
1217
1217
|
resetCreateMapState: () => {
|
|
1218
|
-
return initialState$
|
|
1218
|
+
return initialState$d;
|
|
1219
1219
|
},
|
|
1220
1220
|
},
|
|
1221
1221
|
extraReducers: (builder) => {
|
|
@@ -1269,6 +1269,217 @@ const jland = {
|
|
|
1269
1269
|
utils: { buildUrlToJland },
|
|
1270
1270
|
};
|
|
1271
1271
|
|
|
1272
|
+
const initialState$c = {
|
|
1273
|
+
loading: 'idle',
|
|
1274
|
+
pads: [],
|
|
1275
|
+
query: '',
|
|
1276
|
+
page: 1,
|
|
1277
|
+
tab: 'all-pads',
|
|
1278
|
+
filters: [],
|
|
1279
|
+
orders: [],
|
|
1280
|
+
limit: 10,
|
|
1281
|
+
nbResults: 0,
|
|
1282
|
+
};
|
|
1283
|
+
const magicPadSlice = createSlice({
|
|
1284
|
+
name: 'magicPad',
|
|
1285
|
+
initialState: initialState$c,
|
|
1286
|
+
reducers: {
|
|
1287
|
+
setTab: (state, action) => {
|
|
1288
|
+
state.tab = action.payload;
|
|
1289
|
+
state.page = 1;
|
|
1290
|
+
state.orders = [];
|
|
1291
|
+
state.filters = [];
|
|
1292
|
+
},
|
|
1293
|
+
setQuery: (state, action) => {
|
|
1294
|
+
state.query = action.payload;
|
|
1295
|
+
state.page = 1;
|
|
1296
|
+
state.orders = [];
|
|
1297
|
+
state.filters = [];
|
|
1298
|
+
},
|
|
1299
|
+
setPage: (state, action) => {
|
|
1300
|
+
state.page = action.payload;
|
|
1301
|
+
},
|
|
1302
|
+
setFilters: (state, action) => {
|
|
1303
|
+
state.filters = action.payload;
|
|
1304
|
+
},
|
|
1305
|
+
setOrders: (state, action) => {
|
|
1306
|
+
state.orders = action.payload;
|
|
1307
|
+
},
|
|
1308
|
+
},
|
|
1309
|
+
extraReducers: (builder) => {
|
|
1310
|
+
builder
|
|
1311
|
+
.addCase(fetchPads.pending, (state) => {
|
|
1312
|
+
if (state.loading === 'idle')
|
|
1313
|
+
state.loading = 'pending';
|
|
1314
|
+
})
|
|
1315
|
+
.addCase(fetchPads.fulfilled, (state, action) => {
|
|
1316
|
+
if (state.loading == 'pending')
|
|
1317
|
+
state.loading = 'idle';
|
|
1318
|
+
state.pads = action.payload.data;
|
|
1319
|
+
state.nbResults = action.payload.cnt;
|
|
1320
|
+
return state;
|
|
1321
|
+
})
|
|
1322
|
+
.addCase(fetchPads.rejected, (state) => {
|
|
1323
|
+
if (state.loading == 'pending')
|
|
1324
|
+
state.loading = 'idle';
|
|
1325
|
+
});
|
|
1326
|
+
},
|
|
1327
|
+
});
|
|
1328
|
+
const fetchPads = createAsyncThunk('magicPad/fetchPads', (params, { extra, rejectWithValue, dispatch, getState }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
1329
|
+
var _a;
|
|
1330
|
+
try {
|
|
1331
|
+
const state = getState().magicPad;
|
|
1332
|
+
const page = state.page;
|
|
1333
|
+
const query = state.query;
|
|
1334
|
+
const filters = [
|
|
1335
|
+
...state.filters,
|
|
1336
|
+
...(state.tab === 'my-pads'
|
|
1337
|
+
? [
|
|
1338
|
+
{
|
|
1339
|
+
name: 'idUser',
|
|
1340
|
+
value: params.idUserLogged,
|
|
1341
|
+
},
|
|
1342
|
+
]
|
|
1343
|
+
: []),
|
|
1344
|
+
];
|
|
1345
|
+
const orders = state.orders.length > 0 ? state.orders : [{ name: 'dateCreation', sort: 'DESC' }];
|
|
1346
|
+
return (yield extra.jApi.article.list({
|
|
1347
|
+
type: 'magicpad',
|
|
1348
|
+
limit: state.limit,
|
|
1349
|
+
format: 'raw-list',
|
|
1350
|
+
page,
|
|
1351
|
+
query,
|
|
1352
|
+
orders,
|
|
1353
|
+
filters,
|
|
1354
|
+
})).result;
|
|
1355
|
+
}
|
|
1356
|
+
catch (e) {
|
|
1357
|
+
dispatch(Toast.actions.error({ label: (_a = e.errorMsg) !== null && _a !== void 0 ? _a : 'GLOBAL_Technical_Error' }));
|
|
1358
|
+
return rejectWithValue({ error: 1, errorMsg: 'Cannot fetch pads' });
|
|
1359
|
+
}
|
|
1360
|
+
}));
|
|
1361
|
+
const selectMagicPad = (state) => state.magicPad;
|
|
1362
|
+
const MagicPad = {
|
|
1363
|
+
slice: magicPadSlice,
|
|
1364
|
+
actions: {
|
|
1365
|
+
fetchPads,
|
|
1366
|
+
},
|
|
1367
|
+
selectors: { selectMagicPad },
|
|
1368
|
+
};
|
|
1369
|
+
|
|
1370
|
+
const MediaLibraryAppConst = {
|
|
1371
|
+
route: 'media-library',
|
|
1372
|
+
moduleName: 'MediaLibraryHook',
|
|
1373
|
+
typeMediaLibraryFolder: 'mediaLibraryFolder',
|
|
1374
|
+
typeMediaLibraryFile: 'mediaLibraryFile',
|
|
1375
|
+
};
|
|
1376
|
+
const FILES_PER_PAGE = 18;
|
|
1377
|
+
|
|
1378
|
+
const initialState$b = {
|
|
1379
|
+
loading: 'idle',
|
|
1380
|
+
page: 1,
|
|
1381
|
+
nbResults: 0,
|
|
1382
|
+
folders: [],
|
|
1383
|
+
unclassifiedFiles: { list: [], page: 0, totalPages: 0 },
|
|
1384
|
+
mediaLibraryAccess: false,
|
|
1385
|
+
};
|
|
1386
|
+
const mediaLibrarySlice = createSlice({
|
|
1387
|
+
name: 'mediaLibrary',
|
|
1388
|
+
initialState: initialState$b,
|
|
1389
|
+
reducers: {
|
|
1390
|
+
setPage(state, action) {
|
|
1391
|
+
return Object.assign(Object.assign({}, state), { page: action.payload });
|
|
1392
|
+
},
|
|
1393
|
+
setFolderList(state, action) {
|
|
1394
|
+
return Object.assign(Object.assign({}, state), { entities: [...action.payload] });
|
|
1395
|
+
},
|
|
1396
|
+
setFileUnclassifiedList(state, action) {
|
|
1397
|
+
return Object.assign(Object.assign({}, state), { entitiesUnclassified: Object.assign({}, action.payload) });
|
|
1398
|
+
},
|
|
1399
|
+
},
|
|
1400
|
+
extraReducers: (builder) => {
|
|
1401
|
+
builder
|
|
1402
|
+
.addCase(fetchMediaLibraryFolders.pending, (state) => {
|
|
1403
|
+
state.loading = 'pending';
|
|
1404
|
+
})
|
|
1405
|
+
.addCase(fetchMediaLibraryFolders.fulfilled, (state, action) => {
|
|
1406
|
+
state.loading = 'idle';
|
|
1407
|
+
state.folders = [...action.payload.result.data];
|
|
1408
|
+
state.nbResults = 0;
|
|
1409
|
+
})
|
|
1410
|
+
.addCase(fetchMediaLibraryFolders.rejected, (state) => {
|
|
1411
|
+
state.loading = 'idle';
|
|
1412
|
+
})
|
|
1413
|
+
.addCase(fetchMediaLibraryUnclassifiedFiles.pending, (state) => {
|
|
1414
|
+
state.loading = 'pending';
|
|
1415
|
+
})
|
|
1416
|
+
.addCase(fetchMediaLibraryUnclassifiedFiles.fulfilled, (state, action) => {
|
|
1417
|
+
state.loading = 'idle';
|
|
1418
|
+
state.unclassifiedFiles = {
|
|
1419
|
+
list: [...action.payload.result.data],
|
|
1420
|
+
page: action.payload.result.page,
|
|
1421
|
+
totalPages: Math.ceil(action.payload.result.cnt / action.payload.result.limit),
|
|
1422
|
+
};
|
|
1423
|
+
state.nbResults = 0;
|
|
1424
|
+
})
|
|
1425
|
+
.addCase(fetchMediaLibraryUnclassifiedFiles.rejected, (state) => {
|
|
1426
|
+
state.loading = 'idle';
|
|
1427
|
+
})
|
|
1428
|
+
.addCase(fetchMediaLibraryConfig.fulfilled, (state, action) => {
|
|
1429
|
+
var _a, _b;
|
|
1430
|
+
state.loading = 'idle';
|
|
1431
|
+
state.mediaLibraryAccess = (_b = (_a = action.payload) === null || _a === void 0 ? void 0 : _a.result) !== null && _b !== void 0 ? _b : false;
|
|
1432
|
+
})
|
|
1433
|
+
.addCase(fetchMediaLibraryConfig.rejected, (state) => {
|
|
1434
|
+
state.loading = 'idle';
|
|
1435
|
+
state.mediaLibraryAccess = false;
|
|
1436
|
+
})
|
|
1437
|
+
.addCase(fetchMediaLibraryConfig.pending, (state) => {
|
|
1438
|
+
state.loading = 'pending';
|
|
1439
|
+
state.mediaLibraryAccess = false;
|
|
1440
|
+
});
|
|
1441
|
+
},
|
|
1442
|
+
});
|
|
1443
|
+
const fetchMediaLibraryFolders = createAsyncThunk('MediaLibrary/fetchMediaLibraryFolders', (_, { extra, rejectWithValue, dispatch }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
1444
|
+
const args = { type: MediaLibraryAppConst.typeMediaLibraryFolder, format: 'raw-little', limit: 10 };
|
|
1445
|
+
try {
|
|
1446
|
+
return yield extra.jApi.article.list(args);
|
|
1447
|
+
}
|
|
1448
|
+
catch (error) {
|
|
1449
|
+
dispatch(Toast.actions.error({ label: error.errorMsg }));
|
|
1450
|
+
return rejectWithValue({ error: 1, errorMsg: 'Cannot retrieve folders' });
|
|
1451
|
+
}
|
|
1452
|
+
}));
|
|
1453
|
+
const fetchMediaLibraryUnclassifiedFiles = createAsyncThunk('MediaLibrary/fetchMediaLibraryUnclassifiedFiles', (page, { extra, rejectWithValue, dispatch }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
1454
|
+
try {
|
|
1455
|
+
return yield extra.jApi.mediaLibrary.GetUnclassifiedFiles({
|
|
1456
|
+
format: 'raw-little',
|
|
1457
|
+
page,
|
|
1458
|
+
limit: FILES_PER_PAGE,
|
|
1459
|
+
});
|
|
1460
|
+
}
|
|
1461
|
+
catch (error) {
|
|
1462
|
+
dispatch(Toast.actions.error({ label: error.errorMsg }));
|
|
1463
|
+
return rejectWithValue({ error: 1, errorMsg: 'Cannot retrieve UnclassifiedFiles' });
|
|
1464
|
+
}
|
|
1465
|
+
}));
|
|
1466
|
+
const fetchMediaLibraryConfig = createAsyncThunk('MediaLibrary/fetchMediaLibraryConfig', (_, { extra, rejectWithValue, dispatch }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
1467
|
+
try {
|
|
1468
|
+
return yield extra.jApi.mediaLibrary.getAccess();
|
|
1469
|
+
}
|
|
1470
|
+
catch (error) {
|
|
1471
|
+
dispatch(Toast.actions.error({ label: error.errorMsg }));
|
|
1472
|
+
return rejectWithValue({ error: 1, errorMsg: 'Cannot get MediaLibrary Config' });
|
|
1473
|
+
}
|
|
1474
|
+
}));
|
|
1475
|
+
const selectMediaLibrary = (state) => state.mediaLibrary;
|
|
1476
|
+
const mediaLibraryReducer = mediaLibrarySlice.reducer;
|
|
1477
|
+
const MediaLibrary = {
|
|
1478
|
+
slice: mediaLibrarySlice,
|
|
1479
|
+
actions: { fetchMediaLibraryFolders, fetchMediaLibraryUnclassifiedFiles, fetchMediaLibraryConfig },
|
|
1480
|
+
selectors: { selectMediaLibrary }
|
|
1481
|
+
};
|
|
1482
|
+
|
|
1272
1483
|
const adapter = createEntityAdapter({
|
|
1273
1484
|
selectId: (model) => model.type,
|
|
1274
1485
|
sortComparer: (a, b) => a.label.localeCompare(b.label),
|
|
@@ -3545,5 +3756,5 @@ const studio = {
|
|
|
3545
3756
|
},
|
|
3546
3757
|
};
|
|
3547
3758
|
|
|
3548
|
-
export { APP_STATUS_TYPE, AUDIENCE, Animations, AppColumnsDefaultTypes, AppFieldFormPropertyTypes, AppFormBannedFromViews$1 as AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList$1 as AppFormFixedList, AppFormItemTypes, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormUniqueList, Application, AssetReservation, Bookmark, Comment, ExtraAppFieldsItemViews, Faq, Hook, MODE_EDIT, MODE_VIEW, MapExtraFieldsWithView, Model, Network, Platform, STUDIO_VIEW, Share, StatusType$1 as StatusType, TVDisplay, TinyMCE, Toast, UserCurrent, WedocApp, Widget, WidgetEditor, actions, animationsReducer, animationsSlice, deleteCurrentAnimation, fetchCurrentAnimation, fetchCurrentAnimationApp, jland, saveCurrentAnimation, slice, studio, toggleAnimationIsActive, updateWidgetContent, viewsList };
|
|
3759
|
+
export { APP_STATUS_TYPE, AUDIENCE, Animations, AppColumnsDefaultTypes, AppFieldFormPropertyTypes, AppFormBannedFromViews$1 as AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList$1 as AppFormFixedList, AppFormItemTypes, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormUniqueList, Application, AssetReservation, Bookmark, Comment, ExtraAppFieldsItemViews, Faq, Hook, MODE_EDIT, MODE_VIEW, MagicPad, MapExtraFieldsWithView, MediaLibrary, Model, Network, Platform, STUDIO_VIEW, Share, StatusType$1 as StatusType, TVDisplay, TinyMCE, Toast, UserCurrent, WedocApp, Widget, WidgetEditor, actions, animationsReducer, animationsSlice, deleteCurrentAnimation, fetchCurrentAnimation, fetchCurrentAnimationApp, fetchMediaLibraryConfig, fetchMediaLibraryFolders, fetchMediaLibraryUnclassifiedFiles, fetchPads, jland, magicPadSlice, mediaLibraryReducer, mediaLibrarySlice, saveCurrentAnimation, slice, studio, toggleAnimationIsActive, updateWidgetContent, viewsList };
|
|
3549
3760
|
//# sourceMappingURL=esm.js.map
|