@alixpartners/ui-components 2.3.1 → 2.4.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.
@@ -1,8 +1,155 @@
1
- import { jsx as e } from "react/jsx-runtime";
2
- import l from "./FilePicker.js";
3
- import { d as i, i as r, r as t, g as o } from "../../vi.bdSIJ99Y-017e_Pkz.js";
4
- i("FilePicker", () => {
5
- r("should render", () => {
6
- t(/* @__PURE__ */ e(l, { type: "single", fileExtensionsAllowed: ["xlsx"], maxSize: 1, maxFiles: 10, label: "Label", required: !0, placeholder: "Select a file", helpText: "Help text", helpLink: "https://example.com", helpLinkText: "Help link" })), o(!0).toBe(!0);
1
+ import { jsx as i } from "react/jsx-runtime";
2
+ import { d as h, i as o, r as n, g as e, s as l, w as x, v as f, f as B } from "../../vi.bdSIJ99Y-017e_Pkz.js";
3
+ import { u as r } from "../../index-DkTDHhag.js";
4
+ import s from "./FilePicker.js";
5
+ const a = {
6
+ fileExtensionsAllowed: ["xlsx", "csv"],
7
+ maxSize: 5,
8
+ maxFiles: 10,
9
+ label: "Upload files",
10
+ required: !0,
11
+ placeholder: "Select a file",
12
+ helpText: "Help text",
13
+ helpLink: "https://example.com",
14
+ helpLinkText: "Help link"
15
+ };
16
+ function d(t, c = 100, u = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet") {
17
+ return new File(["x".repeat(c)], t, {
18
+ type: u
19
+ });
20
+ }
21
+ h("FilePicker", () => {
22
+ h("Rendering", () => {
23
+ o("should render with required props", () => {
24
+ n(/* @__PURE__ */ i(s, { type: "single", ...a })), e(l.getByText("Upload files")).toBeInTheDocument(), e(l.getByText("Select a file")).toBeInTheDocument(), e(l.getByText("Browse file")).toBeInTheDocument();
25
+ }), o("should render required asterisk when required is true", () => {
26
+ n(/* @__PURE__ */ i(s, { type: "single", ...a, required: !0 }));
27
+ const t = document.querySelector('[aria-hidden="true"]');
28
+ e(t).toBeInTheDocument(), e(t).toHaveTextContent("*");
29
+ }), o("should render single mode with Browse file button", () => {
30
+ n(/* @__PURE__ */ i(s, { type: "single", ...a })), e(l.getByText("Browse file")).toBeInTheDocument(), e(l.queryByText(/Browse files \(max/)).not.toBeInTheDocument();
31
+ }), o("should render multiple mode with Browse files button and max count", () => {
32
+ n(/* @__PURE__ */ i(s, { type: "multiple", ...a, maxFiles: 5, multipleHelpText: "Only xlsx, csv files with max size of 5MB", multipleButtonHelpText: "(max 5 files)" })), e(l.getByText("Browse files (max 5 files)")).toBeInTheDocument(), e(l.getByText(/Only xlsx, csv files with max size of 5MB/)).toBeInTheDocument();
33
+ }), o("should display custom multipleHelpText when provided in multiple mode", () => {
34
+ n(/* @__PURE__ */ i(s, { type: "multiple", ...a, multipleHelpText: "Custom extensions and size info" })), e(l.getByText("Custom extensions and size info")).toBeInTheDocument();
35
+ }), o("should not render multipleHelpText in single mode", () => {
36
+ n(/* @__PURE__ */ i(s, { type: "single", ...a, multipleHelpText: "This should not appear" })), e(l.queryByText("This should not appear")).not.toBeInTheDocument();
37
+ }), o("should display custom multipleButtonHelpText in button when provided in multiple mode", () => {
38
+ n(/* @__PURE__ */ i(s, { type: "multiple", ...a, multipleButtonHelpText: "(max 3 files, 2MB each)" })), e(l.getByText("Browse files (max 3 files, 2MB each)")).toBeInTheDocument();
39
+ }), o("should render file input with correct accept and multiple attributes", () => {
40
+ n(/* @__PURE__ */ i(s, { type: "multiple", ...a }));
41
+ const t = l.getByTestId("file-picker-input");
42
+ e(t).toHaveAttribute("accept", ".xlsx,.csv"), e(t).toHaveAttribute("multiple");
43
+ }), o("should render single file input without multiple attribute", () => {
44
+ n(/* @__PURE__ */ i(s, { type: "single", ...a }));
45
+ const t = l.getByTestId("file-picker-input");
46
+ e(t).not.toHaveAttribute("multiple");
47
+ }), o("should display selected file name in single mode", async () => {
48
+ const t = d("report.xlsx");
49
+ n(/* @__PURE__ */ i(s, { type: "single", ...a }));
50
+ const c = l.getByTestId("file-picker-input");
51
+ await r.upload(c, t), await x(() => {
52
+ e(l.getByText("report.xlsx")).toBeInTheDocument();
53
+ });
54
+ }), o("should display error message when provided", () => {
55
+ n(/* @__PURE__ */ i(s, { type: "single", ...a, errorMessage: "Please select a file" })), e(l.getByText("Please select a file")).toBeInTheDocument();
56
+ });
57
+ }), h("onUpload", () => {
58
+ o("should call onUpload with uploaded file when single file is selected", async () => {
59
+ const t = f.fn(), c = d("document.xlsx");
60
+ n(/* @__PURE__ */ i(s, { type: "single", ...a, onUpload: t }));
61
+ const u = l.getByTestId("file-picker-input");
62
+ await r.upload(u, c), await x(() => {
63
+ e(t).toHaveBeenCalledTimes(1), e(t).toHaveBeenCalledWith([e.objectContaining({
64
+ file: e.any(File),
65
+ error: void 0
66
+ })]), e(t.mock.calls[0][0][0].file.name).toBe("document.xlsx");
67
+ });
68
+ }), o("should call onUpload with all selected files when multiple files selected (non-queue)", async () => {
69
+ const t = f.fn(), c = d("a.xlsx"), u = d("b.xlsx");
70
+ n(/* @__PURE__ */ i(s, { type: "multiple", queueFiles: !1, ...a, onUpload: t }));
71
+ const m = l.getByTestId("file-picker-input");
72
+ await r.upload(m, [c, u]), await x(() => {
73
+ e(t).toHaveBeenCalledTimes(1);
74
+ const p = t.mock.calls[0][0];
75
+ e(p).toHaveLength(2), e(p[0].file.name).toBe("a.xlsx"), e(p[1].file.name).toBe("b.xlsx");
76
+ });
77
+ }), o("should call onUpload with accumulated files when queueFiles is true", async () => {
78
+ const t = f.fn(), c = d("first.xlsx"), u = d("second.xlsx");
79
+ n(/* @__PURE__ */ i(s, { type: "multiple", queueFiles: !0, ...a, maxFiles: 10, onUpload: t }));
80
+ const m = l.getByTestId("file-picker-input");
81
+ await r.upload(m, c), await x(() => {
82
+ e(t).toHaveBeenCalledTimes(1);
83
+ const p = t.mock.calls[0][0];
84
+ e(p).toHaveLength(1), e(p[0].file.name).toBe("first.xlsx");
85
+ }), await r.upload(m, u), await x(() => {
86
+ e(t).toHaveBeenCalledTimes(2);
87
+ const p = t.mock.calls[1][0];
88
+ e(p).toHaveLength(2), e(p[0].file.name).toBe("first.xlsx"), e(p[1].file.name).toBe("second.xlsx");
89
+ });
90
+ }), o("should include validation error in onUpload when file extension is invalid", async () => {
91
+ const t = f.fn(), c = d("document.pdf", 100, "application/pdf");
92
+ n(/* @__PURE__ */ i(s, { type: "single", ...a, fileExtensionsAllowed: ["xlsx"], onUpload: t }));
93
+ const u = l.getByTestId("file-picker-input");
94
+ B.change(u, {
95
+ target: {
96
+ files: [c]
97
+ }
98
+ }), await x(() => {
99
+ e(t).toHaveBeenCalledWith([e.objectContaining({
100
+ file: e.any(File),
101
+ error: e.stringContaining("file format is incorrect")
102
+ })]);
103
+ });
104
+ });
105
+ }), h("onRemoveFile", () => {
106
+ o("should call onRemoveFile when remove button is clicked in single mode", async () => {
107
+ const t = f.fn(), c = d("to-remove.xlsx");
108
+ n(/* @__PURE__ */ i(s, { type: "single", ...a, onRemoveFile: t }));
109
+ const u = l.getByTestId("file-picker-input");
110
+ await r.upload(u, c), await x(() => {
111
+ e(l.getByText("to-remove.xlsx")).toBeInTheDocument();
112
+ });
113
+ const m = l.getByTestId("file-picker-remove-single");
114
+ await r.click(m), e(t).toHaveBeenCalledWith("to-remove.xlsx");
115
+ }), o("should call onRemoveFile when remove button is clicked in multiple mode", async () => {
116
+ const t = f.fn(), c = d("one.xlsx"), u = d("two.xlsx");
117
+ n(/* @__PURE__ */ i(s, { type: "multiple", ...a, onRemoveFile: t }));
118
+ const m = l.getByTestId("file-picker-input");
119
+ await r.upload(m, [c, u]), await x(() => {
120
+ e(l.getByText("one.xlsx")).toBeInTheDocument(), e(l.getByText("two.xlsx")).toBeInTheDocument();
121
+ });
122
+ const p = l.getByTestId("file-picker-remove-two.xlsx");
123
+ await r.click(p), e(t).toHaveBeenCalledWith("two.xlsx");
124
+ });
125
+ }), h("Disabled state", () => {
126
+ o("should not call onUpload when disabled and file is selected", async () => {
127
+ const t = f.fn(), c = d("doc.xlsx");
128
+ n(/* @__PURE__ */ i(s, { type: "single", ...a, disabled: !0, onUpload: t }));
129
+ const u = l.getByTestId("file-picker-input");
130
+ await r.upload(u, c), e(t).not.toHaveBeenCalled();
131
+ }), o("should not call onRemoveFile when disabled and remove is clicked", async () => {
132
+ const t = f.fn(), c = d("doc.xlsx");
133
+ n(/* @__PURE__ */ i(s, { type: "single", ...a, disabled: !0, value: [c], onRemoveFile: t })), e(l.getByText("doc.xlsx")).toBeInTheDocument();
134
+ const u = l.getByTestId("file-picker-remove-single");
135
+ e(u).toBeDisabled(), await r.click(u), e(t).not.toHaveBeenCalled();
136
+ });
137
+ }), h("Controlled value", () => {
138
+ o("should display files from value prop", () => {
139
+ const t = d("controlled.xlsx");
140
+ n(/* @__PURE__ */ i(s, { type: "single", ...a, value: [t] })), e(l.getByText("controlled.xlsx")).toBeInTheDocument();
141
+ }), o("should display multiple files from value prop", () => {
142
+ const t = [d("a.xlsx"), d("b.xlsx")];
143
+ n(/* @__PURE__ */ i(s, { type: "multiple", ...a, value: t })), e(l.getByText("a.xlsx")).toBeInTheDocument(), e(l.getByText("b.xlsx")).toBeInTheDocument();
144
+ });
145
+ }), h("Max files exceeded", () => {
146
+ o("should show max files exceeded message when over limit in multiple mode", async () => {
147
+ const t = [d("1.xlsx"), d("2.xlsx"), d("3.xlsx")];
148
+ n(/* @__PURE__ */ i(s, { type: "multiple", ...a, maxFiles: 2 }));
149
+ const c = l.getByTestId("file-picker-input");
150
+ await r.upload(c, t), await x(() => {
151
+ e(l.getByText(/You can only upload up to 2 files/)).toBeInTheDocument();
152
+ });
153
+ });
7
154
  });
8
155
  });
@@ -1,53 +1,65 @@
1
- import { jsxs as i, jsx as L } from "react/jsx-runtime";
1
+ import { jsx as l, jsxs as i } from "react/jsx-runtime";
2
2
  function h({
3
- logo: C,
3
+ logo: a,
4
4
  color: t = "black",
5
5
  ...e
6
6
  }) {
7
- const l = {
7
+ const L = {
8
8
  black: "#000000",
9
9
  white: "#FFFFFF",
10
10
  gray: "#878787",
11
11
  green: "#5CB335"
12
12
  }[t];
13
- switch (C) {
13
+ switch (a) {
14
14
  case "ap-icon-logo-alixpartners":
15
- return /* @__PURE__ */ L("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: /* @__PURE__ */ L("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 22L9.94424 1H14.0558L21 22H17.0977L15.1369 15.9403L6.80151 22H3ZM15 15.7L12.0312 6.25L9 15.7H15Z", fill: l }) });
15
+ return /* @__PURE__ */ l("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 22L9.94424 1H14.0558L21 22H17.0977L15.1369 15.9403L6.80151 22H3ZM15 15.7L12.0312 6.25L9 15.7H15Z", fill: L }) });
16
16
  case "ap-icon-logo-chapter11":
17
17
  return /* @__PURE__ */ i("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: [
18
- /* @__PURE__ */ L("path", { d: "M14.5706 2L1.24601 7.96729L9.99356 12.7275L22.9164 5.87486L14.5706 2Z", fill: l }),
19
- /* @__PURE__ */ L("path", { d: "M2.96001 11.2286L1 12.2518L10.12 17.3683L23 9.93597L21.24 8.85882L10.12 15.0524L2.96001 11.2286Z", fill: l }),
20
- /* @__PURE__ */ L("path", { d: "M2.96001 15.8603L1 16.8835L10.12 22L23 14.5677L21.24 13.4905L10.12 19.6841L2.96001 15.8603Z", fill: l })
18
+ /* @__PURE__ */ l("path", { d: "M14.5706 2L1.24601 7.96729L9.99356 12.7275L22.9164 5.87486L14.5706 2Z", fill: L }),
19
+ /* @__PURE__ */ l("path", { d: "M2.96001 11.2286L1 12.2518L10.12 17.3683L23 9.93597L21.24 8.85882L10.12 15.0524L2.96001 11.2286Z", fill: L }),
20
+ /* @__PURE__ */ l("path", { d: "M2.96001 15.8603L1 16.8835L10.12 22L23 14.5677L21.24 13.4905L10.12 19.6841L2.96001 15.8603Z", fill: L })
21
21
  ] });
22
22
  case "ap-icon-logo-deedi":
23
- return /* @__PURE__ */ L("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: /* @__PURE__ */ L("path", { d: "M15.2688 8.5577L23 11.068V12.2019L16.8081 14.9372L11.6574 12.1754L11.4212 12.4343L14.67 17.0251L12.1297 23H11.2166L8.07749 15.6177L1 12.4274V10.9024L8.07749 8.5577L11.0532 1H12.293L15.2688 8.5577Z", fill: l }) });
23
+ return /* @__PURE__ */ l("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: /* @__PURE__ */ l("path", { d: "M15.2688 8.5577L23 11.068V12.2019L16.8081 14.9372L11.6574 12.1754L11.4212 12.4343L14.67 17.0251L12.1297 23H11.2166L8.07749 15.6177L1 12.4274V10.9024L8.07749 8.5577L11.0532 1H12.293L15.2688 8.5577Z", fill: L }) });
24
24
  case "ap-icon-logo-elevation":
25
- return /* @__PURE__ */ L("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: /* @__PURE__ */ L("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.2251 2.00159C10.2594 1.9933 10.3022 2.01817 10.3194 2.05962C10.3365 2.09278 10.8165 2.38292 11.3907 2.69794C11.9649 3.02125 12.6677 3.41087 12.9677 3.57667C13.2591 3.74247 14.3647 4.35592 17.3559 6.03049L18.2987 5.50822C18.8215 5.20978 19.4129 4.88648 19.6271 4.77871C19.8414 4.67094 20.2099 4.47198 20.4413 4.33105C20.6813 4.19013 20.8956 4.09065 20.9384 4.10723C20.9727 4.1321 20.9984 6.80974 20.9984 10.0594C21.007 14.7929 20.9813 15.9784 20.8956 16.053C20.8356 16.1027 20.1242 16.5089 19.3272 16.9566C18.5301 17.4042 17.6559 17.8851 17.3988 18.0343C17.1416 18.1835 16.0617 18.7804 14.999 19.3772C13.9362 19.9658 12.4106 20.8197 11.6135 21.2673C10.3022 21.9969 10.1394 22.0632 9.98511 21.9637C9.89083 21.9057 9.56515 21.7233 9.2566 21.5575C8.94806 21.3834 8.4681 21.1181 8.18527 20.9606C7.90243 20.8031 7.14821 20.3803 6.51398 20.0239C5.87975 19.6674 4.82556 19.0871 3 18.0757V14.0966L3.28283 14.2541C3.42853 14.337 4.29417 14.8095 5.18552 15.2986C6.08545 15.7877 7.57675 16.6167 10.1994 18.0757L11.2536 17.4789C11.8278 17.1555 12.5992 16.7162 12.9763 16.5089C13.3448 16.3017 13.6534 16.0944 13.6534 16.0447C13.6619 15.995 13.2077 15.7131 12.642 15.4064C12.0764 15.1079 11.3821 14.7266 11.0993 14.5774C10.8165 14.4199 9.79655 13.8479 8.82807 13.309C7.85958 12.7702 6.96823 12.2645 6.8311 12.1982C6.60826 12.0738 6.57398 12.0738 6.1883 12.2811C5.96546 12.3971 5.51978 12.6458 5.18552 12.8282C4.85127 13.0106 4.24275 13.3505 3.81422 13.5909C3.39425 13.823 3.03428 14.0137 3.02571 14.0137C3.00857 14.0137 3 12.2148 3 6.01391L3.38568 5.80666C3.59995 5.6906 4.58558 5.14347 5.58835 4.57975C6.59112 4.02433 8.03099 3.21192 8.78521 2.78913C9.53943 2.35805 10.1822 2.00159 10.2251 2.00159ZM6.85681 7.88743L6.55683 8.06151C7.22535 8.40969 8.07385 8.88222 8.87092 9.32987C9.66799 9.77753 10.825 10.4241 11.4421 10.764C12.0592 11.1039 12.7877 11.5184 13.0706 11.6676C13.3534 11.8251 13.6191 11.9826 13.6705 12.0241C13.7219 12.0573 13.9619 11.9744 14.2276 11.8251C14.4847 11.6759 15.2218 11.2614 15.856 10.905C16.4903 10.5485 17.0816 10.2169 17.1673 10.1672C17.2445 10.1174 17.313 10.0594 17.313 10.0345C17.313 10.0096 17.1673 9.91846 16.9874 9.81898C16.8159 9.72779 15.7446 9.13091 14.6133 8.50088C13.4819 7.87085 12.1792 7.14133 11.7164 6.86777C11.2621 6.60249 10.8593 6.38695 10.8165 6.38695C10.7822 6.38695 10.6622 6.31234 10.5422 6.22115C10.4222 6.12996 10.2679 6.06365 10.1994 6.06365C10.1308 6.06365 9.41087 6.4284 8.6138 6.88435C7.81673 7.332 7.01965 7.78795 6.85681 7.88743Z", fill: l }) });
25
+ return /* @__PURE__ */ l("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.2251 2.00159C10.2594 1.9933 10.3022 2.01817 10.3194 2.05962C10.3365 2.09278 10.8165 2.38292 11.3907 2.69794C11.9649 3.02125 12.6677 3.41087 12.9677 3.57667C13.2591 3.74247 14.3647 4.35592 17.3559 6.03049L18.2987 5.50822C18.8215 5.20978 19.4129 4.88648 19.6271 4.77871C19.8414 4.67094 20.2099 4.47198 20.4413 4.33105C20.6813 4.19013 20.8956 4.09065 20.9384 4.10723C20.9727 4.1321 20.9984 6.80974 20.9984 10.0594C21.007 14.7929 20.9813 15.9784 20.8956 16.053C20.8356 16.1027 20.1242 16.5089 19.3272 16.9566C18.5301 17.4042 17.6559 17.8851 17.3988 18.0343C17.1416 18.1835 16.0617 18.7804 14.999 19.3772C13.9362 19.9658 12.4106 20.8197 11.6135 21.2673C10.3022 21.9969 10.1394 22.0632 9.98511 21.9637C9.89083 21.9057 9.56515 21.7233 9.2566 21.5575C8.94806 21.3834 8.4681 21.1181 8.18527 20.9606C7.90243 20.8031 7.14821 20.3803 6.51398 20.0239C5.87975 19.6674 4.82556 19.0871 3 18.0757V14.0966L3.28283 14.2541C3.42853 14.337 4.29417 14.8095 5.18552 15.2986C6.08545 15.7877 7.57675 16.6167 10.1994 18.0757L11.2536 17.4789C11.8278 17.1555 12.5992 16.7162 12.9763 16.5089C13.3448 16.3017 13.6534 16.0944 13.6534 16.0447C13.6619 15.995 13.2077 15.7131 12.642 15.4064C12.0764 15.1079 11.3821 14.7266 11.0993 14.5774C10.8165 14.4199 9.79655 13.8479 8.82807 13.309C7.85958 12.7702 6.96823 12.2645 6.8311 12.1982C6.60826 12.0738 6.57398 12.0738 6.1883 12.2811C5.96546 12.3971 5.51978 12.6458 5.18552 12.8282C4.85127 13.0106 4.24275 13.3505 3.81422 13.5909C3.39425 13.823 3.03428 14.0137 3.02571 14.0137C3.00857 14.0137 3 12.2148 3 6.01391L3.38568 5.80666C3.59995 5.6906 4.58558 5.14347 5.58835 4.57975C6.59112 4.02433 8.03099 3.21192 8.78521 2.78913C9.53943 2.35805 10.1822 2.00159 10.2251 2.00159ZM6.85681 7.88743L6.55683 8.06151C7.22535 8.40969 8.07385 8.88222 8.87092 9.32987C9.66799 9.77753 10.825 10.4241 11.4421 10.764C12.0592 11.1039 12.7877 11.5184 13.0706 11.6676C13.3534 11.8251 13.6191 11.9826 13.6705 12.0241C13.7219 12.0573 13.9619 11.9744 14.2276 11.8251C14.4847 11.6759 15.2218 11.2614 15.856 10.905C16.4903 10.5485 17.0816 10.2169 17.1673 10.1672C17.2445 10.1174 17.313 10.0594 17.313 10.0345C17.313 10.0096 17.1673 9.91846 16.9874 9.81898C16.8159 9.72779 15.7446 9.13091 14.6133 8.50088C13.4819 7.87085 12.1792 7.14133 11.7164 6.86777C11.2621 6.60249 10.8593 6.38695 10.8165 6.38695C10.7822 6.38695 10.6622 6.31234 10.5422 6.22115C10.4222 6.12996 10.2679 6.06365 10.1994 6.06365C10.1308 6.06365 9.41087 6.4284 8.6138 6.88435C7.81673 7.332 7.01965 7.78795 6.85681 7.88743Z", fill: L }) });
26
26
  case "ap-icon-logo-gto":
27
- return /* @__PURE__ */ L("svg", { width: "24", height: "23", viewBox: "0 0 24 23", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: /* @__PURE__ */ L("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.0226 5.40579L13.7166 2.50782L13.7448 2.55441H17.2846L19.3476 5.80025L17.5917 8.805L21.1924 8.82778L23 12.0026L21.1418 15.533H17.8127L19.3882 18.2912L17.6512 21.4504H13.7864L11.9454 18.4306L10.1251 21.5L6.43796 21.4585L6.45999 21.4221L4.28508 18.2334L6.05619 15.2953H2.80637L1 12.1733L2.80347 8.81826L6.36945 8.8322L4.5887 5.74006L6.46859 2.6061L10.3193 2.5L12.0226 5.40579ZM6.91679 3.41271L10.2921 9.48273H12.8673L11.5978 11.9216H9.03938L5.21487 18.2079L6.90681 20.6879L10.6015 14.6162L9.3726 12.5137H11.8952L13.4246 14.6635H14.2302L14.2291 14.6625L20.6065 14.6628L22.0148 11.9835L15.0426 11.8512L13.7668 14.0334L12.2422 11.9594L13.4832 9.50823L13.4728 9.49055L13.4904 9.45926L9.87794 3.29437L6.91679 3.41271ZM15.5304 18.3245L14.2192 20.674L17.1841 20.6743L18.4919 18.295L15.5304 18.3245ZM1.90019 12.1644L3.24341 14.4829L4.6696 11.9519L3.2947 9.64358L1.90019 12.1644ZM15.7063 5.79107L18.3617 5.79753L16.8429 3.33076H14.2154L15.7063 5.79107Z", fill: l }) });
27
+ return /* @__PURE__ */ l("svg", { width: "24", height: "23", viewBox: "0 0 24 23", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.0226 5.40579L13.7166 2.50782L13.7448 2.55441H17.2846L19.3476 5.80025L17.5917 8.805L21.1924 8.82778L23 12.0026L21.1418 15.533H17.8127L19.3882 18.2912L17.6512 21.4504H13.7864L11.9454 18.4306L10.1251 21.5L6.43796 21.4585L6.45999 21.4221L4.28508 18.2334L6.05619 15.2953H2.80637L1 12.1733L2.80347 8.81826L6.36945 8.8322L4.5887 5.74006L6.46859 2.6061L10.3193 2.5L12.0226 5.40579ZM6.91679 3.41271L10.2921 9.48273H12.8673L11.5978 11.9216H9.03938L5.21487 18.2079L6.90681 20.6879L10.6015 14.6162L9.3726 12.5137H11.8952L13.4246 14.6635H14.2302L14.2291 14.6625L20.6065 14.6628L22.0148 11.9835L15.0426 11.8512L13.7668 14.0334L12.2422 11.9594L13.4832 9.50823L13.4728 9.49055L13.4904 9.45926L9.87794 3.29437L6.91679 3.41271ZM15.5304 18.3245L14.2192 20.674L17.1841 20.6743L18.4919 18.295L15.5304 18.3245ZM1.90019 12.1644L3.24341 14.4829L4.6696 11.9519L3.2947 9.64358L1.90019 12.1644ZM15.7063 5.79107L18.3617 5.79753L16.8429 3.33076H14.2154L15.7063 5.79107Z", fill: L }) });
28
28
  case "ap-icon-logo-radial":
29
- return /* @__PURE__ */ L("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: /* @__PURE__ */ L("path", { d: "M11.5263 5.76127V9.67899C11.1746 9.75038 10.8512 9.8997 10.5749 10.1081L7.52668 7.05987C7.65994 6.84345 7.73682 6.5886 7.73682 6.31579C7.73682 5.53096 7.10059 4.89473 6.31577 4.89473C5.53094 4.89473 4.89471 5.53096 4.89471 6.31579C4.89471 7.10061 5.53094 7.73684 6.31577 7.73684C6.45933 7.73684 6.59792 7.71555 6.72855 7.67596L9.91965 10.8671C9.80858 11.0706 9.72651 11.2922 9.67897 11.5263H5.76125C5.56618 10.9744 5.03979 10.5789 4.42105 10.5789C3.63623 10.5789 3 11.2152 3 12C3 12.7848 3.63623 13.421 4.42105 13.421C5.01993 13.421 5.53228 13.0506 5.74145 12.5263H9.69028C9.75135 12.7955 9.85828 13.0473 10.0024 13.273L6.89098 16.3844C6.71512 16.3065 6.5205 16.2632 6.31577 16.2632C5.53094 16.2632 4.89471 16.8994 4.89471 17.6843C4.89471 18.4691 5.53094 19.1053 6.31577 19.1053C7.10059 19.1053 7.73682 18.4691 7.73682 17.6843C7.73682 17.4701 7.68946 17.2671 7.60465 17.085L10.7058 13.9839C10.9514 14.1445 11.2287 14.2607 11.5263 14.3211V18.2388C10.9744 18.4338 10.5789 18.9602 10.5789 19.579C10.5789 20.3638 11.2151 21 12 21C12.7848 21 13.421 20.3638 13.421 19.579C13.421 18.9801 13.0506 18.4677 12.5263 18.2586V14.3098C12.7411 14.261 12.9448 14.1831 13.133 14.0804L16.324 17.2714C16.2844 17.4021 16.2632 17.5407 16.2632 17.6843C16.2632 18.4691 16.8994 19.1053 17.6842 19.1053C18.469 19.1053 19.1053 18.4691 19.1053 17.6843C19.1053 16.8994 18.469 16.2632 17.6842 16.2632C17.4114 16.2632 17.1566 16.3401 16.9401 16.4733L13.8919 13.4251C14.0899 13.1626 14.2346 12.8577 14.3098 12.5263H18.2586C18.4677 13.0506 18.9801 13.421 19.579 13.421C20.3638 13.421 21 12.7848 21 12C21 11.2152 20.3638 10.5789 19.579 10.5789C18.9602 10.5789 18.4338 10.9744 18.2388 11.5263H14.3211C14.2606 11.2288 14.1444 10.9514 13.9838 10.7058L17.0849 7.60468C17.267 7.68948 17.4701 7.73684 17.6842 7.73684C18.469 7.73684 19.1053 7.10061 19.1053 6.31579C19.1053 5.53096 18.469 4.89473 17.6842 4.89473C16.8994 4.89473 16.2632 5.53096 16.2632 6.31579C16.2632 6.52053 16.3065 6.71516 16.3844 6.89102L13.273 10.0024C13.0473 9.8583 12.7955 9.75137 12.5263 9.69029V5.74146C13.0506 5.5323 13.421 5.01995 13.421 4.42107C13.421 3.82219 13.0506 3.30984 12.5263 3.10068V3H11.5263V3.08087C10.9744 3.27595 10.5789 3.80233 10.5789 4.42107C10.5789 5.03981 10.9744 5.5662 11.5263 5.76127Z", fill: l }) });
29
+ return /* @__PURE__ */ i("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: [
30
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M16.321 1.5a2.664 2.664 0 1 1-.845 5.19l-3.07 4.881 2.44 4.484a3.3 3.3 0 0 1 1.246-.242l.172.004a3.34 3.34 0 0 1 3.169 3.34l-.005.171a3.34 3.34 0 0 1-3.336 3.172l-.172-.005a3.343 3.343 0 0 1-3.165-3.167l-.004-.172c0-1.06.493-2.003 1.262-2.616l-2.431-4.469H7.647a3.34 3.34 0 0 1-3.306 2.87l-.172-.005a3.343 3.343 0 0 1-3.165-3.166L1 11.598a3.343 3.343 0 0 1 3.34-3.344l.173.005a3.34 3.34 0 0 1 3.135 2.864h3.905l3.08-4.9A2.664 2.664 0 0 1 16.322 1.5m-.23 15.262a2.384 2.384 0 0 0-2.372 2.394 2.385 2.385 0 0 0 2.373 2.396 2.385 2.385 0 0 0 2.373-2.396 2.384 2.384 0 0 0-2.373-2.394m-11.75-7.56a2.385 2.385 0 0 0-2.373 2.396 2.384 2.384 0 0 0 2.373 2.394 2.384 2.384 0 0 0 2.373-2.394A2.385 2.385 0 0 0 4.34 9.202", fill: L }),
31
+ /* @__PURE__ */ l("path", { d: "M7.987 15.814a2.663 2.663 0 0 1 2.662 2.663 2.664 2.664 0 0 1-2.662 2.666 2.664 2.664 0 0 1-2.662-2.666 2.663 2.663 0 0 1 2.662-2.664", fill: L }),
32
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19.831 8.259A3.34 3.34 0 0 1 23 11.598l-.004.172a3.34 3.34 0 0 1-3.337 3.17l-.172-.003a3.34 3.34 0 0 1-3.164-3.167l-.005-.172a3.343 3.343 0 0 1 3.341-3.344zm-.172.943a2.385 2.385 0 0 0-2.373 2.396 2.384 2.384 0 0 0 2.373 2.394 2.384 2.384 0 0 0 2.373-2.394 2.385 2.385 0 0 0-2.373-2.396", fill: L }),
33
+ /* @__PURE__ */ l("path", { d: "M7.987 1.5a2.664 2.664 0 0 1 2.662 2.665 2.663 2.663 0 1 1-5.324 0A2.664 2.664 0 0 1 7.987 1.5", fill: L })
34
+ ] });
30
35
  case "ap-icon-logo-rpms":
31
- return /* @__PURE__ */ L("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: /* @__PURE__ */ L("path", { d: "M11.416 9.39258L9.36621 12.3154L11.1436 14.8643L7.54102 20L4.68945 15.9121L2 12.0586V12.0576L7.65332 4L11.416 9.39258ZM22 11.9414L16.3467 20L10.8057 12.0586L16.459 4L22 11.9414ZM11.9648 12.0596L16.3486 18.3428L20.8408 11.9404L16.457 5.65723L11.9648 12.0596Z", fill: l }) });
36
+ return /* @__PURE__ */ l("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: /* @__PURE__ */ l("path", { d: "M11.416 9.39258L9.36621 12.3154L11.1436 14.8643L7.54102 20L4.68945 15.9121L2 12.0586V12.0576L7.65332 4L11.416 9.39258ZM22 11.9414L16.3467 20L10.8057 12.0586L16.459 4L22 11.9414ZM11.9648 12.0596L16.3486 18.3428L20.8408 11.9404L16.457 5.65723L11.9648 12.0596Z", fill: L }) });
32
37
  case "ap-icon-logo-smart-factory":
33
38
  return /* @__PURE__ */ i("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: [
34
- /* @__PURE__ */ L("path", { d: "M14.5027 8.73267L21 4.00227V20H8.1373V8.73267L14.5027 4V8.73267Z", fill: l }),
35
- /* @__PURE__ */ L("path", { d: "M6.29731 4V20H3V4H6.29731Z", fill: l })
39
+ /* @__PURE__ */ l("path", { d: "M14.5027 8.73267L21 4.00227V20H8.1373V8.73267L14.5027 4V8.73267Z", fill: L }),
40
+ /* @__PURE__ */ l("path", { d: "M6.29731 4V20H3V4H6.29731Z", fill: L })
36
41
  ] });
37
42
  case "ap-icon-logo-sxr":
38
43
  return /* @__PURE__ */ i("svg", { width: "24", height: "23", viewBox: "0 0 24 23", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: [
39
- /* @__PURE__ */ L("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M21 4.72576V18.8818L20.7012 19.0898L20.7003 19.0902L19.0258 20.2507L19.0256 20.251L18.6662 20.5L18.2891 20.2795L18.2885 20.279L11.6346 16.376L4.91361 20.3184L3 18.9922V4.6705L4.92353 3.68003L4.99197 3.71912L11.6131 7.48554L18.2963 3.68388L18.2965 3.68427L18.3764 3.63825L18.6185 3.5L21 4.72576ZM11.4502 8.76694V15.0586L18.6174 19.2594L19.9722 18.3206V5.36925L18.6572 4.6834L11.4502 8.76694ZM5.64897 8.60693V15.2275L6.52103 15.8321L6.59767 15.885L10.381 13.6659V10.26L6.67584 8.15233L6.60759 8.11324L5.64897 8.60693Z", fill: l }),
40
- /* @__PURE__ */ L("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M18.4952 8.44866V15.338L17.0691 16.3175L12.9393 13.8746V10.0121L17.0368 7.69233L18.4952 8.44866ZM13.9612 10.6393V13.272L17.013 15.085L17.461 14.786L17.4734 9.08637L17.0521 8.8815L13.9612 10.6393Z", fill: l })
44
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M21 4.72576V18.8818L20.7012 19.0898L20.7003 19.0902L19.0258 20.2507L19.0256 20.251L18.6662 20.5L18.2891 20.2795L18.2885 20.279L11.6346 16.376L4.91361 20.3184L3 18.9922V4.6705L4.92353 3.68003L4.99197 3.71912L11.6131 7.48554L18.2963 3.68388L18.2965 3.68427L18.3764 3.63825L18.6185 3.5L21 4.72576ZM11.4502 8.76694V15.0586L18.6174 19.2594L19.9722 18.3206V5.36925L18.6572 4.6834L11.4502 8.76694ZM5.64897 8.60693V15.2275L6.52103 15.8321L6.59767 15.885L10.381 13.6659V10.26L6.67584 8.15233L6.60759 8.11324L5.64897 8.60693Z", fill: L }),
45
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M18.4952 8.44866V15.338L17.0691 16.3175L12.9393 13.8746V10.0121L17.0368 7.69233L18.4952 8.44866ZM13.9612 10.6393V13.272L17.013 15.085L17.461 14.786L17.4734 9.08637L17.0521 8.8815L13.9612 10.6393Z", fill: L })
41
46
  ] });
42
47
  case "ap-icon-logo-working-capital":
43
48
  return /* @__PURE__ */ i("svg", { width: "25", height: "25", viewBox: "0 0 25 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: [
44
- /* @__PURE__ */ L("path", { d: "M16.6229 8.26303L12.345 5.79878L12.3451 19.8594L16.6229 22.6673L16.6229 8.26303Z", fill: l }),
45
- /* @__PURE__ */ L("path", { d: "M22.7041 5.30469L18.0113 8.26453V22.616L22.7041 19.8509L22.7041 5.30469Z", fill: l }),
46
- /* @__PURE__ */ L("path", { d: "M22.704 3.90949L17.9295 1.78571L12.3792 4.50965L17.3089 7.16652L22.704 3.90949Z", fill: l }),
47
- /* @__PURE__ */ L("path", { d: "M12.3891 9.31412L7.66714 7.00758L1.83935 9.83925L6.85468 12.6348L12.3891 9.31412Z", fill: l }),
48
- /* @__PURE__ */ L("path", { d: "M6.04307 13.738L1.78571 11.3759L1.8395 20.1087L6.09682 22.6184L6.04307 13.738Z", fill: l }),
49
- /* @__PURE__ */ L("path", { d: "M12.345 10.6541L7.56036 13.7586L7.56036 22.7041L12.345 19.8988L12.345 10.6541Z", fill: l })
49
+ /* @__PURE__ */ l("path", { d: "M16.6229 8.26303L12.345 5.79878L12.3451 19.8594L16.6229 22.6673L16.6229 8.26303Z", fill: L }),
50
+ /* @__PURE__ */ l("path", { d: "M22.7041 5.30469L18.0113 8.26453V22.616L22.7041 19.8509L22.7041 5.30469Z", fill: L }),
51
+ /* @__PURE__ */ l("path", { d: "M22.704 3.90949L17.9295 1.78571L12.3792 4.50965L17.3089 7.16652L22.704 3.90949Z", fill: L }),
52
+ /* @__PURE__ */ l("path", { d: "M12.3891 9.31412L7.66714 7.00758L1.83935 9.83925L6.85468 12.6348L12.3891 9.31412Z", fill: L }),
53
+ /* @__PURE__ */ l("path", { d: "M6.04307 13.738L1.78571 11.3759L1.8395 20.1087L6.09682 22.6184L6.04307 13.738Z", fill: L }),
54
+ /* @__PURE__ */ l("path", { d: "M12.345 10.6541L7.56036 13.7586L7.56036 22.7041L12.345 19.8988L12.345 10.6541Z", fill: L })
55
+ ] });
56
+ case "ap-icon-logo-vault":
57
+ return /* @__PURE__ */ i("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: [
58
+ /* @__PURE__ */ l("path", { d: "m13.109 8.073 1.091 1.87-1.098 1.871h-2.21L9.8 9.943l1.098-1.87z", fill: L }),
59
+ /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "m23 12-5.5 9.35h-11L1 12l5.5-9.35h11zM7.285 9.943l2.358 4.008h.785v3.833L12 18.812l1.572-1.028V13.95h.785l2.358-4.008-2.358-4.006H9.643z", fill: L })
50
60
  ] });
