@alixpartners/ui-components 2.3.2 → 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.
- package/README.md +97 -99
- package/dist/{ap-logos-Cl1TR5nm.js → ap-logos-CwA4O8B7.js} +1 -1
- package/dist/assets/Button.css +1 -1
- package/dist/assets/Dropdown.css +1 -1
- package/dist/assets/ap-logos-types.d.ts +1 -1
- package/dist/assets/ap-logos.d.ts +1 -1
- package/dist/components/Button/Button.d.ts +7 -3
- package/dist/components/Button/Button.js +35 -28
- package/dist/components/Creatable/Creatable.js +1 -1
- package/dist/components/Dropdown/Dropdown.js +6 -6
- package/dist/components/Logo/Logo.js +35 -23
- package/dist/components/Logos/LogosGallery.js +1 -1
- package/dist/components/NavBar/NavBar.js +1 -1
- package/dist/components/SplitButton/SplitButton.js +1 -1
- package/dist/components/TagsFields/TagsFields.js +1 -1
- package/dist/components/Tooltip/Tooltip.js +1 -1
- package/dist/{index-C-3_YVJ1.js → index-D34Qo5Qx.js} +478 -473
- package/dist/{index-C4ffg1vf.js → index-DZ4Gof57.js} +1 -1
- package/dist/{index-D_3jWVyV.js → index-DgdVwltD.js} +1 -1
- package/dist/main.js +1 -1
- package/dist/web.config +8 -8
- package/package.json +87 -87
package/README.md
CHANGED
|
@@ -1,99 +1,97 @@
|
|
|
1
|
-
# AlixPartners UI Component Library
|
|
2
|
-
|
|
3
|
-
A modern, reusable component library built with **[ReactJS](https://react.dev/)**.
|
|
4
|
-
|
|
5
|
-
Version **2.0** has been **rebuilt from the ground up** to align with the latest **AlixPartners Design System** and deliver improved developer experience, accessibility, and performance.
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
```
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
```
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
```
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
The **AlixPartners UI Component Library** is a collaborative, community-driven project where contributions from all team members are encouraged and valued. If you’d like to add new components or improve existing ones, please see the CONTRIBUTING.md file.
|
|
1
|
+
# AlixPartners UI Component Library
|
|
2
|
+
|
|
3
|
+
A modern, reusable component library built with **[ReactJS](https://react.dev/)**.
|
|
4
|
+
|
|
5
|
+
Version **2.0** has been **rebuilt from the ground up** to align with the latest **AlixPartners Design System** and deliver improved developer experience, accessibility, and performance.
|
|
6
|
+
|
|
7
|
+
## ✨ What’s New in 2.0
|
|
8
|
+
|
|
9
|
+
- Completely redesigned architecture with modern build tooling ([Vite](https://vitejs.dev/))
|
|
10
|
+
- Updated design tokens and styles aligned with AlixPartners Design System
|
|
11
|
+
- Improved accessibility (a11y) and semantic HTML usage
|
|
12
|
+
- Streamlined props API for cleaner integration
|
|
13
|
+
- Enhanced Storybook documentation
|
|
14
|
+
- Faster build & development workflows
|
|
15
|
+
|
|
16
|
+
### Version Support
|
|
17
|
+
|
|
18
|
+
- v2.x — Active development (BETA)
|
|
19
|
+
- v1.x — Maintained for legacy projects (no new features, critical fixes only)
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## 🚀 Installation
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npm install @alixpartners/ui-components
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## 🔧 Usage
|
|
30
|
+
|
|
31
|
+
```tsx
|
|
32
|
+
import { YourComponent } from '@alixpartners/ui-components'
|
|
33
|
+
|
|
34
|
+
function App() {
|
|
35
|
+
return <YourComponent />
|
|
36
|
+
}
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## 🧱 Components
|
|
40
|
+
|
|
41
|
+
Explore all available components and documentation in Storybook.
|
|
42
|
+
|
|
43
|
+
To run it locally:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npm run storybook
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## 📦 Build
|
|
52
|
+
|
|
53
|
+
To bundle the library for publishing:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
npm run build
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
The output will be in the `dist/` directory.
|
|
60
|
+
|
|
61
|
+
### Usage in projects while developing
|
|
62
|
+
|
|
63
|
+
When working on the library and testing it in another project:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
# In the component library root:
|
|
67
|
+
npm link
|
|
68
|
+
|
|
69
|
+
# In the consuming project's root:
|
|
70
|
+
npm link alix-partners-react-components-test
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Then import components using the `alix-partners-react-components-test` import.
|
|
74
|
+
|
|
75
|
+
## 🧪 Testing
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
npm run test
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
#### 🧪 Test Coverage
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
npm run coverage
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## 📚 Publish
|
|
88
|
+
|
|
89
|
+
To publish to npm:
|
|
90
|
+
|
|
91
|
+
1. Bump the version in `package.json`
|
|
92
|
+
2. Create a pull request in Azure DevOps to the `main` branch
|
|
93
|
+
3. This will automatically publish the library to `npm` once approved
|
|
94
|
+
|
|
95
|
+
## 🤝 Contributing
|
|
96
|
+
|
|
97
|
+
The **AlixPartners UI Component Library** is a collaborative, community-driven project where contributions from all team members are encouraged and valued. If you’d like to add new components or improve existing ones, please see the CONTRIBUTING.md file.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const o = ["ap-icon-logo-alixpartners", "ap-icon-logo-chapter11", "ap-icon-logo-deedi", "ap-icon-logo-elevation", "ap-icon-logo-gto", "ap-icon-logo-radial", "ap-icon-logo-rpms", "ap-icon-logo-smart-factory", "ap-icon-logo-sxr", "ap-icon-logo-working-capital"];
|
|
1
|
+
const o = ["ap-icon-logo-alixpartners", "ap-icon-logo-chapter11", "ap-icon-logo-deedi", "ap-icon-logo-elevation", "ap-icon-logo-gto", "ap-icon-logo-radial", "ap-icon-logo-rpms", "ap-icon-logo-smart-factory", "ap-icon-logo-sxr", "ap-icon-logo-working-capital", "ap-icon-logo-vault", "ap-icon-logo-codex"];
|
|
2
2
|
export {
|
|
3
3
|
o as a
|
|
4
4
|
};
|
package/dist/assets/Button.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.Button-module__btn___daEdK{display:inline-flex;justify-content:center;align-items:center;flex-shrink:0;border:none;text-align:center;font-family:Roboto,sans-serif;font-style:normal;font-weight:500;line-height:100%;cursor:pointer}.Button-module__btn-icon___G7m4S{display:flex;justify-content:center;align-items:center}.Button-module__btn-icon-sm___w7eg9{width:16px;height:16px;font-size:16px!important}.Button-module__btn-icon-md___8Ywy2{width:20px;height:20px;font-size:20px!important}.Button-module__btn-primary___vwY5K{border-radius:2px;color:#fff;background:#498e2b;gap:2px}.Button-module__btn-primary___vwY5K:hover{background:#3f7b25}.Button-module__btn-primary___vwY5K:disabled{background:#8dca7e;cursor:not-allowed}.Button-module__btn-primary___vwY5K.Button-module__btn-default___hpiKG{background:#498e2b}.Button-module__btn-primary___vwY5K.Button-module__btn-default___hpiKG:hover{background:#3f7b25}.Button-module__btn-primary___vwY5K.Button-module__btn-default___hpiKG:disabled{background:#8dca7e}.Button-module__btn-primary___vwY5K.Button-module__btn-danger___jTLwb{background:#cb282e}.Button-module__btn-primary___vwY5K.Button-module__btn-danger___jTLwb:hover{background:#ac272c}.Button-module__btn-primary___vwY5K.Button-module__btn-danger___jTLwb:disabled{background:#f99397}.Button-module__btn-primary___vwY5K.Button-module__btn-cancel___4SwgU{background:#878787}.Button-module__btn-primary___vwY5K.Button-module__btn-cancel___4SwgU:hover{background:#727272}.Button-module__btn-primary___vwY5K.Button-module__btn-cancel___4SwgU:disabled{background:#ccc}.Button-module__btn-primary___vwY5K .Button-module__loading-spinner___T25--{color:#fff}.Button-module__btn-secondary___w3xYM{border-radius:2px;border:1px solid #498e2b;background:#fff;gap:2px;color:#498e2b}.Button-module__btn-secondary___w3xYM:hover{border:1px solid #498e2b;color:#fff;background:#3f7b25}.Button-module__btn-secondary___w3xYM:disabled{border:1px solid #8dca7e;color:#8dca7e;background:#fff;cursor:not-allowed}.Button-module__btn-secondary___w3xYM .Button-module__loading-spinner___T25--{color:#8dca7e}.Button-module__btn-secondary___w3xYM.Button-module__btn-danger___jTLwb{border:1px solid #cb282e;color:#cb282e}.Button-module__btn-secondary___w3xYM.Button-module__btn-danger___jTLwb:hover:not(:disabled){border:1px solid #ac272c;color:#fff;background:#ac272c}.Button-module__btn-secondary___w3xYM.Button-module__btn-danger___jTLwb:disabled{border:1px solid #f99397;color:#f99397}.Button-module__btn-secondary___w3xYM.Button-module__btn-danger___jTLwb .Button-module__loading-spinner___T25--{color:#f99397}.Button-module__btn-secondary___w3xYM.Button-module__btn-cancel___4SwgU{border:1px solid #878787;color:#878787}.Button-module__btn-secondary___w3xYM.Button-module__btn-cancel___4SwgU:hover:not(:disabled){border:1px solid #727272;color:#fff;background:#727272}.Button-module__btn-secondary___w3xYM.Button-module__btn-cancel___4SwgU:disabled{border:1px solid #cccccc;color:#ccc}.Button-module__btn-secondary___w3xYM.Button-module__btn-cancel___4SwgU .Button-module__loading-spinner___T25--{color:#ccc}.Button-module__btn-tertiary___G-7lD{gap:2px;color:#4a4a4a;background:none}.Button-module__btn-tertiary___G-7lD:hover{color:#3f7b25}.Button-module__btn-tertiary___G-7lD:disabled{color:#ccc;cursor:not-allowed}.Button-module__btn-tertiary___G-7lD.Button-module__btn-danger___jTLwb{color:#cb282e}.Button-module__btn-tertiary___G-7lD.Button-module__btn-danger___jTLwb:hover{color:#ac272c}.Button-module__btn-tertiary___G-7lD.Button-module__btn-danger___jTLwb:disabled{color:#f99397}.Button-module__btn-tertiary___G-7lD.Button-module__btn-danger___jTLwb .Button-module__loading-spinner___T25--{color:#f99397}.Button-module__btn-tertiary___G-7lD.Button-module__btn-cancel___4SwgU{color:#878787}.Button-module__btn-tertiary___G-7lD.Button-module__btn-cancel___4SwgU:hover{color:#727272}.Button-module__btn-tertiary___G-7lD.Button-module__btn-cancel___4SwgU:disabled{color:#ccc}.Button-module__btn-tertiary___G-7lD.Button-module__btn-cancel___4SwgU .Button-module__loading-spinner___T25--,.Button-module__btn-tertiary___G-7lD .Button-module__loading-spinner___T25--{color:#ccc}.Button-module__btn-primary___vwY5K.Button-module__btn-disabled___eg1uH{background:#8dca7e;cursor:not-allowed}.Button-module__btn-primary___vwY5K .Button-module__btn-loading___vAg78{animation:Button-module__loading___QfItr 2s linear infinite}.Button-module__btn-secondary___w3xYM.Button-module__btn-disabled___eg1uH{border:1px solid #8dca7e;color:#8dca7e;background:#fff;cursor:not-allowed}.Button-module__btn-secondary___w3xYM .Button-module__btn-loading___vAg78{animation:Button-module__loading___QfItr 2s linear infinite}.Button-module__btn-tertiary___G-7lD.Button-module__btn-disabled___eg1uH{color:#ccc;cursor:not-allowed}.Button-module__btn-tertiary___G-7lD .Button-module__btn-loading___vAg78{animation:Button-module__loading___QfItr 2s linear infinite}@keyframes Button-module__loading___QfItr{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.Button-module__btn-sm___KNlkv{height:24px;padding:0 8px}.Button-module__btn-md___C8vqh{height:32px;padding:0 12px}.Button-module__btn-sm___KNlkv:not(.Button-module__btn-tertiary___G-7lD):not(:has(.Button-module__btn-icon___G7m4S:only-child)){min-width:78px;box-sizing:border-box}.Button-module__btn-md___C8vqh:not(.Button-module__btn-tertiary___G-7lD):not(:has(.Button-module__btn-icon___G7m4S:only-child)){min-width:94px;box-sizing:border-box}.Button-module__btn-sm___KNlkv:has(.Button-module__btn-icon___G7m4S:only-child){padding:0;width:24px}.Button-module__btn-md___C8vqh:has(.Button-module__btn-icon___G7m4S:only-child){padding:0;width:32px}.Button-module__btn-sm___KNlkv:has(.Button-module__btn-icon___G7m4S:not(:only-child)){padding:0 8px 0 4px}.Button-module__btn-sm___KNlkv:has(.Button-module__loading-spinner___T25--){padding:0 8px 0 4px}.Button-module__btn-md___C8vqh:has(.Button-module__btn-icon___G7m4S:not(:only-child)){padding:0 12px 0 8px}.Button-module__btn-md___C8vqh:has(.Button-module__loading-spinner___T25--){padding:0 12px 0 8px}.Button-module__btn-md___C8vqh .Button-module__btn-text___3ccH9{font-size:15px;font-weight:500;line-height:20px}.Button-module__btn-sm___KNlkv .Button-module__btn-text___3ccH9{font-size:13px;font-weight:500;line-height:18px}.Button-module__btn-md___C8vqh.Button-module__btn-tertiary___G-7lD .Button-module__btn-text___3ccH9{font-size:13px}.Button-module__btn-sm___KNlkv.Button-module__btn-tertiary___G-7lD .Button-module__btn-text___3ccH9{font-size:12px}.Button-module__btn-tertiary___G-7lD:has(.Button-module__btn-icon___G7m4S:only-child) .Button-module__btn-icon-sm___w7eg9{width:20px;height:20px;font-size:20px}.Button-module__btn-tertiary___G-7lD:has(.Button-module__btn-icon___G7m4S:only-child) .Button-module__btn-icon-md___8Ywy2{width:24px;height:24px;font-size:24px}.Button-module__btn-sm___KNlkv.Button-module__btn-tertiary___G-7lD,.Button-module__btn-md___C8vqh.Button-module__btn-tertiary___G-7lD{padding:0}.Button-module__btn-sm___KNlkv.Button-module__btn-tertiary___G-7lD:has(.Button-module__btn-icon___G7m4S:only-child){padding:0}.Button-module__btn-sm___KNlkv.Button-module__btn-tertiary___G-7lD:has(.Button-module__btn-icon___G7m4S:not(:only-child)){padding:0}.Button-module__btn-sm___KNlkv.Button-module__btn-tertiary___G-7lD:has(.Button-module__loading-spinner___T25--){padding:0}.Button-module__btn-md___C8vqh.Button-module__btn-tertiary___G-7lD:has(.Button-module__btn-icon___G7m4S:only-child){padding:0}.Button-module__btn-md___C8vqh.Button-module__btn-tertiary___G-7lD:has(.Button-module__btn-icon___G7m4S:not(:only-child)){padding:0}.Button-module__btn-md___C8vqh.Button-module__btn-tertiary___G-7lD:has(.Button-module__loading-spinner___T25--){padding:0}
|
|
1
|
+
.Button-module__btn___daEdK{display:inline-flex;justify-content:center;align-items:center;flex-shrink:0;border:none;text-align:center;font-family:Roboto,sans-serif;font-style:normal;font-weight:500;line-height:100%;cursor:pointer}.Button-module__btn-icon___G7m4S{display:flex;justify-content:center;align-items:center}.Button-module__btn-icon-sm___w7eg9{width:16px;height:16px;font-size:16px!important}.Button-module__btn-icon-md___8Ywy2{width:20px;height:20px;font-size:20px!important}.Button-module__btn-primary___vwY5K{border-radius:2px;color:#fff;background:#498e2b;gap:2px}.Button-module__btn-primary___vwY5K:hover{background:#3f7b25}.Button-module__btn-primary___vwY5K:disabled{background:#8dca7e;cursor:not-allowed}.Button-module__btn-primary___vwY5K.Button-module__btn-default___hpiKG{background:#498e2b}.Button-module__btn-primary___vwY5K.Button-module__btn-default___hpiKG:hover{background:#3f7b25}.Button-module__btn-primary___vwY5K.Button-module__btn-default___hpiKG:disabled{background:#8dca7e}.Button-module__btn-primary___vwY5K.Button-module__btn-danger___jTLwb{background:#cb282e}.Button-module__btn-primary___vwY5K.Button-module__btn-danger___jTLwb:hover{background:#ac272c}.Button-module__btn-primary___vwY5K.Button-module__btn-danger___jTLwb:disabled{background:#f99397}.Button-module__btn-primary___vwY5K.Button-module__btn-cancel___4SwgU{background:#878787}.Button-module__btn-primary___vwY5K.Button-module__btn-cancel___4SwgU:hover{background:#727272}.Button-module__btn-primary___vwY5K.Button-module__btn-cancel___4SwgU:disabled{background:#ccc}.Button-module__btn-primary___vwY5K .Button-module__loading-spinner___T25--{color:#fff}.Button-module__btn-secondary___w3xYM{border-radius:2px;border:1px solid #498e2b;background:#fff;gap:2px;color:#498e2b}.Button-module__btn-secondary___w3xYM:hover{border:1px solid #498e2b;color:#fff;background:#3f7b25}.Button-module__btn-secondary___w3xYM:disabled{border:1px solid #8dca7e;color:#8dca7e;background:#fff;cursor:not-allowed}.Button-module__btn-secondary___w3xYM .Button-module__loading-spinner___T25--{color:#8dca7e}.Button-module__btn-secondary___w3xYM.Button-module__btn-danger___jTLwb{border:1px solid #cb282e;color:#cb282e}.Button-module__btn-secondary___w3xYM.Button-module__btn-danger___jTLwb:hover:not(:disabled){border:1px solid #ac272c;color:#fff;background:#ac272c}.Button-module__btn-secondary___w3xYM.Button-module__btn-danger___jTLwb:disabled{border:1px solid #f99397;color:#f99397}.Button-module__btn-secondary___w3xYM.Button-module__btn-danger___jTLwb .Button-module__loading-spinner___T25--{color:#f99397}.Button-module__btn-secondary___w3xYM.Button-module__btn-cancel___4SwgU{border:1px solid #878787;color:#878787}.Button-module__btn-secondary___w3xYM.Button-module__btn-cancel___4SwgU:hover:not(:disabled){border:1px solid #727272;color:#fff;background:#727272}.Button-module__btn-secondary___w3xYM.Button-module__btn-cancel___4SwgU:disabled{border:1px solid #cccccc;color:#ccc}.Button-module__btn-secondary___w3xYM.Button-module__btn-cancel___4SwgU .Button-module__loading-spinner___T25--{color:#ccc}.Button-module__btn-tertiary___G-7lD{gap:2px;color:#4a4a4a;background:none}.Button-module__btn-tertiary___G-7lD:hover{color:#3f7b25}.Button-module__btn-tertiary___G-7lD:disabled{color:#ccc;cursor:not-allowed}.Button-module__btn-tertiary___G-7lD.Button-module__btn-danger___jTLwb{color:#cb282e}.Button-module__btn-tertiary___G-7lD.Button-module__btn-danger___jTLwb:hover{color:#ac272c}.Button-module__btn-tertiary___G-7lD.Button-module__btn-danger___jTLwb:disabled{color:#f99397}.Button-module__btn-tertiary___G-7lD.Button-module__btn-danger___jTLwb .Button-module__loading-spinner___T25--{color:#f99397}.Button-module__btn-tertiary___G-7lD.Button-module__btn-cancel___4SwgU{color:#878787}.Button-module__btn-tertiary___G-7lD.Button-module__btn-cancel___4SwgU:hover{color:#727272}.Button-module__btn-tertiary___G-7lD.Button-module__btn-cancel___4SwgU:disabled{color:#ccc}.Button-module__btn-tertiary___G-7lD.Button-module__btn-cancel___4SwgU .Button-module__loading-spinner___T25--,.Button-module__btn-tertiary___G-7lD .Button-module__loading-spinner___T25--{color:#ccc}.Button-module__btn-primary___vwY5K.Button-module__btn-disabled___eg1uH{background:#8dca7e;cursor:not-allowed}.Button-module__btn-primary___vwY5K .Button-module__btn-loading___vAg78{animation:Button-module__loading___QfItr 2s linear infinite}.Button-module__btn-secondary___w3xYM.Button-module__btn-disabled___eg1uH{border:1px solid #8dca7e;color:#8dca7e;background:#fff;cursor:not-allowed}.Button-module__btn-secondary___w3xYM .Button-module__btn-loading___vAg78{animation:Button-module__loading___QfItr 2s linear infinite}.Button-module__btn-tertiary___G-7lD.Button-module__btn-disabled___eg1uH{color:#ccc;cursor:not-allowed}.Button-module__btn-tertiary___G-7lD .Button-module__btn-loading___vAg78{animation:Button-module__loading___QfItr 2s linear infinite}@keyframes Button-module__loading___QfItr{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.Button-module__btn-sm___KNlkv{height:24px;padding:0 8px}.Button-module__btn-md___C8vqh{height:32px;padding:0 12px}.Button-module__btn-sm___KNlkv:not(.Button-module__btn-tertiary___G-7lD):not(:has(.Button-module__btn-icon___G7m4S:only-child)){min-width:78px;box-sizing:border-box}.Button-module__btn-md___C8vqh:not(.Button-module__btn-tertiary___G-7lD):not(:has(.Button-module__btn-icon___G7m4S:only-child)){min-width:94px;box-sizing:border-box}.Button-module__btn-sm___KNlkv:has(.Button-module__btn-icon___G7m4S:only-child){padding:0;width:24px}.Button-module__btn-md___C8vqh:has(.Button-module__btn-icon___G7m4S:only-child){padding:0;width:32px}.Button-module__btn-sm___KNlkv:has(.Button-module__btn-icon___G7m4S:not(:only-child)){padding:0 8px 0 4px}.Button-module__btn-sm___KNlkv:has(.Button-module__loading-spinner___T25--){padding:0 8px 0 4px}.Button-module__btn-md___C8vqh:has(.Button-module__btn-icon___G7m4S:not(:only-child)){padding:0 12px 0 8px}.Button-module__btn-md___C8vqh:has(.Button-module__loading-spinner___T25--){padding:0 12px 0 8px}.Button-module__btn-md___C8vqh .Button-module__btn-text___3ccH9{font-size:15px;font-weight:500;line-height:20px}.Button-module__btn-sm___KNlkv .Button-module__btn-text___3ccH9{font-size:13px;font-weight:500;line-height:18px}.Button-module__btn-md___C8vqh.Button-module__btn-tertiary___G-7lD .Button-module__btn-text___3ccH9{font-size:13px}.Button-module__btn-sm___KNlkv.Button-module__btn-tertiary___G-7lD .Button-module__btn-text___3ccH9{font-size:12px}.Button-module__btn-tertiary___G-7lD:has(.Button-module__btn-icon___G7m4S:only-child) .Button-module__btn-icon-sm___w7eg9{width:20px;height:20px;font-size:20px}.Button-module__btn-tertiary___G-7lD:has(.Button-module__btn-icon___G7m4S:only-child) .Button-module__btn-icon-md___8Ywy2{width:24px;height:24px;font-size:24px}.Button-module__btn-sm___KNlkv.Button-module__btn-tertiary___G-7lD,.Button-module__btn-md___C8vqh.Button-module__btn-tertiary___G-7lD{padding:0}.Button-module__btn-sm___KNlkv.Button-module__btn-tertiary___G-7lD:has(.Button-module__btn-icon___G7m4S:only-child){padding:0}.Button-module__btn-sm___KNlkv.Button-module__btn-tertiary___G-7lD:has(.Button-module__btn-icon___G7m4S:not(:only-child)){padding:0}.Button-module__btn-sm___KNlkv.Button-module__btn-tertiary___G-7lD:has(.Button-module__loading-spinner___T25--){padding:0}.Button-module__btn-md___C8vqh.Button-module__btn-tertiary___G-7lD:has(.Button-module__btn-icon___G7m4S:only-child){padding:0}.Button-module__btn-md___C8vqh.Button-module__btn-tertiary___G-7lD:has(.Button-module__btn-icon___G7m4S:not(:only-child)){padding:0}.Button-module__btn-md___C8vqh.Button-module__btn-tertiary___G-7lD:has(.Button-module__loading-spinner___T25--){padding:0}.Button-module__btn-link___5KUtD{padding:0;margin:0;color:inherit;text-decoration:none}
|
package/dist/assets/Dropdown.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.Dropdown-module__dropdownContainer___beNhQ{display:flex;flex-direction:column;gap:4px;width:100%;position:relative;gap:6px}.Dropdown-module__dropdownLabel___T9FmB{font-size:14px;font-weight:500;color:#4a4a4a;line-height:1.2;display:flex;align-items:center;gap:4px}.Dropdown-module__dropdownLabel___T9FmB .Dropdown-module__label-text___VEqG-{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Dropdown-module__dropdownLabel___T9FmB.Dropdown-module__dropdownLabelDisabled___SLRmM{pointer-events:none;color:#b2b2b2}.Dropdown-module__dropdownLabel___T9FmB.Dropdown-module__dropdownLabelDisabled___SLRmM .Dropdown-module__label-tooltip-icon___JYVOm{color:#ccc}.Dropdown-module__required___ChI1m{color:#cb282e;font-weight:600}.Dropdown-module__label-tooltip-icon___JYVOm{color:#4a4a4a;font-size:16px;cursor:pointer}.Dropdown-module__dropdownWrapper___AUuWD{position:relative;width:100%}.Dropdown-module__dropdown-menu-trigger___fgqVT{display:inline-block;width:100%}.Dropdown-module__dropdownTrigger___Rue93{width:100%;height:32px;padding:6px 8px;background-color:#fff;border:1px solid #cccccc;border-radius:4px;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:8px;min-width:240px;box-sizing:border-box}.Dropdown-module__dropdownTrigger___Rue93:hover:not(.Dropdown-module__dropdownTriggerDisabled___63wkd){border-color:#5cb335}.Dropdown-module__dropdownTrigger___Rue93:focus{outline:none;border-color:#5cb335}.Dropdown-module__dropdownTrigger___Rue93.Dropdown-module__dropdownTriggerOpen___cbm8V{border-color:#5cb335;border-radius:4px}.Dropdown-module__dropdownTrigger___Rue93.Dropdown-module__dropdownTriggerDisabled___63wkd{border-color:#ccc;cursor:not-allowed}.Dropdown-module__dropdownTrigger___Rue93.Dropdown-module__dropdownTriggerDisabled___63wkd .Dropdown-module__placeholder___fWdch,.Dropdown-module__dropdownTrigger___Rue93.Dropdown-module__dropdownTriggerDisabled___63wkd .Dropdown-module__selectedOptionLabel___7Zdh3,.Dropdown-module__dropdownTrigger___Rue93.Dropdown-module__dropdownTriggerDisabled___63wkd .Dropdown-module__dropdownSelectedItems___iXnpQ{color:#b2b2b2}.Dropdown-module__dropdownTrigger___Rue93.Dropdown-module__dropdownTriggerError___Uu02x{border-color:#bf494e}.Dropdown-module__dropdownContent___zLMhL{display:flex;align-items:center;gap:8px;width:100%;min-height:20px}.Dropdown-module__dropdownSelectedItems___iXnpQ{flex:1;min-width:0;display:flex;align-items:center;color:#28292c;font-size:14px}.Dropdown-module__selectedItemsList___uBD7x{display:flex;flex-wrap:wrap;gap:4px;width:100%}.Dropdown-module__selectedItemsCreatable___SCjLK{display:flex;align-items:center;gap:4px;flex:1}.Dropdown-module__selectedItemsCreatable___SCjLK .Dropdown-module__selectedItem___2jO4z{border-radius:240px;height:20px;padding:0 5px 0 9px}.Dropdown-module__selectedItemsCreatable___SCjLK .Dropdown-module__selectedItem___2jO4z .Dropdown-module__selectedItemLabel___efVI-{color:#3f7b25}.Dropdown-module__selectedItemsCreatable___SCjLK .Dropdown-module__selectedItem___2jO4z .Dropdown-module__removeButton___9r85B{border:none;background:none;cursor:pointer;padding:0;margin:0;display:flex;align-items:center}.Dropdown-module__selectedItemsCreatable___SCjLK .Dropdown-module__selectedItem___2jO4z .Dropdown-module__removeIcon___st3b-{font-size:12px;height:12px;width:12px;color:#727272}.Dropdown-module__selectedItemsCreatable___SCjLK .Dropdown-module__singleSelectedCreatableItem___BKFLb{display:flex;justify-content:space-between;align-items:center;flex:1;border-right:solid 1px #cccccc;padding-right:3px}.Dropdown-module__selectedItemsCreatable___SCjLK .Dropdown-module__singleSelectedCreatableItem___BKFLb .Dropdown-module__selectedItemLabel___efVI-{color:#28292c;font-size:14px}.Dropdown-module__singleSelectedCreatableItemRemoveButton___w3XXp{transform:rotate(45deg)}.Dropdown-module__selectedItem___2jO4z{display:inline-flex;align-items:center;gap:4px;padding:2px 6px;background-color:#dff0db;border:1px solid #dff0db;border-radius:12px;font-size:12px;color:#4a4a4a;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Dropdown-module__selectedOptionLabel___7Zdh3{color:#28292c;font-size:14px}.Dropdown-module__placeholder___fWdch{color:#878787;font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Dropdown-module__dropdownActions___d55Fa{display:flex;align-items:center;gap:4px;flex-shrink:0}.Dropdown-module__dropdownArrow___dLbrb{color:#4a4a4a;font-size:16px!important;transition:transform .2s ease}.Dropdown-module__dropdownArrow___dLbrb.Dropdown-module__dropdownArrowOpen___Z4Nh1{transform:rotate(180deg)}.Dropdown-module__dropdownMenu___toYcy{background-color:#fff;border:1px solid #cccccc;border-radius:4px;z-index:1000;max-height:300px;overflow:hidden;display:flex;flex-direction:column;width:fit-content;max-width:640px;min-width:80x;box-sizing:border-box;box-shadow:0 0 4px #00000029}.Dropdown-module__dropdown-container-grouped___1twhU .Dropdown-module__dropdownMenu___toYcy{min-width:212px}.Dropdown-module__dropdown-container-multi-select___zdaum .Dropdown-module__dropdownMenu___toYcy{min-width:224px}.Dropdown-module__dropdownMenuToolbar___gFne0{display:flex;flex-direction:column;gap:16px;padding:8px 12px;border-bottom:1px solid #cccccc}.Dropdown-module__searchContainer___4kUvD{position:relative;display:flex;align-items:center;gap:16px}.Dropdown-module__searchContainer___4kUvD .Dropdown-module__search___JmgDx{flex:1}.Dropdown-module__dropdownCreatableSearchContainer___sbs0F{min-width:300px;display:flex;align-items:center;flex-wrap:wrap;gap:4px;background:#fff;border:1px solid #cccccc;border-radius:4px;min-height:32px;padding:0 8px}.Dropdown-module__dropdownCreatableSearchContainer___sbs0F:focus-within{border-color:#5cb335}.Dropdown-module__dropdownCreatableSearchContainer___sbs0F.Dropdown-module__disabled___0FjAX{cursor:not-allowed;opacity:.6}.Dropdown-module__dropdownCreatableError___gwBGw{border-color:#bf494e}.Dropdown-module__creatableInput___meKz6{flex:1 1 120px;min-width:80px;border:none;outline:none;background:transparent;height:20px;padding:6px 0;color:#28292c;font-size:14px}.Dropdown-module__creatableInput___meKz6::placeholder{color:#878787}.Dropdown-module__creatableInput___meKz6:disabled{color:#b2b2b2}.Dropdown-module__searchInput___2Ad09{width:100%;padding:8px 32px 8px 12px;border:1px solid #cccccc;border-radius:4px;font-size:14px;color:#28292c;background-color:#fff}.Dropdown-module__searchInput___2Ad09:focus{outline:none;border-color:#5cb335}.Dropdown-module__searchInput___2Ad09::placeholder{color:#878787}.Dropdown-module__searchIcon___QxaFA{position:absolute;right:20px;top:50%;transform:translateY(-50%);color:#4a4a4a;font-size:16px;pointer-events:none}.Dropdown-module__optionsList___rk2hi{padding:8px;flex:1;overflow-y:auto;max-height:200px}.Dropdown-module__categoryGroup___Np2bP{display:flex;flex-direction:column}.Dropdown-module__optionsList___rk2hi .Dropdown-module__categoryGroup___Np2bP:first-child .Dropdown-module__categoryDivider___Gh6F0{border-top:none}.Dropdown-module__categoryDivider___Gh6F0{padding:8px;border-top:1px solid #cccccc;background-color:#fff;display:flex;align-items:center}.Dropdown-module__categoryLabel___B9IDR{font-size:12px;font-weight:600;color:#727272;text-transform:uppercase;letter-spacing:.5px}.Dropdown-module__optionItem___7pi10{width:100%;padding:8px;border:none;background:none;cursor:pointer;display:flex;align-items:center;transition:background-color .2s ease;text-align:left;font-size:14px;color:#4a4a4a;min-height:32px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border-radius:4px;box-sizing:border-box}.Dropdown-module__optionItem___7pi10:hover:not(.Dropdown-module__optionItemDisabled___aepUD){background-color:#dff0db}.Dropdown-module__optionItem___7pi10:focus{outline:none}.Dropdown-module__optionItem___7pi10.Dropdown-module__optionItemDisabled___aepUD{color:#b2b2b2;cursor:not-allowed;opacity:.6}.Dropdown-module__optionItem___7pi10.Dropdown-module__optionItemFocused___u2781{background-color:#dff0db}.Dropdown-module__optionContent___nf1VC{display:flex;align-items:center;justify-content:space-between;width:100%}.Dropdown-module__optionLabel___sJerM{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-family:Roboto,sans-serif!important}.Dropdown-module__tickIcon___hYdCr{color:inherit;font-size:14px;flex-shrink:0;margin-left:8px}.Dropdown-module__creatableIcon___3zxIF{color:inherit;font-size:14px;flex-shrink:0;margin-right:8px}.Dropdown-module__noOptions___8vmhM{padding:8px;text-align:center;color:#878787;font-size:14px;font-style:italic}.Dropdown-module__maxItemsWarning___4F7o-{padding:8px;border-top:1px solid #cccccc;background-color:#f8f9fa;font-size:12px;color:#727272;text-align:center}.Dropdown-module__helpers___s4ulA{display:flex;justify-content:space-between;align-items:center;gap:6px;min-width:0}.Dropdown-module__helpText___YooJE{font-size:12px;color:#727272;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Dropdown-module__helpTextDisabled___Ct4qq{color:#b2b2b2}.Dropdown-module__helpLink___-Zwpq{color:#0369a3;font-size:12px;font-weight:500;line-height:1;text-decoration:none;flex-shrink:0}.Dropdown-module__helpLink___-Zwpq:hover{text-decoration:underline}.Dropdown-module__helpLinkDisabled___r-opC{color:#878787}.Dropdown-module__errorMessage___3Mopi{font-size:12px;color:#bf494e;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Dropdown-module__optionsList___rk2hi::-webkit-scrollbar{width:4px}.Dropdown-module__optionsList___rk2hi::-webkit-scrollbar-track{background:transparent}.Dropdown-module__optionsList___rk2hi::-webkit-scrollbar-thumb{background-color:#ccc;border-radius:240px}.Dropdown-module__optionsList___rk2hi::-webkit-scrollbar-thumb:hover{background-color:#878787}.Dropdown-module__optionsList___rk2hi::-webkit-scrollbar-thumb:active{background-color:#4a4a4a}.Dropdown-module__selectAllContainer___Dlk3J{display:flex;gap:16px;background-color:#fff;justify-content:space-between;align-items:center;padding-bottom:8px}.Dropdown-module__searchContainer___4kUvD:has(+.Dropdown-module__selectAllContainer___Dlk3J){border-bottom:none}.Dropdown-module__actionButtons___-2nvr{display:flex;justify-content:space-between;gap:8px;padding:12px;border-top:1px solid #cccccc;background-color:#fff}
|
|
1
|
+
.Dropdown-module__dropdownContainer___beNhQ{display:flex;flex-direction:column;gap:4px;width:100%;position:relative;gap:6px}.Dropdown-module__dropdownLabel___T9FmB{font-size:14px;font-weight:500;color:#4a4a4a;line-height:1.2;display:flex;align-items:center;gap:4px}.Dropdown-module__dropdownLabel___T9FmB .Dropdown-module__label-text___VEqG-{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Dropdown-module__dropdownLabel___T9FmB.Dropdown-module__dropdownLabelDisabled___SLRmM{pointer-events:none;color:#b2b2b2}.Dropdown-module__dropdownLabel___T9FmB.Dropdown-module__dropdownLabelDisabled___SLRmM .Dropdown-module__label-tooltip-icon___JYVOm{color:#ccc}.Dropdown-module__required___ChI1m{color:#cb282e;font-weight:600}.Dropdown-module__label-tooltip-icon___JYVOm{color:#4a4a4a;font-size:16px;cursor:pointer}.Dropdown-module__dropdownWrapper___AUuWD{position:relative;width:100%}.Dropdown-module__dropdown-menu-trigger___fgqVT{display:inline-block;width:100%}.Dropdown-module__dropdownTrigger___Rue93{width:100%;height:32px;padding:6px 8px;background-color:#fff;border:1px solid #cccccc;border-radius:4px;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:8px;min-width:240px;box-sizing:border-box}.Dropdown-module__dropdownTrigger___Rue93:hover:not(.Dropdown-module__dropdownTriggerDisabled___63wkd){border-color:#5cb335}.Dropdown-module__dropdownTrigger___Rue93:focus{outline:none;border-color:#5cb335}.Dropdown-module__dropdownTrigger___Rue93.Dropdown-module__dropdownTriggerOpen___cbm8V{border-color:#5cb335;border-radius:4px}.Dropdown-module__dropdownTrigger___Rue93.Dropdown-module__dropdownTriggerDisabled___63wkd{border-color:#ccc;cursor:not-allowed}.Dropdown-module__dropdownTrigger___Rue93.Dropdown-module__dropdownTriggerDisabled___63wkd .Dropdown-module__placeholder___fWdch,.Dropdown-module__dropdownTrigger___Rue93.Dropdown-module__dropdownTriggerDisabled___63wkd .Dropdown-module__dropdownSelectedItems___iXnpQ{color:#b2b2b2}.Dropdown-module__dropdownTrigger___Rue93.Dropdown-module__dropdownTriggerError___Uu02x{border-color:#bf494e}.Dropdown-module__dropdownContent___zLMhL{display:flex;align-items:center;gap:8px;width:100%;min-height:20px}.Dropdown-module__dropdownSelectedItems___iXnpQ{flex:1;min-width:0;display:flex;align-items:center;color:#28292c;font-size:14px}.Dropdown-module__selectedItemsList___uBD7x{display:flex;flex-wrap:wrap;gap:4px;width:100%}.Dropdown-module__selectedItemsCreatable___SCjLK{display:flex;align-items:center;gap:4px;flex:1}.Dropdown-module__selectedItemsCreatable___SCjLK .Dropdown-module__selectedItem___2jO4z{border-radius:240px;height:20px;padding:0 5px 0 9px}.Dropdown-module__selectedItemsCreatable___SCjLK .Dropdown-module__selectedItem___2jO4z .Dropdown-module__selectedItemLabel___efVI-{color:#3f7b25}.Dropdown-module__selectedItemsCreatable___SCjLK .Dropdown-module__selectedItem___2jO4z .Dropdown-module__removeButton___9r85B{border:none;background:none;cursor:pointer;padding:0;margin:0;display:flex;align-items:center}.Dropdown-module__selectedItemsCreatable___SCjLK .Dropdown-module__selectedItem___2jO4z .Dropdown-module__removeIcon___st3b-{font-size:12px;height:12px;width:12px;color:#727272}.Dropdown-module__selectedItemsCreatable___SCjLK .Dropdown-module__singleSelectedCreatableItem___BKFLb{display:flex;justify-content:space-between;align-items:center;flex:1;border-right:solid 1px #cccccc;padding-right:3px}.Dropdown-module__selectedItemsCreatable___SCjLK .Dropdown-module__singleSelectedCreatableItem___BKFLb .Dropdown-module__selectedItemLabel___efVI-{color:#28292c;font-size:14px}.Dropdown-module__singleSelectedCreatableItemRemoveButton___w3XXp{transform:rotate(45deg)}.Dropdown-module__selectedItem___2jO4z{display:inline-flex;align-items:center;gap:4px;padding:2px 6px;background-color:#dff0db;border:1px solid #dff0db;border-radius:12px;font-size:12px;color:#4a4a4a;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Dropdown-module__selectedOptionLabel___7Zdh3{color:#28292c;font-size:14px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.Dropdown-module__placeholder___fWdch{color:#878787;font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Dropdown-module__dropdownActions___d55Fa{display:flex;align-items:center;gap:4px;flex-shrink:0}.Dropdown-module__dropdownArrow___dLbrb{color:#4a4a4a;font-size:16px!important;transition:transform .2s ease}.Dropdown-module__dropdownArrow___dLbrb.Dropdown-module__dropdownArrowOpen___Z4Nh1{transform:rotate(180deg)}.Dropdown-module__dropdownMenu___toYcy{background-color:#fff;border:1px solid #cccccc;border-radius:4px;z-index:1000;max-height:300px;overflow:hidden;display:flex;flex-direction:column;width:fit-content;max-width:640px;min-width:80x;box-sizing:border-box;box-shadow:0 0 4px #00000029}.Dropdown-module__dropdown-container-grouped___1twhU .Dropdown-module__dropdownMenu___toYcy{min-width:212px}.Dropdown-module__dropdown-container-multi-select___zdaum .Dropdown-module__dropdownMenu___toYcy{min-width:224px}.Dropdown-module__dropdownMenuToolbar___gFne0{display:flex;flex-direction:column;gap:16px;padding:8px 12px;border-bottom:1px solid #cccccc}.Dropdown-module__searchContainer___4kUvD{position:relative;display:flex;align-items:center;gap:16px}.Dropdown-module__searchContainer___4kUvD .Dropdown-module__search___JmgDx{flex:1}.Dropdown-module__dropdownCreatableSearchContainer___sbs0F{min-width:300px;display:flex;align-items:center;flex-wrap:wrap;gap:4px;background:#fff;border:1px solid #cccccc;border-radius:4px;min-height:32px;padding:0 8px}.Dropdown-module__dropdownCreatableSearchContainer___sbs0F:focus-within{border-color:#5cb335}.Dropdown-module__dropdownCreatableSearchContainer___sbs0F.Dropdown-module__disabled___0FjAX{cursor:not-allowed;opacity:.6}.Dropdown-module__dropdownCreatableError___gwBGw{border-color:#bf494e}.Dropdown-module__creatableInput___meKz6{flex:1 1 120px;min-width:80px;border:none;outline:none;background:transparent;height:20px;padding:6px 0;color:#28292c;font-size:14px}.Dropdown-module__creatableInput___meKz6::placeholder{color:#878787}.Dropdown-module__creatableInput___meKz6:disabled{color:#b2b2b2}.Dropdown-module__searchInput___2Ad09{width:100%;padding:8px 32px 8px 12px;border:1px solid #cccccc;border-radius:4px;font-size:14px;color:#28292c;background-color:#fff}.Dropdown-module__searchInput___2Ad09:focus{outline:none;border-color:#5cb335}.Dropdown-module__searchInput___2Ad09::placeholder{color:#878787}.Dropdown-module__searchIcon___QxaFA{position:absolute;right:20px;top:50%;transform:translateY(-50%);color:#4a4a4a;font-size:16px;pointer-events:none}.Dropdown-module__optionsList___rk2hi{padding:8px;flex:1;overflow-y:auto;max-height:200px}.Dropdown-module__categoryGroup___Np2bP{display:flex;flex-direction:column}.Dropdown-module__optionsList___rk2hi .Dropdown-module__categoryGroup___Np2bP:first-child .Dropdown-module__categoryDivider___Gh6F0{border-top:none}.Dropdown-module__categoryDivider___Gh6F0{padding:8px;border-top:1px solid #cccccc;background-color:#fff;display:flex;align-items:center}.Dropdown-module__categoryLabel___B9IDR{font-size:12px;font-weight:600;color:#727272;text-transform:uppercase;letter-spacing:.5px}.Dropdown-module__optionItem___7pi10{width:100%;padding:8px;border:none;background:none;cursor:pointer;display:flex;align-items:center;transition:background-color .2s ease;text-align:left;font-size:14px;color:#4a4a4a;min-height:32px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border-radius:4px;box-sizing:border-box}.Dropdown-module__optionItem___7pi10:hover:not(.Dropdown-module__optionItemDisabled___aepUD){background-color:#dff0db}.Dropdown-module__optionItem___7pi10:focus{outline:none}.Dropdown-module__optionItem___7pi10.Dropdown-module__optionItemDisabled___aepUD{color:#b2b2b2;cursor:not-allowed;opacity:.6}.Dropdown-module__optionItem___7pi10.Dropdown-module__optionItemFocused___u2781{background-color:#dff0db}.Dropdown-module__optionContent___nf1VC{display:flex;align-items:center;justify-content:space-between;width:100%}.Dropdown-module__optionLabel___sJerM{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-family:Roboto,sans-serif!important}.Dropdown-module__tickIcon___hYdCr{color:inherit;font-size:14px;flex-shrink:0;margin-left:8px}.Dropdown-module__creatableIcon___3zxIF{color:inherit;font-size:14px;flex-shrink:0;margin-right:8px}.Dropdown-module__noOptions___8vmhM{padding:8px;text-align:center;color:#878787;font-size:14px;font-style:italic}.Dropdown-module__maxItemsWarning___4F7o-{padding:8px;border-top:1px solid #cccccc;background-color:#f8f9fa;font-size:12px;color:#727272;text-align:center}.Dropdown-module__helpers___s4ulA{display:flex;justify-content:space-between;align-items:center;gap:6px;min-width:0}.Dropdown-module__helpText___YooJE{font-size:12px;color:#727272;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Dropdown-module__helpTextDisabled___Ct4qq{color:#b2b2b2}.Dropdown-module__helpLink___-Zwpq{color:#0369a3;font-size:12px;font-weight:500;line-height:1;text-decoration:none;flex-shrink:0}.Dropdown-module__helpLink___-Zwpq:hover{text-decoration:underline}.Dropdown-module__helpLinkDisabled___r-opC{color:#878787}.Dropdown-module__errorMessage___3Mopi{font-size:12px;color:#bf494e;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Dropdown-module__optionsList___rk2hi::-webkit-scrollbar{width:4px}.Dropdown-module__optionsList___rk2hi::-webkit-scrollbar-track{background:transparent}.Dropdown-module__optionsList___rk2hi::-webkit-scrollbar-thumb{background-color:#ccc;border-radius:240px}.Dropdown-module__optionsList___rk2hi::-webkit-scrollbar-thumb:hover{background-color:#878787}.Dropdown-module__optionsList___rk2hi::-webkit-scrollbar-thumb:active{background-color:#4a4a4a}.Dropdown-module__selectAllContainer___Dlk3J{display:flex;gap:16px;background-color:#fff;justify-content:space-between;align-items:center;padding-bottom:8px}.Dropdown-module__searchContainer___4kUvD:has(+.Dropdown-module__selectAllContainer___Dlk3J){border-bottom:none}.Dropdown-module__actionButtons___-2nvr{display:flex;justify-content:space-between;gap:8px;padding:12px;border-top:1px solid #cccccc;background-color:#fff}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type ApLogo = 'ap-icon-logo-alixpartners' | 'ap-icon-logo-chapter11' | 'ap-icon-logo-deedi' | 'ap-icon-logo-elevation' | 'ap-icon-logo-gto' | 'ap-icon-logo-radial' | 'ap-icon-logo-rpms' | 'ap-icon-logo-smart-factory' | 'ap-icon-logo-sxr' | 'ap-icon-logo-working-capital';
|
|
1
|
+
export type ApLogo = 'ap-icon-logo-alixpartners' | 'ap-icon-logo-chapter11' | 'ap-icon-logo-deedi' | 'ap-icon-logo-elevation' | 'ap-icon-logo-gto' | 'ap-icon-logo-radial' | 'ap-icon-logo-rpms' | 'ap-icon-logo-smart-factory' | 'ap-icon-logo-sxr' | 'ap-icon-logo-working-capital' | 'ap-icon-logo-vault' | 'ap-icon-logo-codex';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const apLogos: readonly ["ap-icon-logo-alixpartners", "ap-icon-logo-chapter11", "ap-icon-logo-deedi", "ap-icon-logo-elevation", "ap-icon-logo-gto", "ap-icon-logo-radial", "ap-icon-logo-rpms", "ap-icon-logo-smart-factory", "ap-icon-logo-sxr", "ap-icon-logo-working-capital"];
|
|
1
|
+
export declare const apLogos: readonly ["ap-icon-logo-alixpartners", "ap-icon-logo-chapter11", "ap-icon-logo-deedi", "ap-icon-logo-elevation", "ap-icon-logo-gto", "ap-icon-logo-radial", "ap-icon-logo-rpms", "ap-icon-logo-smart-factory", "ap-icon-logo-sxr", "ap-icon-logo-working-capital", "ap-icon-logo-vault", "ap-icon-logo-codex"];
|
|
@@ -3,8 +3,8 @@ import { DataAttributes } from '../../types/data-attributes';
|
|
|
3
3
|
import { InteractiveEventHandlers } from '../../types/native-events';
|
|
4
4
|
export type ButtonProps = {
|
|
5
5
|
type: 'primary' | 'secondary' | 'tertiary';
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
size?: 'sm' | 'md';
|
|
7
|
+
variant?: 'default' | 'danger' | 'cancel';
|
|
8
8
|
icon?: ApIcon;
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
loading?: boolean;
|
|
@@ -12,6 +12,8 @@ export type ButtonProps = {
|
|
|
12
12
|
className?: string;
|
|
13
13
|
iconClassName?: string;
|
|
14
14
|
tabIndex?: number;
|
|
15
|
+
link?: string;
|
|
16
|
+
linkTarget?: '_self' | '_blank' | '_parent' | '_top';
|
|
15
17
|
} & DataAttributes & InteractiveEventHandlers;
|
|
16
18
|
/**
|
|
17
19
|
* A versatile button component that supports different types, variants, sizes, and states.
|
|
@@ -25,7 +27,9 @@ export type ButtonProps = {
|
|
|
25
27
|
* @param {boolean} [props.disabled] - Whether the button is disabled (prevents interaction and applies disabled styling)
|
|
26
28
|
* @param {boolean} [props.loading] - Whether the button is in a loading state (shows loading spinner and prevents interaction)
|
|
27
29
|
* @param {React.ReactNode} [props.children] - The content to display inside the button (text or other elements)
|
|
30
|
+
* @param {string} [props.link] - Allows a URL to be added to the button for navigation
|
|
31
|
+
* @param {string} [props.linkTarget] - Allows a target for links to be set (default _self)
|
|
28
32
|
* @param {() => void} [props.onClick] - Callback fired when the button is clicked
|
|
29
33
|
* @returns {JSX.Element} The rendered Button component
|
|
30
34
|
*/
|
|
31
|
-
export default function Button({ type, variant, size, icon, disabled, loading, children, className, iconClassName, tabIndex, ...props }: ButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
35
|
+
export default function Button({ type, variant, size, icon, disabled, loading, children, className, iconClassName, tabIndex, link, linkTarget, ...props }: ButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { c as
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import '../../assets/Button.css';const
|
|
6
|
-
btn:
|
|
1
|
+
import { jsx as o, jsxs as w } from "react/jsx-runtime";
|
|
2
|
+
import { c as i } from "../../clsx-OuTLNxxd.js";
|
|
3
|
+
import x from "../Spinner/Spinner.js";
|
|
4
|
+
import K from "../Icon/Icon.js";
|
|
5
|
+
import '../../assets/Button.css';const k = "Button-module__btn___daEdK", p = "Button-module__loading___QfItr", t = {
|
|
6
|
+
btn: k,
|
|
7
7
|
"btn-icon": "Button-module__btn-icon___G7m4S",
|
|
8
8
|
"btn-icon-sm": "Button-module__btn-icon-sm___w7eg9",
|
|
9
9
|
"btn-icon-md": "Button-module__btn-icon-md___8Ywy2",
|
|
@@ -16,34 +16,41 @@ import '../../assets/Button.css';const x = "Button-module__btn___daEdK", K = "Bu
|
|
|
16
16
|
"btn-tertiary": "Button-module__btn-tertiary___G-7lD",
|
|
17
17
|
"btn-disabled": "Button-module__btn-disabled___eg1uH",
|
|
18
18
|
"btn-loading": "Button-module__btn-loading___vAg78",
|
|
19
|
-
loading:
|
|
19
|
+
loading: p,
|
|
20
20
|
"btn-sm": "Button-module__btn-sm___KNlkv",
|
|
21
21
|
"btn-md": "Button-module__btn-md___C8vqh",
|
|
22
|
-
"btn-text": "Button-module__btn-text___3ccH9"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
22
|
+
"btn-text": "Button-module__btn-text___3ccH9",
|
|
23
|
+
"btn-link": "Button-module__btn-link___5KUtD"
|
|
24
|
+
}, D = ({
|
|
25
|
+
children: e,
|
|
26
|
+
link: l,
|
|
27
|
+
linkTarget: n
|
|
28
|
+
}) => l ? /* @__PURE__ */ o("a", { href: l, target: n, className: t["btn-link"], children: e }) : e;
|
|
29
|
+
function G({
|
|
30
|
+
type: e,
|
|
31
|
+
variant: l = "default",
|
|
32
|
+
size: n = "md",
|
|
33
|
+
icon: d,
|
|
34
|
+
disabled: b = !1,
|
|
35
|
+
loading: a = !1,
|
|
36
|
+
children: m,
|
|
37
|
+
className: c,
|
|
33
38
|
iconClassName: s,
|
|
34
39
|
tabIndex: B = 0,
|
|
35
|
-
|
|
40
|
+
link: f = "",
|
|
41
|
+
linkTarget: g = "_self",
|
|
42
|
+
...u
|
|
36
43
|
}) {
|
|
37
|
-
const y = (
|
|
38
|
-
var
|
|
39
|
-
(
|
|
44
|
+
const y = (_) => {
|
|
45
|
+
var r;
|
|
46
|
+
(_.key === "Enter" || _.key === " ") && (_.preventDefault(), _.currentTarget.click()), (r = u.onKeyDown) == null || r.call(u, _);
|
|
40
47
|
};
|
|
41
|
-
return /* @__PURE__ */
|
|
42
|
-
!!
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
] });
|
|
48
|
+
return /* @__PURE__ */ o("button", { tabIndex: b ? -1 : B, type: "button", className: i(t.btn, t[`btn-${e}`], t[`btn-${l}`], t[`btn-${n}`], b && t["btn-disabled"], c), disabled: b || a, onKeyDown: y, ...u, children: /* @__PURE__ */ w(D, { link: f, linkTarget: g, children: [
|
|
49
|
+
!!d && !a && /* @__PURE__ */ o(K, { icon: d, className: i(t["btn-icon"], t[`btn-icon-${n}`], s) }),
|
|
50
|
+
a && /* @__PURE__ */ o(x, { size: n, color: "white", className: t["loading-spinner"] }),
|
|
51
|
+
m && /* @__PURE__ */ o("span", { className: t["btn-text"], children: m })
|
|
52
|
+
] }) });
|
|
46
53
|
}
|
|
47
54
|
export {
|
|
48
|
-
|
|
55
|
+
G as default
|
|
49
56
|
};
|
|
@@ -5,7 +5,7 @@ import B from "../Icon/Icon.js";
|
|
|
5
5
|
import he from "../Button/Button.js";
|
|
6
6
|
import "../Input/Input.js";
|
|
7
7
|
import Ie from "../Tooltip/Tooltip.js";
|
|
8
|
-
import { R as ve, A as Le, P as Ne, C as ge } from "../../index-
|
|
8
|
+
import { R as ve, A as Le, P as Ne, C as ge } from "../../index-DZ4Gof57.js";
|
|
9
9
|
import '../../assets/Creatable.css';const ye = "Creatable-module__dropdownContainer___y0ptC", De = "Creatable-module__dropdownLabel___RyuSY", ke = "Creatable-module__dropdownLabelDisabled___nhYc0", xe = "Creatable-module__required___g26DB", Oe = "Creatable-module__dropdownWrapper___wu-B3", Ae = "Creatable-module__selectedItemsCreatable___P0mME", Re = "Creatable-module__selectedItem___0LADh", Ve = "Creatable-module__selectedItemLabel___m0LSV", Ee = "Creatable-module__removeButton___tjxwh", Fe = "Creatable-module__removeIcon___KQKbD", Se = "Creatable-module__singleSelectedCreatableItem___tanxX", Me = "Creatable-module__singleSelectedCreatableItemRemoveButton___Qi9Si", Be = "Creatable-module__dropdownActions___FmHZe", Ge = "Creatable-module__dropdownArrow___SJmKg", Ke = "Creatable-module__dropdownArrowOpen___T3E0S", je = "Creatable-module__dropdownMenu___HEhC3", Ue = "Creatable-module__dropdownCreatableSearchContainer___AgXA3", We = "Creatable-module__disabled___ZIdus", $e = "Creatable-module__dropdownCreatableError___FYVla", Je = "Creatable-module__creatableInput___KaKxv", Pe = "Creatable-module__optionsList___VZgJf", Ye = "Creatable-module__categoryGroup___g8f-g", qe = "Creatable-module__categoryDivider___QUgR9", ze = "Creatable-module__categoryLabel___YhGp9", Qe = "Creatable-module__optionItem___Ys808", Ze = "Creatable-module__optionItemDisabled___jvfGz", He = "Creatable-module__optionItemFocused___OfIQd", Te = "Creatable-module__optionContent___9RCsJ", Xe = "Creatable-module__optionLabel___FJfM1", et = "Creatable-module__tickIcon___VjpDN", tt = "Creatable-module__helpers___GmPY4", lt = "Creatable-module__helpText___89mXU", ot = "Creatable-module__helpTextDisabled___shU6E", at = "Creatable-module__helpLink___IdU0g", rt = "Creatable-module__helpLinkDisabled___B8rpy", nt = "Creatable-module__errorMessage___HRKr5", t = {
|
|
10
10
|
dropdownContainer: ye,
|
|
11
11
|
dropdownLabel: De,
|
|
@@ -7,8 +7,8 @@ import ne from "../Button/Button.js";
|
|
|
7
7
|
import re from "../Ghost/Ghost.js";
|
|
8
8
|
import Me from "../Search/Search.js";
|
|
9
9
|
import Se from "../Tooltip/Tooltip.js";
|
|
10
|
-
import { R as Ve, T as Re, P as Ee, C as Fe } from "../../index-
|
|
11
|
-
import '../../assets/Dropdown.css';const We = "Dropdown-module__dropdownContainer___beNhQ", qe = "Dropdown-module__dropdownLabel___T9FmB", Je = "Dropdown-module__dropdownLabelDisabled___SLRmM", ze = "Dropdown-module__required___ChI1m", Ge = "Dropdown-module__dropdownWrapper___AUuWD", Be = "Dropdown-module__dropdownTrigger___Rue93", Ue = "Dropdown-module__dropdownTriggerDisabled___63wkd", je = "Dropdown-module__dropdownTriggerOpen___cbm8V", Pe = "Dropdown-module__placeholder___fWdch", Ye = "Dropdown-
|
|
10
|
+
import { R as Ve, T as Re, P as Ee, C as Fe } from "../../index-DZ4Gof57.js";
|
|
11
|
+
import '../../assets/Dropdown.css';const We = "Dropdown-module__dropdownContainer___beNhQ", qe = "Dropdown-module__dropdownLabel___T9FmB", Je = "Dropdown-module__dropdownLabelDisabled___SLRmM", ze = "Dropdown-module__required___ChI1m", Ge = "Dropdown-module__dropdownWrapper___AUuWD", Be = "Dropdown-module__dropdownTrigger___Rue93", Ue = "Dropdown-module__dropdownTriggerDisabled___63wkd", je = "Dropdown-module__dropdownTriggerOpen___cbm8V", Pe = "Dropdown-module__placeholder___fWdch", Ye = "Dropdown-module__dropdownSelectedItems___iXnpQ", $e = "Dropdown-module__dropdownTriggerError___Uu02x", Ze = "Dropdown-module__dropdownContent___zLMhL", Qe = "Dropdown-module__selectedOptionLabel___7Zdh3", Ke = "Dropdown-module__dropdownActions___d55Fa", Xe = "Dropdown-module__dropdownArrow___dLbrb", He = "Dropdown-module__dropdownArrowOpen___Z4Nh1", eo = "Dropdown-module__dropdownMenu___toYcy", oo = "Dropdown-module__dropdownMenuToolbar___gFne0", no = "Dropdown-module__searchContainer___4kUvD", ro = "Dropdown-module__search___JmgDx", to = "Dropdown-module__optionsList___rk2hi", lo = "Dropdown-module__categoryGroup___Np2bP", so = "Dropdown-module__categoryDivider___Gh6F0", io = "Dropdown-module__categoryLabel___B9IDR", co = "Dropdown-module__optionItem___7pi10", ao = "Dropdown-module__optionItemDisabled___aepUD", po = "Dropdown-module__optionItemFocused___u2781", _o = "Dropdown-module__optionContent___nf1VC", uo = "Dropdown-module__optionLabel___sJerM", mo = "Dropdown-module__tickIcon___hYdCr", wo = "Dropdown-module__noOptions___8vmhM", fo = "Dropdown-module__helpers___s4ulA", ho = "Dropdown-module__helpText___YooJE", Do = "Dropdown-module__helpTextDisabled___Ct4qq", bo = "Dropdown-module__helpLink___-Zwpq", go = "Dropdown-module__helpLinkDisabled___r-opC", No = "Dropdown-module__errorMessage___3Mopi", vo = "Dropdown-module__selectAllContainer___Dlk3J", Lo = "Dropdown-module__actionButtons___-2nvr", o = {
|
|
12
12
|
dropdownContainer: We,
|
|
13
13
|
dropdownLabel: qe,
|
|
14
14
|
"label-text": "Dropdown-module__label-text___VEqG-",
|
|
@@ -21,10 +21,10 @@ import '../../assets/Dropdown.css';const We = "Dropdown-module__dropdownContaine
|
|
|
21
21
|
dropdownTriggerDisabled: Ue,
|
|
22
22
|
dropdownTriggerOpen: je,
|
|
23
23
|
placeholder: Pe,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
dropdownSelectedItems: Ye,
|
|
25
|
+
dropdownTriggerError: $e,
|
|
26
|
+
dropdownContent: Ze,
|
|
27
|
+
selectedOptionLabel: Qe,
|
|
28
28
|
dropdownActions: Ke,
|
|
29
29
|
dropdownArrow: Xe,
|
|
30
30
|
dropdownArrowOpen: He,
|
|
@@ -1,53 +1,65 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { jsx as l, jsxs as i } from "react/jsx-runtime";
|
|
2
2
|
function h({
|
|
3
|
-
logo:
|
|
3
|
+
logo: a,
|
|
4
4
|
color: t = "black",
|
|
5
5
|
...e
|
|
6
6
|
}) {
|
|
7
|
-
const
|
|
7
|
+
const L = {
|
|
8
8
|
black: "#000000",
|
|
9
9
|
white: "#FFFFFF",
|
|
10
10
|
gray: "#878787",
|
|
11
11
|
green: "#5CB335"
|
|
12
12
|
}[t];
|
|
13
|
-
switch (
|
|
13
|
+
switch (a) {
|
|
14
14
|
case "ap-icon-logo-alixpartners":
|
|
15
|
-
return /* @__PURE__ */
|
|
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__ */
|
|
19
|
-
/* @__PURE__ */
|
|
20
|
-
/* @__PURE__ */
|
|
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__ */
|
|
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__ */
|
|
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__ */
|
|
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__ */
|
|
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__ */
|
|
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__ */
|
|
35
|
-
/* @__PURE__ */
|
|
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__ */
|
|
40
|
-
/* @__PURE__ */
|
|
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__ */
|
|
45
|
-
/* @__PURE__ */
|
|
46
|
-
/* @__PURE__ */
|
|
47
|
-
/* @__PURE__ */
|
|
48
|
-
/* @__PURE__ */
|
|
49
|
-
/* @__PURE__ */
|
|
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-
|
|
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-
|
|
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
|