@wavelengthusaf/components 2.0.2 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,53 @@
1
+ # common-components (npm package)
2
+
3
+ ## Overview
4
+
5
+ This module was created to share common components across Wavelength product teams. All components stored in this library are unclassified.
6
+
7
+ ## Getting started
8
+
9
+ You can install this package the same way that you install everything else
10
+
11
+ ```
12
+ npm install @wavelengthusaf/components
13
+ ```
14
+
15
+ ## Release Notes
16
+
17
+ ## 2.0.0
18
+
19
+ - Migrated to a Mono Repo; some minor updates to various components were made throughout the package.
20
+
21
+ ## 1.3.1
22
+
23
+ - Updated WavelengthBox Component, and Wavelength Button Component. Created new Dropdown Component called Wavelength Dropdown.
24
+
25
+ ## 1.3.0
26
+
27
+ - Updated Footer and Snackbar component, added a basic File Download component.
28
+
29
+ ### 1.0.2 - 1.0.3
30
+
31
+ - Updated dependencies
32
+
33
+ ### 1.0.1
34
+
35
+ - Updated readme and added first ts component
36
+
37
+ ### 1.0.0
38
+
39
+ - Created npm package
40
+
41
+ # common components (testbed website)
42
+
43
+ ## Overview
44
+
45
+ This project provides an overview of the common components library. It is meant to give developers a way to see the components as they work on them.
46
+
47
+ ## Instructions
48
+
49
+ 1. Make sure that you have built and linked the common-components library in a separate VS Code Window
50
+ 2. Run `npm link @wavelengthusaf/components` to install the components library
51
+ 3. Open your node_modules and verify that @wavelengthusaf exists (and that there is stuff in it)
52
+ 4. Run `npm run dev`
53
+ 5. Navigate to the generated localhost url on your Chrome/Firefox browser.
package/dist/index.js CHANGED
@@ -972,114 +972,107 @@ var require_prop_types = __commonJS({
972
972
  }
973
973
  });
974
974
 