61
+ case "ap-icon-logo-codex":
62
+ return /* @__PURE__ */ l("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e, children: /* @__PURE__ */ l("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M20.781 2.796a.458.458 0 0 1 .614.43V5.91l.819-.292.036-.012a.59.59 0 0 1 .75.566v10.325c0 .24-.145.455-.367.545l-10.224 4.145a.6.6 0 0 1-.29.04.6.6 0 0 1-.297-.037l-10.45-4.147A.59.59 0 0 1 1 16.496V6.172c0-.394.378-.673.75-.566l.036.012.932.332V3.226c0-.318.316-.54.614-.43l8.725 3.182zm-10.542 11.8a1.45 1.45 0 0 1-.9.69l.006-.001v2.386l2.245.875v-3.462zm3.772.031-1.375.498v3.377l2.229-.869V15.17a1.45 1.45 0 0 1-.854-.542m-7.613 1.894 2.293.895v-2.114a1.445 1.445 0 0 1-1.13-1.676l-1.163-.421zm10.208-2.832.002.067-.002.075a1.445 1.445 0 0 1-1.088 1.325v2.222l2.294-.894v-3.232zM3.372 15.34l2.372.925V12.97l-2.372-.859zm15.094-2.325v3.213l2.276-.888v-3.149zM15.163 15.2l.046-.001.013-.001zm-6.182-2.104a.79.79 0 1 0 0 1.58.79.79 0 0 0 0-1.58m6.182-.131a.79.79 0 1 0 0 1.58.79.79 0 0 0 0-1.58m-2.527-2.035v3.499l1.11-.402a1.446 1.446 0 0 1 1.118-1.685v-2.219zm-3.291 1.558-.07-.016c.657.136 1.15.717 1.15 1.414l-.002.074v.005l1.167.423v-3.5l-2.245-.812zM16.8 9.36l.041.049-1.323.479v2.468l-.056-.013c.415.088.765.354.964.715l1.385-.5V9.933A1.64 1.64 0 0 1 16.8 9.36m-9.503-.024a1.65 1.65 0 0 1-.913.575l.013-.002v2.6l1.424.516c.216-.29.54-.497.912-.56l-.043.007V9.841zm12.409-.964a1.644 1.644 0 0 1-1.241 1.532v2.416l2.276-.823v-3.5zM3.372 11.441a.3.3 0 0 1 .124.02l2.248.812V9.932l.064.009a1.644 1.644 0 0 1-1.437-1.664l-1-.361zm9.264-4.978v3.772l2.229-.806V5.65zM9.345 9.382l2.245.813V6.504l-2.245-.82zM6.014 7.32a.99.99 0 1 0 0 1.98.99.99 0 0 0 0-1.98m12.05 0a.99.99 0 1 0 0 1.98.99.99 0 0 0 0-1.98m-2.546-1.909v3.782l.988-.358a1.6 1.6 0 0 0-.085-.525c0-.822.603-1.503 1.39-1.624V4.575zm-9.12 1.3a1.644 1.644 0 0 1 1.2 2.039l1.093.395V5.446L6.398 4.61zm12.068-2.375v2.38A1.64 1.64 0 0 0 19.6 7.722l-.002-.005 1.144-.414V3.506zM3.372 7.246a.3.3 0 0 1 .124.02l1.019.368c.222-.492.68-.855 1.229-.945V4.372l-2.372-.866z", fill: L }) });
51
63
  default:
52
64
  return null;
53
65
  }
