@semcore/ui 16.14.0 → 16.15.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 +45 -0
- package/package.json +182 -180
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,48 @@
|
|
|
1
|
+
## [16.15.0] - 2026-03-31
|
|
2
|
+
|
|
3
|
+
### @semcore/feedback-form
|
|
4
|
+
|
|
5
|
+
- **Fixed** `Star` SVG alignment for `FeedbackRating` component.
|
|
6
|
+
|
|
7
|
+
### @semcore/inline-input
|
|
8
|
+
|
|
9
|
+
- **Fixed** Some non-working properties marked as deprecated.
|
|
10
|
+
|
|
11
|
+
### @semcore/bulk-textarea
|
|
12
|
+
|
|
13
|
+
- **Added** Added `autoFocus` prop for `BulkTextarea.InputField`
|
|
14
|
+
|
|
15
|
+
### @semcore/icon
|
|
16
|
+
|
|
17
|
+
- **Changed** `Semrush` icon.
|
|
18
|
+
|
|
19
|
+
### @semcore/d3-chart
|
|
20
|
+
|
|
21
|
+
- **Fixed** Bubble chart plot size calculation.
|
|
22
|
+
- **Added** `percentFormatter` for Cigarette.
|
|
23
|
+
- **Added** Added `cursor:pointer` for `Bubble` chart in case bubbles are
|
|
24
|
+
clickable.
|
|
25
|
+
- **Added** `minimalBarWidth` for `Cigarette` chart.
|
|
26
|
+
|
|
27
|
+
### @semcore/base-components
|
|
28
|
+
|
|
29
|
+
- **Added** **box**: Add `hoverCursor` to `Box`.
|
|
30
|
+
- **Added** `inset` property for the Box component.
|
|
31
|
+
|
|
32
|
+
### @semcore/data-table
|
|
33
|
+
|
|
34
|
+
- **Added** New structure `SelectableRows` to handle selected rows in reactive
|
|
35
|
+
way.
|
|
36
|
+
- **Fixed** Impossible to navigate by keyboard when sorting was clicked by mouse.
|
|
37
|
+
- **Fixed** Impossible to navigate cells near the merger when accordion collapsed.
|
|
38
|
+
- **Fixed** Sorted column remains visually selected after sorting another column
|
|
39
|
+
via mouse when sorted was focused
|
|
40
|
+
|
|
41
|
+
### @semcore/core
|
|
42
|
+
|
|
43
|
+
- **Changed** Moved css-variables to separate package - `@semcore/theme`.
|
|
44
|
+
- **Fixed** Prevent `body` pollution in `usePreventScroll`.
|
|
45
|
+
|
|
1
46
|
## [16.14.0] - 2026-02-10
|
|
2
47
|
|
|
3
48
|
### @semcore/dropdown-menu
|
package/package.json
CHANGED
|
@@ -1,84 +1,86 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/ui",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.15.0-prerelease.1",
|
|
4
|
+
"description": "Semrush design system package that reexports all other single component packages.",
|
|
5
|
+
"author": "UI-kit team <ui-kit-team@semrush.com>",
|
|
4
6
|
"license": "MIT",
|
|
5
7
|
"module": "./index.mjs",
|
|
6
8
|
"sideEffects": false,
|
|
7
9
|
"dependencies": {
|
|
8
10
|
"@semcore/accordion": "16.7.2",
|
|
9
|
-
"@semcore/animation": "16.0.7",
|
|
10
11
|
"@semcore/add-filter": "16.6.3",
|
|
11
|
-
"@semcore/
|
|
12
|
-
"@semcore/breakpoints": "16.0.11",
|
|
12
|
+
"@semcore/animation": "16.0.7",
|
|
13
13
|
"@semcore/badge": "16.0.7",
|
|
14
|
+
"@semcore/base-components": "16.5.0-prerelease.1",
|
|
14
15
|
"@semcore/base-trigger": "16.4.5",
|
|
15
16
|
"@semcore/breadcrumbs": "16.5.4",
|
|
17
|
+
"@semcore/breakpoints": "16.0.11",
|
|
16
18
|
"@semcore/button": "16.0.12",
|
|
17
|
-
"@semcore/bulk-textarea": "16.6.2",
|
|
18
|
-
"@semcore/checkbox": "16.2.2",
|
|
19
19
|
"@semcore/card": "16.1.12",
|
|
20
|
-
"@semcore/
|
|
21
|
-
"@semcore/core": "16.5.1",
|
|
22
|
-
"@semcore/counter": "16.0.11",
|
|
23
|
-
"@semcore/data-table": "16.5.3",
|
|
24
|
-
"@semcore/d3-chart": "16.5.0",
|
|
20
|
+
"@semcore/bulk-textarea": "16.7.0-prerelease.1",
|
|
25
21
|
"@semcore/carousel": "16.1.13",
|
|
22
|
+
"@semcore/checkbox": "16.2.2",
|
|
23
|
+
"@semcore/counter": "16.0.11",
|
|
24
|
+
"@semcore/color-picker": "16.1.13",
|
|
25
|
+
"@semcore/core": "16.5.2-prerelease.1",
|
|
26
|
+
"@semcore/d3-chart": "16.6.0-prerelease.1",
|
|
27
|
+
"@semcore/data-table": "16.6.0-prerelease.1",
|
|
26
28
|
"@semcore/date-picker": "16.2.4",
|
|
27
29
|
"@semcore/divider": "16.0.11",
|
|
28
30
|
"@semcore/dot": "16.0.11",
|
|
29
31
|
"@semcore/dropdown": "16.1.4",
|
|
30
32
|
"@semcore/dropdown-menu": "16.2.2",
|
|
31
|
-
"@semcore/errors": "16.1.7",
|
|
32
33
|
"@semcore/ellipsis": "16.0.12",
|
|
33
|
-
"@semcore/feature-popover": "16.2.5",
|
|
34
34
|
"@semcore/feature-highlight": "16.3.0",
|
|
35
|
+
"@semcore/feature-popover": "16.2.5",
|
|
35
36
|
"@semcore/drag-and-drop": "16.1.12",
|
|
36
|
-
"@semcore/
|
|
37
|
+
"@semcore/errors": "16.1.7",
|
|
37
38
|
"@semcore/flags": "16.1.8",
|
|
38
39
|
"@semcore/flex-box": "16.0.11",
|
|
40
|
+
"@semcore/feedback-form": "16.2.1-prerelease.1",
|
|
39
41
|
"@semcore/format-text": "16.1.1",
|
|
40
42
|
"@semcore/fullscreen-modal": "16.1.12",
|
|
41
|
-
"@semcore/grid": "16.0.11",
|
|
42
43
|
"@semcore/i18n-unplugin": "16.0.9",
|
|
44
|
+
"@semcore/grid": "16.0.11",
|
|
43
45
|
"@semcore/illustration": "16.0.12",
|
|
44
|
-
"@semcore/
|
|
45
|
-
"@semcore/inline-input": "16.2.
|
|
46
|
+
"@semcore/icon": "16.7.5-prerelease.1",
|
|
47
|
+
"@semcore/inline-input": "16.2.3-prerelease.1",
|
|
46
48
|
"@semcore/input": "16.1.1",
|
|
49
|
+
"@semcore/input-tags": "16.0.13",
|
|
50
|
+
"@semcore/inline-edit": "16.0.11",
|
|
51
|
+
"@semcore/input-number": "16.0.11",
|
|
52
|
+
"@semcore/input-mask": "16.0.11",
|
|
47
53
|
"@semcore/link": "16.0.11",
|
|
48
|
-
"@semcore/icon": "16.7.4",
|
|
49
|
-
"@semcore/mini-chart": "16.1.1",
|
|
50
54
|
"@semcore/modal": "16.1.13",
|
|
51
|
-
"@semcore/
|
|
55
|
+
"@semcore/mini-chart": "16.1.1",
|
|
52
56
|
"@semcore/notice": "16.1.12",
|
|
53
|
-
"@semcore/
|
|
54
|
-
"@semcore/notice-bubble": "16.2.1",
|
|
57
|
+
"@semcore/neighbor-location": "16.0.11",
|
|
55
58
|
"@semcore/notice-global": "16.1.13",
|
|
56
|
-
"@semcore/
|
|
57
|
-
"@semcore/
|
|
58
|
-
"@semcore/pagination": "16.1.12",
|
|
59
|
+
"@semcore/outside-click": "16.0.11",
|
|
60
|
+
"@semcore/notice-bubble": "16.2.1",
|
|
59
61
|
"@semcore/popper": "16.0.11",
|
|
62
|
+
"@semcore/pagination": "16.1.12",
|
|
63
|
+
"@semcore/pills": "16.0.11",
|
|
60
64
|
"@semcore/portal": "16.0.11",
|
|
61
|
-
"@semcore/progress-bar": "16.0.11",
|
|
62
|
-
"@semcore/input-tags": "16.0.13",
|
|
63
65
|
"@semcore/product-head": "16.0.11",
|
|
64
|
-
"@semcore/
|
|
66
|
+
"@semcore/progress-bar": "16.0.11",
|
|
65
67
|
"@semcore/radio": "16.1.1",
|
|
66
|
-
"@semcore/side-panel": "16.1.12",
|
|
67
|
-
"@semcore/skeleton": "16.0.11",
|
|
68
68
|
"@semcore/select": "16.1.12",
|
|
69
|
-
"@semcore/
|
|
69
|
+
"@semcore/scroll-area": "16.0.11",
|
|
70
|
+
"@semcore/side-panel": "16.1.12",
|
|
70
71
|
"@semcore/slider": "16.1.1",
|
|
72
|
+
"@semcore/skeleton": "16.0.11",
|
|
73
|
+
"@semcore/spin": "16.0.11",
|
|
71
74
|
"@semcore/spin-container": "16.0.11",
|
|
72
75
|
"@semcore/sticky": "16.0.11",
|
|
73
|
-
"@semcore/spin": "16.0.11",
|
|
74
|
-
"@semcore/switch": "16.1.1",
|
|
75
76
|
"@semcore/stylelint-plugin": "0.0.1",
|
|
76
77
|
"@semcore/tab-line": "16.0.11",
|
|
77
78
|
"@semcore/tab-panel": "16.0.11",
|
|
78
|
-
"@semcore/
|
|
79
|
+
"@semcore/switch": "16.1.1",
|
|
79
80
|
"@semcore/textarea": "16.0.11",
|
|
80
|
-
"@semcore/
|
|
81
|
+
"@semcore/tag": "16.1.14",
|
|
81
82
|
"@semcore/time-picker": "16.1.13",
|
|
83
|
+
"@semcore/tooltip": "16.0.11",
|
|
82
84
|
"@semcore/typography": "16.3.2",
|
|
83
85
|
"@semcore/widget-empty": "16.0.11",
|
|
84
86
|
"@semcore/wizard": "16.2.2"
|
|
@@ -108,31 +110,26 @@
|
|
|
108
110
|
"import": "./accordion/index.mjs",
|
|
109
111
|
"types": "./accordion/index.d.ts"
|
|
110
112
|
},
|
|
111
|
-
"./animation": {
|
|
112
|
-
"require": "./animation/index.cjs",
|
|
113
|
-
"import": "./animation/index.mjs",
|
|
114
|
-
"types": "./animation/index.d.ts"
|
|
115
|
-
},
|
|
116
113
|
"./add-filter": {
|
|
117
114
|
"require": "./add-filter/index.cjs",
|
|
118
115
|
"import": "./add-filter/index.mjs",
|
|
119
116
|
"types": "./add-filter/index.d.ts"
|
|
120
117
|
},
|
|
121
|
-
"./
|
|
122
|
-
"require": "./
|
|
123
|
-
"import": "./
|
|
124
|
-
"types": "./
|
|
125
|
-
},
|
|
126
|
-
"./breakpoints": {
|
|
127
|
-
"require": "./breakpoints/index.cjs",
|
|
128
|
-
"import": "./breakpoints/index.mjs",
|
|
129
|
-
"types": "./breakpoints/index.d.ts"
|
|
118
|
+
"./animation": {
|
|
119
|
+
"require": "./animation/index.cjs",
|
|
120
|
+
"import": "./animation/index.mjs",
|
|
121
|
+
"types": "./animation/index.d.ts"
|
|
130
122
|
},
|
|
131
123
|
"./badge": {
|
|
132
124
|
"require": "./badge/index.cjs",
|
|
133
125
|
"import": "./badge/index.mjs",
|
|
134
126
|
"types": "./badge/index.d.ts"
|
|
135
127
|
},
|
|
128
|
+
"./base-components": {
|
|
129
|
+
"require": "./base-components/index.cjs",
|
|
130
|
+
"import": "./base-components/index.mjs",
|
|
131
|
+
"types": "./base-components/index.d.ts"
|
|
132
|
+
},
|
|
136
133
|
"./base-trigger": {
|
|
137
134
|
"require": "./base-trigger/index.cjs",
|
|
138
135
|
"import": "./base-trigger/index.mjs",
|
|
@@ -143,25 +140,40 @@
|
|
|
143
140
|
"import": "./breadcrumbs/index.mjs",
|
|
144
141
|
"types": "./breadcrumbs/index.d.ts"
|
|
145
142
|
},
|
|
143
|
+
"./breakpoints": {
|
|
144
|
+
"require": "./breakpoints/index.cjs",
|
|
145
|
+
"import": "./breakpoints/index.mjs",
|
|
146
|
+
"types": "./breakpoints/index.d.ts"
|
|
147
|
+
},
|
|
146
148
|
"./button": {
|
|
147
149
|
"require": "./button/index.cjs",
|
|
148
150
|
"import": "./button/index.mjs",
|
|
149
151
|
"types": "./button/index.d.ts"
|
|
150
152
|
},
|
|
153
|
+
"./card": {
|
|
154
|
+
"require": "./card/index.cjs",
|
|
155
|
+
"import": "./card/index.mjs",
|
|
156
|
+
"types": "./card/index.d.ts"
|
|
157
|
+
},
|
|
151
158
|
"./bulk-textarea": {
|
|
152
159
|
"require": "./bulk-textarea/index.cjs",
|
|
153
160
|
"import": "./bulk-textarea/index.mjs",
|
|
154
161
|
"types": "./bulk-textarea/index.d.ts"
|
|
155
162
|
},
|
|
163
|
+
"./carousel": {
|
|
164
|
+
"require": "./carousel/index.cjs",
|
|
165
|
+
"import": "./carousel/index.mjs",
|
|
166
|
+
"types": "./carousel/index.d.ts"
|
|
167
|
+
},
|
|
156
168
|
"./checkbox": {
|
|
157
169
|
"require": "./checkbox/index.cjs",
|
|
158
170
|
"import": "./checkbox/index.mjs",
|
|
159
171
|
"types": "./checkbox/index.d.ts"
|
|
160
172
|
},
|
|
161
|
-
"./
|
|
162
|
-
"require": "./
|
|
163
|
-
"import": "./
|
|
164
|
-
"types": "./
|
|
173
|
+
"./counter": {
|
|
174
|
+
"require": "./counter/index.cjs",
|
|
175
|
+
"import": "./counter/index.mjs",
|
|
176
|
+
"types": "./counter/index.d.ts"
|
|
165
177
|
},
|
|
166
178
|
"./color-picker": {
|
|
167
179
|
"require": "./color-picker/index.cjs",
|
|
@@ -557,25 +569,15 @@
|
|
|
557
569
|
"require": "./core/lib/theme/themes/light.css",
|
|
558
570
|
"import": "./core/lib/theme/themes/light.css"
|
|
559
571
|
},
|
|
560
|
-
"./counter": {
|
|
561
|
-
"require": "./counter/index.cjs",
|
|
562
|
-
"import": "./counter/index.mjs",
|
|
563
|
-
"types": "./counter/index.d.ts"
|
|
564
|
-
},
|
|
565
|
-
"./data-table": {
|
|
566
|
-
"require": "./data-table/index.cjs",
|
|
567
|
-
"import": "./data-table/index.mjs",
|
|
568
|
-
"types": "./data-table/index.d.ts"
|
|
569
|
-
},
|
|
570
572
|
"./d3-chart": {
|
|
571
573
|
"require": "./d3-chart/index.cjs",
|
|
572
574
|
"import": "./d3-chart/index.mjs",
|
|
573
575
|
"types": "./d3-chart/index.d.ts"
|
|
574
576
|
},
|
|
575
|
-
"./
|
|
576
|
-
"require": "./
|
|
577
|
-
"import": "./
|
|
578
|
-
"types": "./
|
|
577
|
+
"./data-table": {
|
|
578
|
+
"require": "./data-table/index.cjs",
|
|
579
|
+
"import": "./data-table/index.mjs",
|
|
580
|
+
"types": "./data-table/index.d.ts"
|
|
579
581
|
},
|
|
580
582
|
"./date-picker": {
|
|
581
583
|
"require": "./date-picker/index.cjs",
|
|
@@ -602,35 +604,30 @@
|
|
|
602
604
|
"import": "./dropdown-menu/index.mjs",
|
|
603
605
|
"types": "./dropdown-menu/index.d.ts"
|
|
604
606
|
},
|
|
605
|
-
"./errors": {
|
|
606
|
-
"require": "./errors/index.cjs",
|
|
607
|
-
"import": "./errors/index.mjs",
|
|
608
|
-
"types": "./errors/index.d.ts"
|
|
609
|
-
},
|
|
610
607
|
"./ellipsis": {
|
|
611
608
|
"require": "./ellipsis/index.cjs",
|
|
612
609
|
"import": "./ellipsis/index.mjs",
|
|
613
610
|
"types": "./ellipsis/index.d.ts"
|
|
614
611
|
},
|
|
615
|
-
"./feature-popover": {
|
|
616
|
-
"require": "./feature-popover/index.cjs",
|
|
617
|
-
"import": "./feature-popover/index.mjs",
|
|
618
|
-
"types": "./feature-popover/index.d.ts"
|
|
619
|
-
},
|
|
620
612
|
"./feature-highlight": {
|
|
621
613
|
"require": "./feature-highlight/index.cjs",
|
|
622
614
|
"import": "./feature-highlight/index.mjs",
|
|
623
615
|
"types": "./feature-highlight/index.d.ts"
|
|
624
616
|
},
|
|
617
|
+
"./feature-popover": {
|
|
618
|
+
"require": "./feature-popover/index.cjs",
|
|
619
|
+
"import": "./feature-popover/index.mjs",
|
|
620
|
+
"types": "./feature-popover/index.d.ts"
|
|
621
|
+
},
|
|
625
622
|
"./drag-and-drop": {
|
|
626
623
|
"require": "./drag-and-drop/index.cjs",
|
|
627
624
|
"import": "./drag-and-drop/index.mjs",
|
|
628
625
|
"types": "./drag-and-drop/index.d.ts"
|
|
629
626
|
},
|
|
630
|
-
"./
|
|
631
|
-
"require": "./
|
|
632
|
-
"import": "./
|
|
633
|
-
"types": "./
|
|
627
|
+
"./errors": {
|
|
628
|
+
"require": "./errors/index.cjs",
|
|
629
|
+
"import": "./errors/index.mjs",
|
|
630
|
+
"types": "./errors/index.d.ts"
|
|
634
631
|
},
|
|
635
632
|
"./flags": {
|
|
636
633
|
"require": "./flags/index.cjs",
|
|
@@ -642,6 +639,11 @@
|
|
|
642
639
|
"import": "./flex-box/index.mjs",
|
|
643
640
|
"types": "./flex-box/index.d.ts"
|
|
644
641
|
},
|
|
642
|
+
"./feedback-form": {
|
|
643
|
+
"require": "./feedback-form/index.cjs",
|
|
644
|
+
"import": "./feedback-form/index.mjs",
|
|
645
|
+
"types": "./feedback-form/index.d.ts"
|
|
646
|
+
},
|
|
645
647
|
"./format-text": {
|
|
646
648
|
"require": "./format-text/index.cjs",
|
|
647
649
|
"import": "./format-text/index.mjs",
|
|
@@ -652,16 +654,16 @@
|
|
|
652
654
|
"import": "./fullscreen-modal/index.mjs",
|
|
653
655
|
"types": "./fullscreen-modal/index.d.ts"
|
|
654
656
|
},
|
|
655
|
-
"./grid": {
|
|
656
|
-
"require": "./grid/index.cjs",
|
|
657
|
-
"import": "./grid/index.mjs",
|
|
658
|
-
"types": "./grid/index.d.ts"
|
|
659
|
-
},
|
|
660
657
|
"./i18n-unplugin": {
|
|
661
658
|
"require": "./i18n-unplugin/index.cjs",
|
|
662
659
|
"import": "./i18n-unplugin/index.mjs",
|
|
663
660
|
"types": "./i18n-unplugin/index.d.ts"
|
|
664
661
|
},
|
|
662
|
+
"./grid": {
|
|
663
|
+
"require": "./grid/index.cjs",
|
|
664
|
+
"import": "./grid/index.mjs",
|
|
665
|
+
"types": "./grid/index.d.ts"
|
|
666
|
+
},
|
|
665
667
|
"./illustration/AccessDenied": {
|
|
666
668
|
"require": "./illustration/AccessDenied/index.cjs",
|
|
667
669
|
"import": "./illustration/AccessDenied/index.mjs",
|
|
@@ -947,26 +949,6 @@
|
|
|
947
949
|
"import": "./illustration/index.mjs",
|
|
948
950
|
"types": "./illustration/index.d.ts"
|
|
949
951
|
},
|
|
950
|
-
"./inline-edit": {
|
|
951
|
-
"require": "./inline-edit/index.cjs",
|
|
952
|
-
"import": "./inline-edit/index.mjs",
|
|
953
|
-
"types": "./inline-edit/index.d.ts"
|
|
954
|
-
},
|
|
955
|
-
"./inline-input": {
|
|
956
|
-
"require": "./inline-input/index.cjs",
|
|
957
|
-
"import": "./inline-input/index.mjs",
|
|
958
|
-
"types": "./inline-input/index.d.ts"
|
|
959
|
-
},
|
|
960
|
-
"./input": {
|
|
961
|
-
"require": "./input/index.cjs",
|
|
962
|
-
"import": "./input/index.mjs",
|
|
963
|
-
"types": "./input/index.d.ts"
|
|
964
|
-
},
|
|
965
|
-
"./link": {
|
|
966
|
-
"require": "./link/index.cjs",
|
|
967
|
-
"import": "./link/index.mjs",
|
|
968
|
-
"types": "./link/index.d.ts"
|
|
969
|
-
},
|
|
970
952
|
"./icon/Ad/l": {
|
|
971
953
|
"require": "./icon/Ad/l/index.cjs",
|
|
972
954
|
"import": "./icon/Ad/l/index.mjs",
|
|
@@ -5332,115 +5314,140 @@
|
|
|
5332
5314
|
"import": "./icon/index.mjs",
|
|
5333
5315
|
"types": "./icon/index.d.ts"
|
|
5334
5316
|
},
|
|
5335
|
-
"./
|
|
5336
|
-
"require": "./
|
|
5337
|
-
"import": "./
|
|
5338
|
-
"types": "./
|
|
5317
|
+
"./inline-input": {
|
|
5318
|
+
"require": "./inline-input/index.cjs",
|
|
5319
|
+
"import": "./inline-input/index.mjs",
|
|
5320
|
+
"types": "./inline-input/index.d.ts"
|
|
5321
|
+
},
|
|
5322
|
+
"./input": {
|
|
5323
|
+
"require": "./input/index.cjs",
|
|
5324
|
+
"import": "./input/index.mjs",
|
|
5325
|
+
"types": "./input/index.d.ts"
|
|
5326
|
+
},
|
|
5327
|
+
"./input-tags": {
|
|
5328
|
+
"require": "./input-tags/index.cjs",
|
|
5329
|
+
"import": "./input-tags/index.mjs",
|
|
5330
|
+
"types": "./input-tags/index.d.ts"
|
|
5331
|
+
},
|
|
5332
|
+
"./inline-edit": {
|
|
5333
|
+
"require": "./inline-edit/index.cjs",
|
|
5334
|
+
"import": "./inline-edit/index.mjs",
|
|
5335
|
+
"types": "./inline-edit/index.d.ts"
|
|
5336
|
+
},
|
|
5337
|
+
"./input-number": {
|
|
5338
|
+
"require": "./input-number/index.cjs",
|
|
5339
|
+
"import": "./input-number/index.mjs",
|
|
5340
|
+
"types": "./input-number/index.d.ts"
|
|
5341
|
+
},
|
|
5342
|
+
"./input-mask": {
|
|
5343
|
+
"require": "./input-mask/index.cjs",
|
|
5344
|
+
"import": "./input-mask/index.mjs",
|
|
5345
|
+
"types": "./input-mask/index.d.ts"
|
|
5346
|
+
},
|
|
5347
|
+
"./link": {
|
|
5348
|
+
"require": "./link/index.cjs",
|
|
5349
|
+
"import": "./link/index.mjs",
|
|
5350
|
+
"types": "./link/index.d.ts"
|
|
5339
5351
|
},
|
|
5340
5352
|
"./modal": {
|
|
5341
5353
|
"require": "./modal/index.cjs",
|
|
5342
5354
|
"import": "./modal/index.mjs",
|
|
5343
5355
|
"types": "./modal/index.d.ts"
|
|
5344
5356
|
},
|
|
5345
|
-
"./
|
|
5346
|
-
"require": "./
|
|
5347
|
-
"import": "./
|
|
5348
|
-
"types": "./
|
|
5357
|
+
"./mini-chart": {
|
|
5358
|
+
"require": "./mini-chart/index.cjs",
|
|
5359
|
+
"import": "./mini-chart/index.mjs",
|
|
5360
|
+
"types": "./mini-chart/index.d.ts"
|
|
5349
5361
|
},
|
|
5350
5362
|
"./notice": {
|
|
5351
5363
|
"require": "./notice/index.cjs",
|
|
5352
5364
|
"import": "./notice/index.mjs",
|
|
5353
5365
|
"types": "./notice/index.d.ts"
|
|
5354
5366
|
},
|
|
5355
|
-
"./
|
|
5356
|
-
"require": "./
|
|
5357
|
-
"import": "./
|
|
5358
|
-
"types": "./
|
|
5359
|
-
},
|
|
5360
|
-
"./notice-bubble": {
|
|
5361
|
-
"require": "./notice-bubble/index.cjs",
|
|
5362
|
-
"import": "./notice-bubble/index.mjs",
|
|
5363
|
-
"types": "./notice-bubble/index.d.ts"
|
|
5367
|
+
"./neighbor-location": {
|
|
5368
|
+
"require": "./neighbor-location/index.cjs",
|
|
5369
|
+
"import": "./neighbor-location/index.mjs",
|
|
5370
|
+
"types": "./neighbor-location/index.d.ts"
|
|
5364
5371
|
},
|
|
5365
5372
|
"./notice-global": {
|
|
5366
5373
|
"require": "./notice-global/index.cjs",
|
|
5367
5374
|
"import": "./notice-global/index.mjs",
|
|
5368
5375
|
"types": "./notice-global/index.d.ts"
|
|
5369
5376
|
},
|
|
5370
|
-
"./
|
|
5371
|
-
"require": "./
|
|
5372
|
-
"import": "./
|
|
5373
|
-
"types": "./
|
|
5377
|
+
"./outside-click": {
|
|
5378
|
+
"require": "./outside-click/index.cjs",
|
|
5379
|
+
"import": "./outside-click/index.mjs",
|
|
5380
|
+
"types": "./outside-click/index.d.ts"
|
|
5374
5381
|
},
|
|
5375
|
-
"./
|
|
5376
|
-
"require": "./
|
|
5377
|
-
"import": "./
|
|
5378
|
-
"types": "./
|
|
5382
|
+
"./notice-bubble": {
|
|
5383
|
+
"require": "./notice-bubble/index.cjs",
|
|
5384
|
+
"import": "./notice-bubble/index.mjs",
|
|
5385
|
+
"types": "./notice-bubble/index.d.ts"
|
|
5386
|
+
},
|
|
5387
|
+
"./popper": {
|
|
5388
|
+
"require": "./popper/index.cjs",
|
|
5389
|
+
"import": "./popper/index.mjs",
|
|
5390
|
+
"types": "./popper/index.d.ts"
|
|
5379
5391
|
},
|
|
5380
5392
|
"./pagination": {
|
|
5381
5393
|
"require": "./pagination/index.cjs",
|
|
5382
5394
|
"import": "./pagination/index.mjs",
|
|
5383
5395
|
"types": "./pagination/index.d.ts"
|
|
5384
5396
|
},
|
|
5385
|
-
"./
|
|
5386
|
-
"require": "./
|
|
5387
|
-
"import": "./
|
|
5388
|
-
"types": "./
|
|
5397
|
+
"./pills": {
|
|
5398
|
+
"require": "./pills/index.cjs",
|
|
5399
|
+
"import": "./pills/index.mjs",
|
|
5400
|
+
"types": "./pills/index.d.ts"
|
|
5389
5401
|
},
|
|
5390
5402
|
"./portal": {
|
|
5391
5403
|
"require": "./portal/index.cjs",
|
|
5392
5404
|
"import": "./portal/index.mjs",
|
|
5393
5405
|
"types": "./portal/index.d.ts"
|
|
5394
5406
|
},
|
|
5407
|
+
"./product-head": {
|
|
5408
|
+
"require": "./product-head/index.cjs",
|
|
5409
|
+
"import": "./product-head/index.mjs",
|
|
5410
|
+
"types": "./product-head/index.d.ts"
|
|
5411
|
+
},
|
|
5395
5412
|
"./progress-bar": {
|
|
5396
5413
|
"require": "./progress-bar/index.cjs",
|
|
5397
5414
|
"import": "./progress-bar/index.mjs",
|
|
5398
5415
|
"types": "./progress-bar/index.d.ts"
|
|
5399
5416
|
},
|
|
5400
|
-
"./
|
|
5401
|
-
"require": "./
|
|
5402
|
-
"import": "./
|
|
5403
|
-
"types": "./
|
|
5417
|
+
"./radio": {
|
|
5418
|
+
"require": "./radio/index.cjs",
|
|
5419
|
+
"import": "./radio/index.mjs",
|
|
5420
|
+
"types": "./radio/index.d.ts"
|
|
5404
5421
|
},
|
|
5405
|
-
"./
|
|
5406
|
-
"require": "./
|
|
5407
|
-
"import": "./
|
|
5408
|
-
"types": "./
|
|
5422
|
+
"./select": {
|
|
5423
|
+
"require": "./select/index.cjs",
|
|
5424
|
+
"import": "./select/index.mjs",
|
|
5425
|
+
"types": "./select/index.d.ts"
|
|
5409
5426
|
},
|
|
5410
5427
|
"./scroll-area": {
|
|
5411
5428
|
"require": "./scroll-area/index.cjs",
|
|
5412
5429
|
"import": "./scroll-area/index.mjs",
|
|
5413
5430
|
"types": "./scroll-area/index.d.ts"
|
|
5414
5431
|
},
|
|
5415
|
-
"./radio": {
|
|
5416
|
-
"require": "./radio/index.cjs",
|
|
5417
|
-
"import": "./radio/index.mjs",
|
|
5418
|
-
"types": "./radio/index.d.ts"
|
|
5419
|
-
},
|
|
5420
5432
|
"./side-panel": {
|
|
5421
5433
|
"require": "./side-panel/index.cjs",
|
|
5422
5434
|
"import": "./side-panel/index.mjs",
|
|
5423
5435
|
"types": "./side-panel/index.d.ts"
|
|
5424
5436
|
},
|
|
5437
|
+
"./slider": {
|
|
5438
|
+
"require": "./slider/index.cjs",
|
|
5439
|
+
"import": "./slider/index.mjs",
|
|
5440
|
+
"types": "./slider/index.d.ts"
|
|
5441
|
+
},
|
|
5425
5442
|
"./skeleton": {
|
|
5426
5443
|
"require": "./skeleton/index.cjs",
|
|
5427
5444
|
"import": "./skeleton/index.mjs",
|
|
5428
5445
|
"types": "./skeleton/index.d.ts"
|
|
5429
5446
|
},
|
|
5430
|
-
"./
|
|
5431
|
-
"require": "./
|
|
5432
|
-
"import": "./
|
|
5433
|
-
"types": "./
|
|
5434
|
-
},
|
|
5435
|
-
"./outside-click": {
|
|
5436
|
-
"require": "./outside-click/index.cjs",
|
|
5437
|
-
"import": "./outside-click/index.mjs",
|
|
5438
|
-
"types": "./outside-click/index.d.ts"
|
|
5439
|
-
},
|
|
5440
|
-
"./slider": {
|
|
5441
|
-
"require": "./slider/index.cjs",
|
|
5442
|
-
"import": "./slider/index.mjs",
|
|
5443
|
-
"types": "./slider/index.d.ts"
|
|
5447
|
+
"./spin": {
|
|
5448
|
+
"require": "./spin/index.cjs",
|
|
5449
|
+
"import": "./spin/index.mjs",
|
|
5450
|
+
"types": "./spin/index.d.ts"
|
|
5444
5451
|
},
|
|
5445
5452
|
"./spin-container": {
|
|
5446
5453
|
"require": "./spin-container/index.cjs",
|
|
@@ -5452,16 +5459,6 @@
|
|
|
5452
5459
|
"import": "./sticky/index.mjs",
|
|
5453
5460
|
"types": "./sticky/index.d.ts"
|
|
5454
5461
|
},
|
|
5455
|
-
"./spin": {
|
|
5456
|
-
"require": "./spin/index.cjs",
|
|
5457
|
-
"import": "./spin/index.mjs",
|
|
5458
|
-
"types": "./spin/index.d.ts"
|
|
5459
|
-
},
|
|
5460
|
-
"./switch": {
|
|
5461
|
-
"require": "./switch/index.cjs",
|
|
5462
|
-
"import": "./switch/index.mjs",
|
|
5463
|
-
"types": "./switch/index.d.ts"
|
|
5464
|
-
},
|
|
5465
5462
|
"./stylelint-plugin": {
|
|
5466
5463
|
"require": "./stylelint-plugin/index.cjs",
|
|
5467
5464
|
"import": "./stylelint-plugin/index.mjs",
|
|
@@ -5477,26 +5474,31 @@
|
|
|
5477
5474
|
"import": "./tab-panel/index.mjs",
|
|
5478
5475
|
"types": "./tab-panel/index.d.ts"
|
|
5479
5476
|
},
|
|
5480
|
-
"./
|
|
5481
|
-
"require": "./
|
|
5482
|
-
"import": "./
|
|
5483
|
-
"types": "./
|
|
5477
|
+
"./switch": {
|
|
5478
|
+
"require": "./switch/index.cjs",
|
|
5479
|
+
"import": "./switch/index.mjs",
|
|
5480
|
+
"types": "./switch/index.d.ts"
|
|
5484
5481
|
},
|
|
5485
5482
|
"./textarea": {
|
|
5486
5483
|
"require": "./textarea/index.cjs",
|
|
5487
5484
|
"import": "./textarea/index.mjs",
|
|
5488
5485
|
"types": "./textarea/index.d.ts"
|
|
5489
5486
|
},
|
|
5490
|
-
"./
|
|
5491
|
-
"require": "./
|
|
5492
|
-
"import": "./
|
|
5493
|
-
"types": "./
|
|
5487
|
+
"./tag": {
|
|
5488
|
+
"require": "./tag/index.cjs",
|
|
5489
|
+
"import": "./tag/index.mjs",
|
|
5490
|
+
"types": "./tag/index.d.ts"
|
|
5494
5491
|
},
|
|
5495
5492
|
"./time-picker": {
|
|
5496
5493
|
"require": "./time-picker/index.cjs",
|
|
5497
5494
|
"import": "./time-picker/index.mjs",
|
|
5498
5495
|
"types": "./time-picker/index.d.ts"
|
|
5499
5496
|
},
|
|
5497
|
+
"./tooltip": {
|
|
5498
|
+
"require": "./tooltip/index.cjs",
|
|
5499
|
+
"import": "./tooltip/index.mjs",
|
|
5500
|
+
"types": "./tooltip/index.d.ts"
|
|
5501
|
+
},
|
|
5500
5502
|
"./typography": {
|
|
5501
5503
|
"require": "./typography/index.cjs",
|
|
5502
5504
|
"import": "./typography/index.mjs",
|