@wavelengthusaf/components 2.9.1 → 2.9.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 CHANGED
@@ -14,12 +14,30 @@ npm install @wavelengthusaf/components
14
14
 
15
15
  ## Release Notes
16
16
 
17
+ ### 2.9.3
18
+
19
+ - 5/06/2025
20
+ - Updated Alert Component
21
+
22
+ ### 2.9.2
23
+
24
+ - 5/02/2025
25
+ - Minor fix to exports
26
+
27
+ ### 2.9.1
28
+
29
+ - 5/02/2025
30
+ - WavelengthButton updated; new props
31
+ - Minor bug fixes
32
+
17
33
  ### 2.9.0
34
+
18
35
  - 4/25/2025
19
36
  - New Alert Component
20
37
  - Added tests for new components (Alert Component)
21
38
 
22
39
  ### 2.8.1
40
+
23
41
  - 4/18/2024
24
42
  - Created test for the Wavelength Comment Display
25
43
 
@@ -31,7 +49,7 @@ npm install @wavelengthusaf/components
31
49
  ### 2.7.2
32
50
 
33
51
  - 4/4/2025
34
- - Updated `WavelengthTitleBar` to be a standard `<div>` instead of an svg. Also added several props for further customization.
52
+ - Updated `WavelengthTitleBar` to be a standard `<div>` instead of an svg. Also added several props for further customization.
35
53
 
36
54
  ### 2.7.1
37
55
 