@@ -1,5 +1,5 @@
1
1
  import { jsx as r, jsxs as a } from "react/jsx-runtime";
2
- import { a as e } from "../../ap-logos-Cl1TR5nm.js";
2
+ import { a as e } from "../../ap-logos-CwA4O8B7.js";
3
3
  import l from "../Logo/Logo.js";
4
4
  import '../../assets/LogosGallery.css';const n = "LogosGallery-module__grid___mRUIv", c = "LogosGallery-module__icon___NMxJs", s = {
5
5
  grid: n,
@@ -8,7 +8,7 @@ import { useState as S } from "react";
8
8
  import { u as ne, R as oe, I as te, c as H, a as ie } from "../../index-DEphED6n.js";
9
9
  import { u as ue, P as z, d as se, c as R, b as ce } from "../../index-DM51yNMI.js";
10
10
  import { u as K } from "../../index-7CBv-Jx6.js";
11
- import { R as le, A as de, P as me, C as be, I as ve, c as pe, G as _e, L as fe, a as ge, b as he, d as Me, e as Ne, S as Ce, f as Re, g as Pe, h as we } from "../../index-D_3jWVyV.js";
11
+ import { R as le, A as de, P as me, C as be, I as ve, c as pe, G as _e, L as fe, a as ge, b as he, d as Me, e as Ne, S as Ce, f as Re, g as Pe, h as we } from "../../index-DgdVwltD.js";
12
12
  import '../../assets/NavBar.css';var x = "Menubar", [L, xe, Se] = ie(x), [Y] = ce(x, [
13
13
  Se,
14
14
  H
@@ -6,7 +6,7 @@ import { useRef as W, useState as N, useEffect as U } from "react";
6
6
  import $ from "../Icon/Icon.js";
7
7
  import "../Input/Input.js";
8
8
  import { u as K, P as H, c as M, a as j, b as F } from "../../index-DM51yNMI.js";
9
- import { R as V, A as X, P as q, C as J, I as Q, c as C, G as Y, L as Z, a as oo, b as eo, d as no, e as to, S as ro, f as ao, g as io, h as po } from "../../index-D_3jWVyV.js";
9
+ import { R as V, A as X, P as q, C as J, I as Q, c as C, G as Y, L as Z, a as oo, b as eo, d as no, e as to, S as ro, f as ao, g as io, h as po } from "../../index-DgdVwltD.js";
10
10
  import { u as I } from "../../index-7CBv-Jx6.js";
11
11
  import '../../assets/SplitButton.css';var v = "DropdownMenu", [so] = F(
12
12
  v,
@@ -5,7 +5,7 @@ import W from "../Icon/Icon.js";
5
5
  import Ie from "../Button/Button.js";
6
6
  import "../Input/Input.js";
7
7
  import Fe from "../Tooltip/Tooltip.js";
8
- import { R as ve, A as Te, P as Ne, C as Le } from "../../index-C4ffg1vf.js";
8
+ import { R as ve, A as Te, P as Ne, C as Le } from "../../index-DZ4Gof57.js";
9
9
  import '../../assets/TagsFields.css';const De = "TagsFields-module__dropdownContainer___GIsND", Ce = "TagsFields-module__dropdownLabel___AUP9W", ye = "TagsFields-module__dropdownLabelDisabled___hilvh", Oe = "TagsFields-module__required___Ybg21", ke = "TagsFields-module__dropdownWrapper___KxTZl", Re = "TagsFields-module__selectedItemsCreatable___Pnf8l", xe = "TagsFields-module__selectedItem___Tp6lp", Ae = "TagsFields-module__selectedItemLabel___SwoJL", Se = "TagsFields-module__removeButton___od0yh", We = "TagsFields-module__removeIcon___2WRCF", Ee = "TagsFields-module__singleSelectedCreatableItem___QwENt", Me = "TagsFields-module__singleSelectedCreatableItemRemoveButton___1PeN7", Ve = "TagsFields-module__dropdownActions___USb5V", Be = "TagsFields-module__dropdownArrow___JT9d3", Pe = "TagsFields-module__dropdownArrowOpen___jPfTk", je = "TagsFields-module__dropdownMenu___gPhtC", qe = "TagsFields-module__dropdownCreatableSearchContainer___mltcH", Ge = "TagsFields-module__disabled___1OfNF", ze = "TagsFields-module__dropdownCreatableError___R6oyD", Je = "TagsFields-module__creatableInput___qz9jI", Qe = "TagsFields-module__optionsList___qyawx", Ue = "TagsFields-module__categoryGroup___In039", Ye = "TagsFields-module__categoryDivider___eROv0", Ke = "TagsFields-module__categoryLabel___Cv2h5", He = "TagsFields-module__optionItem___UujFS", Xe = "TagsFields-module__optionItemDisabled___9gB8N", Ze = "TagsFields-module__optionItemFocused___4rsDt", $e = "TagsFields-module__optionContent___QSC9G", et = "TagsFields-module__optionLabel___N-fQ7", tt = "TagsFields-module__tickIcon___3uRY-", st = "TagsFields-module__noOptions___ugYj9", lt = "TagsFields-module__helpers___ab6f-", ot = "TagsFields-module__helpText___Qzdqh", dt = "TagsFields-module__helpTextDisabled___m-oFo", nt = "TagsFields-module__helpLink___JQDmR", at = "TagsFields-module__helpLinkDisabled___Nk1BX", rt = "TagsFields-module__errorMessage___b-ugf", t = {
10
10
  dropdownContainer: De,
11
11
  dropdownLabel: Ce,
@@ -6,7 +6,7 @@ import ee from "../Icon/Icon.js";
6
6
  import { P as G, u as te, d as F, c as C, b as oe, h as re } from "../../index-DM51yNMI.js";
7
7
  import { P as ne, D as le } from "../../index-DrR82jOT.js";
8
8
  import { u as ie } from "../../index-7CBv-Jx6.js";
9
- import { R as se, A as ae, a as ce, c as B, C as ue } from "../../index-C-3_YVJ1.js";
9
+ import { R as se, A as ae, a as ce, c as B, C as ue } from "../../index-D34Qo5Qx.js";
10
10
  import { P as K } from "../../index-BymOxiM6.js";
11
11
  import '../../assets/Tooltip.css';var pe = Object.freeze({
12
12
  // See: https://github.com/twbs/bootstrap/blob/main/scss/mixins/_visually-hidden.scss