@wavelengthusaf/components 2.9.1 → 2.9.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,15 @@ npm install @wavelengthusaf/components
14
14
 
15
15
  ## Release Notes
16
16
 
17
+ ### 2.9.2
18
+ - 5/02/2025
19
+ - Minor fix to exports
20
+
21
+ ### 2.9.1
22
+ - 5/02/2025
23
+ - WavelengthButton updated; new props
24
+ - Minor bug fixes
25
+
17
26
  ### 2.9.0
18
27
  - 4/25/2025
19
28
  - New Alert Component
@@ -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,295 @@ 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 = "96px",
5417
+ backgroundColor: backgroundColor2 = "rgba(229, 246, 253, 1)",
5418
+ alertHeader = "Access Requested",
5419
+ alertDescription = "Keenan Ray has requested to be added as a User to your App",
5420
+ datatestid,
5421
+ id,
5422
+ onClose
5423
+ }) {
5424
+ if (!viewed) {
5425
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
5426
+ "div",
5427
+ {
5428
+ role: "alert",
5429
+ id,
5430
+ "data-testid": datatestid,
5431
+ style: {
5432
+ width: width2,
5433
+ height: height2,
5434
+ backgroundColor: backgroundColor2,
5435
+ fontFamily: "Roboto, sans-serif",
5436
+ border: "1px solid rgba(2, 136, 209, 1)",
5437
+ borderRadius: "4px",
5438
+ display: "flex",
5439
+ flexDirection: "row",
5440
+ boxSizing: "border-box",
5441
+ alignItems: "flex-start",
5442
+ padding: "12px 16px 10px 16px"
5443
+ },
5444
+ children: [
5445
+ " ",
5446
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Notifications2.default, { sx: { width: "24px", padding: "0px", color: "rgba(2, 136, 209, 1)" } }),
5447
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { display: "flex", flexDirection: "column", gap: "4px", width: "250px", marginLeft: "12px" }, children: [
5448
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { htmlFor: "", style: { fontSize: "1rem", lineHeight: "150%", letterSpacing: "0.15px", fontWeight: 500 }, children: alertHeader }),
5449
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
5450
+ "div",
5451
+ {
5452
+ style: { fontSize: ".875rem", fontWeight: 400, lineHeight: "143%", display: "-webkit-box", WebkitLineClamp: 2, WebkitBoxOrient: "vertical", overflow: "hidden", textOverflow: "ellipsis" },
5453
+ children: alertDescription
5454
+ }
5455
+ )
5456
+ ] }),
5457
+ 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, {}) })
5458
+ ]
5459
+ }
5460
+ );
5461
+ } else {
5462
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0,
5463
+ "div",
5464
+ {
5465
+ role: "alert",
5466
+ id,
5467
+ "data-testid": datatestid,
5468
+ style: {
5469
+ width: width2,
5470
+ height: height2,
5471
+ backgroundColor: backgroundColor2 = "#DFDCDC",
5472
+ fontFamily: "Roboto, sans-serif",
5473
+ border: "1px solid #A0A2A3",
5474
+ borderRadius: "4px",
5475
+ display: "flex",
5476
+ flexDirection: "row",
5477
+ boxSizing: "border-box",
5478
+ alignItems: "flex-start",
5479
+ padding: "12px 16px 10px 16px"
5480
+ },
5481
+ children: [
5482
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Notifications2.default, { sx: { width: "24px", padding: "0px", color: "#A0A2A3" } }),
5483
+ /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { display: "flex", flexDirection: "column", gap: "4px", width: "250px", marginLeft: "12px" }, children: [
5484
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "label", { htmlFor: "", style: { fontSize: "1rem", lineHeight: "150%", letterSpacing: "0.15px", fontWeight: 500 }, children: alertHeader }),
5485
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
5486
+ "div",
5487
+ {
5488
+ style: { fontSize: ".875rem", fontWeight: 400, lineHeight: "143%", display: "-webkit-box", WebkitLineClamp: 2, WebkitBoxOrient: "vertical", overflow: "hidden", textOverflow: "ellipsis" },
5489
+ children: alertDescription
5490
+ }
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
+ }
5496
+ );
5497
+ }
5498
+ }
5499
+
5210
5500
  // src/components/footers/WavelengthFooter/WavelengthFooter.tsx
5211
5501
 
5212
5502
 
@@ -5438,7 +5728,7 @@ function WavelengthConfirmationModal(props) {
5438
5728
 
5439
5729
  // src/components/modals/WavelengthContentModal.tsx
5440
5730
 
5441
- var _Close = require('@mui/icons-material/Close'); var _Close2 = _interopRequireDefault(_Close);
5731
+
5442
5732
 
5443
5733
  function WavelengthContentModal(props) {
5444
5734
  const { show, setShow, handleContentModalOnConfirmProp } = props;
@@ -6904,7 +7194,10 @@ var WavelengthDataTable = ({ data, columns, itemsPerPage, totalPages }) => {
6904
7194
 
6905
7195
 
6906
7196
 
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;
7197
+
7198
+
7199
+
7200
+ 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
7201
  /*! Bundled license information:
6909
7202
 
6910
7203
  react-is/cjs/react-is.production.min.js: