@panneau/medias 3.0.163 → 3.0.164
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/es/index.js +76 -53
- package/lib/index.js +76 -53
- package/package.json +17 -17
package/es/index.js
CHANGED
@@ -32,9 +32,11 @@ var useMediasApi = function useMediasApi() {
|
|
32
32
|
};
|
33
33
|
var apiPropTypes = PropTypes.shape({
|
34
34
|
get: PropTypes.func.isRequired,
|
35
|
+
getTrashed: PropTypes.func.isRequired,
|
35
36
|
create: PropTypes.func.isRequired,
|
36
37
|
find: PropTypes.func.isRequired,
|
37
38
|
update: PropTypes.func.isRequired,
|
39
|
+
trash: PropTypes.func.isRequired,
|
38
40
|
"delete": PropTypes.func.isRequired
|
39
41
|
});
|
40
42
|
var propTypes$9 = {
|
@@ -255,43 +257,32 @@ var defaultFields = [{
|
|
255
257
|
}),
|
256
258
|
type: 'text',
|
257
259
|
component: 'text'
|
258
|
-
},
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
defaultMessage: [{
|
285
|
-
"type": 0,
|
286
|
-
"value": "Created at"
|
287
|
-
}]
|
288
|
-
}),
|
289
|
-
component: 'display',
|
290
|
-
display: 'date',
|
291
|
-
name: 'created_at',
|
292
|
-
format: 'yyyy-MM-dd hh:ss'
|
293
|
-
}]
|
294
|
-
}, {
|
260
|
+
},
|
261
|
+
// {
|
262
|
+
// id: 'info',
|
263
|
+
// component: 'fields',
|
264
|
+
// title: <FormattedMessage defaultMessage="Informations" description="Field title" />,
|
265
|
+
// isList: true,
|
266
|
+
// horizontal: true,
|
267
|
+
// fields: [
|
268
|
+
// {
|
269
|
+
// id: 'user',
|
270
|
+
// label: <FormattedMessage defaultMessage="Added by" description="Field label" />,
|
271
|
+
// type: 'display',
|
272
|
+
// display: 'avatar',
|
273
|
+
// name: 'user',
|
274
|
+
// },
|
275
|
+
// {
|
276
|
+
// id: 'created_at',
|
277
|
+
// label: <FormattedMessage defaultMessage="Created at" description="Field label" />,
|
278
|
+
// type: 'display',
|
279
|
+
// display: 'date',
|
280
|
+
// name: 'created_at',
|
281
|
+
// format: 'yyyy-MM-dd hh:ss',
|
282
|
+
// },
|
283
|
+
// ],
|
284
|
+
// },
|
285
|
+
{
|
295
286
|
id: 'technical',
|
296
287
|
component: 'fields',
|
297
288
|
title: /*#__PURE__*/React.createElement(FormattedMessage, {
|
@@ -301,6 +292,8 @@ var defaultFields = [{
|
|
301
292
|
"value": "Technical details"
|
302
293
|
}]
|
303
294
|
}),
|
295
|
+
isList: true,
|
296
|
+
horizontal: true,
|
304
297
|
fields: [{
|
305
298
|
id: 'format',
|
306
299
|
label: /*#__PURE__*/React.createElement(FormattedMessage, {
|
@@ -1017,6 +1010,7 @@ function MediasBrowser(_ref) {
|
|
1017
1010
|
}
|
1018
1011
|
}, tableProps, {
|
1019
1012
|
items: items || [],
|
1013
|
+
loading: loading,
|
1020
1014
|
onSelectItem: onSelectItem !== null ? onSelectItem : function (it) {
|
1021
1015
|
return onOpenMedia(it);
|
1022
1016
|
}
|
@@ -1028,6 +1022,7 @@ function MediasBrowser(_ref) {
|
|
1028
1022
|
}, "\u2014")
|
1029
1023
|
}, tableProps, {
|
1030
1024
|
items: items,
|
1025
|
+
loading: loading,
|
1031
1026
|
onSelectItem: onSelectItem !== null ? onSelectItem : function (it) {
|
1032
1027
|
return onOpenMedia(it);
|
1033
1028
|
},
|
@@ -1251,33 +1246,47 @@ function MediasResourceBrowser(_ref) {
|
|
1251
1246
|
}
|
1252
1247
|
return (_api$resources = api.resources).get.apply(_api$resources, [resource].concat(args));
|
1253
1248
|
},
|
1254
|
-
|
1249
|
+
getTrashed: function getTrashed() {
|
1255
1250
|
var _api$resources2;
|
1256
1251
|
for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
1257
1252
|
args[_key2] = arguments[_key2];
|
1258
1253
|
}
|
1259
|
-
return (_api$resources2 = api.resources).
|
1254
|
+
return (_api$resources2 = api.resources).getTrashed.apply(_api$resources2, [resource].concat(args));
|
1260
1255
|
},
|
1261
|
-
|
1256
|
+
find: function find() {
|
1262
1257
|
var _api$resources3;
|
1263
1258
|
for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
|
1264
1259
|
args[_key3] = arguments[_key3];
|
1265
1260
|
}
|
1266
|
-
return (_api$resources3 = api.resources).
|
1261
|
+
return (_api$resources3 = api.resources).find.apply(_api$resources3, [resource].concat(args));
|
1267
1262
|
},
|
1268
|
-
|
1263
|
+
create: function create() {
|
1269
1264
|
var _api$resources4;
|
1270
1265
|
for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
|
1271
1266
|
args[_key4] = arguments[_key4];
|
1272
1267
|
}
|
1273
|
-
return (_api$resources4 = api.resources).
|
1268
|
+
return (_api$resources4 = api.resources).create.apply(_api$resources4, [resource].concat(args));
|
1274
1269
|
},
|
1275
|
-
|
1270
|
+
update: function update() {
|
1276
1271
|
var _api$resources5;
|
1277
1272
|
for (var _len5 = arguments.length, args = new Array(_len5), _key5 = 0; _key5 < _len5; _key5++) {
|
1278
1273
|
args[_key5] = arguments[_key5];
|
1279
1274
|
}
|
1280
|
-
return (_api$resources5 = api.resources)
|
1275
|
+
return (_api$resources5 = api.resources).update.apply(_api$resources5, [resource].concat(args));
|
1276
|
+
},
|
1277
|
+
trash: function trash() {
|
1278
|
+
var _api$resources6;
|
1279
|
+
for (var _len6 = arguments.length, args = new Array(_len6), _key6 = 0; _key6 < _len6; _key6++) {
|
1280
|
+
args[_key6] = arguments[_key6];
|
1281
|
+
}
|
1282
|
+
return (_api$resources6 = api.resources).trash.apply(_api$resources6, [resource].concat(args));
|
1283
|
+
},
|
1284
|
+
"delete": function _delete() {
|
1285
|
+
var _api$resources7;
|
1286
|
+
for (var _len7 = arguments.length, args = new Array(_len7), _key7 = 0; _key7 < _len7; _key7++) {
|
1287
|
+
args[_key7] = arguments[_key7];
|
1288
|
+
}
|
1289
|
+
return (_api$resources7 = api.resources)["delete"].apply(_api$resources7, [resource].concat(args));
|
1281
1290
|
}
|
1282
1291
|
};
|
1283
1292
|
}, [api, resource]);
|
@@ -1319,33 +1328,47 @@ function MediasResourcePicker(_ref) {
|
|
1319
1328
|
}
|
1320
1329
|
return (_api$resources = api.resources).get.apply(_api$resources, [resource].concat(args));
|
1321
1330
|
},
|
1322
|
-
|
1331
|
+
getTrashed: function getTrashed() {
|
1323
1332
|
var _api$resources2;
|
1324
1333
|
for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
1325
1334
|
args[_key2] = arguments[_key2];
|
1326
1335
|
}
|
1327
|
-
return (_api$resources2 = api.resources).
|
1336
|
+
return (_api$resources2 = api.resources).getTrashed.apply(_api$resources2, [resource].concat(args));
|
1328
1337
|
},
|
1329
|
-
|
1338
|
+
find: function find() {
|
1330
1339
|
var _api$resources3;
|
1331
1340
|
for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
|
1332
1341
|
args[_key3] = arguments[_key3];
|
1333
1342
|
}
|
1334
|
-
return (_api$resources3 = api.resources).
|
1343
|
+
return (_api$resources3 = api.resources).find.apply(_api$resources3, [resource].concat(args));
|
1335
1344
|
},
|
1336
|
-
|
1345
|
+
create: function create() {
|
1337
1346
|
var _api$resources4;
|
1338
1347
|
for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
|
1339
1348
|
args[_key4] = arguments[_key4];
|
1340
1349
|
}
|
1341
|
-
return (_api$resources4 = api.resources).
|
1350
|
+
return (_api$resources4 = api.resources).create.apply(_api$resources4, [resource].concat(args));
|
1342
1351
|
},
|
1343
|
-
|
1352
|
+
update: function update() {
|
1344
1353
|
var _api$resources5;
|
1345
1354
|
for (var _len5 = arguments.length, args = new Array(_len5), _key5 = 0; _key5 < _len5; _key5++) {
|
1346
1355
|
args[_key5] = arguments[_key5];
|
1347
1356
|
}
|
1348
|
-
return (_api$resources5 = api.resources)
|
1357
|
+
return (_api$resources5 = api.resources).update.apply(_api$resources5, [resource].concat(args));
|
1358
|
+
},
|
1359
|
+
trash: function trash() {
|
1360
|
+
var _api$resources6;
|
1361
|
+
for (var _len6 = arguments.length, args = new Array(_len6), _key6 = 0; _key6 < _len6; _key6++) {
|
1362
|
+
args[_key6] = arguments[_key6];
|
1363
|
+
}
|
1364
|
+
return (_api$resources6 = api.resources).trash.apply(_api$resources6, [resource].concat(args));
|
1365
|
+
},
|
1366
|
+
"delete": function _delete() {
|
1367
|
+
var _api$resources7;
|
1368
|
+
for (var _len7 = arguments.length, args = new Array(_len7), _key7 = 0; _key7 < _len7; _key7++) {
|
1369
|
+
args[_key7] = arguments[_key7];
|
1370
|
+
}
|
1371
|
+
return (_api$resources7 = api.resources)["delete"].apply(_api$resources7, [resource].concat(args));
|
1349
1372
|
}
|
1350
1373
|
};
|
1351
1374
|
}, [api, resource]);
|
package/lib/index.js
CHANGED
@@ -34,9 +34,11 @@ var useMediasApi = function useMediasApi() {
|
|
34
34
|
};
|
35
35
|
var apiPropTypes = PropTypes.shape({
|
36
36
|
get: PropTypes.func.isRequired,
|
37
|
+
getTrashed: PropTypes.func.isRequired,
|
37
38
|
create: PropTypes.func.isRequired,
|
38
39
|
find: PropTypes.func.isRequired,
|
39
40
|
update: PropTypes.func.isRequired,
|
41
|
+
trash: PropTypes.func.isRequired,
|
40
42
|
"delete": PropTypes.func.isRequired
|
41
43
|
});
|
42
44
|
var propTypes$9 = {
|
@@ -257,43 +259,32 @@ var defaultFields = [{
|
|
257
259
|
}),
|
258
260
|
type: 'text',
|
259
261
|
component: 'text'
|
260
|
-
},
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
defaultMessage: [{
|
287
|
-
"type": 0,
|
288
|
-
"value": "Created at"
|
289
|
-
}]
|
290
|
-
}),
|
291
|
-
component: 'display',
|
292
|
-
display: 'date',
|
293
|
-
name: 'created_at',
|
294
|
-
format: 'yyyy-MM-dd hh:ss'
|
295
|
-
}]
|
296
|
-
}, {
|
262
|
+
},
|
263
|
+
// {
|
264
|
+
// id: 'info',
|
265
|
+
// component: 'fields',
|
266
|
+
// title: <FormattedMessage defaultMessage="Informations" description="Field title" />,
|
267
|
+
// isList: true,
|
268
|
+
// horizontal: true,
|
269
|
+
// fields: [
|
270
|
+
// {
|
271
|
+
// id: 'user',
|
272
|
+
// label: <FormattedMessage defaultMessage="Added by" description="Field label" />,
|
273
|
+
// type: 'display',
|
274
|
+
// display: 'avatar',
|
275
|
+
// name: 'user',
|
276
|
+
// },
|
277
|
+
// {
|
278
|
+
// id: 'created_at',
|
279
|
+
// label: <FormattedMessage defaultMessage="Created at" description="Field label" />,
|
280
|
+
// type: 'display',
|
281
|
+
// display: 'date',
|
282
|
+
// name: 'created_at',
|
283
|
+
// format: 'yyyy-MM-dd hh:ss',
|
284
|
+
// },
|
285
|
+
// ],
|
286
|
+
// },
|
287
|
+
{
|
297
288
|
id: 'technical',
|
298
289
|
component: 'fields',
|
299
290
|
title: /*#__PURE__*/React.createElement(reactIntl.FormattedMessage, {
|
@@ -303,6 +294,8 @@ var defaultFields = [{
|
|
303
294
|
"value": "Technical details"
|
304
295
|
}]
|
305
296
|
}),
|
297
|
+
isList: true,
|
298
|
+
horizontal: true,
|
306
299
|
fields: [{
|
307
300
|
id: 'format',
|
308
301
|
label: /*#__PURE__*/React.createElement(reactIntl.FormattedMessage, {
|
@@ -1019,6 +1012,7 @@ function MediasBrowser(_ref) {
|
|
1019
1012
|
}
|
1020
1013
|
}, tableProps, {
|
1021
1014
|
items: items || [],
|
1015
|
+
loading: loading,
|
1022
1016
|
onSelectItem: onSelectItem !== null ? onSelectItem : function (it) {
|
1023
1017
|
return onOpenMedia(it);
|
1024
1018
|
}
|
@@ -1030,6 +1024,7 @@ function MediasBrowser(_ref) {
|
|
1030
1024
|
}, "\u2014")
|
1031
1025
|
}, tableProps, {
|
1032
1026
|
items: items,
|
1027
|
+
loading: loading,
|
1033
1028
|
onSelectItem: onSelectItem !== null ? onSelectItem : function (it) {
|
1034
1029
|
return onOpenMedia(it);
|
1035
1030
|
},
|
@@ -1253,33 +1248,47 @@ function MediasResourceBrowser(_ref) {
|
|
1253
1248
|
}
|
1254
1249
|
return (_api$resources = api.resources).get.apply(_api$resources, [resource].concat(args));
|
1255
1250
|
},
|
1256
|
-
|
1251
|
+
getTrashed: function getTrashed() {
|
1257
1252
|
var _api$resources2;
|
1258
1253
|
for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
1259
1254
|
args[_key2] = arguments[_key2];
|
1260
1255
|
}
|
1261
|
-
return (_api$resources2 = api.resources).
|
1256
|
+
return (_api$resources2 = api.resources).getTrashed.apply(_api$resources2, [resource].concat(args));
|
1262
1257
|
},
|
1263
|
-
|
1258
|
+
find: function find() {
|
1264
1259
|
var _api$resources3;
|
1265
1260
|
for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
|
1266
1261
|
args[_key3] = arguments[_key3];
|
1267
1262
|
}
|
1268
|
-
return (_api$resources3 = api.resources).
|
1263
|
+
return (_api$resources3 = api.resources).find.apply(_api$resources3, [resource].concat(args));
|
1269
1264
|
},
|
1270
|
-
|
1265
|
+
create: function create() {
|
1271
1266
|
var _api$resources4;
|
1272
1267
|
for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
|
1273
1268
|
args[_key4] = arguments[_key4];
|
1274
1269
|
}
|
1275
|
-
return (_api$resources4 = api.resources).
|
1270
|
+
return (_api$resources4 = api.resources).create.apply(_api$resources4, [resource].concat(args));
|
1276
1271
|
},
|
1277
|
-
|
1272
|
+
update: function update() {
|
1278
1273
|
var _api$resources5;
|
1279
1274
|
for (var _len5 = arguments.length, args = new Array(_len5), _key5 = 0; _key5 < _len5; _key5++) {
|
1280
1275
|
args[_key5] = arguments[_key5];
|
1281
1276
|
}
|
1282
|
-
return (_api$resources5 = api.resources)
|
1277
|
+
return (_api$resources5 = api.resources).update.apply(_api$resources5, [resource].concat(args));
|
1278
|
+
},
|
1279
|
+
trash: function trash() {
|
1280
|
+
var _api$resources6;
|
1281
|
+
for (var _len6 = arguments.length, args = new Array(_len6), _key6 = 0; _key6 < _len6; _key6++) {
|
1282
|
+
args[_key6] = arguments[_key6];
|
1283
|
+
}
|
1284
|
+
return (_api$resources6 = api.resources).trash.apply(_api$resources6, [resource].concat(args));
|
1285
|
+
},
|
1286
|
+
"delete": function _delete() {
|
1287
|
+
var _api$resources7;
|
1288
|
+
for (var _len7 = arguments.length, args = new Array(_len7), _key7 = 0; _key7 < _len7; _key7++) {
|
1289
|
+
args[_key7] = arguments[_key7];
|
1290
|
+
}
|
1291
|
+
return (_api$resources7 = api.resources)["delete"].apply(_api$resources7, [resource].concat(args));
|
1283
1292
|
}
|
1284
1293
|
};
|
1285
1294
|
}, [api, resource]);
|
@@ -1321,33 +1330,47 @@ function MediasResourcePicker(_ref) {
|
|
1321
1330
|
}
|
1322
1331
|
return (_api$resources = api.resources).get.apply(_api$resources, [resource].concat(args));
|
1323
1332
|
},
|
1324
|
-
|
1333
|
+
getTrashed: function getTrashed() {
|
1325
1334
|
var _api$resources2;
|
1326
1335
|
for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
1327
1336
|
args[_key2] = arguments[_key2];
|
1328
1337
|
}
|
1329
|
-
return (_api$resources2 = api.resources).
|
1338
|
+
return (_api$resources2 = api.resources).getTrashed.apply(_api$resources2, [resource].concat(args));
|
1330
1339
|
},
|
1331
|
-
|
1340
|
+
find: function find() {
|
1332
1341
|
var _api$resources3;
|
1333
1342
|
for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
|
1334
1343
|
args[_key3] = arguments[_key3];
|
1335
1344
|
}
|
1336
|
-
return (_api$resources3 = api.resources).
|
1345
|
+
return (_api$resources3 = api.resources).find.apply(_api$resources3, [resource].concat(args));
|
1337
1346
|
},
|
1338
|
-
|
1347
|
+
create: function create() {
|
1339
1348
|
var _api$resources4;
|
1340
1349
|
for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
|
1341
1350
|
args[_key4] = arguments[_key4];
|
1342
1351
|
}
|
1343
|
-
return (_api$resources4 = api.resources).
|
1352
|
+
return (_api$resources4 = api.resources).create.apply(_api$resources4, [resource].concat(args));
|
1344
1353
|
},
|
1345
|
-
|
1354
|
+
update: function update() {
|
1346
1355
|
var _api$resources5;
|
1347
1356
|
for (var _len5 = arguments.length, args = new Array(_len5), _key5 = 0; _key5 < _len5; _key5++) {
|
1348
1357
|
args[_key5] = arguments[_key5];
|
1349
1358
|
}
|
1350
|
-
return (_api$resources5 = api.resources)
|
1359
|
+
return (_api$resources5 = api.resources).update.apply(_api$resources5, [resource].concat(args));
|
1360
|
+
},
|
1361
|
+
trash: function trash() {
|
1362
|
+
var _api$resources6;
|
1363
|
+
for (var _len6 = arguments.length, args = new Array(_len6), _key6 = 0; _key6 < _len6; _key6++) {
|
1364
|
+
args[_key6] = arguments[_key6];
|
1365
|
+
}
|
1366
|
+
return (_api$resources6 = api.resources).trash.apply(_api$resources6, [resource].concat(args));
|
1367
|
+
},
|
1368
|
+
"delete": function _delete() {
|
1369
|
+
var _api$resources7;
|
1370
|
+
for (var _len7 = arguments.length, args = new Array(_len7), _key7 = 0; _key7 < _len7; _key7++) {
|
1371
|
+
args[_key7] = arguments[_key7];
|
1372
|
+
}
|
1373
|
+
return (_api$resources7 = api.resources)["delete"].apply(_api$resources7, [resource].concat(args));
|
1351
1374
|
}
|
1352
1375
|
};
|
1353
1376
|
}, [api, resource]);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@panneau/medias",
|
3
|
-
"version": "3.0.
|
3
|
+
"version": "3.0.164",
|
4
4
|
"description": "",
|
5
5
|
"keywords": [
|
6
6
|
"javascript"
|
@@ -46,21 +46,21 @@
|
|
46
46
|
},
|
47
47
|
"dependencies": {
|
48
48
|
"@babel/runtime": "^7.12.5",
|
49
|
-
"@panneau/core": "^3.0.
|
50
|
-
"@panneau/data": "^3.0.
|
51
|
-
"@panneau/element-button": "^3.0.
|
52
|
-
"@panneau/element-buttons": "^3.0.
|
53
|
-
"@panneau/element-form": "^3.0.
|
54
|
-
"@panneau/element-form-status": "^3.0.
|
55
|
-
"@panneau/element-grid": "^3.0.
|
56
|
-
"@panneau/element-icon": "^3.0.
|
57
|
-
"@panneau/element-media-card": "^3.0.
|
58
|
-
"@panneau/element-media-player": "^3.0.
|
59
|
-
"@panneau/element-media-preview": "^3.0.
|
60
|
-
"@panneau/element-pagination": "^3.0.
|
61
|
-
"@panneau/element-table": "^3.0.
|
62
|
-
"@panneau/field-upload": "^3.0.
|
63
|
-
"@panneau/filter-filters": "^3.0.
|
49
|
+
"@panneau/core": "^3.0.164",
|
50
|
+
"@panneau/data": "^3.0.164",
|
51
|
+
"@panneau/element-button": "^3.0.164",
|
52
|
+
"@panneau/element-buttons": "^3.0.164",
|
53
|
+
"@panneau/element-form": "^3.0.164",
|
54
|
+
"@panneau/element-form-status": "^3.0.164",
|
55
|
+
"@panneau/element-grid": "^3.0.164",
|
56
|
+
"@panneau/element-icon": "^3.0.164",
|
57
|
+
"@panneau/element-media-card": "^3.0.164",
|
58
|
+
"@panneau/element-media-player": "^3.0.164",
|
59
|
+
"@panneau/element-media-preview": "^3.0.164",
|
60
|
+
"@panneau/element-pagination": "^3.0.164",
|
61
|
+
"@panneau/element-table": "^3.0.164",
|
62
|
+
"@panneau/field-upload": "^3.0.164",
|
63
|
+
"@panneau/filter-filters": "^3.0.164",
|
64
64
|
"classnames": "^2.5.1",
|
65
65
|
"lodash": "^4.17.21",
|
66
66
|
"prop-types": "^15.7.2",
|
@@ -69,5 +69,5 @@
|
|
69
69
|
"publishConfig": {
|
70
70
|
"access": "public"
|
71
71
|
},
|
72
|
-
"gitHead": "
|
72
|
+
"gitHead": "7a1511eb7b08a09cfcf708d1ca314a12155e9bd8"
|
73
73
|
}
|