@@ -206,7 +206,7 @@ var require_react_is_development = __commonJS({
206
206
  var ContextProvider = REACT_PROVIDER_TYPE;
207
207
  var Element = REACT_ELEMENT_TYPE;
208
208
  var ForwardRef2 = REACT_FORWARD_REF_TYPE;
209
- var Fragment13 = REACT_FRAGMENT_TYPE;
209
+ var Fragment14 = REACT_FRAGMENT_TYPE;
210
210
  var Lazy = REACT_LAZY_TYPE;
211
211
  var Memo2 = REACT_MEMO_TYPE;
212
212
  var Portal = REACT_PORTAL_TYPE;
@@ -265,7 +265,7 @@ var require_react_is_development = __commonJS({
265
265
  exports.ContextProvider = ContextProvider;
266
266
  exports.Element = Element;
267
267
  exports.ForwardRef = ForwardRef2;
268
- exports.Fragment = Fragment13;
268
+ exports.Fragment = Fragment14;
269
269
  exports.Lazy = Lazy;
270
270
  exports.Memo = Memo2;
271
271
  exports.Portal = Portal;
@@ -3707,6 +3707,7 @@ function WavelengthStyledButton({ type = "default", styles, children, disabled =
3707
3707
  children
3708
3708
  ] });
3709
3709
  }
3710
+ var WavelengthStyledButton_default = WavelengthStyledButton;
3710
3711
 
3711
3712
  // src/themes/WavelengthAppTheme.tsx
3712
3713
 
@@ -5207,6 +5208,325 @@ function WavelengthCommentDisplay(props) {
5207
5208
  );
5208
5209
  }
5209
5210
 
5211
+ // src/components/PageComponents/WavelengthPermissionAlert.tsx
5212
+
5213
+ function WavelengthPermissionAlert({
5214
+ dataTestId,
5215
+ height: height2 = "112px",
5216
+ width: width2 = "314px",
5217
+ backgroundColor: backgroundColor2 = "white",
5218
+ permission,
5219
+ applicationName,
5220
+ requestorName,
5221
+ dateOfRequest,
5222
+ onDismiss,
5223
+ unit = "No Unit"
5224
+ }) {
5225
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _jsxruntime.Fragment, { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
5226
+ "div",
5227
+ {
5228
+ "data-testid": dataTestId,
5229
+ style: {
5230
+ width: width2,
5231
+ height: height2,
5232
+ backgroundColor: backgroundColor2,
5233
+ border: "1px solid #5F5F5F",
5234
+ borderRadius: "12px",
5235
+ display: "flex",
5236
+ flexDirection: "column",
5237
+ padding: "8px 12px",
5238
+ gap: "8px",
5239
+ fontSize: "14px",
5240
+ fontWeight: 400,
5241
+ boxSizing: "border-box",
5242
+ fontFamily: "roboto"
5243
+ },
5244
+ children: [
5245
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "20px", fontWeight: 400 }, children: permission }),
5246
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { letterSpacing: "-6%" }, children: [
5247
+ "Application: ",
5248
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { style: { fontWeight: 600, marginLeft: "4px" }, children: applicationName })
5249
+ ] }),
5250
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { letterSpacing: "-6%" }, children: [
5251
+ "Requestor:",
5252
+ " ",
5253
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { style: { fontWeight: 600, marginLeft: "4px" }, children: [
5254
+ requestorName,
5255
+ ", ",
5256
+ "" + unit
5257
+ ] })
5258
+ ] }),
5259
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { display: "flex", flexDirection: "row", justifyContent: "space-between" }, children: [
5260
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { letterSpacing: "-6%" }, children: [
5261
+ "Date of Request: ",
5262
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { style: { fontWeight: 600, marginLeft: "4px" }, children: dateOfRequest })
5263
+ ] }),
5264
+ " ",
5265
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "a", { href: "", style: { color: "black", fontWeight: 600 }, onClick: onDismiss, children: "Dismiss" }),
5266
+ " "
5267
+ ] })
5268
+ ]
5269
+ }
5270
+ ) });
5271
+ }
5272
+
5273
+ // src/components/PageComponents/WavelengthAccessAlert.tsx
5274
+ var _Check = require('@mui/icons-material/Check'); var _Check2 = _interopRequireDefault(_Check);
5275
+ var _NotInterested = require('@mui/icons-material/NotInterested'); var _NotInterested2 = _interopRequireDefault(_NotInterested);
5276
+
5277
+ function WavelengthAccessAlert({
5278
+ height: height2 = "100px",
5279
+ dataTestId,
5280
+ width: width2 = "244px",
5281
+ time = "2m ago",
5282
+ access = "Access Request",
5283
+ appNickname = "App Nickname",
5284
+ appLogo = "wings",
5285
+ appAdmin = "app.admin.1",
5286
+ requestorName = "joes.user.1"
5287
+ }) {
5288
+ if (access === "Access Request") {
5289
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
5290
+ "div",
5291
+ {
5292
+ "data-testid": dataTestId,
5293
+ style: {
5294
+ width: width2,
5295
+ height: height2,
5296
+ border: "1px solid rgba(0, 0, 0, 0.6)",
5297
+ borderRadius: "6px",
5298
+ position: "relative",
5299
+ padding: "8px 10px 2px 10px",
5300
+ display: "grid",
5301
+ gridTemplateColumns: "1fr 3fr 2fr",
5302
+ gridTemplateRows: "1fr 1fr 1fr",
5303
+ boxSizing: "border-box"
5304
+ },
5305
+ children: [
5306
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "8px", fontWeight: 400, position: "absolute", top: "5px", right: "12px" }, children: time }),
5307
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontWeight: 700, fontSize: "12px", color: "rgba(248, 136, 5, 1)", marginTop: "5px", marginLeft: "5px", gridArea: "1/2/1/3" }, children: access }),
5308
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { gridArea: "2/1/3/2" }, children: [
5309
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, AppLogo_default, { name: appLogo, width: 22 }),
5310
+ " "
5311
+ ] }),
5312
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { display: "flex", flexDirection: "column", gridArea: "2/2/3/4", fontSize: "10px", gap: "4px", marginLeft: "5px" }, children: [
5313
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "label", { htmlFor: "", children: [
5314
+ "Requestor: ",
5315
+ requestorName
5316
+ ] }),
5317
+ " ",
5318
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { htmlFor: "", children: appNickname })
5319
+ ] }),
5320
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
5321
+ WavelengthStyledButton_default,
5322
+ {
5323
+ type: "default",
5324
+ styles: { backgroundColor: "rgba(143, 143, 143, 1)", marginTop: "5px", borderRadius: "5px", height: "22px", width: "44px", gridArea: "3/4/3/4", color: "white" },
5325
+ children: "clear"
5326
+ }
5327
+ )
5328
+ ]
5329
+ }
5330
+ );
5331
+ } else if (access === "Access Granted") {
5332
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
5333
+ "div",
5334
+ {
5335
+ "data-testid": dataTestId,
5336
+ style: {
5337
+ width: width2,
5338
+ height: height2,
5339
+ border: "1px solid rgba(0, 0, 0, 0.6)",
5340
+ borderRadius: "6px",
5341
+ position: "relative",
5342
+ padding: "8px 10px 2px 10px",
5343
+ display: "grid",
5344
+ gridTemplateColumns: "1fr 3fr 2fr",
5345
+ gridTemplateRows: "1fr 1fr 1fr",
5346
+ boxSizing: "border-box"
5347
+ },
5348
+ children: [
5349
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "8px", fontWeight: 400, position: "absolute", top: "5px", right: "12px" }, children: time }),
5350
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { fontWeight: 700, fontSize: "12px", marginTop: "5px", marginLeft: "5px", gridArea: "1/2/1/4", display: "flex", alignItems: "center" }, children: [
5351
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Check2.default, { fontSize: "small", sx: { color: "rgba(36, 226, 32, 1)", width: "16px" } }),
5352
+ access
5353
+ ] }),
5354
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { gridArea: "2/1/3/2" }, children: [
5355
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, AppLogo_default, { name: appLogo, width: 22 }),
5356
+ " "
5357
+ ] }),
5358
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { display: "flex", flexDirection: "column", gridArea: "2/2/3/4", fontSize: "10px", marginLeft: "5px" }, children: [
5359
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontWeight: 700, fontSize: "10px" }, children: appNickname }),
5360
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { htmlFor: "", style: { marginTop: "5px" }, children: appAdmin }),
5361
+ " ",
5362
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { htmlFor: "", children: "Added you as a user" })
5363
+ ] }),
5364
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, WavelengthStyledButton_default, { type: "default", styles: { backgroundColor: "rgba(143, 143, 143, 1)", borderRadius: "5px", height: "22px", width: "44px", gridArea: "3/4/3/4", color: "white" }, children: "clear" })
5365
+ ]
5366
+ }
5367
+ );
5368
+ } else {
5369
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
5370
+ "div",
5371
+ {
5372
+ "data-testid": dataTestId,
5373
+ style: {
5374
+ width: width2,
5375
+ height: height2,
5376
+ border: "1px solid rgba(0, 0, 0, 0.6)",
5377
+ borderRadius: "6px",
5378
+ position: "relative",
5379
+ padding: "8px 10px 2px 10px",
5380
+ display: "grid",
5381
+ gridTemplateColumns: "1fr 3fr 2fr",
5382
+ gridTemplateRows: "1fr 1fr 1fr",
5383
+ boxSizing: "border-box"
5384
+ },
5385
+ children: [
5386
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "8px", fontWeight: 400, position: "absolute", top: "5px", right: "12px" }, children: time }),
5387
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { fontWeight: 700, fontSize: "12px", marginTop: "5px", marginLeft: "5px", gridArea: "1/2/1/4", display: "flex", alignItems: "center" }, children: [
5388
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _NotInterested2.default, { fontSize: "small", sx: { color: "rgba(234, 30, 30, 1)", width: "16px" } }),
5389
+ access
5390
+ ] }),
5391
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { gridArea: "2/1/3/2" }, children: [
5392
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, AppLogo_default, { name: appLogo, width: 22 }),
5393
+ " "
5394
+ ] }),
5395
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { display: "flex", flexDirection: "column", gridArea: "2/2/3/4", fontSize: "10px", marginLeft: "5px" }, children: [
5396
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontWeight: 700, fontSize: "10px" }, children: appNickname }),
5397
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { htmlFor: "", style: { marginTop: "5px" }, children: appAdmin }),
5398
+ " ",
5399
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { htmlFor: "", children: "Denied your request" })
5400
+ ] }),
5401
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, WavelengthStyledButton_default, { type: "default", styles: { backgroundColor: "rgba(143, 143, 143, 1)", borderRadius: "5px", height: "22px", width: "44px", gridArea: "3/4/3/4", color: "white" }, children: "clear" })
5402
+ ]
5403
+ }
5404
+ );
5405
+ }
5406
+ }
5407
+
5408
+ // src/components/PageComponents/WavelengthAlert.tsx
5409
+ var _Close = require('@mui/icons-material/Close'); var _Close2 = _interopRequireDefault(_Close);
5410
+
5411
+ var _Notifications = require('@mui/icons-material/Notifications'); var _Notifications2 = _interopRequireDefault(_Notifications);
5412
+
5413
+ function WavelengthAlert({
5414
+ viewed,
5415
+ width: width2 = "320px",
5416
+ height: height2,
5417
+ backgroundColor: backgroundColor2 = "#FBFBFB",
5418
+ appName,
5419
+ alertType = "Access Requested",
5420
+ alertDescription = "Keenan Ray has requested to be added as a User to your App",
5421
+ datatestid,
5422
+ variant,
5423
+ timeStamp,
5424
+ url,
5425
+ initiator,
5426
+ id,
5427
+ onClose
5428
+ }) {
5429
+ const viewedStyles = viewed ? {
5430
+ backgroundColor: "#DFDCDC",
5431
+ border: "1px solid #A0A2A3",
5432
+ iconColor: "#A0A2A3"
5433
+ } : {
5434
+ backgroundColor: backgroundColor2,
5435
+ border: "1px solid rgba(2, 136, 209, 1)",
5436
+ iconColor: "rgba(2, 136, 209, 1)"
5437
+ };
5438
+ const baseContainerStyle = {
5439
+ width: width2,
5440
+ height: height2 || "fit-content",
5441
+ backgroundColor: viewedStyles.backgroundColor,
5442
+ fontFamily: "Roboto, sans-serif",
5443
+ border: viewedStyles.border,
5444
+ borderRadius: "4px",
5445
+ display: "flex",
5446
+ flexDirection: "row",
5447
+ boxSizing: "border-box",
5448
+ alignItems: "flex-start",
5449
+ padding: "12px 16px 10px 16px",
5450
+ color: "#1E4620",
5451
+ position: variant === "civilized" ? "relative" : void 0
5452
+ };
5453
+ const iconStyle = {
5454
+ width: "24px",
5455
+ padding: "0px",
5456
+ color: viewedStyles.iconColor
5457
+ };
5458
+ if (variant === "caveman") {
5459
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { role: "alert", id, "data-testid": datatestid, style: baseContainerStyle, children: [
5460
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Notifications2.default, { sx: iconStyle }),
5461
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "a", { href: url, style: { display: "flex", flexDirection: "column", gap: "4px", width: "250px", marginLeft: "12px", textDecoration: "none", color: baseContainerStyle.color }, children: [
5462
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { style: { fontSize: "1rem", lineHeight: "150%", letterSpacing: "0.15px", fontWeight: 550 }, children: timeStamp }),
5463
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
5464
+ "div",
5465
+ {
5466
+ style: {
5467
+ fontSize: ".875rem",
5468
+ fontWeight: 400,
5469
+ lineHeight: "143%",
5470
+ display: "-webkit-box",
5471
+ WebkitLineClamp: 2,
5472
+ WebkitBoxOrient: "vertical",
5473
+ overflow: "hidden",
5474
+ textOverflow: "ellipsis"
5475
+ },
5476
+ children: alertType
5477
+ }
5478
+ )
5479
+ ] }),
5480
+ onClose && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.IconButton, { sx: { padding: "0px", width: "20px" }, onClick: onClose, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Close2.default, {}) })
5481
+ ] });
5482
+ } else if (variant === "basic") {
5483
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { role: "alert", id, "data-testid": datatestid, style: baseContainerStyle, children: [
5484
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Notifications2.default, { sx: iconStyle }),
5485
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "a", { href: url, style: { display: "flex", flexDirection: "column", gap: "4px", width: "250px", marginLeft: "12px", textDecoration: "none", color: baseContainerStyle.color }, children: [
5486
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { style: { fontSize: "14px", lineHeight: "150%", letterSpacing: "0.15px", fontWeight: 500 }, children: timeStamp }),
5487
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "16px", fontWeight: 550, lineHeight: "24px" }, children: alertType }),
5488
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { fontSize: "14px", lineHeight: "20px", fontWeight: 400 }, children: [
5489
+ "App: ",
5490
+ appName
5491
+ ] })
5492
+ ] }),
5493
+ onClose && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.IconButton, { sx: { padding: "0px", width: "20px" }, onClick: onClose, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Close2.default, {}) })
5494
+ ] });
5495
+ } else {
5496
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { role: "alert", id, "data-testid": datatestid, style: baseContainerStyle, children: [
5497
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Notifications2.default, { sx: iconStyle }),
5498
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "a", { href: url, style: { display: "flex", flexDirection: "column", gap: "7px", width: "250px", marginLeft: "12px", textDecoration: "none", color: baseContainerStyle.color }, children: [
5499
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { style: { fontSize: "16px", lineHeight: "24px", letterSpacing: "0.15px", fontWeight: 550 }, children: alertType }),
5500
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "14px", fontWeight: 400, lineHeight: "20px", letterSpacing: "0.25px", width: "200px" }, children: alertDescription }),
5501
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { fontSize: "14px", lineHeight: "20px", fontWeight: 400 }, children: [
5502
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { style: { fontWeight: 550 }, children: "Initiator: " }),
5503
+ " ",
5504
+ initiator
5505
+ ] })
5506
+ ] }),
5507
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
5508
+ "div",
5509
+ {
5510
+ style: {
5511
+ textAlign: "center",
5512
+ display: "flex",
5513
+ flexDirection: "column",
5514
+ position: "absolute",
5515
+ right: "15px",
5516
+ bottom: "12px"
5517
+ },
5518
+ className: "icon-btn-container",
5519
+ children: [
5520
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.IconButton, { sx: { padding: "3px" }, onClick: onClose, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _material.SvgIcon, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "svg", { xmlns: "http://www.w3.org/2000/svg", height: "24px", viewBox: "0 -960 960 960", width: "24px", fill: "#4E4E4F", children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "path", { d: "M280-120q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520ZM360-280h80v-360h-80v360Zm160 0h80v-360h-80v360ZM280-720v520-520Z" }) }) }) }),
5521
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "11px" }, children: "Dismiss" })
5522
+ ]
5523
+ }
5524
+ ),
5525
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { top: "6px", right: "15px", position: "absolute", fontSize: "11px", color: "#797979" }, children: timeStamp })
5526
+ ] });
5527
+ }
5528
+ }
5529
+
5210
5530
  // src/components/footers/WavelengthFooter/WavelengthFooter.tsx
