ywana-core8 0.0.676 → 0.0.678

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.
@@ -9,7 +9,7 @@ import { ReactNotifications, Store } from 'react-notifications-component';
9
9
  import 'react-notifications-component/dist/theme.css';
10
10
  import equal from 'deep-equal';
11
11
 
12
- function _catch$4(body, recover) {
12
+ function _catch$5(body, recover) {
13
13
  try {
14
14
  var result = body();
15
15
  } catch (e) {
@@ -41,7 +41,7 @@ var fetchAsync = function fetchAsync(method, URL, body, token, headers) {
41
41
  body: body
42
42
  };
43
43
  if (headers) request.headers = request.headers;
44
- return Promise.resolve(_catch$4(function () {
44
+ return Promise.resolve(_catch$5(function () {
45
45
  return Promise.resolve(fetch(URL, request)).then(function (response) {
46
46
  var _exit;
47
47
 
@@ -5603,7 +5603,7 @@ var EditContentDialog = function EditContentDialog(_ref) {
5603
5603
  * Collection Page
5604
5604
  */
5605
5605
 
5606
- function _catch$3(body, recover) {
5606
+ function _catch$4(body, recover) {
5607
5607
  try {
5608
5608
  var result = body();
5609
5609
  } catch (e) {
@@ -6230,7 +6230,7 @@ var CollectionContext = function CollectionContext(url, field, host, page, fetch
6230
6230
  try {
6231
6231
  var _this2 = this;
6232
6232
 
6233
- var _temp6 = _catch$3(function () {
6233
+ var _temp6 = _catch$4(function () {
6234
6234
  return Promise.resolve(API.all(null, page)).then(function (data) {
6235
6235
  _this2.all = field ? data[field] : data;
6236
6236
  });
@@ -6279,7 +6279,7 @@ var CollectionContext = function CollectionContext(url, field, host, page, fetch
6279
6279
  },
6280
6280
  fetch: function fetch(id) {
6281
6281
  try {
6282
- return Promise.resolve(_catch$3(function () {
6282
+ return Promise.resolve(_catch$4(function () {
6283
6283
  return Promise.resolve(API.find(id));
6284
6284
  }, function (error) {
6285
6285
  console.log(error);
@@ -6295,7 +6295,7 @@ var CollectionContext = function CollectionContext(url, field, host, page, fetch
6295
6295
  try {
6296
6296
  var _this8 = this;
6297
6297
 
6298
- var _temp10 = _catch$3(function () {
6298
+ var _temp10 = _catch$4(function () {
6299
6299
  if (versioning) form.version = 1;
6300
6300
  return Promise.resolve(API.create(form)).then(function () {
6301
6301
  return Promise.resolve(_this8.load()).then(function () {});
@@ -6313,7 +6313,7 @@ var CollectionContext = function CollectionContext(url, field, host, page, fetch
6313
6313
  try {
6314
6314
  var _this10 = this;
6315
6315
 
6316
- var _temp12 = _catch$3(function () {
6316
+ var _temp12 = _catch$4(function () {
6317
6317
  if (versioning) form.version = form.version ? form.version + 1 : 1;
6318
6318
  return Promise.resolve(API.update(form)).then(function () {
6319
6319
  return Promise.resolve(_this10.load()).then(function () {});
@@ -6331,7 +6331,7 @@ var CollectionContext = function CollectionContext(url, field, host, page, fetch
6331
6331
  try {
6332
6332
  var _this12 = this;
6333
6333
 
6334
- var _temp14 = _catch$3(function () {
6334
+ var _temp14 = _catch$4(function () {
6335
6335
  if (versioning) form.version = form.version ? form.version + 1 : 1;
6336
6336
  return Promise.resolve(API.patch(id, form)).then(function () {
6337
6337
  return Promise.resolve(_this12.load()).then(function () {});
@@ -6349,7 +6349,7 @@ var CollectionContext = function CollectionContext(url, field, host, page, fetch
6349
6349
  try {
6350
6350
  var _this14 = this;
6351
6351
 
6352
- var _temp16 = _catch$3(function () {
6352
+ var _temp16 = _catch$4(function () {
6353
6353
  return Promise.resolve(API.updateProperty(id, propertyName, form)).then(function () {
6354
6354
  return Promise.resolve(_this14.load()).then(function () {});
6355
6355
  });
@@ -6366,7 +6366,7 @@ var CollectionContext = function CollectionContext(url, field, host, page, fetch
6366
6366
  try {
6367
6367
  var _this16 = this;
6368
6368
 
6369
- var _temp18 = _catch$3(function () {
6369
+ var _temp18 = _catch$4(function () {
6370
6370
  return Promise.resolve(API.remove(id)).then(function () {
6371
6371
  return Promise.resolve(_this16.load()).then(function () {});
6372
6372
  });
@@ -6455,7 +6455,7 @@ var QUERY = {
6455
6455
  * Table Page
6456
6456
  */
6457
6457
 
6458
- function _catch$2(body, recover) {
6458
+ function _catch$3(body, recover) {
6459
6459
  try {
6460
6460
  var result = body();
6461
6461
  } catch (e) {
@@ -7268,7 +7268,7 @@ var TableContext$2 = function TableContext(url, field, host, urlQuery, params) {
7268
7268
  try {
7269
7269
  var _this2 = this;
7270
7270
 
7271
- var _temp5 = _catch$2(function () {
7271
+ var _temp5 = _catch$3(function () {
7272
7272
  var filters = filter ? Object.keys(filter).reduce(function (filters, key) {
7273
7273
  var field = filter[key];
7274
7274
 
@@ -7330,7 +7330,7 @@ var TableContext$2 = function TableContext(url, field, host, urlQuery, params) {
7330
7330
  try {
7331
7331
  var _this5 = this;
7332
7332
 
7333
- var _temp7 = _catch$2(function () {
7333
+ var _temp7 = _catch$3(function () {
7334
7334
  return Promise.resolve(API.create(form)).then(function () {
7335
7335
  return Promise.resolve(_this5.load()).then(function () {});
7336
7336
  });
@@ -7347,7 +7347,7 @@ var TableContext$2 = function TableContext(url, field, host, urlQuery, params) {
7347
7347
  try {
7348
7348
  var _this7 = this;
7349
7349
 
7350
- var _temp9 = _catch$2(function () {
7350
+ var _temp9 = _catch$3(function () {
7351
7351
  return Promise.resolve(API.update(form)).then(function () {
7352
7352
  return Promise.resolve(_this7.load()).then(function () {});
7353
7353
  });
@@ -7364,7 +7364,7 @@ var TableContext$2 = function TableContext(url, field, host, urlQuery, params) {
7364
7364
  try {
7365
7365
  var _this9 = this;
7366
7366
 
7367
- var _temp11 = _catch$2(function () {
7367
+ var _temp11 = _catch$3(function () {
7368
7368
  return Promise.resolve(API.remove(id)).then(function () {
7369
7369
  return Promise.resolve(_this9.load()).then(function () {});
7370
7370
  });
@@ -7384,7 +7384,7 @@ var TableContext$2 = function TableContext(url, field, host, urlQuery, params) {
7384
7384
  try {
7385
7385
  var _this11 = this;
7386
7386
 
7387
- var _temp13 = _catch$2(function () {
7387
+ var _temp13 = _catch$3(function () {
7388
7388
  return Promise.resolve(API.queries(user, urlQuery)).then(function (_API$queries) {
7389
7389
  _this11.queries = _API$queries;
7390
7390
  });
@@ -7401,7 +7401,7 @@ var TableContext$2 = function TableContext(url, field, host, urlQuery, params) {
7401
7401
  try {
7402
7402
  var _this13 = this;
7403
7403
 
7404
- var _temp15 = _catch$2(function () {
7404
+ var _temp15 = _catch$3(function () {
7405
7405
  return Promise.resolve(API.createQuery(query, urlQuery)).then(function () {
7406
7406
  return Promise.resolve(_this13.loadQueries(user)).then(function () {});
7407
7407
  });
@@ -7418,7 +7418,7 @@ var TableContext$2 = function TableContext(url, field, host, urlQuery, params) {
7418
7418
  try {
7419
7419
  var _this15 = this;
7420
7420
 
7421
- var _temp17 = _catch$2(function () {
7421
+ var _temp17 = _catch$3(function () {
7422
7422
  return Promise.resolve(API.removeQuery(id, urlQuery)).then(function () {
7423
7423
  return Promise.resolve(_this15.loadQueries(user)).then(function () {});
7424
7424
  });
@@ -7509,7 +7509,7 @@ var TableAPI$2 = function TableAPI(url, host, params) {
7509
7509
  * Table Page
7510
7510
  */
7511
7511
 
7512
- function _catch$1(body, recover) {
7512
+ function _catch$2(body, recover) {
7513
7513
  try {
7514
7514
  var result = body();
7515
7515
  } catch (e) {
@@ -8307,7 +8307,7 @@ var TableContext$1 = function TableContext(url, field, host, urlQuery, params) {
8307
8307
  try {
8308
8308
  var _this2 = this;
8309
8309
 
8310
- var _temp9 = _catch$1(function () {
8310
+ var _temp9 = _catch$2(function () {
8311
8311
  var filters = filter ? Object.keys(filter).reduce(function (filters, key) {
8312
8312
  var field = filter[key];
8313
8313
 
@@ -8366,7 +8366,7 @@ var TableContext$1 = function TableContext(url, field, host, urlQuery, params) {
8366
8366
  try {
8367
8367
  var _this5 = this;
8368
8368
 
8369
- var _temp11 = _catch$1(function () {
8369
+ var _temp11 = _catch$2(function () {
8370
8370
  return Promise.resolve(API.create(form)).then(function () {
8371
8371
  return Promise.resolve(_this5.load()).then(function () {});
8372
8372
  });
@@ -8383,7 +8383,7 @@ var TableContext$1 = function TableContext(url, field, host, urlQuery, params) {
8383
8383
  try {
8384
8384
  var _this7 = this;
8385
8385
 
8386
- var _temp13 = _catch$1(function () {
8386
+ var _temp13 = _catch$2(function () {
8387
8387
  return Promise.resolve(API.update(form)).then(function () {
8388
8388
  return Promise.resolve(_this7.load()).then(function () {});
8389
8389
  });
@@ -8400,7 +8400,7 @@ var TableContext$1 = function TableContext(url, field, host, urlQuery, params) {
8400
8400
  try {
8401
8401
  var _this9 = this;
8402
8402
 
8403
- var _temp15 = _catch$1(function () {
8403
+ var _temp15 = _catch$2(function () {
8404
8404
  return Promise.resolve(API.remove(id)).then(function () {
8405
8405
  return Promise.resolve(_this9.load()).then(function () {});
8406
8406
  });
@@ -8420,7 +8420,7 @@ var TableContext$1 = function TableContext(url, field, host, urlQuery, params) {
8420
8420
  try {
8421
8421
  var _this11 = this;
8422
8422
 
8423
- var _temp17 = _catch$1(function () {
8423
+ var _temp17 = _catch$2(function () {
8424
8424
  return Promise.resolve(API.queries(user, urlQuery)).then(function (_API$queries) {
8425
8425
  _this11.queries = _API$queries;
8426
8426
  });
@@ -8437,7 +8437,7 @@ var TableContext$1 = function TableContext(url, field, host, urlQuery, params) {
8437
8437
  try {
8438
8438
  var _this13 = this;
8439
8439
 
8440
- var _temp19 = _catch$1(function () {
8440
+ var _temp19 = _catch$2(function () {
8441
8441
  return Promise.resolve(API.createQuery(query, urlQuery)).then(function () {
8442
8442
  return Promise.resolve(_this13.loadQueries(user)).then(function () {});
8443
8443
  });
@@ -8454,7 +8454,7 @@ var TableContext$1 = function TableContext(url, field, host, urlQuery, params) {
8454
8454
  try {
8455
8455
  var _this15 = this;
8456
8456
 
8457
- var _temp21 = _catch$1(function () {
8457
+ var _temp21 = _catch$2(function () {
8458
8458
  return Promise.resolve(API.removeQuery(id, urlQuery)).then(function () {
8459
8459
  return Promise.resolve(_this15.loadQueries(user)).then(function () {});
8460
8460
  });
@@ -8541,7 +8541,7 @@ var TableAPI$1 = function TableAPI(url, host, params) {
8541
8541
  * Tabbed Table Page
8542
8542
  */
8543
8543
 
8544
- function _catch(body, recover) {
8544
+ function _catch$1(body, recover) {
8545
8545
  try {
8546
8546
  var result = body();
8547
8547
  } catch (e) {
@@ -9403,7 +9403,7 @@ var TableContext = function TableContext(url, field, host, urlQuery) {
9403
9403
  try {
9404
9404
  var _this2 = this;
9405
9405
 
9406
- var _temp9 = _catch(function () {
9406
+ var _temp9 = _catch$1(function () {
9407
9407
  var filters = filter ? Object.keys(filter).reduce(function (filters, key) {
9408
9408
  var field = filter[key];
9409
9409
 
@@ -9470,7 +9470,7 @@ var TableContext = function TableContext(url, field, host, urlQuery) {
9470
9470
  try {
9471
9471
  var _this5 = this;
9472
9472
 
9473
- var _temp11 = _catch(function () {
9473
+ var _temp11 = _catch$1(function () {
9474
9474
  return Promise.resolve(API.create(form)).then(function () {
9475
9475
  return Promise.resolve(_this5.load({}, [])).then(function () {});
9476
9476
  });
@@ -9487,7 +9487,7 @@ var TableContext = function TableContext(url, field, host, urlQuery) {
9487
9487
  try {
9488
9488
  var _this7 = this;
9489
9489
 
9490
- var _temp13 = _catch(function () {
9490
+ var _temp13 = _catch$1(function () {
9491
9491
  return Promise.resolve(API.update(form)).then(function () {
9492
9492
  return Promise.resolve(_this7.load()).then(function () {});
9493
9493
  });
@@ -9504,7 +9504,7 @@ var TableContext = function TableContext(url, field, host, urlQuery) {
9504
9504
  try {
9505
9505
  var _this9 = this;
9506
9506
 
9507
- var _temp15 = _catch(function () {
9507
+ var _temp15 = _catch$1(function () {
9508
9508
  return Promise.resolve(API.remove(id)).then(function () {
9509
9509
  return Promise.resolve(_this9.load()).then(function () {});
9510
9510
  });
@@ -9524,7 +9524,7 @@ var TableContext = function TableContext(url, field, host, urlQuery) {
9524
9524
  try {
9525
9525
  var _this11 = this;
9526
9526
 
9527
- var _temp17 = _catch(function () {
9527
+ var _temp17 = _catch$1(function () {
9528
9528
  return Promise.resolve(API.queries(user, urlQuery)).then(function (_API$queries) {
9529
9529
  _this11.queries = _API$queries;
9530
9530
  });
@@ -9541,7 +9541,7 @@ var TableContext = function TableContext(url, field, host, urlQuery) {
9541
9541
  try {
9542
9542
  var _this13 = this;
9543
9543
 
9544
- var _temp19 = _catch(function () {
9544
+ var _temp19 = _catch$1(function () {
9545
9545
  return Promise.resolve(API.createQuery(query, urlQuery)).then(function () {
9546
9546
  return Promise.resolve(_this13.loadQueries(user)).then(function () {});
9547
9547
  });
@@ -9558,7 +9558,7 @@ var TableContext = function TableContext(url, field, host, urlQuery) {
9558
9558
  try {
9559
9559
  var _this15 = this;
9560
9560
 
9561
- var _temp21 = _catch(function () {
9561
+ var _temp21 = _catch$1(function () {
9562
9562
  return Promise.resolve(API.removeQuery(id, urlQuery)).then(function () {
9563
9563
  return Promise.resolve(_this15.loadQueries(user)).then(function () {});
9564
9564
  });
@@ -9756,9 +9756,270 @@ var Wizard = function Wizard(props) {
9756
9756
  }, prevButton, /*#__PURE__*/React.createElement("div", null), nextButton)));
9757
9757
  };
9758
9758
 
9759
+ /**
9760
+ * Task Context
9761
+ */
9762
+
9763
+ function _catch(body, recover) {
9764
+ try {
9765
+ var result = body();
9766
+ } catch (e) {
9767
+ return recover(e);
9768
+ }
9769
+
9770
+ if (result && result.then) {
9771
+ return result.then(void 0, recover);
9772
+ }
9773
+
9774
+ return result;
9775
+ }
9776
+ /**
9777
+ * Task Provider
9778
+ */
9779
+
9780
+
9781
+ var TaskContext = React.createContext({});
9782
+ var TaskContextProvider = function TaskContextProvider(props) {
9783
+ var removeTask = function removeTask(id) {
9784
+ try {
9785
+ return Promise.resolve(_catch(function () {
9786
+ return Promise.resolve(API.removeTask(id));
9787
+ }, function (error) {
9788
+ console.log("removeTask error", error);
9789
+ }));
9790
+ } catch (e) {
9791
+ return Promise.reject(e);
9792
+ }
9793
+ };
9794
+
9795
+ var createTask = function createTask(task) {
9796
+ try {
9797
+ return Promise.resolve(_catch(function () {
9798
+ return Promise.resolve(API.createTask(task));
9799
+ }, function (error) {
9800
+ console.log("createTask error", error);
9801
+ }));
9802
+ } catch (e) {
9803
+ return Promise.reject(e);
9804
+ }
9805
+ };
9806
+
9807
+ var task = function task(id) {
9808
+ try {
9809
+ return Promise.resolve(_catch(function () {
9810
+ return Promise.resolve(API.task(id));
9811
+ }, function (error) {
9812
+ console.log("task error", error);
9813
+ }));
9814
+ } catch (e) {
9815
+ return Promise.reject(e);
9816
+ }
9817
+ };
9818
+
9819
+ var tasks = function tasks() {
9820
+ try {
9821
+ return Promise.resolve(_catch(function () {
9822
+ return Promise.resolve(API.tasks());
9823
+ }, function (error) {
9824
+ console.log("tasks error", error);
9825
+ }));
9826
+ } catch (e) {
9827
+ return Promise.reject(e);
9828
+ }
9829
+ };
9830
+
9831
+ var host = props.host,
9832
+ url = props.url,
9833
+ children = props.children;
9834
+ var API = TaskAPI(url, host);
9835
+ var value = {
9836
+ tasks: tasks,
9837
+ task: task,
9838
+ createTask: createTask,
9839
+ removeTask: removeTask
9840
+ };
9841
+ return /*#__PURE__*/React.createElement(TaskContext.Provider, {
9842
+ value: value
9843
+ }, children);
9844
+ };
9845
+ /**
9846
+ * API
9847
+ */
9848
+
9849
+ var TaskAPI = function TaskAPI(url, host) {
9850
+ if (url === void 0) {
9851
+ url = "/tasks";
9852
+ }
9853
+
9854
+ var http = HTTPClient(host || window.API || process.env.REACT_APP_API, Session);
9855
+ return {
9856
+ tasks: function tasks() {
9857
+ return http.GET(url);
9858
+ },
9859
+ task: function task(id) {
9860
+ return http.GET(url + "/" + id);
9861
+ },
9862
+ createTask: function createTask(task) {
9863
+ var body = JSON.stringify(task);
9864
+ return http.POST(url, body);
9865
+ },
9866
+ removeTask: function removeTask(id) {
9867
+ return http.DELETE(url + "/" + id);
9868
+ }
9869
+ };
9870
+ };
9871
+ /**
9872
+ * TaskProgress
9873
+ */
9874
+
9875
+
9876
+ var TaskProgress = function TaskProgress(props) {
9877
+ var refresh = function refresh(id) {
9878
+ try {
9879
+ return Promise.resolve(context.task(id)).then(function (next) {
9880
+ setProgress(next.percentage);
9881
+
9882
+ if (next.percentage === 100) {
9883
+ if (onComplete) onComplete(next);
9884
+ }
9885
+ });
9886
+ } catch (e) {
9887
+ return Promise.reject(e);
9888
+ }
9889
+ };
9890
+
9891
+ var context = useContext(TaskContext);
9892
+ var task = props.task,
9893
+ _props$timeout = props.timeout,
9894
+ timeout = _props$timeout === void 0 ? 500 : _props$timeout,
9895
+ _props$autoreload = props.autoreload,
9896
+ autoreload = _props$autoreload === void 0 ? true : _props$autoreload,
9897
+ onComplete = props.onComplete;
9898
+
9899
+ var _useState = useState(0),
9900
+ progress = _useState[0],
9901
+ setProgress = _useState[1];
9902
+
9903
+ useEffect(function () {
9904
+ if (autoreload) {
9905
+ var interval = setInterval(function () {
9906
+ return refresh(task.id);
9907
+ }, timeout);
9908
+ return function () {
9909
+ clearInterval(interval);
9910
+ };
9911
+ }
9912
+ }, [task, autoreload]);
9913
+ return task ? /*#__PURE__*/React.createElement(LinearProgress, {
9914
+ progress: progress
9915
+ }) : null;
9916
+ };
9917
+ /**
9918
+ * Task Monitor
9919
+ */
9920
+
9921
+ var TaskMonitor = function TaskMonitor(props) {
9922
+ var remove = function remove(task) {
9923
+ try {
9924
+ return Promise.resolve(context.removeTask(task.id)).then(function () {
9925
+ refresh();
9926
+ });
9927
+ } catch (e) {
9928
+ return Promise.reject(e);
9929
+ }
9930
+ };
9931
+
9932
+ var refresh = function refresh() {
9933
+ try {
9934
+ return Promise.resolve(context.tasks()).then(function (tasks) {
9935
+ setTasks(tasks);
9936
+ });
9937
+ } catch (e) {
9938
+ return Promise.reject(e);
9939
+ }
9940
+ };
9941
+
9942
+ var context = useContext(TaskContext);
9943
+
9944
+ var _useState2 = useState([]),
9945
+ _useState2$ = _useState2[0],
9946
+ tasks = _useState2$ === void 0 ? [] : _useState2$,
9947
+ setTasks = _useState2[1];
9948
+
9949
+ useEffect(function () {
9950
+ refresh();
9951
+ var interval = setInterval(function () {
9952
+ refresh();
9953
+ }, 5000);
9954
+ return function () {
9955
+ clearInterval(interval);
9956
+ };
9957
+ }, []);
9958
+ if (!tasks.length) return null;
9959
+ var table = {
9960
+ columns: [{
9961
+ id: "state",
9962
+ label: "Estado"
9963
+ }, {
9964
+ id: "description",
9965
+ label: "Descripcion"
9966
+ }, {
9967
+ id: "progress",
9968
+ label: "%"
9969
+ }, {
9970
+ id: "percentage",
9971
+ label: ""
9972
+ }, {
9973
+ id: "init",
9974
+ label: "Inicio"
9975
+ }, {
9976
+ id: "end",
9977
+ label: "Fin"
9978
+ }, {
9979
+ id: "resourceID",
9980
+ label: "Recurso"
9981
+ }, {
9982
+ id: "owner",
9983
+ label: "Propietario"
9984
+ }, {
9985
+ id: "actions",
9986
+ label: ""
9987
+ }],
9988
+ rows: tasks.map(function (task) {
9989
+ return {
9990
+ id: task.id,
9991
+ resourceID: task.resourceID,
9992
+ init: task.init,
9993
+ end: task.end,
9994
+ owner: task.owner,
9995
+ description: task.description,
9996
+ percentage: task.percentage,
9997
+ progress: /*#__PURE__*/React.createElement(LinearProgress, {
9998
+ progress: task.percentage
9999
+ }),
10000
+ state: task.state,
10001
+ actions: /*#__PURE__*/React.createElement(Icon, {
10002
+ size: "small",
10003
+ icon: "cancel",
10004
+ clickable: true,
10005
+ action: function action() {
10006
+ return remove(task);
10007
+ }
10008
+ })
10009
+ };
10010
+ })
10011
+ };
10012
+ return /*#__PURE__*/React.createElement("div", {
10013
+ className: "task-manager"
10014
+ }, /*#__PURE__*/React.createElement(Header, {
10015
+ icon: "list",
10016
+ title: "Task Manager"
10017
+ }), /*#__PURE__*/React.createElement("main", null, /*#__PURE__*/React.createElement(DataTable, table)));
10018
+ };
10019
+
9759
10020
  var isFunction = function isFunction(value) {
9760
10021
  return value && (Object.prototype.toString.call(value) === "[object Function]" || "function" === typeof value || value instanceof Function);
9761
10022
  };
9762
10023
 
9763
- export { Accordion, Avatar, Button, Calendar, CheckBox, Chip, Chips, CircularProgress, CollectionContext, CollectionEditor$1 as CollectionEditor, CollectionFilters, CollectionPage, CollectionTree, ColorField, Content, ContentEditor, ContentForm, ContentViewer, CreateContentDialog, DataTable, Dialog, DropDown, EditContentDialog, EmptyMessage, FORMATS, FieldEditor, FileExplorer, FilesGrid, Form, HTTPClient, Header, Icon, Kanban, KanbanCard, KanbanColumn, LinearProgress, List, ListEditor, LoginBox, Menu, MenuIcon, MenuItem, MenuSeparator, Page, PageContext, PageProvider, Planner, Property, RadioButton, ResetPasswordBox, Section, Session, Site, SiteContext, SiteProvider, Stack, Switch, TEXTFORMATS, TYPES, Tab, TabbedContentEditor, TabbedTablePage, TabbedView, TableEditor$2 as TableEditor, TablePage, TablePage2, Tabs, Text, TextArea, TextField, Thumbnail, TokenField, Tooltip, Tree, TreeItem, TreeNode, TreededContentEditor, UploadArea, UploadDialog, UploadFile, UploadIcon, Uploader, View, Viewer, WaitScreen, Wizard, WizardContext, isFunction };
10024
+ export { Accordion, Avatar, Button, Calendar, CheckBox, Chip, Chips, CircularProgress, CollectionContext, CollectionEditor$1 as CollectionEditor, CollectionFilters, CollectionPage, CollectionTree, ColorField, Content, ContentEditor, ContentForm, ContentViewer, CreateContentDialog, DataTable, Dialog, DropDown, EditContentDialog, EmptyMessage, FORMATS, FieldEditor, FileExplorer, FilesGrid, Form, HTTPClient, Header, Icon, Kanban, KanbanCard, KanbanColumn, LinearProgress, List, ListEditor, LoginBox, Menu, MenuIcon, MenuItem, MenuSeparator, Page, PageContext, PageProvider, Planner, Property, RadioButton, ResetPasswordBox, Section, Session, Site, SiteContext, SiteProvider, Stack, Switch, TEXTFORMATS, TYPES, Tab, TabbedContentEditor, TabbedTablePage, TabbedView, TableEditor$2 as TableEditor, TablePage, TablePage2, Tabs, TaskContext, TaskContextProvider, TaskMonitor, TaskProgress, Text, TextArea, TextField, Thumbnail, TokenField, Tooltip, Tree, TreeItem, TreeNode, TreededContentEditor, UploadArea, UploadDialog, UploadFile, UploadIcon, Uploader, View, Viewer, WaitScreen, Wizard, WizardContext, isFunction };
9764
10025
  //# sourceMappingURL=index.modern.js.map