@node-core/ui-components 1.0.1-79dc76991a4c35cbd47e62c12e8d3507e3d9a7c4 → 1.0.1-8d40ab18244525be54e73968c130884191ec178a
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.
|
@@ -8,7 +8,16 @@ type Meta = MetaObj<typeof DataTag>;
|
|
|
8
8
|
export const DataTags: Story = {
|
|
9
9
|
render: () => (
|
|
10
10
|
<div className="grid grid-cols-3 gap-6 p-6">
|
|
11
|
-
{[
|
|
11
|
+
{[
|
|
12
|
+
'event',
|
|
13
|
+
'method',
|
|
14
|
+
'property',
|
|
15
|
+
'class',
|
|
16
|
+
'module',
|
|
17
|
+
'classMethod',
|
|
18
|
+
'ctor',
|
|
19
|
+
'global',
|
|
20
|
+
]
|
|
12
21
|
.map(kind =>
|
|
13
22
|
['sm', 'md', 'lg'].map(size => (
|
|
14
23
|
<div
|
package/Common/DataTag/index.tsx
CHANGED
|
@@ -11,6 +11,7 @@ export type DataTagProps = {
|
|
|
11
11
|
| 'class'
|
|
12
12
|
| 'module'
|
|
13
13
|
| 'classMethod'
|
|
14
|
+
| 'global'
|
|
14
15
|
| 'ctor';
|
|
15
16
|
size?: 'lg' | 'md' | 'sm';
|
|
16
17
|
};
|
|
@@ -25,6 +26,7 @@ const symbolMap = {
|
|
|
25
26
|
class: 'C',
|
|
26
27
|
module: 'M',
|
|
27
28
|
classMethod: 'S',
|
|
29
|
+
global: 'G',
|
|
28
30
|
ctor: 'C',
|
|
29
31
|
} as const;
|
|
30
32
|
|
package/package.json
CHANGED
|
@@ -37,25 +37,22 @@
|
|
|
37
37
|
"tailwindcss": "~4.0.17"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@storybook/addon-
|
|
41
|
-
"@storybook/addon-interactions": "^8.6.12",
|
|
40
|
+
"@storybook/addon-themes": "^9.0.3",
|
|
42
41
|
"@storybook/addon-styling-webpack": "^1.0.1",
|
|
43
|
-
"@storybook/addon-themes": "^8.6.12",
|
|
44
|
-
"@storybook/addon-viewport": "^8.6.12",
|
|
45
42
|
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
|
|
46
|
-
"@storybook/react": "^
|
|
47
|
-
"@storybook/react-webpack5": "^
|
|
43
|
+
"@storybook/react": "^9.0.3",
|
|
44
|
+
"@storybook/react-webpack5": "^9.0.3",
|
|
48
45
|
"@testing-library/user-event": "~14.6.1",
|
|
49
46
|
"@types/node": "22.15.3",
|
|
50
47
|
"@types/react": "^19.1.0",
|
|
51
48
|
"cross-env": "^7.0.3",
|
|
52
49
|
"css-loader": "~7.1.2",
|
|
53
50
|
"eslint-plugin-react": "~7.37.4",
|
|
54
|
-
"eslint-plugin-storybook": "~0.
|
|
51
|
+
"eslint-plugin-storybook": "~9.0.3",
|
|
55
52
|
"global-jsdom": "^26.0.0",
|
|
56
53
|
"postcss-loader": "~8.1.1",
|
|
57
54
|
"react": "^19.1.0",
|
|
58
|
-
"storybook": "^
|
|
55
|
+
"storybook": "^9.0.3",
|
|
59
56
|
"style-loader": "~4.0.0",
|
|
60
57
|
"stylelint": "^16.19.1",
|
|
61
58
|
"stylelint-config-standard": "^38.0.0",
|
|
@@ -77,7 +74,7 @@
|
|
|
77
74
|
"engines": {
|
|
78
75
|
"node": ">=20"
|
|
79
76
|
},
|
|
80
|
-
"version": "1.0.1-
|
|
77
|
+
"version": "1.0.1-8d40ab18244525be54e73968c130884191ec178a",
|
|
81
78
|
"scripts": {
|
|
82
79
|
"check-types": "tsc --noEmit",
|
|
83
80
|
"lint": "turbo run lint:js lint:css",
|