@node-core/ui-components 1.0.1-49d65845ae6ff8d53a36f08f2f6353edc12d9b2f → 1.0.1-4ebead0c76b580d1bf722ebcd0f644e82dc06c0d
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.
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
w-full
|
|
18
18
|
max-w-3xl
|
|
19
19
|
flex-col
|
|
20
|
+
gap-2
|
|
20
21
|
overflow-y-auto
|
|
21
22
|
rounded
|
|
22
23
|
border
|
|
@@ -47,8 +48,7 @@
|
|
|
47
48
|
}
|
|
48
49
|
|
|
49
50
|
.title {
|
|
50
|
-
@apply
|
|
51
|
-
text-3xl
|
|
51
|
+
@apply text-3xl
|
|
52
52
|
font-semibold
|
|
53
53
|
text-neutral-900
|
|
54
54
|
dark:text-white;
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
|
|
57
57
|
.description {
|
|
58
58
|
@apply font-regular
|
|
59
|
-
mb-
|
|
59
|
+
mb-2
|
|
60
60
|
text-lg
|
|
61
61
|
text-neutral-800
|
|
62
62
|
dark:text-neutral-200;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Meta as MetaObj, StoryObj } from '@storybook/react';
|
|
2
2
|
|
|
3
|
-
import Modal from '#ui/Common/Modal';
|
|
3
|
+
import { Modal, Title, Description, Content } from '#ui/Common/Modal';
|
|
4
4
|
|
|
5
5
|
type Story = StoryObj<typeof Modal>;
|
|
6
6
|
type Meta = MetaObj<typeof Modal>;
|
|
@@ -8,10 +8,12 @@ type Meta = MetaObj<typeof Modal>;
|
|
|
8
8
|
export const Default: Story = {
|
|
9
9
|
args: {
|
|
10
10
|
open: true,
|
|
11
|
-
heading: 'Node.js Versions Information',
|
|
12
|
-
subheading: 'Get all information about Node.js versions and their changes.',
|
|
13
11
|
children: (
|
|
14
|
-
|
|
12
|
+
<Content>
|
|
13
|
+
<Title>Node.js Versions Information</Title>
|
|
14
|
+
<Description>
|
|
15
|
+
Get all information about Node.js versions and their changes.
|
|
16
|
+
</Description>
|
|
15
17
|
<p>
|
|
16
18
|
Lorem ipsum dolor sit amet consectetur adipisicing elit. Architecto
|
|
17
19
|
atque sint doloremque, sapiente recusandae debitis libero nostrum
|
|
@@ -24,7 +26,7 @@ export const Default: Story = {
|
|
|
24
26
|
amet minus sit architecto blanditiis hic sed odit cumque numquam
|
|
25
27
|
dignissimos delectus.
|
|
26
28
|
</p>
|
|
27
|
-
|
|
29
|
+
</Content>
|
|
28
30
|
),
|
|
29
31
|
},
|
|
30
32
|
};
|
package/Common/Modal/index.tsx
CHANGED
|
@@ -7,15 +7,11 @@ import type { FC, PropsWithChildren } from 'react';
|
|
|
7
7
|
import styles from './index.module.css';
|
|
8
8
|
|
|
9
9
|
type ModalProps = PropsWithChildren<{
|
|
10
|
-
heading: string;
|
|
11
|
-
subheading?: string;
|
|
12
10
|
open?: boolean;
|
|
13
11
|
onOpenChange?: (open: boolean) => void;
|
|
14
12
|
}>;
|
|
15
13
|
|
|
16
14
|
const Modal: FC<ModalProps> = ({
|
|
17
|
-
heading,
|
|
18
|
-
subheading,
|
|
19
15
|
children,
|
|
20
16
|
open = false,
|
|
21
17
|
onOpenChange = () => {},
|
|
@@ -28,15 +24,7 @@ const Modal: FC<ModalProps> = ({
|
|
|
28
24
|
<XMarkIcon />
|
|
29
25
|
</Dialog.Trigger>
|
|
30
26
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
{subheading && (
|
|
34
|
-
<Dialog.Description className={styles.description}>
|
|
35
|
-
{subheading}
|
|
36
|
-
</Dialog.Description>
|
|
37
|
-
)}
|
|
38
|
-
|
|
39
|
-
<main className={styles.wrapper}>{children}</main>
|
|
27
|
+
{children}
|
|
40
28
|
|
|
41
29
|
<Dialog.Close />
|
|
42
30
|
</Dialog.Content>
|
|
@@ -45,4 +33,18 @@ const Modal: FC<ModalProps> = ({
|
|
|
45
33
|
</Dialog.Root>
|
|
46
34
|
);
|
|
47
35
|
|
|
48
|
-
|
|
36
|
+
const Title = ({ children }: PropsWithChildren) => (
|
|
37
|
+
<Dialog.Title className={styles.title}>{children}</Dialog.Title>
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
const Description = ({ children }: PropsWithChildren) => (
|
|
41
|
+
<Dialog.Description className={styles.description}>
|
|
42
|
+
{children}
|
|
43
|
+
</Dialog.Description>
|
|
44
|
+
);
|
|
45
|
+
|
|
46
|
+
const Content = ({ children }: PropsWithChildren) => (
|
|
47
|
+
<main className={styles.wrapper}>{children}</main>
|
|
48
|
+
);
|
|
49
|
+
|
|
50
|
+
export { Modal, Title, Description, Content };
|
package/Icons/Logos/Nodejs.tsx
CHANGED
|
@@ -72,7 +72,7 @@ const NodejsIcon: FC<NodeJsLogoProps> = ({
|
|
|
72
72
|
/>
|
|
73
73
|
|
|
74
74
|
{variant === 'pride' ? (
|
|
75
|
-
<g
|
|
75
|
+
<g clipPath="url(#clip0_1_1661)">
|
|
76
76
|
<mask
|
|
77
77
|
id="mask1_1_1661"
|
|
78
78
|
style={{ maskType: 'alpha' }}
|
|
@@ -183,7 +183,7 @@ const NodejsIcon: FC<NodeJsLogoProps> = ({
|
|
|
183
183
|
filterUnits="userSpaceOnUse"
|
|
184
184
|
color-interpolation-filters="sRGB"
|
|
185
185
|
>
|
|
186
|
-
<feFlood
|
|
186
|
+
<feFlood floodOpacity="0" result="BackgroundImageFix" />
|
|
187
187
|
<feColorMatrix
|
|
188
188
|
in="SourceAlpha"
|
|
189
189
|
type="matrix"
|
|
@@ -218,7 +218,7 @@ const NodejsIcon: FC<NodeJsLogoProps> = ({
|
|
|
218
218
|
filterUnits="userSpaceOnUse"
|
|
219
219
|
color-interpolation-filters="sRGB"
|
|
220
220
|
>
|
|
221
|
-
<feFlood
|
|
221
|
+
<feFlood floodOpacity="0" result="BackgroundImageFix" />
|
|
222
222
|
<feColorMatrix
|
|
223
223
|
in="SourceAlpha"
|
|
224
224
|
type="matrix"
|
package/package.json
CHANGED
|
@@ -30,21 +30,21 @@
|
|
|
30
30
|
"@radix-ui/react-tabs": "~1.1.12",
|
|
31
31
|
"@radix-ui/react-toast": "~1.2.14",
|
|
32
32
|
"@radix-ui/react-tooltip": "~1.2.7",
|
|
33
|
-
"@tailwindcss/postcss": "~4.1.
|
|
33
|
+
"@tailwindcss/postcss": "~4.1.11",
|
|
34
34
|
"@vcarl/remark-headings": "~0.1.0",
|
|
35
35
|
"classnames": "~2.5.1",
|
|
36
36
|
"postcss-calc": "^10.1.1",
|
|
37
37
|
"tailwindcss": "~4.0.17"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@storybook/addon-styling-webpack": "^
|
|
41
|
-
"@storybook/addon-themes": "^9.0.
|
|
40
|
+
"@storybook/addon-styling-webpack": "^2.0.0",
|
|
41
|
+
"@storybook/addon-themes": "^9.0.15",
|
|
42
42
|
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
|
|
43
|
-
"@storybook/react": "^9.0.
|
|
44
|
-
"@storybook/react-webpack5": "^9.0.
|
|
43
|
+
"@storybook/react": "^9.0.15",
|
|
44
|
+
"@storybook/react-webpack5": "^9.0.15",
|
|
45
45
|
"@testing-library/user-event": "~14.6.1",
|
|
46
46
|
"@types/node": "22.15.3",
|
|
47
|
-
"@types/react": "^19.1.
|
|
47
|
+
"@types/react": "^19.1.8",
|
|
48
48
|
"cross-env": "^7.0.3",
|
|
49
49
|
"css-loader": "~7.1.2",
|
|
50
50
|
"eslint-plugin-react": "~7.37.4",
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"global-jsdom": "^26.0.0",
|
|
53
53
|
"postcss-loader": "~8.1.1",
|
|
54
54
|
"react": "^19.1.0",
|
|
55
|
-
"storybook": "^9.0.
|
|
55
|
+
"storybook": "^9.0.15",
|
|
56
56
|
"style-loader": "~4.0.0",
|
|
57
57
|
"stylelint": "^16.20.0",
|
|
58
58
|
"stylelint-config-standard": "^38.0.0",
|
|
59
59
|
"stylelint-order": "7.0.0",
|
|
60
60
|
"stylelint-selector-bem-pattern": "4.0.1",
|
|
61
|
-
"tsx": "^4.
|
|
61
|
+
"tsx": "^4.20.3",
|
|
62
62
|
"typescript": "~5.8.2",
|
|
63
63
|
"typescript-eslint": "~8.33.1"
|
|
64
64
|
},
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"engines": {
|
|
75
75
|
"node": ">=20"
|
|
76
76
|
},
|
|
77
|
-
"version": "1.0.1-
|
|
77
|
+
"version": "1.0.1-4ebead0c76b580d1bf722ebcd0f644e82dc06c0d",
|
|
78
78
|
"scripts": {
|
|
79
79
|
"lint": "turbo run lint:js lint:css",
|
|
80
80
|
"lint:css": "stylelint \"**/*.css\" --allow-empty-input --cache --cache-strategy=content --cache-location=.stylelintcache",
|
package/styles/markdown.css
CHANGED
|
File without changes
|