@semcore/ui 12.4.2 → 12.5.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 +175 -0
- package/color-picker/index.cjs +1 -0
- package/color-picker/index.d.ts +2 -0
- package/color-picker/index.js +2 -0
- package/color-picker/index.mjs +2 -0
- package/package.json +74 -73
- package/utils/lib/reactToText.cjs +1 -0
- package/utils/lib/reactToText.d.ts +2 -0
- package/utils/lib/reactToText.js +2 -0
- package/utils/lib/reactToText.mjs +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,178 @@
|
|
|
1
|
+
## [12.5.1] - 2022-09-15
|
|
2
|
+
|
|
3
|
+
### @semcore/animation
|
|
4
|
+
|
|
5
|
+
- **Fixed** Fixed playing entering animation if init animation state is already reached.
|
|
6
|
+
|
|
7
|
+
### @semcore/badge
|
|
8
|
+
|
|
9
|
+
- **Fixed** Change line-height to correctly display uppercase letters.
|
|
10
|
+
|
|
11
|
+
### @semcore/button
|
|
12
|
+
|
|
13
|
+
- **Fixed** Fixed aria warning detection.
|
|
14
|
+
|
|
15
|
+
### @semcore/color-picker
|
|
16
|
+
|
|
17
|
+
- **Changed** Changed the logic of entering color format. From this version it is possible to enter hex code in both formats: with `#` sign - `#123123` and without `#` sign - `123123`.
|
|
18
|
+
|
|
19
|
+
### @semcore/d3-chart
|
|
20
|
+
|
|
21
|
+
- **Fixed** Changed paths in css files to relative.
|
|
22
|
+
|
|
23
|
+
### @semcore/data-table
|
|
24
|
+
|
|
25
|
+
- **Changed** Improved component accessibility in cases of virtual scroll and columns sorting.
|
|
26
|
+
|
|
27
|
+
### @semcore/feedback-form
|
|
28
|
+
|
|
29
|
+
- **Added** Added aria attributes for better a11y.
|
|
30
|
+
|
|
31
|
+
### @semcore/fullscreen-modal
|
|
32
|
+
|
|
33
|
+
- **Changed** Removed unused `hidden` property from types.
|
|
34
|
+
|
|
35
|
+
### @semcore/input-tags
|
|
36
|
+
|
|
37
|
+
- **Added** Added screen reader support
|
|
38
|
+
|
|
39
|
+
### @semcore/link
|
|
40
|
+
|
|
41
|
+
- **Fixed** Fixed aria warning detection.
|
|
42
|
+
|
|
43
|
+
### @semcore/tab-line
|
|
44
|
+
|
|
45
|
+
- **Fixed** Enforced inner text font line height to prevent possible bottom cut.
|
|
46
|
+
- **Fixed** Fixed typos in styles: `lihe-height` -> `line-height`.
|
|
47
|
+
- **Fixed** Fixed font height so that the letter "g" would not be cut off.
|
|
48
|
+
|
|
49
|
+
### @semcore/tab-panel
|
|
50
|
+
|
|
51
|
+
- **Fixed** Enforced inner text font line height to prevent possible bottom cut.
|
|
52
|
+
|
|
53
|
+
### @semcore/tag
|
|
54
|
+
|
|
55
|
+
- **Fixed** Enforced inner text font line height to prevent possible bottom cut.
|
|
56
|
+
- **Added** Added screen reader support
|
|
57
|
+
|
|
58
|
+
### @semcore/tooltip
|
|
59
|
+
|
|
60
|
+
- **Added** Added `aria-live` attribute for better a11y.
|
|
61
|
+
|
|
62
|
+
### @semcore/utils
|
|
63
|
+
|
|
64
|
+
- **Fixed** Added dependency `@types/react-dom` and fix type for `getNodeByRef` function.
|
|
65
|
+
|
|
66
|
+
## [12.5.0] - 2022-08-29
|
|
67
|
+
|
|
68
|
+
### @semcore/accordion
|
|
69
|
+
|
|
70
|
+
- **Fixed** Fixed disabled items handling to improve component accessibility.
|
|
71
|
+
|
|
72
|
+
### @semcore/animation
|
|
73
|
+
|
|
74
|
+
- **Fixed** Fixed playing entering animation if init animation state is already reached.
|
|
75
|
+
|
|
76
|
+
### @semcore/badge
|
|
77
|
+
|
|
78
|
+
- **Added** Added aria-hidden because component "badge" is not the main functionality and will only confuse the blind user.
|
|
79
|
+
|
|
80
|
+
### @semcore/breadcrumbs
|
|
81
|
+
|
|
82
|
+
- **Changed** Added essential `aria-\*` attributes.
|
|
83
|
+
|
|
84
|
+
### @semcore/button
|
|
85
|
+
|
|
86
|
+
- **Fixed** Update version `@semcore/utils` to use additional functions.
|
|
87
|
+
- **Added** Added empty button aria-label check.
|
|
88
|
+
|
|
89
|
+
### @semcore/d3-chart
|
|
90
|
+
|
|
91
|
+
- **Added** Introduced charts accessibility module.
|
|
92
|
+
- **Fix** Fixed `ResponsiveContainer` memory leak on unmount.
|
|
93
|
+
- **Fix** `Venn` chart was not mentioned in exported types.
|
|
94
|
+
|
|
95
|
+
### @semcore/date-picker
|
|
96
|
+
|
|
97
|
+
- **Added** Added Turkish langauge support.
|
|
98
|
+
- **Changed** Removed spaces around dash in formatted date.
|
|
99
|
+
|
|
100
|
+
### @semcore/errors
|
|
101
|
+
|
|
102
|
+
- **Changed** Updated translations.
|
|
103
|
+
- **Added** Added Turkish langauge support.
|
|
104
|
+
- **Added** Added `role="alert"` attributes to increase support for a11y.
|
|
105
|
+
|
|
106
|
+
### @semcore/flags
|
|
107
|
+
|
|
108
|
+
- **Fixed** Fixed broken display of Cote d'Ivoire's flag.
|
|
109
|
+
- **Fixed** Fixed broken display of United States Minor Outlying Islands' flag.
|
|
110
|
+
|
|
111
|
+
### @semcore/icon
|
|
112
|
+
|
|
113
|
+
- **Added** Added call `onClick` when pressing enter if the icon is `interactive`.
|
|
114
|
+
|
|
115
|
+
### @semcore/input
|
|
116
|
+
|
|
117
|
+
- **Added** Added missing type `defaultValue` in `index.d.ts`.
|
|
118
|
+
|
|
119
|
+
### @semcore/input-number
|
|
120
|
+
|
|
121
|
+
- **Added** Added screen reader notification of input value and aria attributes for better a11y.
|
|
122
|
+
|
|
123
|
+
### @semcore/link
|
|
124
|
+
|
|
125
|
+
- **Fixed** Change tag for `Link.Addon` from `div` to `span`
|
|
126
|
+
- **Fixed** Update version `@semcore/utils` to use additional functions.
|
|
127
|
+
- **Added** Added screen reader support and empty link aria-label check
|
|
128
|
+
|
|
129
|
+
### @semcore/notice
|
|
130
|
+
|
|
131
|
+
- **Added** Added aria-live attribute for better accessibility.
|
|
132
|
+
|
|
133
|
+
### @semcore/notice-bubble
|
|
134
|
+
|
|
135
|
+
- **Changed** Animation styles moved to css file and now available for theming.
|
|
136
|
+
- **Added** Added role and aria-live attribute for better accessibility.
|
|
137
|
+
|
|
138
|
+
### @semcore/notice-global
|
|
139
|
+
|
|
140
|
+
- **Added** Added aria-live attribute for better accessibility.
|
|
141
|
+
|
|
142
|
+
### @semcore/pagination
|
|
143
|
+
|
|
144
|
+
- **Added** Added Turkish langauge support.
|
|
145
|
+
- **Added** Added the necessary labels for improved accessibility work.
|
|
146
|
+
|
|
147
|
+
### @semcore/product-head
|
|
148
|
+
|
|
149
|
+
- **Fixed** Remove `overflow='auto'` because the component should not scroll, its content should adapt to the desired size.
|
|
150
|
+
|
|
151
|
+
### @semcore/radio
|
|
152
|
+
|
|
153
|
+
- **Added** Added missing type `defaultValue` in `index.d.ts`.
|
|
154
|
+
|
|
155
|
+
### @semcore/tag
|
|
156
|
+
|
|
157
|
+
- **Fixed** Update version `@semcore/utils` to use additional color changing functions.
|
|
158
|
+
|
|
159
|
+
### @semcore/textarea
|
|
160
|
+
|
|
161
|
+
- **Added** Added missing types `value` and `defaultValue` in `index.d.ts`.
|
|
162
|
+
|
|
163
|
+
### @semcore/time-picker
|
|
164
|
+
|
|
165
|
+
- **Added** Added missing type `defaultValue` in `index.d.ts`.
|
|
166
|
+
|
|
167
|
+
### @semcore/typography
|
|
168
|
+
|
|
169
|
+
- **Changed** Added essential `aria-\*` attributes for Typography lists.
|
|
170
|
+
|
|
171
|
+
### @semcore/utils
|
|
172
|
+
|
|
173
|
+
- **Added** Added util function `reactToText` to convert react component to text.
|
|
174
|
+
- **Added** Added support of `elementtiming` attribute passing on all components.
|
|
175
|
+
|
|
1
176
|
## [12.4.2] - 2022-08-02
|
|
2
177
|
|
|
3
178
|
### @semcore/d3-chart
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('@semcore/color-picker');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/ui",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.5.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"module": "./index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -9,83 +9,84 @@
|
|
|
9
9
|
"test": "jest"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@semcore/accordion": "4.0.
|
|
13
|
-
"@semcore/animation": "1.5.
|
|
14
|
-
"@semcore/badge": "3.
|
|
15
|
-
"@semcore/base-trigger": "3.0.
|
|
16
|
-
"@semcore/breadcrumbs": "
|
|
17
|
-
"@semcore/breakpoints": "1.1.
|
|
18
|
-
"@semcore/button": "4.0.
|
|
19
|
-
"@semcore/card": "4.0.
|
|
20
|
-
"@semcore/carousel": "2.0.
|
|
21
|
-
"@semcore/chart": "5.1.
|
|
22
|
-
"@semcore/checkbox": "6.0.
|
|
23
|
-
"@semcore/
|
|
24
|
-
"@semcore/
|
|
25
|
-
"@semcore/
|
|
26
|
-
"@semcore/
|
|
27
|
-
"@semcore/
|
|
28
|
-
"@semcore/
|
|
29
|
-
"@semcore/
|
|
30
|
-
"@semcore/
|
|
31
|
-
"@semcore/
|
|
32
|
-
"@semcore/dropdown
|
|
12
|
+
"@semcore/accordion": "4.0.15",
|
|
13
|
+
"@semcore/animation": "1.5.10",
|
|
14
|
+
"@semcore/badge": "3.1.2",
|
|
15
|
+
"@semcore/base-trigger": "3.0.17",
|
|
16
|
+
"@semcore/breadcrumbs": "4.1.4",
|
|
17
|
+
"@semcore/breakpoints": "1.1.12",
|
|
18
|
+
"@semcore/button": "4.0.16",
|
|
19
|
+
"@semcore/card": "4.0.17",
|
|
20
|
+
"@semcore/carousel": "2.0.14",
|
|
21
|
+
"@semcore/chart": "5.1.5",
|
|
22
|
+
"@semcore/checkbox": "6.0.11",
|
|
23
|
+
"@semcore/color-picker": "1.1.0",
|
|
24
|
+
"@semcore/core": "1.11.12",
|
|
25
|
+
"@semcore/counter": "2.0.8",
|
|
26
|
+
"@semcore/d3-chart": "2.3.3",
|
|
27
|
+
"@semcore/data-table": "3.1.9",
|
|
28
|
+
"@semcore/date-picker": "3.3.3",
|
|
29
|
+
"@semcore/divider": "3.0.9",
|
|
30
|
+
"@semcore/dot": "4.0.13",
|
|
31
|
+
"@semcore/drag-and-drop": "2.0.16",
|
|
32
|
+
"@semcore/dropdown": "3.0.11",
|
|
33
|
+
"@semcore/dropdown-menu": "3.0.12",
|
|
33
34
|
"@semcore/email": "1.0.1",
|
|
34
|
-
"@semcore/errors": "3.
|
|
35
|
-
"@semcore/feature-popover": "3.0.
|
|
36
|
-
"@semcore/feedback-form": "5.1.
|
|
37
|
-
"@semcore/flags": "3.0.
|
|
38
|
-
"@semcore/flex-box": "4.5.
|
|
39
|
-
"@semcore/format-text": "3.0.
|
|
40
|
-
"@semcore/fullscreen-modal": "2.0.
|
|
41
|
-
"@semcore/grid": "4.1.
|
|
42
|
-
"@semcore/icon": "2.
|
|
43
|
-
"@semcore/illustration": "1.0.
|
|
44
|
-
"@semcore/inline-edit": "2.0.
|
|
45
|
-
"@semcore/inline-input": "3.0.
|
|
46
|
-
"@semcore/input": "3.0.
|
|
47
|
-
"@semcore/input-mask": "4.0.
|
|
48
|
-
"@semcore/input-number": "4.0.
|
|
49
|
-
"@semcore/input-tags": "3.
|
|
50
|
-
"@semcore/link": "4.
|
|
51
|
-
"@semcore/modal": "3.0.
|
|
52
|
-
"@semcore/neighbor-location": "2.3.
|
|
53
|
-
"@semcore/notice": "4.1.
|
|
54
|
-
"@semcore/notice-bubble": "4.
|
|
55
|
-
"@semcore/notice-global": "1.1.
|
|
56
|
-
"@semcore/outside-click": "2.4.
|
|
57
|
-
"@semcore/pagination": "3.
|
|
58
|
-
"@semcore/pills": "4.1.
|
|
59
|
-
"@semcore/popper": "4.11.
|
|
60
|
-
"@semcore/portal": "2.3.
|
|
61
|
-
"@semcore/product-head": "3.0.
|
|
62
|
-
"@semcore/progress-bar": "3.0.
|
|
63
|
-
"@semcore/project-create": "5.1.
|
|
64
|
-
"@semcore/radio": "5.0.
|
|
65
|
-
"@semcore/scroll-area": "4.0.
|
|
66
|
-
"@semcore/select": "3.0.
|
|
67
|
-
"@semcore/side-panel": "2.0.
|
|
68
|
-
"@semcore/skeleton": "4.0.
|
|
69
|
-
"@semcore/slider": "3.0.
|
|
70
|
-
"@semcore/spin": "4.0.
|
|
71
|
-
"@semcore/spin-container": "6.0.
|
|
72
|
-
"@semcore/sticky": "2.2.
|
|
73
|
-
"@semcore/switch": "4.0.
|
|
74
|
-
"@semcore/tab-line": "3.0.
|
|
75
|
-
"@semcore/tab-panel": "3.0.
|
|
76
|
-
"@semcore/table": "3.0.
|
|
77
|
-
"@semcore/tag": "4.
|
|
78
|
-
"@semcore/textarea": "4.0.
|
|
79
|
-
"@semcore/time-picker": "3.0.
|
|
80
|
-
"@semcore/tooltip": "5.0.
|
|
81
|
-
"@semcore/typography": "4.
|
|
82
|
-
"@semcore/utils": "3.
|
|
83
|
-
"@semcore/widget-empty": "3.2.
|
|
35
|
+
"@semcore/errors": "3.3.3",
|
|
36
|
+
"@semcore/feature-popover": "3.0.17",
|
|
37
|
+
"@semcore/feedback-form": "5.1.12",
|
|
38
|
+
"@semcore/flags": "3.0.10",
|
|
39
|
+
"@semcore/flex-box": "4.5.11",
|
|
40
|
+
"@semcore/format-text": "3.0.9",
|
|
41
|
+
"@semcore/fullscreen-modal": "2.0.18",
|
|
42
|
+
"@semcore/grid": "4.1.13",
|
|
43
|
+
"@semcore/icon": "2.30.2",
|
|
44
|
+
"@semcore/illustration": "1.0.5",
|
|
45
|
+
"@semcore/inline-edit": "2.0.9",
|
|
46
|
+
"@semcore/inline-input": "3.0.19",
|
|
47
|
+
"@semcore/input": "3.0.15",
|
|
48
|
+
"@semcore/input-mask": "4.0.14",
|
|
49
|
+
"@semcore/input-number": "4.0.16",
|
|
50
|
+
"@semcore/input-tags": "3.1.1",
|
|
51
|
+
"@semcore/link": "4.1.4",
|
|
52
|
+
"@semcore/modal": "3.0.17",
|
|
53
|
+
"@semcore/neighbor-location": "2.3.15",
|
|
54
|
+
"@semcore/notice": "4.1.14",
|
|
55
|
+
"@semcore/notice-bubble": "4.1.2",
|
|
56
|
+
"@semcore/notice-global": "1.1.12",
|
|
57
|
+
"@semcore/outside-click": "2.4.13",
|
|
58
|
+
"@semcore/pagination": "3.2.5",
|
|
59
|
+
"@semcore/pills": "4.1.6",
|
|
60
|
+
"@semcore/popper": "4.11.29",
|
|
61
|
+
"@semcore/portal": "2.3.12",
|
|
62
|
+
"@semcore/product-head": "3.0.9",
|
|
63
|
+
"@semcore/progress-bar": "3.0.9",
|
|
64
|
+
"@semcore/project-create": "5.1.18",
|
|
65
|
+
"@semcore/radio": "5.0.10",
|
|
66
|
+
"@semcore/scroll-area": "4.0.9",
|
|
67
|
+
"@semcore/select": "3.0.24",
|
|
68
|
+
"@semcore/side-panel": "2.0.16",
|
|
69
|
+
"@semcore/skeleton": "4.0.8",
|
|
70
|
+
"@semcore/slider": "3.0.8",
|
|
71
|
+
"@semcore/spin": "4.0.9",
|
|
72
|
+
"@semcore/spin-container": "6.0.10",
|
|
73
|
+
"@semcore/sticky": "2.2.11",
|
|
74
|
+
"@semcore/switch": "4.0.8",
|
|
75
|
+
"@semcore/tab-line": "3.0.11",
|
|
76
|
+
"@semcore/tab-panel": "3.0.8",
|
|
77
|
+
"@semcore/table": "3.0.15",
|
|
78
|
+
"@semcore/tag": "4.1.1",
|
|
79
|
+
"@semcore/textarea": "4.0.10",
|
|
80
|
+
"@semcore/time-picker": "3.0.28",
|
|
81
|
+
"@semcore/tooltip": "5.0.13",
|
|
82
|
+
"@semcore/typography": "4.1.4",
|
|
83
|
+
"@semcore/utils": "3.37.1",
|
|
84
|
+
"@semcore/widget-empty": "3.2.4"
|
|
84
85
|
},
|
|
85
86
|
"devDependencies": {
|
|
86
87
|
"fast-glob": "3.2.11",
|
|
87
88
|
"fs-extra": "9.0.1",
|
|
88
|
-
"jest": "
|
|
89
|
+
"jest": "29.0.1",
|
|
89
90
|
"tsm": "2.2.2"
|
|
90
91
|
},
|
|
91
92
|
"jest": {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('@semcore/utils/lib/reactToText');
|