@netfoundry/docusaurus-theme 0.9.0 → 0.10.1
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/css/layout.css +37 -0
- package/css/product-picker.css +36 -8
- package/css/theme.css +51 -20
- package/css/vars.css +1 -0
- package/dist/css/layout.css +37 -0
- package/dist/css/product-picker.css +36 -8
- package/dist/css/theme.css +51 -20
- package/dist/css/vars.css +1 -0
- package/dist/src/components/NetFoundryFooter/NetFoundryFooter.d.ts.map +1 -1
- package/dist/src/components/NetFoundryFooter/NetFoundryFooter.js +3 -2
- package/dist/src/components/NetFoundryFooter/NetFoundryFooter.js.map +1 -1
- package/dist/src/components/NetFoundryFooter/styles.module.css +1 -1
- package/dist/src/components/icons/DiscourseIcon.d.ts +8 -0
- package/dist/src/components/icons/DiscourseIcon.d.ts.map +1 -0
- package/dist/src/components/icons/DiscourseIcon.js +5 -0
- package/dist/src/components/icons/DiscourseIcon.js.map +1 -0
- package/dist/src/components/icons/GitHubIcon.d.ts +8 -0
- package/dist/src/components/icons/GitHubIcon.d.ts.map +1 -0
- package/dist/src/components/icons/GitHubIcon.js +5 -0
- package/dist/src/components/icons/GitHubIcon.js.map +1 -0
- package/dist/src/components/icons/XIcon.d.ts +8 -0
- package/dist/src/components/icons/XIcon.d.ts.map +1 -0
- package/dist/src/components/icons/XIcon.js +5 -0
- package/dist/src/components/icons/XIcon.js.map +1 -0
- package/dist/src/components/icons/YouTubeIcon.d.ts +8 -0
- package/dist/src/components/icons/YouTubeIcon.d.ts.map +1 -0
- package/dist/src/components/icons/YouTubeIcon.js +5 -0
- package/dist/src/components/icons/YouTubeIcon.js.map +1 -0
- package/dist/src/components/icons/index.d.ts +5 -0
- package/dist/src/components/icons/index.d.ts.map +1 -0
- package/dist/src/components/icons/index.js +5 -0
- package/dist/src/components/icons/index.js.map +1 -0
- package/dist/src/components/index.d.ts +1 -0
- package/dist/src/components/index.d.ts.map +1 -1
- package/dist/src/components/index.js +1 -0
- package/dist/src/components/index.js.map +1 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +5 -0
- package/dist/src/index.js.map +1 -1
- package/dist/theme/NavbarItem/ComponentTypes.d.ts +4 -0
- package/dist/theme/NavbarItem/ComponentTypes.d.ts.map +1 -1
- package/dist/theme/NavbarItem/ComponentTypes.js +4 -0
- package/dist/theme/NavbarItem/ComponentTypes.js.map +1 -1
- package/dist/theme/NavbarItem/NavbarPicker.d.ts +13 -0
- package/dist/theme/NavbarItem/NavbarPicker.d.ts.map +1 -0
- package/dist/theme/NavbarItem/NavbarPicker.js +59 -0
- package/dist/theme/NavbarItem/NavbarPicker.js.map +1 -0
- package/dist/theme/NavbarItem/types/IconLinks/index.d.ts +4 -0
- package/dist/theme/NavbarItem/types/IconLinks/index.d.ts.map +1 -0
- package/dist/theme/NavbarItem/types/IconLinks/index.js +22 -0
- package/dist/theme/NavbarItem/types/IconLinks/index.js.map +1 -0
- package/dist/theme/NavbarItem/types/ProductPicker/index.d.ts.map +1 -1
- package/dist/theme/NavbarItem/types/ProductPicker/index.js +3 -49
- package/dist/theme/NavbarItem/types/ProductPicker/index.js.map +1 -1
- package/dist/theme/NavbarItem/types/ResourcesPicker/index.d.ts +8 -0
- package/dist/theme/NavbarItem/types/ResourcesPicker/index.d.ts.map +1 -0
- package/dist/theme/NavbarItem/types/ResourcesPicker/index.js +30 -0
- package/dist/theme/NavbarItem/types/ResourcesPicker/index.js.map +1 -0
- package/package.json +1 -1
- package/theme/NavbarItem/ComponentTypes.tsx +4 -0
- package/theme/NavbarItem/NavbarPicker.tsx +94 -0
- package/theme/NavbarItem/types/IconLinks/index.tsx +35 -0
- package/theme/NavbarItem/types/ProductPicker/index.tsx +88 -154
- package/theme/NavbarItem/types/ResourcesPicker/index.tsx +88 -0
- package/css/.claude/settings.local.json +0 -12
package/css/layout.css
CHANGED
|
@@ -11,6 +11,43 @@ html {
|
|
|
11
11
|
scrollbar-gutter: stable;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
+
/* Resources picker: sit after the color mode toggle, before search */
|
|
15
|
+
.navbar__items--right > div:has(.nf-picker-trigger) { order: 2; display: flex; align-items: center; }
|
|
16
|
+
.navbar__items--right > div:has(.DocSearch-Button) { order: 3; }
|
|
17
|
+
|
|
18
|
+
/* Separator between color mode toggle and resources picker */
|
|
19
|
+
.navbar__items--right > div:has(.nf-picker-trigger)::before {
|
|
20
|
+
content: '';
|
|
21
|
+
display: block;
|
|
22
|
+
width: 1px;
|
|
23
|
+
height: 1.2em;
|
|
24
|
+
background: currentColor;
|
|
25
|
+
opacity: 0.2;
|
|
26
|
+
margin-right: 0.75rem;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/* Discourse navbar icon — multicolor brand logo */
|
|
30
|
+
.nf-icon-link--discourse:hover {
|
|
31
|
+
opacity: 0.8;
|
|
32
|
+
color: inherit;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/* Navbar wordmark logo — taller than the Docusaurus default 2rem */
|
|
36
|
+
.navbar__logo { height: var(--ifm-navbar-height); }
|
|
37
|
+
.navbar__logo img { height: 100%; width: auto; }
|
|
38
|
+
|
|
39
|
+
/* Separator between navbar logo and nav items */
|
|
40
|
+
.navbar__brand::after {
|
|
41
|
+
content: '';
|
|
42
|
+
display: inline-block;
|
|
43
|
+
width: 1px;
|
|
44
|
+
height: 1.2em;
|
|
45
|
+
background: currentColor;
|
|
46
|
+
opacity: 0.2;
|
|
47
|
+
margin-left: 1rem;
|
|
48
|
+
vertical-align: middle;
|
|
49
|
+
}
|
|
50
|
+
|
|
14
51
|
.main-wrapper > div {
|
|
15
52
|
/* work around issue from docusaurus doc grow/shrinking based on content */
|
|
16
53
|
width: 100%;
|
package/css/product-picker.css
CHANGED
|
@@ -25,12 +25,14 @@
|
|
|
25
25
|
position: relative;
|
|
26
26
|
padding-right: 1.2rem;
|
|
27
27
|
transition: color 0.3s ease;
|
|
28
|
+
font-weight: var(--ifm-font-weight-bold);
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
.nf-picker-trigger:hover,
|
|
31
32
|
.nf-resources-dropdown:hover,
|
|
32
33
|
.navbar__item.dropdown--show .nf-picker-trigger,
|
|
33
|
-
.navbar__item.dropdown--show .nf-resources-dropdown
|
|
34
|
+
.navbar__item.dropdown--show .nf-resources-dropdown,
|
|
35
|
+
.navbar__item.nf-picker--open .nf-picker-trigger {
|
|
34
36
|
color: var(--ifm-color-primary);
|
|
35
37
|
text-decoration: none;
|
|
36
38
|
}
|
|
@@ -59,17 +61,17 @@
|
|
|
59
61
|
opacity: 1;
|
|
60
62
|
}
|
|
61
63
|
|
|
62
|
-
/* Open: chevron
|
|
64
|
+
/* Open: chevron holds the hover drop position */
|
|
63
65
|
.nf-picker--open .nf-picker-trigger::after,
|
|
64
66
|
.navbar__item.dropdown--show .nf-resources-dropdown::after {
|
|
65
|
-
transform: translateY(-
|
|
67
|
+
transform: translateY(-20%);
|
|
66
68
|
opacity: 1;
|
|
67
69
|
}
|
|
68
70
|
|
|
69
71
|
/* Dark mode: cyan accent on hover */
|
|
70
72
|
[data-theme='dark'] .nf-picker-trigger:hover,
|
|
71
73
|
[data-theme='dark'] .nf-resources-dropdown:hover,
|
|
72
|
-
[data-theme='dark'] .nf-picker--open .nf-picker-trigger,
|
|
74
|
+
[data-theme='dark'] .navbar__item.nf-picker--open .nf-picker-trigger,
|
|
73
75
|
[data-theme='dark'] .navbar__item.dropdown--show .nf-resources-dropdown {
|
|
74
76
|
color: #22d3ee;
|
|
75
77
|
}
|
|
@@ -139,7 +141,9 @@
|
|
|
139
141
|
}
|
|
140
142
|
|
|
141
143
|
/* Narrower panel for the 2-column Resources menu */
|
|
142
|
-
.dropdown__menu:has(.picker-resources) { max-width:
|
|
144
|
+
.dropdown__menu:has(.picker-resources) { max-width: 400px; }
|
|
145
|
+
.nf-picker-panel--narrow { max-width: 430px; padding: 0.85rem 1.25rem; }
|
|
146
|
+
|
|
143
147
|
|
|
144
148
|
/* Ensure visibility when open */
|
|
145
149
|
.dropdown--show > .dropdown__menu,
|
|
@@ -181,9 +185,33 @@
|
|
|
181
185
|
transition: all 0.2s ease;
|
|
182
186
|
border-radius: 8px;
|
|
183
187
|
}
|
|
184
|
-
.picker-link:hover { background: rgba(0, 118, 255, 0.06); transform: translateX(3px); }
|
|
185
|
-
.picker-link strong { color: var(--ifm-font-color-base); font-size: 0.95rem; font-weight: 900; letter-spacing: -0.02em; display: block; }
|
|
186
|
-
.picker-link span { color: #64748b; font-size: 0.82rem; display: block; margin-top: 2px; line-height: 1.35; }
|
|
188
|
+
.picker-link:hover { background: rgba(0, 118, 255, 0.06); transform: translateX(3px); text-decoration: none; }
|
|
189
|
+
.picker-link strong { color: var(--ifm-font-color-base); font-size: 0.95rem; font-weight: 900; letter-spacing: -0.02em; display: block; text-decoration: none; }
|
|
190
|
+
.picker-link span { color: #64748b; font-size: 0.82rem; display: block; margin-top: 2px; line-height: 1.35; text-decoration: none; }
|
|
191
|
+
.nf-picker-panel--narrow .picker-link span { white-space: nowrap; }
|
|
192
|
+
|
|
193
|
+
/* ── Navbar icon links (GitHub, Discourse) ──────────────────────────────── */
|
|
194
|
+
.nf-icon-links {
|
|
195
|
+
display: flex;
|
|
196
|
+
align-items: center;
|
|
197
|
+
gap: 0.1rem;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.nf-icon-link,
|
|
201
|
+
.nf-icon-link:visited {
|
|
202
|
+
display: flex;
|
|
203
|
+
align-items: center;
|
|
204
|
+
justify-content: center;
|
|
205
|
+
width: 2rem;
|
|
206
|
+
height: 2rem;
|
|
207
|
+
color: var(--ifm-navbar-link-color);
|
|
208
|
+
text-decoration: none;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.nf-icon-link:hover {
|
|
212
|
+
color: var(--ifm-color-primary);
|
|
213
|
+
text-decoration: none;
|
|
214
|
+
}
|
|
187
215
|
|
|
188
216
|
/* ── Mobile (<= 996 px) ─────────────────────────────────────────────────── */
|
|
189
217
|
@media (max-width: 996px) {
|
package/css/theme.css
CHANGED
|
@@ -1,20 +1,51 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NetFoundry Docusaurus Theme - Combined Styles
|
|
3
|
-
*
|
|
4
|
-
* This file is automatically loaded by the theme via getClientModules().
|
|
5
|
-
*
|
|
6
|
-
* Consuming projects no longer need to manually add these imports
|
|
7
|
-
* to their custom.css files.
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
/* CSS variables for light mode */
|
|
11
|
-
@import "./vars.css";
|
|
12
|
-
|
|
13
|
-
/* CSS variables for dark mode */
|
|
14
|
-
@import "./vars-dark.css";
|
|
15
|
-
|
|
16
|
-
/* Layout styles */
|
|
17
|
-
@import "./layout.css";
|
|
18
|
-
|
|
19
|
-
/* Legacy design system variables and comprehensive styling */
|
|
20
|
-
@import "./legacy.css";
|
|
1
|
+
/**
|
|
2
|
+
* NetFoundry Docusaurus Theme - Combined Styles
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically loaded by the theme via getClientModules().
|
|
5
|
+
*
|
|
6
|
+
* Consuming projects no longer need to manually add these imports
|
|
7
|
+
* to their custom.css files.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/* CSS variables for light mode */
|
|
11
|
+
@import "./vars.css";
|
|
12
|
+
|
|
13
|
+
/* CSS variables for dark mode */
|
|
14
|
+
@import "./vars-dark.css";
|
|
15
|
+
|
|
16
|
+
/* Layout styles */
|
|
17
|
+
@import "./layout.css";
|
|
18
|
+
|
|
19
|
+
/* Legacy design system variables and comprehensive styling */
|
|
20
|
+
@import "./legacy.css";
|
|
21
|
+
|
|
22
|
+
/* ── Footer social link hover ───────────────────────────────────────────── */
|
|
23
|
+
footer a[class*="footerSocialLink"] {
|
|
24
|
+
transition: all 0.2s ease;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
[data-theme='dark'] footer a[class*="footerSocialLink"] {
|
|
28
|
+
background-color: #1a2640;
|
|
29
|
+
color: #64748b;
|
|
30
|
+
border: 1px solid rgba(148, 163, 184, 0.1);
|
|
31
|
+
}
|
|
32
|
+
[data-theme='dark'] footer a[class*="footerSocialLink"]:hover {
|
|
33
|
+
background-color: #22d3ee;
|
|
34
|
+
color: #020617;
|
|
35
|
+
border-color: transparent;
|
|
36
|
+
transform: translateY(-3px);
|
|
37
|
+
box-shadow: 0 6px 16px rgba(34, 211, 238, 0.35);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
[data-theme='light'] footer a[class*="footerSocialLink"] {
|
|
41
|
+
background-color: #e2e8f0;
|
|
42
|
+
color: #475569;
|
|
43
|
+
border: 1px solid rgba(0, 0, 0, 0.06);
|
|
44
|
+
}
|
|
45
|
+
[data-theme='light'] footer a[class*="footerSocialLink"]:hover {
|
|
46
|
+
background-color: #0891b2;
|
|
47
|
+
color: #ffffff;
|
|
48
|
+
border-color: transparent;
|
|
49
|
+
transform: translateY(-3px);
|
|
50
|
+
box-shadow: 0 6px 16px rgba(8, 145, 178, 0.3);
|
|
51
|
+
}
|
package/css/vars.css
CHANGED
package/dist/css/layout.css
CHANGED
|
@@ -11,6 +11,43 @@ html {
|
|
|
11
11
|
scrollbar-gutter: stable;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
+
/* Resources picker: sit after the color mode toggle, before search */
|
|
15
|
+
.navbar__items--right > div:has(.nf-picker-trigger) { order: 2; display: flex; align-items: center; }
|
|
16
|
+
.navbar__items--right > div:has(.DocSearch-Button) { order: 3; }
|
|
17
|
+
|
|
18
|
+
/* Separator between color mode toggle and resources picker */
|
|
19
|
+
.navbar__items--right > div:has(.nf-picker-trigger)::before {
|
|
20
|
+
content: '';
|
|
21
|
+
display: block;
|
|
22
|
+
width: 1px;
|
|
23
|
+
height: 1.2em;
|
|
24
|
+
background: currentColor;
|
|
25
|
+
opacity: 0.2;
|
|
26
|
+
margin-right: 0.75rem;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/* Discourse navbar icon — multicolor brand logo */
|
|
30
|
+
.nf-icon-link--discourse:hover {
|
|
31
|
+
opacity: 0.8;
|
|
32
|
+
color: inherit;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/* Navbar wordmark logo — taller than the Docusaurus default 2rem */
|
|
36
|
+
.navbar__logo { height: var(--ifm-navbar-height); }
|
|
37
|
+
.navbar__logo img { height: 100%; width: auto; }
|
|
38
|
+
|
|
39
|
+
/* Separator between navbar logo and nav items */
|
|
40
|
+
.navbar__brand::after {
|
|
41
|
+
content: '';
|
|
42
|
+
display: inline-block;
|
|
43
|
+
width: 1px;
|
|
44
|
+
height: 1.2em;
|
|
45
|
+
background: currentColor;
|
|
46
|
+
opacity: 0.2;
|
|
47
|
+
margin-left: 1rem;
|
|
48
|
+
vertical-align: middle;
|
|
49
|
+
}
|
|
50
|
+
|
|
14
51
|
.main-wrapper > div {
|
|
15
52
|
/* work around issue from docusaurus doc grow/shrinking based on content */
|
|
16
53
|
width: 100%;
|
|
@@ -25,12 +25,14 @@
|
|
|
25
25
|
position: relative;
|
|
26
26
|
padding-right: 1.2rem;
|
|
27
27
|
transition: color 0.3s ease;
|
|
28
|
+
font-weight: var(--ifm-font-weight-bold);
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
.nf-picker-trigger:hover,
|
|
31
32
|
.nf-resources-dropdown:hover,
|
|
32
33
|
.navbar__item.dropdown--show .nf-picker-trigger,
|
|
33
|
-
.navbar__item.dropdown--show .nf-resources-dropdown
|
|
34
|
+
.navbar__item.dropdown--show .nf-resources-dropdown,
|
|
35
|
+
.navbar__item.nf-picker--open .nf-picker-trigger {
|
|
34
36
|
color: var(--ifm-color-primary);
|
|
35
37
|
text-decoration: none;
|
|
36
38
|
}
|
|
@@ -59,17 +61,17 @@
|
|
|
59
61
|
opacity: 1;
|
|
60
62
|
}
|
|
61
63
|
|
|
62
|
-
/* Open: chevron
|
|
64
|
+
/* Open: chevron holds the hover drop position */
|
|
63
65
|
.nf-picker--open .nf-picker-trigger::after,
|
|
64
66
|
.navbar__item.dropdown--show .nf-resources-dropdown::after {
|
|
65
|
-
transform: translateY(-
|
|
67
|
+
transform: translateY(-20%);
|
|
66
68
|
opacity: 1;
|
|
67
69
|
}
|
|
68
70
|
|
|
69
71
|
/* Dark mode: cyan accent on hover */
|
|
70
72
|
[data-theme='dark'] .nf-picker-trigger:hover,
|
|
71
73
|
[data-theme='dark'] .nf-resources-dropdown:hover,
|
|
72
|
-
[data-theme='dark'] .nf-picker--open .nf-picker-trigger,
|
|
74
|
+
[data-theme='dark'] .navbar__item.nf-picker--open .nf-picker-trigger,
|
|
73
75
|
[data-theme='dark'] .navbar__item.dropdown--show .nf-resources-dropdown {
|
|
74
76
|
color: #22d3ee;
|
|
75
77
|
}
|
|
@@ -139,7 +141,9 @@
|
|
|
139
141
|
}
|
|
140
142
|
|
|
141
143
|
/* Narrower panel for the 2-column Resources menu */
|
|
142
|
-
.dropdown__menu:has(.picker-resources) { max-width:
|
|
144
|
+
.dropdown__menu:has(.picker-resources) { max-width: 400px; }
|
|
145
|
+
.nf-picker-panel--narrow { max-width: 430px; padding: 0.85rem 1.25rem; }
|
|
146
|
+
|
|
143
147
|
|
|
144
148
|
/* Ensure visibility when open */
|
|
145
149
|
.dropdown--show > .dropdown__menu,
|
|
@@ -181,9 +185,33 @@
|
|
|
181
185
|
transition: all 0.2s ease;
|
|
182
186
|
border-radius: 8px;
|
|
183
187
|
}
|
|
184
|
-
.picker-link:hover { background: rgba(0, 118, 255, 0.06); transform: translateX(3px); }
|
|
185
|
-
.picker-link strong { color: var(--ifm-font-color-base); font-size: 0.95rem; font-weight: 900; letter-spacing: -0.02em; display: block; }
|
|
186
|
-
.picker-link span { color: #64748b; font-size: 0.82rem; display: block; margin-top: 2px; line-height: 1.35; }
|
|
188
|
+
.picker-link:hover { background: rgba(0, 118, 255, 0.06); transform: translateX(3px); text-decoration: none; }
|
|
189
|
+
.picker-link strong { color: var(--ifm-font-color-base); font-size: 0.95rem; font-weight: 900; letter-spacing: -0.02em; display: block; text-decoration: none; }
|
|
190
|
+
.picker-link span { color: #64748b; font-size: 0.82rem; display: block; margin-top: 2px; line-height: 1.35; text-decoration: none; }
|
|
191
|
+
.nf-picker-panel--narrow .picker-link span { white-space: nowrap; }
|
|
192
|
+
|
|
193
|
+
/* ── Navbar icon links (GitHub, Discourse) ──────────────────────────────── */
|
|
194
|
+
.nf-icon-links {
|
|
195
|
+
display: flex;
|
|
196
|
+
align-items: center;
|
|
197
|
+
gap: 0.1rem;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.nf-icon-link,
|
|
201
|
+
.nf-icon-link:visited {
|
|
202
|
+
display: flex;
|
|
203
|
+
align-items: center;
|
|
204
|
+
justify-content: center;
|
|
205
|
+
width: 2rem;
|
|
206
|
+
height: 2rem;
|
|
207
|
+
color: var(--ifm-navbar-link-color);
|
|
208
|
+
text-decoration: none;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.nf-icon-link:hover {
|
|
212
|
+
color: var(--ifm-color-primary);
|
|
213
|
+
text-decoration: none;
|
|
214
|
+
}
|
|
187
215
|
|
|
188
216
|
/* ── Mobile (<= 996 px) ─────────────────────────────────────────────────── */
|
|
189
217
|
@media (max-width: 996px) {
|
package/dist/css/theme.css
CHANGED
|
@@ -1,20 +1,51 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* NetFoundry Docusaurus Theme - Combined Styles
|
|
3
|
-
*
|
|
4
|
-
* This file is automatically loaded by the theme via getClientModules().
|
|
5
|
-
*
|
|
6
|
-
* Consuming projects no longer need to manually add these imports
|
|
7
|
-
* to their custom.css files.
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
/* CSS variables for light mode */
|
|
11
|
-
@import "./vars.css";
|
|
12
|
-
|
|
13
|
-
/* CSS variables for dark mode */
|
|
14
|
-
@import "./vars-dark.css";
|
|
15
|
-
|
|
16
|
-
/* Layout styles */
|
|
17
|
-
@import "./layout.css";
|
|
18
|
-
|
|
19
|
-
/* Legacy design system variables and comprehensive styling */
|
|
20
|
-
@import "./legacy.css";
|
|
1
|
+
/**
|
|
2
|
+
* NetFoundry Docusaurus Theme - Combined Styles
|
|
3
|
+
*
|
|
4
|
+
* This file is automatically loaded by the theme via getClientModules().
|
|
5
|
+
*
|
|
6
|
+
* Consuming projects no longer need to manually add these imports
|
|
7
|
+
* to their custom.css files.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/* CSS variables for light mode */
|
|
11
|
+
@import "./vars.css";
|
|
12
|
+
|
|
13
|
+
/* CSS variables for dark mode */
|
|
14
|
+
@import "./vars-dark.css";
|
|
15
|
+
|
|
16
|
+
/* Layout styles */
|
|
17
|
+
@import "./layout.css";
|
|
18
|
+
|
|
19
|
+
/* Legacy design system variables and comprehensive styling */
|
|
20
|
+
@import "./legacy.css";
|
|
21
|
+
|
|
22
|
+
/* ── Footer social link hover ───────────────────────────────────────────── */
|
|
23
|
+
footer a[class*="footerSocialLink"] {
|
|
24
|
+
transition: all 0.2s ease;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
[data-theme='dark'] footer a[class*="footerSocialLink"] {
|
|
28
|
+
background-color: #1a2640;
|
|
29
|
+
color: #64748b;
|
|
30
|
+
border: 1px solid rgba(148, 163, 184, 0.1);
|
|
31
|
+
}
|
|
32
|
+
[data-theme='dark'] footer a[class*="footerSocialLink"]:hover {
|
|
33
|
+
background-color: #22d3ee;
|
|
34
|
+
color: #020617;
|
|
35
|
+
border-color: transparent;
|
|
36
|
+
transform: translateY(-3px);
|
|
37
|
+
box-shadow: 0 6px 16px rgba(34, 211, 238, 0.35);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
[data-theme='light'] footer a[class*="footerSocialLink"] {
|
|
41
|
+
background-color: #e2e8f0;
|
|
42
|
+
color: #475569;
|
|
43
|
+
border: 1px solid rgba(0, 0, 0, 0.06);
|
|
44
|
+
}
|
|
45
|
+
[data-theme='light'] footer a[class*="footerSocialLink"]:hover {
|
|
46
|
+
background-color: #0891b2;
|
|
47
|
+
color: #ffffff;
|
|
48
|
+
border-color: transparent;
|
|
49
|
+
transform: translateY(-3px);
|
|
50
|
+
box-shadow: 0 6px 16px rgba(8, 145, 178, 0.3);
|
|
51
|
+
}
|
package/dist/css/vars.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NetFoundryFooter.d.ts","sourceRoot":"","sources":["../../../../src/components/NetFoundryFooter/NetFoundryFooter.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAC,aAAa,EAAE,SAAS,EAAC,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"NetFoundryFooter.d.ts","sourceRoot":"","sources":["../../../../src/components/NetFoundryFooter/NetFoundryFooter.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAC,aAAa,EAAE,SAAS,EAAC,MAAM,OAAO,CAAC;AAOtD,MAAM,WAAW,WAAW;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AACD,eAAO,MAAM,kBAAkB,EAAE,WAOhC,CAAC;AAGF,MAAM,MAAM,UAAU,GAAG,KAAK,CAAC,SAAS,GAAG;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AAE3E,MAAM,MAAM,qBAAqB,GAAG;IAChC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,kBAAkB,CAAC,EAAE,UAAU,EAAE,CAAC;IAClC,cAAc,CAAC,EAAE,UAAU,EAAE,CAAC;IAC9B,aAAa,CAAC,EAAE,UAAU,EAAE,CAAC;IAC7B,QAAQ,CAAC,EAAE,SAAS,CAAC;CACxB,CAAC;AAUF,wBAAgB,4BAA4B,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC,qBAAqB,CAAC,GAAG,qBAAqB,CAyB9G;AAcD,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,qBAAqB,2CAoF5D"}
|
|
@@ -3,6 +3,7 @@ import clsx from 'clsx';
|
|
|
3
3
|
import { NetFoundryHorizontalSection } from "../NetFoundryHorizontalSection";
|
|
4
4
|
import useBaseUrl from "@docusaurus/useBaseUrl";
|
|
5
5
|
import styles from './styles.module.css';
|
|
6
|
+
import { GitHubIcon, XIcon, YouTubeIcon } from '../icons';
|
|
6
7
|
export const defaultSocialProps = {
|
|
7
8
|
twitterUrl: '',
|
|
8
9
|
linkedInUrl: '',
|
|
@@ -54,7 +55,7 @@ export function NetFoundryFooter(props) {
|
|
|
54
55
|
const sp = { ...defaultSocialProps, ...(props.socialProps ?? {}) };
|
|
55
56
|
if (children)
|
|
56
57
|
return _jsx(_Fragment, { children: children });
|
|
57
|
-
return (_jsx("footer", { className: clsx(className, styles.ozFooter), style: style, children: _jsxs(NetFoundryHorizontalSection, { className: styles.footer, children: [_jsx("div", { className: styles.footerContainer, children: _jsxs("div", { className: styles.footerGrid, children: [_jsxs("div", { className: styles.footerColumn, children: [_jsx("h3", { children: "NetFoundry" }), _jsx("p", { children: description ?? 'An open source project enabling developers to embed zero trust networking directly into applications.' }), _jsxs("div", { className: styles.footerSocialLinks, children: [sp.githubUrl && (_jsx("a", { href: sp.githubUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx(
|
|
58
|
+
return (_jsx("footer", { className: clsx(className, styles.ozFooter), style: style, children: _jsxs(NetFoundryHorizontalSection, { className: styles.footer, children: [_jsx("div", { className: styles.footerContainer, children: _jsxs("div", { className: styles.footerGrid, children: [_jsxs("div", { className: styles.footerColumn, children: [_jsx("h3", { children: "NetFoundry" }), _jsx("p", { children: description ?? 'An open source project enabling developers to embed zero trust networking directly into applications.' }), _jsxs("div", { className: styles.footerSocialLinks, children: [sp.githubUrl && (_jsx("a", { href: sp.githubUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx(GitHubIcon, { width: 20, height: 20 }) })), sp.linkedInUrl && (_jsx("a", { href: sp.linkedInUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsxs("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("path", { d: "M15.996 16V10.1C15.996 7.5 15.375 5.49999 12.025 5.49999C10.4 5.49999 9.325 6.39999 8.875 7.29999H8.825V5.79999H5.65V16H8.95V10.7C8.95 9.30001 9.2 7.9 10.925 7.9C12.65 7.9 12.675 9.59999 12.675 10.8V16H15.996Z" }), _jsx("path", { d: "M0.25 5.79999H3.575V16H0.25V5.79999Z" }), _jsx("path", { d: "M1.9 0C0.85 0 0 0.85 0 1.9C0 2.95 0.85 3.8 1.9 3.8C2.95 3.8 3.8 2.95 3.8 1.9C3.8 0.85 2.95 0 1.9 0Z" })] }) })), sp.youtubeUrl && (_jsx("a", { href: sp.youtubeUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx(YouTubeIcon, { width: 16, height: 16 }) })), sp.twitterUrl && (_jsx("a", { href: sp.twitterUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx(XIcon, { width: 16, height: 16 }) })), sp.facebookUrl && (_jsx("a", { href: sp.facebookUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx("span", { children: "f" }) })), sp.instagramUrl && (_jsx("a", { href: sp.instagramUrl, target: "_blank", className: styles.footerSocialLink, rel: "noreferrer", children: _jsx("span", { children: "ig" }) }))] })] }), _jsx(ListBlock, { title: "Documentation", items: props.documentationLinks ?? [
|
|
58
59
|
_jsx("a", { href: useBaseUrl("/docs/learn/quickstarts/services/ztha"), children: "Getting Started" }),
|
|
59
60
|
_jsx("a", { href: useBaseUrl("/docs/reference/developer/api/"), children: "API Reference" }),
|
|
60
61
|
_jsx("a", { href: useBaseUrl("/docs/reference/developer/sdk/"), children: "SDK Integration" }),
|
|
@@ -65,6 +66,6 @@ export function NetFoundryFooter(props) {
|
|
|
65
66
|
] }), _jsx(ListBlock, { title: "Resources", items: props.resourceLinks ?? [
|
|
66
67
|
_jsx("a", { href: "https://blog.openziti.io", children: "OpenZiti Tech Blog" }),
|
|
67
68
|
_jsx("a", { href: "https://netfoundry.io/", children: "NetFoundry" }),
|
|
68
|
-
] })] }) }), _jsx("div", { className: styles.footerCopyright, children:
|
|
69
|
+
] })] }) }), _jsx("div", { className: styles.footerCopyright, children: _jsxs("p", { children: ["\u00A9 ", new Date().getFullYear(), " NetFoundry Inc. OpenZiti is an open source project sponsored by NetFoundry. All rights reserved."] }) })] }) }));
|
|
69
70
|
}
|
|
70
71
|
//# sourceMappingURL=NetFoundryFooter.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NetFoundryFooter.js","sourceRoot":"","sources":["../../../../src/components/NetFoundryFooter/NetFoundryFooter.tsx"],"names":[],"mappings":";AACA,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAC,2BAA2B,EAAC,MAAM,gCAAgC,CAAC;AAC3E,OAAO,UAAU,MAAM,wBAAwB,CAAC;AAChD,OAAO,MAAM,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"NetFoundryFooter.js","sourceRoot":"","sources":["../../../../src/components/NetFoundryFooter/NetFoundryFooter.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DiscourseIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/icons/DiscourseIcon.tsx"],"names":[],"mappings":"AAEA,KAAK,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EAAC,KAAU,EAAE,MAAW,EAAE,SAAS,EAAC,EAAE,KAAK,2CAWhF"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
export default function DiscourseIcon({ width = 24, height = 24, className }) {
|
|
3
|
+
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 -1 104 106", width: width, height: height, className: className, children: [_jsx("path", { fill: "#231f20", d: "M51.87 0C23.71 0 0 22.83 0 51v52.81l51.86-.05c28.16 0 51-23.71 51-51.87S80 0 51.87 0Z" }), _jsx("path", { fill: "#fff9ae", d: "M52.37 19.74a31.62 31.62 0 0 0-27.79 46.67l-5.72 18.4 20.54-4.64a31.61 31.61 0 1 0 13-60.43Z" }), _jsx("path", { fill: "#00aeef", d: "M77.45 32.12a31.6 31.6 0 0 1-38.05 48l-20.54 4.7 20.91-2.47a31.6 31.6 0 0 0 37.68-50.23Z" }), _jsx("path", { fill: "#00a94f", d: "M71.63 26.29A31.6 31.6 0 0 1 38.8 78l-19.94 6.82 20.54-4.65a31.6 31.6 0 0 0 32.23-53.88Z" }), _jsx("path", { fill: "#f15d22", d: "M26.47 67.11a31.61 31.61 0 0 1 51-35 31.61 31.61 0 0 0-52.89 34.3l-5.72 18.4Z" }), _jsx("path", { fill: "#e31b23", d: "M24.58 66.41a31.61 31.61 0 0 1 47.05-40.12 31.61 31.61 0 0 0-49 39.63l-3.76 18.9Z" })] }));
|
|
4
|
+
}
|
|
5
|
+
//# sourceMappingURL=DiscourseIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DiscourseIcon.js","sourceRoot":"","sources":["../../../../src/components/icons/DiscourseIcon.tsx"],"names":[],"mappings":";AAIA,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EAAC,KAAK,GAAG,EAAE,EAAE,MAAM,GAAG,EAAE,EAAE,SAAS,EAAQ;IAC/E,OAAO,CACL,eAAK,KAAK,EAAC,4BAA4B,EAAC,OAAO,EAAC,cAAc,EAAC,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,SAAS,aAC/G,eAAM,IAAI,EAAC,SAAS,EAAC,CAAC,EAAC,uFAAuF,GAAE,EAChH,eAAM,IAAI,EAAC,SAAS,EAAC,CAAC,EAAC,8FAA8F,GAAE,EACvH,eAAM,IAAI,EAAC,SAAS,EAAC,CAAC,EAAC,0FAA0F,GAAE,EACnH,eAAM,IAAI,EAAC,SAAS,EAAC,CAAC,EAAC,0FAA0F,GAAE,EACnH,eAAM,IAAI,EAAC,SAAS,EAAC,CAAC,EAAC,+EAA+E,GAAE,EACxG,eAAM,IAAI,EAAC,SAAS,EAAC,CAAC,EAAC,mFAAmF,GAAE,IACxG,CACP,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GitHubIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/icons/GitHubIcon.tsx"],"names":[],"mappings":"AAEA,KAAK,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAAC,KAAU,EAAE,MAAW,EAAE,SAAS,EAAC,EAAE,KAAK,2CAM7E"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
export default function GitHubIcon({ width = 24, height = 24, className }) {
|
|
3
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 16 16", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", className: className, children: _jsx("path", { d: "M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z" }) }));
|
|
4
|
+
}
|
|
5
|
+
//# sourceMappingURL=GitHubIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GitHubIcon.js","sourceRoot":"","sources":["../../../../src/components/icons/GitHubIcon.tsx"],"names":[],"mappings":";AAIA,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAAC,KAAK,GAAG,EAAE,EAAE,MAAM,GAAG,EAAE,EAAE,SAAS,EAAQ;IAC5E,OAAO,CACL,cAAK,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,EAAC,KAAK,EAAC,4BAA4B,EAAC,SAAS,EAAE,SAAS,YAChI,eAAM,CAAC,EAAC,4jBAA4jB,GAAE,GAClkB,CACP,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"XIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/icons/XIcon.tsx"],"names":[],"mappings":"AAEA,KAAK,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,KAAK,CAAC,EAAC,KAAU,EAAE,MAAW,EAAE,SAAS,EAAC,EAAE,KAAK,2CAMxE"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
export default function XIcon({ width = 16, height = 16, className }) {
|
|
3
|
+
return (_jsx("svg", { width: width, height: height, viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", className: className, children: _jsx("path", { d: "M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" }) }));
|
|
4
|
+
}
|
|
5
|
+
//# sourceMappingURL=XIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"XIcon.js","sourceRoot":"","sources":["../../../../src/components/icons/XIcon.tsx"],"names":[],"mappings":";AAIA,MAAM,CAAC,OAAO,UAAU,KAAK,CAAC,EAAC,KAAK,GAAG,EAAE,EAAE,MAAM,GAAG,EAAE,EAAE,SAAS,EAAQ;IACvE,OAAO,CACL,cAAK,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAC,WAAW,EAAC,IAAI,EAAC,cAAc,EAAC,KAAK,EAAC,4BAA4B,EAAC,SAAS,EAAE,SAAS,YAChI,eAAM,CAAC,EAAC,6JAA6J,GAAE,GACnK,CACP,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"YouTubeIcon.d.ts","sourceRoot":"","sources":["../../../../src/components/icons/YouTubeIcon.tsx"],"names":[],"mappings":"AAEA,KAAK,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAErE,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,EAAC,KAAU,EAAE,MAAW,EAAE,SAAS,EAAC,EAAE,KAAK,2CAO9E"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
export default function YouTubeIcon({ width = 24, height = 24, className }) {
|
|
3
|
+
return (_jsxs("svg", { viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, className: className, children: [_jsx("path", { d: "M22.54 6.42a2.78 2.78 0 0 0-1.95-1.97C18.88 4 12 4 12 4s-6.88 0-8.59.45A2.78 2.78 0 0 0 1.46 6.42 29 29 0 0 0 1 12a29 29 0 0 0 .46 5.58A2.78 2.78 0 0 0 3.41 19.6C5.12 20 12 20 12 20s6.88 0 8.59-.45a2.78 2.78 0 0 0 1.95-1.97A29 29 0 0 0 23 12a29 29 0 0 0-.46-5.58z", fill: "#ff0000" }), _jsx("polygon", { points: "9.75 15.02 15.5 12 9.75 8.98 9.75 15.02", fill: "white" })] }));
|
|
4
|
+
}
|
|
5
|
+
//# sourceMappingURL=YouTubeIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"YouTubeIcon.js","sourceRoot":"","sources":["../../../../src/components/icons/YouTubeIcon.tsx"],"names":[],"mappings":";AAIA,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,EAAC,KAAK,GAAG,EAAE,EAAE,MAAM,GAAG,EAAE,EAAE,SAAS,EAAQ;IAC7E,OAAO,CACL,eAAK,OAAO,EAAC,WAAW,EAAC,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,SAAS,aAC5G,eAAM,CAAC,EAAC,yQAAyQ,EAAC,IAAI,EAAC,SAAS,GAAE,EAClS,kBAAS,MAAM,EAAC,yCAAyC,EAAC,IAAI,EAAC,OAAO,GAAE,IACpE,CACP,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/icons/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,aAAa,EAAC,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAC,OAAO,IAAI,UAAU,EAAC,MAAM,cAAc,CAAC;AACnD,OAAO,EAAC,OAAO,IAAI,KAAK,EAAC,MAAM,SAAS,CAAC;AACzC,OAAO,EAAC,OAAO,IAAI,WAAW,EAAC,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/icons/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,OAAO,IAAI,aAAa,EAAC,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAC,OAAO,IAAI,UAAU,EAAC,MAAM,cAAc,CAAC;AACnD,OAAO,EAAC,OAAO,IAAI,KAAK,EAAC,MAAM,SAAS,CAAC;AACzC,OAAO,EAAC,OAAO,IAAI,WAAW,EAAC,MAAM,eAAe,CAAC"}
|