@semcore/ui 16.13.2 → 16.14.0-prerelease.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 +38 -0
- package/README.md +4 -4
- package/package.json +162 -162
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,41 @@
|
|
|
1
|
+
## [16.14.0] - 2026-02-08
|
|
2
|
+
|
|
3
|
+
### @semcore/dropdown-menu
|
|
4
|
+
|
|
5
|
+
- **Fixed** Amount of prepared items for back scroll when `VirtualList` is used.
|
|
6
|
+
|
|
7
|
+
### @semcore/feature-highlight
|
|
8
|
+
|
|
9
|
+
- **Added** Advanced mode for `Notice`.
|
|
10
|
+
|
|
11
|
+
### @semcore/feedback-form
|
|
12
|
+
|
|
13
|
+
- **Added** `illustrationElement`, `NoticeComponent` for `FeedbackRating`
|
|
14
|
+
component.
|
|
15
|
+
|
|
16
|
+
### @semcore/date-picker
|
|
17
|
+
|
|
18
|
+
- **Fixed** Propagated value when `Reset` button is clicked for date range
|
|
19
|
+
pickers. Before: `[undefined, undefined]`, now: `[]`.
|
|
20
|
+
|
|
21
|
+
### @semcore/modal
|
|
22
|
+
|
|
23
|
+
- **Fixed** Added conditional logic for displaying `aria-label` based on
|
|
24
|
+
`aria-labelledby` prop.
|
|
25
|
+
|
|
26
|
+
### @semcore/data-table
|
|
27
|
+
|
|
28
|
+
- **Fixed** `CellRenderProps` type wasn't exported.
|
|
29
|
+
- **Fixed** `Selectable` property for merged rows.
|
|
30
|
+
- **Fixed** React error about keys for multiple merged columns.
|
|
31
|
+
|
|
32
|
+
### @semcore/d3-chart
|
|
33
|
+
|
|
34
|
+
- **Added** `showPercentValueInTooltip` prop for Cigarette chart.
|
|
35
|
+
- **Fixed** Fixed types by removing unsupported `showTotalInTooltip` prop from
|
|
36
|
+
certain chart components.
|
|
37
|
+
- **Fixed** Fixed `Annotation` overflow in `CompactHorizontalBar`.
|
|
38
|
+
|
|
1
39
|
## [16.13.2] - 2026-01-19
|
|
2
40
|
|
|
3
41
|
### @semcore/notice-bubble
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/@semcore/ui)
|
|
4
4
|
[](https://www.npmjs.com/package/@semcore/ui)
|
|
5
|
-
[](https://github.com/semrush/intergalactic/blob/
|
|
5
|
+
[](https://github.com/semrush/intergalactic/blob/HEAD/LICENSE)
|
|
6
6
|
|
|
7
7
|
> This is the design system package that reexports all other single component packages.
|
|
8
8
|
|
|
@@ -24,13 +24,13 @@ import ComponentName from '@semcore/ui/{component_name}';
|
|
|
24
24
|
|
|
25
25
|
## 👤 Author
|
|
26
26
|
|
|
27
|
-
[UI-kit team](https://github.com/semrush/intergalactic/blob/
|
|
27
|
+
[UI-kit team](https://github.com/semrush/intergalactic/blob/HEAD/MAINTAINERS) and [others ❤️](https://github.com/semrush/intergalactic/graphs/contributors)
|
|
28
28
|
|
|
29
29
|
## 🤝 Contributing
|
|
30
30
|
|
|
31
31
|
Contributions, issues and feature requests are welcome!
|
|
32
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/
|
|
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/HEAD/CONTRIBUTING.md).
|
|
34
34
|
|
|
35
35
|
## Show your support
|
|
36
36
|
|
|
@@ -38,4 +38,4 @@ Give a ⭐️ if this project helped you!
|
|
|
38
38
|
|
|
39
39
|
## 📝 License
|
|
40
40
|
|
|
41
|
-
This project is [MIT](https://github.com/semrush/intergalactic/blob/
|
|
41
|
+
This project is [MIT](https://github.com/semrush/intergalactic/blob/HEAD/LICENSE) licensed.
|
package/package.json
CHANGED
|
@@ -1,85 +1,85 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/ui",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.14.0-prerelease.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"module": "./index.mjs",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@semcore/accordion": "16.7.2",
|
|
9
|
+
"@semcore/base-components": "16.4.2",
|
|
9
10
|
"@semcore/add-filter": "16.6.3",
|
|
10
|
-
"@semcore/base-trigger": "16.4.5",
|
|
11
11
|
"@semcore/animation": "16.0.7",
|
|
12
|
-
"@semcore/base-components": "16.4.2",
|
|
13
12
|
"@semcore/badge": "16.0.7",
|
|
13
|
+
"@semcore/base-trigger": "16.4.5",
|
|
14
14
|
"@semcore/breadcrumbs": "16.5.4",
|
|
15
|
-
"@semcore/bulk-textarea": "16.6.2",
|
|
16
15
|
"@semcore/breakpoints": "16.0.11",
|
|
17
|
-
"@semcore/
|
|
16
|
+
"@semcore/bulk-textarea": "16.6.2",
|
|
18
17
|
"@semcore/card": "16.1.12",
|
|
19
|
-
"@semcore/checkbox": "16.2.2",
|
|
20
18
|
"@semcore/carousel": "16.1.13",
|
|
21
|
-
"@semcore/
|
|
19
|
+
"@semcore/button": "16.0.12",
|
|
20
|
+
"@semcore/checkbox": "16.2.2",
|
|
22
21
|
"@semcore/color-picker": "16.1.13",
|
|
23
|
-
"@semcore/d3-chart": "16.4.2",
|
|
24
|
-
"@semcore/divider": "16.0.11",
|
|
25
22
|
"@semcore/counter": "16.0.11",
|
|
26
|
-
"@semcore/
|
|
27
|
-
"@semcore/
|
|
23
|
+
"@semcore/core": "16.5.1",
|
|
24
|
+
"@semcore/d3-chart": "16.5.0-prerelease.1",
|
|
25
|
+
"@semcore/data-table": "16.5.3-prerelease.1",
|
|
26
|
+
"@semcore/divider": "16.0.11",
|
|
28
27
|
"@semcore/dot": "16.0.11",
|
|
29
|
-
"@semcore/
|
|
28
|
+
"@semcore/date-picker": "16.2.4-prerelease.1",
|
|
30
29
|
"@semcore/drag-and-drop": "16.1.12",
|
|
30
|
+
"@semcore/dropdown": "16.1.4",
|
|
31
|
+
"@semcore/dropdown-menu": "16.2.2-prerelease.1",
|
|
31
32
|
"@semcore/ellipsis": "16.0.12",
|
|
32
|
-
"@semcore/dropdown-menu": "16.2.1",
|
|
33
|
-
"@semcore/errors": "16.1.7",
|
|
34
|
-
"@semcore/feedback-form": "16.1.12",
|
|
35
33
|
"@semcore/feature-popover": "16.2.5",
|
|
34
|
+
"@semcore/feature-highlight": "16.3.0-prerelease.1",
|
|
35
|
+
"@semcore/feedback-form": "16.2.0-prerelease.1",
|
|
36
36
|
"@semcore/flags": "16.1.8",
|
|
37
37
|
"@semcore/flex-box": "16.0.11",
|
|
38
38
|
"@semcore/format-text": "16.1.1",
|
|
39
39
|
"@semcore/fullscreen-modal": "16.1.12",
|
|
40
|
-
"@semcore/feature-highlight": "16.2.2",
|
|
41
40
|
"@semcore/grid": "16.0.11",
|
|
42
41
|
"@semcore/i18n-unplugin": "16.0.9",
|
|
43
42
|
"@semcore/illustration": "16.0.12",
|
|
43
|
+
"@semcore/errors": "16.1.7",
|
|
44
44
|
"@semcore/inline-edit": "16.0.11",
|
|
45
|
-
"@semcore/icon": "16.7.4",
|
|
46
|
-
"@semcore/input": "16.1.1",
|
|
47
|
-
"@semcore/inline-input": "16.2.2",
|
|
48
45
|
"@semcore/input-tags": "16.0.13",
|
|
46
|
+
"@semcore/icon": "16.7.4-prerelease.1",
|
|
47
|
+
"@semcore/inline-input": "16.2.2",
|
|
48
|
+
"@semcore/input-number": "16.0.11",
|
|
49
|
+
"@semcore/link": "16.0.11",
|
|
49
50
|
"@semcore/mini-chart": "16.1.1",
|
|
51
|
+
"@semcore/input-mask": "16.0.11",
|
|
50
52
|
"@semcore/neighbor-location": "16.0.11",
|
|
51
|
-
"@semcore/
|
|
52
|
-
"@semcore/input-number": "16.0.11",
|
|
53
|
-
"@semcore/modal": "16.1.12",
|
|
54
|
-
"@semcore/notice": "16.1.12",
|
|
53
|
+
"@semcore/modal": "16.1.13-prerelease.1",
|
|
55
54
|
"@semcore/notice-bubble": "16.2.1",
|
|
55
|
+
"@semcore/notice": "16.1.12",
|
|
56
56
|
"@semcore/notice-global": "16.1.13",
|
|
57
57
|
"@semcore/outside-click": "16.0.11",
|
|
58
|
-
"@semcore/pills": "16.0.11",
|
|
59
58
|
"@semcore/pagination": "16.1.12",
|
|
60
59
|
"@semcore/popper": "16.0.11",
|
|
60
|
+
"@semcore/pills": "16.0.11",
|
|
61
|
+
"@semcore/progress-bar": "16.0.11",
|
|
61
62
|
"@semcore/portal": "16.0.11",
|
|
62
63
|
"@semcore/product-head": "16.0.11",
|
|
63
|
-
"@semcore/progress-bar": "16.0.11",
|
|
64
64
|
"@semcore/radio": "16.1.1",
|
|
65
|
-
"@semcore/select": "16.1.12",
|
|
66
65
|
"@semcore/scroll-area": "16.0.11",
|
|
66
|
+
"@semcore/select": "16.1.12",
|
|
67
67
|
"@semcore/side-panel": "16.1.12",
|
|
68
68
|
"@semcore/skeleton": "16.0.11",
|
|
69
|
-
"@semcore/
|
|
69
|
+
"@semcore/input": "16.1.1",
|
|
70
|
+
"@semcore/spin-container": "16.0.11",
|
|
70
71
|
"@semcore/spin": "16.0.11",
|
|
72
|
+
"@semcore/slider": "16.1.1",
|
|
71
73
|
"@semcore/sticky": "16.0.11",
|
|
72
|
-
"@semcore/spin-container": "16.0.11",
|
|
73
|
-
"@semcore/stylelint-plugin": "0.0.1",
|
|
74
|
-
"@semcore/input-mask": "16.0.11",
|
|
75
74
|
"@semcore/switch": "16.1.1",
|
|
76
|
-
"@semcore/tab-panel": "16.0.11",
|
|
77
75
|
"@semcore/tab-line": "16.0.11",
|
|
78
|
-
"@semcore/
|
|
76
|
+
"@semcore/tab-panel": "16.0.11",
|
|
79
77
|
"@semcore/tag": "16.1.14",
|
|
78
|
+
"@semcore/textarea": "16.0.11",
|
|
80
79
|
"@semcore/time-picker": "16.1.13",
|
|
81
80
|
"@semcore/tooltip": "16.0.11",
|
|
82
81
|
"@semcore/typography": "16.3.2",
|
|
82
|
+
"@semcore/stylelint-plugin": "0.0.1",
|
|
83
83
|
"@semcore/widget-empty": "16.0.11",
|
|
84
84
|
"@semcore/wizard": "16.2.2"
|
|
85
85
|
},
|
|
@@ -108,65 +108,75 @@
|
|
|
108
108
|
"import": "./accordion/index.mjs",
|
|
109
109
|
"types": "./accordion/index.d.ts"
|
|
110
110
|
},
|
|
111
|
+
"./base-components": {
|
|
112
|
+
"require": "./base-components/index.cjs",
|
|
113
|
+
"import": "./base-components/index.mjs",
|
|
114
|
+
"types": "./base-components/index.d.ts"
|
|
115
|
+
},
|
|
111
116
|
"./add-filter": {
|
|
112
117
|
"require": "./add-filter/index.cjs",
|
|
113
118
|
"import": "./add-filter/index.mjs",
|
|
114
119
|
"types": "./add-filter/index.d.ts"
|
|
115
120
|
},
|
|
116
|
-
"./base-trigger": {
|
|
117
|
-
"require": "./base-trigger/index.cjs",
|
|
118
|
-
"import": "./base-trigger/index.mjs",
|
|
119
|
-
"types": "./base-trigger/index.d.ts"
|
|
120
|
-
},
|
|
121
121
|
"./animation": {
|
|
122
122
|
"require": "./animation/index.cjs",
|
|
123
123
|
"import": "./animation/index.mjs",
|
|
124
124
|
"types": "./animation/index.d.ts"
|
|
125
125
|
},
|
|
126
|
-
"./base-components": {
|
|
127
|
-
"require": "./base-components/index.cjs",
|
|
128
|
-
"import": "./base-components/index.mjs",
|
|
129
|
-
"types": "./base-components/index.d.ts"
|
|
130
|
-
},
|
|
131
126
|
"./badge": {
|
|
132
127
|
"require": "./badge/index.cjs",
|
|
133
128
|
"import": "./badge/index.mjs",
|
|
134
129
|
"types": "./badge/index.d.ts"
|
|
135
130
|
},
|
|
131
|
+
"./base-trigger": {
|
|
132
|
+
"require": "./base-trigger/index.cjs",
|
|
133
|
+
"import": "./base-trigger/index.mjs",
|
|
134
|
+
"types": "./base-trigger/index.d.ts"
|
|
135
|
+
},
|
|
136
136
|
"./breadcrumbs": {
|
|
137
137
|
"require": "./breadcrumbs/index.cjs",
|
|
138
138
|
"import": "./breadcrumbs/index.mjs",
|
|
139
139
|
"types": "./breadcrumbs/index.d.ts"
|
|
140
140
|
},
|
|
141
|
-
"./bulk-textarea": {
|
|
142
|
-
"require": "./bulk-textarea/index.cjs",
|
|
143
|
-
"import": "./bulk-textarea/index.mjs",
|
|
144
|
-
"types": "./bulk-textarea/index.d.ts"
|
|
145
|
-
},
|
|
146
141
|
"./breakpoints": {
|
|
147
142
|
"require": "./breakpoints/index.cjs",
|
|
148
143
|
"import": "./breakpoints/index.mjs",
|
|
149
144
|
"types": "./breakpoints/index.d.ts"
|
|
150
145
|
},
|
|
151
|
-
"./
|
|
152
|
-
"require": "./
|
|
153
|
-
"import": "./
|
|
154
|
-
"types": "./
|
|
146
|
+
"./bulk-textarea": {
|
|
147
|
+
"require": "./bulk-textarea/index.cjs",
|
|
148
|
+
"import": "./bulk-textarea/index.mjs",
|
|
149
|
+
"types": "./bulk-textarea/index.d.ts"
|
|
155
150
|
},
|
|
156
151
|
"./card": {
|
|
157
152
|
"require": "./card/index.cjs",
|
|
158
153
|
"import": "./card/index.mjs",
|
|
159
154
|
"types": "./card/index.d.ts"
|
|
160
155
|
},
|
|
156
|
+
"./carousel": {
|
|
157
|
+
"require": "./carousel/index.cjs",
|
|
158
|
+
"import": "./carousel/index.mjs",
|
|
159
|
+
"types": "./carousel/index.d.ts"
|
|
160
|
+
},
|
|
161
|
+
"./button": {
|
|
162
|
+
"require": "./button/index.cjs",
|
|
163
|
+
"import": "./button/index.mjs",
|
|
164
|
+
"types": "./button/index.d.ts"
|
|
165
|
+
},
|
|
161
166
|
"./checkbox": {
|
|
162
167
|
"require": "./checkbox/index.cjs",
|
|
163
168
|
"import": "./checkbox/index.mjs",
|
|
164
169
|
"types": "./checkbox/index.d.ts"
|
|
165
170
|
},
|
|
166
|
-
"./
|
|
167
|
-
"require": "./
|
|
168
|
-
"import": "./
|
|
169
|
-
"types": "./
|
|
171
|
+
"./color-picker": {
|
|
172
|
+
"require": "./color-picker/index.cjs",
|
|
173
|
+
"import": "./color-picker/index.mjs",
|
|
174
|
+
"types": "./color-picker/index.d.ts"
|
|
175
|
+
},
|
|
176
|
+
"./counter": {
|
|
177
|
+
"require": "./counter/index.cjs",
|
|
178
|
+
"import": "./counter/index.mjs",
|
|
179
|
+
"types": "./counter/index.d.ts"
|
|
170
180
|
},
|
|
171
181
|
"./core": {
|
|
172
182
|
"require": "./core/index.cjs",
|
|
@@ -557,76 +567,66 @@
|
|
|
557
567
|
"require": "./core/lib/theme/themes/light.css",
|
|
558
568
|
"import": "./core/lib/theme/themes/light.css"
|
|
559
569
|
},
|
|
560
|
-
"./color-picker": {
|
|
561
|
-
"require": "./color-picker/index.cjs",
|
|
562
|
-
"import": "./color-picker/index.mjs",
|
|
563
|
-
"types": "./color-picker/index.d.ts"
|
|
564
|
-
},
|
|
565
570
|
"./d3-chart": {
|
|
566
571
|
"require": "./d3-chart/index.cjs",
|
|
567
572
|
"import": "./d3-chart/index.mjs",
|
|
568
573
|
"types": "./d3-chart/index.d.ts"
|
|
569
574
|
},
|
|
575
|
+
"./data-table": {
|
|
576
|
+
"require": "./data-table/index.cjs",
|
|
577
|
+
"import": "./data-table/index.mjs",
|
|
578
|
+
"types": "./data-table/index.d.ts"
|
|
579
|
+
},
|
|
570
580
|
"./divider": {
|
|
571
581
|
"require": "./divider/index.cjs",
|
|
572
582
|
"import": "./divider/index.mjs",
|
|
573
583
|
"types": "./divider/index.d.ts"
|
|
574
584
|
},
|
|
575
|
-
"./
|
|
576
|
-
"require": "./
|
|
577
|
-
"import": "./
|
|
578
|
-
"types": "./
|
|
585
|
+
"./dot": {
|
|
586
|
+
"require": "./dot/index.cjs",
|
|
587
|
+
"import": "./dot/index.mjs",
|
|
588
|
+
"types": "./dot/index.d.ts"
|
|
579
589
|
},
|
|
580
590
|
"./date-picker": {
|
|
581
591
|
"require": "./date-picker/index.cjs",
|
|
582
592
|
"import": "./date-picker/index.mjs",
|
|
583
593
|
"types": "./date-picker/index.d.ts"
|
|
584
594
|
},
|
|
585
|
-
"./
|
|
586
|
-
"require": "./
|
|
587
|
-
"import": "./
|
|
588
|
-
"types": "./
|
|
589
|
-
},
|
|
590
|
-
"./dot": {
|
|
591
|
-
"require": "./dot/index.cjs",
|
|
592
|
-
"import": "./dot/index.mjs",
|
|
593
|
-
"types": "./dot/index.d.ts"
|
|
595
|
+
"./drag-and-drop": {
|
|
596
|
+
"require": "./drag-and-drop/index.cjs",
|
|
597
|
+
"import": "./drag-and-drop/index.mjs",
|
|
598
|
+
"types": "./drag-and-drop/index.d.ts"
|
|
594
599
|
},
|
|
595
600
|
"./dropdown": {
|
|
596
601
|
"require": "./dropdown/index.cjs",
|
|
597
602
|
"import": "./dropdown/index.mjs",
|
|
598
603
|
"types": "./dropdown/index.d.ts"
|
|
599
604
|
},
|
|
600
|
-
"./
|
|
601
|
-
"require": "./
|
|
602
|
-
"import": "./
|
|
603
|
-
"types": "./
|
|
605
|
+
"./dropdown-menu": {
|
|
606
|
+
"require": "./dropdown-menu/index.cjs",
|
|
607
|
+
"import": "./dropdown-menu/index.mjs",
|
|
608
|
+
"types": "./dropdown-menu/index.d.ts"
|
|
604
609
|
},
|
|
605
610
|
"./ellipsis": {
|
|
606
611
|
"require": "./ellipsis/index.cjs",
|
|
607
612
|
"import": "./ellipsis/index.mjs",
|
|
608
613
|
"types": "./ellipsis/index.d.ts"
|
|
609
614
|
},
|
|
610
|
-
"./
|
|
611
|
-
"require": "./
|
|
612
|
-
"import": "./
|
|
613
|
-
"types": "./
|
|
615
|
+
"./feature-popover": {
|
|
616
|
+
"require": "./feature-popover/index.cjs",
|
|
617
|
+
"import": "./feature-popover/index.mjs",
|
|
618
|
+
"types": "./feature-popover/index.d.ts"
|
|
614
619
|
},
|
|
615
|
-
"./
|
|
616
|
-
"require": "./
|
|
617
|
-
"import": "./
|
|
618
|
-
"types": "./
|
|
620
|
+
"./feature-highlight": {
|
|
621
|
+
"require": "./feature-highlight/index.cjs",
|
|
622
|
+
"import": "./feature-highlight/index.mjs",
|
|
623
|
+
"types": "./feature-highlight/index.d.ts"
|
|
619
624
|
},
|
|
620
625
|
"./feedback-form": {
|
|
621
626
|
"require": "./feedback-form/index.cjs",
|
|
622
627
|
"import": "./feedback-form/index.mjs",
|
|
623
628
|
"types": "./feedback-form/index.d.ts"
|
|
624
629
|
},
|
|
625
|
-
"./feature-popover": {
|
|
626
|
-
"require": "./feature-popover/index.cjs",
|
|
627
|
-
"import": "./feature-popover/index.mjs",
|
|
628
|
-
"types": "./feature-popover/index.d.ts"
|
|
629
|
-
},
|
|
630
630
|
"./flags": {
|
|
631
631
|
"require": "./flags/index.cjs",
|
|
632
632
|
"import": "./flags/index.mjs",
|
|
@@ -647,11 +647,6 @@
|
|
|
647
647
|
"import": "./fullscreen-modal/index.mjs",
|
|
648
648
|
"types": "./fullscreen-modal/index.d.ts"
|
|
649
649
|
},
|
|
650
|
-
"./feature-highlight": {
|
|
651
|
-
"require": "./feature-highlight/index.cjs",
|
|
652
|
-
"import": "./feature-highlight/index.mjs",
|
|
653
|
-
"types": "./feature-highlight/index.d.ts"
|
|
654
|
-
},
|
|
655
650
|
"./grid": {
|
|
656
651
|
"require": "./grid/index.cjs",
|
|
657
652
|
"import": "./grid/index.mjs",
|
|
@@ -947,11 +942,21 @@
|
|
|
947
942
|
"import": "./illustration/index.mjs",
|
|
948
943
|
"types": "./illustration/index.d.ts"
|
|
949
944
|
},
|
|
945
|
+
"./errors": {
|
|
946
|
+
"require": "./errors/index.cjs",
|
|
947
|
+
"import": "./errors/index.mjs",
|
|
948
|
+
"types": "./errors/index.d.ts"
|
|
949
|
+
},
|
|
950
950
|
"./inline-edit": {
|
|
951
951
|
"require": "./inline-edit/index.cjs",
|
|
952
952
|
"import": "./inline-edit/index.mjs",
|
|
953
953
|
"types": "./inline-edit/index.d.ts"
|
|
954
954
|
},
|
|
955
|
+
"./input-tags": {
|
|
956
|
+
"require": "./input-tags/index.cjs",
|
|
957
|
+
"import": "./input-tags/index.mjs",
|
|
958
|
+
"types": "./input-tags/index.d.ts"
|
|
959
|
+
},
|
|
955
960
|
"./icon/Ad/l": {
|
|
956
961
|
"require": "./icon/Ad/l/index.cjs",
|
|
957
962
|
"import": "./icon/Ad/l/index.mjs",
|
|
@@ -5317,56 +5322,51 @@
|
|
|
5317
5322
|
"import": "./icon/index.mjs",
|
|
5318
5323
|
"types": "./icon/index.d.ts"
|
|
5319
5324
|
},
|
|
5320
|
-
"./input": {
|
|
5321
|
-
"require": "./input/index.cjs",
|
|
5322
|
-
"import": "./input/index.mjs",
|
|
5323
|
-
"types": "./input/index.d.ts"
|
|
5324
|
-
},
|
|
5325
5325
|
"./inline-input": {
|
|
5326
5326
|
"require": "./inline-input/index.cjs",
|
|
5327
5327
|
"import": "./inline-input/index.mjs",
|
|
5328
5328
|
"types": "./inline-input/index.d.ts"
|
|
5329
5329
|
},
|
|
5330
|
-
"./input-
|
|
5331
|
-
"require": "./input-
|
|
5332
|
-
"import": "./input-
|
|
5333
|
-
"types": "./input-
|
|
5330
|
+
"./input-number": {
|
|
5331
|
+
"require": "./input-number/index.cjs",
|
|
5332
|
+
"import": "./input-number/index.mjs",
|
|
5333
|
+
"types": "./input-number/index.d.ts"
|
|
5334
|
+
},
|
|
5335
|
+
"./link": {
|
|
5336
|
+
"require": "./link/index.cjs",
|
|
5337
|
+
"import": "./link/index.mjs",
|
|
5338
|
+
"types": "./link/index.d.ts"
|
|
5334
5339
|
},
|
|
5335
5340
|
"./mini-chart": {
|
|
5336
5341
|
"require": "./mini-chart/index.cjs",
|
|
5337
5342
|
"import": "./mini-chart/index.mjs",
|
|
5338
5343
|
"types": "./mini-chart/index.d.ts"
|
|
5339
5344
|
},
|
|
5345
|
+
"./input-mask": {
|
|
5346
|
+
"require": "./input-mask/index.cjs",
|
|
5347
|
+
"import": "./input-mask/index.mjs",
|
|
5348
|
+
"types": "./input-mask/index.d.ts"
|
|
5349
|
+
},
|
|
5340
5350
|
"./neighbor-location": {
|
|
5341
5351
|
"require": "./neighbor-location/index.cjs",
|
|
5342
5352
|
"import": "./neighbor-location/index.mjs",
|
|
5343
5353
|
"types": "./neighbor-location/index.d.ts"
|
|
5344
5354
|
},
|
|
5345
|
-
"./link": {
|
|
5346
|
-
"require": "./link/index.cjs",
|
|
5347
|
-
"import": "./link/index.mjs",
|
|
5348
|
-
"types": "./link/index.d.ts"
|
|
5349
|
-
},
|
|
5350
|
-
"./input-number": {
|
|
5351
|
-
"require": "./input-number/index.cjs",
|
|
5352
|
-
"import": "./input-number/index.mjs",
|
|
5353
|
-
"types": "./input-number/index.d.ts"
|
|
5354
|
-
},
|
|
5355
5355
|
"./modal": {
|
|
5356
5356
|
"require": "./modal/index.cjs",
|
|
5357
5357
|
"import": "./modal/index.mjs",
|
|
5358
5358
|
"types": "./modal/index.d.ts"
|
|
5359
5359
|
},
|
|
5360
|
-
"./notice": {
|
|
5361
|
-
"require": "./notice/index.cjs",
|
|
5362
|
-
"import": "./notice/index.mjs",
|
|
5363
|
-
"types": "./notice/index.d.ts"
|
|
5364
|
-
},
|
|
5365
5360
|
"./notice-bubble": {
|
|
5366
5361
|
"require": "./notice-bubble/index.cjs",
|
|
5367
5362
|
"import": "./notice-bubble/index.mjs",
|
|
5368
5363
|
"types": "./notice-bubble/index.d.ts"
|
|
5369
5364
|
},
|
|
5365
|
+
"./notice": {
|
|
5366
|
+
"require": "./notice/index.cjs",
|
|
5367
|
+
"import": "./notice/index.mjs",
|
|
5368
|
+
"types": "./notice/index.d.ts"
|
|
5369
|
+
},
|
|
5370
5370
|
"./notice-global": {
|
|
5371
5371
|
"require": "./notice-global/index.cjs",
|
|
5372
5372
|
"import": "./notice-global/index.mjs",
|
|
@@ -5377,11 +5377,6 @@
|
|
|
5377
5377
|
"import": "./outside-click/index.mjs",
|
|
5378
5378
|
"types": "./outside-click/index.d.ts"
|
|
5379
5379
|
},
|
|
5380
|
-
"./pills": {
|
|
5381
|
-
"require": "./pills/index.cjs",
|
|
5382
|
-
"import": "./pills/index.mjs",
|
|
5383
|
-
"types": "./pills/index.d.ts"
|
|
5384
|
-
},
|
|
5385
5380
|
"./pagination": {
|
|
5386
5381
|
"require": "./pagination/index.cjs",
|
|
5387
5382
|
"import": "./pagination/index.mjs",
|
|
@@ -5392,6 +5387,16 @@
|
|
|
5392
5387
|
"import": "./popper/index.mjs",
|
|
5393
5388
|
"types": "./popper/index.d.ts"
|
|
5394
5389
|
},
|
|
5390
|
+
"./pills": {
|
|
5391
|
+
"require": "./pills/index.cjs",
|
|
5392
|
+
"import": "./pills/index.mjs",
|
|
5393
|
+
"types": "./pills/index.d.ts"
|
|
5394
|
+
},
|
|
5395
|
+
"./progress-bar": {
|
|
5396
|
+
"require": "./progress-bar/index.cjs",
|
|
5397
|
+
"import": "./progress-bar/index.mjs",
|
|
5398
|
+
"types": "./progress-bar/index.d.ts"
|
|
5399
|
+
},
|
|
5395
5400
|
"./portal": {
|
|
5396
5401
|
"require": "./portal/index.cjs",
|
|
5397
5402
|
"import": "./portal/index.mjs",
|
|
@@ -5402,26 +5407,21 @@
|
|
|
5402
5407
|
"import": "./product-head/index.mjs",
|
|
5403
5408
|
"types": "./product-head/index.d.ts"
|
|
5404
5409
|
},
|
|
5405
|
-
"./progress-bar": {
|
|
5406
|
-
"require": "./progress-bar/index.cjs",
|
|
5407
|
-
"import": "./progress-bar/index.mjs",
|
|
5408
|
-
"types": "./progress-bar/index.d.ts"
|
|
5409
|
-
},
|
|
5410
5410
|
"./radio": {
|
|
5411
5411
|
"require": "./radio/index.cjs",
|
|
5412
5412
|
"import": "./radio/index.mjs",
|
|
5413
5413
|
"types": "./radio/index.d.ts"
|
|
5414
5414
|
},
|
|
5415
|
-
"./select": {
|
|
5416
|
-
"require": "./select/index.cjs",
|
|
5417
|
-
"import": "./select/index.mjs",
|
|
5418
|
-
"types": "./select/index.d.ts"
|
|
5419
|
-
},
|
|
5420
5415
|
"./scroll-area": {
|
|
5421
5416
|
"require": "./scroll-area/index.cjs",
|
|
5422
5417
|
"import": "./scroll-area/index.mjs",
|
|
5423
5418
|
"types": "./scroll-area/index.d.ts"
|
|
5424
5419
|
},
|
|
5420
|
+
"./select": {
|
|
5421
|
+
"require": "./select/index.cjs",
|
|
5422
|
+
"import": "./select/index.mjs",
|
|
5423
|
+
"types": "./select/index.d.ts"
|
|
5424
|
+
},
|
|
5425
5425
|
"./side-panel": {
|
|
5426
5426
|
"require": "./side-panel/index.cjs",
|
|
5427
5427
|
"import": "./side-panel/index.mjs",
|
|
@@ -5432,61 +5432,56 @@
|
|
|
5432
5432
|
"import": "./skeleton/index.mjs",
|
|
5433
5433
|
"types": "./skeleton/index.d.ts"
|
|
5434
5434
|
},
|
|
5435
|
-
"./
|
|
5436
|
-
"require": "./
|
|
5437
|
-
"import": "./
|
|
5438
|
-
"types": "./
|
|
5435
|
+
"./input": {
|
|
5436
|
+
"require": "./input/index.cjs",
|
|
5437
|
+
"import": "./input/index.mjs",
|
|
5438
|
+
"types": "./input/index.d.ts"
|
|
5439
|
+
},
|
|
5440
|
+
"./spin-container": {
|
|
5441
|
+
"require": "./spin-container/index.cjs",
|
|
5442
|
+
"import": "./spin-container/index.mjs",
|
|
5443
|
+
"types": "./spin-container/index.d.ts"
|
|
5439
5444
|
},
|
|
5440
5445
|
"./spin": {
|
|
5441
5446
|
"require": "./spin/index.cjs",
|
|
5442
5447
|
"import": "./spin/index.mjs",
|
|
5443
5448
|
"types": "./spin/index.d.ts"
|
|
5444
5449
|
},
|
|
5450
|
+
"./slider": {
|
|
5451
|
+
"require": "./slider/index.cjs",
|
|
5452
|
+
"import": "./slider/index.mjs",
|
|
5453
|
+
"types": "./slider/index.d.ts"
|
|
5454
|
+
},
|
|
5445
5455
|
"./sticky": {
|
|
5446
5456
|
"require": "./sticky/index.cjs",
|
|
5447
5457
|
"import": "./sticky/index.mjs",
|
|
5448
5458
|
"types": "./sticky/index.d.ts"
|
|
5449
5459
|
},
|
|
5450
|
-
"./spin-container": {
|
|
5451
|
-
"require": "./spin-container/index.cjs",
|
|
5452
|
-
"import": "./spin-container/index.mjs",
|
|
5453
|
-
"types": "./spin-container/index.d.ts"
|
|
5454
|
-
},
|
|
5455
|
-
"./stylelint-plugin": {
|
|
5456
|
-
"require": "./stylelint-plugin/index.cjs",
|
|
5457
|
-
"import": "./stylelint-plugin/index.mjs",
|
|
5458
|
-
"types": "./stylelint-plugin/index.d.ts"
|
|
5459
|
-
},
|
|
5460
|
-
"./input-mask": {
|
|
5461
|
-
"require": "./input-mask/index.cjs",
|
|
5462
|
-
"import": "./input-mask/index.mjs",
|
|
5463
|
-
"types": "./input-mask/index.d.ts"
|
|
5464
|
-
},
|
|
5465
5460
|
"./switch": {
|
|
5466
5461
|
"require": "./switch/index.cjs",
|
|
5467
5462
|
"import": "./switch/index.mjs",
|
|
5468
5463
|
"types": "./switch/index.d.ts"
|
|
5469
5464
|
},
|
|
5470
|
-
"./tab-panel": {
|
|
5471
|
-
"require": "./tab-panel/index.cjs",
|
|
5472
|
-
"import": "./tab-panel/index.mjs",
|
|
5473
|
-
"types": "./tab-panel/index.d.ts"
|
|
5474
|
-
},
|
|
5475
5465
|
"./tab-line": {
|
|
5476
5466
|
"require": "./tab-line/index.cjs",
|
|
5477
5467
|
"import": "./tab-line/index.mjs",
|
|
5478
5468
|
"types": "./tab-line/index.d.ts"
|
|
5479
5469
|
},
|
|
5480
|
-
"./
|
|
5481
|
-
"require": "./
|
|
5482
|
-
"import": "./
|
|
5483
|
-
"types": "./
|
|
5470
|
+
"./tab-panel": {
|
|
5471
|
+
"require": "./tab-panel/index.cjs",
|
|
5472
|
+
"import": "./tab-panel/index.mjs",
|
|
5473
|
+
"types": "./tab-panel/index.d.ts"
|
|
5484
5474
|
},
|
|
5485
5475
|
"./tag": {
|
|
5486
5476
|
"require": "./tag/index.cjs",
|
|
5487
5477
|
"import": "./tag/index.mjs",
|
|
5488
5478
|
"types": "./tag/index.d.ts"
|
|
5489
5479
|
},
|
|
5480
|
+
"./textarea": {
|
|
5481
|
+
"require": "./textarea/index.cjs",
|
|
5482
|
+
"import": "./textarea/index.mjs",
|
|
5483
|
+
"types": "./textarea/index.d.ts"
|
|
5484
|
+
},
|
|
5490
5485
|
"./time-picker": {
|
|
5491
5486
|
"require": "./time-picker/index.cjs",
|
|
5492
5487
|
"import": "./time-picker/index.mjs",
|
|
@@ -5502,6 +5497,11 @@
|
|
|
5502
5497
|
"import": "./typography/index.mjs",
|
|
5503
5498
|
"types": "./typography/index.d.ts"
|
|
5504
5499
|
},
|
|
5500
|
+
"./stylelint-plugin": {
|
|
5501
|
+
"require": "./stylelint-plugin/index.cjs",
|
|
5502
|
+
"import": "./stylelint-plugin/index.mjs",
|
|
5503
|
+
"types": "./stylelint-plugin/index.d.ts"
|
|
5504
|
+
},
|
|
5505
5505
|
"./widget-empty": {
|
|
5506
5506
|
"require": "./widget-empty/index.cjs",
|
|
5507
5507
|
"import": "./widget-empty/index.mjs",
|