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