@esri/calcite-components-react 5.2.0-next.21 → 5.2.0-next.23
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 +9 -0
- package/dist/components.js +9 -0
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -306,6 +306,9 @@ export declare const CalciteInput: import("@lit/react").ReactWebComponent<import
|
|
|
306
306
|
class?: string;
|
|
307
307
|
}, {
|
|
308
308
|
onCalciteInputChange: EventName<HTMLCalciteInputElement["calciteInputChange"]>;
|
|
309
|
+
onCalciteInputInlineEditableCancel: EventName<HTMLCalciteInputElement["calciteInputInlineEditableCancel"]>;
|
|
310
|
+
onCalciteInputInlineEditableChange: EventName<HTMLCalciteInputElement["calciteInputInlineEditableChange"]>;
|
|
311
|
+
onCalciteInputInlineEditableConfirm: EventName<HTMLCalciteInputElement["calciteInputInlineEditableConfirm"]>;
|
|
309
312
|
onCalciteInputInput: EventName<HTMLCalciteInputElement["calciteInputInput"]>;
|
|
310
313
|
}>;
|
|
311
314
|
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-date-picker /> directly. */
|
|
@@ -327,6 +330,9 @@ export declare const CalciteInputNumber: import("@lit/react").ReactWebComponent<
|
|
|
327
330
|
class?: string;
|
|
328
331
|
}, {
|
|
329
332
|
onCalciteInputNumberChange: EventName<HTMLCalciteInputNumberElement["calciteInputNumberChange"]>;
|
|
333
|
+
onCalciteInputNumberInlineEditableCancel: EventName<HTMLCalciteInputNumberElement["calciteInputNumberInlineEditableCancel"]>;
|
|
334
|
+
onCalciteInputNumberInlineEditableChange: EventName<HTMLCalciteInputNumberElement["calciteInputNumberInlineEditableChange"]>;
|
|
335
|
+
onCalciteInputNumberInlineEditableConfirm: EventName<HTMLCalciteInputNumberElement["calciteInputNumberInlineEditableConfirm"]>;
|
|
330
336
|
onCalciteInputNumberInput: EventName<HTMLCalciteInputNumberElement["calciteInputNumberInput"]>;
|
|
331
337
|
}>;
|
|
332
338
|
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-text /> directly. */
|
|
@@ -334,6 +340,9 @@ export declare const CalciteInputText: import("@lit/react").ReactWebComponent<im
|
|
|
334
340
|
class?: string;
|
|
335
341
|
}, {
|
|
336
342
|
onCalciteInputTextChange: EventName<HTMLCalciteInputTextElement["calciteInputTextChange"]>;
|
|
343
|
+
onCalciteInputTextInlineEditableCancel: EventName<HTMLCalciteInputTextElement["calciteInputTextInlineEditableCancel"]>;
|
|
344
|
+
onCalciteInputTextInlineEditableChange: EventName<HTMLCalciteInputTextElement["calciteInputTextInlineEditableChange"]>;
|
|
345
|
+
onCalciteInputTextInlineEditableConfirm: EventName<HTMLCalciteInputTextElement["calciteInputTextInlineEditableConfirm"]>;
|
|
337
346
|
onCalciteInputTextInput: EventName<HTMLCalciteInputTextElement["calciteInputTextInput"]>;
|
|
338
347
|
}>;
|
|
339
348
|
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-time-picker /> directly. */
|
package/dist/components.js
CHANGED
|
@@ -217,6 +217,9 @@ export const CalciteInlineEditable = /*@__PURE__*/ createWrapper(getReactWrapper
|
|
|
217
217
|
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input /> directly. */
|
|
218
218
|
export const CalciteInput = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-input", {
|
|
219
219
|
onCalciteInputChange: "calciteInputChange",
|
|
220
|
+
onCalciteInputInlineEditableCancel: "calciteInputInlineEditableCancel",
|
|
221
|
+
onCalciteInputInlineEditableChange: "calciteInputInlineEditableChange",
|
|
222
|
+
onCalciteInputInlineEditableConfirm: "calciteInputInlineEditableConfirm",
|
|
220
223
|
onCalciteInputInput: "calciteInputInput",
|
|
221
224
|
}));
|
|
222
225
|
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-date-picker /> directly. */
|
|
@@ -232,11 +235,17 @@ export const CalciteInputMessage = /*@__PURE__*/ createWrapper(getReactWrapperOp
|
|
|
232
235
|
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-number /> directly. */
|
|
233
236
|
export const CalciteInputNumber = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-input-number", {
|
|
234
237
|
onCalciteInputNumberChange: "calciteInputNumberChange",
|
|
238
|
+
onCalciteInputNumberInlineEditableCancel: "calciteInputNumberInlineEditableCancel",
|
|
239
|
+
onCalciteInputNumberInlineEditableChange: "calciteInputNumberInlineEditableChange",
|
|
240
|
+
onCalciteInputNumberInlineEditableConfirm: "calciteInputNumberInlineEditableConfirm",
|
|
235
241
|
onCalciteInputNumberInput: "calciteInputNumberInput",
|
|
236
242
|
}));
|
|
237
243
|
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-text /> directly. */
|
|
238
244
|
export const CalciteInputText = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-input-text", {
|
|
239
245
|
onCalciteInputTextChange: "calciteInputTextChange",
|
|
246
|
+
onCalciteInputTextInlineEditableCancel: "calciteInputTextInlineEditableCancel",
|
|
247
|
+
onCalciteInputTextInlineEditableChange: "calciteInputTextInlineEditableChange",
|
|
248
|
+
onCalciteInputTextInlineEditableConfirm: "calciteInputTextInlineEditableConfirm",
|
|
240
249
|
onCalciteInputTextInput: "calciteInputTextInput",
|
|
241
250
|
}));
|
|
242
251
|
/** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-time-picker /> directly. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esri/calcite-components-react",
|
|
3
|
-
"version": "5.2.0-next.
|
|
3
|
+
"version": "5.2.0-next.23",
|
|
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.1.0-next.96 <6.0.0",
|
|
32
|
-
"@esri/calcite-components": "5.2.0-next.
|
|
32
|
+
"@esri/calcite-components": "5.2.0-next.23",
|
|
33
33
|
"@lit/react": "^1.0.8",
|
|
34
34
|
"lit": "^3.3.0"
|
|
35
35
|
},
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"react": ">=18.3",
|
|
38
38
|
"react-dom": ">=18.3"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "bdd7acdb4d970166c15bc175fe60008ad3ed5834"
|
|
41
41
|
}
|