5211
5531
 
5212
5532
 
@@ -5438,7 +5758,7 @@ function WavelengthConfirmationModal(props) {
5438
5758
 
5439
5759
  // src/components/modals/WavelengthContentModal.tsx
5440
5760
 
5441
- var _Close = require('@mui/icons-material/Close'); var _Close2 = _interopRequireDefault(_Close);
5761
+
5442
5762
 
5443
5763
  function WavelengthContentModal(props) {
5444
5764
  const { show, setShow, handleContentModalOnConfirmProp } = props;
@@ -6904,7 +7224,10 @@ var WavelengthDataTable = ({ data, columns, itemsPerPage, totalPages }) => {
6904
7224
 
6905
7225
 
6906
7226
 
6907
- exports.AppLogo = AppLogo; exports.ButtonIcon = ButtonIcon; exports.ButtonMenu = ButtonMenu; exports.DefaultCarousel = DefaultCarousel; exports.DefaultIcon = DefaultIcon; exports.DefaultPagination = DefaultPagination; exports.ManyPlanesComponent = ManyPlanesComponent; exports.NotAvailablePage = NotAvailablePage; exports.SearchTextField = SearchTextField; exports.SliderCardCarousel = SliderCardCarousel; exports.TestSnackbar = TestSnackbar; exports.WavelengthAppTheme = WavelengthAppTheme; exports.WavelengthAutocomplete = WavelengthAutocomplete; exports.WavelengthBanner = WavelengthBanner2; exports.WavelengthBox = WavelengthBox; exports.WavelengthButton = WavelengthButton2; exports.WavelengthCommentDisplay = WavelengthCommentDisplay; exports.WavelengthConfirmationModal = WavelengthConfirmationModal; exports.WavelengthContentModal = WavelengthContentModal; exports.WavelengthContentPlaceholder = WavelengthContentPlaceholder; exports.WavelengthDataTable = WavelengthDataTable; exports.WavelengthDragAndDrop = WavelengthDragAndDrop; exports.WavelengthDropdown = WavelengthDropdown; exports.WavelengthDropdownButton = WavelengthDropdownButton; exports.WavelengthExampleComponent = WavelengthExampleComponent; exports.WavelengthFileDownloader = WavelengthFileDownloader; exports.WavelengthFooter = WavelengthFooter; exports.WavelengthPlaneTrail = WavelengthPlaneTrail; exports.WavelengthPopUpMenu = WavelengthPopUpMenu; exports.WavelengthProgressBar = WavelengthProgressBar; exports.WavelengthSearch = WavelengthSearch; exports.WavelengthSideBar = WavelengthSideBar; exports.WavelengthSlider = WavelengthSlider; exports.WavelengthSnackbar = WavelengthSnackbar; exports.WavelengthSpinningLogo = WavelengthSpinningLogo; exports.WavelengthSpinningOuterCircle = WavelengthSpinningOuterCircle; exports.WavelengthStandardSnackbar = WavelengthStandardSnackbar; exports.WavelengthStyledButton = WavelengthStyledButton; exports.WavelengthTextField = WavelengthTextField; exports.WavelengthTitleBar = WavelengthTitleBar2; exports.add = add; exports.ascendingRange = ascendingRange; exports.concat = concat; exports.findBestStringMatch = findBestStringMatch; exports.range = range; exports.useOutsideClick = useOutsideClick; exports.useThemeContext = useThemeContext;
7227
+
7228
+
7229
+
7230
+ exports.AppLogo = AppLogo; exports.ButtonIcon = ButtonIcon; exports.ButtonMenu = ButtonMenu; exports.DefaultCarousel = DefaultCarousel; exports.DefaultIcon = DefaultIcon; exports.DefaultPagination = DefaultPagination; exports.ManyPlanesComponent = ManyPlanesComponent; exports.NotAvailablePage = NotAvailablePage; exports.SearchTextField = SearchTextField; exports.SliderCardCarousel = SliderCardCarousel; exports.TestSnackbar = TestSnackbar; exports.WavelengthAccessAlert = WavelengthAccessAlert; exports.WavelengthAlert = WavelengthAlert; exports.WavelengthAppTheme = WavelengthAppTheme; exports.WavelengthAutocomplete = WavelengthAutocomplete; exports.WavelengthBanner = WavelengthBanner2; exports.WavelengthBox = WavelengthBox; exports.WavelengthButton = WavelengthButton2; exports.WavelengthCommentDisplay = WavelengthCommentDisplay; exports.WavelengthConfirmationModal = WavelengthConfirmationModal; exports.WavelengthContentModal = WavelengthContentModal; exports.WavelengthContentPlaceholder = WavelengthContentPlaceholder; exports.WavelengthDataTable = WavelengthDataTable; exports.WavelengthDragAndDrop = WavelengthDragAndDrop; exports.WavelengthDropdown = WavelengthDropdown; exports.WavelengthDropdownButton = WavelengthDropdownButton; exports.WavelengthExampleComponent = WavelengthExampleComponent; exports.WavelengthFileDownloader = WavelengthFileDownloader; exports.WavelengthFooter = WavelengthFooter; exports.WavelengthPermissionAlert = WavelengthPermissionAlert; exports.WavelengthPlaneTrail = WavelengthPlaneTrail; exports.WavelengthPopUpMenu = WavelengthPopUpMenu; exports.WavelengthProgressBar = WavelengthProgressBar; exports.WavelengthSearch = WavelengthSearch; exports.WavelengthSideBar = WavelengthSideBar; exports.WavelengthSlider = WavelengthSlider; exports.WavelengthSnackbar = WavelengthSnackbar; exports.WavelengthSpinningLogo = WavelengthSpinningLogo; exports.WavelengthSpinningOuterCircle = WavelengthSpinningOuterCircle; exports.WavelengthStandardSnackbar = WavelengthStandardSnackbar; exports.WavelengthStyledButton = WavelengthStyledButton; exports.WavelengthTextField = WavelengthTextField; exports.WavelengthTitleBar = WavelengthTitleBar2; exports.add = add; exports.ascendingRange = ascendingRange; exports.concat = concat; exports.findBestStringMatch = findBestStringMatch; exports.range = range; exports.useOutsideClick = useOutsideClick; exports.useThemeContext = useThemeContext;
6908
7231
  /*! Bundled license information:
6909
7232
 
6910
7233
  react-is/cjs/react-is.production.min.js: