ywana-core8 0.1.40 → 0.1.42

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,
@@ -2752,7 +2752,6 @@ var ChangeUserPasswordAction = function ChangeUserPasswordAction(props) {
2752
2752
  }) : /*#__PURE__*/React.createElement(Button, {
2753
2753
  label: label,
2754
2754
  action: execute,
2755
- outlined: true,
2756
2755
  className: ""
2757
2756
  });
2758
2757
  };
@@ -2777,6 +2776,15 @@ var LOGIN_DICTIONARY = (_LOGIN_DICTIONARY = {
2777
2776
  it: 'Conferma la nuova password',
2778
2777
  fr: 'Confirmer le nouveau mot de passe'
2779
2778
  },
2779
+ 'Change Password': {
2780
+ en: 'Change Password',
2781
+ es: 'Cambiar Contraseña',
2782
+ de: 'Passwort ändern',
2783
+ pt: 'Alterar Senha',
2784
+ ca: 'Canviar Contrasenya',
2785
+ it: 'Cambia Password',
2786
+ fr: 'Changer le mot de passe'
2787
+ },
2780
2788
  'Forgot Password': {
2781
2789
  en: 'Forgot Password',
2782
2790
  es: 'Olvidé mi contraseña',
@@ -3260,7 +3268,7 @@ var Viewer = function Viewer(_ref) {
3260
3268
  function toggleDetails() {
3261
3269
  setShowDetails(!showDetails);
3262
3270
  }
3263
- var headerTitle = /*#__PURE__*/React.createElement(Text$1, {
3271
+ var headerTitle = /*#__PURE__*/React.createElement(Text, {
3264
3272
  use: "headline6"
3265
3273
  }, title);
3266
3274
  return /*#__PURE__*/React.createElement("div", {
@@ -3334,9 +3342,9 @@ var KanbanHeader = function KanbanHeader(props) {
3334
3342
  icon: icon
3335
3343
  }), /*#__PURE__*/React.createElement("div", {
3336
3344
  className: "title"
3337
- }, /*#__PURE__*/React.createElement(Text$1, {
3345
+ }, /*#__PURE__*/React.createElement(Text, {
3338
3346
  use: "headline6"
3339
- }, title), /*#__PURE__*/React.createElement(Text$1, {
3347
+ }, title), /*#__PURE__*/React.createElement(Text, {
3340
3348
  className: "secondary-text",
3341
3349
  use: "body2"
3342
3350
  }, subtitle)), /*#__PURE__*/React.createElement("div", {
@@ -3384,9 +3392,9 @@ var KanbanSwimlane = function KanbanSwimlane(_ref2) {
3384
3392
  size: "small"
3385
3393
  }), /*#__PURE__*/React.createElement("div", {
3386
3394
  className: "title"
3387
- }, /*#__PURE__*/React.createElement(Text$1, {
3395
+ }, /*#__PURE__*/React.createElement(Text, {
3388
3396
  use: "headline6"
3389
- }, title, ":"), /*#__PURE__*/React.createElement(Text$1, {
3397
+ }, title, ":"), /*#__PURE__*/React.createElement(Text, {
3390
3398
  className: "secondary-text",
3391
3399
  use: "body2"
3392
3400
  }, subtitle)), /*#__PURE__*/React.createElement("div", {
@@ -3436,9 +3444,9 @@ var KanbanColumn = function KanbanColumn(_ref3) {
3436
3444
  icon: icon
3437
3445
  }), /*#__PURE__*/React.createElement("div", {
3438
3446
  className: "title"
3439
- }, /*#__PURE__*/React.createElement(Text$1, {
3447
+ }, /*#__PURE__*/React.createElement(Text, {
3440
3448
  use: "headline6"
3441
- }, title), /*#__PURE__*/React.createElement(Text$1, {
3449
+ }, title), /*#__PURE__*/React.createElement(Text, {
3442
3450
  className: "secondary-text",
3443
3451
  use: "body2"
3444
3452
  }, subtitle)), /*#__PURE__*/React.createElement("div", {
@@ -3616,7 +3624,7 @@ var MonthCalendar = function MonthCalendar(props) {
3616
3624
  });
3617
3625
  return /*#__PURE__*/React.createElement("div", {
3618
3626
  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, {
3627
+ }, /*#__PURE__*/React.createElement("nav", null, /*#__PURE__*/React.createElement("label", null, " ", /*#__PURE__*/React.createElement(Text, null, monthName), " ", year), /*#__PURE__*/React.createElement(Button, {
3620
3628
  icon: "chevron_left",
3621
3629
  action: prev
3622
3630
  }), /*#__PURE__*/React.createElement(Button, {
@@ -3628,19 +3636,19 @@ var MonthCalendar = function MonthCalendar(props) {
3628
3636
  action: next
3629
3637
  })), /*#__PURE__*/React.createElement("header", null, /*#__PURE__*/React.createElement("div", {
3630
3638
  className: "week-day-cell"
3631
- }, /*#__PURE__*/React.createElement(Text$1, null, "Mon")), /*#__PURE__*/React.createElement("div", {
3639
+ }, /*#__PURE__*/React.createElement(Text, null, "Mon")), /*#__PURE__*/React.createElement("div", {
3632
3640
  className: "week-day-cell"
3633
- }, /*#__PURE__*/React.createElement(Text$1, null, "Tue")), /*#__PURE__*/React.createElement("div", {
3641
+ }, /*#__PURE__*/React.createElement(Text, null, "Tue")), /*#__PURE__*/React.createElement("div", {
3634
3642
  className: "week-day-cell"
3635
- }, /*#__PURE__*/React.createElement(Text$1, null, "Wed")), /*#__PURE__*/React.createElement("div", {
3643
+ }, /*#__PURE__*/React.createElement(Text, null, "Wed")), /*#__PURE__*/React.createElement("div", {
3636
3644
  className: "week-day-cell"
3637
- }, /*#__PURE__*/React.createElement(Text$1, null, "Thu")), /*#__PURE__*/React.createElement("div", {
3645
+ }, /*#__PURE__*/React.createElement(Text, null, "Thu")), /*#__PURE__*/React.createElement("div", {
3638
3646
  className: "week-day-cell"
3639
- }, /*#__PURE__*/React.createElement(Text$1, null, "Fri")), /*#__PURE__*/React.createElement("div", {
3647
+ }, /*#__PURE__*/React.createElement(Text, null, "Fri")), /*#__PURE__*/React.createElement("div", {
3640
3648
  className: "week-day-cell"
3641
- }, /*#__PURE__*/React.createElement(Text$1, null, "Sat")), /*#__PURE__*/React.createElement("div", {
3649
+ }, /*#__PURE__*/React.createElement(Text, null, "Sat")), /*#__PURE__*/React.createElement("div", {
3642
3650
  className: "week-day-cell"
3643
- }, /*#__PURE__*/React.createElement(Text$1, null, "Sun"))), /*#__PURE__*/React.createElement("main", null, cells.map(function (cell) {
3651
+ }, /*#__PURE__*/React.createElement(Text, null, "Sun"))), /*#__PURE__*/React.createElement("main", null, cells.map(function (cell) {
3644
3652
  return /*#__PURE__*/React.createElement(DayCell, {
3645
3653
  key: cell.day,
3646
3654
  cell: cell
@@ -3756,7 +3764,7 @@ var YearCalendar = function YearCalendar(props) {
3756
3764
  });
3757
3765
  return /*#__PURE__*/React.createElement("div", {
3758
3766
  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, {
3767
+ }, /*#__PURE__*/React.createElement("nav", null, /*#__PURE__*/React.createElement("label", null, " ", /*#__PURE__*/React.createElement(Text, null, year)), /*#__PURE__*/React.createElement(Button, {
3760
3768
  icon: "chevron_left",
3761
3769
  action: prev
3762
3770
  }), /*#__PURE__*/React.createElement(Button, {
@@ -3788,19 +3796,19 @@ var MonthCell = function MonthCell(props) {
3788
3796
  className: "month-cell"
3789
3797
  }, /*#__PURE__*/React.createElement("nav", null, monthName), /*#__PURE__*/React.createElement("header", null, /*#__PURE__*/React.createElement("div", {
3790
3798
  className: "week-day-cell"
3791
- }, /*#__PURE__*/React.createElement(Text$1, null, "Mon")), /*#__PURE__*/React.createElement("div", {
3799
+ }, /*#__PURE__*/React.createElement(Text, null, "Mon")), /*#__PURE__*/React.createElement("div", {
3792
3800
  className: "week-day-cell"
3793
- }, /*#__PURE__*/React.createElement(Text$1, null, "Tue")), /*#__PURE__*/React.createElement("div", {
3801
+ }, /*#__PURE__*/React.createElement(Text, null, "Tue")), /*#__PURE__*/React.createElement("div", {
3794
3802
  className: "week-day-cell"
3795
- }, /*#__PURE__*/React.createElement(Text$1, null, "Wed")), /*#__PURE__*/React.createElement("div", {
3803
+ }, /*#__PURE__*/React.createElement(Text, null, "Wed")), /*#__PURE__*/React.createElement("div", {
3796
3804
  className: "week-day-cell"
3797
- }, /*#__PURE__*/React.createElement(Text$1, null, "Thu")), /*#__PURE__*/React.createElement("div", {
3805
+ }, /*#__PURE__*/React.createElement(Text, null, "Thu")), /*#__PURE__*/React.createElement("div", {
3798
3806
  className: "week-day-cell"
3799
- }, /*#__PURE__*/React.createElement(Text$1, null, "Fri")), /*#__PURE__*/React.createElement("div", {
3807
+ }, /*#__PURE__*/React.createElement(Text, null, "Fri")), /*#__PURE__*/React.createElement("div", {
3800
3808
  className: "week-day-cell"
3801
- }, /*#__PURE__*/React.createElement(Text$1, null, "Sat")), /*#__PURE__*/React.createElement("div", {
3809
+ }, /*#__PURE__*/React.createElement(Text, null, "Sat")), /*#__PURE__*/React.createElement("div", {
3802
3810
  className: "week-day-cell"
3803
- }, /*#__PURE__*/React.createElement(Text$1, null, "Sun"))), /*#__PURE__*/React.createElement("main", null, cells.map(function (cell) {
3811
+ }, /*#__PURE__*/React.createElement(Text, null, "Sun"))), /*#__PURE__*/React.createElement("main", null, cells.map(function (cell) {
3804
3812
  return /*#__PURE__*/React.createElement(DayCell, {
3805
3813
  key: cell.day,
3806
3814
  cell: cell
@@ -3916,7 +3924,7 @@ var Planner = function Planner(_ref) {
3916
3924
  });
3917
3925
  return period;
3918
3926
  }, [from, to]);
3919
- var label = /*#__PURE__*/React.createElement(Text$1, {
3927
+ var label = /*#__PURE__*/React.createElement(Text, {
3920
3928
  use: "headline6"
3921
3929
  }, title);
3922
3930
  return /*#__PURE__*/React.createElement("div", {
@@ -3983,7 +3991,7 @@ var Planner = function Planner(_ref) {
3983
3991
  className: "column-header"
3984
3992
  }, /*#__PURE__*/React.createElement("div", {
3985
3993
  className: "month-header " + first
3986
- }, /*#__PURE__*/React.createElement(Text$1, {
3994
+ }, /*#__PURE__*/React.createElement(Text, {
3987
3995
  use: "overline"
3988
3996
  }, date.moment.format("MMM"))));
3989
3997
  })), /*#__PURE__*/React.createElement("div", {
@@ -4003,9 +4011,9 @@ var Planner = function Planner(_ref) {
4003
4011
  }, /*#__PURE__*/React.createElement("div", {
4004
4012
  className: "date-header " + weekend + " " + thisWeek,
4005
4013
  ref: isThisMonday ? gotoMonday : null
4006
- }, /*#__PURE__*/React.createElement(Text$1, {
4014
+ }, /*#__PURE__*/React.createElement(Text, {
4007
4015
  use: "headline6"
4008
- }, date.moment.format("DD")), "\xA0", /*#__PURE__*/React.createElement(Text$1, {
4016
+ }, date.moment.format("DD")), "\xA0", /*#__PURE__*/React.createElement(Text, {
4009
4017
  use: "caption"
4010
4018
  }, date.moment.format("ddd"))));
4011
4019
  })), lanes.map(function (lane) {
@@ -4372,7 +4380,7 @@ var UploadDialog = function UploadDialog(_ref) {
4372
4380
  },
4373
4381
  disabled: !canClose()
4374
4382
  }));
4375
- var title = /*#__PURE__*/React.createElement(Text$1, {
4383
+ var title = /*#__PURE__*/React.createElement(Text, {
4376
4384
  use: "headline6"
4377
4385
  }, label);
4378
4386
  return /*#__PURE__*/React.createElement(Dialog, {
@@ -4489,7 +4497,7 @@ var FileExplorerView = function FileExplorerView(props) {
4489
4497
  var folder = folders.find(function (folder) {
4490
4498
  return folder.id === selectedFolder;
4491
4499
  });
4492
- var folderTitle = folder ? /*#__PURE__*/React.createElement(Text$1, null, folder.title) : '';
4500
+ var folderTitle = folder ? /*#__PURE__*/React.createElement(Text, null, folder.title) : '';
4493
4501
  function switchView() {
4494
4502
  setView(view === 'grid' ? 'list' : 'grid');
4495
4503
  }
@@ -4697,7 +4705,7 @@ var EmptyMessage = function EmptyMessage(_ref) {
4697
4705
  className: "empty"
4698
4706
  }, /*#__PURE__*/React.createElement("span", null, /*#__PURE__*/React.createElement(Icon, {
4699
4707
  icon: icon
4700
- })), /*#__PURE__*/React.createElement("br", null), /*#__PURE__*/React.createElement(Text$1, {
4708
+ })), /*#__PURE__*/React.createElement("br", null), /*#__PURE__*/React.createElement(Text, {
4701
4709
  use: "subtitle2"
4702
4710
  }, text));
4703
4711
  };
@@ -4829,7 +4837,7 @@ var DataTable = function DataTable(props) {
4829
4837
  }, /*#__PURE__*/React.createElement("div", null, id === "checked" && onCheckAll ? /*#__PURE__*/React.createElement(CheckBox, {
4830
4838
  onChange: checkAll,
4831
4839
  value: allChecked
4832
- }) : /*#__PURE__*/React.createElement(Text$1, {
4840
+ }) : /*#__PURE__*/React.createElement(Text, {
4833
4841
  key: "th_" + id
4834
4842
  }, label), sortable ? /*#__PURE__*/React.createElement(SortIcon, {
4835
4843
  sortDir: sortDir[id],
@@ -5556,7 +5564,7 @@ var Token = function Token(_ref2) {
5556
5564
  onDelete = _ref2.onDelete;
5557
5565
  return /*#__PURE__*/React.createElement("div", {
5558
5566
  className: "token"
5559
- }, /*#__PURE__*/React.createElement(Text$1, {
5567
+ }, /*#__PURE__*/React.createElement(Text, {
5560
5568
  use: "caption",
5561
5569
  tag: "div"
5562
5570
  }, text), /*#__PURE__*/React.createElement(Icon, {
@@ -5592,7 +5600,7 @@ var TreeNode = function TreeNode(_ref2) {
5592
5600
  children = _ref2.children,
5593
5601
  actions = _ref2.actions,
5594
5602
  onSelect = _ref2.onSelect;
5595
- var labelTxt = label ? /*#__PURE__*/React.createElement(Text$1, {
5603
+ var labelTxt = label ? /*#__PURE__*/React.createElement(Text, {
5596
5604
  format: TEXTFORMATS.STRING
5597
5605
  }, label) : null;
5598
5606
  function select() {
@@ -5632,7 +5640,7 @@ var TreeItem = function TreeItem(_ref3) {
5632
5640
  if (onSelect) onSelect(id);
5633
5641
  }
5634
5642
  var style = selected ? "selected" : "";
5635
- var labelTxt = label ? /*#__PURE__*/React.createElement(Text$1, {
5643
+ var labelTxt = label ? /*#__PURE__*/React.createElement(Text, {
5636
5644
  format: TEXTFORMATS.STRING
5637
5645
  }, label) : null;
5638
5646
  return /*#__PURE__*/React.createElement("div", {
@@ -6415,7 +6423,7 @@ var TaskMonitor = function TaskMonitor(props) {
6415
6423
  }).map(function (task) {
6416
6424
  return {
6417
6425
  id: task.id,
6418
- state: /*#__PURE__*/React.createElement(Text$1, null, task.state),
6426
+ state: /*#__PURE__*/React.createElement(Text, null, task.state),
6419
6427
  description: task.description,
6420
6428
  message: task.message,
6421
6429
  progress: /*#__PURE__*/React.createElement(LinearProgress, {
@@ -7051,7 +7059,7 @@ var TreededContentEditor = function TreededContentEditor(_ref4) {
7051
7059
  }
7052
7060
  return /*#__PURE__*/React.createElement("div", {
7053
7061
  className: "content-editor treeded-editor"
7054
- }, /*#__PURE__*/React.createElement("menu", null, /*#__PURE__*/React.createElement("header", null, /*#__PURE__*/React.createElement(Text$1, {
7062
+ }, /*#__PURE__*/React.createElement("menu", null, /*#__PURE__*/React.createElement("header", null, /*#__PURE__*/React.createElement(Text, {
7055
7063
  use: "caption"
7056
7064
  }, "Tree Editor")), /*#__PURE__*/React.createElement(Tree, null, nodes.map(function (node, index) {
7057
7065
  return /*#__PURE__*/React.createElement(TreeNode, {
@@ -7205,7 +7213,7 @@ var EntityEditor = function EntityEditor(_ref6) {
7205
7213
  var sections = content.sections();
7206
7214
  return /*#__PURE__*/React.createElement("div", {
7207
7215
  className: "entity-editor"
7208
- }, /*#__PURE__*/React.createElement("header", null, /*#__PURE__*/React.createElement(Text$1, {
7216
+ }, /*#__PURE__*/React.createElement("header", null, /*#__PURE__*/React.createElement(Text, {
7209
7217
  use: "caption"
7210
7218
  }, label)), sections.map(function (section) {
7211
7219
  var title = section.title,
@@ -7452,7 +7460,7 @@ var MultiSelectionEditor = function MultiSelectionEditor(_ref10) {
7452
7460
  }
7453
7461
  return /*#__PURE__*/React.createElement("div", {
7454
7462
  className: "multiselection-editor"
7455
- }, /*#__PURE__*/React.createElement("label", null, /*#__PURE__*/React.createElement(Text$1, null, label)), buildOptions().map(function (option) {
7463
+ }, /*#__PURE__*/React.createElement("label", null, /*#__PURE__*/React.createElement(Text, null, label)), buildOptions().map(function (option) {
7456
7464
  var checked = value.includes(option.value);
7457
7465
  switch (format) {
7458
7466
  case FORMATS$1.CHECKBOX:
@@ -7656,7 +7664,7 @@ var TableEditor$3 = function TableEditor(props) {
7656
7664
  className: "empty-message"
7657
7665
  }, /*#__PURE__*/React.createElement(Icon, {
7658
7666
  icon: "search_off"
7659
- }), /*#__PURE__*/React.createElement(Text$1, null, "No Result Found"));
7667
+ }), /*#__PURE__*/React.createElement(Text, null, "No Result Found"));
7660
7668
  var groups = items.reduce(function (groups, item) {
7661
7669
  var groupName = item[groupBy];
7662
7670
  if (!groupName) groupName = ("NO " + groupBy).toUpperCase();
@@ -7749,7 +7757,7 @@ var TableEditor$3 = function TableEditor(props) {
7749
7757
  }
7750
7758
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
7751
7759
  icon: icon,
7752
- title: /*#__PURE__*/React.createElement(Text$1, null, title)
7760
+ title: /*#__PURE__*/React.createElement(Text, null, title)
7753
7761
  }, /*#__PURE__*/React.createElement(DropDown, {
7754
7762
  id: "groupBy",
7755
7763
  label: "Agrupar Por",
@@ -8018,7 +8026,7 @@ var CreateContentDialog = function CreateContentDialog(_ref) {
8018
8026
  disabled: !isValid,
8019
8027
  raised: true
8020
8028
  }));
8021
- var title = /*#__PURE__*/React.createElement(Text$1, {
8029
+ var title = /*#__PURE__*/React.createElement(Text, {
8022
8030
  use: "headline6"
8023
8031
  }, label);
8024
8032
  var content = new Content(type, form);
@@ -8034,7 +8042,7 @@ var CreateContentDialog = function CreateContentDialog(_ref) {
8034
8042
  className: className,
8035
8043
  outlined: outlined
8036
8044
  }), errors.map(function (error) {
8037
- return /*#__PURE__*/React.createElement(Text$1, {
8045
+ return /*#__PURE__*/React.createElement(Text, {
8038
8046
  use: "overline",
8039
8047
  tag: "div",
8040
8048
  className: "error"
@@ -8100,7 +8108,7 @@ var EditContentDialog = function EditContentDialog(_ref) {
8100
8108
  disabled: !isValid,
8101
8109
  raised: true
8102
8110
  }));
8103
- var title = /*#__PURE__*/React.createElement(Text$1, {
8111
+ var title = /*#__PURE__*/React.createElement(Text, {
8104
8112
  use: "headline6"
8105
8113
  }, label);
8106
8114
  var content = new Content(type, form);
@@ -8115,7 +8123,7 @@ var EditContentDialog = function EditContentDialog(_ref) {
8115
8123
  filter: filterForm,
8116
8124
  className: className
8117
8125
  }), errors.map(function (error) {
8118
- return /*#__PURE__*/React.createElement(Text$1, {
8126
+ return /*#__PURE__*/React.createElement(Text, {
8119
8127
  use: "overline",
8120
8128
  tag: "div",
8121
8129
  className: "error"
@@ -8342,7 +8350,7 @@ var CollectionPage$1 = function CollectionPage(props) {
8342
8350
  var hiddenStyle = pageContext.selected ? "hidden" : "";
8343
8351
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
8344
8352
  className: "collection-page " + className,
8345
- title: /*#__PURE__*/React.createElement(Text$1, null, title2)
8353
+ title: /*#__PURE__*/React.createElement(Text, null, title2)
8346
8354
  }, canAdd ? /*#__PURE__*/React.createElement(Button, {
8347
8355
  icon: "add",
8348
8356
  label: "Add",
@@ -8822,7 +8830,7 @@ var CollectionEditor$1 = function CollectionEditor(props) {
8822
8830
  }
8823
8831
  }
8824
8832
  var hasMenu = canDelete;
8825
- var saveLabel = /*#__PURE__*/React.createElement(Text$1, null, "Guardar Cambios");
8833
+ var saveLabel = /*#__PURE__*/React.createElement(Text, null, "Guardar Cambios");
8826
8834
  return selected && form ? /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
8827
8835
  icon: icon,
8828
8836
  title: renderTitle()
@@ -9265,7 +9273,7 @@ var TablePage = function TablePage(props) {
9265
9273
  }, total), " ", title);
9266
9274
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
9267
9275
  className: "table-page " + className,
9268
- title: /*#__PURE__*/React.createElement(Text$1, null, title2)
9276
+ title: /*#__PURE__*/React.createElement(Text, null, title2)
9269
9277
  }, canAdd ? /*#__PURE__*/React.createElement(Button, {
9270
9278
  icon: "add",
9271
9279
  label: "A\xF1adir",
@@ -9422,7 +9430,7 @@ var TableQueries$2 = function TableQueries(props) {
9422
9430
  }
9423
9431
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
9424
9432
  className: "table-queries",
9425
- title: /*#__PURE__*/React.createElement(Text$1, null, "Queries")
9433
+ title: /*#__PURE__*/React.createElement(Text, null, "Queries")
9426
9434
  }), /*#__PURE__*/React.createElement("main", {
9427
9435
  className: "table-queries"
9428
9436
  }, queries ? queries.filter(function (query) {
@@ -9520,7 +9528,7 @@ var TableFilters$2 = function TableFilters(props) {
9520
9528
  var content = new Content(filterSchema, form);
9521
9529
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
9522
9530
  className: "table-filters",
9523
- title: /*#__PURE__*/React.createElement(Text$1, null, "Filters")
9531
+ title: /*#__PURE__*/React.createElement(Text, null, "Filters")
9524
9532
  }, /*#__PURE__*/React.createElement(Icon, {
9525
9533
  icon: "filter_list_off",
9526
9534
  size: "small",
@@ -9647,7 +9655,7 @@ var TableEditor$2 = function TableEditor(props) {
9647
9655
  className: "empty-message"
9648
9656
  }, /*#__PURE__*/React.createElement(Icon, {
9649
9657
  icon: "search_off"
9650
- }), /*#__PURE__*/React.createElement(Text$1, null, "No Result Found"));
9658
+ }), /*#__PURE__*/React.createElement(Text, null, "No Result Found"));
9651
9659
  var groups = items.reduce(function (groups, item) {
9652
9660
  var groupName = item[groupBy];
9653
9661
  if (!groupName) groupName = ("NO " + groupBy).toUpperCase();
@@ -9744,7 +9752,7 @@ var TableEditor$2 = function TableEditor(props) {
9744
9752
  }
9745
9753
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
9746
9754
  icon: icon,
9747
- title: /*#__PURE__*/React.createElement(Text$1, null, title)
9755
+ title: /*#__PURE__*/React.createElement(Text, null, title)
9748
9756
  }, groupBy ? /*#__PURE__*/React.createElement(DropDown, {
9749
9757
  id: "groupBy",
9750
9758
  label: "Agrupar Por",
@@ -10186,7 +10194,7 @@ var TablePage2 = function TablePage2(props) {
10186
10194
  }
10187
10195
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
10188
10196
  className: "table-page " + className,
10189
- title: /*#__PURE__*/React.createElement(Text$1, null, title)
10197
+ title: /*#__PURE__*/React.createElement(Text, null, title)
10190
10198
  }, canAdd ? /*#__PURE__*/React.createElement(Button, {
10191
10199
  icon: "add",
10192
10200
  label: "A\xF1adir",
@@ -10338,7 +10346,7 @@ var TableQueries$1 = function TableQueries(props) {
10338
10346
  }
10339
10347
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
10340
10348
  className: "table-queries",
10341
- title: /*#__PURE__*/React.createElement(Text$1, null, "Queries")
10349
+ title: /*#__PURE__*/React.createElement(Text, null, "Queries")
10342
10350
  }), /*#__PURE__*/React.createElement("main", {
10343
10351
  className: "table-queries"
10344
10352
  }, queries ? queries.filter(function (query) {
@@ -10423,7 +10431,7 @@ var TableFilters$1 = function TableFilters(props) {
10423
10431
  var content = new Content(filterSchema, form);
10424
10432
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
10425
10433
  className: "table-filters",
10426
- title: /*#__PURE__*/React.createElement(Text$1, null, "Filters")
10434
+ title: /*#__PURE__*/React.createElement(Text, null, "Filters")
10427
10435
  }, /*#__PURE__*/React.createElement(Icon, {
10428
10436
  icon: "filter_list_off",
10429
10437
  size: "small",
@@ -10628,7 +10636,7 @@ var TableEditor$1 = function TableEditor(props) {
10628
10636
  className: "empty-message"
10629
10637
  }, /*#__PURE__*/React.createElement(Icon, {
10630
10638
  icon: "search_off"
10631
- }), /*#__PURE__*/React.createElement(Text$1, null, "No Result Found"));
10639
+ }), /*#__PURE__*/React.createElement(Text, null, "No Result Found"));
10632
10640
  var groups = items.reduce(function (groups, item) {
10633
10641
  var groupName = item[groupBy];
10634
10642
  if (!groups[groupName]) groups[groupName] = [];
@@ -10691,10 +10699,10 @@ var TableEditor$1 = function TableEditor(props) {
10691
10699
  });
10692
10700
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
10693
10701
  icon: icon,
10694
- title: /*#__PURE__*/React.createElement(Text$1, null, title)
10702
+ title: /*#__PURE__*/React.createElement(Text, null, title)
10695
10703
  }, groupBy ? /*#__PURE__*/React.createElement(DropDown, {
10696
10704
  id: "groupBy",
10697
- label: /*#__PURE__*/React.createElement(Text$1, null, "Group By"),
10705
+ label: /*#__PURE__*/React.createElement(Text, null, "Group By"),
10698
10706
  value: groupBy,
10699
10707
  options: buildGroupOptions(schema),
10700
10708
  onChange: changeGroup
@@ -11218,7 +11226,7 @@ var TabbedTablePage = function TabbedTablePage(props) {
11218
11226
  }
11219
11227
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
11220
11228
  className: "table-page",
11221
- title: /*#__PURE__*/React.createElement(Text$1, null, title)
11229
+ title: /*#__PURE__*/React.createElement(Text, null, title)
11222
11230
  }, canAdd ? /*#__PURE__*/React.createElement(Button, {
11223
11231
  icon: "add",
11224
11232
  label: "A\xF1adir",
@@ -11375,7 +11383,7 @@ var TableQueries = function TableQueries(props) {
11375
11383
  }
11376
11384
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
11377
11385
  className: "table-queries",
11378
- title: /*#__PURE__*/React.createElement(Text$1, null, "Queries")
11386
+ title: /*#__PURE__*/React.createElement(Text, null, "Queries")
11379
11387
  }), /*#__PURE__*/React.createElement("main", {
11380
11388
  className: "table-queries"
11381
11389
  }, queries ? queries.filter(function (query) {
@@ -11473,7 +11481,7 @@ var TableFilters = function TableFilters(props) {
11473
11481
  var content = new Content(filterSchema, form);
11474
11482
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
11475
11483
  className: "table-filters",
11476
- title: /*#__PURE__*/React.createElement(Text$1, null, "Filters")
11484
+ title: /*#__PURE__*/React.createElement(Text, null, "Filters")
11477
11485
  }, /*#__PURE__*/React.createElement(Icon, {
11478
11486
  icon: "filter_list_off",
11479
11487
  size: "small",
@@ -11601,7 +11609,7 @@ var TableEditor = function TableEditor(props) {
11601
11609
  className: "empty-message"
11602
11610
  }, /*#__PURE__*/React.createElement(Icon, {
11603
11611
  icon: "search_off"
11604
- }), /*#__PURE__*/React.createElement(Text$1, null, "No Result Found"));
11612
+ }), /*#__PURE__*/React.createElement(Text, null, "No Result Found"));
11605
11613
  var groups = items.reduce(function (groups, item) {
11606
11614
  var groupName = item[groupBy];
11607
11615
  var group = groups[groupName];
@@ -11692,7 +11700,7 @@ var TableEditor = function TableEditor(props) {
11692
11700
  }
11693
11701
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement(Header, {
11694
11702
  icon: icon,
11695
- title: /*#__PURE__*/React.createElement(Text$1, null, title)
11703
+ title: /*#__PURE__*/React.createElement(Text, null, title)
11696
11704
  }, /*#__PURE__*/React.createElement(DropDown, {
11697
11705
  id: "groupBy",
11698
11706
  label: "Agrupar Por",
@@ -12669,5 +12677,5 @@ var isFunction = function isFunction(value) {
12669
12677
  return value && (Object.prototype.toString.call(value) === "[object Function]" || "function" === typeof value || value instanceof Function);
12670
12678
  };
12671
12679
 
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 };
12680
+ 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
12681
  //# sourceMappingURL=index.modern.js.map