@wavelengthusaf/components 2.10.2 → 3.0.0

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,25 @@ npm install @wavelengthusaf/components
14
14
 
15
15
  ## Release Notes
16
16
 
17
+ ### 3.0.0
18
+
19
+ - 5/16/2025
20
+ - Renamed several components to include the word `Wavelength` in front of them. The following components have been renamed accordingly:
21
+
22
+ <pre>
23
+ sliderCarousel --------> WavelengthSliderCarousel
24
+ GreenEllipse ----------> DELETED
25
+ ManyPlanes ------------> WavelengthManyPlanes
26
+ AppLogo ---------------> WavelengthAppLogo
27
+ DefaultIcon -----------> WavelengthDefaultIcon
28
+ NotAvailablePage ------> WavelengthNotAvailablePage
29
+ ButtonPagination ------> WavelengthButtonPagination
30
+ VariationPagination ---> WavelengthVariationPagination
31
+ WavelengthPagination --> WavelengthDefaultPagination
32
+ SearchTextField -------> WavelengthSearchTextField
33
+ TestSnackbar ----------> WavelengthTestSnackbar
34
+ </pre>
35
+
17
36
  ### 2.10.2
18
37
 
19
38
  - 5/14/2025
@@ -4431,13 +4431,13 @@ function WavelengthSearch({
4431
4431
  return void 0;
4432
4432
  }
4433
4433
 
4434
- // src/components/search/SearchTextField.tsx
4434
+ // src/components/search/WavelengthSearchTextField.tsx
4435
4435
 
4436
4436
 
4437
4437
 
4438
- function SearchTextField() {
4438
+ function WavelengthSearchTextField() {
4439
4439
  const palette2 = getPalette();
4440
- const SearchTextFields = _styled2.default.call(void 0, (0, _TextField2.default))(() => ({
4440
+ const WavelengthSearchTextField2 = _styled2.default.call(void 0, (0, _TextField2.default))(() => ({
4441
4441
  "&.MuiTextField-root": {
4442
4442
  "& label.Mui-focused": {
4443
4443
  color: `${palette2.primary}`
@@ -4455,12 +4455,12 @@ function SearchTextField() {
4455
4455
  }
4456
4456
  }
4457
4457
  }));
4458
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SearchTextFields, {});
4458
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, WavelengthSearchTextField2, {});
4459
4459
  }
4460
4460
 
4461
- // src/components/logos/applogo/AppLogo.tsx
4461
+ // src/components/logos/applogo/WavelengthAppLogo.tsx
4462
4462
 
4463
- function AppLogo({ width: width2, height: height2, name = "", grayscale, id }) {
4463
+ function WavelengthAppLogo({ width: width2, height: height2, name = "", grayscale, id }) {
4464
4464
  let logo;
4465
4465
  {
4466
4466
  }
@@ -4904,17 +4904,17 @@ function AppLogo({ width: width2, height: height2, name = "", grayscale, id }) {
4904
4904
  }
4905
4905
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { children: logo });
4906
4906
  }
4907
- var AppLogo_default = AppLogo;
4907
+ var WavelengthAppLogo_default = WavelengthAppLogo;
4908
4908
 
4909
- // src/components/PageComponents/NotAvailablePage.tsx
4909
+ // src/components/PageComponents/WavelengthNotAvailablePage.tsx
4910
4910
 
4911
- function NotAvailablePage({ appLogoName, errorMessage, backgroundColor: backgroundColor2, buttonText, redirectLink, buttonColorOne, buttonColorTwo, id }) {
4911
+ function WavelengthNotAvailablePage({ WavelengthAppLogoName, errorMessage, backgroundColor: backgroundColor2, buttonText, redirectLink, buttonColorOne, buttonColorTwo, id }) {
4912
4912
  backgroundColor2 = backgroundColor2 ? backgroundColor2 : "gray";
4913
- appLogoName = appLogoName ? appLogoName : "563rdpatch";
4913
+ WavelengthAppLogoName = WavelengthAppLogoName ? WavelengthAppLogoName : "563rdpatch";
4914
4914
  buttonColorOne = buttonColorOne ? buttonColorOne : "white";
4915
4915
  buttonColorTwo = buttonColorTwo ? buttonColorTwo : "#0D5288";
4916
4916
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _jsxruntime.Fragment, { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { id, style: { display: "flex", backgroundColor: backgroundColor2, flexDirection: "column", alignItems: "center", height: "100%", justifyContent: "center", gap: 55, padding: "8%" }, children: [
4917
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, AppLogo_default, { name: appLogoName, width: 300, height: 200, grayscale: true }),
4917
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, WavelengthAppLogo_default, { name: WavelengthAppLogoName, width: 300, height: 200, grayscale: true }),
4918
4918
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { display: "flex", flexDirection: "column", alignItems: "center" }, children: [
4919
4919
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "p", { style: { textAlign: "center", marginBottom: 45, fontSize: 40, color: "white" }, children: `${errorMessage}` }),
4920
4920
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, WavelengthButton2, { "data-testid": "not-available-button", variant: "contained", colorOne: buttonColorOne, colorTwo: buttonColorTwo, href: redirectLink, children: buttonText })
@@ -5344,10 +5344,7 @@ function WavelengthAccessAlert({
5344
5344
  children: [
5345
5345
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { fontSize: "8px", fontWeight: 400, position: "absolute", top: "5px", right: "12px" }, children: time }),
5346
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
- ] }),
5347
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { style: { gridArea: "2/1/3/2" }, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, WavelengthAppLogo_default, { name: appLogo, width: 22 }) }),
5351
5348
  /* @__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
5349
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "label", { htmlFor: "", children: [
5353
5350
  "Requestor: ",
@@ -5391,7 +5388,8 @@ function WavelengthAccessAlert({
5391
5388
  access
5392
5389
  ] }),
5393
5390
  /* @__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 }),
5391
+ " ",
5392
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, WavelengthAppLogo_default, { name: appLogo, width: 22 }),
5395
5393
  " "
5396
5394
  ] }),
5397
5395
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { display: "flex", flexDirection: "column", gridArea: "2/2/3/4", fontSize: "10px", marginLeft: "5px" }, children: [
@@ -5428,7 +5426,7 @@ function WavelengthAccessAlert({
5428
5426
  access
5429
5427
  ] }),
5430
5428
  /* @__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 }),
5429
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, WavelengthAppLogo_default, { name: appLogo, width: 22 }),
5432
5430
  " "
5433
5431
  ] }),
5434
5432
  /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "div", { style: { display: "flex", flexDirection: "column", gridArea: "2/2/3/4", fontSize: "10px", marginLeft: "5px" }, children: [
@@ -5646,10 +5644,42 @@ function WavelengthBanner2({ headerText = "CLASSIFICATION//CONTROL", headerColor
5646
5644
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "wavelength-banner", { ref });
5647
5645
  }
5648
5646
 
5649
- // src/components/CSFD/ManyPlanes.tsx
5647
+ // src/components/logos/default/WavelengthDefaultIcon.tsx
5650
5648
 
5649
+ function WavelengthDefaultIcon({ width: width2 = "180", height: height2 = 140 }) {
5650
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "svg", { width: width2, height: height2, viewBox: "0 0 185 140", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
5651
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "rect", { width: width2, height: height2, fill: "#7A7A7A" }),
5652
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
5653
+ "path",
5654
+ {
5655
+ d: "M63.5 14.618L77.2811 57.0319L77.3934 57.3774H77.7566H122.353L86.2738 83.5906L85.9799 83.8042L86.0922 84.1497L99.8733 126.564L63.7939 100.35L63.5 100.137L63.2061 100.35L27.1267 126.564L40.9078 84.1497L41.0201 83.8042L40.7262 83.5906L4.64675 57.3774H49.2434H49.6066L49.7189 57.0319L63.5 14.618Z",
5656
+ fill: "url(#paint0_linear_3571_2148)",
5657
+ fillOpacity: ".0.5",
5658
+ stroke: "#6B6B6B"
5659
+ }
5660
+ ),
5661
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "rect", { x: "102", y: "16", width: "70", height: "115", fill: "#4A4A4A" }),
5662
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "line", { x1: "112", y1: "24.5", x2: "142", y2: "24.5", stroke: "#D9D9D9", strokeWidth: "3" }),
5663
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "line", { x1: "112", y1: "41.5", x2: "160", y2: "41.5", stroke: "#D9D9D9", strokeWidth: "3" }),
5664
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "line", { x1: "112", y1: "51.5", x2: "160", y2: "51.5", stroke: "#D9D9D9", strokeWidth: "3" }),
5665
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "line", { x1: "112", y1: "61.5", x2: "160", y2: "61.5", stroke: "#D9D9D9", strokeWidth: "3" }),
5666
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "line", { x1: "112", y1: "71.5", x2: "160", y2: "71.5", stroke: "#D9D9D9", strokeWidth: "3" }),
5667
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "line", { x1: "112", y1: "81.5", x2: "160", y2: "81.5", stroke: "#D9D9D9", strokeWidth: "3" }),
5668
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "circle", { cx: "48", cy: "44", r: "28", fill: "#D9D9D9", fillOpacity: "0.5" }),
5669
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "path", { d: "M76 44.2478C76 59.5749 63.4645 72 48.0011 72C48.0011 72 49 19.5 49 16C49 16 20 16 20 44.2478C35.4634 44.2478 76 44.2478 76 44.2478Z", fill: "#D9D9D9", fillOpacity: "0.5" }),
5670
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "rect", { x: "20", y: "83", width: "56", height: "15", rx: "4", fill: "#D9D9D9" }),
5671
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "rect", { x: "20", y: "107", width: "56", height: "15", rx: "4", fill: "#ABABAB" }),
5672
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "defs", { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "linearGradient", { id: "paint0_linear_3571_2148", x1: "63.5", y1: "13", x2: "63.5", y2: "140", gradientUnits: "userSpaceOnUse", children: [
5673
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "stop", { stopColor: "#A1A1A1" }),
5674
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "stop", { offset: "1", stopColor: "#606060" })
5675
+ ] }) })
5676
+ ] }) });
5677
+ }
5678
+
5679
+ // src/components/CSFD/WavelengthManyPlanes.tsx
5651
5680
 
5652
- function ManyPlanesComponent({ numberOfPlanes = 5, trailDir = "left", color: color2, opacity = 1, gradient = false }) {
5681
+
5682
+ function WavelengthManyPlanes({ numberOfPlanes = 5, trailDir = "left", color: color2, opacity = 1, gradient = false }) {
5653
5683
  let direction = "row-reverse";
5654
5684
  let flippy = "";
5655
5685
  const palette2 = getPalette();
@@ -5688,38 +5718,6 @@ function ManyPlanesComponent({ numberOfPlanes = 5, trailDir = "left", color: col
5688
5718
  return PlaneGridWrapper(numberOfPlanes, opacity);
5689
5719
  }
5690
5720
 
5691
- // src/components/logos/default/DefaultDisplay.tsx
5692
-
5693
- function DefaultIcon({ width: width2 = "180", height: height2 = 140 }) {
5694
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "div", { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "svg", { width: width2, height: height2, viewBox: "0 0 185 140", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
5695
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "rect", { width: width2, height: height2, fill: "#7A7A7A" }),
5696
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
5697
- "path",
5698
- {
5699
- d: "M63.5 14.618L77.2811 57.0319L77.3934 57.3774H77.7566H122.353L86.2738 83.5906L85.9799 83.8042L86.0922 84.1497L99.8733 126.564L63.7939 100.35L63.5 100.137L63.2061 100.35L27.1267 126.564L40.9078 84.1497L41.0201 83.8042L40.7262 83.5906L4.64675 57.3774H49.2434H49.6066L49.7189 57.0319L63.5 14.618Z",
5700
- fill: "url(#paint0_linear_3571_2148)",
5701
- fillOpacity: ".0.5",
5702
- stroke: "#6B6B6B"
5703
- }
5704
- ),
5705
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "rect", { x: "102", y: "16", width: "70", height: "115", fill: "#4A4A4A" }),
5706
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "line", { x1: "112", y1: "24.5", x2: "142", y2: "24.5", stroke: "#D9D9D9", strokeWidth: "3" }),
5707
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "line", { x1: "112", y1: "41.5", x2: "160", y2: "41.5", stroke: "#D9D9D9", strokeWidth: "3" }),
5708
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "line", { x1: "112", y1: "51.5", x2: "160", y2: "51.5", stroke: "#D9D9D9", strokeWidth: "3" }),
5709
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "line", { x1: "112", y1: "61.5", x2: "160", y2: "61.5", stroke: "#D9D9D9", strokeWidth: "3" }),
5710
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "line", { x1: "112", y1: "71.5", x2: "160", y2: "71.5", stroke: "#D9D9D9", strokeWidth: "3" }),
5711
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "line", { x1: "112", y1: "81.5", x2: "160", y2: "81.5", stroke: "#D9D9D9", strokeWidth: "3" }),
5712
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "circle", { cx: "48", cy: "44", r: "28", fill: "#D9D9D9", fillOpacity: "0.5" }),
5713
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "path", { d: "M76 44.2478C76 59.5749 63.4645 72 48.0011 72C48.0011 72 49 19.5 49 16C49 16 20 16 20 44.2478C35.4634 44.2478 76 44.2478 76 44.2478Z", fill: "#D9D9D9", fillOpacity: "0.5" }),
5714
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "rect", { x: "20", y: "83", width: "56", height: "15", rx: "4", fill: "#D9D9D9" }),
5715
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "rect", { x: "20", y: "107", width: "56", height: "15", rx: "4", fill: "#ABABAB" }),
5716
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "defs", { children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, "linearGradient", { id: "paint0_linear_3571_2148", x1: "63.5", y1: "13", x2: "63.5", y2: "140", gradientUnits: "userSpaceOnUse", children: [
5717
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "stop", { stopColor: "#A1A1A1" }),
5718
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "stop", { offset: "1", stopColor: "#606060" })
5719
- ] }) })
5720
- ] }) });
5721
- }
5722
-
5723
5721
  // src/components/separators/WavelengthPlaneTrail/WavelengthPlaneTrail.tsx
5724
5722
  var _Divider = require('@mui/material/Divider'); var _Divider2 = _interopRequireDefault(_Divider);
5725
5723
 
@@ -6177,7 +6175,7 @@ function WavelengthStandardSnackbar({ type, show, icon, horryAlign, vertyAlign,
6177
6175
  );
6178
6176
  }
6179
6177
 
6180
- // src/components/snackbars/TestSnackbar.tsx
6178
+ // src/components/snackbars/WavelengthTestSnackbar.tsx
6181
6179
 
6182
6180
 
6183
6181
 
@@ -6199,7 +6197,7 @@ var useOutsideClick = (callback) => {
6199
6197
  }, [callback]);
6200
6198
  return ref;
6201
6199
  };
6202
- function TestSnackbar({ isPopUpOpen, toggleOpen, type, message, customVertyAlign, width: width2, img }) {
6200
+ function WavelengthTestSnackbar({ isPopUpOpen, toggleOpen, type, message, customVertyAlign, width: width2, img }) {
6203
6201
  const ref = useOutsideClick(() => {
6204
6202
  toggleOpen(false);
6205
6203
  });
@@ -6335,7 +6333,7 @@ var DefaultCarousel = ({ items, buttonSize, imageHeight, imageWidth, cardHeight,
6335
6333
  ) }) });
6336
6334
  };
6337
6335
 
6338
- // src/components/carousels/sliderCarousel.tsx
6336
+ // src/components/carousels/WavelengthSliderCarousel.tsx
6339
6337
 
6340
6338
 
6341
6339
 
@@ -6418,10 +6416,10 @@ var SliderCardCarousel = ({ items, cardHeight, cardWidth, contHeight, contWidth
6418
6416
  ) }) });
6419
6417
  };
6420
6418
 
6421
- // src/components/pagination/WavelengthPagination.tsx
6419
+ // src/components/pagination/WavelengthDefaultPagination.tsx
6422
6420
 
6423
6421
 
6424
- // src/components/pagination/ButtonPagination.tsx
6422
+ // src/components/pagination/WavelengthButtonPagination.tsx
6425
6423
 
6426
6424
 
6427
6425
  var _ArrowBackIosNew = require('@mui/icons-material/ArrowBackIosNew'); var _ArrowBackIosNew2 = _interopRequireDefault(_ArrowBackIosNew);
@@ -6440,7 +6438,7 @@ var MyDroplistItems = _styledcomponents2.default.call(void 0, "li")`
6440
6438
  background-color: lightgray;
6441
6439
  }
6442
6440
  `;
6443
- function ButtonPagination({ totalPages, current, handleChangePage, itemList, firstEllipseList, secondEllipseList }) {
6441
+ function WavelengthButtonPagination({ totalPages, current, handleChangePage, itemList, firstEllipseList, secondEllipseList }) {
6444
6442
  const [isOpen, setIsOpen] = _react.useState.call(void 0, false);
6445
6443
  const [isSecOpen, setIsSecOpen] = _react.useState.call(void 0, false);
6446
6444
  const toggleDropdown = (index) => {
@@ -6530,16 +6528,16 @@ function ButtonPagination({ totalPages, current, handleChangePage, itemList, fir
6530
6528
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Button2.default, { onClick: () => handleChangePage(current + 1), disabled: current === totalPages, sx: WLButtonPagStyle, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _ArrowForwardIos2.default, {}) })
6531
6529
  ] });
6532
6530
  }
6533
- var ButtonPagination_default = ButtonPagination;
6531
+ var WavelengthButtonPagination_default = WavelengthButtonPagination;
6534
6532
 
6535
- // src/components/pagination/VariationPagination.tsx
6533
+ // src/components/pagination/WavelengthVariationPagination.tsx
6536
6534
 
6537
6535
 
6538
6536
 
6539
6537
 
6540
6538
 
6541
6539
 
6542
- function VariationPagination({ totalPages, current, variant, handleChangePage, itemList, firstEllipseList, secondEllipseList }) {
6540
+ function WavelengthVariationPagination({ totalPages, current, variant, handleChangePage, itemList, firstEllipseList, secondEllipseList }) {
6543
6541
  const [isOpen, setIsOpen] = _react.useState.call(void 0, false);
6544
6542
  const [isSecOpen, setIsSecOpen] = _react.useState.call(void 0, false);
6545
6543
  const MyDroplistItems2 = _styledcomponents2.default.call(void 0, "li")`
@@ -6621,9 +6619,9 @@ function VariationPagination({ totalPages, current, variant, handleChangePage, i
6621
6619
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _Button2.default, { onClick: () => handleChangePage(current + 1), disabled: current === totalPages, variant, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _ArrowForwardIos2.default, {}) })
6622
6620
  ] });
6623
6621
  }
6624
- var VariationPagination_default = VariationPagination;
6622
+ var WavelengthVariationPagination_default = WavelengthVariationPagination;
6625
6623
 
6626
- // src/components/pagination/WavelengthPagination.tsx
6624
+ // src/components/pagination/WavelengthDefaultPagination.tsx
6627
6625
 
6628
6626
  var range = (start, end) => {
6629
6627
  const length = end - start + 1;
@@ -6662,10 +6660,20 @@ function DefaultPagination({ totalPages, currentPageNumber, siblingCount = 1, bo
6662
6660
  }
6663
6661
  };
6664
6662
  if (style3 === "circular") {
6665
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ButtonPagination_default, { totalPages, current, handleChangePage, itemList, firstEllipseList, secondEllipseList });
6663
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
6664
+ WavelengthButtonPagination_default,
6665
+ {
6666
+ totalPages,
6667
+ current,
6668
+ handleChangePage,
6669
+ itemList,
6670
+ firstEllipseList,
6671
+ secondEllipseList
6672
+ }
6673
+ );
6666
6674
  } else if (style3 === "text") {
6667
6675
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
6668
- VariationPagination_default,
6676
+ WavelengthVariationPagination_default,
6669
6677
  {
6670
6678
  totalPages,
6671
6679
  current,
@@ -6678,7 +6686,7 @@ function DefaultPagination({ totalPages, currentPageNumber, siblingCount = 1, bo
6678
6686
  );
6679
6687
  } else if (style3 === "outlined") {
6680
6688
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
6681
- VariationPagination_default,
6689
+ WavelengthVariationPagination_default,
6682
6690
  {
6683
6691
  totalPages,
6684
6692
  current,
@@ -6691,7 +6699,7 @@ function DefaultPagination({ totalPages, currentPageNumber, siblingCount = 1, bo
6691
6699
  );
6692
6700
  } else if (style3 === "contained") {
6693
6701
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
6694
- VariationPagination_default,
6702
+ WavelengthVariationPagination_default,
6695
6703
  {
6696
6704
  totalPages,
6697
6705
  current,
@@ -6704,7 +6712,7 @@ function DefaultPagination({ totalPages, currentPageNumber, siblingCount = 1, bo
6704
6712
  );
6705
6713
  } else {
6706
6714
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
6707
- VariationPagination_default,
6715
+ WavelengthVariationPagination_default,
6708
6716
  {
6709
6717
  totalPages,
6710
6718
  current,
@@ -6716,7 +6724,7 @@ function DefaultPagination({ totalPages, currentPageNumber, siblingCount = 1, bo
6716
6724
  );
6717
6725
  }
6718
6726
  }
6719
- var WavelengthPagination_default = DefaultPagination;
6727
+ var WavelengthDefaultPagination_default = DefaultPagination;
6720
6728
 
6721
6729
  // src/components/TextField/WavelengthTextField.tsx
6722
6730
 
@@ -7211,7 +7219,7 @@ var WavelengthDataTable = ({ data, columns, itemsPerPage, totalPages }) => {
7211
7219
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "thead", { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "tr", { children: headers }) }),
7212
7220
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "tbody", { children: rows })
7213
7221
  ] }) }),
7214
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, StyledNavBoxDiv, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, WavelengthPagination_default, { totalPages, currentPageNumber: currentPage, onPageChange: setCurrentPage, style: "circular" }) })
7222
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, StyledNavBoxDiv, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, WavelengthDefaultPagination_default, { totalPages, currentPageNumber: currentPage, onPageChange: setCurrentPage, style: "circular" }) })
7215
7223
  ] });
7216
7224
  };
7217
7225
 
@@ -7286,7 +7294,7 @@ var SampleComponent2 = ({
7286
7294
 
7287
7295
 
7288
7296
 
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;
7297
+ exports.ButtonIcon = ButtonIcon; exports.ButtonMenu = ButtonMenu; exports.DefaultCarousel = DefaultCarousel; exports.DefaultPagination = DefaultPagination; exports.SampleComponent = SampleComponent2; exports.SliderCardCarousel = SliderCardCarousel; exports.WavelengthAccessAlert = WavelengthAccessAlert; exports.WavelengthAlert = WavelengthAlert; exports.WavelengthAppLogo = WavelengthAppLogo; 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.WavelengthDefaultIcon = WavelengthDefaultIcon; exports.WavelengthDragAndDrop = WavelengthDragAndDrop; exports.WavelengthDropdown = WavelengthDropdown; exports.WavelengthDropdownButton = WavelengthDropdownButton; exports.WavelengthExampleComponent = WavelengthExampleComponent; exports.WavelengthFileDownloader = WavelengthFileDownloader; exports.WavelengthFooter = WavelengthFooter; exports.WavelengthManyPlanes = WavelengthManyPlanes; exports.WavelengthNotAvailablePage = WavelengthNotAvailablePage; exports.WavelengthPermissionAlert = WavelengthPermissionAlert; exports.WavelengthPlaneTrail = WavelengthPlaneTrail; exports.WavelengthPopUpMenu = WavelengthPopUpMenu; exports.WavelengthProgressBar = WavelengthProgressBar; exports.WavelengthSearch = WavelengthSearch; exports.WavelengthSearchTextField = WavelengthSearchTextField; exports.WavelengthSideBar = WavelengthSideBar; exports.WavelengthSlider = WavelengthSlider; exports.WavelengthSnackbar = WavelengthSnackbar; exports.WavelengthSpinningLogo = WavelengthSpinningLogo; exports.WavelengthSpinningOuterCircle = WavelengthSpinningOuterCircle; exports.WavelengthStandardSnackbar = WavelengthStandardSnackbar; exports.WavelengthStyledButton = WavelengthStyledButton; exports.WavelengthTestSnackbar = WavelengthTestSnackbar; 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;
7290
7298
  /*! Bundled license information:
7291
7299
 
7292
7300
  react-is/cjs/react-is.production.min.js: