@node-core/ui-components 1.0.1-a459447336d99556960d6f9e1c997327b29e4974 → 1.0.1-ab0ba1dcb1d91392c44e91b1e74e9f565e460543
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/.lintstagedrc.json +5 -0
- package/.postcssrc.json +6 -0
- package/.storybook/constants.ts +28 -0
- package/.storybook/main.ts +38 -0
- package/.storybook/preview-head.html +20 -0
- package/.storybook/preview.tsx +32 -0
- package/.stylelintignore +1 -0
- package/.stylelintrc.mjs +56 -0
- package/__design__/colors.stories.tsx +82 -0
- package/__design__/effects.stories.tsx +7 -0
- package/__design__/font-family.stories.tsx +76 -0
- package/__design__/list.stories.tsx +27 -0
- package/__design__/node-logos.stories.tsx +61 -0
- package/__design__/platform-logos.stories.tsx +31 -0
- package/__design__/social-logos.stories.tsx +33 -0
- package/__design__/table.stories.tsx +56 -0
- package/__design__/text.stories.tsx +100 -0
- package/eslint.config.js +61 -0
- package/package.json +45 -6
- package/src/Common/AlertBox/index.module.css +83 -0
- package/src/Common/AlertBox/index.stories.tsx +96 -0
- package/src/Common/AlertBox/index.tsx +24 -0
- package/src/Common/AvatarGroup/Avatar/index.module.css +40 -0
- package/src/Common/AvatarGroup/Avatar/index.stories.tsx +22 -0
- package/src/Common/AvatarGroup/Avatar/index.tsx +67 -0
- package/src/Common/AvatarGroup/Overlay/index.module.css +31 -0
- package/src/Common/AvatarGroup/Overlay/index.stories.tsx +33 -0
- package/src/Common/AvatarGroup/Overlay/index.tsx +37 -0
- package/src/Common/AvatarGroup/__tests__/index.test.jsx +55 -0
- package/src/Common/AvatarGroup/index.module.css +21 -0
- package/src/Common/AvatarGroup/index.stories.tsx +56 -0
- package/src/Common/AvatarGroup/index.tsx +83 -0
- package/src/Common/Badge/index.module.css +38 -0
- package/src/Common/Badge/index.stories.tsx +38 -0
- package/src/Common/Badge/index.tsx +35 -0
- package/src/Common/BadgeGroup/index.module.css +77 -0
- package/src/Common/BadgeGroup/index.stories.tsx +35 -0
- package/src/Common/BadgeGroup/index.tsx +35 -0
- package/src/Common/Banner/index.module.css +42 -0
- package/src/Common/Banner/index.stories.tsx +29 -0
- package/src/Common/Banner/index.tsx +18 -0
- package/src/Common/BaseActiveLink/__tests__/index.test.jsx +52 -0
- package/src/Common/BaseActiveLink/index.tsx +34 -0
- package/src/Common/BaseButton/index.module.css +145 -0
- package/src/Common/BaseButton/index.stories.tsx +67 -0
- package/src/Common/BaseButton/index.tsx +59 -0
- package/src/Common/BaseCodeBox/index.module.css +78 -0
- package/src/Common/BaseCodeBox/index.stories.tsx +39 -0
- package/src/Common/BaseCodeBox/index.tsx +122 -0
- package/src/Common/BaseCrossLink/index.module.css +51 -0
- package/src/Common/BaseCrossLink/index.stories.tsx +38 -0
- package/src/Common/BaseCrossLink/index.tsx +46 -0
- package/src/Common/BaseLinkTabs/index.module.css +43 -0
- package/src/Common/BaseLinkTabs/index.stories.tsx +34 -0
- package/src/Common/BaseLinkTabs/index.tsx +53 -0
- package/src/Common/BasePagination/Ellipsis/index.module.css +10 -0
- package/src/Common/BasePagination/Ellipsis/index.stories.tsx +10 -0
- package/src/Common/BasePagination/Ellipsis/index.tsx +11 -0
- package/src/Common/BasePagination/PaginationListItem/__tests__/index.test.jsx +58 -0
- package/src/Common/BasePagination/PaginationListItem/index.module.css +27 -0
- package/src/Common/BasePagination/PaginationListItem/index.stories.tsx +40 -0
- package/src/Common/BasePagination/PaginationListItem/index.tsx +39 -0
- package/src/Common/BasePagination/PrevNextArrow.tsx +15 -0
- package/src/Common/BasePagination/__tests__/index.test.jsx +180 -0
- package/src/Common/BasePagination/index.module.css +39 -0
- package/src/Common/BasePagination/index.stories.tsx +67 -0
- package/src/Common/BasePagination/index.tsx +77 -0
- package/src/Common/BasePagination/useGetPageElements.tsx +132 -0
- package/src/Common/Blockquote/index.module.css +29 -0
- package/src/Common/Blockquote/index.stories.tsx +45 -0
- package/src/Common/Blockquote/index.tsx +11 -0
- package/src/Common/Breadcrumbs/BreadcrumbHomeLink/index.module.css +5 -0
- package/src/Common/Breadcrumbs/BreadcrumbHomeLink/index.tsx +30 -0
- package/src/Common/Breadcrumbs/BreadcrumbItem/index.module.css +41 -0
- package/src/Common/Breadcrumbs/BreadcrumbItem/index.tsx +42 -0
- package/src/Common/Breadcrumbs/BreadcrumbLink/index.module.css +22 -0
- package/src/Common/Breadcrumbs/BreadcrumbLink/index.tsx +37 -0
- package/src/Common/Breadcrumbs/BreadcrumbRoot/index.module.css +9 -0
- package/src/Common/Breadcrumbs/BreadcrumbRoot/index.tsx +20 -0
- package/src/Common/Breadcrumbs/BreadcrumbTruncatedItem/index.tsx +9 -0
- package/src/Common/Breadcrumbs/index.stories.tsx +94 -0
- package/src/Common/Breadcrumbs/index.tsx +81 -0
- package/src/Common/ChangeHistory/index.module.css +83 -0
- package/src/Common/ChangeHistory/index.stories.tsx +130 -0
- package/src/Common/ChangeHistory/index.tsx +67 -0
- package/src/Common/CodeTabs/index.module.css +56 -0
- package/src/Common/CodeTabs/index.stories.tsx +73 -0
- package/src/Common/CodeTabs/index.tsx +16 -0
- package/src/Common/DataTag/index.module.css +56 -0
- package/src/Common/DataTag/index.stories.tsx +40 -0
- package/src/Common/DataTag/index.tsx +39 -0
- package/src/Common/GlowingBackdrop/index.module.css +32 -0
- package/src/Common/GlowingBackdrop/index.stories.tsx +10 -0
- package/src/Common/GlowingBackdrop/index.tsx +13 -0
- package/src/Common/LanguageDropDown/index.module.css +53 -0
- package/src/Common/LanguageDropDown/index.stories.tsx +19 -0
- package/src/Common/LanguageDropDown/index.tsx +56 -0
- package/src/Common/Modal/index.module.css +79 -0
- package/src/Common/Modal/index.stories.tsx +34 -0
- package/src/Common/Modal/index.tsx +50 -0
- package/src/Common/NodejsLogo/index.module.css +6 -0
- package/src/Common/NodejsLogo/index.stories.tsx +14 -0
- package/src/Common/NodejsLogo/index.tsx +26 -0
- package/src/Common/Notification/index.module.css +20 -0
- package/src/Common/Notification/index.stories.tsx +36 -0
- package/src/Common/Notification/index.tsx +34 -0
- package/src/Common/Preview/index.module.css +79 -0
- package/src/Common/Preview/index.stories.tsx +44 -0
- package/src/Common/Preview/index.tsx +25 -0
- package/src/Common/Select/__tests__/index.test.jsx +67 -0
- package/src/Common/Select/index.module.css +161 -0
- package/src/Common/Select/index.stories.tsx +111 -0
- package/src/Common/Select/index.tsx +187 -0
- package/src/Common/Separator/index.module.css +16 -0
- package/src/Common/Separator/index.stories.tsx +32 -0
- package/src/Common/Separator/index.tsx +27 -0
- package/src/Common/Skeleton/index.module.css +30 -0
- package/src/Common/Skeleton/index.tsx +39 -0
- package/src/Common/Tabs/__tests__/index.test.jsx +52 -0
- package/src/Common/Tabs/index.module.css +54 -0
- package/src/Common/Tabs/index.stories.tsx +50 -0
- package/src/Common/Tabs/index.tsx +54 -0
- package/src/Common/ThemeToggle/__tests__/index.test.jsx +35 -0
- package/src/Common/ThemeToggle/index.module.css +15 -0
- package/src/Common/ThemeToggle/index.stories.tsx +10 -0
- package/src/Common/ThemeToggle/index.tsx +15 -0
- package/src/Common/Tooltip/index.module.css +43 -0
- package/src/Common/Tooltip/index.stories.tsx +73 -0
- package/src/Common/Tooltip/index.tsx +48 -0
- package/src/Containers/Article/index.module.css +70 -0
- package/src/Containers/Article/index.stories.tsx +39 -0
- package/src/Containers/Article/index.tsx +9 -0
- package/src/Containers/DocSideBar/index.tsx +0 -0
- package/src/Containers/Footer/index.module.css +46 -0
- package/src/Containers/Footer/index.stories.tsx +27 -0
- package/src/Containers/Footer/index.tsx +95 -0
- package/src/Containers/MetaBar/__tests__/index.test.jsx +63 -0
- package/src/Containers/MetaBar/index.module.css +91 -0
- package/src/Containers/MetaBar/index.stories.tsx +80 -0
- package/src/Containers/MetaBar/index.tsx +72 -0
- package/src/Containers/NavBar/NavItem/index.module.css +60 -0
- package/src/Containers/NavBar/NavItem/index.stories.tsx +38 -0
- package/src/Containers/NavBar/NavItem/index.tsx +44 -0
- package/src/Containers/NavBar/index.module.css +125 -0
- package/src/Containers/NavBar/index.stories.tsx +45 -0
- package/src/Containers/NavBar/index.tsx +94 -0
- package/src/Containers/Sidebar/ProgressionIcon/index.tsx +16 -0
- package/src/Containers/Sidebar/SidebarGroup/index.module.css +64 -0
- package/src/Containers/Sidebar/SidebarGroup/index.stories.tsx +36 -0
- package/src/Containers/Sidebar/SidebarGroup/index.tsx +49 -0
- package/src/Containers/Sidebar/SidebarItem/index.module.css +56 -0
- package/src/Containers/Sidebar/SidebarItem/index.stories.tsx +15 -0
- package/src/Containers/Sidebar/SidebarItem/index.tsx +43 -0
- package/src/Containers/Sidebar/index.module.css +30 -0
- package/src/Containers/Sidebar/index.stories.tsx +88 -0
- package/src/Containers/Sidebar/index.tsx +70 -0
- package/src/Icons/HexagonGrid.stories.tsx +10 -0
- package/src/Icons/HexagonGrid.tsx +1434 -0
- package/src/Icons/InstallationMethod/Choco.tsx +78 -0
- package/src/Icons/InstallationMethod/Devbox.tsx +21 -0
- package/src/Icons/InstallationMethod/Docker.tsx +20 -0
- package/src/Icons/InstallationMethod/FNM.tsx +132 -0
- package/src/Icons/InstallationMethod/Homebrew.tsx +69 -0
- package/src/Icons/InstallationMethod/N.tsx +32 -0
- package/src/Icons/InstallationMethod/NVM.tsx +63 -0
- package/src/Icons/InstallationMethod/Volta.tsx +34 -0
- package/{Icons/InstallationMethod/index.js → src/Icons/InstallationMethod/index.ts} +1 -0
- package/src/Icons/Logos/JsGreen.tsx +24 -0
- package/src/Icons/Logos/JsWhite.tsx +37 -0
- package/src/Icons/Logos/Nodejs.tsx +372 -0
- package/src/Icons/Logos/NodejsStackedBlack.tsx +98 -0
- package/src/Icons/Logos/NodejsStackedDark.tsx +124 -0
- package/src/Icons/Logos/NodejsStackedLight.tsx +123 -0
- package/src/Icons/Logos/NodejsStackedWhite.tsx +98 -0
- package/src/Icons/Logos/index.ts +17 -0
- package/src/Icons/OperatingSystem/AIX.tsx +46 -0
- package/src/Icons/OperatingSystem/Apple.tsx +23 -0
- package/src/Icons/OperatingSystem/Linux.tsx +969 -0
- package/src/Icons/OperatingSystem/Microsoft.tsx +19 -0
- package/{Icons/OperatingSystem/index.js → src/Icons/OperatingSystem/index.ts} +1 -0
- package/src/Icons/PackageManager/Npm.tsx +21 -0
- package/src/Icons/PackageManager/Pnpm.tsx +22 -0
- package/src/Icons/PackageManager/Yarn.tsx +22 -0
- package/{Icons/PackageManager/index.js → src/Icons/PackageManager/index.ts} +1 -0
- package/src/Icons/Social/Bluesky.tsx +19 -0
- package/src/Icons/Social/Discord.tsx +20 -0
- package/src/Icons/Social/GitHub.tsx +16 -0
- package/src/Icons/Social/LinkedIn.tsx +16 -0
- package/src/Icons/Social/Mastodon.tsx +36 -0
- package/src/Icons/Social/Slack.tsx +31 -0
- package/src/Icons/Social/X.tsx +16 -0
- package/{Icons/Social/index.js → src/Icons/Social/index.ts} +1 -0
- package/src/MDX/CodeTabs.tsx +47 -0
- package/src/global.d.ts +4 -0
- package/src/stylelint/__tests__/index.test.mjs +80 -0
- package/src/stylelint/one-utility-class-per-line.mjs +64 -0
- package/{stylelint → src/stylelint}/utils.mjs +25 -19
- package/src/styles/animations.css +47 -0
- package/src/styles/base.css +17 -0
- package/src/styles/effects.css +12 -0
- package/src/styles/index.css +38 -0
- package/src/styles/markdown.css +173 -0
- package/src/styles/theme.css +175 -0
- package/src/types.ts +25 -0
- package/tsconfig.json +20 -0
- package/turbo.json +31 -0
- package/Common/AlertBox/index.js +0 -5
- package/Common/AlertBox/index.module.css +0 -77
- package/Common/AvatarGroup/Avatar/index.js +0 -11
- package/Common/AvatarGroup/Avatar/index.module.css +0 -60
- package/Common/AvatarGroup/Overlay/index.js +0 -6
- package/Common/AvatarGroup/Overlay/index.module.css +0 -38
- package/Common/AvatarGroup/index.js +0 -21
- package/Common/AvatarGroup/index.module.css +0 -22
- package/Common/Badge/index.js +0 -7
- package/Common/Badge/index.module.css +0 -46
- package/Common/BadgeGroup/index.js +0 -6
- package/Common/BadgeGroup/index.module.css +0 -101
- package/Common/Banner/index.js +0 -4
- package/Common/Banner/index.module.css +0 -45
- package/Common/BaseActiveLink/index.js +0 -14
- package/Common/BaseButton/index.js +0 -10
- package/Common/BaseButton/index.module.css +0 -372
- package/Common/BaseCodeBox/index.js +0 -50
- package/Common/BaseCodeBox/index.module.css +0 -96
- package/Common/BaseCrossLink/index.js +0 -12
- package/Common/BaseCrossLink/index.module.css +0 -69
- package/Common/BaseLinkTabs/index.js +0 -5
- package/Common/BaseLinkTabs/index.module.css +0 -77
- package/Common/BasePagination/Ellipsis/index.js +0 -4
- package/Common/BasePagination/Ellipsis/index.module.css +0 -16
- package/Common/BasePagination/PaginationListItem/index.js +0 -6
- package/Common/BasePagination/PaginationListItem/index.module.css +0 -42
- package/Common/BasePagination/PrevNextArrow.js +0 -7
- package/Common/BasePagination/index.js +0 -10
- package/Common/BasePagination/index.module.css +0 -40
- package/Common/BasePagination/useGetPageElements.js +0 -77
- package/Common/Blockquote/index.js +0 -4
- package/Common/Blockquote/index.module.css +0 -50
- package/Common/Breadcrumbs/BreadcrumbHomeLink/index.js +0 -9
- package/Common/Breadcrumbs/BreadcrumbHomeLink/index.module.css +0 -5
- package/Common/Breadcrumbs/BreadcrumbItem/index.js +0 -6
- package/Common/Breadcrumbs/BreadcrumbItem/index.module.css +0 -52
- package/Common/Breadcrumbs/BreadcrumbLink/index.js +0 -5
- package/Common/Breadcrumbs/BreadcrumbLink/index.module.css +0 -32
- package/Common/Breadcrumbs/BreadcrumbRoot/index.js +0 -4
- package/Common/Breadcrumbs/BreadcrumbRoot/index.module.css +0 -10
- package/Common/Breadcrumbs/BreadcrumbTruncatedItem/index.js +0 -4
- package/Common/Breadcrumbs/index.js +0 -22
- package/Common/ChangeHistory/index.js +0 -9
- package/Common/ChangeHistory/index.module.css +0 -198
- package/Common/CodeTabs/index.js +0 -5
- package/Common/CodeTabs/index.module.css +0 -67
- package/Common/DataTag/index.js +0 -18
- package/Common/DataTag/index.module.css +0 -54
- package/Common/GlowingBackdrop/index.js +0 -5
- package/Common/GlowingBackdrop/index.module.css +0 -130
- package/Common/LanguageDropDown/index.js +0 -11
- package/Common/LanguageDropDown/index.module.css +0 -151
- package/Common/Modal/index.js +0 -10
- package/Common/Modal/index.module.css +0 -234
- package/Common/NodejsLogo/index.js +0 -7
- package/Common/NodejsLogo/index.module.css +0 -5
- package/Common/Notification/index.js +0 -6
- package/Common/Notification/index.module.css +0 -104
- package/Common/Preview/index.js +0 -7
- package/Common/Preview/index.module.css +0 -283
- package/Common/Select/index.js +0 -49
- package/Common/Select/index.module.css +0 -328
- package/Common/Separator/index.js +0 -7
- package/Common/Separator/index.module.css +0 -13
- package/Common/Skeleton/index.js +0 -18
- package/Common/Skeleton/index.module.css +0 -127
- package/Common/Tabs/index.js +0 -6
- package/Common/Tabs/index.module.css +0 -72
- package/Common/ThemeToggle/index.js +0 -7
- package/Common/ThemeToggle/index.module.css +0 -22
- package/Common/Tooltip/index.js +0 -8
- package/Common/Tooltip/index.module.css +0 -133
- package/Containers/Article/index.js +0 -4
- package/Containers/Article/index.module.css +0 -139
- package/Containers/DocSideBar/index.js +0 -1
- package/Containers/Footer/index.js +0 -22
- package/Containers/Footer/index.module.css +0 -61
- package/Containers/MetaBar/index.js +0 -12
- package/Containers/MetaBar/index.module.css +0 -123
- package/Containers/NavBar/NavItem/index.js +0 -7
- package/Containers/NavBar/NavItem/index.module.css +0 -74
- package/Containers/NavBar/index.js +0 -18
- package/Containers/NavBar/index.module.css +0 -205
- package/Containers/Sidebar/ProgressionIcon/index.js +0 -3
- package/Containers/Sidebar/SidebarGroup/index.js +0 -9
- package/Containers/Sidebar/SidebarGroup/index.module.css +0 -192
- package/Containers/Sidebar/SidebarItem/index.js +0 -11
- package/Containers/Sidebar/SidebarItem/index.module.css +0 -67
- package/Containers/Sidebar/index.js +0 -15
- package/Containers/Sidebar/index.module.css +0 -48
- package/Icons/HexagonGrid.js +0 -3
- package/Icons/InstallationMethod/Choco.js +0 -3
- package/Icons/InstallationMethod/Devbox.js +0 -3
- package/Icons/InstallationMethod/Docker.js +0 -3
- package/Icons/InstallationMethod/FNM.js +0 -3
- package/Icons/InstallationMethod/Homebrew.js +0 -3
- package/Icons/InstallationMethod/N.js +0 -5
- package/Icons/InstallationMethod/NVM.js +0 -3
- package/Icons/InstallationMethod/Volta.js +0 -3
- package/Icons/Logos/JsWhite.js +0 -3
- package/Icons/Logos/Nodejs.js +0 -12
- package/Icons/Logos/index.js +0 -3
- package/Icons/OperatingSystem/AIX.js +0 -3
- package/Icons/OperatingSystem/Apple.js +0 -3
- package/Icons/OperatingSystem/Linux.js +0 -3
- package/Icons/OperatingSystem/Microsoft.js +0 -3
- package/Icons/PackageManager/Npm.js +0 -3
- package/Icons/PackageManager/Pnpm.js +0 -3
- package/Icons/PackageManager/Yarn.js +0 -3
- package/Icons/Social/Bluesky.js +0 -3
- package/Icons/Social/Discord.js +0 -3
- package/Icons/Social/GitHub.js +0 -3
- package/Icons/Social/LinkedIn.js +0 -3
- package/Icons/Social/Mastodon.js +0 -3
- package/Icons/Social/Slack.js +0 -3
- package/Icons/Social/X.js +0 -3
- package/MDX/CodeTabs.js +0 -16
- package/stylelint/one-utility-class-per-line.mjs +0 -48
- package/styles/index.css +0 -1136
- package/types.js +0 -1
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
|
|
2
|
-
.skeleton {
|
|
3
|
-
pointer-events: none;
|
|
4
|
-
animation: pulse 500ms infinite alternate-reverse;
|
|
5
|
-
cursor: default;
|
|
6
|
-
border-radius: var(--radius-md, 0.375rem);
|
|
7
|
-
--tw-border-style: none;
|
|
8
|
-
border-style: none;
|
|
9
|
-
background-clip: border-box;
|
|
10
|
-
color: transparent;
|
|
11
|
-
--tw-shadow: 0 0 #0000;
|
|
12
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
13
|
-
--tw-outline-style: none;
|
|
14
|
-
outline-style: none;
|
|
15
|
-
@media (forced-colors: active) {
|
|
16
|
-
outline: 2px solid transparent;
|
|
17
|
-
outline-offset: 2px;
|
|
18
|
-
}
|
|
19
|
-
-webkit-user-select: none;
|
|
20
|
-
user-select: none;
|
|
21
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
22
|
-
animation: pulse-dark 500ms infinite alternate-reverse;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
.skeleton[data-inline-skeleton] {
|
|
26
|
-
--tw-leading: 1;
|
|
27
|
-
line-height: 1;
|
|
28
|
-
}
|
|
29
|
-
.skeleton:empty {
|
|
30
|
-
display: block;
|
|
31
|
-
height: calc(var(--spacing, 0.25rem)*3);
|
|
32
|
-
}
|
|
33
|
-
.skeleton > *,
|
|
34
|
-
.skeleton::after,
|
|
35
|
-
.skeleton::before {
|
|
36
|
-
visibility: hidden;
|
|
37
|
-
}
|
|
38
|
-
@property --tw-shadow {
|
|
39
|
-
syntax: "*";
|
|
40
|
-
inherits: false;
|
|
41
|
-
initial-value: 0 0 #0000;
|
|
42
|
-
}
|
|
43
|
-
@property --tw-shadow-color {
|
|
44
|
-
syntax: "*";
|
|
45
|
-
inherits: false;
|
|
46
|
-
}
|
|
47
|
-
@property --tw-shadow-alpha {
|
|
48
|
-
syntax: "<percentage>";
|
|
49
|
-
inherits: false;
|
|
50
|
-
initial-value: 100%;
|
|
51
|
-
}
|
|
52
|
-
@property --tw-inset-shadow {
|
|
53
|
-
syntax: "*";
|
|
54
|
-
inherits: false;
|
|
55
|
-
initial-value: 0 0 #0000;
|
|
56
|
-
}
|
|
57
|
-
@property --tw-inset-shadow-color {
|
|
58
|
-
syntax: "*";
|
|
59
|
-
inherits: false;
|
|
60
|
-
}
|
|
61
|
-
@property --tw-inset-shadow-alpha {
|
|
62
|
-
syntax: "<percentage>";
|
|
63
|
-
inherits: false;
|
|
64
|
-
initial-value: 100%;
|
|
65
|
-
}
|
|
66
|
-
@property --tw-ring-color {
|
|
67
|
-
syntax: "*";
|
|
68
|
-
inherits: false;
|
|
69
|
-
}
|
|
70
|
-
@property --tw-ring-shadow {
|
|
71
|
-
syntax: "*";
|
|
72
|
-
inherits: false;
|
|
73
|
-
initial-value: 0 0 #0000;
|
|
74
|
-
}
|
|
75
|
-
@property --tw-inset-ring-color {
|
|
76
|
-
syntax: "*";
|
|
77
|
-
inherits: false;
|
|
78
|
-
}
|
|
79
|
-
@property --tw-inset-ring-shadow {
|
|
80
|
-
syntax: "*";
|
|
81
|
-
inherits: false;
|
|
82
|
-
initial-value: 0 0 #0000;
|
|
83
|
-
}
|
|
84
|
-
@property --tw-ring-inset {
|
|
85
|
-
syntax: "*";
|
|
86
|
-
inherits: false;
|
|
87
|
-
}
|
|
88
|
-
@property --tw-ring-offset-width {
|
|
89
|
-
syntax: "<length>";
|
|
90
|
-
inherits: false;
|
|
91
|
-
initial-value: 0px;
|
|
92
|
-
}
|
|
93
|
-
@property --tw-ring-offset-color {
|
|
94
|
-
syntax: "*";
|
|
95
|
-
inherits: false;
|
|
96
|
-
initial-value: #fff;
|
|
97
|
-
}
|
|
98
|
-
@property --tw-ring-offset-shadow {
|
|
99
|
-
syntax: "*";
|
|
100
|
-
inherits: false;
|
|
101
|
-
initial-value: 0 0 #0000;
|
|
102
|
-
}
|
|
103
|
-
@property --tw-leading {
|
|
104
|
-
syntax: "*";
|
|
105
|
-
inherits: false;
|
|
106
|
-
}
|
|
107
|
-
@keyframes pulse {
|
|
108
|
-
50% {
|
|
109
|
-
opacity: 0.5;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
@keyframes pulse {
|
|
113
|
-
from {
|
|
114
|
-
background: var(--color-pulse-100);
|
|
115
|
-
}
|
|
116
|
-
to {
|
|
117
|
-
background: var(--color-pulse-200);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
@keyframes pulse-dark {
|
|
121
|
-
from {
|
|
122
|
-
background: var(--color-pulse-300);
|
|
123
|
-
}
|
|
124
|
-
to {
|
|
125
|
-
background: var(--color-pulse-400);
|
|
126
|
-
}
|
|
127
|
-
}
|
package/Common/Tabs/index.js
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
import styles from './index.module.css';
|
|
5
|
-
const Tabs = ({ tabs, addons, triggerClassName, children, ...props }) => (_jsxs(TabsPrimitive.Root, { ...props, className: classNames(styles.tabsRoot, props.className), children: [_jsxs(TabsPrimitive.List, { className: styles.tabsList, children: [tabs.map(tab => (_jsxs(TabsPrimitive.Trigger, { value: tab.value ?? tab.key, className: classNames(styles.tabsTrigger, triggerClassName), children: [tab.label, tab.secondaryLabel ? (_jsx("span", { className: styles.tabSecondaryLabel, children: tab.secondaryLabel })) : null] }, tab.key))), addons && _jsx("div", { className: styles.addons, children: addons })] }), children] }));
|
|
6
|
-
export default Tabs;
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
|
|
2
|
-
.tabsRoot {
|
|
3
|
-
display: grid;
|
|
4
|
-
max-width: 100%;
|
|
5
|
-
.tabsList {
|
|
6
|
-
display: flex;
|
|
7
|
-
gap: calc(var(--spacing, 0.25rem)*2);
|
|
8
|
-
overflow-x: auto;
|
|
9
|
-
font-family: var(--font-open-sans, var(--font-open-sans));
|
|
10
|
-
scrollbar-width: thin;
|
|
11
|
-
.tabsTrigger {
|
|
12
|
-
border-bottom-style: var(--tw-border-style);
|
|
13
|
-
border-bottom-width: 2px;
|
|
14
|
-
border-bottom-color: transparent;
|
|
15
|
-
padding-inline: calc(var(--spacing, 0.25rem)*1);
|
|
16
|
-
padding-bottom: 11px;
|
|
17
|
-
font-size: var(--text-sm, 0.875rem);
|
|
18
|
-
line-height: var(--tw-leading, var(--text-sm--line-height, 1.42857));
|
|
19
|
-
--tw-font-weight: var(--font-weight-semibold, 600);
|
|
20
|
-
font-weight: var(--font-weight-semibold, 600);
|
|
21
|
-
white-space: nowrap;
|
|
22
|
-
color: var(--color-neutral-800, #556066);
|
|
23
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
24
|
-
color: var(--color-neutral-200, #e9edf0);
|
|
25
|
-
}
|
|
26
|
-
.tabSecondaryLabel {
|
|
27
|
-
padding-left: calc(var(--spacing, 0.25rem)*1);
|
|
28
|
-
color: var(--color-neutral-500, #b1bcc2);
|
|
29
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
30
|
-
color: var(--color-neutral-800, #556066);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
&[data-state='active'] {
|
|
34
|
-
border-bottom-color: var(--color-green-600, #417e38);
|
|
35
|
-
color: var(--color-green-600, #417e38);
|
|
36
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
37
|
-
border-bottom-color: var(--color-green-400, #84ba64);
|
|
38
|
-
}
|
|
39
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
40
|
-
color: var(--color-green-400, #84ba64);
|
|
41
|
-
}
|
|
42
|
-
.tabSecondaryLabel {
|
|
43
|
-
color: var(--color-green-800, #2c682c);
|
|
44
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
45
|
-
color: var(--color-green-600, #417e38);
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
.addons {
|
|
51
|
-
margin-left: auto;
|
|
52
|
-
border-bottom-style: var(--tw-border-style);
|
|
53
|
-
border-bottom-width: 2px;
|
|
54
|
-
border-bottom-color: transparent;
|
|
55
|
-
padding-inline: calc(var(--spacing, 0.25rem)*1);
|
|
56
|
-
padding-bottom: 11px;
|
|
57
|
-
font-size: var(--text-sm, 0.875rem);
|
|
58
|
-
line-height: var(--tw-leading, var(--text-sm--line-height, 1.42857));
|
|
59
|
-
--tw-font-weight: var(--font-weight-semibold, 600);
|
|
60
|
-
font-weight: var(--font-weight-semibold, 600);
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
@property --tw-border-style {
|
|
65
|
-
syntax: "*";
|
|
66
|
-
inherits: false;
|
|
67
|
-
initial-value: solid;
|
|
68
|
-
}
|
|
69
|
-
@property --tw-font-weight {
|
|
70
|
-
syntax: "*";
|
|
71
|
-
inherits: false;
|
|
72
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { MoonIcon, SunIcon } from '@heroicons/react/24/outline';
|
|
3
|
-
import styles from './index.module.css';
|
|
4
|
-
const ThemeToggle = props => {
|
|
5
|
-
return (_jsxs("button", { type: "button", className: styles.themeToggle, ...props, children: [_jsx(MoonIcon, { className: "block dark:hidden", height: "20" }), _jsx(SunIcon, { className: "hidden dark:block", height: "20" })] }));
|
|
6
|
-
};
|
|
7
|
-
export default ThemeToggle;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
|
|
2
|
-
.themeToggle {
|
|
3
|
-
width: calc(var(--spacing, 0.25rem)*9);
|
|
4
|
-
height: calc(var(--spacing, 0.25rem)*9);
|
|
5
|
-
border-radius: var(--radius-md, 0.375rem);
|
|
6
|
-
padding: calc(var(--spacing, 0.25rem)*2);
|
|
7
|
-
color: var(--color-neutral-700, #6e7b83);
|
|
8
|
-
@media (prefers-reduced-motion: no-preference) {
|
|
9
|
-
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
10
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1)));
|
|
11
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration, 150ms));
|
|
12
|
-
}
|
|
13
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
14
|
-
color: var(--color-neutral-300, #d9e1e4);
|
|
15
|
-
}
|
|
16
|
-
&:hover {
|
|
17
|
-
background-color: var(--color-neutral-100, #f6f7f9);
|
|
18
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
19
|
-
background-color: var(--color-neutral-900, #2c3437);
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|
package/Common/Tooltip/index.js
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
3
|
-
import classNames from 'classnames';
|
|
4
|
-
import styles from './index.module.css';
|
|
5
|
-
const Tooltip = ({ kind = 'default', children, content, asChild = false, side = 'bottom', container, }) => (_jsx(TooltipPrimitive.Provider, { delayDuration: 200, children: _jsxs(TooltipPrimitive.Root, { children: [_jsx(TooltipPrimitive.Trigger, { asChild: asChild, children: children }), _jsx(TooltipPrimitive.Portal, { container: container, children: _jsxs(TooltipPrimitive.Content, { side: side, sideOffset: 4, className: classNames(styles[kind], styles.content, {
|
|
6
|
-
'mx-1.5': side === 'top' || side === 'bottom',
|
|
7
|
-
}), children: [content, _jsx(TooltipPrimitive.Arrow, { className: styles.arrow, width: 14, height: 6 })] }) })] }) }));
|
|
8
|
-
export default Tooltip;
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
|
|
2
|
-
.content {
|
|
3
|
-
border-radius: var(--radius-md, 0.375rem);
|
|
4
|
-
border-style: var(--tw-border-style);
|
|
5
|
-
border-width: 1px;
|
|
6
|
-
background-color: var(--color-white, #fff);
|
|
7
|
-
font-size: var(--text-sm, 0.875rem);
|
|
8
|
-
line-height: var(--tw-leading, var(--text-sm--line-height, 1.42857));
|
|
9
|
-
--tw-font-weight: var(--font-weight-medium, 500);
|
|
10
|
-
font-weight: var(--font-weight-medium, 500);
|
|
11
|
-
color: var(--color-neutral-900, #2c3437);
|
|
12
|
-
--tw-shadow: 0px 4px 6px -2px var(--tw-shadow-color, color-mix(in srgb, #101828 3%, transparent)), 0px 12px 16px -4px var(--tw-shadow-color, color-mix(in srgb, #101828 8%, transparent));
|
|
13
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
14
|
-
--tw-shadow: 0px 4px 6px -2px var(--tw-shadow-color, color-mix(in oklab, var(--color-shadow, #101828) 3%, transparent)), 0px 12px 16px -4px var(--tw-shadow-color, color-mix(in oklab, var(--color-shadow, #101828) 8%, transparent));
|
|
15
|
-
}
|
|
16
|
-
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
17
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
18
|
-
background-color: var(--color-neutral-950, #0d121c);
|
|
19
|
-
}
|
|
20
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
21
|
-
color: var(--color-white, #fff);
|
|
22
|
-
}
|
|
23
|
-
&.default {
|
|
24
|
-
border-color: var(--color-neutral-200, #e9edf0);
|
|
25
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
26
|
-
border-color: var(--color-neutral-900, #2c3437);
|
|
27
|
-
}
|
|
28
|
-
.arrow {
|
|
29
|
-
fill: var(--color-neutral-200, #e9edf0);
|
|
30
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
31
|
-
fill: var(--color-neutral-900, #2c3437);
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
&.error {
|
|
36
|
-
border-color: var(--color-danger-400, #fa8e8e);
|
|
37
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
38
|
-
border-color: var(--color-danger-900, #661514);
|
|
39
|
-
}
|
|
40
|
-
.arrow {
|
|
41
|
-
fill: var(--color-danger-400, #fa8e8e);
|
|
42
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
43
|
-
fill: var(--color-danger-900, #661514);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
&.warning {
|
|
48
|
-
border-color: var(--color-warning-400, #e99c40);
|
|
49
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
50
|
-
border-color: var(--color-warning-900, #4d2f0b);
|
|
51
|
-
}
|
|
52
|
-
.arrow {
|
|
53
|
-
fill: var(--color-warning-400, #e99c40);
|
|
54
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
55
|
-
fill: var(--color-warning-900, #4d2f0b);
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
@property --tw-border-style {
|
|
61
|
-
syntax: "*";
|
|
62
|
-
inherits: false;
|
|
63
|
-
initial-value: solid;
|
|
64
|
-
}
|
|
65
|
-
@property --tw-font-weight {
|
|
66
|
-
syntax: "*";
|
|
67
|
-
inherits: false;
|
|
68
|
-
}
|
|
69
|
-
@property --tw-shadow {
|
|
70
|
-
syntax: "*";
|
|
71
|
-
inherits: false;
|
|
72
|
-
initial-value: 0 0 #0000;
|
|
73
|
-
}
|
|
74
|
-
@property --tw-shadow-color {
|
|
75
|
-
syntax: "*";
|
|
76
|
-
inherits: false;
|
|
77
|
-
}
|
|
78
|
-
@property --tw-shadow-alpha {
|
|
79
|
-
syntax: "<percentage>";
|
|
80
|
-
inherits: false;
|
|
81
|
-
initial-value: 100%;
|
|
82
|
-
}
|
|
83
|
-
@property --tw-inset-shadow {
|
|
84
|
-
syntax: "*";
|
|
85
|
-
inherits: false;
|
|
86
|
-
initial-value: 0 0 #0000;
|
|
87
|
-
}
|
|
88
|
-
@property --tw-inset-shadow-color {
|
|
89
|
-
syntax: "*";
|
|
90
|
-
inherits: false;
|
|
91
|
-
}
|
|
92
|
-
@property --tw-inset-shadow-alpha {
|
|
93
|
-
syntax: "<percentage>";
|
|
94
|
-
inherits: false;
|
|
95
|
-
initial-value: 100%;
|
|
96
|
-
}
|
|
97
|
-
@property --tw-ring-color {
|
|
98
|
-
syntax: "*";
|
|
99
|
-
inherits: false;
|
|
100
|
-
}
|
|
101
|
-
@property --tw-ring-shadow {
|
|
102
|
-
syntax: "*";
|
|
103
|
-
inherits: false;
|
|
104
|
-
initial-value: 0 0 #0000;
|
|
105
|
-
}
|
|
106
|
-
@property --tw-inset-ring-color {
|
|
107
|
-
syntax: "*";
|
|
108
|
-
inherits: false;
|
|
109
|
-
}
|
|
110
|
-
@property --tw-inset-ring-shadow {
|
|
111
|
-
syntax: "*";
|
|
112
|
-
inherits: false;
|
|
113
|
-
initial-value: 0 0 #0000;
|
|
114
|
-
}
|
|
115
|
-
@property --tw-ring-inset {
|
|
116
|
-
syntax: "*";
|
|
117
|
-
inherits: false;
|
|
118
|
-
}
|
|
119
|
-
@property --tw-ring-offset-width {
|
|
120
|
-
syntax: "<length>";
|
|
121
|
-
inherits: false;
|
|
122
|
-
initial-value: 0px;
|
|
123
|
-
}
|
|
124
|
-
@property --tw-ring-offset-color {
|
|
125
|
-
syntax: "*";
|
|
126
|
-
inherits: false;
|
|
127
|
-
initial-value: #fff;
|
|
128
|
-
}
|
|
129
|
-
@property --tw-ring-offset-shadow {
|
|
130
|
-
syntax: "*";
|
|
131
|
-
inherits: false;
|
|
132
|
-
initial-value: 0 0 #0000;
|
|
133
|
-
}
|
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
|
|
2
|
-
.articleLayout {
|
|
3
|
-
margin-inline: auto;
|
|
4
|
-
display: block;
|
|
5
|
-
width: 100%;
|
|
6
|
-
max-width: 95rem;
|
|
7
|
-
@media (width >= 40rem) {
|
|
8
|
-
display: grid;
|
|
9
|
-
}
|
|
10
|
-
@media (width >= 40rem) {
|
|
11
|
-
grid-template-columns: 13rem 1fr;
|
|
12
|
-
}
|
|
13
|
-
@media (width >= 40rem) {
|
|
14
|
-
grid-template-rows: 1fr;
|
|
15
|
-
}
|
|
16
|
-
@media (width >= 40rem) {
|
|
17
|
-
overflow: visible;
|
|
18
|
-
}
|
|
19
|
-
@media (width >= 40rem) {
|
|
20
|
-
grid-template-areas: 'sidebar main''sidebar footer';
|
|
21
|
-
}
|
|
22
|
-
@media (width >= 48rem) {
|
|
23
|
-
grid-template-columns: 16rem 1fr;
|
|
24
|
-
}
|
|
25
|
-
@media (width >= 64rem) {
|
|
26
|
-
grid-template-columns: 13rem 1fr 13rem;
|
|
27
|
-
}
|
|
28
|
-
@media (width >= 64rem) {
|
|
29
|
-
grid-template-areas: 'sidebar main metabar''sidebar footer metabar';
|
|
30
|
-
}
|
|
31
|
-
@media (width >= 80rem) {
|
|
32
|
-
grid-template-columns: 20rem 1fr 20rem;
|
|
33
|
-
}
|
|
34
|
-
> *:nth-child(1) {
|
|
35
|
-
grid-area: sidebar;
|
|
36
|
-
@media (width >= 64rem) {
|
|
37
|
-
position: sticky;
|
|
38
|
-
}
|
|
39
|
-
@media (width >= 64rem) {
|
|
40
|
-
top: calc(var(--spacing, 0.25rem)*0);
|
|
41
|
-
}
|
|
42
|
-
@media (width >= 64rem) {
|
|
43
|
-
height: 100vh;
|
|
44
|
-
}
|
|
45
|
-
@media (width >= 64rem) {
|
|
46
|
-
overflow-y: auto;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
> *:nth-child(2) {
|
|
50
|
-
display: contents;
|
|
51
|
-
@media (width >= 40rem) {
|
|
52
|
-
@media (width < 64rem) {
|
|
53
|
-
display: block;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
> *:first-child {
|
|
57
|
-
padding: calc(var(--spacing, 0.25rem)*4);
|
|
58
|
-
grid-area: main;
|
|
59
|
-
@media (prefers-reduced-motion: no-preference) {
|
|
60
|
-
scroll-behavior: smooth;
|
|
61
|
-
}
|
|
62
|
-
@media (width >= 40rem) {
|
|
63
|
-
background-image: linear-gradient( 180deg, color-mix(in srgb, #f6f7f9 50%, transparent) 0%, color-mix(in srgb, #f6f7f9 0%, transparent) 48.32% );
|
|
64
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
65
|
-
background-image: linear-gradient( 180deg, color-mix(in oklab, var(--color-neutral-100) 50%, transparent) 0%, color-mix(in oklab, var(--color-neutral-100) 0%, transparent) 48.32% );
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
@media (width >= 40rem) {
|
|
69
|
-
background-attachment: fixed;
|
|
70
|
-
}
|
|
71
|
-
@media (width >= 40rem) {
|
|
72
|
-
padding: calc(var(--spacing, 0.25rem)*12);
|
|
73
|
-
}
|
|
74
|
-
@media (width >= 80rem) {
|
|
75
|
-
padding-inline: calc(var(--spacing, 0.25rem)*18);
|
|
76
|
-
}
|
|
77
|
-
@media (width >= 40rem) {
|
|
78
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
79
|
-
background-image: linear-gradient( 180deg, color-mix(in srgb, #2c3437 50%, transparent) 0%, color-mix(in srgb, #2c3437 0%, transparent) 48.32% );
|
|
80
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
81
|
-
background-image: linear-gradient( 180deg, color-mix(in oklab, var(--color-neutral-900) 50%, transparent) 0%, color-mix(in oklab, var(--color-neutral-900) 0%, transparent) 48.32% );
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
> *:last-child {
|
|
87
|
-
margin-top: calc(var(--spacing, 0.25rem)*8);
|
|
88
|
-
border-top-style: var(--tw-border-style);
|
|
89
|
-
border-top-width: 1px;
|
|
90
|
-
grid-area: metabar;
|
|
91
|
-
@media (width >= 40rem) {
|
|
92
|
-
margin-top: calc(var(--spacing, 0.25rem)*0);
|
|
93
|
-
}
|
|
94
|
-
@media (width >= 64rem) {
|
|
95
|
-
position: sticky;
|
|
96
|
-
}
|
|
97
|
-
@media (width >= 64rem) {
|
|
98
|
-
top: calc(var(--spacing, 0.25rem)*0);
|
|
99
|
-
}
|
|
100
|
-
@media (width >= 64rem) {
|
|
101
|
-
max-width: var(--container-xs, 20rem);
|
|
102
|
-
}
|
|
103
|
-
@media (width >= 64rem) {
|
|
104
|
-
border-top-style: var(--tw-border-style);
|
|
105
|
-
border-top-width: 0px;
|
|
106
|
-
}
|
|
107
|
-
@media (width >= 64rem) {
|
|
108
|
-
border-left-style: var(--tw-border-style);
|
|
109
|
-
border-left-width: 1px;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
> *:nth-child(3) {
|
|
114
|
-
position: sticky;
|
|
115
|
-
bottom: calc(var(--spacing, 0.25rem)*0);
|
|
116
|
-
display: flex;
|
|
117
|
-
width: 100%;
|
|
118
|
-
flex-direction: column;
|
|
119
|
-
align-items: center;
|
|
120
|
-
align-self: stretch;
|
|
121
|
-
border-top-style: var(--tw-border-style);
|
|
122
|
-
border-top-width: 1px;
|
|
123
|
-
border-top-color: var(--color-neutral-200, #e9edf0);
|
|
124
|
-
background-color: var(--color-white, #fff);
|
|
125
|
-
padding-block: calc(var(--spacing, 0.25rem)*4);
|
|
126
|
-
grid-area: footer;
|
|
127
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
128
|
-
border-top-color: var(--color-neutral-900, #2c3437);
|
|
129
|
-
}
|
|
130
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
131
|
-
background-color: var(--color-neutral-950, #0d121c);
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
@property --tw-border-style {
|
|
136
|
-
syntax: "*";
|
|
137
|
-
inherits: false;
|
|
138
|
-
initial-value: solid;
|
|
139
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
-
import NavItem from '#ui/Containers/NavBar/NavItem';
|
|
4
|
-
import { Bluesky, Discord, GitHub, LinkedIn, Mastodon, Slack, X, } from '#ui/Icons/Social';
|
|
5
|
-
import styles from './index.module.css';
|
|
6
|
-
const footerSocialIcons = {
|
|
7
|
-
github: GitHub,
|
|
8
|
-
mastodon: Mastodon,
|
|
9
|
-
twitter: X,
|
|
10
|
-
slack: Slack,
|
|
11
|
-
linkedin: LinkedIn,
|
|
12
|
-
bluesky: Bluesky,
|
|
13
|
-
discord: Discord,
|
|
14
|
-
};
|
|
15
|
-
const Footer = ({ pathname = '/', as = 'a', navigation }) => {
|
|
16
|
-
const openJSlink = navigation.footerLinks.at(-1);
|
|
17
|
-
return (_jsxs("footer", { className: styles.footer, children: [_jsx("div", { className: styles.sectionPrimary, children: navigation.footerLinks.slice(0, -1).map(item => (_jsx(NavItem, { type: "footer", href: item.link, as: as, pathname: pathname, children: item.text }, item.link))) }), _jsxs("div", { className: styles.sectionSecondary, children: [_jsxs(NavItem, { type: "footer", href: openJSlink.link, as: as, pathname: pathname, children: ["\u00A9 ", openJSlink.text] }), _jsx("div", { className: styles.social, children: navigation.socialLinks.map(link => {
|
|
18
|
-
const SocialIcon = footerSocialIcons[link.icon];
|
|
19
|
-
return (_jsx(NavItem, { href: link.link, type: "footer", as: as, pathname: pathname, children: _jsx(SocialIcon, { width: 20, height: 20, "aria-label": link.link }) }, link.icon));
|
|
20
|
-
}) })] })] }));
|
|
21
|
-
};
|
|
22
|
-
export default Footer;
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
|
|
2
|
-
.footer {
|
|
3
|
-
display: flex;
|
|
4
|
-
flex-direction: column;
|
|
5
|
-
align-items: center;
|
|
6
|
-
gap: calc(var(--spacing, 0.25rem)*6);
|
|
7
|
-
border-top-style: var(--tw-border-style);
|
|
8
|
-
border-top-width: 1px;
|
|
9
|
-
border-color: var(--color-neutral-200, #e9edf0);
|
|
10
|
-
background-color: var(--color-white, #fff);
|
|
11
|
-
padding-block: calc(var(--spacing, 0.25rem)*4);
|
|
12
|
-
@media (width >= 40rem) {
|
|
13
|
-
padding-inline: calc(var(--spacing, 0.25rem)*8);
|
|
14
|
-
}
|
|
15
|
-
@media (width >= 48rem) {
|
|
16
|
-
flex-direction: row;
|
|
17
|
-
}
|
|
18
|
-
@media (width >= 48rem) {
|
|
19
|
-
justify-content: space-between;
|
|
20
|
-
}
|
|
21
|
-
@media (width >= 48rem) {
|
|
22
|
-
padding-block: calc(var(--spacing, 0.25rem)*5);
|
|
23
|
-
}
|
|
24
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
25
|
-
border-color: var(--color-neutral-900, #2c3437);
|
|
26
|
-
}
|
|
27
|
-
&:where([data-theme=dark], [data-theme=dark] *) {
|
|
28
|
-
background-color: var(--color-neutral-950, #0d121c);
|
|
29
|
-
}
|
|
30
|
-
.sectionPrimary {
|
|
31
|
-
display: flex;
|
|
32
|
-
flex-wrap: wrap;
|
|
33
|
-
align-content: flex-start;
|
|
34
|
-
align-items: center;
|
|
35
|
-
justify-content: center;
|
|
36
|
-
gap: calc(var(--spacing, 0.25rem)*1);
|
|
37
|
-
align-self: stretch;
|
|
38
|
-
a {
|
|
39
|
-
white-space: nowrap;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
.sectionSecondary {
|
|
43
|
-
display: flex;
|
|
44
|
-
flex-direction: column;
|
|
45
|
-
align-items: center;
|
|
46
|
-
gap: calc(var(--spacing, 0.25rem)*1);
|
|
47
|
-
@media (width >= 48rem) {
|
|
48
|
-
flex-direction: row;
|
|
49
|
-
}
|
|
50
|
-
.social {
|
|
51
|
-
display: flex;
|
|
52
|
-
align-items: center;
|
|
53
|
-
gap: calc(var(--spacing, 0.25rem)*1);
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
@property --tw-border-style {
|
|
58
|
-
syntax: "*";
|
|
59
|
-
inherits: false;
|
|
60
|
-
initial-value: solid;
|
|
61
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
|
-
import { Fragment, useMemo } from 'react';
|
|
3
|
-
import styles from './index.module.css';
|
|
4
|
-
const MetaBar = ({ items, headings, as: Component = 'a', heading, }) => {
|
|
5
|
-
// The default depth of headings to display in the table of contents.
|
|
6
|
-
const { minDepth = 2, items: headingItems = [] } = headings || {};
|
|
7
|
-
const filteredHeadings = useMemo(() => headingItems.filter(({ depth }) => depth >= minDepth && depth <= 4), [minDepth, headingItems]);
|
|
8
|
-
return (_jsx("div", { className: styles.wrapper, children: _jsxs("dl", { children: [Object.entries(items)
|
|
9
|
-
.filter(([, value]) => !!value)
|
|
10
|
-
.map(([key, value]) => (_jsxs(Fragment, { children: [_jsx("dt", { children: key }), _jsx("dd", { children: value })] }, key))), filteredHeadings.length > 0 && (_jsxs(_Fragment, { children: [_jsx("dt", { children: heading }), _jsx("dd", { children: _jsx("ol", { children: filteredHeadings.map(head => (_jsx("li", { className: head.depth === 3 ? 'pl-2' : head.depth === 4 ? 'pl-4' : '', children: _jsxs(Component, { href: `#${head?.data?.id}`, children: [' ', head.value] }) }, head.value))) }) })] }))] }) }));
|
|
11
|
-
};
|
|
12
|
-
export default MetaBar;
|