linear-react-components-ui 1.1.26-beta-1 → 1.1.26-beta.10

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.
Files changed (225) hide show
  1. package/lib/alerts/AlertContainer.js +8 -2
  2. package/lib/alerts/AlertProvider.js +11 -5
  3. package/lib/alerts/BaseAlert.js +10 -8
  4. package/lib/alerts/Message.js +91 -64
  5. package/lib/alerts/withAlert.js +10 -6
  6. package/lib/assets/BaseAlert.css +1 -1
  7. package/lib/assets/Content.css +1 -1
  8. package/lib/assets/DefaultFile.css +1 -1
  9. package/lib/assets/Drawer.css +1 -1
  10. package/lib/assets/index11.css +1 -1
  11. package/lib/assets/index5.css +1 -1
  12. package/lib/avatar/index.js +29 -51
  13. package/lib/badge/index.js +25 -23
  14. package/lib/buttons/ActivateButton.js +9 -4
  15. package/lib/buttons/AddButton.js +12 -5
  16. package/lib/buttons/Button.js +16 -5
  17. package/lib/buttons/ButtonGroups.js +10 -3
  18. package/lib/buttons/CancelButton.js +14 -4
  19. package/lib/buttons/DangerButton.js +15 -4
  20. package/lib/buttons/DefaultButton.js +76 -111
  21. package/lib/buttons/DestroyButton.js +21 -5
  22. package/lib/buttons/EditButton.js +9 -4
  23. package/lib/buttons/InactivateButton.js +9 -4
  24. package/lib/buttons/InfoButton.js +15 -4
  25. package/lib/buttons/PrimaryButton.js +15 -4
  26. package/lib/buttons/RestoreButton.js +9 -4
  27. package/lib/buttons/SaveButton.js +14 -4
  28. package/lib/buttons/SuccessButton.js +15 -4
  29. package/lib/buttons/WarningButton.js +15 -4
  30. package/lib/buttons/button_container/index.js +21 -16
  31. package/lib/buttons/split_button/index.js +53 -55
  32. package/lib/calendar/DangerCalendar.js +18 -4
  33. package/lib/calendar/InfoCalendar.js +18 -4
  34. package/lib/calendar/PrimaryCalendar.js +18 -4
  35. package/lib/calendar/SuccessCalendar.js +18 -4
  36. package/lib/calendar/WarningCalendar.js +18 -4
  37. package/lib/calendar/base/Day.js +32 -22
  38. package/lib/calendar/base/Month.js +24 -21
  39. package/lib/calendar/base/Week.js +20 -19
  40. package/lib/calendar/base/helpers.js +11 -19
  41. package/lib/calendar/base/index.js +129 -97
  42. package/lib/checkbox/index.js +6 -5
  43. package/lib/chunks/compiler-runtime.Cu50tn6L.js +54 -0
  44. package/lib/chunks/{index.Da--18GT.js → index.Df3kt2LQ.js} +179 -181
  45. package/lib/chunks/index.aw0XaUkg.js +266 -0
  46. package/lib/chunks/jsx-runtime.D1SHvdVE.js +282 -0
  47. package/lib/chunks/lodash.CIAK_hAg.js +3684 -0
  48. package/lib/chunks/moment.DMLRxgRE.js +2589 -0
  49. package/lib/chunks/tabs.BvKfeA6Y.js +244 -0
  50. package/lib/chunks/v1.Ds1rkxUj.js +49 -0
  51. package/lib/dialog/Alert.js +18 -17
  52. package/lib/dialog/Custom.js +42 -28
  53. package/lib/dialog/Error.js +18 -17
  54. package/lib/dialog/Information.js +18 -17
  55. package/lib/dialog/Question.js +43 -59
  56. package/lib/dialog/Warning.js +18 -17
  57. package/lib/dialog/base/Content.js +13 -4
  58. package/lib/dialog/base/Footer.js +8 -3
  59. package/lib/dialog/base/Header.js +4 -3
  60. package/lib/dialog/base/index.js +5 -4
  61. package/lib/dialog/form/index.js +5 -4
  62. package/lib/dialog/index.js +1 -1
  63. package/lib/dialog/wizard/index.js +11 -10
  64. package/lib/dialog/wizard/progressbar.js +96 -3
  65. package/lib/dialog/wizard/step.js +4 -3
  66. package/lib/dialog/wizard/useWizard.js +42 -29
  67. package/lib/drawer/Content.js +15 -8
  68. package/lib/drawer/Drawer.js +38 -35
  69. package/lib/drawer/Header.js +53 -40
  70. package/lib/drawer/helpers.js +2 -2
  71. package/lib/dropdown/Popup.js +4 -2
  72. package/lib/dropdown/withDropdown.js +75 -50
  73. package/lib/fieldset/index.js +66 -47
  74. package/lib/form/Field.js +88 -62
  75. package/lib/form/FieldArray.js +18 -39
  76. package/lib/form/FieldNumber.js +42 -38
  77. package/lib/form/FieldPeriod.js +90 -59
  78. package/lib/form/helpers.js +14 -11
  79. package/lib/form/index.js +88 -100
  80. package/lib/form/withFieldHOC.js +57 -48
  81. package/lib/form/withFormSecurity.js +15 -18
  82. package/lib/gridlayout/GridCol.js +21 -20
  83. package/lib/gridlayout/GridRow.js +22 -20
  84. package/lib/hint/helpers.js +6 -2
  85. package/lib/hint/index.js +27 -25
  86. package/lib/icons/helper.js +142 -569
  87. package/lib/icons/index.js +62 -57
  88. package/lib/index.js +20 -19
  89. package/lib/inputs/base/InputTextBase.js +121 -207
  90. package/lib/inputs/base/Label.js +27 -29
  91. package/lib/inputs/base/helpers.d.ts +3 -3
  92. package/lib/inputs/base/helpers.js +4 -2
  93. package/lib/inputs/color/index.js +52 -73
  94. package/lib/inputs/date/Dialog.js +15 -16
  95. package/lib/inputs/date/Dropdown.js +16 -14
  96. package/lib/inputs/date/helpers.js +7 -7
  97. package/lib/inputs/date/index.js +101 -147
  98. package/lib/inputs/errorMessage/index.js +21 -13
  99. package/lib/inputs/file/DefaultFile.js +64 -67
  100. package/lib/inputs/file/DragDropFile.js +79 -135
  101. package/lib/inputs/file/File.d.ts +1 -1
  102. package/lib/inputs/file/File.js +24 -39
  103. package/lib/inputs/file/FileButtonSettings.js +20 -17
  104. package/lib/inputs/inputHOC.js +38 -20
  105. package/lib/inputs/mask/BaseMask.js +51 -30
  106. package/lib/inputs/mask/Cnpj.js +42 -36
  107. package/lib/inputs/mask/Cpf.js +45 -33
  108. package/lib/inputs/mask/Phone.js +10 -6
  109. package/lib/inputs/mask/ZipCode.js +9 -4
  110. package/lib/inputs/mask/helpers.d.ts +33 -33
  111. package/lib/inputs/mask/helpers.js +44 -44
  112. package/lib/inputs/multiSelect/ActionButtons.js +35 -46
  113. package/lib/inputs/multiSelect/Dropdown.js +94 -133
  114. package/lib/inputs/multiSelect/helper.js +4 -7
  115. package/lib/inputs/multiSelect/index.js +167 -127
  116. package/lib/inputs/number/BaseNumber.js +43 -31
  117. package/lib/inputs/number/Currency.js +19 -12
  118. package/lib/inputs/number/Decimal.js +9 -4
  119. package/lib/inputs/number/index.js +31 -35
  120. package/lib/inputs/period/Dialog.js +16 -16
  121. package/lib/inputs/period/Dropdown.js +15 -15
  122. package/lib/inputs/period/PeriodList.js +41 -27
  123. package/lib/inputs/period/helper.js +8 -4
  124. package/lib/inputs/period/index.js +192 -330
  125. package/lib/inputs/search/index.js +95 -71
  126. package/lib/inputs/select/ActionButtons.js +24 -45
  127. package/lib/inputs/select/Dropdown.js +61 -110
  128. package/lib/inputs/select/helper.d.ts +1 -1
  129. package/lib/inputs/select/helper.js +43 -45
  130. package/lib/inputs/select/index.js +23 -25
  131. package/lib/inputs/select/multiple/Selecteds.js +23 -19
  132. package/lib/inputs/select/multiple/index.js +106 -176
  133. package/lib/inputs/select/simple/index.js +126 -196
  134. package/lib/inputs/text/index.js +9 -4
  135. package/lib/inputs/textarea/index.js +13 -15
  136. package/lib/internals/withTooltip.js +114 -67
  137. package/lib/labelMessages/index.js +50 -45
  138. package/lib/labels/DangerLabel.js +18 -4
  139. package/lib/labels/DefaultLabel.js +53 -39
  140. package/lib/labels/InfoLabel.js +18 -4
  141. package/lib/labels/PrimaryLabel.js +18 -4
  142. package/lib/labels/SuccessLabel.js +18 -4
  143. package/lib/labels/WarningLabel.js +18 -4
  144. package/lib/labels/label_container/index.js +15 -9
  145. package/lib/list/Header.js +18 -6
  146. package/lib/list/Item.js +5 -4
  147. package/lib/list/Separator.js +8 -3
  148. package/lib/list/helpers.js +2 -2
  149. package/lib/list/index.js +21 -18
  150. package/lib/menus/float/MenuItem.js +49 -52
  151. package/lib/menus/float/SubMenuContainer.d.ts +10 -10
  152. package/lib/menus/float/index.js +102 -81
  153. package/lib/menus/sidenav/ExpandMenu.js +17 -15
  154. package/lib/menus/sidenav/MenuLink.js +21 -14
  155. package/lib/menus/sidenav/NavMenuGroup.js +19 -14
  156. package/lib/menus/sidenav/NavMenuItem.js +131 -111
  157. package/lib/menus/sidenav/NavSubMenuItem.js +36 -20
  158. package/lib/menus/sidenav/helpers.js +4 -4
  159. package/lib/menus/sidenav/index.js +145 -123
  160. package/lib/menus/sidenav/popup_menu_search/EmptyList.js +21 -17
  161. package/lib/menus/sidenav/popup_menu_search/index.js +17 -51
  162. package/lib/noPermission/index.js +13 -8
  163. package/lib/panel/Content.js +49 -40
  164. package/lib/panel/DangerPanel.js +10 -5
  165. package/lib/panel/Default.js +62 -36
  166. package/lib/panel/Header.js +53 -37
  167. package/lib/panel/InfoPanel.js +10 -5
  168. package/lib/panel/PrimaryPanel.js +10 -5
  169. package/lib/panel/SuccessPanel.js +10 -5
  170. package/lib/panel/ToolBar.js +17 -4
  171. package/lib/panel/WarningPanel.js +10 -5
  172. package/lib/panel/helpers.js +8 -5
  173. package/lib/permissionValidations.js +15 -11
  174. package/lib/popover/PopoverText.js +12 -5
  175. package/lib/popover/PopoverTitle.js +10 -3
  176. package/lib/popover/index.js +36 -56
  177. package/lib/progress/Bar.js +43 -34
  178. package/lib/progress/index.js +23 -18
  179. package/lib/radio/index.js +105 -89
  180. package/lib/shortcuts/index.js +20 -7
  181. package/lib/skeleton/SkeletonContainer.js +16 -6
  182. package/lib/skeleton/index.js +42 -18
  183. package/lib/spinner/SpinnerLoading.js +53 -16
  184. package/lib/spinner/index.js +47 -37
  185. package/lib/split/Split.js +83 -79
  186. package/lib/split/SplitSide.js +24 -16
  187. package/lib/table/Body.js +36 -49
  188. package/lib/table/Header.js +45 -35
  189. package/lib/table/HeaderColumn.js +40 -27
  190. package/lib/table/Row.js +47 -48
  191. package/lib/table/RowColumn.js +50 -38
  192. package/lib/table/helpers.js +3 -1
  193. package/lib/table/index.js +101 -104
  194. package/lib/tabs/DropdownTabs.js +64 -61
  195. package/lib/tabs/Menu.js +35 -49
  196. package/lib/tabs/MenuTabs.js +59 -84
  197. package/lib/tabs/Panel.js +57 -47
  198. package/lib/tabs/context.js +36 -40
  199. package/lib/tabs/index.js +69 -64
  200. package/lib/tabs/tabHelpers.js +10 -8
  201. package/lib/textContent/index.js +30 -32
  202. package/lib/toolbar/ButtonBar.js +62 -58
  203. package/lib/toolbar/LabelBar.js +46 -38
  204. package/lib/toolbar/Separator.js +8 -3
  205. package/lib/toolbar/ToolBarGroup.js +14 -3
  206. package/lib/toolbar/index.js +35 -29
  207. package/lib/tooltip/index.js +24 -24
  208. package/lib/treetable/Body.js +26 -27
  209. package/lib/treetable/Header.js +23 -19
  210. package/lib/treetable/Row.js +210 -147
  211. package/lib/treetable/helpers.d.ts +4 -5
  212. package/lib/treetable/helpers.js +6 -14
  213. package/lib/treetable/index.js +25 -15
  214. package/lib/treeview/Header.js +13 -5
  215. package/lib/treeview/Node.js +198 -175
  216. package/lib/treeview/index.js +257 -174
  217. package/lib/uitour/index.js +167 -166
  218. package/package.json +32 -43
  219. package/lib/chunks/index.CmrLK9Qe.js +0 -675
  220. package/lib/chunks/index.D5f6Ow9V.js +0 -89
  221. package/lib/chunks/index.yztgndLc.js +0 -206
  222. package/lib/chunks/jsx-runtime.CYK1ROHF.js +0 -445
  223. package/lib/chunks/tabs.Cvj2MJH6.js +0 -246
  224. package/lib/chunks/v1.CDXKvGzE.js +0 -41
  225. /package/lib/assets/{index29.css → progressbar.css} +0 -0
