ywana-core8 0.1.39 → 0.1.41

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.
@@ -202,7 +202,7 @@ var TEXTFORMATS = {
202
202
  /**
203
203
  * Text
204
204
  */
205
- var Text$1 = function Text(_ref) {
205
+ var Text = function Text(_ref) {
206
206
  var _ref$format = _ref.format,
207
207
  format = _ref$format === void 0 ? TEXTFORMATS.HTML : _ref$format,
208
208
  children = _ref.children,
@@ -261,7 +261,7 @@ var Tooltip = function Tooltip(props) {
261
261
  }, /*#__PURE__*/React.createElement("span", {
262
262
  className: "tooltip-text",
263
263
  style: style
264
- }, /*#__PURE__*/React.createElement(Text$1, null, text)), props.children);
264
+ }, /*#__PURE__*/React.createElement(Text, null, text)), props.children);
265
265
  };
266
266
 
267
267
  /**
@@ -430,7 +430,7 @@ var Button = function Button(_ref) {
430
430
  size: "small",
431
431
  clickable: true,
432
432
  action: click
433
- }), /*#__PURE__*/React.createElement(Text$1, null, label));
433
+ }), /*#__PURE__*/React.createElement(Text, null, label));
434
434
  };
435
435
 
436
436
  /**
@@ -492,8 +492,8 @@ var CheckBox = function CheckBox(props) {
492
492
  var value = event.target.checked;
493
493
  if (onChange) onChange(id, value);
494
494
  }
495
- var labelTxt = /*#__PURE__*/React.createElement(Text$1, null, label);
496
- var placeholderTxt = /*#__PURE__*/React.createElement(Text$1, null, placeholder);
495
+ var labelTxt = /*#__PURE__*/React.createElement(Text, null, label);
496
+ var placeholderTxt = /*#__PURE__*/React.createElement(Text, null, placeholder);
497
497
  if (readOnly === true) {
498
498
  return value === true ? /*#__PURE__*/React.createElement("div", {
499
499
  className: "checkbox",
@@ -573,7 +573,7 @@ var Chip = function Chip(props) {
573
573
  }, icon ? /*#__PURE__*/React.createElement(Icon, {
574
574
  icon: icon,
575
575
  size: "small"
576
- }) : null, /*#__PURE__*/React.createElement("main", null, /*#__PURE__*/React.createElement(Text$1, null, label)), action ? /*#__PURE__*/React.createElement("span", {
576
+ }) : null, /*#__PURE__*/React.createElement("main", null, /*#__PURE__*/React.createElement(Text, null, label)), action ? /*#__PURE__*/React.createElement("span", {
577
577
  className: "meta"
578
578
  }, action) : null)) : /*#__PURE__*/React.createElement("div", {
579
579
  className: "chip " + className + " " + style,
@@ -581,7 +581,7 @@ var Chip = function Chip(props) {
581
581
  }, icon ? /*#__PURE__*/React.createElement(Icon, {
582
582
  icon: icon,
583
583
  size: "small"
584
- }) : null, /*#__PURE__*/React.createElement("main", null, /*#__PURE__*/React.createElement(Text$1, null, label)), action ? /*#__PURE__*/React.createElement("span", {
584
+ }) : null, /*#__PURE__*/React.createElement("main", null, /*#__PURE__*/React.createElement(Text, null, label)), action ? /*#__PURE__*/React.createElement("span", {
585
585
  className: "meta"
586
586
  }, action) : null);
587
587
  };
@@ -684,7 +684,7 @@ var Form = function Form(_ref) {
684
684
  };
685
685
  return /*#__PURE__*/React.createElement(Fragment, null, title ? /*#__PURE__*/React.createElement("header", {
686
686
  className: "form-header"
687
- }, /*#__PURE__*/React.createElement(Text$1, {
687
+ }, /*#__PURE__*/React.createElement(Text, {
688
688
  use: "headline6"
689
689
  }, title)) : '', /*#__PURE__*/React.createElement("form", {
690
690
  className: "form-grid",
@@ -725,7 +725,7 @@ var Header = function Header(props) {
725
725
  var style = props.img ? {
726
726
  backgroundImage: "url(" + props.img + ")"
727
727
  } : {};
728
- var title = /*#__PURE__*/React.createElement(Text$1, null, props.title);
728
+ var title = /*#__PURE__*/React.createElement(Text, null, props.title);
729
729
  return /*#__PURE__*/React.createElement("header", {
730
730
  className: "header " + caption + " " + prominent + " " + dense + " " + theme + " " + props.className,
731
731
  style: style
@@ -789,7 +789,7 @@ var GroupedList = function GroupedList(props) {
789
789
  return /*#__PURE__*/React.createElement("div", {
790
790
  className: "list grouped"
791
791
  }, groups.map(function (group) {
792
- var groupTitle = groupRenderer ? groupRenderer(group) : /*#__PURE__*/React.createElement(Text$1, null, group.name);
792
+ var groupTitle = groupRenderer ? groupRenderer(group) : /*#__PURE__*/React.createElement(Text, null, group.name);
793
793
  return /*#__PURE__*/React.createElement(Fragment, {
794
794
  key: group.name
795
795
  }, /*#__PURE__*/React.createElement("header", {
@@ -834,9 +834,9 @@ var ListItem = function ListItem(_ref) {
834
834
  tooltip: iconTooltip
835
835
  }) : null, /*#__PURE__*/React.createElement("main", null, /*#__PURE__*/React.createElement("div", {
836
836
  className: "primary-line"
837
- }, /*#__PURE__*/React.createElement(Text$1, null, line1)), line2 ? /*#__PURE__*/React.createElement("div", {
837
+ }, /*#__PURE__*/React.createElement(Text, null, line1)), line2 ? /*#__PURE__*/React.createElement("div", {
838
838
  className: "secondary-line"
839
- }, /*#__PURE__*/React.createElement(Text$1, null, line2)) : null), meta ? /*#__PURE__*/React.createElement("div", {
839
+ }, /*#__PURE__*/React.createElement(Text, null, line2)) : null), meta ? /*#__PURE__*/React.createElement("div", {
840
840
  className: "meta"
841
841
  }, meta) : null);
842
842
  };
@@ -908,7 +908,7 @@ var MenuItem = function MenuItem(props) {
908
908
  }
909
909
  }
910
910
  var style = disabled ? "disabled" : "";
911
- var labelTxt = label ? /*#__PURE__*/React.createElement(Text$1, {
911
+ var labelTxt = label ? /*#__PURE__*/React.createElement(Text, {
912
912
  format: TEXTFORMATS.STRING
913
913
  }, label) : null;
914
914
  return /*#__PURE__*/React.createElement("li", {
@@ -993,7 +993,7 @@ var Property = function Property(props) {
993
993
  className: "property property-" + id + " " + className
994
994
  }, /*#__PURE__*/React.createElement("div", {
995
995
  className: "property-name"
996
- }, /*#__PURE__*/React.createElement(Text$1, null, name || label)), /*#__PURE__*/React.createElement("div", {
996
+ }, /*#__PURE__*/React.createElement(Text, null, name || label)), /*#__PURE__*/React.createElement("div", {
997
997
  className: "property-value"
998
998
  }, editable ? /*#__PURE__*/React.createElement("input", {
999
999
  type: "text",
@@ -1021,7 +1021,7 @@ var RadioButton = function RadioButton(props) {
1021
1021
  var value = event.target.value;
1022
1022
  if (onChange) onChange(id, value);
1023
1023
  }
1024
- var labelTxt = /*#__PURE__*/React.createElement(Text$1, null, label);
1024
+ var labelTxt = /*#__PURE__*/React.createElement(Text, null, label);
1025
1025
  return /*#__PURE__*/React.createElement("div", {
1026
1026
  className: "radio"
1027
1027
  }, /*#__PURE__*/React.createElement("input", {
@@ -1120,7 +1120,7 @@ var Tab = function Tab(props) {
1120
1120
  if (onSelect) onSelect(id);
1121
1121
  }
1122
1122
  var style = selected ? "selected" : "";
1123
- var labelTxt = label ? /*#__PURE__*/React.createElement(Text$1, {
1123
+ var labelTxt = label ? /*#__PURE__*/React.createElement(Text, {
1124
1124
  format: TEXTFORMATS.STRING
1125
1125
  }, label) : null;
1126
1126
  return /*#__PURE__*/React.createElement("div", {
@@ -1425,7 +1425,7 @@ var TextField = function TextField(props) {
1425
1425
  var labelStyle = label ? "" : "no-label";
1426
1426
  var labelPositionStyle = labelPosition == 'left' ? "label-left" : "label-top";
1427
1427
  var style = labelStyle + " " + labelPositionStyle + " " + borderStyle + " textfield-" + type;
1428
- var labelTxt = /*#__PURE__*/React.createElement(Text$1, null, label);
1428
+ var labelTxt = /*#__PURE__*/React.createElement(Text, null, label);
1429
1429
  var placeholderTxt = site.translate ? site.translate(placeholder) : placeholder;
1430
1430
  return /*#__PURE__*/React.createElement("div", {
1431
1431
  className: style + " " + id + " " + className,
@@ -1503,7 +1503,7 @@ var TextArea = function TextArea(props) {
1503
1503
  }
1504
1504
  var labelStyle = label ? "" : "no-label";
1505
1505
  var style = "textarea " + labelStyle + " textarea-" + type;
1506
- var labelTxt = /*#__PURE__*/React.createElement(Text$1, null, label);
1506
+ var labelTxt = /*#__PURE__*/React.createElement(Text, null, label);
1507
1507
  var placeholderTxt = site.translate ? site.translate(placeholder) : placeholder;
1508
1508
  return /*#__PURE__*/React.createElement("div", {
1509
1509
  className: "" + style,
@@ -1620,7 +1620,7 @@ var DropDown = function DropDown(props) {
1620
1620
  }, option.icon ? /*#__PURE__*/React.createElement(Icon, {
1621
1621
  icon: option.icon,
1622
1622
  size: "small"
1623
- }) : '', /*#__PURE__*/React.createElement(Text$1, null, option.label));
1623
+ }) : '', /*#__PURE__*/React.createElement(Text, null, option.label));
1624
1624
  });
1625
1625
  return /*#__PURE__*/React.createElement("menu", {
1626
1626
  className: position
@@ -1674,7 +1674,7 @@ var DateRange = function DateRange(props) {
1674
1674
  var next = Object.assign({}, form, (_Object$assign = {}, _Object$assign[id] = value, _Object$assign));
1675
1675
  setForm(next);
1676
1676
  }
1677
- var labelTxt = label ? /*#__PURE__*/React.createElement(Text$1, null, label) : null;
1677
+ var labelTxt = label ? /*#__PURE__*/React.createElement(Text, null, label) : null;
1678
1678
  return /*#__PURE__*/React.createElement("div", {
1679
1679
  className: "date-range"
1680
1680
  }, label ? /*#__PURE__*/React.createElement("label", null, labelTxt) : null, /*#__PURE__*/React.createElement(TextField, {
@@ -1702,7 +1702,7 @@ var PasswordField = function PasswordField(props) {
1702
1702
  function toggle() {
1703
1703
  setShow(!show);
1704
1704
  }
1705
- var labelTxt = label ? /*#__PURE__*/React.createElement(Text$1, null, label) : null;
1705
+ var labelTxt = label ? /*#__PURE__*/React.createElement(Text, null, label) : null;
1706
1706
  return /*#__PURE__*/React.createElement("div", {
1707
1707
  className: "password-field"
1708
1708
  }, /*#__PURE__*/React.createElement(TextField, {
@@ -1750,7 +1750,7 @@ var LoginBox = function LoginBox(_ref) {
1750
1750
  if (onOK && canOK()) onOK(user, forcedPwd || password);
1751
1751
  }
1752
1752
  function tx(txt) {
1753
- return /*#__PURE__*/React.createElement(Text$1, null, txt);
1753
+ return /*#__PURE__*/React.createElement(Text, null, txt);
1754
1754
  }
1755
1755
  function changeUser(id, value) {
1756
1756
  setUser(value);
@@ -1788,7 +1788,7 @@ var LoginBox = function LoginBox(_ref) {
1788
1788
  className: "login-button"
1789
1789
  }) : null, children, message ? /*#__PURE__*/React.createElement("div", {
1790
1790
  className: "message"
1791
- }, /*#__PURE__*/React.createElement(Text$1, null, message)) : null));
1791
+ }, /*#__PURE__*/React.createElement(Text, null, message)) : null));
1792
1792
  };
1793
1793
 
1794
1794
  function validatePassword(contraseña) {
@@ -1940,10 +1940,10 @@ var ResetPasswordBox = function ResetPasswordBox(_ref) {
1940
1940
  onOK(form);
1941
1941
  }
1942
1942
  }
1943
- var userLabel = /*#__PURE__*/React.createElement(Text$1, null, "User");
1944
- var passwordLabel = /*#__PURE__*/React.createElement(Text$1, null, "New Password");
1945
- var password2Label = /*#__PURE__*/React.createElement(Text$1, null, "Confirm New Password");
1946
- var okLabel = /*#__PURE__*/React.createElement(Text$1, null, "OK");
1943
+ var userLabel = /*#__PURE__*/React.createElement(Text, null, "User");
1944
+ var passwordLabel = /*#__PURE__*/React.createElement(Text, null, "New Password");
1945
+ var password2Label = /*#__PURE__*/React.createElement(Text, null, "Confirm New Password");
1946
+ var okLabel = /*#__PURE__*/React.createElement(Text, null, "OK");
1947
1947
  var userStyle = errors.user ? "error" : "";
1948
1948
  var oldPasswordStyle = errors.oldPassword ? "error" : "";
1949
1949
  var password1Style = errors.password1 ? "error" : "";
@@ -1963,7 +1963,7 @@ var ResetPasswordBox = function ResetPasswordBox(_ref) {
1963
1963
  onEnter: ok
1964
1964
  }) : null, userRequired ? errors.user ? /*#__PURE__*/React.createElement("div", {
1965
1965
  className: "error-message"
1966
- }, /*#__PURE__*/React.createElement(Text$1, null, errors.user)) : null : null, oldPwdRequired ? /*#__PURE__*/React.createElement(TextField, {
1966
+ }, /*#__PURE__*/React.createElement(Text, null, errors.user)) : null : null, oldPwdRequired ? /*#__PURE__*/React.createElement(TextField, {
1967
1967
  id: "oldPassword",
1968
1968
  className: oldPasswordStyle,
1969
1969
  outlined: true,
@@ -1975,7 +1975,7 @@ var ResetPasswordBox = function ResetPasswordBox(_ref) {
1975
1975
  onEnter: ok
1976
1976
  }) : null, oldPwdRequired ? errors.oldPassword ? /*#__PURE__*/React.createElement("div", {
1977
1977
  className: "error-message"
1978
- }, /*#__PURE__*/React.createElement(Text$1, null, errors.oldPassword)) : null : null, /*#__PURE__*/React.createElement(TextField, {
1978
+ }, /*#__PURE__*/React.createElement(Text, null, errors.oldPassword)) : null : null, /*#__PURE__*/React.createElement(TextField, {
1979
1979
  id: "password1",
1980
1980
  className: password1Style,
1981
1981
  outlined: true,
@@ -1987,7 +1987,7 @@ var ResetPasswordBox = function ResetPasswordBox(_ref) {
1987
1987
  onEnter: ok
1988
1988
  }), errors.password1 ? /*#__PURE__*/React.createElement("div", {
1989
1989
  className: "error-message"
1990
- }, /*#__PURE__*/React.createElement(Text$1, null, errors.password1)) : null, children, /*#__PURE__*/React.createElement(TextField, {
1990
+ }, /*#__PURE__*/React.createElement(Text, null, errors.password1)) : null, children, /*#__PURE__*/React.createElement(TextField, {
1991
1991
  id: "password2",
1992
1992
  className: password2Style,
1993
1993
  outlined: true,
@@ -1999,7 +1999,7 @@ var ResetPasswordBox = function ResetPasswordBox(_ref) {
1999
1999
  onEnter: ok
2000
2000
  }), errors.password2 ? /*#__PURE__*/React.createElement("div", {
2001
2001
  className: "error-message"
2002
- }, /*#__PURE__*/React.createElement(Text$1, null, errors.password2)) : null), /*#__PURE__*/React.createElement("footer", null, /*#__PURE__*/React.createElement(Button, {
2002
+ }, /*#__PURE__*/React.createElement(Text, null, errors.password2)) : null), /*#__PURE__*/React.createElement("footer", null, /*#__PURE__*/React.createElement(Button, {
2003
2003
  label: okLabel,
2004
2004
  raised: true,
2005
2005
  disabled: !isValid,
@@ -2452,7 +2452,7 @@ var Dialog = function Dialog(props) {
2452
2452
  className: "dialog-panel " + className
2453
2453
  }, /*#__PURE__*/React.createElement("header", null, icon ? /*#__PURE__*/React.createElement(MenuIcon, {
2454
2454
  icon: icon
2455
- }) : null, /*#__PURE__*/React.createElement(Text$1, null, title), toolbar), /*#__PURE__*/React.createElement("main", null, children), /*#__PURE__*/React.createElement("footer", null, actions)));
2455
+ }) : null, /*#__PURE__*/React.createElement(Text, null, title), toolbar), /*#__PURE__*/React.createElement("main", null, children), /*#__PURE__*/React.createElement("footer", null, actions)));
2456
2456
  };
2457
2457
 
2458
2458
  /**
@@ -2597,8 +2597,8 @@ var ForgetUserPasswordAction = function ForgetUserPasswordAction(props) {
2597
2597
  var email = user.email;
2598
2598
  return Promise.resolve(onOK(email)).then(function () {
2599
2599
  site.notify({
2600
- title: /*#__PURE__*/React.createElement(Text$1, null, "Forgot Password"),
2601
- body: /*#__PURE__*/React.createElement(Text$1, null, "Check your email to reset your password"),
2600
+ title: /*#__PURE__*/React.createElement(Text, null, "Forgot Password"),
2601
+ body: /*#__PURE__*/React.createElement(Text, null, "Check your email to reset your password"),
2602
2602
  icon: "mail_lock"
2603
2603
  });
2604
2604
  });
@@ -2646,8 +2646,8 @@ var UnlockUserAction = function UnlockUserAction(props) {
2646
2646
  return Promise.resolve(onOK(user)).then(function () {
2647
2647
  if (onSuccess) onSuccess();
2648
2648
  site.notify({
2649
- title: /*#__PURE__*/React.createElement(Text$1, null, "User Unlocked"),
2650
- body: /*#__PURE__*/React.createElement(Text$1, null, "The user has been unlocked successfully"),
2649
+ title: /*#__PURE__*/React.createElement(Text, null, "User Unlocked"),
2650
+ body: /*#__PURE__*/React.createElement(Text, null, "The user has been unlocked successfully"),
2651
2651
  icon: "key"
2652
2652
  });
2653
2653
  });
@@ -2670,7 +2670,7 @@ var UnlockUserAction = function UnlockUserAction(props) {
2670
2670
  icon = _props$icon2 === void 0 ? true : _props$icon2,
2671
2671
  onOK = props.onOK,
2672
2672
  onSuccess = props.onSuccess;
2673
- var label = /*#__PURE__*/React.createElement(Text$1, null, "Unlock User");
2673
+ var label = /*#__PURE__*/React.createElement(Text, null, "Unlock User");
2674
2674
  return icon ? /*#__PURE__*/React.createElement(Icon, {
2675
2675
  icon: "key_off",
2676
2676
  clickable: true,
@@ -2697,11 +2697,11 @@ var ChangeUserPasswordAction = function ChangeUserPasswordAction(props) {
2697
2697
  return {
2698
2698
  "ERROR OLD PASSWORD": {
2699
2699
  title: "Error",
2700
- description: /*#__PURE__*/React.createElement(Text$1, null, "Incorrect old password")
2700
+ description: /*#__PURE__*/React.createElement(Text, null, "Incorrect old password")
2701
2701
  },
2702
2702
  "PASSWORD ALREADY USED": {
2703
2703
  title: "Error",
2704
- description: /*#__PURE__*/React.createElement(Text$1, null, "The new password provided has already been used")
2704
+ description: /*#__PURE__*/React.createElement(Text, null, "The new password provided has already been used")
2705
2705
  }
2706
2706
  };
2707
2707
  }, []);
@@ -2711,8 +2711,8 @@ var ChangeUserPasswordAction = function ChangeUserPasswordAction(props) {
2711
2711
  var _temp3 = _catch$7(function () {
2712
2712
  return Promise.resolve(props.onOK(user, form.oldPassword, form.password1)).then(function () {
2713
2713
  site.notify({
2714
- title: /*#__PURE__*/React.createElement(Text$1, null, "Change Password"),
2715
- body: /*#__PURE__*/React.createElement(Text$1, null, "The password has been changed successfully"),
2714
+ title: /*#__PURE__*/React.createElement(Text, null, "Change Password"),
2715
+ body: /*#__PURE__*/React.createElement(Text, null, "The password has been changed successfully"),
2716
2716
  icon: "key"
2717
2717
  });
2718
2718
  site.closeDialog();
@@ -2743,7 +2743,7 @@ var ChangeUserPasswordAction = function ChangeUserPasswordAction(props) {
2743
2743
  onOK: onOK
2744
2744
  }));
2745
2745
  }
2746
- var label = /*#__PURE__*/React.createElement(Text$1, null, "Change Password");
2746
+ var label = /*#__PURE__*/React.createElement(Text, null, "Change Password");
2747
2747
  return icon ? /*#__PURE__*/React.createElement(Icon, {
2748
2748
  icon: "key",
2749
2749
  clickable: true,
@@ -3260,7 +3260,7 @@ var Viewer = function Viewer(_ref) {
3260
3260
  function toggleDetails() {
3261
3261
  setShowDetails(!showDetails);
3262
3262
  }
3263
- var headerTitle = /*#__PURE__*/React.createElement(Text$1, {
3263
+ var headerTitle = /*#__PURE__*/React.createElement(Text, {
3264
3264
  use: "headline6"
3265
3265
  }, title);
3266
3266
  return /*#__PURE__*/React.createElement("div", {
@@ -3334,9 +3334,9 @@ var KanbanHeader = function KanbanHeader(props) {
3334
3334
  icon: icon
3335
3335
  }), /*#__PURE__*/React.createElement("div", {
3336
3336
  className: "title"
3337
- }, /*#__PURE__*/React.createElement(Text$1, {
3337
+ }, /*#__PURE__*/React.createElement(Text, {
3338
3338
  use: "headline6"
3339
- }, title), /*#__PURE__*/React.createElement(Text$1, {
3339
+ }, title), /*#__PURE__*/React.createElement(Text, {
3340
3340
  className: "secondary-text",
3341
3341
  use: "body2"
3342
3342
  }, subtitle)), /*#__PURE__*/React.createElement("div", {
@@ -3384,9 +3384,9 @@ var KanbanSwimlane = function KanbanSwimlane(_ref2) {
3384
3384
  size: "small"
3385
3385
  }), /*#__PURE__*/React.createElement("div", {
3386
3386
  className: "title"
3387
- }, /*#__PURE__*/React.createElement(Text$1, {
3387
+ }, /*#__PURE__*/React.createElement(Text, {
3388
3388
  use: "headline6"
3389
- }, title, ":"), /*#__PURE__*/React.createElement(Text$1, {
3389
+ }, title, ":"), /*#__PURE__*/React.createElement(Text, {
3390
3390
  className: "secondary-text",
3391
3391
  use: "body2"
3392
3392
  }, subtitle)), /*#__PURE__*/React.createElement("div", {
@@ -3436,9 +3436,9 @@ var KanbanColumn = function KanbanColumn(_ref3) {
3436
3436
  icon: icon
3437
3437
  }), /*#__PURE__*/React.createElement("div", {
3438
3438
  className: "title"
3439
- }, /*#__PURE__*/React.createElement(Text$1, {
3439
+ }, /*#__PURE__*/React.createElement(Text, {
3440
3440
  use: "headline6"
3441
- }, title), /*#__PURE__*/React.createElement(Text$1, {
3441
+ }, title), /*#__PURE__*/React.createElement(Text, {
3442
3442
  className: "secondary-text",
3443
3443
  use: "body2"
3444
3444
  }, subtitle)), /*#__PURE__*/React.createElement("div", {
@@ -3616,7 +3616,7 @@ var MonthCalendar = function MonthCalendar(props) {
3616
3616
  });
3617
3617
  return /*#__PURE__*/React.createElement("div", {
3618
3618
  className: "month-calendar"
3619
- }, /*#__PURE__*/React.createElement("nav", null, /*#__PURE__*/React.createElement("label", null, " ", /*#__PURE__*/React.createElement(Text$1, null, monthName), " ", year), /*#__PURE__*/React.createElement(Button, {
3619
+ }, /*#__PURE__*/React.createElement("nav", null, /*#__PURE__*/React.createElement("label", null, " ", /*#__PURE__*/React.createElement(Text, null, monthName), " ", year), /*#__PURE__*/React.createElement(Button, {
3620
3620
  icon: "chevron_left",
3621
3621
  action: prev
3622
3622
  }), /*#__PURE__*/React.createElement(Button, {
@@ -3628,19 +3628,19 @@ var MonthCalendar = function MonthCalendar(props) {
3628
3628
  action: next
3629
3629
  })), /*#__PURE__*/React.createElement("header", null, /*#__PURE__*/React.createElement("div", {
3630
3630
  className: "week-day-cell"
3631
- }, /*#__PURE__*/React.createElement(Text$1, null, "Mon")), /*#__PURE__*/React.createElement("div", {
3631
+ }, /*#__PURE__*/React.createElement(Text, null, "Mon")), /*#__PURE__*/React.createElement("div", {
3632
3632
  className: "week-day-cell"
3633
- }, /*#__PURE__*/React.createElement(Text$1, null, "Tue")), /*#__PURE__*/React.createElement("div", {
3633
+ }, /*#__PURE__*/React.createElement(Text, null, "Tue")), /*#__PURE__*/React.createElement("div", {
3634
3634
  className: "week-day-cell"
3635
- }, /*#__PURE__*/React.createElement(Text$1, null, "Wed")), /*#__PURE__*/React.createElement("div", {
3635
+ }, /*#__PURE__*/React.createElement(Text, null, "Wed")), /*#__PURE__*/React.createElement("div", {
3636
3636
  className: "week-day-cell"
3637
- }, /*#__PURE__*/React.createElement(Text$1, null, "Thu")), /*#__PURE__*/React.createElement("div", {
3637
+ }, /*#__PURE__*/React.createElement(Text, null, "Thu")), /*#__PURE__*/React.createElement("div", {
3638
3638
  className: "week-day-cell"
3639
- }, /*#__PURE__*/React.createElement(Text$1, null, "Fri")), /*#__PURE__*/React.createElement("div", {
3639
+ }, /*#__PURE__*/React.createElement(Text, null, "Fri")), /*#__PURE__*/React.createElement("div", {
3640
3640
  className: "week-day-cell"
3641
- }, /*#__PURE__*/React.createElement(Text$1, null, "Sat")), /*#__PURE__*/React.createElement("div", {
3641
+ }, /*#__PURE__*/React.createElement(Text, null, "Sat")), /*#__PURE__*/React.createElement("div", {
3642
3642
  className: "week-day-cell"
3643
- }, /*#__PURE__*/React.createElement(Text$1, null, "Sun"))), /*#__PURE__*/React.createElement("main", null, cells.map(function (cell) {
3643
+ }, /*#__PURE__*/React.createElement(Text, null, "Sun"))), /*#__PURE__*/React.createElement("main", null, cells.map(function (cell) {
3644
3644
  return /*#__PURE__*/React.createElement(DayCell, {
3645
3645
  key: cell.day,
3646
3646
  cell: cell
@@ -3756,7 +3756,7 @@ var YearCalendar = function YearCalendar(props) {
3756
3756
  });
3757
3757
  return /*#__PURE__*/React.createElement("div", {
3758
3758
  className: "year-calendar"
3759
- }, /*#__PURE__*/React.createElement("nav", null, /*#__PURE__*/React.createElement("label", null, " ", /*#__PURE__*/React.createElement(Text$1, null, year)), /*#__PURE__*/React.createElement(Button, {
3759
+ }, /*#__PURE__*/React.createElement("nav", null, /*#__PURE__*/React.createElement("label", null, " ", /*#__PURE__*/React.createElement(Text, null, year)), /*#__PURE__*/React.createElement(Button, {
3760
3760
  icon: "chevron_left",
3761
3761
  action: prev
3762
3762
  }), /*#__PURE__*/React.createElement(Button, {
@@ -3788,19 +3788,19 @@ var MonthCell = function MonthCell(props) {
3788
3788
  className: "month-cell"
3789
3789
  }, /*#__PURE__*/React.createElement("nav", null, monthName), /*#__PURE__*/React.createElement("header", null, /*#__PURE__*/React.createElement("div", {
3790
3790
  className: "week-day-cell"
3791
- }, /*#__PURE__*/React.createElement(Text$1, null, "Mon")), /*#__PURE__*/React.createElement("div", {
3791
+ }, /*#__PURE__*/React.createElement(Text, null, "Mon")), /*#__PURE__*/React.createElement("div", {
3792
3792
  className: "week-day-cell"
3793
- }, /*#__PURE__*/React.createElement(Text$1, null, "Tue")), /*#__PURE__*/React.createElement("div", {
3793
+ }, /*#__PURE__*/React.createElement(Text, null, "Tue")), /*#__PURE__*/React.createElement("div", {
3794
3794
  className: "week-day-cell"
3795
- }, /*#__PURE__*/React.createElement(Text$1, null, "Wed")), /*#__PURE__*/React.createElement("div", {
3795
+ }, /*#__PURE__*/React.createElement(Text, null, "Wed")), /*#__PURE__*/React.createElement("div", {
3796
3796
  className: "week-day-cell"
3797
- }, /*#__PURE__*/React.createElement(Text$1, null, "Thu")), /*#__PURE__*/React.createElement("div", {
3797
+ }, /*#__PURE__*/React.createElement(Text, null, "Thu")), /*#__PURE__*/React.createElement("div", {
3798
3798
  className: "week-day-cell"
3799
- }, /*#__PURE__*/React.createElement(Text$1, null, "Fri")), /*#__PURE__*/React.createElement("div", {
3799
+ }, /*#__PURE__*/React.createElement(Text, null, "Fri")), /*#__PURE__*/React.createElement("div", {
3800
3800
  className: "week-day-cell"
3801
- }, /*#__PURE__*/React.createElement(Text$1, null, "Sat")), /*#__PURE__*/React.createElement("div", {
3801
+ }, /*#__PURE__*/React.createElement(Text, null, "Sat")), /*#__PURE__*/React.createElement("div", {
3802
3802
  className: "week-day-cell"
3803
- }, /*#__PURE__*/React.createElement(Text$1, null, "Sun"))), /*#__PURE__*/React.createElement("main", null, cells.map(function (cell) {
3803
+ }, /*#__PURE__*/React.createElement(Text, null, "Sun"))), /*#__PURE__*/React.createElement("main", null, cells.map(function (cell) {
3804
3804
  return /*#__PURE__*/React.createElement(DayCell, {
3805
3805
  key: cell.day,
3806
3806
  cell: cell
@@ -3916,7 +3916,7 @@ var Planner = function Planner(_ref) {
3916
3916
  });
3917
3917
  return period;
3918
3918
  }, [from, to]);
3919
- var label = /*#__PURE__*/React.createElement(Text$1, {
3919
+ var label = /*#__PURE__*/React.createElement(Text, {
3920
3920
  use: "headline6"
3921
3921
  }, title);
3922
3922
  return /*#__PURE__*/React.createElement("div", {
@@ -3983,7 +3983,7 @@ var Planner = function Planner(_ref) {
3983
3983
  className: "column-header"
3984
3984
  }, /*#__PURE__*/React.createElement("div", {
3985
3985
  className: "month-header " + first
3986
- }, /*#__PURE__*/React.createElement(Text$1, {
3986
+ }, /*#__PURE__*/React.createElement(Text, {
3987
3987
  use: "overline"
3988
3988
  }, date.moment.format("MMM"))));
3989
3989
  })), /*#__PURE__*/React.createElement("div", {
@@ -4003,9 +4003,9 @@ var Planner = function Planner(_ref) {
4003
4003
  }, /*#__PURE__*/React.createElement("div", {
4004
4004
  className: "date-header " + weekend + " " + thisWeek,
4005
4005
  ref: isThisMonday ? gotoMonday : null
4006
- }, /*#__PURE__*/React.createElement(Text$1, {
4006
+ }, /*#__PURE__*/React.createElement(Text, {
4007
4007
  use: "headline6"
4008
- }, date.moment.format("DD")), "\xA0", /*#__PURE__*/React.createElement(Text$1, {
4008
+ }, date.moment.format("DD")), "\xA0", /*#__PURE__*/React.createElement(Text, {
4009
4009
  use: "caption"
4010
4010
  }, date.moment.format("ddd"))));
4011
4011
  })), lanes.map(function (lane) {
@@ -4372,7 +4372,7 @@ var UploadDialog = function UploadDialog(_ref) {
4372
4372
  },
4373
4373
  disabled: !canClose()
4374
4374
  }));
4375
- var title = /*#__PURE__*/React.createElement(Text$1, {
4375
+ var title = /*#__PURE__*/React.createElement(Text, {
4376
4376
  use: "headline6"
4377
4377
  }, label);
4378
4378
  return /*#__PURE__*/React.createElement(Dialog, {
@@ -4489,7 +4489,7 @@ var FileExplorerView = function FileExplorerView(props) {
4489
4489
  var folder = folders.find(function (folder) {
4490
4490
  return folder.id === selectedFolder;
4491
4491
  });
4492
- var folderTitle = folder ? /*#__PURE__*/React.createElement(Text$1, null, folder.title) : '';
4492
+ var folderTitle = folder ? /*#__PURE__*/React.createElement(Text, null, folder.title) : '';
4493
4493
  function switchView() {
4494
4494
  setView(view === 'grid' ? 'list' : 'grid');
4495
4495
  }
@@ -4697,7 +4697,7 @@ var EmptyMessage = function EmptyMessage(_ref) {
4697
4697
  className: "empty"
4698
4698
  }, /*#__PURE__*/React.createElement("span", null, /*#__PURE__*/React.createElement(Icon, {
4699
4699
  icon: icon
4700
- })), /*#__PURE__*/React.createElement("br", null), /*#__PURE__*/React.createElement(Text$1, {
4700
+ })), /*#__PURE__*/React.createElement("br", null), /*#__PURE__*/React.createElement(Text, {
4701
4701
  use: "subtitle2"
4702
4702
  }, text));
4703
4703
  };
@@ -4829,7 +4829,7 @@ var DataTable = function DataTable(props) {
4829
4829
  }, /*#__PURE__*/React.createElement("div", null, id === "checked" && onCheckAll ? /*#__PURE__*/React.createElement(CheckBox, {
4830
4830
  onChange: checkAll,
4831
4831
  value: allChecked
4832
- }) : /*#__PURE__*/React.createElement(Text$1, {
4832
+ }) : /*#__PURE__*/React.createElement(Text, {
4833
4833
  key: "th_" + id
4834
4834
  }, label), sortable ? /*#__PURE__*/React.createElement(SortIcon, {
4835
4835
  sortDir: sortDir[id],
@@ -5556,7 +5556,7 @@ var Token = function Token(_ref2) {
5556
5556
  onDelete = _ref2.onDelete;
5557
5557
  return /*#__PURE__*/React.createElement("div", {
5558
5558
  className: "token"
5559
- }, /*#__PURE__*/React.createElement(Text$1, {
5559
+ }, /*#__PURE__*/React.createElement(Text, {
5560
5560
  use: "caption",
5561
5561
  tag: "div"
5562
5562
  }, text), /*#__PURE__*/React.createElement(Icon, {
@@ -5592,7 +5592,7 @@ var TreeNode = function TreeNode(_ref2) {
5592
5592
  children = _ref2.children,
5593
5593
  actions = _ref2.actions,
5594
5594
  onSelect = _ref2.onSelect;
5595
- var labelTxt = label ? /*#__PURE__*/React.createElement(Text$1, {
5595
+ var labelTxt = label ? /*#__PURE__*/React.createElement(Text, {
5596
5596
  format: TEXTFORMATS.STRING
5597
5597
  }, label) : null;
5598
5598
  function select() {
@@ -5632,7 +5632,7 @@ var TreeItem = function TreeItem(_ref3) {
5632
5632
  if (onSelect) onSelect(id);
5633
5633
  }
5634
5634
  var style = selected ? "selected" : "";
5635
- var labelTxt = label ? /*#__PURE__*/React.createElement(Text$1, {
5635
+ var labelTxt = label ? /*#__PURE__*/React.createElement(Text, {
5636
5636
  format: TEXTFORMATS.STRING
5637
5637
  }, label) : null;
5638
5638
  return /*#__PURE__*/React.createElement("div", {
@@ -6415,7 +6415,7 @@ var TaskMonitor = function TaskMonitor(props) {
6415
6415
  }).map(function (task) {
6416
6416
  return {
6417
6417
  id: task.id,
6418
- state: /*#__PURE__*/React.createElement(Text$1, null, task.state),
6418
+ state: /*#__PURE__*/React.createElement(Text, null, task.state),
6419
6419
  description: task.description,
6420
6420
  message: task.message,
6421
6421
  progress: /*#__PURE__*/React.createElement(LinearProgress, {
@@ -7051,7 +7051,7 @@ var TreededContentEditor = function TreededContentEditor(_ref4) {
7051
7051
  }
7052
7052
  return /*#__PURE__*/React.createElement("div", {
7053
7053
  className: "content-editor treeded-editor"
7054
- }, /*#__PURE__*/React.createElement("menu", null, /*#__PURE__*/React.createElement("header", null, /*#__PURE__*/React.createElement(Text$1, {
7054
+ }, /*#__PURE__*/React.createElement("menu", null, /*#__PURE__*/React.createElement("header", null, /*#__PURE__*/React.createElement(Text, {
7055
7055
  use: "caption"
7056
7056
  }, "Tree Editor")), /*#__PURE__*/React.createElement(Tree, null, nodes.map(function (node, index) {
7057
7057
  return /*#__PURE__*/React.createElement(TreeNode, {
@@ -7131,7 +7131,7 @@ var FieldEditor = function FieldEditor(_ref5) {
7131
7131
  label: label,
7132
7132
  value: value1,
7133
7133
  onChange: change,
7134
- readOnly: editable
7134
+ readOnly: !editable
7135
7135
  });
7136
7136
  case TYPES$1.NUMBER:
7137
7137
  return /*#__PURE__*/React.createElement(NumberEditor, {
@@ -7205,7 +7205,7 @@ var EntityEditor = function EntityEditor(_ref6) {
7205
7205
  var sections = content.sections();
7206
7206
  return /*#__PURE__*/React.createElement("div", {
7207
7207
  className: "entity-editor"
7208
- }, /*#__PURE__*/React.createElement("header", null, /*#__PURE__*/React.createElement(Text$1, {
7208
+ }, /*#__PURE__*/React.createElement("header", null, /*#__PURE__*/React.createElement(Text, {
7209
7209
  use: "caption"
7210
7210
  }, label)), sections.map(function (section) {
7211
7211
  var title = section.title,
@@ -7452,7 +7452,7 @@ var MultiSelectionEditor = function MultiSelectionEditor(_ref10) {
7452
7452
  }
7453
7453
  return /*#__PURE__*/React.createElement("div", {
7454
7454
  className: "multiselection-editor"
7455
- }, /*#__PURE__*/React.createElement("label", null, /*#__PURE__*/React.createElement(Text$1, null, label)), buildOptions().map(function (option) {
7455
+ }, /*#__PURE__*/React.createElement("label", null, /*#__PURE__*/React.createElement(Text, null, label)), buildOptions().map(function (option) {
7456
7456
  var checked = value.includes(option.value);
7457
7457
  switch (format) {
7458
7458
  case FORMATS$1.CHECKBOX:
@@ -7656,7 +7656,7 @@ var TableEditor$3 = function TableEditor(props) {
7656
7656
  className: "empty-message"
7657
7657
  }, /*#__PURE__*/React.createElement(Icon, {
7658
7658
  icon: "search_off"
7659
- }), /*#__PURE__*/React.createElement(Text$1, null, "No Result Found"));
7659
+ }), /*#__PURE__*/React.createElement(Text, null, "No Result Found"));
7660
7660
  var groups = items.reduce(function (groups, item) {
7661
7661
  var groupName = item[groupBy];
7662
7662
  if (!groupName) groupName = ("NO " + groupBy).toUpperCase();
@@ -7749,7 +7749,7 @@ var TableEditor$3 = function TableEditor(props) {
7749
7749
  }
7750
7750
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
7751
7751
  icon: icon,
7752
- title: /*#__PURE__*/React.createElement(Text$1, null, title)
7752
+ title: /*#__PURE__*/React.createElement(Text, null, title)
7753
7753
  }, /*#__PURE__*/React.createElement(DropDown, {
7754
7754
  id: "groupBy",
7755
7755
  label: "Agrupar Por",
@@ -8018,7 +8018,7 @@ var CreateContentDialog = function CreateContentDialog(_ref) {
8018
8018
  disabled: !isValid,
8019
8019
  raised: true
8020
8020
  }));
8021
- var title = /*#__PURE__*/React.createElement(Text$1, {
8021
+ var title = /*#__PURE__*/React.createElement(Text, {
8022
8022
  use: "headline6"
8023
8023
  }, label);
8024
8024
  var content = new Content(type, form);
@@ -8034,7 +8034,7 @@ var CreateContentDialog = function CreateContentDialog(_ref) {
8034
8034
  className: className,
8035
8035
  outlined: outlined
8036
8036
  }), errors.map(function (error) {
8037
- return /*#__PURE__*/React.createElement(Text$1, {
8037
+ return /*#__PURE__*/React.createElement(Text, {
8038
8038
  use: "overline",
8039
8039
  tag: "div",
8040
8040
  className: "error"
@@ -8100,7 +8100,7 @@ var EditContentDialog = function EditContentDialog(_ref) {
8100
8100
  disabled: !isValid,
8101
8101
  raised: true
8102
8102
  }));
8103
- var title = /*#__PURE__*/React.createElement(Text$1, {
8103
+ var title = /*#__PURE__*/React.createElement(Text, {
8104
8104
  use: "headline6"
8105
8105
  }, label);
8106
8106
  var content = new Content(type, form);
@@ -8115,7 +8115,7 @@ var EditContentDialog = function EditContentDialog(_ref) {
8115
8115
  filter: filterForm,
8116
8116
  className: className
8117
8117
  }), errors.map(function (error) {
8118
- return /*#__PURE__*/React.createElement(Text$1, {
8118
+ return /*#__PURE__*/React.createElement(Text, {
8119
8119
  use: "overline",
8120
8120
  tag: "div",
8121
8121
  className: "error"
@@ -8342,7 +8342,7 @@ var CollectionPage$1 = function CollectionPage(props) {
8342
8342
  var hiddenStyle = pageContext.selected ? "hidden" : "";
8343
8343
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
8344
8344
  className: "collection-page " + className,
8345
- title: /*#__PURE__*/React.createElement(Text$1, null, title2)
8345
+ title: /*#__PURE__*/React.createElement(Text, null, title2)
8346
8346
  }, canAdd ? /*#__PURE__*/React.createElement(Button, {
8347
8347
  icon: "add",
8348
8348
  label: "Add",
@@ -8822,7 +8822,7 @@ var CollectionEditor$1 = function CollectionEditor(props) {
8822
8822
  }
8823
8823
  }
8824
8824
  var hasMenu = canDelete;
8825
- var saveLabel = /*#__PURE__*/React.createElement(Text$1, null, "Guardar Cambios");
8825
+ var saveLabel = /*#__PURE__*/React.createElement(Text, null, "Guardar Cambios");
8826
8826
  return selected && form ? /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
8827
8827
  icon: icon,
8828
8828
  title: renderTitle()
@@ -9265,7 +9265,7 @@ var TablePage = function TablePage(props) {
9265
9265
  }, total), " ", title);
9266
9266
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
9267
9267
  className: "table-page " + className,
9268
- title: /*#__PURE__*/React.createElement(Text$1, null, title2)
9268
+ title: /*#__PURE__*/React.createElement(Text, null, title2)
9269
9269
  }, canAdd ? /*#__PURE__*/React.createElement(Button, {
9270
9270
  icon: "add",
9271
9271
  label: "A\xF1adir",
@@ -9422,7 +9422,7 @@ var TableQueries$2 = function TableQueries(props) {
9422
9422
  }
9423
9423
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
9424
9424
  className: "table-queries",
9425
- title: /*#__PURE__*/React.createElement(Text$1, null, "Queries")
9425
+ title: /*#__PURE__*/React.createElement(Text, null, "Queries")
9426
9426
  }), /*#__PURE__*/React.createElement("main", {
9427
9427
  className: "table-queries"
9428
9428
  }, queries ? queries.filter(function (query) {
@@ -9520,7 +9520,7 @@ var TableFilters$2 = function TableFilters(props) {
9520
9520
  var content = new Content(filterSchema, form);
9521
9521
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
9522
9522
  className: "table-filters",
9523
- title: /*#__PURE__*/React.createElement(Text$1, null, "Filters")
9523
+ title: /*#__PURE__*/React.createElement(Text, null, "Filters")
9524
9524
  }, /*#__PURE__*/React.createElement(Icon, {
9525
9525
  icon: "filter_list_off",
9526
9526
  size: "small",
@@ -9647,7 +9647,7 @@ var TableEditor$2 = function TableEditor(props) {
9647
9647
  className: "empty-message"
9648
9648
  }, /*#__PURE__*/React.createElement(Icon, {
9649
9649
  icon: "search_off"
9650
- }), /*#__PURE__*/React.createElement(Text$1, null, "No Result Found"));
9650
+ }), /*#__PURE__*/React.createElement(Text, null, "No Result Found"));
9651
9651
  var groups = items.reduce(function (groups, item) {
9652
9652
  var groupName = item[groupBy];
9653
9653
  if (!groupName) groupName = ("NO " + groupBy).toUpperCase();
@@ -9744,7 +9744,7 @@ var TableEditor$2 = function TableEditor(props) {
9744
9744
  }
9745
9745
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
9746
9746
  icon: icon,
9747
- title: /*#__PURE__*/React.createElement(Text$1, null, title)
9747
+ title: /*#__PURE__*/React.createElement(Text, null, title)
9748
9748
  }, groupBy ? /*#__PURE__*/React.createElement(DropDown, {
9749
9749
  id: "groupBy",
9750
9750
  label: "Agrupar Por",
@@ -10186,7 +10186,7 @@ var TablePage2 = function TablePage2(props) {
10186
10186
  }
10187
10187
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
10188
10188
  className: "table-page " + className,
10189
- title: /*#__PURE__*/React.createElement(Text$1, null, title)
10189
+ title: /*#__PURE__*/React.createElement(Text, null, title)
10190
10190
  }, canAdd ? /*#__PURE__*/React.createElement(Button, {
10191
10191
  icon: "add",
10192
10192
  label: "A\xF1adir",
@@ -10338,7 +10338,7 @@ var TableQueries$1 = function TableQueries(props) {
10338
10338
  }
10339
10339
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
10340
10340
  className: "table-queries",
10341
- title: /*#__PURE__*/React.createElement(Text$1, null, "Queries")
10341
+ title: /*#__PURE__*/React.createElement(Text, null, "Queries")
10342
10342
  }), /*#__PURE__*/React.createElement("main", {
10343
10343
  className: "table-queries"
10344
10344
  }, queries ? queries.filter(function (query) {
@@ -10423,7 +10423,7 @@ var TableFilters$1 = function TableFilters(props) {
10423
10423
  var content = new Content(filterSchema, form);
10424
10424
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
10425
10425
  className: "table-filters",
10426
- title: /*#__PURE__*/React.createElement(Text$1, null, "Filters")
10426
+ title: /*#__PURE__*/React.createElement(Text, null, "Filters")
10427
10427
  }, /*#__PURE__*/React.createElement(Icon, {
10428
10428
  icon: "filter_list_off",
10429
10429
  size: "small",
@@ -10628,7 +10628,7 @@ var TableEditor$1 = function TableEditor(props) {
10628
10628
  className: "empty-message"
10629
10629
  }, /*#__PURE__*/React.createElement(Icon, {
10630
10630
  icon: "search_off"
10631
- }), /*#__PURE__*/React.createElement(Text$1, null, "No Result Found"));
10631
+ }), /*#__PURE__*/React.createElement(Text, null, "No Result Found"));
10632
10632
  var groups = items.reduce(function (groups, item) {
10633
10633
  var groupName = item[groupBy];
10634
10634
  if (!groups[groupName]) groups[groupName] = [];
@@ -10691,10 +10691,10 @@ var TableEditor$1 = function TableEditor(props) {
10691
10691
  });
10692
10692
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
10693
10693
  icon: icon,
10694
- title: /*#__PURE__*/React.createElement(Text$1, null, title)
10694
+ title: /*#__PURE__*/React.createElement(Text, null, title)
10695
10695
  }, groupBy ? /*#__PURE__*/React.createElement(DropDown, {
10696
10696
  id: "groupBy",
10697
- label: /*#__PURE__*/React.createElement(Text$1, null, "Group By"),
10697
+ label: /*#__PURE__*/React.createElement(Text, null, "Group By"),
10698
10698
  value: groupBy,
10699
10699
  options: buildGroupOptions(schema),
10700
10700
  onChange: changeGroup
@@ -11218,7 +11218,7 @@ var TabbedTablePage = function TabbedTablePage(props) {
11218
11218
  }
11219
11219
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
11220
11220
  className: "table-page",
11221
- title: /*#__PURE__*/React.createElement(Text$1, null, title)
11221
+ title: /*#__PURE__*/React.createElement(Text, null, title)
11222
11222
  }, canAdd ? /*#__PURE__*/React.createElement(Button, {
11223
11223
  icon: "add",
11224
11224
  label: "A\xF1adir",
@@ -11375,7 +11375,7 @@ var TableQueries = function TableQueries(props) {
11375
11375
  }
11376
11376
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
11377
11377
  className: "table-queries",
11378
- title: /*#__PURE__*/React.createElement(Text$1, null, "Queries")
11378
+ title: /*#__PURE__*/React.createElement(Text, null, "Queries")
11379
11379
  }), /*#__PURE__*/React.createElement("main", {
11380
11380
  className: "table-queries"
11381
11381
  }, queries ? queries.filter(function (query) {
@@ -11473,7 +11473,7 @@ var TableFilters = function TableFilters(props) {
11473
11473
  var content = new Content(filterSchema, form);
11474
11474
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
11475
11475
  className: "table-filters",
11476
- title: /*#__PURE__*/React.createElement(Text$1, null, "Filters")
11476
+ title: /*#__PURE__*/React.createElement(Text, null, "Filters")
11477
11477
  }, /*#__PURE__*/React.createElement(Icon, {
11478
11478
  icon: "filter_list_off",
11479
11479
  size: "small",
@@ -11601,7 +11601,7 @@ var TableEditor = function TableEditor(props) {
11601
11601
  className: "empty-message"
11602
11602
  }, /*#__PURE__*/React.createElement(Icon, {
11603
11603
  icon: "search_off"
11604
- }), /*#__PURE__*/React.createElement(Text$1, null, "No Result Found"));
11604
+ }), /*#__PURE__*/React.createElement(Text, null, "No Result Found"));
11605
11605
  var groups = items.reduce(function (groups, item) {
11606
11606
  var groupName = item[groupBy];
11607
11607
  var group = groups[groupName];
@@ -11692,7 +11692,7 @@ var TableEditor = function TableEditor(props) {
11692
11692
  }
11693
11693
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
11694
11694
  icon: icon,
11695
- title: /*#__PURE__*/React.createElement(Text$1, null, title)
11695
+ title: /*#__PURE__*/React.createElement(Text, null, title)
11696
11696
  }, /*#__PURE__*/React.createElement(DropDown, {
11697
11697
  id: "groupBy",
11698
11698
  label: "Agrupar Por",
@@ -12669,5 +12669,5 @@ var isFunction = function isFunction(value) {
12669
12669
  return value && (Object.prototype.toString.call(value) === "[object Function]" || "function" === typeof value || value instanceof Function);
12670
12670
  };
12671
12671
 
12672
- export { Accordion, ActionButton, Avatar, Button, Calendar, ChangeUserPasswordAction, ChangeUserPasswordDialog, CheckBox, Chip, Chips, CircularProgress, CollectionAPI$1 as CollectionAPI, CollectionAPI as CollectionAPI2, CollectionContext$1 as CollectionContext, CollectionContext as CollectionContext2, CollectionEditor$2 as CollectionEditor, CollectionFilters$1 as CollectionFilters, CollectionPage$1 as CollectionPage, CollectionPage as CollectionPage2, CollectionTree, ColorField, Content, ContentEditor, ContentForm, ContentViewer, CreateContentDialog, DataTable, DateRange, Dialog, DropDown, DynamicForm, EditContentDialog, EmptyMessage, FORMATS$1 as FORMATS, FieldEditor, FileExplorer, FileExplorerView, FileGridItem, FilesGridView, FilesSearchBox, FilesTableView, FoldersTreeView, ForgetUserPasswordAction, Form, HTTPClient, Header, Icon, ImageViewer, Kanban, KanbanCard, KanbanColumn, KanbanHeader, KanbanSwimlane, LOGIN_API, LOGIN_CONTEXT, LOGIN_DICTIONARY, LinearProgress, List, ListEditor, LoginBox, Menu, MenuIcon, MenuItem, MenuSeparator, MonthCalendar, MultiSelector, Page, PageContext, PageProvider, PasswordEditor, PasswordField, Planner, Planner2, Property, RadioButton, ResetPasswordBox, Section, Session, Site, SiteContext, SiteProvider, Stack, Switch, Switch2, TASK_STATES, TEXTFORMATS, TYPES$1 as TYPES, Tab, TabbedContentEditor, TabbedTablePage, TabbedView, TableEditor$2 as TableEditor, TablePage, TablePage2, Tabs, TaskContext, TaskContextProvider, TaskMonitor, TaskProgress, Text$1 as Text, TextArea, TextField, Thumbnail, ToggleButton, TokenField, Tooltip, Tree, TreeItem, TreeNode, TreededContentEditor, UnlockUserAction, UploadArea, UploadDialog, UploadFile$1 as UploadFile, UploadForm, UploadIcon, Uploader, View, Viewer, WaitScreen, Wizard, WizardContext, isEmpty, isFunction, validatePassword };
12672
+ export { Accordion, ActionButton, Avatar, Button, Calendar, ChangeUserPasswordAction, ChangeUserPasswordDialog, CheckBox, Chip, Chips, CircularProgress, CollectionAPI$1 as CollectionAPI, CollectionAPI as CollectionAPI2, CollectionContext$1 as CollectionContext, CollectionContext as CollectionContext2, CollectionEditor$2 as CollectionEditor, CollectionFilters$1 as CollectionFilters, CollectionPage$1 as CollectionPage, CollectionPage as CollectionPage2, CollectionTree, ColorField, Content, ContentEditor, ContentForm, ContentViewer, CreateContentDialog, DataTable, DateRange, Dialog, DropDown, DynamicForm, EditContentDialog, EmptyMessage, FORMATS$1 as FORMATS, FieldEditor, FileExplorer, FileExplorerView, FileGridItem, FilesGridView, FilesSearchBox, FilesTableView, FoldersTreeView, ForgetUserPasswordAction, Form, HTTPClient, Header, Icon, ImageViewer, Kanban, KanbanCard, KanbanColumn, KanbanHeader, KanbanSwimlane, LOGIN_API, LOGIN_CONTEXT, LOGIN_DICTIONARY, LinearProgress, List, ListEditor, LoginBox, Menu, MenuIcon, MenuItem, MenuSeparator, MonthCalendar, MultiSelector, Page, PageContext, PageProvider, PasswordEditor, PasswordField, Planner, Planner2, Property, RadioButton, ResetPasswordBox, Section, Session, Site, SiteContext, SiteProvider, Stack, Switch, Switch2, TASK_STATES, TEXTFORMATS, TYPES$1 as TYPES, Tab, TabbedContentEditor, TabbedTablePage, TabbedView, TableEditor$2 as TableEditor, TablePage, TablePage2, Tabs, TaskContext, TaskContextProvider, TaskMonitor, TaskProgress, Text, TextArea, TextField, Thumbnail, ToggleButton, TokenField, Tooltip, Tree, TreeItem, TreeNode, TreededContentEditor, UnlockUserAction, UploadArea, UploadDialog, UploadFile$1 as UploadFile, UploadForm, UploadIcon, Uploader, View, Viewer, WaitScreen, Wizard, WizardContext, isEmpty, isFunction, validatePassword };
12673
12673
  //# sourceMappingURL=index.modern.js.map