@node-core/ui-components 1.0.1-71be0843d06de0924837b94fc6f55f1cb3cd4d1d → 1.0.1-79dc76991a4c35cbd47e62c12e8d3507e3d9a7c4
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,16 +8,7 @@ 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
|
-
{[
|
|
12
|
-
'event',
|
|
13
|
-
'method',
|
|
14
|
-
'property',
|
|
15
|
-
'class',
|
|
16
|
-
'module',
|
|
17
|
-
'classMethod',
|
|
18
|
-
'ctor',
|
|
19
|
-
'global',
|
|
20
|
-
]
|
|
11
|
+
{['event', 'method', 'property', 'class', 'module', 'classMethod', 'ctor']
|
|
21
12
|
.map(kind =>
|
|
22
13
|
['sm', 'md', 'lg'].map(size => (
|
|
23
14
|
<div
|
package/Common/DataTag/index.tsx
CHANGED
|
@@ -11,7 +11,6 @@ export type DataTagProps = {
|
|
|
11
11
|
| 'class'
|
|
12
12
|
| 'module'
|
|
13
13
|
| 'classMethod'
|
|
14
|
-
| 'global'
|
|
15
14
|
| 'ctor';
|
|
16
15
|
size?: 'lg' | 'md' | 'sm';
|
|
17
16
|
};
|
|
@@ -26,7 +25,6 @@ const symbolMap = {
|
|
|
26
25
|
class: 'C',
|
|
27
26
|
module: 'M',
|
|
28
27
|
classMethod: 'S',
|
|
29
|
-
global: 'G',
|
|
30
28
|
ctor: 'C',
|
|
31
29
|
} as const;
|
|
32
30
|
|
package/package.json
CHANGED