@@ -1,6 +1,4 @@
1
- function ge(o) {
2
- return o && o.__esModule && Object.prototype.hasOwnProperty.call(o, "default") ? o.default : o;
3
- }
1
+ import { g as ge } from "./lodash.CIAK_hAg.js";
4
2
  var V = { exports: {} }, N = { exports: {} }, T = {};
5
3
  /** @license React v16.13.1
6
4
  * react-is.production.min.js
@@ -10,22 +8,22 @@ var V = { exports: {} }, N = { exports: {} }, T = {};
10
8
  * This source code is licensed under the MIT license found in the
11
9
  * LICENSE file in the root directory of this source tree.
12
10
  */
13
- var se;
14
- function Pe() {
15
- if (se) return T;
16
- se = 1;
17
- var o = typeof Symbol == "function" && Symbol.for, x = o ? Symbol.for("react.element") : 60103, O = o ? Symbol.for("react.portal") : 60106, p = o ? Symbol.for("react.fragment") : 60107, P = o ? Symbol.for("react.strict_mode") : 60108, a = o ? Symbol.for("react.profiler") : 60114, S = o ? Symbol.for("react.provider") : 60109, l = o ? Symbol.for("react.context") : 60110, _ = o ? Symbol.for("react.async_mode") : 60111, g = o ? Symbol.for("react.concurrent_mode") : 60111, b = o ? Symbol.for("react.forward_ref") : 60112, E = o ? Symbol.for("react.suspense") : 60113, C = o ? Symbol.for("react.suspense_list") : 60120, w = o ? Symbol.for("react.memo") : 60115, M = o ? Symbol.for("react.lazy") : 60116, R = o ? Symbol.for("react.block") : 60121, I = o ? Symbol.for("react.fundamental") : 60117, q = o ? Symbol.for("react.responder") : 60118, F = o ? Symbol.for("react.scope") : 60119;
18
- function j(t) {
11
+ var ue;
12
+ function Se() {
13
+ if (ue) return T;
14
+ ue = 1;
15
+ var o = typeof Symbol == "function" && Symbol.for, C = o ? Symbol.for("react.element") : 60103, O = o ? Symbol.for("react.portal") : 60106, p = o ? Symbol.for("react.fragment") : 60107, S = o ? Symbol.for("react.strict_mode") : 60108, a = o ? Symbol.for("react.profiler") : 60114, P = o ? Symbol.for("react.provider") : 60109, l = o ? Symbol.for("react.context") : 60110, _ = o ? Symbol.for("react.async_mode") : 60111, g = o ? Symbol.for("react.concurrent_mode") : 60111, b = o ? Symbol.for("react.forward_ref") : 60112, E = o ? Symbol.for("react.suspense") : 60113, x = o ? Symbol.for("react.suspense_list") : 60120, w = o ? Symbol.for("react.memo") : 60115, M = o ? Symbol.for("react.lazy") : 60116, R = o ? Symbol.for("react.block") : 60121, j = o ? Symbol.for("react.fundamental") : 60117, q = o ? Symbol.for("react.responder") : 60118, F = o ? Symbol.for("react.scope") : 60119;
16
+ function I(t) {
19
17
  if (typeof t == "object" && t !== null) {
20
18
  var k = t.$$typeof;
21
19
  switch (k) {
22
- case x:
20
+ case C:
23
21
  switch (t = t.type, t) {
24
22
  case _:
25
23
  case g:
26
24
  case p:
27
25
  case a:
28
- case P:
26
+ case S:
29
27
  case E:
30
28
  return t;
31
29
  default:
@@ -34,7 +32,7 @@ function Pe() {
34
32
  case b:
35
33
  case M:
36
34
  case w:
37
- case S:
35
+ case P:
38
36
  return t;
39
37
  default:
40
38
  return k;
@@ -46,37 +44,37 @@ function Pe() {
46
44
  }
47
45
  }
48
46
  function A(t) {
49
- return j(t) === g;
47
+ return I(t) === g;
50
48
  }
51
- return T.AsyncMode = _, T.ConcurrentMode = g, T.ContextConsumer = l, T.ContextProvider = S, T.Element = x, T.ForwardRef = b, T.Fragment = p, T.Lazy = M, T.Memo = w, T.Portal = O, T.Profiler = a, T.StrictMode = P, T.Suspense = E, T.isAsyncMode = function(t) {
52
- return A(t) || j(t) === _;
49
+ return T.AsyncMode = _, T.ConcurrentMode = g, T.ContextConsumer = l, T.ContextProvider = P, T.Element = C, T.ForwardRef = b, T.Fragment = p, T.Lazy = M, T.Memo = w, T.Portal = O, T.Profiler = a, T.StrictMode = S, T.Suspense = E, T.isAsyncMode = function(t) {
50
+ return A(t) || I(t) === _;
53
51
  }, T.isConcurrentMode = A, T.isContextConsumer = function(t) {
54
- return j(t) === l;
52
+ return I(t) === l;
55
53
  }, T.isContextProvider = function(t) {
56
- return j(t) === S;
54
+ return I(t) === P;
57
55
  }, T.isElement = function(t) {
58
- return typeof t == "object" && t !== null && t.$$typeof === x;
56
+ return typeof t == "object" && t !== null && t.$$typeof === C;
59
57
  }, T.isForwardRef = function(t) {
60
- return j(t) === b;
58
+ return I(t) === b;
61
59
  }, T.isFragment = function(t) {
62
- return j(t) === p;
60
+ return I(t) === p;
63
61
  }, T.isLazy = function(t) {
64
- return j(t) === M;
62
+ return I(t) === M;
65
63
  }, T.isMemo = function(t) {
66
- return j(t) === w;
64
+ return I(t) === w;
67
65
  }, T.isPortal = function(t) {
68
- return j(t) === O;
66
+ return I(t) === O;
69
67
  }, T.isProfiler = function(t) {
70
- return j(t) === a;
68
+ return I(t) === a;
71
69
  }, T.isStrictMode = function(t) {
72
- return j(t) === P;
70
+ return I(t) === S;
73
71
  }, T.isSuspense = function(t) {
74
- return j(t) === E;
72
+ return I(t) === E;
75
73
  }, T.isValidElementType = function(t) {
76
- return typeof t == "string" || typeof t == "function" || t === p || t === g || t === a || t === P || t === E || t === C || typeof t == "object" && t !== null && (t.$$typeof === M || t.$$typeof === w || t.$$typeof === S || t.$$typeof === l || t.$$typeof === b || t.$$typeof === I || t.$$typeof === q || t.$$typeof === F || t.$$typeof === R);
77
- }, T.typeOf = j, T;
74
+ return typeof t == "string" || typeof t == "function" || t === p || t === g || t === a || t === S || t === E || t === x || typeof t == "object" && t !== null && (t.$$typeof === M || t.$$typeof === w || t.$$typeof === P || t.$$typeof === l || t.$$typeof === b || t.$$typeof === j || t.$$typeof === q || t.$$typeof === F || t.$$typeof === R);
75
+ }, T.typeOf = I, T;
78
76
  }
79
- var h = {};
77
+ var m = {};
80
78
  /** @license React v16.13.1
81
79
  * react-is.development.js
82
80
  *
@@ -86,36 +84,36 @@ var h = {};
86
84
  * LICENSE file in the root directory of this source tree.
87
85
  */
88
86
  var fe;
89
- function Se() {
90
- return fe || (fe = 1, process.env.NODE_ENV !== "production" && function() {
91
- var o = typeof Symbol == "function" && Symbol.for, x = o ? Symbol.for("react.element") : 60103, O = o ? Symbol.for("react.portal") : 60106, p = o ? Symbol.for("react.fragment") : 60107, P = o ? Symbol.for("react.strict_mode") : 60108, a = o ? Symbol.for("react.profiler") : 60114, S = o ? Symbol.for("react.provider") : 60109, l = o ? Symbol.for("react.context") : 60110, _ = o ? Symbol.for("react.async_mode") : 60111, g = o ? Symbol.for("react.concurrent_mode") : 60111, b = o ? Symbol.for("react.forward_ref") : 60112, E = o ? Symbol.for("react.suspense") : 60113, C = o ? Symbol.for("react.suspense_list") : 60120, w = o ? Symbol.for("react.memo") : 60115, M = o ? Symbol.for("react.lazy") : 60116, R = o ? Symbol.for("react.block") : 60121, I = o ? Symbol.for("react.fundamental") : 60117, q = o ? Symbol.for("react.responder") : 60118, F = o ? Symbol.for("react.scope") : 60119;
92
- function j(r) {
87
+ function Pe() {
88
+ return fe || (fe = 1, process.env.NODE_ENV !== "production" && (function() {
89
+ var o = typeof Symbol == "function" && Symbol.for, C = o ? Symbol.for("react.element") : 60103, O = o ? Symbol.for("react.portal") : 60106, p = o ? Symbol.for("react.fragment") : 60107, S = o ? Symbol.for("react.strict_mode") : 60108, a = o ? Symbol.for("react.profiler") : 60114, P = o ? Symbol.for("react.provider") : 60109, l = o ? Symbol.for("react.context") : 60110, _ = o ? Symbol.for("react.async_mode") : 60111, g = o ? Symbol.for("react.concurrent_mode") : 60111, b = o ? Symbol.for("react.forward_ref") : 60112, E = o ? Symbol.for("react.suspense") : 60113, x = o ? Symbol.for("react.suspense_list") : 60120, w = o ? Symbol.for("react.memo") : 60115, M = o ? Symbol.for("react.lazy") : 60116, R = o ? Symbol.for("react.block") : 60121, j = o ? Symbol.for("react.fundamental") : 60117, q = o ? Symbol.for("react.responder") : 60118, F = o ? Symbol.for("react.scope") : 60119;
90
+ function I(r) {
93
91
  return typeof r == "string" || typeof r == "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
94
- r === p || r === g || r === a || r === P || r === E || r === C || typeof r == "object" && r !== null && (r.$$typeof === M || r.$$typeof === w || r.$$typeof === S || r.$$typeof === l || r.$$typeof === b || r.$$typeof === I || r.$$typeof === q || r.$$typeof === F || r.$$typeof === R);
92
+ r === p || r === g || r === a || r === S || r === E || r === x || typeof r == "object" && r !== null && (r.$$typeof === M || r.$$typeof === w || r.$$typeof === P || r.$$typeof === l || r.$$typeof === b || r.$$typeof === j || r.$$typeof === q || r.$$typeof === F || r.$$typeof === R);
95
93
  }
96
94
  function A(r) {
97
95
  if (typeof r == "object" && r !== null) {
98
96
  var D = r.$$typeof;
99
97
  switch (D) {
100
- case x:
98
+ case C:
101
99
  var B = r.type;
102
100
  switch (B) {
103
101
  case _:
104
102
  case g:
105
103
  case p:
106
104
  case a:
107
- case P:
105
+ case S:
108
106
  case E:
109
107
  return B;
110
108
  default:
111
- var ue = B && B.$$typeof;
112
- switch (ue) {
109
+ var se = B && B.$$typeof;
110
+ switch (se) {
113
111
  case l:
114
112
  case b:
115
113
  case M:
116
114
  case w:
117
- case S:
118
- return ue;
115
+ case P:
116
+ return se;
119
117
  default:
120
118
  return D;
121
119
  }
@@ -125,7 +123,7 @@ function Se() {
125
123
  }
126
124
  }
127
125
  }
128
- var t = _, k = g, H = l, J = S, X = x, G = b, U = p, K = M, Z = w, L = O, Q = a, Y = P, W = E, z = !1;
126
+ var t = _, k = g, H = l, J = P, X = C, G = b, U = p, K = M, Z = w, L = O, Q = a, Y = S, W = E, z = !1;
129
127
  function ee(r) {
130
128
  return z || (z = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")), e(r) || A(r) === _;
131
129
  }
@@ -136,10 +134,10 @@ function Se() {
136
134
  return A(r) === l;
137
135
  }
138
136
  function f(r) {
139
- return A(r) === S;
137
+ return A(r) === P;
140
138
  }
141
- function u(r) {
142
- return typeof r == "object" && r !== null && r.$$typeof === x;
139
+ function s(r) {
140
+ return typeof r == "object" && r !== null && r.$$typeof === C;
143
141
  }
144
142
  function i(r) {
145
143
  return A(r) === b;
@@ -150,27 +148,27 @@ function Se() {
150
148
  function c(r) {
151
149
  return A(r) === M;
152
150
  }
153
- function s(r) {
151
+ function u(r) {
154
152
  return A(r) === w;
155
153
  }
156
154
  function d(r) {
157
155
  return A(r) === O;
158
156
  }
159
- function m(r) {
157
+ function h(r) {
160
158
  return A(r) === a;
161
159
  }
162
160
  function v(r) {
163
- return A(r) === P;
161
+ return A(r) === S;
164
162
  }
165
163
  function $(r) {
166
164
  return A(r) === E;
167
165
  }
168
- h.AsyncMode = t, h.ConcurrentMode = k, h.ContextConsumer = H, h.ContextProvider = J, h.Element = X, h.ForwardRef = G, h.Fragment = U, h.Lazy = K, h.Memo = Z, h.Portal = L, h.Profiler = Q, h.StrictMode = Y, h.Suspense = W, h.isAsyncMode = ee, h.isConcurrentMode = e, h.isContextConsumer = n, h.isContextProvider = f, h.isElement = u, h.isForwardRef = i, h.isFragment = y, h.isLazy = c, h.isMemo = s, h.isPortal = d, h.isProfiler = m, h.isStrictMode = v, h.isSuspense = $, h.isValidElementType = j, h.typeOf = A;
169
- }()), h;
166
+ m.AsyncMode = t, m.ConcurrentMode = k, m.ContextConsumer = H, m.ContextProvider = J, m.Element = X, m.ForwardRef = G, m.Fragment = U, m.Lazy = K, m.Memo = Z, m.Portal = L, m.Profiler = Q, m.StrictMode = Y, m.Suspense = W, m.isAsyncMode = ee, m.isConcurrentMode = e, m.isContextConsumer = n, m.isContextProvider = f, m.isElement = s, m.isForwardRef = i, m.isFragment = y, m.isLazy = c, m.isMemo = u, m.isPortal = d, m.isProfiler = h, m.isStrictMode = v, m.isSuspense = $, m.isValidElementType = I, m.typeOf = A;
167
+ })()), m;
170
168
  }
171
169
  var le;
172
- function me() {
173
- return le || (le = 1, process.env.NODE_ENV === "production" ? N.exports = Pe() : N.exports = Se()), N.exports;
170
+ function he() {
171
+ return le || (le = 1, process.env.NODE_ENV === "production" ? N.exports = Se() : N.exports = Pe()), N.exports;
174
172
  }
175
173
  /*
176
174
  object-assign
@@ -181,23 +179,23 @@ var re, pe;
181
179
  function Oe() {
182
180
  if (pe) return re;
183
181
  pe = 1;
184
- var o = Object.getOwnPropertySymbols, x = Object.prototype.hasOwnProperty, O = Object.prototype.propertyIsEnumerable;
182
+ var o = Object.getOwnPropertySymbols, C = Object.prototype.hasOwnProperty, O = Object.prototype.propertyIsEnumerable;
185
183
  function p(a) {
186
184
  if (a == null)
187
185
  throw new TypeError("Object.assign cannot be called with null or undefined");
188
186
  return Object(a);
189
187
  }
190
- function P() {
188
+ function S() {
191
189
  try {
192
190
  if (!Object.assign)
193
191
  return !1;
194
192
  var a = new String("abc");
195
193
  if (a[5] = "de", Object.getOwnPropertyNames(a)[0] === "5")
196
194
  return !1;
197
- for (var S = {}, l = 0; l < 10; l++)
198
- S["_" + String.fromCharCode(l)] = l;
199
- var _ = Object.getOwnPropertyNames(S).map(function(b) {
200
- return S[b];
195
+ for (var P = {}, l = 0; l < 10; l++)
196
+ P["_" + String.fromCharCode(l)] = l;
197
+ var _ = Object.getOwnPropertyNames(P).map(function(b) {
198
+ return P[b];
201
199
  });
202
200
  if (_.join("") !== "0123456789")
203
201
  return !1;
@@ -209,15 +207,15 @@ function Oe() {
209
207
  return !1;
210
208
  }
211
209
  }
212
- return re = P() ? Object.assign : function(a, S) {
210
+ return re = S() ? Object.assign : function(a, P) {
213
211
  for (var l, _ = p(a), g, b = 1; b < arguments.length; b++) {
214
212
  l = Object(arguments[b]);
215
213
  for (var E in l)
216
- x.call(l, E) && (_[E] = l[E]);
214
+ C.call(l, E) && (_[E] = l[E]);
217
215
  if (o) {
218
216
  g = o(l);
219
- for (var C = 0; C < g.length; C++)
220
- O.call(l, g[C]) && (_[g[C]] = l[g[C]]);
217
+ for (var x = 0; x < g.length; x++)
218
+ O.call(l, g[x]) && (_[g[x]] = l[g[x]]);
221
219
  }
222
220
  }
223
221
  return _;
@@ -241,29 +239,29 @@ function _e() {
241
239
  var o = function() {
242
240
  };
243
241
  if (process.env.NODE_ENV !== "production") {
244
- var x = /* @__PURE__ */ ce(), O = {}, p = /* @__PURE__ */ Ee();
242
+ var C = /* @__PURE__ */ ce(), O = {}, p = /* @__PURE__ */ Ee();
245
243
  o = function(a) {
246
- var S = "Warning: " + a;
247
- typeof console < "u" && console.error(S);
244
+ var P = "Warning: " + a;
245
+ typeof console < "u" && console.error(P);
248
246
  try {
249
- throw new Error(S);
247
+ throw new Error(P);
250
248
  } catch {
251
249
  }
252
250
  };
253
251
  }
254
- function P(a, S, l, _, g) {
252
+ function S(a, P, l, _, g) {
255
253
  if (process.env.NODE_ENV !== "production") {
256
254
  for (var b in a)
257
255
  if (p(a, b)) {
258
256
  var E;
259
257
  try {
260
258
  if (typeof a[b] != "function") {
261
- var C = Error(
259
+ var x = Error(
262
260
  (_ || "React class") + ": " + l + " type `" + b + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof a[b] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`."
263
261
  );
264
- throw C.name = "Invariant Violation", C;
262
+ throw x.name = "Invariant Violation", x;
265
263
  }
266
- E = a[b](S, b, _, l, null, x);
264
+ E = a[b](P, b, _, l, null, C);
267
265
  } catch (M) {
268
266
  E = M;
269
267
  }
@@ -279,15 +277,15 @@ function _e() {
279
277
  }
280
278
  }
281
279
  }
282
- return P.resetWarningCache = function() {
280
+ return S.resetWarningCache = function() {
283
281
  process.env.NODE_ENV !== "production" && (O = {});
284
- }, oe = P, oe;
282
+ }, oe = S, oe;
285
283
  }
286
284
  var ie, be;
287
285
  function Re() {
288
286
  if (be) return ie;
289
287
  be = 1;
290
- var o = me(), x = Oe(), O = /* @__PURE__ */ ce(), p = /* @__PURE__ */ Ee(), P = /* @__PURE__ */ _e(), a = function() {
288
+ var o = he(), C = Oe(), O = /* @__PURE__ */ ce(), p = /* @__PURE__ */ Ee(), S = /* @__PURE__ */ _e(), a = function() {
291
289
  };
292
290
  process.env.NODE_ENV !== "production" && (a = function(l) {
293
291
  var _ = "Warning: " + l;
@@ -297,7 +295,7 @@ function Re() {
297
295
  } catch {
298
296
  }
299
297
  });
300
- function S() {
298
+ function P() {
301
299
  return null;
302
300
  }
303
301
  return ie = function(l, _) {
@@ -307,7 +305,7 @@ function Re() {
307
305
  if (typeof n == "function")
308
306
  return n;
309
307
  }
310
- var C = "<<anonymous>>", w = {
308
+ var x = "<<anonymous>>", w = {
311
309
  array: q("array"),
312
310
  bigint: q("bigint"),
313
311
  bool: q("boolean"),
@@ -317,7 +315,7 @@ function Re() {
317
315
  string: q("string"),
318
316
  symbol: q("symbol"),
319
317
  any: F(),
320
- arrayOf: j,
318
+ arrayOf: I,
321
319
  element: A(),
322
320
  elementType: t(),
323
321
  instanceOf: k,
@@ -335,33 +333,33 @@ function Re() {
335
333
  this.message = e, this.data = n && typeof n == "object" ? n : {}, this.stack = "";
336
334
  }
337
335
  R.prototype = Error.prototype;
338
- function I(e) {
336
+ function j(e) {
339
337
  if (process.env.NODE_ENV !== "production")
340
338
  var n = {}, f = 0;
341
- function u(y, c, s, d, m, v, $) {
342
- if (d = d || C, v = v || s, $ !== O) {
339
+ function s(y, c, u, d, h, v, $) {
340
+ if (d = d || x, v = v || u, $ !== O) {
343
341
  if (_) {
344
342
  var r = new Error(
345
343
  "Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types"
346
344
  );
347
345
  throw r.name = "Invariant Violation", r;
348
346
  } else if (process.env.NODE_ENV !== "production" && typeof console < "u") {
349
- var D = d + ":" + s;
347
+ var D = d + ":" + u;
350
348
  !n[D] && // Avoid spamming the console because they are often not actionable except for lib authors
351
349
  f < 3 && (a(
352
350
  "You are manually calling a React.PropTypes validation function for the `" + v + "` prop on `" + d + "`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."
353
351
  ), n[D] = !0, f++);
354
352
  }
355
353
  }
356
- return c[s] == null ? y ? c[s] === null ? new R("The " + m + " `" + v + "` is marked as required " + ("in `" + d + "`, but its value is `null`.")) : new R("The " + m + " `" + v + "` is marked as required in " + ("`" + d + "`, but its value is `undefined`.")) : null : e(c, s, d, m, v);
354
+ return c[u] == null ? y ? c[u] === null ? new R("The " + h + " `" + v + "` is marked as required " + ("in `" + d + "`, but its value is `null`.")) : new R("The " + h + " `" + v + "` is marked as required in " + ("`" + d + "`, but its value is `undefined`.")) : null : e(c, u, d, h, v);
357
355
  }
358
- var i = u.bind(null, !1);
359
- return i.isRequired = u.bind(null, !0), i;
356
+ var i = s.bind(null, !1);
357
+ return i.isRequired = s.bind(null, !0), i;
360
358
  }
361
359
  function q(e) {
362
- function n(f, u, i, y, c, s) {
363
- var d = f[u], m = Y(d);
364
- if (m !== e) {
360
+ function n(f, s, i, y, c, u) {
361
+ var d = f[s], h = Y(d);
362
+ if (h !== e) {
365
363
  var v = W(d);
366
364
  return new R(
367
365
  "Invalid " + y + " `" + c + "` of type " + ("`" + v + "` supplied to `" + i + "`, expected ") + ("`" + e + "`."),
@@ -370,167 +368,167 @@ function Re() {
370
368
  }
371
369
  return null;
372
370
  }
373
- return I(n);
371
+ return j(n);
374
372
  }
375
373
  function F() {
376
- return I(S);
374
+ return j(P);
377
375
  }
378
- function j(e) {
379
- function n(f, u, i, y, c) {
376
+ function I(e) {
377
+ function n(f, s, i, y, c) {
380
378
  if (typeof e != "function")
381
379
  return new R("Property `" + c + "` of component `" + i + "` has invalid PropType notation inside arrayOf.");
382
- var s = f[u];
383
- if (!Array.isArray(s)) {
384
- var d = Y(s);
380
+ var u = f[s];
381
+ if (!Array.isArray(u)) {
382
+ var d = Y(u);
385
383
  return new R("Invalid " + y + " `" + c + "` of type " + ("`" + d + "` supplied to `" + i + "`, expected an array."));
386
384
  }
387
- for (var m = 0; m < s.length; m++) {
388
- var v = e(s, m, i, y, c + "[" + m + "]", O);
385
+ for (var h = 0; h < u.length; h++) {
386
+ var v = e(u, h, i, y, c + "[" + h + "]", O);
389
387
  if (v instanceof Error)
390
388
  return v;
391
389
  }
392
390
  return null;
393
391
  }
394
- return I(n);
392
+ return j(n);
395
393
  }
396
394
  function A() {
397
- function e(n, f, u, i, y) {
395
+ function e(n, f, s, i, y) {
398
396
  var c = n[f];
399
397
  if (!l(c)) {
400
- var s = Y(c);
401
- return new R("Invalid " + i + " `" + y + "` of type " + ("`" + s + "` supplied to `" + u + "`, expected a single ReactElement."));
398
+ var u = Y(c);
399
+ return new R("Invalid " + i + " `" + y + "` of type " + ("`" + u + "` supplied to `" + s + "`, expected a single ReactElement."));
402
400
  }
403
401
  return null;
404
402
  }
405
- return I(e);
403
+ return j(e);
406
404
  }
407
405
  function t() {
408
- function e(n, f, u, i, y) {
406
+ function e(n, f, s, i, y) {
409
407
  var c = n[f];
410
408
  if (!o.isValidElementType(c)) {
411
- var s = Y(c);
412
- return new R("Invalid " + i + " `" + y + "` of type " + ("`" + s + "` supplied to `" + u + "`, expected a single ReactElement type."));
409
+ var u = Y(c);
410
+ return new R("Invalid " + i + " `" + y + "` of type " + ("`" + u + "` supplied to `" + s + "`, expected a single ReactElement type."));
413
411
  }
414
412
  return null;
415
413
  }
416
- return I(e);
414
+ return j(e);
417
415
  }
418
416
  function k(e) {
419
- function n(f, u, i, y, c) {
420
- if (!(f[u] instanceof e)) {
421
- var s = e.name || C, d = ee(f[u]);
422
- return new R("Invalid " + y + " `" + c + "` of type " + ("`" + d + "` supplied to `" + i + "`, expected ") + ("instance of `" + s + "`."));
417
+ function n(f, s, i, y, c) {
418
+ if (!(f[s] instanceof e)) {
419
+ var u = e.name || x, d = ee(f[s]);
420
+ return new R("Invalid " + y + " `" + c + "` of type " + ("`" + d + "` supplied to `" + i + "`, expected ") + ("instance of `" + u + "`."));
423
421
  }
424
422
  return null;
425
423
  }
426
- return I(n);
424
+ return j(n);
427
425
  }
428
426
  function H(e) {
429
427
  if (!Array.isArray(e))
430
428
  return process.env.NODE_ENV !== "production" && (arguments.length > 1 ? a(
431
429
  "Invalid arguments supplied to oneOf, expected an array, got " + arguments.length + " arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z])."
432
- ) : a("Invalid argument supplied to oneOf, expected an array.")), S;
433
- function n(f, u, i, y, c) {
434
- for (var s = f[u], d = 0; d < e.length; d++)
435
- if (M(s, e[d]))
430
+ ) : a("Invalid argument supplied to oneOf, expected an array.")), P;
431
+ function n(f, s, i, y, c) {
432
+ for (var u = f[s], d = 0; d < e.length; d++)
433
+ if (M(u, e[d]))
436
434
  return null;
437
- var m = JSON.stringify(e, function($, r) {
435
+ var h = JSON.stringify(e, function($, r) {
438
436
  var D = W(r);
439
437
  return D === "symbol" ? String(r) : r;
440
438
  });
441
- return new R("Invalid " + y + " `" + c + "` of value `" + String(s) + "` " + ("supplied to `" + i + "`, expected one of " + m + "."));
439
+ return new R("Invalid " + y + " `" + c + "` of value `" + String(u) + "` " + ("supplied to `" + i + "`, expected one of " + h + "."));
442
440
  }
443
- return I(n);
441
+ return j(n);
444
442
  }
445
443
  function J(e) {
446
- function n(f, u, i, y, c) {
444
+ function n(f, s, i, y, c) {
447
445
  if (typeof e != "function")
448
446
  return new R("Property `" + c + "` of component `" + i + "` has invalid PropType notation inside objectOf.");
449
- var s = f[u], d = Y(s);
447
+ var u = f[s], d = Y(u);
450
448
  if (d !== "object")
451
449
  return new R("Invalid " + y + " `" + c + "` of type " + ("`" + d + "` supplied to `" + i + "`, expected an object."));
452
- for (var m in s)
453
- if (p(s, m)) {
454
- var v = e(s, m, i, y, c + "." + m, O);
450
+ for (var h in u)
451
+ if (p(u, h)) {
452
+ var v = e(u, h, i, y, c + "." + h, O);
455
453
  if (v instanceof Error)
456
454
  return v;
457
455
  }
458
456
  return null;
459
457
  }
460
- return I(n);
458
+ return j(n);
461
459
  }
462
460
  function X(e) {
463
461
  if (!Array.isArray(e))
464
- return process.env.NODE_ENV !== "production" && a("Invalid argument supplied to oneOfType, expected an instance of array."), S;
462
+ return process.env.NODE_ENV !== "production" && a("Invalid argument supplied to oneOfType, expected an instance of array."), P;
465
463
  for (var n = 0; n < e.length; n++) {
466
464
  var f = e[n];
467
465
  if (typeof f != "function")
468
466
  return a(
469
467
  "Invalid argument supplied to oneOfType. Expected an array of check functions, but received " + z(f) + " at index " + n + "."
470
- ), S;
468
+ ), P;
471
469
  }
472
- function u(i, y, c, s, d) {
473
- for (var m = [], v = 0; v < e.length; v++) {
474
- var $ = e[v], r = $(i, y, c, s, d, O);
470
+ function s(i, y, c, u, d) {
471
+ for (var h = [], v = 0; v < e.length; v++) {
472
+ var $ = e[v], r = $(i, y, c, u, d, O);
475
473
  if (r == null)
476
474
  return null;
477
- r.data && p(r.data, "expectedType") && m.push(r.data.expectedType);
475
+ r.data && p(r.data, "expectedType") && h.push(r.data.expectedType);
478
476
  }
479
- var D = m.length > 0 ? ", expected one of type [" + m.join(", ") + "]" : "";
480
- return new R("Invalid " + s + " `" + d + "` supplied to " + ("`" + c + "`" + D + "."));
477
+ var D = h.length > 0 ? ", expected one of type [" + h.join(", ") + "]" : "";
478
+ return new R("Invalid " + u + " `" + d + "` supplied to " + ("`" + c + "`" + D + "."));
481
479
  }
482
- return I(u);
480
+ return j(s);
483
481
  }
484
482
  function G() {
485
- function e(n, f, u, i, y) {
486
- return L(n[f]) ? null : new R("Invalid " + i + " `" + y + "` supplied to " + ("`" + u + "`, expected a ReactNode."));
483
+ function e(n, f, s, i, y) {
484
+ return L(n[f]) ? null : new R("Invalid " + i + " `" + y + "` supplied to " + ("`" + s + "`, expected a ReactNode."));
487
485
  }
488
- return I(e);
486
+ return j(e);
489
487
  }
490
- function U(e, n, f, u, i) {
488
+ function U(e, n, f, s, i) {
491
489
  return new R(
492
- (e || "React class") + ": " + n + " type `" + f + "." + u + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + i + "`."
490
+ (e || "React class") + ": " + n + " type `" + f + "." + s + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + i + "`."
493
491
  );
494
492
  }
495
493
  function K(e) {
496
- function n(f, u, i, y, c) {
497
- var s = f[u], d = Y(s);
494
+ function n(f, s, i, y, c) {
495
+ var u = f[s], d = Y(u);
498
496
  if (d !== "object")
499
497
  return new R("Invalid " + y + " `" + c + "` of type `" + d + "` " + ("supplied to `" + i + "`, expected `object`."));
500
- for (var m in e) {
501
- var v = e[m];
498
+ for (var h in e) {
499
+ var v = e[h];
502
500
  if (typeof v != "function")
503
- return U(i, y, c, m, W(v));
504
- var $ = v(s, m, i, y, c + "." + m, O);
501
+ return U(i, y, c, h, W(v));
502
+ var $ = v(u, h, i, y, c + "." + h, O);
505
503
  if ($)
506
504
  return $;
507
505
  }
508
506
  return null;
509
507
  }
510
- return I(n);
508
+ return j(n);
511
509
  }
512
510
  function Z(e) {
513
- function n(f, u, i, y, c) {
514
- var s = f[u], d = Y(s);
511
+ function n(f, s, i, y, c) {
512
+ var u = f[s], d = Y(u);
515
513
  if (d !== "object")
516
514
  return new R("Invalid " + y + " `" + c + "` of type `" + d + "` " + ("supplied to `" + i + "`, expected `object`."));
517
- var m = x({}, f[u], e);
518
- for (var v in m) {
515
+ var h = C({}, f[s], e);
516
+ for (var v in h) {
519
517
  var $ = e[v];
520
518
  if (p(e, v) && typeof $ != "function")
521
519
  return U(i, y, c, v, W($));
522
520
  if (!$)
523
521
  return new R(
524
- "Invalid " + y + " `" + c + "` key `" + v + "` supplied to `" + i + "`.\nBad object: " + JSON.stringify(f[u], null, " ") + `
522
+ "Invalid " + y + " `" + c + "` key `" + v + "` supplied to `" + i + "`.\nBad object: " + JSON.stringify(f[s], null, " ") + `
525
523
  Valid keys: ` + JSON.stringify(Object.keys(e), null, " ")
526
524
  );
527
- var r = $(s, v, i, y, c + "." + v, O);
525
+ var r = $(u, v, i, y, c + "." + v, O);
528
526
  if (r)
529
527
  return r;
530
528
  }
531
529
  return null;
532
530
  }
533
- return I(n);
531
+ return j(n);
534
532
  }
535
533
  function L(e) {
536
534
  switch (typeof e) {
@@ -547,14 +545,14 @@ Valid keys: ` + JSON.stringify(Object.keys(e), null, " ")
547
545
  return !0;
548
546
  var n = E(e);
549
547
  if (n) {
550
- var f = n.call(e), u;
548
+ var f = n.call(e), s;
551
549
  if (n !== e.entries) {
552
- for (; !(u = f.next()).done; )
553
- if (!L(u.value))
550
+ for (; !(s = f.next()).done; )
551
+ if (!L(s.value))
554
552
  return !1;
555
553
  } else
556
- for (; !(u = f.next()).done; ) {
557
- var i = u.value;
554
+ for (; !(s = f.next()).done; ) {
555
+ var i = s.value;
558
556
  if (i && !L(i[1]))
559
557
  return !1;
560
558
  }
@@ -599,31 +597,31 @@ Valid keys: ` + JSON.stringify(Object.keys(e), null, " ")
599
597
  }
600
598
  }
601
599
  function ee(e) {
602
- return !e.constructor || !e.constructor.name ? C : e.constructor.name;
600
+ return !e.constructor || !e.constructor.name ? x : e.constructor.name;
603
601
  }
604
- return w.checkPropTypes = P, w.resetWarningCache = P.resetWarningCache, w.PropTypes = w, w;
602
+ return w.checkPropTypes = S, w.resetWarningCache = S.resetWarningCache, w.PropTypes = w, w;
605
603
  }, ie;
606
604
  }
607
605
  var ae, Te;
608
- function Ce() {
606
+ function xe() {
609
607
  if (Te) return ae;
610
608
  Te = 1;
611
609
  var o = /* @__PURE__ */ ce();
612
- function x() {
610
+ function C() {
613
611
  }
614
612
  function O() {
615
613
  }
616
- return O.resetWarningCache = x, ae = function() {
617
- function p(S, l, _, g, b, E) {
614
+ return O.resetWarningCache = C, ae = function() {
615
+ function p(P, l, _, g, b, E) {
618
616
  if (E !== o) {
619
- var C = new Error(
617
+ var x = new Error(
620
618
  "Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types"
621
619
  );
622
- throw C.name = "Invariant Violation", C;
620
+ throw x.name = "Invariant Violation", x;
623
621
  }
624
622
  }
625
623
  p.isRequired = p;
626
- function P() {
624
+ function S() {
627
625
  return p;
628
626
  }
629
627
  var a = {
@@ -636,34 +634,34 @@ function Ce() {
636
634
  string: p,
637
635
  symbol: p,
638
636
  any: p,
639
- arrayOf: P,
637
+ arrayOf: S,
640
638
  element: p,
641
639
  elementType: p,
642
- instanceOf: P,
640
+ instanceOf: S,
643
641
  node: p,
644
- objectOf: P,
645
- oneOf: P,
646
- oneOfType: P,
647
- shape: P,
648
- exact: P,
642
+ objectOf: S,
643
+ oneOf: S,
644
+ oneOfType: S,
645
+ shape: S,
646
+ exact: S,
649
647
  checkPropTypes: O,
650
- resetWarningCache: x
648
+ resetWarningCache: C
651
649
  };
652
650
  return a.PropTypes = a, a;
653
651
  }, ae;
654
652
  }
655
- var he;
656
- function xe() {
657
- if (he) return V.exports;
658
- if (he = 1, process.env.NODE_ENV !== "production") {
659
- var o = me(), x = !0;
660
- V.exports = /* @__PURE__ */ Re()(o.isElement, x);
653
+ var me;
654
+ function Ce() {
655
+ if (me) return V.exports;
656
+ if (me = 1, process.env.NODE_ENV !== "production") {
657
+ var o = he(), C = !0;
658
+ V.exports = /* @__PURE__ */ Re()(o.isElement, C);
661
659
  } else
662
- V.exports = /* @__PURE__ */ Ce()();
660
+ V.exports = /* @__PURE__ */ xe()();
663
661
  return V.exports;
664
662
  }
665
- var we = /* @__PURE__ */ xe();
666
- const Ae = /* @__PURE__ */ ge(we);
663
+ var we = /* @__PURE__ */ Ce();
664
+ const Ie = /* @__PURE__ */ ge(we);
667
665
  export {
668
- Ae as P
666
+ Ie as P
669
667
  };