@semcore/illustration 16.0.0 → 16.0.1-prerelease.2
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 +6 -0
- package/lib/cjs/index.js +1 -1
- package/lib/es6/index.js +1 -1
- package/lib/esm/index.mjs +1 -1
- package/package.json +2 -2
- package/transform.ts +1 -1
- package/AccessDenied/index.esm.js +0 -0
- package/AccessLogIn/index.esm.js +0 -0
- package/AreaChart/index.esm.js +0 -0
- package/Blocked/index.esm.js +0 -0
- package/ChoroplethMapChart/index.esm.js +0 -0
- package/Coffee/index.esm.js +0 -0
- package/Collection/index.esm.js +0 -0
- package/CombinedChart/index.esm.js +0 -0
- package/Configuration/index.esm.js +0 -0
- package/Confirmation/index.esm.js +0 -0
- package/Congrats/index.esm.js +0 -0
- package/ConnectionLost/index.esm.js +0 -0
- package/DeletedAccount/index.esm.js +0 -0
- package/DeletedPage/index.esm.js +0 -0
- package/Dns/index.esm.js +0 -0
- package/DonutChart/index.esm.js +0 -0
- package/Duplicates/index.esm.js +0 -0
- package/Feedback/index.esm.js +0 -0
- package/FunnelChart/index.esm.js +0 -0
- package/Good/index.esm.js +0 -0
- package/HeatMapChart/index.esm.js +0 -0
- package/HorizontalBarChart/index.esm.js +0 -0
- package/KagiChart/index.esm.js +0 -0
- package/LineChart/index.esm.js +0 -0
- package/LollipopChart/index.esm.js +0 -0
- package/MailSent/index.esm.js +0 -0
- package/Maintenance/index.esm.js +0 -0
- package/Nexttime/index.esm.js +0 -0
- package/NoPayment/index.esm.js +0 -0
- package/NothingFound/index.esm.js +0 -0
- package/OtherData/index.esm.js +0 -0
- package/PageError/index.esm.js +0 -0
- package/PageNotFound/index.esm.js +0 -0
- package/PieChart/index.esm.js +0 -0
- package/Processing/index.esm.js +0 -0
- package/ProjectNotFound/index.esm.js +0 -0
- package/RadarChart/index.esm.js +0 -0
- package/RadialTreeChart/index.esm.js +0 -0
- package/SankeyChart/index.esm.js +0 -0
- package/ScatterPlotChart/index.esm.js +0 -0
- package/StackedAreaChart/index.esm.js +0 -0
- package/Suggestion/index.esm.js +0 -0
- package/Suggestions/index.esm.js +0 -0
- package/Table/index.esm.js +0 -0
- package/TagCloud/index.esm.js +0 -0
- package/TextLinksEtc/index.esm.js +0 -0
- package/Timeout/index.esm.js +0 -0
- package/UnderConstruction/index.esm.js +0 -0
- package/VennChart/index.esm.js +0 -0
- package/VerticalBarChart/index.esm.js +0 -0
- package/Waiting/index.esm.js +0 -0
- package/Warning/index.esm.js +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/).
|
|
4
4
|
|
|
5
|
+
## [16.0.1] - 2025-05-30
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Version patch update due to children dependencies update (`@semcore/base-components` [16.0.0 ~> 16.0.1]).
|
|
10
|
+
|
|
5
11
|
## [16.0.0] - 2025-05-19
|
|
6
12
|
|
|
7
13
|
### Added
|
package/lib/cjs/index.js
CHANGED
package/lib/es6/index.js
CHANGED
package/lib/esm/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/illustration",
|
|
3
3
|
"description": "Semrush Illustration Component",
|
|
4
|
-
"version": "16.0.
|
|
4
|
+
"version": "16.0.1-prerelease.2",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/esm/index.mjs",
|
|
7
7
|
"typings": "lib/types/index.d.ts",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"colorjs.io": "0.4.3"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@semcore/base-components": "^16.0.
|
|
16
|
+
"@semcore/base-components": "^16.0.1-prerelease.2"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
package/transform.ts
CHANGED
|
@@ -190,7 +190,7 @@ async function patchExports(illustrations: string[]) {
|
|
|
190
190
|
const exports: Record<string, any> = {
|
|
191
191
|
'.': {
|
|
192
192
|
require: './lib/cjs/index.js',
|
|
193
|
-
import: './lib/
|
|
193
|
+
import: './lib/esm/index.mjs',
|
|
194
194
|
types: './lib/types/index.d.ts',
|
|
195
195
|
},
|
|
196
196
|
};
|
|
File without changes
|
package/AccessLogIn/index.esm.js
DELETED
|
File without changes
|
package/AreaChart/index.esm.js
DELETED
|
File without changes
|
package/Blocked/index.esm.js
DELETED
|
File without changes
|
|
File without changes
|
package/Coffee/index.esm.js
DELETED
|
File without changes
|
package/Collection/index.esm.js
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/Congrats/index.esm.js
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/DeletedPage/index.esm.js
DELETED
|
File without changes
|
package/Dns/index.esm.js
DELETED
|
File without changes
|
package/DonutChart/index.esm.js
DELETED
|
File without changes
|
package/Duplicates/index.esm.js
DELETED
|
File without changes
|
package/Feedback/index.esm.js
DELETED
|
File without changes
|
package/FunnelChart/index.esm.js
DELETED
|
File without changes
|
package/Good/index.esm.js
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/KagiChart/index.esm.js
DELETED
|
File without changes
|
package/LineChart/index.esm.js
DELETED
|
File without changes
|
|
File without changes
|
package/MailSent/index.esm.js
DELETED
|
File without changes
|
package/Maintenance/index.esm.js
DELETED
|
File without changes
|
package/Nexttime/index.esm.js
DELETED
|
File without changes
|
package/NoPayment/index.esm.js
DELETED
|
File without changes
|
|
File without changes
|
package/OtherData/index.esm.js
DELETED
|
File without changes
|
package/PageError/index.esm.js
DELETED
|
File without changes
|
|
File without changes
|
package/PieChart/index.esm.js
DELETED
|
File without changes
|
package/Processing/index.esm.js
DELETED
|
File without changes
|
|
File without changes
|
package/RadarChart/index.esm.js
DELETED
|
File without changes
|
|
File without changes
|
package/SankeyChart/index.esm.js
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/Suggestion/index.esm.js
DELETED
|
File without changes
|
package/Suggestions/index.esm.js
DELETED
|
File without changes
|
package/Table/index.esm.js
DELETED
|
File without changes
|
package/TagCloud/index.esm.js
DELETED
|
File without changes
|
|
File without changes
|
package/Timeout/index.esm.js
DELETED
|
File without changes
|
|
File without changes
|
package/VennChart/index.esm.js
DELETED
|
File without changes
|
|
File without changes
|
package/Waiting/index.esm.js
DELETED
|
File without changes
|
package/Warning/index.esm.js
DELETED
|
File without changes
|