975
- // ../../node_modules/react-is/cjs/react-is.production.min.js
976
- var require_react_is_production_min2 = __commonJS({
977
- "../../node_modules/react-is/cjs/react-is.production.min.js"(exports) {
975
+ // ../../node_modules/react-is/cjs/react-is.production.js
976
+ var require_react_is_production = __commonJS({
977
+ "../../node_modules/react-is/cjs/react-is.production.js"(exports) {
978
978
  "use strict";
979
- var b = Symbol.for("react.element");
980
- var c = Symbol.for("react.portal");
981
- var d = Symbol.for("react.fragment");
982
- var e = Symbol.for("react.strict_mode");
983
- var f = Symbol.for("react.profiler");
984
- var g = Symbol.for("react.provider");
985
- var h = Symbol.for("react.context");
986
- var k = Symbol.for("react.server_context");
987
- var l = Symbol.for("react.forward_ref");
988
- var m = Symbol.for("react.suspense");
989
- var n = Symbol.for("react.suspense_list");
990
- var p = Symbol.for("react.memo");
991
- var q = Symbol.for("react.lazy");
992
- var t = Symbol.for("react.offscreen");
993
- var u;
994
- u = Symbol.for("react.module.reference");
995
- function v(a) {
996
- if ("object" === typeof a && null !== a) {
997
- var r = a.$$typeof;
998
- switch (r) {
999
- case b:
1000
- switch (a = a.type, a) {
1001
- case d:
1002
- case f:
1003
- case e:
1004
- case m:
1005
- case n:
1006
- return a;
979
+ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element");
980
+ var REACT_PORTAL_TYPE = Symbol.for("react.portal");
981
+ var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
982
+ var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode");
983
+ var REACT_PROFILER_TYPE = Symbol.for("react.profiler");
984
+ Symbol.for("react.provider");
985
+ var REACT_CONSUMER_TYPE = Symbol.for("react.consumer");
986
+ var REACT_CONTEXT_TYPE = Symbol.for("react.context");
987
+ var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
988
+ var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
989
+ var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list");
990
+ var REACT_MEMO_TYPE = Symbol.for("react.memo");
991
+ var REACT_LAZY_TYPE = Symbol.for("react.lazy");
992
+ var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
993
+ var REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference");
994
+ function typeOf(object) {
995
+ if ("object" === typeof object && null !== object) {
996
+ var $$typeof = object.$$typeof;
997
+ switch ($$typeof) {
998
+ case REACT_ELEMENT_TYPE:
999
+ switch (object = object.type, object) {
1000
+ case REACT_FRAGMENT_TYPE:
1001
+ case REACT_PROFILER_TYPE:
1002
+ case REACT_STRICT_MODE_TYPE:
1003
+ case REACT_SUSPENSE_TYPE:
1004
+ case REACT_SUSPENSE_LIST_TYPE:
1005
+ return object;
1007
1006
  default:
1008
- switch (a = a && a.$$typeof, a) {
1009
- case k:
1010
- case h:
1011
- case l:
1012
- case q:
1013
- case p:
1014
- case g:
1015
- return a;
1007
+ switch (object = object && object.$$typeof, object) {
1008
+ case REACT_CONTEXT_TYPE:
1009
+ case REACT_FORWARD_REF_TYPE:
1010
+ case REACT_LAZY_TYPE:
1011
+ case REACT_MEMO_TYPE:
1012
+ return object;
1013
+ case REACT_CONSUMER_TYPE:
1014
+ return object;
1016
1015
  default:
1017
- return r;
1016
+ return $$typeof;
1018
1017
  }
1019
1018
  }
1020
- case c:
1021
- return r;
1019
+ case REACT_PORTAL_TYPE:
1020
+ return $$typeof;
1022
1021
  }
1023
1022
  }
1024
1023
  }
1025
- exports.ContextConsumer = h;
1026
- exports.ContextProvider = g;
1027
- exports.Element = b;
1028
- exports.ForwardRef = l;
1029
- exports.Fragment = d;
1030
- exports.Lazy = q;
1031
- exports.Memo = p;
1032
- exports.Portal = c;
1033
- exports.Profiler = f;
1034
- exports.StrictMode = e;
1035
- exports.Suspense = m;
1036
- exports.SuspenseList = n;
1037
- exports.isAsyncMode = function() {
1038
- return false;
1024
+ exports.ContextConsumer = REACT_CONSUMER_TYPE;
1025
+ exports.ContextProvider = REACT_CONTEXT_TYPE;
1026
+ exports.Element = REACT_ELEMENT_TYPE;
1027
+ exports.ForwardRef = REACT_FORWARD_REF_TYPE;
1028
+ exports.Fragment = REACT_FRAGMENT_TYPE;
1029
+ exports.Lazy = REACT_LAZY_TYPE;
1030
+ exports.Memo = REACT_MEMO_TYPE;
1031
+ exports.Portal = REACT_PORTAL_TYPE;
1032
+ exports.Profiler = REACT_PROFILER_TYPE;
1033
+ exports.StrictMode = REACT_STRICT_MODE_TYPE;
1034
+ exports.Suspense = REACT_SUSPENSE_TYPE;
1035
+ exports.SuspenseList = REACT_SUSPENSE_LIST_TYPE;
1036
+ exports.isContextConsumer = function(object) {
1037
+ return typeOf(object) === REACT_CONSUMER_TYPE;
1039
1038
  };
1040
- exports.isConcurrentMode = function() {
1041
- return false;
1039
+ exports.isContextProvider = function(object) {
1040
+ return typeOf(object) === REACT_CONTEXT_TYPE;
1042
1041
  };
1043
- exports.isContextConsumer = function(a) {
1044
- return v(a) === h;
1042
+ exports.isElement = function(object) {
1043
+ return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE;
1045
1044
  };
1046
- exports.isContextProvider = function(a) {
1047
- return v(a) === g;
1045
+ exports.isForwardRef = function(object) {
1046
+ return typeOf(object) === REACT_FORWARD_REF_TYPE;
1048
1047
  };
1049
- exports.isElement = function(a) {
1050
- return "object" === typeof a && null !== a && a.$$typeof === b;
1048
+ exports.isFragment = function(object) {
1049
+ return typeOf(object) === REACT_FRAGMENT_TYPE;
1051
1050
  };
1052
- exports.isForwardRef = function(a) {
1053
- return v(a) === l;
1051
+ exports.isLazy = function(object) {
1052
+ return typeOf(object) === REACT_LAZY_TYPE;
1054
1053
  };
1055
- exports.isFragment = function(a) {
1056
- return v(a) === d;
1054
+ exports.isMemo = function(object) {
1055
+ return typeOf(object) === REACT_MEMO_TYPE;
1057
1056
  };
1058
- exports.isLazy = function(a) {
1059
- return v(a) === q;
1057
+ exports.isPortal = function(object) {
1058
+ return typeOf(object) === REACT_PORTAL_TYPE;
1060
1059
  };
1061
- exports.isMemo = function(a) {
1062
- return v(a) === p;
1060
+ exports.isProfiler = function(object) {
1061
+ return typeOf(object) === REACT_PROFILER_TYPE;
1063
1062
  };
1064
- exports.isPortal = function(a) {
1065
- return v(a) === c;
1063
+ exports.isStrictMode = function(object) {
1064
+ return typeOf(object) === REACT_STRICT_MODE_TYPE;
1066
1065
  };
1067
- exports.isProfiler = function(a) {
1068
- return v(a) === f;
1066
+ exports.isSuspense = function(object) {
1067
+ return typeOf(object) === REACT_SUSPENSE_TYPE;
1069
1068
  };
1070
- exports.isStrictMode = function(a) {
1071
- return v(a) === e;
1072
- };
1073
- exports.isSuspense = function(a) {
1074
- return v(a) === m;
1069
+ exports.isSuspenseList = function(object) {
1070
+ return typeOf(object) === REACT_SUSPENSE_LIST_TYPE;
1075
1071
  };
1076
- exports.isSuspenseList = function(a) {
1077
- return v(a) === n;
1072
+ exports.isValidElementType = function(type) {
1073
+ return "string" === typeof type || "function" === typeof type || type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_OFFSCREEN_TYPE || "object" === typeof type && null !== type && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_CONSUMER_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_CLIENT_REFERENCE || void 0 !== type.getModuleId) ? true : false;
1078
1074
  };
1079
- exports.isValidElementType = function(a) {
1080
- return "string" === typeof a || "function" === typeof a || a === d || a === f || a === e || a === m || a === n || a === t || "object" === typeof a && null !== a && (a.$$typeof === q || a.$$typeof === p || a.$$typeof === g || a.$$typeof === h || a.$$typeof === l || a.$$typeof === u || void 0 !== a.getModuleId) ? true : false;
1081
- };
1082
- exports.typeOf = v;
1075
+ exports.typeOf = typeOf;
1083
1076
  }
1084
1077
  });
1085
1078
 
@@ -1087,181 +1080,93 @@ var require_react_is_production_min2 = __commonJS({
1087
1080
  var require_react_is_development2 = __commonJS({
1088
1081
  "../../node_modules/react-is/cjs/react-is.development.js"(exports) {
1089
1082
  "use strict";
1090
- if (process.env.NODE_ENV !== "production") {
1091
- (function() {
1092
- "use strict";
1093
- var REACT_ELEMENT_TYPE = Symbol.for("react.element");
1094
- var REACT_PORTAL_TYPE = Symbol.for("react.portal");
1095
- var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
1096
- var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode");
1097
- var REACT_PROFILER_TYPE = Symbol.for("react.profiler");
1098
- var REACT_PROVIDER_TYPE = Symbol.for("react.provider");
1099
- var REACT_CONTEXT_TYPE = Symbol.for("react.context");
1100
- var REACT_SERVER_CONTEXT_TYPE = Symbol.for("react.server_context");
1101
- var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
1102
- var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
1103
- var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list");
1104
- var REACT_MEMO_TYPE = Symbol.for("react.memo");
1105
- var REACT_LAZY_TYPE = Symbol.for("react.lazy");
1106
- var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
1107
- var enableScopeAPI = false;
1108
- var enableCacheElement = false;
1109
- var enableTransitionTracing = false;
1110
- var enableLegacyHidden = false;
1111
- var enableDebugTracing = false;
1112
- var REACT_MODULE_REFERENCE;
1113
- {
1114
- REACT_MODULE_REFERENCE = Symbol.for("react.module.reference");
1115
- }
1116
- function isValidElementType(type) {
1117
- if (typeof type === "string" || typeof type === "function") {
1118
- return true;
1119
- }
1120
- if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing) {
1121
- return true;
1122
- }
1123
- if (typeof type === "object" && type !== null) {
1124
- if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
1125
- // types supported by any Flight configuration anywhere since
1126
- // we don't know which Flight build this will end up being used
1127
- // with.
1128
- type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== void 0) {
1129
- return true;
1130
- }
1131
- }
1132
- return false;
1133
- }
1134
- function typeOf(object) {
1135
- if (typeof object === "object" && object !== null) {
1136
- var $$typeof = object.$$typeof;
1137
- switch ($$typeof) {
1138
- case REACT_ELEMENT_TYPE:
1139
- var type = object.type;
1140
- switch (type) {
1141
- case REACT_FRAGMENT_TYPE:
1142
- case REACT_PROFILER_TYPE:
1143
- case REACT_STRICT_MODE_TYPE:
1144
- case REACT_SUSPENSE_TYPE:
1145
- case REACT_SUSPENSE_LIST_TYPE:
1146
- return type;
1147
- default:
1148
- var $$typeofType = type && type.$$typeof;
1149
- switch ($$typeofType) {
1150
- case REACT_SERVER_CONTEXT_TYPE:
1151
- case REACT_CONTEXT_TYPE:
1152
- case REACT_FORWARD_REF_TYPE:
1153
- case REACT_LAZY_TYPE:
1154
- case REACT_MEMO_TYPE:
1155
- case REACT_PROVIDER_TYPE:
1156
- return $$typeofType;
1157
- default:
1158
- return $$typeof;
1159
- }
1160
- }
1161
- case REACT_PORTAL_TYPE:
1162
- return $$typeof;
1163
- }
1164
- }
1165
- return void 0;
1166
- }
1167
- var ContextConsumer = REACT_CONTEXT_TYPE;
1168
- var ContextProvider = REACT_PROVIDER_TYPE;
1169
- var Element = REACT_ELEMENT_TYPE;
1170
- var ForwardRef2 = REACT_FORWARD_REF_TYPE;
1171
- var Fragment13 = REACT_FRAGMENT_TYPE;
1172
- var Lazy = REACT_LAZY_TYPE;
1173
- var Memo2 = REACT_MEMO_TYPE;
1174
- var Portal = REACT_PORTAL_TYPE;
1175
- var Profiler = REACT_PROFILER_TYPE;
1176
- var StrictMode = REACT_STRICT_MODE_TYPE;
1177
- var Suspense = REACT_SUSPENSE_TYPE;
1178
- var SuspenseList = REACT_SUSPENSE_LIST_TYPE;
1179
- var hasWarnedAboutDeprecatedIsAsyncMode = false;
1180
- var hasWarnedAboutDeprecatedIsConcurrentMode = false;
1181
- function isAsyncMode(object) {
1182
- {
1183
- if (!hasWarnedAboutDeprecatedIsAsyncMode) {
1184
- hasWarnedAboutDeprecatedIsAsyncMode = true;
1185
- console["warn"]("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 18+.");
1186
- }
1187
- }
1188
- return false;
1189
- }
1190
- function isConcurrentMode(object) {
1191
- {
1192
- if (!hasWarnedAboutDeprecatedIsConcurrentMode) {
1193
- hasWarnedAboutDeprecatedIsConcurrentMode = true;
1194
- console["warn"]("The ReactIs.isConcurrentMode() alias has been deprecated, and will be removed in React 18+.");
1195
- }
1083
+ "production" !== process.env.NODE_ENV && function() {
1084
+ function typeOf(object) {
1085
+ if ("object" === typeof object && null !== object) {
1086
+ var $$typeof = object.$$typeof;
1087
+ switch ($$typeof) {
1088
+ case REACT_ELEMENT_TYPE:
1089
+ switch (object = object.type, object) {
1090
+ case REACT_FRAGMENT_TYPE:
1091
+ case REACT_PROFILER_TYPE:
1092
+ case REACT_STRICT_MODE_TYPE:
1093
+ case REACT_SUSPENSE_TYPE:
1094
+ case REACT_SUSPENSE_LIST_TYPE:
1095
+ return object;
1096
+ default:
1097
+ switch (object = object && object.$$typeof, object) {
1098
+ case REACT_CONTEXT_TYPE:
1099
+ case REACT_FORWARD_REF_TYPE:
1100
+ case REACT_LAZY_TYPE:
1101
+ case REACT_MEMO_TYPE:
1102
+ return object;
1103
+ case REACT_CONSUMER_TYPE:
1104
+ return object;
1105
+ default:
1106
+ return $$typeof;
1107
+ }
1108
+ }
1109
+ case REACT_PORTAL_TYPE:
1110
+ return $$typeof;
1196
1111
  }
1197
- return false;
1198
- }
1199
- function isContextConsumer(object) {
1200
- return typeOf(object) === REACT_CONTEXT_TYPE;
1201
- }
1202
- function isContextProvider(object) {
1203
- return typeOf(object) === REACT_PROVIDER_TYPE;
1204
- }
1205
- function isElement(object) {
1206
- return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
1207
- }
1208
- function isForwardRef(object) {
1209
- return typeOf(object) === REACT_FORWARD_REF_TYPE;
1210
- }
1211
- function isFragment(object) {
1212
- return typeOf(object) === REACT_FRAGMENT_TYPE;
1213
- }
1214
- function isLazy(object) {
1215
- return typeOf(object) === REACT_LAZY_TYPE;
1216
- }
1217
- function isMemo(object) {
1218
- return typeOf(object) === REACT_MEMO_TYPE;
1219
- }
1220
- function isPortal(object) {
1221
- return typeOf(object) === REACT_PORTAL_TYPE;
1222
- }
1223
- function isProfiler(object) {
1224
- return typeOf(object) === REACT_PROFILER_TYPE;
1225
- }
1226
- function isStrictMode(object) {
1227
- return typeOf(object) === REACT_STRICT_MODE_TYPE;
1228
1112
  }
1229
- function isSuspense(object) {
1230
- return typeOf(object) === REACT_SUSPENSE_TYPE;
1231
- }
1232
- function isSuspenseList(object) {
1233
- return typeOf(object) === REACT_SUSPENSE_LIST_TYPE;
1234
- }
1235
- exports.ContextConsumer = ContextConsumer;
1236
- exports.ContextProvider = ContextProvider;
1237
- exports.Element = Element;
1238
- exports.ForwardRef = ForwardRef2;
1239
- exports.Fragment = Fragment13;
1240
- exports.Lazy = Lazy;
1241
- exports.Memo = Memo2;
1242
- exports.Portal = Portal;
1243
- exports.Profiler = Profiler;
1244
- exports.StrictMode = StrictMode;
1245
- exports.Suspense = Suspense;
1246
- exports.SuspenseList = SuspenseList;
1247
- exports.isAsyncMode = isAsyncMode;
1248
- exports.isConcurrentMode = isConcurrentMode;
1249
- exports.isContextConsumer = isContextConsumer;
1250
- exports.isContextProvider = isContextProvider;
1251
- exports.isElement = isElement;
1252
- exports.isForwardRef = isForwardRef;
1253
- exports.isFragment = isFragment;
1254
- exports.isLazy = isLazy;
1255
- exports.isMemo = isMemo;
1256
- exports.isPortal = isPortal;
1257
- exports.isProfiler = isProfiler;
1258
- exports.isStrictMode = isStrictMode;
1259
- exports.isSuspense = isSuspense;
1260
- exports.isSuspenseList = isSuspenseList;
1261
- exports.isValidElementType = isValidElementType;
1262
- exports.typeOf = typeOf;
1263
- })();
1264
- }
1113
+ }
1114
+ var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler");
1115
+ Symbol.for("react.provider");
1116
+ var REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference");
1117
+ exports.ContextConsumer = REACT_CONSUMER_TYPE;
1118
+ exports.ContextProvider = REACT_CONTEXT_TYPE;
1119
+ exports.Element = REACT_ELEMENT_TYPE;
1120
+ exports.ForwardRef = REACT_FORWARD_REF_TYPE;
1121
+ exports.Fragment = REACT_FRAGMENT_TYPE;
1122
+ exports.Lazy = REACT_LAZY_TYPE;
1123
+ exports.Memo = REACT_MEMO_TYPE;
1124
+ exports.Portal = REACT_PORTAL_TYPE;
1125
+ exports.Profiler = REACT_PROFILER_TYPE;
1126
+ exports.StrictMode = REACT_STRICT_MODE_TYPE;
1127
+ exports.Suspense = REACT_SUSPENSE_TYPE;
1128
+ exports.SuspenseList = REACT_SUSPENSE_LIST_TYPE;
1129
+ exports.isContextConsumer = function(object) {
1130
+ return typeOf(object) === REACT_CONSUMER_TYPE;
1131
+ };
1132
+ exports.isContextProvider = function(object) {
1133
+ return typeOf(object) === REACT_CONTEXT_TYPE;
1134
+ };
1135
+ exports.isElement = function(object) {
1136
+ return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE;
1137
+ };
1138
+ exports.isForwardRef = function(object) {
1139
+ return typeOf(object) === REACT_FORWARD_REF_TYPE;
1140
+ };
1141
+ exports.isFragment = function(object) {
1142
+ return typeOf(object) === REACT_FRAGMENT_TYPE;
1143
+ };
1144
+ exports.isLazy = function(object) {
1145
+ return typeOf(object) === REACT_LAZY_TYPE;
1146
+ };
1147
+ exports.isMemo = function(object) {
1148
+ return typeOf(object) === REACT_MEMO_TYPE;
1149
+ };
1150
+ exports.isPortal = function(object) {
1151
+ return typeOf(object) === REACT_PORTAL_TYPE;
1152
+ };
1153
+ exports.isProfiler = function(object) {
1154
+ return typeOf(object) === REACT_PROFILER_TYPE;
1155
+ };
1156
+ exports.isStrictMode = function(object) {
1157
+ return typeOf(object) === REACT_STRICT_MODE_TYPE;
1158
+ };
1159
+ exports.isSuspense = function(object) {
1160
+ return typeOf(object) === REACT_SUSPENSE_TYPE;
1161
+ };
1162
+ exports.isSuspenseList = function(object) {
1163
+ return typeOf(object) === REACT_SUSPENSE_LIST_TYPE;
1164
+ };
1165
+ exports.isValidElementType = function(type) {
1166
+ return "string" === typeof type || "function" === typeof type || type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_OFFSCREEN_TYPE || "object" === typeof type && null !== type && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_CONSUMER_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_CLIENT_REFERENCE || void 0 !== type.getModuleId) ? true : false;
1167
+ };
1168
+ exports.typeOf = typeOf;
1169
+ }();
1265
1170
  }
1266
1171
  });
1267
1172
 
@@ -1270,7 +1175,7 @@ var require_react_is2 = __commonJS({
1270
1175
  "../../node_modules/react-is/index.js"(exports, module) {
1271
1176
  "use strict";
1272
1177
  if (process.env.NODE_ENV === "production") {
1273
- module.exports = require_react_is_production_min2();
1178
+ module.exports = require_react_is_production();
1274
1179
  } else {
1275
1180
  module.exports = require_react_is_development2();
1276
1181
  }
@@ -4950,12 +4855,12 @@ object-assign/index.js:
4950
4855
  @license MIT
4951
4856
  *)
4952
4857
 
4953
- react-is/cjs/react-is.production.min.js:
4858
+ react-is/cjs/react-is.production.js:
4954
4859
  (**
4955
4860
  * @license React
4956
- * react-is.production.min.js
4861
+ * react-is.production.js
4957
4862
  *
4958
- * Copyright (c) Facebook, Inc. and its affiliates.
4863
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
4959
4864
  *
4960
4865
  * This source code is licensed under the MIT license found in the
4961
4866
  * LICENSE file in the root directory of this source tree.
@@ -4966,7 +4871,7 @@ react-is/cjs/react-is.development.js:
4966
4871
  * @license React
4967
4872
  * react-is.development.js
4968
4873
  *
4969
- * Copyright (c) Facebook, Inc. and its affiliates.
4874
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
4970
4875
  *
4971
4876
  * This source code is licensed under the MIT license found in the
4972
4877
  * LICENSE file in the root directory of this source tree.
@@ -4974,7 +4879,7 @@ react-is/cjs/react-is.development.js:
4974
4879
 
4975
4880
  @mui/styled-engine/index.js:
4976
4881
  (**
4977
- * @mui/styled-engine v5.16.8
4882
+ * @mui/styled-engine v5.16.12
4978
4883
  *
4979
4884
  * @license MIT
4980
4885
  * This source code is licensed under the MIT license found in the