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