@semcore/ui 16.2.0 → 16.2.1-prerelease.0
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/CHANGELOG.md +30 -0
- package/README.md +2 -2
- package/generate-reexport.ts +7 -6
- package/package.json +19 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
## [16.2.1] - 2025-06-11
|
|
2
|
+
|
|
3
|
+
### @semcore/d3-chart
|
|
4
|
+
|
|
5
|
+
- **Fixed** Legend item behavior when the it's in unchecked state but the chart line dedicated to it behaves as active.
|
|
6
|
+
- **Fixed** Animation for `Dots` with pattern.
|
|
7
|
+
- **Fixed** Unsupported attributes on DOM nodes in `Area` chart.
|
|
8
|
+
|
|
9
|
+
### @semcore/data-table
|
|
10
|
+
|
|
11
|
+
- **Fixed** Incorrect `aria-controls` attribute on Accordion button.
|
|
12
|
+
|
|
13
|
+
### @semcore/dropdown-menu
|
|
14
|
+
|
|
15
|
+
- **Changed** Deprecated `highlighted` property for `DropdownMenu.Item`.
|
|
16
|
+
|
|
17
|
+
### @semcore/i18n-unplugin
|
|
18
|
+
|
|
19
|
+
- **Fixed** Vite plugin.
|
|
20
|
+
|
|
21
|
+
## [16.2.0] - 2025-05-30
|
|
22
|
+
|
|
23
|
+
### @semcore/data-table
|
|
24
|
+
|
|
25
|
+
- **Fixed** Animation for accordions in table.
|
|
26
|
+
|
|
27
|
+
### @semcore/icon
|
|
28
|
+
|
|
29
|
+
- **Added** New `ChartVenn` icon.
|
|
30
|
+
|
|
1
31
|
## [16.1.0] - 2025-05-22
|
|
2
32
|
|
|
3
33
|
### @semcore/icon
|
package/README.md
CHANGED
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
## Install
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
|
-
npm install
|
|
16
|
+
npm install @semcore/ui
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
20
20
|
|
|
21
21
|
```jsx
|
|
22
|
-
import ComponentName from '
|
|
22
|
+
import ComponentName from '@semcore/{component_name}';
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
## 👤 Author
|
package/generate-reexport.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { createRequire } from 'module';
|
|
1
2
|
import path from 'path';
|
|
2
|
-
import fs from 'fs-extra';
|
|
3
|
-
import glob from 'fast-glob';
|
|
4
3
|
import { fileURLToPath } from 'url';
|
|
5
|
-
|
|
4
|
+
|
|
6
5
|
import { Parser } from 'acorn';
|
|
7
6
|
import acornJSX from 'acorn-jsx';
|
|
7
|
+
import glob from 'fast-glob';
|
|
8
|
+
import fs from 'fs-extra';
|
|
8
9
|
|
|
9
10
|
const filename = fileURLToPath(import.meta.url);
|
|
10
11
|
const dirname = path.resolve(filename, '..');
|
|
@@ -72,7 +73,7 @@ const EXPORT_TEMPLATES: {
|
|
|
72
73
|
NAMED: (lib: string) => string;
|
|
73
74
|
};
|
|
74
75
|
} = {
|
|
75
|
-
cjs: {
|
|
76
|
+
'cjs': {
|
|
76
77
|
LIB_DEFAULT: (lib: string, component: string) =>
|
|
77
78
|
`module.exports = require('${lib}/lib/${component}');`,
|
|
78
79
|
LIB_NAMED: (lib: string, component: string) =>
|
|
@@ -80,14 +81,14 @@ const EXPORT_TEMPLATES: {
|
|
|
80
81
|
DEFAULT: (lib: string) => `module.exports = require('${lib}');`,
|
|
81
82
|
NAMED: (lib: string) => `module.exports = require('${lib}');`,
|
|
82
83
|
},
|
|
83
|
-
mjs: {
|
|
84
|
+
'mjs': {
|
|
84
85
|
LIB_DEFAULT: (lib: string, component: string) =>
|
|
85
86
|
`export { default } from '${lib}/lib/${component}';\nexport * from '${lib}/lib/${component}';`,
|
|
86
87
|
LIB_NAMED: (lib: string, component: string) => `export * from '${lib}/lib/${component}';`,
|
|
87
88
|
DEFAULT: (lib: string) => `export { default } from '${lib}';\nexport * from '${lib}';`,
|
|
88
89
|
NAMED: (lib: string) => `export * from '${lib}';`,
|
|
89
90
|
},
|
|
90
|
-
get js() {
|
|
91
|
+
get 'js'() {
|
|
91
92
|
return EXPORT_TEMPLATES.mjs;
|
|
92
93
|
},
|
|
93
94
|
get 'd.ts'() {
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/ui",
|
|
3
|
-
"version": "16.2.0",
|
|
3
|
+
"version": "16.2.1-prerelease.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"module": "./index.mjs",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@semcore/accordion": "16.2.0",
|
|
9
|
-
"@semcore/add-filter": "16.2.0",
|
|
9
|
+
"@semcore/add-filter": "16.2.1-prerelease.0",
|
|
10
10
|
"@semcore/animation": "16.0.1",
|
|
11
11
|
"@semcore/badge": "16.0.1",
|
|
12
12
|
"@semcore/base-components": "16.0.1",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"@semcore/color-picker": "16.1.1",
|
|
22
22
|
"@semcore/core": "16.0.0",
|
|
23
23
|
"@semcore/counter": "16.0.1",
|
|
24
|
-
"@semcore/d3-chart": "16.0.
|
|
25
|
-
"@semcore/data-table": "16.0.
|
|
24
|
+
"@semcore/d3-chart": "16.0.3-prerelease.0",
|
|
25
|
+
"@semcore/data-table": "16.0.3-prerelease.0",
|
|
26
26
|
"@semcore/date-picker": "16.1.1",
|
|
27
27
|
"@semcore/divider": "16.0.1",
|
|
28
28
|
"@semcore/dot": "16.0.1",
|
|
29
29
|
"@semcore/drag-and-drop": "16.1.1",
|
|
30
30
|
"@semcore/dropdown": "16.0.1",
|
|
31
|
-
"@semcore/dropdown-menu": "16.1.
|
|
31
|
+
"@semcore/dropdown-menu": "16.1.2-prerelease.0",
|
|
32
32
|
"@semcore/ellipsis": "16.0.1",
|
|
33
33
|
"@semcore/errors": "16.0.2",
|
|
34
34
|
"@semcore/feature-popover": "16.1.1",
|
|
@@ -38,7 +38,8 @@
|
|
|
38
38
|
"@semcore/format-text": "16.0.2",
|
|
39
39
|
"@semcore/fullscreen-modal": "16.1.1",
|
|
40
40
|
"@semcore/grid": "16.0.1",
|
|
41
|
-
"@semcore/
|
|
41
|
+
"@semcore/i18n-unplugin": "16.0.1-prerelease.0",
|
|
42
|
+
"@semcore/icon": "16.2.0-prerelease.0",
|
|
42
43
|
"@semcore/illustration": "16.0.2",
|
|
43
44
|
"@semcore/inline-edit": "16.0.1",
|
|
44
45
|
"@semcore/inline-input": "16.1.1",
|
|
@@ -62,7 +63,7 @@
|
|
|
62
63
|
"@semcore/progress-bar": "16.0.1",
|
|
63
64
|
"@semcore/radio": "16.0.1",
|
|
64
65
|
"@semcore/scroll-area": "16.0.1",
|
|
65
|
-
"@semcore/select": "16.1.
|
|
66
|
+
"@semcore/select": "16.1.2-prerelease.0",
|
|
66
67
|
"@semcore/side-panel": "16.1.1",
|
|
67
68
|
"@semcore/skeleton": "16.0.1",
|
|
68
69
|
"@semcore/slider": "16.0.1",
|
|
@@ -74,27 +75,25 @@
|
|
|
74
75
|
"@semcore/tab-panel": "16.0.1",
|
|
75
76
|
"@semcore/tag": "16.1.1",
|
|
76
77
|
"@semcore/textarea": "16.0.1",
|
|
77
|
-
"@semcore/time-picker": "16.1.
|
|
78
|
+
"@semcore/time-picker": "16.1.2-prerelease.0",
|
|
78
79
|
"@semcore/tooltip": "16.0.1",
|
|
79
80
|
"@semcore/typography": "16.1.1",
|
|
80
81
|
"@semcore/widget-empty": "16.0.1",
|
|
81
|
-
"@semcore/wizard": "16.1.1"
|
|
82
|
-
"@semcore/i18n-unplugin": "16.0.0"
|
|
82
|
+
"@semcore/wizard": "16.1.1"
|
|
83
83
|
},
|
|
84
84
|
"peerDependencies": {
|
|
85
85
|
"react": "16.8 - 18",
|
|
86
86
|
"react-dom": "16.8 - 18"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@semcore/continuous-delivery": "*",
|
|
90
|
-
"@semcore/testing-utils": "1.0.0",
|
|
91
89
|
"@types/fs-extra": "9.0.13",
|
|
92
|
-
"
|
|
93
|
-
"acorn": "^8.11.3",
|
|
90
|
+
"acorn": "^8.14.1",
|
|
94
91
|
"acorn-jsx": "^5.3.2",
|
|
95
92
|
"fast-glob": "3.2.11",
|
|
96
93
|
"fs-extra": "9.0.1",
|
|
97
|
-
"tsm": "2.2.2"
|
|
94
|
+
"tsm": "2.2.2",
|
|
95
|
+
"@semcore/continuous-delivery": "0.0.1",
|
|
96
|
+
"@semcore/testing-utils": "1.0.0"
|
|
98
97
|
},
|
|
99
98
|
"repository": {
|
|
100
99
|
"type": "git",
|
|
@@ -638,6 +637,11 @@
|
|
|
638
637
|
"import": "./grid/index.mjs",
|
|
639
638
|
"types": "./grid/index.d.ts"
|
|
640
639
|
},
|
|
640
|
+
"./i18n-unplugin": {
|
|
641
|
+
"require": "./i18n-unplugin/index.cjs",
|
|
642
|
+
"import": "./i18n-unplugin/index.mjs",
|
|
643
|
+
"types": "./i18n-unplugin/index.d.ts"
|
|
644
|
+
},
|
|
641
645
|
"./icon/Ad/l": {
|
|
642
646
|
"require": "./icon/Ad/l/index.cjs",
|
|
643
647
|
"import": "./icon/Ad/l/index.mjs",
|
|
@@ -5327,11 +5331,6 @@
|
|
|
5327
5331
|
"require": "./wizard/index.cjs",
|
|
5328
5332
|
"import": "./wizard/index.mjs",
|
|
5329
5333
|
"types": "./wizard/index.d.ts"
|
|
5330
|
-
},
|
|
5331
|
-
"./i18n-unplugin": {
|
|
5332
|
-
"require": "./i18n-unplugin/index.cjs",
|
|
5333
|
-
"import": "./i18n-unplugin/index.mjs",
|
|
5334
|
-
"types": "./i18n-unplugin/index.d.ts"
|
|
5335
5334
|
}
|
|
5336
5335
|
},
|
|
5337
5336
|
"scripts": {
|