@semcore/ui 12.2.0 → 12.4.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/CHANGELOG.md CHANGED
@@ -1,3 +1,106 @@
1
+ ## [12.4.1] - 2022-08-01
2
+
3
+ ### @semcore/date-picker
4
+
5
+ - **Added** Added new button components `Apply` and `Reset` for `DateRangePicker` and `MonthRangePicker`.
6
+
7
+ ### @semcore/icon
8
+
9
+ - **Fixed** Renamed icon from `AppBlock` to `AppsBlock`. Old name is deprecated.
10
+
11
+ ### @semcore/utils
12
+
13
+ - **Fixed** Fixed package `.mjs` artifacts cross-imports to support modern js bundlers.
14
+
15
+ ## [12.4.0] - 2022-07-25
16
+
17
+ ### @semcore/d3-chart
18
+
19
+ - **Fixed** Fixed ability to change `tag` in render(prop) functions.
20
+ - **Fixed** Fixed `RadialTree` typings.
21
+ - **Fixed** Fixed `RadialTree` rendering in Safari.
22
+ - **Fixed** Fixed `RadialTree` radian labels rendering.
23
+
24
+ ### @semcore/data-table
25
+
26
+ - **Changed** Add `onScroll` callback for `<Body/>`.
27
+
28
+ ### @semcore/dropdown-menu
29
+
30
+ - **Fixed** Remove deprecated size (`xl`).
31
+
32
+ ### @semcore/fullscreen-modal
33
+
34
+ - **Fixed** Fixed font family in Title
35
+
36
+ ### @semcore/icon
37
+
38
+ - **Fixed** Renamed icon from `AppBlock` to `AppsBlock`. Old name is deprecated.
39
+ - **Added** Added icon `ClusteredList`.
40
+ - **Added** Added icon `AppsBlock`.
41
+
42
+ ### @semcore/input
43
+
44
+ - **Changed** Fixed `Input.Addon` css classes were missing during server-side rendering.
45
+ - **Fixed** Fixed the reaction when interacting with the keyboard for the correct work of other components with keyboard support.
46
+ - **Fixed** Fixed applying `border-radius` for outline.
47
+
48
+ ### @semcore/input-number
49
+
50
+ - **Fixed** Fixed rounding of float numbers.
51
+
52
+ ### @semcore/neighbor-location
53
+
54
+ - **Fixed** Tuned up childildren elements counting (ignoring empty string).
55
+
56
+ ### @semcore/popper
57
+
58
+ - **Fixed** Fixed possibility to insert render function into `Popper.Trigger`.
59
+
60
+ ### @semcore/select
61
+
62
+ - **Fixed** Fixed color of Addon icons in `InputSearch`.
63
+
64
+ ### @semcore/utils
65
+
66
+ - **Fixed** Fixed pcakage compatibility with ES modules.
67
+
68
+ ## [12.3.0] - 2022-07-07
69
+
70
+ ### @semcore/d3-chart
71
+
72
+ - **Added** Added index to Bubble chart
73
+ - **Added** Added property minimal height `hMin` for Bar (`<Bar hMin={...}/>`)
74
+ - **Added** Added property `active` for `Donut.Pie`
75
+ - **Fixed** Exclude props from html for `Tooltip.Dot`
76
+ - **Fixed** Recalculate position for `Dot` after update scale
77
+ - **Fixed** Optimization render `Dot`
78
+
79
+ ### @semcore/data-table
80
+
81
+ - **Fixed** Fixed scrolling of table when enable virtual scrolling.
82
+
83
+ ### @semcore/feedback-form
84
+
85
+ - **Fixed** Fixed feedback image.
86
+
87
+ ### @semcore/icon
88
+
89
+ - **Added** Added icon `AppsBlock`.
90
+
91
+ ### @semcore/illustration
92
+
93
+ - **Changed** Added react component `MailSent` put on path `@semcore/illustration/MailSent`
94
+ - **Changed** Illustration `MailSent` put on path `@semcore/illustration/svg/MailSent`
95
+
96
+ ### @semcore/radio
97
+
98
+ - **Fixed** Change inherited TS type for Radio (IFlexProps -> IBoxProps)
99
+
100
+ ### @semcore/widget-empty
101
+
102
+ - **Changed** Updated svg images for all charts, nothing found and congratulations states.
103
+
1
104
  ## [12.2.0] - 2022-06-24
2
105
 
3
106
  ### @semcore/breadcrumbs
package/README.md CHANGED
@@ -1,15 +1,41 @@
1
- # `@semcore/ui`
1
+ # @semcore/ui
2
2
 
