@node-core/ui-components 1.7.0 → 1.7.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/README.md +2 -2
- package/dist/Common/AlertBox/index.module.css +2 -2
- package/dist/Common/AvatarGroup/Avatar/index.module.css +1 -1
- package/dist/Common/AvatarGroup/Overlay/index.module.css +1 -1
- package/dist/Common/AvatarGroup/index.module.css +1 -1
- package/dist/Common/Badge/index.module.css +2 -2
- package/dist/Common/BadgeGroup/index.module.css +2 -2
- package/dist/Common/Banner/index.module.css +2 -2
- package/dist/Common/BaseButton/index.module.css +2 -2
- package/dist/Common/BaseCodeBox/index.module.css +2 -2
- package/dist/Common/BaseCrossLink/index.module.css +1 -1
- package/dist/Common/BaseLinkTabs/index.module.css +2 -2
- package/dist/Common/BasePagination/Ellipsis/index.module.css +1 -1
- package/dist/Common/BasePagination/PaginationListItem/index.module.css +2 -2
- package/dist/Common/BasePagination/getPageElements.d.ts +1 -1
- package/dist/Common/BasePagination/index.module.css +1 -1
- package/dist/Common/Blockquote/index.module.css +2 -2
- package/dist/Common/Breadcrumbs/BreadcrumbHomeLink/index.module.css +1 -1
- package/dist/Common/Breadcrumbs/BreadcrumbItem/index.module.css +1 -1
- package/dist/Common/Breadcrumbs/BreadcrumbLink/index.module.css +2 -2
- package/dist/Common/Breadcrumbs/BreadcrumbRoot/index.module.css +1 -1
- package/dist/Common/Breadcrumbs/BreadcrumbTruncatedItem/index.d.ts +1 -1
- package/dist/Common/ChangeHistory/index.module.css +2 -2
- package/dist/Common/CodeTabs/index.module.css +2 -2
- package/dist/Common/DataTag/index.module.css +2 -2
- package/dist/Common/GlowingBackdrop/index.module.css +2 -2
- package/dist/Common/LanguageDropDown/index.module.css +2 -2
- package/dist/Common/Modal/index.d.ts +3 -3
- package/dist/Common/Modal/index.module.css +1 -1
- package/dist/Common/NodejsLogo/index.module.css +1 -1
- package/dist/Common/Preview/index.module.css +2 -2
- package/dist/Common/Search/Input/index.module.css +1 -1
- package/dist/Common/Search/Modal/index.module.css +1 -1
- package/dist/Common/Search/Results/Empty/index.module.css +1 -1
- package/dist/Common/Search/Results/Hit/index.module.css +2 -2
- package/dist/Common/Search/Results/Skeleton/index.module.css +1 -1
- package/dist/Common/Search/Results/Tabs/index.module.css +2 -2
- package/dist/Common/Search/Results/index.module.css +1 -1
- package/dist/Common/Search/index.module.css +1 -1
- package/dist/Common/Select/NoScriptSelect/index.d.ts +1 -1
- package/dist/Common/Select/StatelessSelect/index.d.ts +1 -1
- package/dist/Common/Select/index.module.css +2 -2
- package/dist/Common/Separator/index.module.css +1 -1
- package/dist/Common/Signature/SignatureHeader/index.module.css +2 -2
- package/dist/Common/Signature/SignatureItem/index.module.css +2 -2
- package/dist/Common/Signature/SignatureRoot/index.js +1 -1
- package/dist/Common/Signature/SignatureRoot/index.module.css +1 -1
- package/dist/Common/Signature/index.js +3 -1
- package/dist/Common/Skeleton/index.module.css +1 -1
- package/dist/Common/SkipToContentButton/index.module.css +2 -2
- package/dist/Common/Switch/index.module.css +2 -2
- package/dist/Common/TableOfContents/index.module.css +1 -1
- package/dist/Common/Tabs/index.module.css +2 -2
- package/dist/Common/ThemeToggle/index.module.css +2 -2
- package/dist/Common/Tooltip/index.module.css +1 -1
- package/dist/Containers/Article/index.module.css +2 -2
- package/dist/Containers/Footer/index.module.css +2 -2
- package/dist/Containers/FunctionSignature/index.js +2 -14
- package/dist/Containers/MetaBar/index.module.css +2 -2
- package/dist/Containers/NavBar/NavItem/index.module.css +2 -2
- package/dist/Containers/NavBar/index.module.css +1 -1
- package/dist/Containers/Sidebar/SidebarGroup/index.module.css +2 -2
- package/dist/Containers/Sidebar/SidebarItem/index.module.css +2 -2
- package/dist/Containers/Sidebar/index.module.css +2 -2
- package/dist/styles/index.css +2 -2
- package/package.json +35 -28
package/package.json
CHANGED
|
@@ -1,22 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node-core/ui-components",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./*": {
|
|
7
|
-
"
|
|
8
|
-
"./dist/*",
|
|
9
|
-
"./dist/*.js",
|
|
10
|
-
"./dist/*/index.js"
|
|
11
|
-
],
|
|
12
|
-
"default": [
|
|
7
|
+
"types": [
|
|
13
8
|
"./src/*",
|
|
14
9
|
"./src/*.tsx",
|
|
15
10
|
"./src/*/index.tsx",
|
|
16
11
|
"./src/*.ts",
|
|
17
12
|
"./src/*/index.ts"
|
|
13
|
+
],
|
|
14
|
+
"default": [
|
|
15
|
+
"./dist/*",
|
|
16
|
+
"./dist/*.js",
|
|
17
|
+
"./dist/*/index.js"
|
|
18
18
|
]
|
|
19
|
-
}
|
|
19
|
+
},
|
|
20
|
+
"./src/*": [
|
|
21
|
+
"./src/*",
|
|
22
|
+
"./src/*.tsx",
|
|
23
|
+
"./src/*/index.tsx",
|
|
24
|
+
"./src/*.ts",
|
|
25
|
+
"./src/*/index.ts"
|
|
26
|
+
]
|
|
20
27
|
},
|
|
21
28
|
"repository": {
|
|
22
29
|
"type": "git",
|
|
@@ -35,40 +42,40 @@
|
|
|
35
42
|
"@radix-ui/react-separator": "^1.1.8",
|
|
36
43
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
37
44
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
38
|
-
"@tailwindcss/postcss": "~4.2.2",
|
|
39
|
-
"@types/react": "^19.2.13",
|
|
40
45
|
"@vcarl/remark-headings": "~0.1.0",
|
|
41
46
|
"classnames": "~2.5.1",
|
|
42
|
-
"
|
|
43
|
-
"postcss-cli": "11.0.1",
|
|
44
|
-
"react": "^19.2.4",
|
|
45
|
-
"tailwindcss": "~4.1.17",
|
|
46
|
-
"typescript": "5.9.3"
|
|
47
|
+
"react": "^19.2.6"
|
|
47
48
|
},
|
|
48
49
|
"devDependencies": {
|
|
49
|
-
"@eslint-react/eslint-plugin": "~
|
|
50
|
+
"@eslint-react/eslint-plugin": "~5.8.6",
|
|
50
51
|
"@orama/core": "^1.2.19",
|
|
51
|
-
"@storybook/addon-styling-webpack": "~3.0.
|
|
52
|
-
"@storybook/addon-themes": "~10.
|
|
52
|
+
"@storybook/addon-styling-webpack": "~3.0.2",
|
|
53
|
+
"@storybook/addon-themes": "~10.4.1",
|
|
53
54
|
"@storybook/addon-webpack5-compiler-swc": "~4.0.3",
|
|
54
|
-
"@storybook/react-webpack5": "~10.
|
|
55
|
+
"@storybook/react-webpack5": "~10.4.1",
|
|
56
|
+
"@tailwindcss/postcss": "~4.3.0",
|
|
55
57
|
"@testing-library/user-event": "~14.6.1",
|
|
56
58
|
"@types/node": "^24.10.1",
|
|
59
|
+
"@types/react": "^19.2.15",
|
|
57
60
|
"concurrently": "9.2.1",
|
|
58
61
|
"cross-env": "^10.0.0",
|
|
59
62
|
"css-loader": "7.1.4",
|
|
60
63
|
"eslint-plugin-react": "7.37.5",
|
|
61
|
-
"eslint-plugin-react-hooks": "7.
|
|
64
|
+
"eslint-plugin-react-hooks": "7.1.1",
|
|
62
65
|
"eslint-plugin-storybook": "10.3.3",
|
|
63
66
|
"global-jsdom": "29.0.0",
|
|
67
|
+
"postcss-calc": "~10.1.1",
|
|
68
|
+
"postcss-cli": "^11.0.1",
|
|
64
69
|
"postcss-loader": "8.2.1",
|
|
65
|
-
"storybook": "~10.
|
|
70
|
+
"storybook": "~10.4.1",
|
|
66
71
|
"style-loader": "4.0.0",
|
|
67
|
-
"stylelint": "17.
|
|
72
|
+
"stylelint": "17.9.1",
|
|
68
73
|
"stylelint-config-standard": "40.0.0",
|
|
69
74
|
"stylelint-order": "8.1.1",
|
|
70
75
|
"stylelint-selector-bem-pattern": "4.0.1",
|
|
71
|
-
"
|
|
76
|
+
"tailwindcss": "~4.1.17",
|
|
77
|
+
"tsx": "4.22.3",
|
|
78
|
+
"typescript": "5.9.3"
|
|
72
79
|
},
|
|
73
80
|
"imports": {
|
|
74
81
|
"#ui/*": {
|
|
@@ -94,11 +101,10 @@
|
|
|
94
101
|
"node": ">=20"
|
|
95
102
|
},
|
|
96
103
|
"scripts": {
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"release": "node --run compile",
|
|
104
|
+
"build": "node --run build:ts && node --run build:css",
|
|
105
|
+
"build:css": "postcss --dir dist --base src \"src/**/*.module.css\" src/styles/index.css",
|
|
106
|
+
"build:ts": "tsc",
|
|
107
|
+
"build:watch": "concurrently -k \"node --run build:ts -- --watch\" \"node --run build:css -- --watch\"",
|
|
102
108
|
"lint": "node --run lint:js && node --run lint:css",
|
|
103
109
|
"lint:css": "stylelint \"**/*.css\" --allow-empty-input --cache --cache-strategy=content --cache-location=.stylelintcache",
|
|
104
110
|
"lint:css:fix": "node --run lint:css -- --fix",
|
|
@@ -106,6 +112,7 @@
|
|
|
106
112
|
"lint:js": "eslint \"**/*.{js,mjs,ts,tsx}\"",
|
|
107
113
|
"lint:js:fix": "node --run lint:js -- --fix",
|
|
108
114
|
"lint:types": "tsc --noEmit",
|
|
115
|
+
"release": "node --run build",
|
|
109
116
|
"storybook": "cross-env NODE_NO_WARNINGS=1 storybook dev -p 6006 --quiet",
|
|
110
117
|
"storybook:build": "cross-env NODE_NO_WARNINGS=1 storybook build --quiet --webpack-stats-json",
|
|
111
118
|
"test": "node --run test:unit",
|