@wavelengthusaf/components 2.10.0 → 2.10.2

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,17 @@ npm install @wavelengthusaf/components
14
14
 
15
15
  ## Release Notes
16
16
 
17
+ ### 2.10.2
18
+
19
+ - 5/14/2025
20
+ - Updated Wavelength Alert
21
+ - Updated Textfield to include inputRef as a prop
22
+
23
+ ### 2.10.1
24
+
25
+ - 5/13/2025
26
+ - Small fix to exports
27
+
17
28
  ### 2.10.0
18
29
 
19
30
  - 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,320 @@ 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
+ id,
5465
+ onClose
5466
+ }) {
5467
+ const viewedStyles = viewed ? {
5468
+ backgroundColor: "#DFDCDC",
5469
+ border: "1px solid #A0A2A3",
5470
+ iconColor: "#A0A2A3"
5471
+ } : {
5472
+ backgroundColor: backgroundColor2,
5473
+ border: "1px solid rgba(2, 136, 209, 1)",
5474
+ iconColor: "rgba(2, 136, 209, 1)"
5475
+ };
5476
+ const baseContainerStyle = {
5477
+ width: width2,
5478
+ height: height2 || "fit-content",
5479
+ backgroundColor: viewedStyles.backgroundColor,
5480
+ fontFamily: "Roboto, sans-serif",
5481
+ border: viewedStyles.border,
5482
+ borderRadius: "4px",
5483
+ display: "flex",
5484
+ flexDirection: "row",
5485
+ boxSizing: "border-box",
5486
+ alignItems: "flex-start",
5487
+ padding: "12px 16px 10px 16px",
5488
+ color: "#1E4620",
5489
+ position: variant === "civilized" ? "relative" : void 0
5490
+ };
5491
+ const iconStyle = {
5492
+ width: "24px",
5493
+ padding: "0px",
5494
+ color: viewedStyles.iconColor
5495
+ };
5496
+ if (variant === "caveman") {
5497
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { role: "alert", id, "data-testid": datatestid, style: baseContainerStyle, children: [
5498
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Notifications2.default, { sx: iconStyle }),
5499
+ /* @__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: [
5500
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { style: { fontSize: "1rem", lineHeight: "150%", letterSpacing: "0.15px", fontWeight: 550 }, children: timeStamp }),
5501
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
5502
+ "div",
5503
+ {
5504
+ style: {
5505
+ fontSize: ".875rem",
5506
+ fontWeight: 400,
5507
+ lineHeight: "143%",
5508
+ display: "-webkit-box",
5509
+ WebkitLineClamp: 2,
5510
+ WebkitBoxOrient: "vertical",
5511
+ overflow: "hidden",
5512
+ textOverflow: "ellipsis"
5513
+ },
5514
+ children: alertType
5515
+ }
5516
+ )
5517
+ ] }),
5518
+ 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, {}) })
5519
+ ] });
5520
+ } else if (variant === "basic") {
5521
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { role: "alert", id, "data-testid": datatestid, style: baseContainerStyle, children: [
5522
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Notifications2.default, { sx: iconStyle }),
5523
+ /* @__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: [
5524
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { style: { fontSize: "14px", lineHeight: "150%", letterSpacing: "0.15px", fontWeight: 500 }, children: timeStamp }),
5525
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "16px", fontWeight: 550, lineHeight: "24px" }, children: alertType }),
5526
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { fontSize: "14px", lineHeight: "20px", fontWeight: 400 }, children: [
5527
+ "App: ",
5528
+ appName
5529
+ ] })
5530
+ ] }),
5531
+ 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, {}) })
5532
+ ] });
5533
+ } else {
5534
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { role: "alert", id, "data-testid": datatestid, style: baseContainerStyle, children: [
5535
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Notifications2.default, { sx: iconStyle }),
5536
+ /* @__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: [
5537
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { style: { fontSize: "16px", lineHeight: "24px", letterSpacing: "0.15px", fontWeight: 550 }, children: alertType }),
5538
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "14px", fontWeight: 400, lineHeight: "20px", letterSpacing: "0.25px", width: "200px" }, children: appName }),
5539
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "14px", lineHeight: "20px", fontWeight: 400 }, children: alertDescription })
5540
+ ] }),
5541
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
5542
+ "div",
5543
+ {
5544
+ style: {
5545
+ textAlign: "center",
5546
+ display: "flex",
5547
+ flexDirection: "column",
5548
+ position: "absolute",
5549
+ right: "15px",
5550
+ bottom: "12px"
5551
+ },
5552
+ className: "icon-btn-container",
5553
+ children: [
5554
+ /* @__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" }) }) }) }),
5555
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "11px" }, children: "Dismiss" })
5556
+ ]
5557
+ }
5558
+ ),
5559
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { top: "6px", right: "15px", position: "absolute", fontSize: "11px", color: "#797979" }, children: timeStamp })
5560
+ ] });
5561
+ }
5562
+ }
5563
+
5249
5564
  // src/components/footers/WavelengthFooter/WavelengthFooter.tsx
5250
5565
 
5251
5566
 
@@ -5477,7 +5792,7 @@ function WavelengthConfirmationModal(props) {
5477
5792
 
5478
5793
  // src/components/modals/WavelengthContentModal.tsx
5479
5794
 
5480
- var _Close = require('@mui/icons-material/Close'); var _Close2 = _interopRequireDefault(_Close);
5795
+
5481
5796
 
5482
5797
  function WavelengthContentModal(props) {
5483
5798
  const { show, setShow, handleContentModalOnConfirmProp } = props;
@@ -6470,6 +6785,8 @@ function WavelengthTextField(props) {
6470
6785
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
6471
6786
  _TextField2.default,
6472
6787
  {
6788
+ value: props.value,
6789
+ inputRef: props.inputRef,
6473
6790
  type: props.type,
6474
6791
  required: props.required,
6475
6792
  label: props.label,
@@ -6512,6 +6829,8 @@ function WavelengthTextField(props) {
6512
6829
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
6513
6830
  StandardTextField,
6514
6831
  {
6832
+ value: props.value,
6833
+ ref: props.inputRef,
6515
6834
  type: props.type,
6516
6835
  id: "custom-input",
6517
6836
  placeholder: props.placeholder,
@@ -6964,7 +7283,10 @@ var SampleComponent2 = ({
6964
7283
 
6965
7284
 
6966
7285
 
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;
7286
+
7287
+
7288
+
7289
+ 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
7290
  /*! Bundled license information:
6969
7291
 
6970
7292
  react-is/cjs/react-is.production.min.js: