@esri/calcite-components-react 5.0.0-next.9 → 5.0.0-next.90
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/LICENSE.md +1 -1
- package/README.md +14 -11
- package/THIRD-PARTY-LICENSES.md +39 -13
- package/dist/components.d.ts +210 -108
- package/dist/components.js +105 -1
- package/package.json +4 -4
package/dist/components.js
CHANGED
|
@@ -3,37 +3,46 @@ import React from "react";
|
|
|
3
3
|
import { createComponent } from "@lit/react";
|
|
4
4
|
import { makeReactWrapperFactory, getReactWrapperOptions } from "@arcgis/lumina";
|
|
5
5
|
const createWrapper = /*@__PURE__*/ makeReactWrapperFactory(React, createComponent);
|
|
6
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-accordion /> directly. */
|
|
6
7
|
export const CalciteAccordion = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-accordion", {}));
|
|
8
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-accordion-item /> directly. */
|
|
7
9
|
export const CalciteAccordionItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-accordion-item", {
|
|
8
10
|
onCalciteAccordionItemCollapse: "calciteAccordionItemCollapse",
|
|
9
11
|
onCalciteAccordionItemExpand: "calciteAccordionItemExpand",
|
|
10
12
|
}));
|
|
13
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-action /> directly. */
|
|
11
14
|
export const CalciteAction = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-action", {}));
|
|
15
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-action-bar /> directly. */
|
|
12
16
|
export const CalciteActionBar = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-action-bar", {
|
|
13
17
|
onCalciteActionBarCollapse: "calciteActionBarCollapse",
|
|
14
18
|
onCalciteActionBarExpand: "calciteActionBarExpand",
|
|
15
19
|
onCalciteActionBarToggle: "calciteActionBarToggle",
|
|
16
20
|
}));
|
|
21
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-action-group /> directly. */
|
|
17
22
|
export const CalciteActionGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-action-group", {
|
|
18
23
|
onCalciteActionGroupCollapse: "calciteActionGroupCollapse",
|
|
19
24
|
onCalciteActionGroupExpand: "calciteActionGroupExpand",
|
|
20
25
|
}));
|
|
26
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-action-menu /> directly. */
|
|
21
27
|
export const CalciteActionMenu = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-action-menu", {
|
|
22
28
|
onCalciteActionMenuCollapse: "calciteActionMenuCollapse",
|
|
23
29
|
onCalciteActionMenuExpand: "calciteActionMenuExpand",
|
|
24
30
|
onCalciteActionMenuOpen: "calciteActionMenuOpen",
|
|
25
31
|
}));
|
|
32
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-action-pad /> directly. */
|
|
26
33
|
export const CalciteActionPad = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-action-pad", {
|
|
27
34
|
onCalciteActionPadCollapse: "calciteActionPadCollapse",
|
|
28
35
|
onCalciteActionPadExpand: "calciteActionPadExpand",
|
|
29
36
|
onCalciteActionPadToggle: "calciteActionPadToggle",
|
|
30
37
|
}));
|
|
38
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-alert /> directly. */
|
|
31
39
|
export const CalciteAlert = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-alert", {
|
|
32
40
|
onCalciteAlertBeforeClose: "calciteAlertBeforeClose",
|
|
33
41
|
onCalciteAlertBeforeOpen: "calciteAlertBeforeOpen",
|
|
34
42
|
onCalciteAlertClose: "calciteAlertClose",
|
|
35
43
|
onCalciteAlertOpen: "calciteAlertOpen",
|
|
36
44
|
}));
|
|
45
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-autocomplete /> directly. */
|
|
37
46
|
export const CalciteAutocomplete = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-autocomplete", {
|
|
38
47
|
onCalciteAutocompleteBeforeClose: "calciteAutocompleteBeforeClose",
|
|
39
48
|
onCalciteAutocompleteBeforeOpen: "calciteAutocompleteBeforeOpen",
|
|
@@ -43,11 +52,15 @@ export const CalciteAutocomplete = /*@__PURE__*/ createWrapper(getReactWrapperOp
|
|
|
43
52
|
onCalciteAutocompleteTextChange: "calciteAutocompleteTextChange",
|
|
44
53
|
onCalciteAutocompleteTextInput: "calciteAutocompleteTextInput",
|
|
45
54
|
}));
|
|
55
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-autocomplete-item /> directly. */
|
|
46
56
|
export const CalciteAutocompleteItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-autocomplete-item", {
|
|
47
57
|
onCalciteAutocompleteItemSelect: "calciteAutocompleteItemSelect",
|
|
48
58
|
}));
|
|
59
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-autocomplete-item-group /> directly. */
|
|
49
60
|
export const CalciteAutocompleteItemGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-autocomplete-item-group", {}));
|
|
61
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-avatar /> directly. */
|
|
50
62
|
export const CalciteAvatar = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-avatar", {}));
|
|
63
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-block /> directly. */
|
|
51
64
|
export const CalciteBlock = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-block", {
|
|
52
65
|
onCalciteBlockBeforeClose: "calciteBlockBeforeClose",
|
|
53
66
|
onCalciteBlockBeforeOpen: "calciteBlockBeforeOpen",
|
|
@@ -61,24 +74,30 @@ export const CalciteBlock = /*@__PURE__*/ createWrapper(getReactWrapperOptions("
|
|
|
61
74
|
onCalciteBlockSortHandleOpen: "calciteBlockSortHandleOpen",
|
|
62
75
|
onCalciteBlockToggle: "calciteBlockToggle",
|
|
63
76
|
}));
|
|
77
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-block-group /> directly. */
|
|
64
78
|
export const CalciteBlockGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-block-group", {
|
|
65
79
|
onCalciteBlockGroupDragEnd: "calciteBlockGroupDragEnd",
|
|
66
80
|
onCalciteBlockGroupDragStart: "calciteBlockGroupDragStart",
|
|
67
81
|
onCalciteBlockGroupMoveHalt: "calciteBlockGroupMoveHalt",
|
|
68
82
|
onCalciteBlockGroupOrderChange: "calciteBlockGroupOrderChange",
|
|
69
83
|
}));
|
|
84
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-block-section /> directly. */
|
|
70
85
|
export const CalciteBlockSection = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-block-section", {
|
|
71
86
|
onCalciteBlockSectionCollapse: "calciteBlockSectionCollapse",
|
|
72
87
|
onCalciteBlockSectionExpand: "calciteBlockSectionExpand",
|
|
73
88
|
onCalciteBlockSectionToggle: "calciteBlockSectionToggle",
|
|
74
89
|
}));
|
|
90
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-button /> directly. */
|
|
75
91
|
export const CalciteButton = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-button", {}));
|
|
92
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-card /> directly. */
|
|
76
93
|
export const CalciteCard = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-card", {
|
|
77
94
|
onCalciteCardSelect: "calciteCardSelect",
|
|
78
95
|
}));
|
|
96
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-card-group /> directly. */
|
|
79
97
|
export const CalciteCardGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-card-group", {
|
|
80
98
|
onCalciteCardGroupSelect: "calciteCardGroupSelect",
|
|
81
99
|
}));
|
|
100
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-carousel /> directly. */
|
|
82
101
|
export const CalciteCarousel = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-carousel", {
|
|
83
102
|
onCalciteCarouselChange: "calciteCarouselChange",
|
|
84
103
|
onCalciteCarouselPause: "calciteCarouselPause",
|
|
@@ -86,25 +105,33 @@ export const CalciteCarousel = /*@__PURE__*/ createWrapper(getReactWrapperOption
|
|
|
86
105
|
onCalciteCarouselResume: "calciteCarouselResume",
|
|
87
106
|
onCalciteCarouselStop: "calciteCarouselStop",
|
|
88
107
|
}));
|
|
108
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-carousel-item /> directly. */
|
|
89
109
|
export const CalciteCarouselItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-carousel-item", {}));
|
|
110
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-checkbox /> directly. */
|
|
90
111
|
export const CalciteCheckbox = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-checkbox", {
|
|
91
112
|
onCalciteCheckboxChange: "calciteCheckboxChange",
|
|
92
113
|
}));
|
|
114
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-chip /> directly. */
|
|
93
115
|
export const CalciteChip = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-chip", {
|
|
94
116
|
onCalciteChipClose: "calciteChipClose",
|
|
95
117
|
onCalciteChipSelect: "calciteChipSelect",
|
|
96
118
|
}));
|
|
119
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-chip-group /> directly. */
|
|
97
120
|
export const CalciteChipGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-chip-group", {
|
|
98
121
|
onCalciteChipGroupSelect: "calciteChipGroupSelect",
|
|
99
122
|
}));
|
|
123
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-color-picker /> directly. */
|
|
100
124
|
export const CalciteColorPicker = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-color-picker", {
|
|
101
125
|
onCalciteColorPickerChange: "calciteColorPickerChange",
|
|
102
126
|
onCalciteColorPickerInput: "calciteColorPickerInput",
|
|
103
127
|
}));
|
|
128
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-color-picker-hex-input /> directly. */
|
|
104
129
|
export const CalciteColorPickerHexInput = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-color-picker-hex-input", {
|
|
105
130
|
onCalciteColorPickerHexInputChange: "calciteColorPickerHexInputChange",
|
|
106
131
|
}));
|
|
132
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-color-picker-swatch /> directly. */
|
|
107
133
|
export const CalciteColorPickerSwatch = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-color-picker-swatch", {}));
|
|
134
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-combobox /> directly. */
|
|
108
135
|
export const CalciteCombobox = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-combobox", {
|
|
109
136
|
onCalciteComboboxBeforeClose: "calciteComboboxBeforeClose",
|
|
110
137
|
onCalciteComboboxBeforeOpen: "calciteComboboxBeforeOpen",
|
|
@@ -114,17 +141,22 @@ export const CalciteCombobox = /*@__PURE__*/ createWrapper(getReactWrapperOption
|
|
|
114
141
|
onCalciteComboboxFilterChange: "calciteComboboxFilterChange",
|
|
115
142
|
onCalciteComboboxOpen: "calciteComboboxOpen",
|
|
116
143
|
}));
|
|
144
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-combobox-item /> directly. */
|
|
117
145
|
export const CalciteComboboxItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-combobox-item", {
|
|
118
146
|
onCalciteComboboxItemChange: "calciteComboboxItemChange",
|
|
119
147
|
}));
|
|
148
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-combobox-item-group /> directly. */
|
|
120
149
|
export const CalciteComboboxItemGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-combobox-item-group", {}));
|
|
150
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-date-picker /> directly. */
|
|
121
151
|
export const CalciteDatePicker = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-date-picker", {
|
|
122
152
|
onCalciteDatePickerChange: "calciteDatePickerChange",
|
|
123
153
|
onCalciteDatePickerRangeChange: "calciteDatePickerRangeChange",
|
|
124
154
|
}));
|
|
155
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-date-picker-day /> directly. */
|
|
125
156
|
export const CalciteDatePickerDay = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-date-picker-day", {}));
|
|
157
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-date-picker-month /> directly. */
|
|
126
158
|
export const CalciteDatePickerMonth = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-date-picker-month", {}));
|
|
127
|
-
|
|
159
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-dialog /> directly. */
|
|
128
160
|
export const CalciteDialog = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-dialog", {
|
|
129
161
|
onCalciteDialogBeforeClose: "calciteDialogBeforeClose",
|
|
130
162
|
onCalciteDialogBeforeOpen: "calciteDialogBeforeOpen",
|
|
@@ -132,6 +164,7 @@ export const CalciteDialog = /*@__PURE__*/ createWrapper(getReactWrapperOptions(
|
|
|
132
164
|
onCalciteDialogOpen: "calciteDialogOpen",
|
|
133
165
|
onCalciteDialogScroll: "calciteDialogScroll",
|
|
134
166
|
}));
|
|
167
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-dropdown /> directly. */
|
|
135
168
|
export const CalciteDropdown = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-dropdown", {
|
|
136
169
|
onCalciteDropdownBeforeClose: "calciteDropdownBeforeClose",
|
|
137
170
|
onCalciteDropdownBeforeOpen: "calciteDropdownBeforeOpen",
|
|
@@ -139,15 +172,21 @@ export const CalciteDropdown = /*@__PURE__*/ createWrapper(getReactWrapperOption
|
|
|
139
172
|
onCalciteDropdownOpen: "calciteDropdownOpen",
|
|
140
173
|
onCalciteDropdownSelect: "calciteDropdownSelect",
|
|
141
174
|
}));
|
|
175
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-dropdown-group /> directly. */
|
|
142
176
|
export const CalciteDropdownGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-dropdown-group", {}));
|
|
177
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-dropdown-item /> directly. */
|
|
143
178
|
export const CalciteDropdownItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-dropdown-item", {
|
|
144
179
|
onCalciteDropdownItemSelect: "calciteDropdownItemSelect",
|
|
145
180
|
}));
|
|
181
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-fab /> directly. */
|
|
146
182
|
export const CalciteFab = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-fab", {}));
|
|
183
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-filter /> directly. */
|
|
147
184
|
export const CalciteFilter = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-filter", {
|
|
148
185
|
onCalciteFilterChange: "calciteFilterChange",
|
|
149
186
|
}));
|
|
187
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-flow /> directly. */
|
|
150
188
|
export const CalciteFlow = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-flow", {}));
|
|
189
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-flow-item /> directly. */
|
|
151
190
|
export const CalciteFlowItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-flow-item", {
|
|
152
191
|
onCalciteFlowItemBack: "calciteFlowItemBack",
|
|
153
192
|
onCalciteFlowItemClose: "calciteFlowItemClose",
|
|
@@ -156,20 +195,26 @@ export const CalciteFlowItem = /*@__PURE__*/ createWrapper(getReactWrapperOption
|
|
|
156
195
|
onCalciteFlowItemScroll: "calciteFlowItemScroll",
|
|
157
196
|
onCalciteFlowItemToggle: "calciteFlowItemToggle",
|
|
158
197
|
}));
|
|
198
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-graph /> directly. */
|
|
159
199
|
export const CalciteGraph = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-graph", {}));
|
|
200
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-handle /> directly. */
|
|
160
201
|
export const CalciteHandle = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-handle", {
|
|
161
202
|
onCalciteHandleChange: "calciteHandleChange",
|
|
162
203
|
onCalciteHandleNudge: "calciteHandleNudge",
|
|
163
204
|
}));
|
|
205
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-icon /> directly. */
|
|
164
206
|
export const CalciteIcon = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-icon", {}));
|
|
207
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-inline-editable /> directly. */
|
|
165
208
|
export const CalciteInlineEditable = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-inline-editable", {
|
|
166
209
|
onCalciteInlineEditableEditCancel: "calciteInlineEditableEditCancel",
|
|
167
210
|
onCalciteInlineEditableEditConfirm: "calciteInlineEditableEditConfirm",
|
|
168
211
|
}));
|
|
212
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input /> directly. */
|
|
169
213
|
export const CalciteInput = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-input", {
|
|
170
214
|
onCalciteInputChange: "calciteInputChange",
|
|
171
215
|
onCalciteInputInput: "calciteInputInput",
|
|
172
216
|
}));
|
|
217
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-date-picker /> directly. */
|
|
173
218
|
export const CalciteInputDatePicker = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-input-date-picker", {
|
|
174
219
|
onCalciteInputDatePickerBeforeClose: "calciteInputDatePickerBeforeClose",
|
|
175
220
|
onCalciteInputDatePickerBeforeOpen: "calciteInputDatePickerBeforeOpen",
|
|
@@ -177,15 +222,19 @@ export const CalciteInputDatePicker = /*@__PURE__*/ createWrapper(getReactWrappe
|
|
|
177
222
|
onCalciteInputDatePickerClose: "calciteInputDatePickerClose",
|
|
178
223
|
onCalciteInputDatePickerOpen: "calciteInputDatePickerOpen",
|
|
179
224
|
}));
|
|
225
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-message /> directly. */
|
|
180
226
|
export const CalciteInputMessage = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-input-message", {}));
|
|
227
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-number /> directly. */
|
|
181
228
|
export const CalciteInputNumber = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-input-number", {
|
|
182
229
|
onCalciteInputNumberChange: "calciteInputNumberChange",
|
|
183
230
|
onCalciteInputNumberInput: "calciteInputNumberInput",
|
|
184
231
|
}));
|
|
232
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-text /> directly. */
|
|
185
233
|
export const CalciteInputText = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-input-text", {
|
|
186
234
|
onCalciteInputTextChange: "calciteInputTextChange",
|
|
187
235
|
onCalciteInputTextInput: "calciteInputTextInput",
|
|
188
236
|
}));
|
|
237
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-time-picker /> directly. */
|
|
189
238
|
export const CalciteInputTimePicker = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-input-time-picker", {
|
|
190
239
|
onCalciteInputTimePickerBeforeClose: "calciteInputTimePickerBeforeClose",
|
|
191
240
|
onCalciteInputTimePickerBeforeOpen: "calciteInputTimePickerBeforeOpen",
|
|
@@ -193,6 +242,7 @@ export const CalciteInputTimePicker = /*@__PURE__*/ createWrapper(getReactWrappe
|
|
|
193
242
|
onCalciteInputTimePickerClose: "calciteInputTimePickerClose",
|
|
194
243
|
onCalciteInputTimePickerOpen: "calciteInputTimePickerOpen",
|
|
195
244
|
}));
|
|
245
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-time-zone /> directly. */
|
|
196
246
|
export const CalciteInputTimeZone = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-input-time-zone", {
|
|
197
247
|
onCalciteInputTimeZoneBeforeClose: "calciteInputTimeZoneBeforeClose",
|
|
198
248
|
onCalciteInputTimeZoneBeforeOpen: "calciteInputTimeZoneBeforeOpen",
|
|
@@ -200,8 +250,11 @@ export const CalciteInputTimeZone = /*@__PURE__*/ createWrapper(getReactWrapperO
|
|
|
200
250
|
onCalciteInputTimeZoneClose: "calciteInputTimeZoneClose",
|
|
201
251
|
onCalciteInputTimeZoneOpen: "calciteInputTimeZoneOpen",
|
|
202
252
|
}));
|
|
253
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-label /> directly. */
|
|
203
254
|
export const CalciteLabel = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-label", {}));
|
|
255
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-link /> directly. */
|
|
204
256
|
export const CalciteLink = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-link", {}));
|
|
257
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-list /> directly. */
|
|
205
258
|
export const CalciteList = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-list", {
|
|
206
259
|
onCalciteListChange: "calciteListChange",
|
|
207
260
|
onCalciteListDragEnd: "calciteListDragEnd",
|
|
@@ -210,6 +263,7 @@ export const CalciteList = /*@__PURE__*/ createWrapper(getReactWrapperOptions("c
|
|
|
210
263
|
onCalciteListMoveHalt: "calciteListMoveHalt",
|
|
211
264
|
onCalciteListOrderChange: "calciteListOrderChange",
|
|
212
265
|
}));
|
|
266
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-list-item /> directly. */
|
|
213
267
|
export const CalciteListItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-list-item", {
|
|
214
268
|
onCalciteListItemClose: "calciteListItemClose",
|
|
215
269
|
onCalciteListItemCollapse: "calciteListItemCollapse",
|
|
@@ -221,29 +275,42 @@ export const CalciteListItem = /*@__PURE__*/ createWrapper(getReactWrapperOption
|
|
|
221
275
|
onCalciteListItemSortHandleOpen: "calciteListItemSortHandleOpen",
|
|
222
276
|
onCalciteListItemToggle: "calciteListItemToggle",
|
|
223
277
|
}));
|
|
278
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-list-item-group /> directly. */
|
|
224
279
|
export const CalciteListItemGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-list-item-group", {}));
|
|
280
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-loader /> directly. */
|
|
225
281
|
export const CalciteLoader = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-loader", {}));
|
|
282
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-menu /> directly. */
|
|
226
283
|
export const CalciteMenu = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-menu", {}));
|
|
284
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-menu-item /> directly. */
|
|
227
285
|
export const CalciteMenuItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-menu-item", {
|
|
228
286
|
onCalciteMenuItemSelect: "calciteMenuItemSelect",
|
|
229
287
|
}));
|
|
288
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-meter /> directly. */
|
|
230
289
|
export const CalciteMeter = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-meter", {}));
|
|
290
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-navigation /> directly. */
|
|
231
291
|
export const CalciteNavigation = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-navigation", {
|
|
232
292
|
onCalciteNavigationActionSelect: "calciteNavigationActionSelect",
|
|
233
293
|
}));
|
|
294
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-navigation-logo /> directly. */
|
|
234
295
|
export const CalciteNavigationLogo = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-navigation-logo", {}));
|
|
296
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-navigation-user /> directly. */
|
|
235
297
|
export const CalciteNavigationUser = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-navigation-user", {}));
|
|
298
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-notice /> directly. */
|
|
236
299
|
export const CalciteNotice = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-notice", {
|
|
237
300
|
onCalciteNoticeBeforeClose: "calciteNoticeBeforeClose",
|
|
238
301
|
onCalciteNoticeBeforeOpen: "calciteNoticeBeforeOpen",
|
|
239
302
|
onCalciteNoticeClose: "calciteNoticeClose",
|
|
240
303
|
onCalciteNoticeOpen: "calciteNoticeOpen",
|
|
241
304
|
}));
|
|
305
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-option /> directly. */
|
|
242
306
|
export const CalciteOption = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-option", {}));
|
|
307
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-option-group /> directly. */
|
|
243
308
|
export const CalciteOptionGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-option-group", {}));
|
|
309
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-pagination /> directly. */
|
|
244
310
|
export const CalcitePagination = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-pagination", {
|
|
245
311
|
onCalcitePaginationChange: "calcitePaginationChange",
|
|
246
312
|
}));
|
|
313
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-panel /> directly. */
|
|
247
314
|
export const CalcitePanel = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-panel", {
|
|
248
315
|
onCalcitePanelClose: "calcitePanelClose",
|
|
249
316
|
onCalcitePanelCollapse: "calcitePanelCollapse",
|
|
@@ -251,45 +318,59 @@ export const CalcitePanel = /*@__PURE__*/ createWrapper(getReactWrapperOptions("
|
|
|
251
318
|
onCalcitePanelScroll: "calcitePanelScroll",
|
|
252
319
|
onCalcitePanelToggle: "calcitePanelToggle",
|
|
253
320
|
}));
|
|
321
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-popover /> directly. */
|
|
254
322
|
export const CalcitePopover = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-popover", {
|
|
255
323
|
onCalcitePopoverBeforeClose: "calcitePopoverBeforeClose",
|
|
256
324
|
onCalcitePopoverBeforeOpen: "calcitePopoverBeforeOpen",
|
|
257
325
|
onCalcitePopoverClose: "calcitePopoverClose",
|
|
258
326
|
onCalcitePopoverOpen: "calcitePopoverOpen",
|
|
259
327
|
}));
|
|
328
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-progress /> directly. */
|
|
260
329
|
export const CalciteProgress = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-progress", {}));
|
|
330
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-radio-button /> directly. */
|
|
261
331
|
export const CalciteRadioButton = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-radio-button", {
|
|
262
332
|
onCalciteRadioButtonChange: "calciteRadioButtonChange",
|
|
263
333
|
}));
|
|
334
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-radio-button-group /> directly. */
|
|
264
335
|
export const CalciteRadioButtonGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-radio-button-group", {
|
|
265
336
|
onCalciteRadioButtonGroupChange: "calciteRadioButtonGroupChange",
|
|
266
337
|
}));
|
|
338
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-rating /> directly. */
|
|
267
339
|
export const CalciteRating = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-rating", {
|
|
268
340
|
onCalciteRatingChange: "calciteRatingChange",
|
|
269
341
|
}));
|
|
342
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-scrim /> directly. */
|
|
270
343
|
export const CalciteScrim = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-scrim", {}));
|
|
344
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-segmented-control /> directly. */
|
|
271
345
|
export const CalciteSegmentedControl = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-segmented-control", {
|
|
272
346
|
onCalciteSegmentedControlChange: "calciteSegmentedControlChange",
|
|
273
347
|
}));
|
|
348
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-segmented-control-item /> directly. */
|
|
274
349
|
export const CalciteSegmentedControlItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-segmented-control-item", {}));
|
|
350
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-select /> directly. */
|
|
275
351
|
export const CalciteSelect = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-select", {
|
|
276
352
|
onCalciteSelectChange: "calciteSelectChange",
|
|
277
353
|
}));
|
|
354
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-sheet /> directly. */
|
|
278
355
|
export const CalciteSheet = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-sheet", {
|
|
279
356
|
onCalciteSheetBeforeClose: "calciteSheetBeforeClose",
|
|
280
357
|
onCalciteSheetBeforeOpen: "calciteSheetBeforeOpen",
|
|
281
358
|
onCalciteSheetClose: "calciteSheetClose",
|
|
282
359
|
onCalciteSheetOpen: "calciteSheetOpen",
|
|
283
360
|
}));
|
|
361
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-shell /> directly. */
|
|
284
362
|
export const CalciteShell = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-shell", {}));
|
|
363
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-shell-panel /> directly. */
|
|
285
364
|
export const CalciteShellPanel = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-shell-panel", {
|
|
286
365
|
onCalciteShellPanelCollapse: "calciteShellPanelCollapse",
|
|
287
366
|
onCalciteShellPanelExpand: "calciteShellPanelExpand",
|
|
288
367
|
}));
|
|
368
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-slider /> directly. */
|
|
289
369
|
export const CalciteSlider = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-slider", {
|
|
290
370
|
onCalciteSliderChange: "calciteSliderChange",
|
|
291
371
|
onCalciteSliderInput: "calciteSliderInput",
|
|
292
372
|
}));
|
|
373
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-sort-handle /> directly. */
|
|
293
374
|
export const CalciteSortHandle = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-sort-handle", {
|
|
294
375
|
onCalciteSortHandleAdd: "calciteSortHandleAdd",
|
|
295
376
|
onCalciteSortHandleBeforeClose: "calciteSortHandleBeforeClose",
|
|
@@ -299,69 +380,92 @@ export const CalciteSortHandle = /*@__PURE__*/ createWrapper(getReactWrapperOpti
|
|
|
299
380
|
onCalciteSortHandleOpen: "calciteSortHandleOpen",
|
|
300
381
|
onCalciteSortHandleReorder: "calciteSortHandleReorder",
|
|
301
382
|
}));
|
|
383
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-sortable-list /> directly. */
|
|
302
384
|
export const CalciteSortableList = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-sortable-list", {
|
|
303
385
|
onCalciteListOrderChange: "calciteListOrderChange",
|
|
304
386
|
}));
|
|
387
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-split-button /> directly. */
|
|
305
388
|
export const CalciteSplitButton = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-split-button", {
|
|
306
389
|
onCalciteSplitButtonPrimaryClick: "calciteSplitButtonPrimaryClick",
|
|
307
390
|
onCalciteSplitButtonSecondaryClick: "calciteSplitButtonSecondaryClick",
|
|
308
391
|
}));
|
|
392
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-stack /> directly. */
|
|
309
393
|
export const CalciteStack = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-stack", {}));
|
|
394
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-stepper /> directly. */
|
|
310
395
|
export const CalciteStepper = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-stepper", {
|
|
311
396
|
onCalciteStepperChange: "calciteStepperChange",
|
|
312
397
|
}));
|
|
398
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-stepper-item /> directly. */
|
|
313
399
|
export const CalciteStepperItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-stepper-item", {
|
|
314
400
|
onCalciteStepperItemSelect: "calciteStepperItemSelect",
|
|
315
401
|
}));
|
|
402
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-swatch /> directly. */
|
|
316
403
|
export const CalciteSwatch = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-swatch", {
|
|
317
404
|
onCalciteSwatchSelect: "calciteSwatchSelect",
|
|
318
405
|
}));
|
|
406
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-swatch-group /> directly. */
|
|
319
407
|
export const CalciteSwatchGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-swatch-group", {
|
|
320
408
|
onCalciteSwatchGroupSelect: "calciteSwatchGroupSelect",
|
|
321
409
|
}));
|
|
410
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-switch /> directly. */
|
|
322
411
|
export const CalciteSwitch = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-switch", {
|
|
323
412
|
onCalciteSwitchChange: "calciteSwitchChange",
|
|
324
413
|
}));
|
|
414
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-tab /> directly. */
|
|
325
415
|
export const CalciteTab = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-tab", {}));
|
|
416
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-tab-nav /> directly. */
|
|
326
417
|
export const CalciteTabNav = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-tab-nav", {
|
|
327
418
|
onCalciteTabChange: "calciteTabChange",
|
|
328
419
|
}));
|
|
420
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-tab-title /> directly. */
|
|
329
421
|
export const CalciteTabTitle = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-tab-title", {
|
|
330
422
|
onCalciteTabsActivate: "calciteTabsActivate",
|
|
331
423
|
onCalciteTabsClose: "calciteTabsClose",
|
|
332
424
|
}));
|
|
425
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-table /> directly. */
|
|
333
426
|
export const CalciteTable = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-table", {
|
|
334
427
|
onCalciteTablePageChange: "calciteTablePageChange",
|
|
335
428
|
onCalciteTableSelect: "calciteTableSelect",
|
|
336
429
|
}));
|
|
430
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-table-cell /> directly. */
|
|
337
431
|
export const CalciteTableCell = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-table-cell", {}));
|
|
432
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-table-header /> directly. */
|
|
338
433
|
export const CalciteTableHeader = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-table-header", {}));
|
|
434
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-table-row /> directly. */
|
|
339
435
|
export const CalciteTableRow = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-table-row", {
|
|
340
436
|
onCalciteTableRowSelect: "calciteTableRowSelect",
|
|
341
437
|
}));
|
|
438
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-tabs /> directly. */
|
|
342
439
|
export const CalciteTabs = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-tabs", {}));
|
|
440
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-text-area /> directly. */
|
|
343
441
|
export const CalciteTextArea = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-text-area", {
|
|
344
442
|
onCalciteTextAreaChange: "calciteTextAreaChange",
|
|
345
443
|
onCalciteTextAreaInput: "calciteTextAreaInput",
|
|
346
444
|
}));
|
|
445
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-tile /> directly. */
|
|
347
446
|
export const CalciteTile = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-tile", {
|
|
348
447
|
onCalciteTileSelect: "calciteTileSelect",
|
|
349
448
|
}));
|
|
449
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-tile-group /> directly. */
|
|
350
450
|
export const CalciteTileGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-tile-group", {
|
|
351
451
|
onCalciteTileGroupSelect: "calciteTileGroupSelect",
|
|
352
452
|
}));
|
|
453
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-time-picker /> directly. */
|
|
353
454
|
export const CalciteTimePicker = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-time-picker", {
|
|
354
455
|
onCalciteTimePickerChange: "calciteTimePickerChange",
|
|
355
456
|
}));
|
|
457
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-tooltip /> directly. */
|
|
356
458
|
export const CalciteTooltip = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-tooltip", {
|
|
357
459
|
onCalciteTooltipBeforeClose: "calciteTooltipBeforeClose",
|
|
358
460
|
onCalciteTooltipBeforeOpen: "calciteTooltipBeforeOpen",
|
|
359
461
|
onCalciteTooltipClose: "calciteTooltipClose",
|
|
360
462
|
onCalciteTooltipOpen: "calciteTooltipOpen",
|
|
361
463
|
}));
|
|
464
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-tree /> directly. */
|
|
362
465
|
export const CalciteTree = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-tree", {
|
|
363
466
|
onCalciteTreeSelect: "calciteTreeSelect",
|
|
364
467
|
}));
|
|
468
|
+
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-tree-item /> directly. */
|
|
365
469
|
export const CalciteTreeItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-tree-item", {
|
|
366
470
|
onCalciteTreeItemCollapse: "calciteTreeItemCollapse",
|
|
367
471
|
onCalciteTreeItemExpand: "calciteTreeItemExpand",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esri/calcite-components-react",
|
|
3
|
-
"version": "5.0.0-next.
|
|
3
|
+
"version": "5.0.0-next.90",
|
|
4
4
|
"description": "A set of React components that wrap calcite components",
|
|
5
5
|
"homepage": "https://developers.arcgis.com/calcite-design-system/",
|
|
6
6
|
"repository": {
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"util:update-3rd-party-licenses": "node ../../support/createThirdPartyLicenses.mts"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@arcgis/lumina": ">=5.0.0-next.
|
|
32
|
-
"@esri/calcite-components": "5.0.0-next.
|
|
31
|
+
"@arcgis/lumina": ">=5.0.0-next.144 <6.0.0",
|
|
32
|
+
"@esri/calcite-components": "5.0.0-next.90",
|
|
33
33
|
"@lit/react": "^1.0.8",
|
|
34
34
|
"lit": "^3.3.0"
|
|
35
35
|
},
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"volta": {
|
|
41
41
|
"extends": "../../package.json"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "c325c14a81a970a0871e3fdef9e0274d35bc4166"
|
|
44
44
|
}
|