3
- Package that reexports all components from a single point
3
+ [![version](https://img.shields.io/npm/v/@semcore/ui.svg)](https://www.npmjs.com/@semcore/ui)
4
+ [![downloads](https://img.shields.io/npm/dt/@semcore/ui.svg)](https://www.npmjs.com/package/@semcore/ui)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://github.com/semrush/intergalactic/blob/master/LICENSE)
4
6
 
5
- CLI commands should be run in repo root dir.
7
+ > This is the design system package that reexports all other single component packages.
6
8
 
7
- - Run `yarn build`
8
- - Add new components to `./semcore/ui/components.json`
9
- - `cd semcore/ui`
10
- - `yarn install`
11
- - `yarn generate`
12
- - `cd ../..`
13
- - `yarn update-release-changelog`
14
- - Check out CHANGELOG.md and fix if needed
15
- - Run `yarn pub --package ui --no-check-changelog`
9
+ ### 📖 [Component documentation](https://developer.semrush.com/intergalactic/internal/release/release-about/)
10
+
11
+ ### 🏠 [Design system](https://developer.semrush.com/intergalactic/)
12
+
13
+ ## Install
14
+
15
+ ```sh
16
+ npm install @semcore/ui
17
+ ```
18
+
19
+ ## Usage
20
+
21
+ ```jsx
22
+ import ComponentName from '@semcore/ui/{{ component name }}';
23
+ ```
24
+
25
+ ## 👤 Author
26
+
27
+ [UI-kit team](https://github.com/semrush/intergalactic/blob/master/MAINTAINERS) and [others ❤️](https://github.com/semrush/intergalactic/graphs/contributors)
28
+
29
+ ## 🤝 Contributing
30
+
31
+ Contributions, issues and feature requests are welcome!
32
+
33
+ Feel free to check [issues page](https://github.com/semrush/intergalactic/issues). You can also take a look at the [contributing guide](https://github.com/semrush/intergalactic/blob/master/CONTRIBUTING.md).
34
+
35
+ ## Show your support
36
+
37
+ Give a ⭐️ if this project helped you!
38
+
39
+ ## 📝 License
40
+
41
+ This project is [MIT](https://github.com/semrush/intergalactic/blob/master/LICENSE) licensed.
@@ -0,0 +1 @@
1
+ module.exports = require('@semcore/icon/AppBlock/l');
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/AppBlock/l';
2
+ export * from '@semcore/icon/AppBlock/l';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/AppBlock/l';
2
+ export * from '@semcore/icon/AppBlock/l';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/AppBlock/l';
2
+ export * from '@semcore/icon/AppBlock/l';
@@ -0,0 +1 @@
1
+ module.exports = require('@semcore/icon/AppBlock/m');
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/AppBlock/m';
2
+ export * from '@semcore/icon/AppBlock/m';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/AppBlock/m';
2
+ export * from '@semcore/icon/AppBlock/m';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/AppBlock/m';
2
+ export * from '@semcore/icon/AppBlock/m';
@@ -0,0 +1 @@
1
+ module.exports = require('@semcore/icon/AppsBlock/l');
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/AppsBlock/l';
2
+ export * from '@semcore/icon/AppsBlock/l';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/AppsBlock/l';
2
+ export * from '@semcore/icon/AppsBlock/l';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/AppsBlock/l';
2
+ export * from '@semcore/icon/AppsBlock/l';
@@ -0,0 +1 @@
1
+ module.exports = require('@semcore/icon/AppsBlock/m');
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/AppsBlock/m';
2
+ export * from '@semcore/icon/AppsBlock/m';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/AppsBlock/m';
2
+ export * from '@semcore/icon/AppsBlock/m';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/AppsBlock/m';
2
+ export * from '@semcore/icon/AppsBlock/m';
@@ -0,0 +1 @@
1
+ module.exports = require('@semcore/icon/ClusteredList/l');
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/ClusteredList/l';
2
+ export * from '@semcore/icon/ClusteredList/l';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/ClusteredList/l';
2
+ export * from '@semcore/icon/ClusteredList/l';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/ClusteredList/l';
2
+ export * from '@semcore/icon/ClusteredList/l';
@@ -0,0 +1 @@
1
+ module.exports = require('@semcore/icon/ClusteredList/m');
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/ClusteredList/m';
2
+ export * from '@semcore/icon/ClusteredList/m';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/ClusteredList/m';
2
+ export * from '@semcore/icon/ClusteredList/m';
@@ -0,0 +1,2 @@
1
+ export { default } from '@semcore/icon/ClusteredList/m';
2
+ export * from '@semcore/icon/ClusteredList/m';
@@ -0,0 +1 @@
1
+ module.exports = require('@semcore/illustration');
@@ -0,0 +1 @@
1
+ export * from '@semcore/illustration';
@@ -0,0 +1 @@
1
+ export * from '@semcore/illustration';
@@ -0,0 +1 @@
1
+ export * from '@semcore/illustration';
package/package.json CHANGED
@@ -1,91 +1,92 @@
1
1
  {
2
2
  "name": "@semcore/ui",
3
- "version": "12.2.0",
3
+ "version": "12.4.1",
4
4
  "license": "MIT",
5
5
  "module": "./index.js",
6
6
  "sideEffects": false,
7
7
  "scripts": {
8
- "generate": "tsm generate.ts",
8
+ "generate": "tsm --require=../../.ci/tsm-filter-warnings.js generate.ts",
9
9
  "test": "jest"
10
10
  },
11
11
  "dependencies": {
12
- "@semcore/accordion": "4.0.5",
13
- "@semcore/animation": "1.5.3",
14
- "@semcore/badge": "3.0.3",
15
- "@semcore/base-trigger": "3.0.6",
16
- "@semcore/breadcrumbs": "3.0.6",
17
- "@semcore/breakpoints": "1.1.7",
18
- "@semcore/button": "4.0.6",
19
- "@semcore/card": "4.0.6",
20
- "@semcore/carousel": "2.0.5",
21
- "@semcore/chart": "5.1.0",
22
- "@semcore/checkbox": "6.0.5",
23
- "@semcore/core": "1.11.7",
24
- "@semcore/counter": "2.0.3",
25
- "@semcore/d3-chart": "2.1.0",
26
- "@semcore/data-table": "3.0.8",
27
- "@semcore/date-picker": "3.0.8",
28
- "@semcore/divider": "3.0.3",
29
- "@semcore/dot": "4.0.6",
30
- "@semcore/drag-and-drop": "2.0.6",
31
- "@semcore/dropdown": "3.0.4",
32
- "@semcore/dropdown-menu": "3.0.4",
12
+ "@semcore/accordion": "4.0.9",
13
+ "@semcore/animation": "1.5.6",
14
+ "@semcore/badge": "3.0.5",
15
+ "@semcore/base-trigger": "3.0.12",
16
+ "@semcore/breadcrumbs": "3.0.10",
17
+ "@semcore/breakpoints": "1.1.9",
18
+ "@semcore/button": "4.0.10",
19
+ "@semcore/card": "4.0.11",
20
+ "@semcore/carousel": "2.0.9",
21
+ "@semcore/chart": "5.1.2",
22
+ "@semcore/checkbox": "6.0.8",
23
+ "@semcore/core": "1.11.9",
24
+ "@semcore/counter": "2.0.5",
25
+ "@semcore/d3-chart": "2.2.3",
26
+ "@semcore/data-table": "3.1.3",
27
+ "@semcore/date-picker": "3.1.0",
28
+ "@semcore/divider": "3.0.6",
29
+ "@semcore/dot": "4.0.9",
30
+ "@semcore/drag-and-drop": "2.0.10",
31
+ "@semcore/dropdown": "3.0.8",
32
+ "@semcore/dropdown-menu": "3.0.9",
33
33
  "@semcore/email": "1.0.1",
34
- "@semcore/errors": "3.1.0",
35
- "@semcore/feature-popover": "3.0.6",
36
- "@semcore/feedback-form": "5.1.0",
37
- "@semcore/flags": "3.0.3",
38
- "@semcore/flex-box": "4.5.5",
39
- "@semcore/format-text": "3.0.3",
40
- "@semcore/fullscreen-modal": "2.0.7",
41
- "@semcore/grid": "4.1.7",
42
- "@semcore/icon": "2.27.0",
43
- "@semcore/inline-edit": "2.0.3",
44
- "@semcore/inline-input": "3.0.9",
45
- "@semcore/input": "3.0.5",
46
- "@semcore/input-mask": "4.0.5",
47
- "@semcore/input-number": "4.0.5",
48
- "@semcore/input-tags": "3.0.6",
49
- "@semcore/link": "4.0.6",
50
- "@semcore/modal": "3.0.6",
51
- "@semcore/neighbor-location": "2.3.8",
52
- "@semcore/notice": "4.1.2",
53
- "@semcore/notice-bubble": "4.0.5",
54
- "@semcore/notice-global": "1.1.0",
55
- "@semcore/outside-click": "2.4.6",
56
- "@semcore/pagination": "3.0.8",
57
- "@semcore/pills": "4.1.0",
58
- "@semcore/popper": "4.11.21",
59
- "@semcore/portal": "2.3.6",
60
- "@semcore/product-head": "3.0.3",
61
- "@semcore/progress-bar": "3.0.4",
62
- "@semcore/project-create": "5.1.0",
63
- "@semcore/radio": "5.0.3",
64
- "@semcore/scroll-area": "4.0.3",
65
- "@semcore/select": "3.0.8",
66
- "@semcore/side-panel": "2.0.6",
67
- "@semcore/skeleton": "4.0.3",
68
- "@semcore/slider": "3.0.3",
69
- "@semcore/spin": "4.0.3",
70
- "@semcore/spin-container": "6.0.3",
71
- "@semcore/sticky": "2.2.6",
72
- "@semcore/switch": "4.0.3",
73
- "@semcore/tab-line": "3.0.3",
74
- "@semcore/tab-panel": "3.0.3",
75
- "@semcore/table": "3.0.7",
76
- "@semcore/tag": "4.0.6",
77
- "@semcore/textarea": "4.0.5",
78
- "@semcore/time-picker": "3.0.11",
79
- "@semcore/tooltip": "5.0.4",
80
- "@semcore/typography": "4.0.6",
81
- "@semcore/utils": "3.33.0",
82
- "@semcore/widget-empty": "3.1.0"
34
+ "@semcore/errors": "3.1.3",
35
+ "@semcore/feature-popover": "3.0.11",
36
+ "@semcore/feedback-form": "5.1.4",
37
+ "@semcore/flags": "3.0.5",
38
+ "@semcore/flex-box": "4.5.8",
39
+ "@semcore/format-text": "3.0.6",
40
+ "@semcore/fullscreen-modal": "2.0.12",
41
+ "@semcore/grid": "4.1.10",
42
+ "@semcore/icon": "2.29.3",
43
+ "@semcore/illustration": "1.0.2",
44
+ "@semcore/inline-edit": "2.0.5",
45
+ "@semcore/inline-input": "3.0.13",
46
+ "@semcore/input": "3.0.11",
47
+ "@semcore/input-mask": "4.0.10",
48
+ "@semcore/input-number": "4.0.11",
49
+ "@semcore/input-tags": "3.0.11",
50
+ "@semcore/link": "4.0.9",
51
+ "@semcore/modal": "3.0.11",
52
+ "@semcore/neighbor-location": "2.3.12",
53
+ "@semcore/notice": "4.1.7",
54
+ "@semcore/notice-bubble": "4.0.9",
55
+ "@semcore/notice-global": "1.1.5",
56
+ "@semcore/outside-click": "2.4.10",
57
+ "@semcore/pagination": "3.0.15",
58
+ "@semcore/pills": "4.1.3",
59
+ "@semcore/popper": "4.11.26",
60
+ "@semcore/portal": "2.3.9",
61
+ "@semcore/product-head": "3.0.5",
62
+ "@semcore/progress-bar": "3.0.6",
63
+ "@semcore/project-create": "5.1.7",
64
+ "@semcore/radio": "5.0.6",
65
+ "@semcore/scroll-area": "4.0.6",
66
+ "@semcore/select": "3.0.18",
67
+ "@semcore/side-panel": "2.0.10",
68
+ "@semcore/skeleton": "4.0.5",
69
+ "@semcore/slider": "3.0.5",
70
+ "@semcore/spin": "4.0.6",
71
+ "@semcore/spin-container": "6.0.6",
72
+ "@semcore/sticky": "2.2.8",
73
+ "@semcore/switch": "4.0.5",
74
+ "@semcore/tab-line": "3.0.5",
75
+ "@semcore/tab-panel": "3.0.4",
76
+ "@semcore/table": "3.0.10",
77
+ "@semcore/tag": "4.0.11",
78
+ "@semcore/textarea": "4.0.6",
79
+ "@semcore/time-picker": "3.0.19",
80
+ "@semcore/tooltip": "5.0.9",
81
+ "@semcore/typography": "4.0.11",
82
+ "@semcore/utils": "3.35.1",
83
+ "@semcore/widget-empty": "3.2.1"
83
84
  },
84
85
  "devDependencies": {
85
86
  "fast-glob": "3.2.11",
86
87
  "fs-extra": "9.0.1",
87
88
  "jest": "26.5.3",
88
- "tsm": "2.2.1"
89
+ "tsm": "2.2.2"
89
90
  },
90
91
  "jest": {
91
92
  "preset": "@semcore/jest-preset-ui"