@wavelengthusaf/components 2.10.0 → 2.10.1

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,6 +14,11 @@ npm install @wavelengthusaf/components
14
14
 
15
15
  ## Release Notes
16
16
 
17
+ ### 2.10.1
18
+
19
+ - 5/13/2025
20
+ - Small fix to exports
21
+
17
22
  ### 2.10.0
18
23
 
19
24
  - 5/13/2025
@@ -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;
@@ -3746,6 +3746,7 @@ function WavelengthStyledButton({ type = "default", styles, children, disabled =
3746
3746
  children
3747
3747
  ] });
3748
3748
  }
3749
+ var WavelengthStyledButton_default = WavelengthStyledButton;
3749
3750
 
3750
3751
  // src/themes/WavelengthAppTheme.tsx
3751
3752
 
@@ -5246,6 +5247,325 @@ function WavelengthCommentDisplay(props) {
5246
5247
  );
5247
5248
  }
5248
5249
 
5250
+ // src/components/PageComponents/WavelengthPermissionAlert.tsx
5251
+
5252
+ function WavelengthPermissionAlert({
5253
+ dataTestId,
5254
+ height: height2 = "112px",
5255
+ width: width2 = "314px",
5256
+ backgroundColor: backgroundColor2 = "white",
5257
+ permission,
5258
+ applicationName,
5259
+ requestorName,
5260
+ dateOfRequest,
5261
+ onDismiss,
5262
+ unit = "No Unit"
5263
+ }) {
5264
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _jsxruntime.Fragment, { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
5265
+ "div",
5266
+ {
5267
+ "data-testid": dataTestId,
5268
+ style: {
5269
+ width: width2,
5270
+ height: height2,
5271
+ backgroundColor: backgroundColor2,
5272
+ border: "1px solid #5F5F5F",
5273
+ borderRadius: "12px",
5274
+ display: "flex",
5275
+ flexDirection: "column",
5276
+ padding: "8px 12px",
5277
+ gap: "8px",
5278
+ fontSize: "14px",
5279
+ fontWeight: 400,
5280
+ boxSizing: "border-box",
5281
+ fontFamily: "roboto"
5282
+ },
5283
+ children: [
5284
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "20px", fontWeight: 400 }, children: permission }),
5285
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { letterSpacing: "-6%" }, children: [
5286
+ "Application: ",
5287
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { style: { fontWeight: 600, marginLeft: "4px" }, children: applicationName })
5288
+ ] }),
5289
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { letterSpacing: "-6%" }, children: [
5290
+ "Requestor:",
5291
+ " ",
5292
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "span", { style: { fontWeight: 600, marginLeft: "4px" }, children: [
5293
+ requestorName,
5294
+ ", ",
5295
+ "" + unit
5296
+ ] })
5297
+ ] }),
5298
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { display: "flex", flexDirection: "row", justifyContent: "space-between" }, children: [
5299
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { letterSpacing: "-6%" }, children: [
5300
+ "Date of Request: ",
5301
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { style: { fontWeight: 600, marginLeft: "4px" }, children: dateOfRequest })
5302
+ ] }),
5303
+ " ",
5304
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "a", { href: "", style: { color: "black", fontWeight: 600 }, onClick: onDismiss, children: "Dismiss" }),
5305
+ " "
5306
+ ] })
5307
+ ]
5308
+ }
5309
+ ) });
5310
+ }
5311
+
5312
+ // src/components/PageComponents/WavelengthAccessAlert.tsx
5313
+ var _Check = require('@mui/icons-material/Check'); var _Check2 = _interopRequireDefault(_Check);
5314
+ var _NotInterested = require('@mui/icons-material/NotInterested'); var _NotInterested2 = _interopRequireDefault(_NotInterested);
5315
+
5316
+ function WavelengthAccessAlert({
5317
+ height: height2 = "100px",
5318
+ dataTestId,
5319
+ width: width2 = "244px",
5320
+ time = "2m ago",
5321
+ access = "Access Request",
5322
+ appNickname = "App Nickname",
5323
+ appLogo = "wings",
5324
+ appAdmin = "app.admin.1",
5325
+ requestorName = "joes.user.1"
5326
+ }) {
5327
+ if (access === "Access Request") {
5328
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
5329
+ "div",
5330
+ {
5331
+ "data-testid": dataTestId,
5332
+ style: {
5333
+ width: width2,
5334
+ height: height2,
5335
+ border: "1px solid rgba(0, 0, 0, 0.6)",
5336
+ borderRadius: "6px",
5337
+ position: "relative",
5338
+ padding: "8px 10px 2px 10px",
5339
+ display: "grid",
5340
+ gridTemplateColumns: "1fr 3fr 2fr",
5341
+ gridTemplateRows: "1fr 1fr 1fr",
5342
+ boxSizing: "border-box"
5343
+ },
5344
+ children: [
5345
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "8px", fontWeight: 400, position: "absolute", top: "5px", right: "12px" }, children: time }),
5346
+ /* @__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 }),
5347
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { gridArea: "2/1/3/2" }, children: [
5348
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, AppLogo_default, { name: appLogo, width: 22 }),
5349
+ " "
5350
+ ] }),
5351
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { display: "flex", flexDirection: "column", gridArea: "2/2/3/4", fontSize: "10px", gap: "4px", marginLeft: "5px" }, children: [
5352
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "label", { htmlFor: "", children: [
5353
+ "Requestor: ",
5354
+ requestorName
5355
+ ] }),
5356
+ " ",
5357
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { htmlFor: "", children: appNickname })
5358
+ ] }),
5359
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
5360
+ WavelengthStyledButton_default,
5361
+ {
5362
+ type: "default",
5363
+ styles: { backgroundColor: "rgba(143, 143, 143, 1)", marginTop: "5px", borderRadius: "5px", height: "22px", width: "44px", gridArea: "3/4/3/4", color: "white" },
5364
+ children: "clear"
5365
+ }
5366
+ )
5367
+ ]
5368
+ }
5369
+ );
5370
+ } else if (access === "Access Granted") {
5371
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
5372
+ "div",
5373
+ {
5374
+ "data-testid": dataTestId,
5375
+ style: {
5376
+ width: width2,
5377
+ height: height2,
5378
+ border: "1px solid rgba(0, 0, 0, 0.6)",
5379
+ borderRadius: "6px",
5380
+ position: "relative",
5381
+ padding: "8px 10px 2px 10px",
5382
+ display: "grid",
5383
+ gridTemplateColumns: "1fr 3fr 2fr",
5384
+ gridTemplateRows: "1fr 1fr 1fr",
5385
+ boxSizing: "border-box"
5386
+ },
5387
+ children: [
5388
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "8px", fontWeight: 400, position: "absolute", top: "5px", right: "12px" }, children: time }),
5389
+ /* @__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: [
5390
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Check2.default, { fontSize: "small", sx: { color: "rgba(36, 226, 32, 1)", width: "16px" } }),
5391
+ access
5392
+ ] }),
5393
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { gridArea: "2/1/3/2" }, children: [
5394
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, AppLogo_default, { name: appLogo, width: 22 }),
5395
+ " "
5396
+ ] }),
5397
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { display: "flex", flexDirection: "column", gridArea: "2/2/3/4", fontSize: "10px", marginLeft: "5px" }, children: [
5398
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontWeight: 700, fontSize: "10px" }, children: appNickname }),
5399
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { htmlFor: "", style: { marginTop: "5px" }, children: appAdmin }),
5400
+ " ",
5401
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { htmlFor: "", children: "Added you as a user" })
5402
+ ] }),
5403
+ /* @__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" })
5404
+ ]
5405
+ }
5406
+ );
5407
+ } else {
5408
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
5409
+ "div",
5410
+ {
5411
+ "data-testid": dataTestId,
5412
+ style: {
5413
+ width: width2,
5414
+ height: height2,
5415
+ border: "1px solid rgba(0, 0, 0, 0.6)",
5416
+ borderRadius: "6px",
5417
+ position: "relative",
5418
+ padding: "8px 10px 2px 10px",
5419
+ display: "grid",
5420
+ gridTemplateColumns: "1fr 3fr 2fr",
5421
+ gridTemplateRows: "1fr 1fr 1fr",
5422
+ boxSizing: "border-box"
5423
+ },
5424
+ children: [
5425
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "8px", fontWeight: 400, position: "absolute", top: "5px", right: "12px" }, children: time }),
5426
+ /* @__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: [
5427
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _NotInterested2.default, { fontSize: "small", sx: { color: "rgba(234, 30, 30, 1)", width: "16px" } }),
5428
+ access
5429
+ ] }),
5430
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { gridArea: "2/1/3/2" }, children: [
5431
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, AppLogo_default, { name: appLogo, width: 22 }),
5432
+ " "
5433
+ ] }),
5434
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { display: "flex", flexDirection: "column", gridArea: "2/2/3/4", fontSize: "10px", marginLeft: "5px" }, children: [
5435
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontWeight: 700, fontSize: "10px" }, children: appNickname }),
5436
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { htmlFor: "", style: { marginTop: "5px" }, children: appAdmin }),
5437
+ " ",
5438
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { htmlFor: "", children: "Denied your request" })
5439
+ ] }),
5440
+ /* @__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" })
5441
+ ]
5442
+ }
5443
+ );
5444
+ }
5445
+ }
5446
+
5447
+ // src/components/PageComponents/WavelengthAlert.tsx
5448
+ var _Close = require('@mui/icons-material/Close'); var _Close2 = _interopRequireDefault(_Close);
5449
+
5450
+ var _Notifications = require('@mui/icons-material/Notifications'); var _Notifications2 = _interopRequireDefault(_Notifications);
5451
+
5452
+ function WavelengthAlert({
5453
+ viewed,
5454
+ width: width2 = "320px",
5455
+ height: height2,
5456
+ backgroundColor: backgroundColor2 = "#FBFBFB",
5457
+ appName,
5458
+ alertType = "Access Requested",
5459
+ alertDescription = "Keenan Ray has requested to be added as a User to your App",
5460
+ datatestid,
5461
+ variant,
5462
+ timeStamp,
5463
+ url,
5464
+ initiator,
5465
+ id,
5466
+ onClose
5467
+ }) {
5468
+ const viewedStyles = viewed ? {
5469
+ backgroundColor: "#DFDCDC",
5470
+ border: "1px solid #A0A2A3",
5471
+ iconColor: "#A0A2A3"
5472
+ } : {
5473
+ backgroundColor: backgroundColor2,
5474
+ border: "1px solid rgba(2, 136, 209, 1)",
5475
+ iconColor: "rgba(2, 136, 209, 1)"
5476
+ };
5477
+ const baseContainerStyle = {
5478
+ width: width2,
5479
+ height: height2 || "fit-content",
5480
+ backgroundColor: viewedStyles.backgroundColor,
5481
+ fontFamily: "Roboto, sans-serif",
5482
+ border: viewedStyles.border,
5483
+ borderRadius: "4px",
5484
+ display: "flex",
5485
+ flexDirection: "row",
5486
+ boxSizing: "border-box",
5487
+ alignItems: "flex-start",
5488
+ padding: "12px 16px 10px 16px",
5489
+ color: "#1E4620",
5490
+ position: variant === "civilized" ? "relative" : void 0
5491
+ };
5492
+ const iconStyle = {
5493
+ width: "24px",
5494
+ padding: "0px",
5495
+ color: viewedStyles.iconColor
5496
+ };
5497
+ if (variant === "caveman") {
5498
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { role: "alert", id, "data-testid": datatestid, style: baseContainerStyle, children: [
5499
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Notifications2.default, { sx: iconStyle }),
5500
+ /* @__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: [
5501
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { style: { fontSize: "1rem", lineHeight: "150%", letterSpacing: "0.15px", fontWeight: 550 }, children: timeStamp }),
5502
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
5503
+ "div",
5504
+ {
5505
+ style: {
5506
+ fontSize: ".875rem",
5507
+ fontWeight: 400,
5508
+ lineHeight: "143%",
5509
+ display: "-webkit-box",
5510
+ WebkitLineClamp: 2,
5511
+ WebkitBoxOrient: "vertical",
5512
+ overflow: "hidden",
5513
+ textOverflow: "ellipsis"
5514
+ },
5515
+ children: alertType
5516
+ }
5517
+ )
5518
+ ] }),
5519
+ 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, {}) })
5520
+ ] });
5521
+ } else if (variant === "basic") {
5522
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { role: "alert", id, "data-testid": datatestid, style: baseContainerStyle, children: [
5523
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Notifications2.default, { sx: iconStyle }),
5524
+ /* @__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: [
5525
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { style: { fontSize: "14px", lineHeight: "150%", letterSpacing: "0.15px", fontWeight: 500 }, children: timeStamp }),
5526
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "16px", fontWeight: 550, lineHeight: "24px" }, children: alertType }),
5527
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { fontSize: "14px", lineHeight: "20px", fontWeight: 400 }, children: [
5528
+ "App: ",
5529
+ appName
5530
+ ] })
5531
+ ] }),
5532
+ 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, {}) })
5533
+ ] });
5534
+ } else {
5535
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { role: "alert", id, "data-testid": datatestid, style: baseContainerStyle, children: [
5536
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Notifications2.default, { sx: iconStyle }),
5537
+ /* @__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: [
5538
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { style: { fontSize: "16px", lineHeight: "24px", letterSpacing: "0.15px", fontWeight: 550 }, children: alertType }),
5539
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "14px", fontWeight: 400, lineHeight: "20px", letterSpacing: "0.25px", width: "200px" }, children: alertDescription }),
5540
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { fontSize: "14px", lineHeight: "20px", fontWeight: 400 }, children: [
5541
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "span", { style: { fontWeight: 550 }, children: "Initiator: " }),
5542
+ " ",
5543
+ initiator
5544
+ ] })
5545
+ ] }),
5546
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
5547
+ "div",
5548
+ {
5549
+ style: {
5550
+ textAlign: "center",
5551
+ display: "flex",
5552
+ flexDirection: "column",
5553
+ position: "absolute",
5554
+ right: "15px",
5555
+ bottom: "12px"
5556
+ },
5557
+ className: "icon-btn-container",
5558
+ children: [
5559
+ /* @__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" }) }) }) }),
5560
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "11px" }, children: "Dismiss" })
5561
+ ]
5562
+ }
5563
+ ),
5564
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { top: "6px", right: "15px", position: "absolute", fontSize: "11px", color: "#797979" }, children: timeStamp })
5565
+ ] });
5566
+ }
5567
+ }
5568
+
5249
5569
  // src/components/footers/WavelengthFooter/WavelengthFooter.tsx
5250
5570
 
5251
5571
 
@@ -5477,7 +5797,7 @@ function WavelengthConfirmationModal(props) {
5477
5797
 
5478
5798
  // src/components/modals/WavelengthContentModal.tsx
5479
5799
 
5480
- var _Close = require('@mui/icons-material/Close'); var _Close2 = _interopRequireDefault(_Close);
5800
+
5481
5801
 
5482
5802
  function WavelengthContentModal(props) {
5483
5803
  const { show, setShow, handleContentModalOnConfirmProp } = props;
@@ -6964,7 +7284,10 @@ var SampleComponent2 = ({
6964
7284
 
6965
7285
 
6966
7286
 
6967
- 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.SampleComponent = SampleComponent2; 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;
7287
+
7288
+
7289
+
7290
+ 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.SampleComponent = SampleComponent2; 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;
6968
7291
  /*! Bundled license information:
6969
7292
 
6970
7293
  react-is/cjs/react-is.production.min.js: