@semcore/ui 13.2.1 → 13.2.3
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 +50 -5
- package/LICENSE +21 -0
- package/package.json +81 -79
- package/utils/lib/ThemeProvider.cjs +1 -0
- package/utils/lib/ThemeProvider.d.ts +1 -0
- package/utils/lib/ThemeProvider.js +1 -0
- package/utils/lib/ThemeProvider.mjs +1 -0
- package/utils/style/var.css +4 -4
- package/utils/style/sellerly.var.css +0 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,21 +1,66 @@
|
|
|
1
|
-
## [13.3
|
|
1
|
+
## [13.2.3] - 2022-12-09
|
|
2
2
|
|
|
3
|
-
### @semcore/
|
|
3
|
+
### @semcore/animation
|
|
4
4
|
|
|
5
|
-
- **Changed** Changed
|
|
5
|
+
- **Changed** Changed prop `initialAnimation` to otional.
|
|
6
|
+
|
|
7
|
+
### @semcore/feature-popover
|
|
8
|
+
|
|
9
|
+
- **Fixed** Opening animation is working again.
|
|
10
|
+
|
|
11
|
+
### @semcore/notice-bubble
|
|
12
|
+
|
|
13
|
+
- **Changed** Changed prop `initialAnimation` to otional.
|
|
14
|
+
|
|
15
|
+
### @semcore/scroll-area
|
|
16
|
+
|
|
17
|
+
- **Fixed** Fixed calculation size when changing height of the container.
|
|
18
|
+
|
|
19
|
+
## [13.2.2] - 2022-12-07
|
|
20
|
+
|
|
21
|
+
### @semcore/animation
|
|
22
|
+
|
|
23
|
+
- **Added** Added prop `initialAnimation` to run animation on the first rendering
|
|
6
24
|
|
|
7
25
|
### @semcore/flags
|
|
8
26
|
|
|
9
|
-
- **
|
|
27
|
+
- **Fixed** Fixed exporting `iso2Name`, `iso3iso2` and `nameWithoutIso` because of linter warnings.
|
|
28
|
+
|
|
29
|
+
### @semcore/input
|
|
30
|
+
|
|
31
|
+
- **Added** Added type `IInputCtx` for export.
|
|
10
32
|
|
|
11
33
|
### @semcore/input-tags
|
|
12
34
|
|
|
13
|
-
- **Fixed** Fixed
|
|
35
|
+
- **Fixed** Fixed `Value` type
|
|
36
|
+
|
|
37
|
+
### @semcore/notice-bubble
|
|
38
|
+
|
|
39
|
+
- **Fixed** Fixed `NoticeBubbleManager` types
|
|
40
|
+
- **Added** Added prop `initialAnimation` to run animation on the first rendering
|
|
41
|
+
|
|
42
|
+
### @semcore/select
|
|
43
|
+
|
|
44
|
+
- **Fixed** Fixed screen readers support for `Select.List`
|
|
14
45
|
|
|
15
46
|
### @semcore/wizard
|
|
16
47
|
|
|
17
48
|
- **Fixed** Fixed layout so that the white background in the rounded borders of the modal would not be visible.
|
|
18
49
|
|
|
50
|
+
## [13.2.1] - 2022-12-02
|
|
51
|
+
|
|
52
|
+
### @semcore/dropdown-menu
|
|
53
|
+
|
|
54
|
+
- **Changed** Changed size of shadow in `DropdownMenu.List` from `9px` to `16px`.
|
|
55
|
+
|
|
56
|
+
### @semcore/flags
|
|
57
|
+
|
|
58
|
+
- **Added** Added missed object `iso3iso2` in `index.d.ts` for exporting.
|
|
59
|
+
|
|
60
|
+
### @semcore/input-tags
|
|
61
|
+
|
|
62
|
+
- **Fixed** Fixed exported types of components.
|
|
63
|
+
|
|
19
64
|
## [13.2.0] - 2022-11-30
|
|
20
65
|
|
|
21
66
|
### @semcore/base-trigger
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright ©, 2022, Semrush Inc. (written by Roman Lysov, Sergey Kobets, Mikhail Karachev, Julia Mnizhek, Elena Krasnopolskaia, Mikhail Sereniti).
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,88 +1,82 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/ui",
|
|
3
|
-
"version": "13.2.
|
|
3
|
+
"version": "13.2.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"module": "./index.js",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"scripts": {
|
|
8
|
-
"clear": "tsm --require=../../.ci/tsm-filter-warnings.js clear.ts",
|
|
9
|
-
"generate-reexport": "pnpm run clear && tsm --require=../../.ci/tsm-filter-warnings.js generate-reexport.ts",
|
|
10
|
-
"update-dependencies": "tsm --require=../../.ci/tsm-filter-warnings.js update-dependencies.ts",
|
|
11
|
-
"test": "jest"
|
|
12
|
-
},
|
|
13
7
|
"dependencies": {
|
|
14
|
-
"@semcore/accordion": "4.
|
|
15
|
-
"@semcore/animation": "1.
|
|
16
|
-
"@semcore/badge": "3.
|
|
17
|
-
"@semcore/base-trigger": "3.
|
|
18
|
-
"@semcore/breadcrumbs": "4.
|
|
19
|
-
"@semcore/breakpoints": "1.2.
|
|
20
|
-
"@semcore/button": "4.
|
|
21
|
-
"@semcore/card": "4.
|
|
22
|
-
"@semcore/carousel": "2.
|
|
23
|
-
"@semcore/checkbox": "6.
|
|
24
|
-
"@semcore/color-picker": "1.
|
|
25
|
-
"@semcore/core": "1.13.
|
|
26
|
-
"@semcore/counter": "2.
|
|
27
|
-
"@semcore/data-table": "3.
|
|
28
|
-
"@semcore/date-picker": "3.
|
|
29
|
-
"@semcore/divider": "3.
|
|
30
|
-
"@semcore/dot": "4.
|
|
31
|
-
"@semcore/drag-and-drop": "2.
|
|
32
|
-
"@semcore/dropdown": "3.
|
|
33
|
-
"@semcore/dropdown-menu": "3.
|
|
34
|
-
"@semcore/d3-chart": "2.
|
|
35
|
-
"@semcore/ellipsis": "1.0
|
|
8
|
+
"@semcore/accordion": "4.2.0",
|
|
9
|
+
"@semcore/animation": "1.8.2",
|
|
10
|
+
"@semcore/badge": "3.3.0",
|
|
11
|
+
"@semcore/base-trigger": "3.3.0",
|
|
12
|
+
"@semcore/breadcrumbs": "4.3.0",
|
|
13
|
+
"@semcore/breakpoints": "1.2.6",
|
|
14
|
+
"@semcore/button": "4.3.0",
|
|
15
|
+
"@semcore/card": "4.2.0",
|
|
16
|
+
"@semcore/carousel": "2.2.0",
|
|
17
|
+
"@semcore/checkbox": "6.3.0",
|
|
18
|
+
"@semcore/color-picker": "1.3.0",
|
|
19
|
+
"@semcore/core": "1.13.7",
|
|
20
|
+
"@semcore/counter": "2.2.0",
|
|
21
|
+
"@semcore/data-table": "3.6.0",
|
|
22
|
+
"@semcore/date-picker": "3.5.0",
|
|
23
|
+
"@semcore/divider": "3.2.0",
|
|
24
|
+
"@semcore/dot": "4.2.0",
|
|
25
|
+
"@semcore/drag-and-drop": "2.3.0",
|
|
26
|
+
"@semcore/dropdown": "3.3.0",
|
|
27
|
+
"@semcore/dropdown-menu": "3.5.0",
|
|
28
|
+
"@semcore/d3-chart": "2.6.0",
|
|
29
|
+
"@semcore/ellipsis": "1.1.0",
|
|
36
30
|
"@semcore/email": "1.0.2",
|
|
37
|
-
"@semcore/errors": "3.
|
|
38
|
-
"@semcore/feature-popover": "3.
|
|
39
|
-
"@semcore/feedback-form": "5.
|
|
40
|
-
"@semcore/flags": "3.
|
|
41
|
-
"@semcore/flex-box": "4.
|
|
42
|
-
"@semcore/format-text": "3.
|
|
43
|
-
"@semcore/fullscreen-modal": "2.
|
|
44
|
-
"@semcore/grid": "4.
|
|
45
|
-
"@semcore/icon": "3.
|
|
46
|
-
"@semcore/illustration": "1.3.
|
|
47
|
-
"@semcore/inline-input": "3.
|
|
48
|
-
"@semcore/inline-edit": "2.
|
|
49
|
-
"@semcore/input": "3.
|
|
50
|
-
"@semcore/input-mask": "4.
|
|
51
|
-
"@semcore/input-number": "4.
|
|
52
|
-
"@semcore/input-tags": "3.
|
|
53
|
-
"@semcore/link": "4.
|
|
54
|
-
"@semcore/modal": "3.
|
|
55
|
-
"@semcore/neighbor-location": "3.1.
|
|
56
|
-
"@semcore/notice": "4.
|
|
57
|
-
"@semcore/notice-global": "1.
|
|
58
|
-
"@semcore/notice-bubble": "4.
|
|
59
|
-
"@semcore/outside-click": "2.5.
|
|
60
|
-
"@semcore/pagination": "3.
|
|
61
|
-
"@semcore/pills": "4.
|
|
62
|
-
"@semcore/popper": "4.
|
|
63
|
-
"@semcore/portal": "2.
|
|
64
|
-
"@semcore/product-head": "3.
|
|
65
|
-
"@semcore/progress-bar": "3.
|
|
66
|
-
"@semcore/radio": "5.
|
|
67
|
-
"@semcore/scroll-area": "4.
|
|
68
|
-
"@semcore/select": "3.
|
|
69
|
-
"@semcore/side-panel": "2.
|
|
70
|
-
"@semcore/skeleton": "4.
|
|
71
|
-
"@semcore/slider": "3.
|
|
72
|
-
"@semcore/spin": "4.
|
|
73
|
-
"@semcore/spin-container": "6.
|
|
74
|
-
"@semcore/sticky": "2.
|
|
75
|
-
"@semcore/switch": "4.
|
|
76
|
-
"@semcore/tab-line": "3.
|
|
77
|
-
"@semcore/tab-panel": "3.
|
|
78
|
-
"@semcore/tag": "4.
|
|
79
|
-
"@semcore/textarea": "4.
|
|
80
|
-
"@semcore/time-picker": "3.
|
|
81
|
-
"@semcore/tooltip": "5.
|
|
82
|
-
"@semcore/typography": "4.
|
|
83
|
-
"@semcore/utils": "3.
|
|
84
|
-
"@semcore/widget-empty": "3.
|
|
85
|
-
"@semcore/wizard": "1.
|
|
31
|
+
"@semcore/errors": "3.6.0",
|
|
32
|
+
"@semcore/feature-popover": "3.2.0",
|
|
33
|
+
"@semcore/feedback-form": "5.3.0",
|
|
34
|
+
"@semcore/flags": "3.3.0",
|
|
35
|
+
"@semcore/flex-box": "4.7.0",
|
|
36
|
+
"@semcore/format-text": "3.2.0",
|
|
37
|
+
"@semcore/fullscreen-modal": "2.2.0",
|
|
38
|
+
"@semcore/grid": "4.3.0",
|
|
39
|
+
"@semcore/icon": "3.4.0",
|
|
40
|
+
"@semcore/illustration": "1.3.6",
|
|
41
|
+
"@semcore/inline-input": "3.3.0",
|
|
42
|
+
"@semcore/inline-edit": "2.2.0",
|
|
43
|
+
"@semcore/input": "3.5.0",
|
|
44
|
+
"@semcore/input-mask": "4.4.0",
|
|
45
|
+
"@semcore/input-number": "4.2.0",
|
|
46
|
+
"@semcore/input-tags": "3.3.0",
|
|
47
|
+
"@semcore/link": "4.3.0",
|
|
48
|
+
"@semcore/modal": "3.2.0",
|
|
49
|
+
"@semcore/neighbor-location": "3.1.6",
|
|
50
|
+
"@semcore/notice": "4.3.0",
|
|
51
|
+
"@semcore/notice-global": "1.3.0",
|
|
52
|
+
"@semcore/notice-bubble": "4.4.0",
|
|
53
|
+
"@semcore/outside-click": "2.5.6",
|
|
54
|
+
"@semcore/pagination": "3.4.0",
|
|
55
|
+
"@semcore/pills": "4.4.0",
|
|
56
|
+
"@semcore/popper": "4.14.0",
|
|
57
|
+
"@semcore/portal": "2.5.0",
|
|
58
|
+
"@semcore/product-head": "3.3.0",
|
|
59
|
+
"@semcore/progress-bar": "3.3.0",
|
|
60
|
+
"@semcore/radio": "5.3.0",
|
|
61
|
+
"@semcore/scroll-area": "4.2.0",
|
|
62
|
+
"@semcore/select": "3.3.0",
|
|
63
|
+
"@semcore/side-panel": "2.2.0",
|
|
64
|
+
"@semcore/skeleton": "4.4.0",
|
|
65
|
+
"@semcore/slider": "3.3.0",
|
|
66
|
+
"@semcore/spin": "4.2.0",
|
|
67
|
+
"@semcore/spin-container": "6.2.0",
|
|
68
|
+
"@semcore/sticky": "2.4.0",
|
|
69
|
+
"@semcore/switch": "4.3.0",
|
|
70
|
+
"@semcore/tab-line": "3.2.0",
|
|
71
|
+
"@semcore/tab-panel": "3.3.0",
|
|
72
|
+
"@semcore/tag": "4.3.0",
|
|
73
|
+
"@semcore/textarea": "4.3.0",
|
|
74
|
+
"@semcore/time-picker": "3.3.0",
|
|
75
|
+
"@semcore/tooltip": "5.3.0",
|
|
76
|
+
"@semcore/typography": "4.3.0",
|
|
77
|
+
"@semcore/utils": "3.43.0",
|
|
78
|
+
"@semcore/widget-empty": "3.7.0",
|
|
79
|
+
"@semcore/wizard": "1.2.0"
|
|
86
80
|
},
|
|
87
81
|
"devDependencies": {
|
|
88
82
|
"@types/react": "18.0.21",
|
|
@@ -99,5 +93,13 @@
|
|
|
99
93
|
"type": "git",
|
|
100
94
|
"url": "https://github.com/semrush/intergalactic.git",
|
|
101
95
|
"directory": "semcore/ui"
|
|
96
|
+
},
|
|
97
|
+
"scripts": {
|
|
98
|
+
"clear": "tsm --require=../../.ci/tsm-filter-warnings.js clear.ts",
|
|
99
|
+
"build": "pnpm run clear && pnpm run update-dependencies && pnpm run generate-reexport && pnpm run test",
|
|
100
|
+
"generate-reexport": "pnpm run clear && tsm --require=../../.ci/tsm-filter-warnings.js generate-reexport.ts",
|
|
101
|
+
"update-dependencies": "tsm --require=../../.ci/tsm-filter-warnings.js update-dependencies.ts",
|
|
102
|
+
"update-changelog": "pnpm update-release-changelog",
|
|
103
|
+
"test": "jest"
|
|
102
104
|
}
|
|
103
|
-
}
|
|
105
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('@semcore/utils/lib/ThemeProvider');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@semcore/utils/lib/ThemeProvider';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@semcore/utils/lib/ThemeProvider';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@semcore/utils/lib/ThemeProvider';
|
package/utils/style/var.css
CHANGED
|
@@ -93,10 +93,10 @@
|
|
|
93
93
|
--google-blue: #1a0dab;
|
|
94
94
|
--google-green: #016723;
|
|
95
95
|
|
|
96
|
-
--keyboard-focus:
|
|
97
|
-
--keyborad-focus: var(--keyboard-focus);
|
|
98
|
-
--keyboard-focus-valid:
|
|
99
|
-
--keyboard-focus-invalid:
|
|
96
|
+
--keyboard-focus: var(--intergalactic-boxShadow-keyboard-focus);
|
|
97
|
+
--keyborad-focus: var(--intergalactic-boxShadow-keyboard-focus);
|
|
98
|
+
--keyboard-focus-valid: var(--intergalactic-boxShadow-keyboard-focus-valid);
|
|
99
|
+
--keyboard-focus-invalid: var(--intergalactic-boxShadow-keyboard-focus-invalid);
|
|
100
100
|
|
|
101
101
|
--rounded-s: 4px;
|
|
102
102
|
--rounded-m: 6px;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
@import '@semcore/utils/style/var.css';
|
|
2
|
-
|
|
3
|
-
:root {
|
|
4
|
-
--brand-color: #ff006b;
|
|
5
|
-
--light-orange: #ffbb00;
|
|
6
|
-
--orange: #f97134;
|
|
7
|
-
--dark-red: #c50108;
|
|
8
|
-
--red: #f5141c;
|
|
9
|
-
--dark-orange: #f97134;
|
|
10
|
-
--ultramarine: #4338a2;
|
|
11
|
-
--light-ultramarine: #5c4cdc;
|
|
12
|
-
--dark-rose: #d30059;
|
|
13
|
-
--rose: #e60563;
|
|
14
|
-
--ghost-white: #f2f0fc;
|
|
15
|
-
--ghost-white50: #f7f6fd;
|
|
16
|
-
--keyboard-focus: 0 0 0 3px color-mod(var(--light-ultramarine) a(30%));
|
|
17
|
-
}
|