@esri/calcite-components-react 5.2.0-next.3 → 5.2.0-next.31

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.
@@ -30,6 +30,7 @@ export declare const CalciteActionGroup: import("@lit/react").ReactWebComponent<
30
30
  onCalciteActionGroupChange: EventName<HTMLCalciteActionGroupElement["calciteActionGroupChange"]>;
31
31
  onCalciteActionGroupCollapse: EventName<HTMLCalciteActionGroupElement["calciteActionGroupCollapse"]>;
32
32
  onCalciteActionGroupExpand: EventName<HTMLCalciteActionGroupElement["calciteActionGroupExpand"]>;
33
+ onCalciteInternalActionGroupActionsChange: EventName<HTMLCalciteActionGroupElement["calciteInternalActionGroupActionsChange"]>;
33
34
  }>;
34
35
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-action-menu /> directly. */
35
36
  export declare const CalciteActionMenu: import("@lit/react").ReactWebComponent<import("@esri/calcite-components/components/calcite-action-menu/customElement").ActionMenu & {
@@ -38,6 +39,7 @@ export declare const CalciteActionMenu: import("@lit/react").ReactWebComponent<i
38
39
  onCalciteActionMenuCollapse: EventName<HTMLCalciteActionMenuElement["calciteActionMenuCollapse"]>;
39
40
  onCalciteActionMenuExpand: EventName<HTMLCalciteActionMenuElement["calciteActionMenuExpand"]>;
40
41
  onCalciteActionMenuOpen: EventName<HTMLCalciteActionMenuElement["calciteActionMenuOpen"]>;
42
+ onCalciteInternalActionMenuActionsChange: EventName<HTMLCalciteActionMenuElement["calciteInternalActionMenuActionsChange"]>;
41
43
  }>;
42
44
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-action-pad /> directly. */
43
45
  export declare const CalciteActionPad: import("@lit/react").ReactWebComponent<import("@esri/calcite-components/components/calcite-action-pad/customElement").ActionPad & {
@@ -306,6 +308,9 @@ export declare const CalciteInput: import("@lit/react").ReactWebComponent<import
306
308
  class?: string;
307
309
  }, {
308
310
  onCalciteInputChange: EventName<HTMLCalciteInputElement["calciteInputChange"]>;
311
+ onCalciteInputInlineEditableCancel: EventName<HTMLCalciteInputElement["calciteInputInlineEditableCancel"]>;
312
+ onCalciteInputInlineEditableChange: EventName<HTMLCalciteInputElement["calciteInputInlineEditableChange"]>;
313
+ onCalciteInputInlineEditableConfirm: EventName<HTMLCalciteInputElement["calciteInputInlineEditableConfirm"]>;
309
314
  onCalciteInputInput: EventName<HTMLCalciteInputElement["calciteInputInput"]>;
310
315
  }>;
311
316
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-date-picker /> directly. */
@@ -327,6 +332,9 @@ export declare const CalciteInputNumber: import("@lit/react").ReactWebComponent<
327
332
  class?: string;
328
333
  }, {
329
334
  onCalciteInputNumberChange: EventName<HTMLCalciteInputNumberElement["calciteInputNumberChange"]>;
335
+ onCalciteInputNumberInlineEditableCancel: EventName<HTMLCalciteInputNumberElement["calciteInputNumberInlineEditableCancel"]>;
336
+ onCalciteInputNumberInlineEditableChange: EventName<HTMLCalciteInputNumberElement["calciteInputNumberInlineEditableChange"]>;
337
+ onCalciteInputNumberInlineEditableConfirm: EventName<HTMLCalciteInputNumberElement["calciteInputNumberInlineEditableConfirm"]>;
330
338
  onCalciteInputNumberInput: EventName<HTMLCalciteInputNumberElement["calciteInputNumberInput"]>;
331
339
  }>;
332
340
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-text /> directly. */
@@ -334,6 +342,9 @@ export declare const CalciteInputText: import("@lit/react").ReactWebComponent<im
334
342
  class?: string;
335
343
  }, {
336
344
  onCalciteInputTextChange: EventName<HTMLCalciteInputTextElement["calciteInputTextChange"]>;
345
+ onCalciteInputTextInlineEditableCancel: EventName<HTMLCalciteInputTextElement["calciteInputTextInlineEditableCancel"]>;
346
+ onCalciteInputTextInlineEditableChange: EventName<HTMLCalciteInputTextElement["calciteInputTextInlineEditableChange"]>;
347
+ onCalciteInputTextInlineEditableConfirm: EventName<HTMLCalciteInputTextElement["calciteInputTextInlineEditableConfirm"]>;
337
348
  onCalciteInputTextInput: EventName<HTMLCalciteInputTextElement["calciteInputTextInput"]>;
338
349
  }>;
339
350
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-time-picker /> directly. */
@@ -23,12 +23,14 @@ export const CalciteActionGroup = /*@__PURE__*/ createWrapper(getReactWrapperOpt
23
23
  onCalciteActionGroupChange: "calciteActionGroupChange",
24
24
  onCalciteActionGroupCollapse: "calciteActionGroupCollapse",
25
25
  onCalciteActionGroupExpand: "calciteActionGroupExpand",
26
+ onCalciteInternalActionGroupActionsChange: "calciteInternalActionGroupActionsChange",
26
27
  }));
27
28
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-action-menu /> directly. */
28
29
  export const CalciteActionMenu = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-action-menu", {
29
30
  onCalciteActionMenuCollapse: "calciteActionMenuCollapse",
30
31
  onCalciteActionMenuExpand: "calciteActionMenuExpand",
31
32
  onCalciteActionMenuOpen: "calciteActionMenuOpen",
33
+ onCalciteInternalActionMenuActionsChange: "calciteInternalActionMenuActionsChange",
32
34
  }));
33
35
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-action-pad /> directly. */
34
36
  export const CalciteActionPad = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-action-pad", {
@@ -217,6 +219,9 @@ export const CalciteInlineEditable = /*@__PURE__*/ createWrapper(getReactWrapper
217
219
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input /> directly. */
218
220
  export const CalciteInput = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-input", {
219
221
  onCalciteInputChange: "calciteInputChange",
222
+ onCalciteInputInlineEditableCancel: "calciteInputInlineEditableCancel",
223
+ onCalciteInputInlineEditableChange: "calciteInputInlineEditableChange",
224
+ onCalciteInputInlineEditableConfirm: "calciteInputInlineEditableConfirm",
220
225
  onCalciteInputInput: "calciteInputInput",
221
226
  }));
222
227
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-date-picker /> directly. */
@@ -232,11 +237,17 @@ export const CalciteInputMessage = /*@__PURE__*/ createWrapper(getReactWrapperOp
232
237
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-number /> directly. */
233
238
  export const CalciteInputNumber = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-input-number", {
234
239
  onCalciteInputNumberChange: "calciteInputNumberChange",
240
+ onCalciteInputNumberInlineEditableCancel: "calciteInputNumberInlineEditableCancel",
241
+ onCalciteInputNumberInlineEditableChange: "calciteInputNumberInlineEditableChange",
242
+ onCalciteInputNumberInlineEditableConfirm: "calciteInputNumberInlineEditableConfirm",
235
243
  onCalciteInputNumberInput: "calciteInputNumberInput",
236
244
  }));
237
245
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-input-text /> directly. */
238
246
  export const CalciteInputText = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-input-text", {
239
247
  onCalciteInputTextChange: "calciteInputTextChange",
248
+ onCalciteInputTextInlineEditableCancel: "calciteInputTextInlineEditableCancel",
249
+ onCalciteInputTextInlineEditableChange: "calciteInputTextInlineEditableChange",
250
+ onCalciteInputTextInlineEditableConfirm: "calciteInputTextInlineEditableConfirm",
240
251
  onCalciteInputTextInput: "calciteInputTextInput",
241
252
  }));
242
253
  /** @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",
3
+ "version": "5.2.0-next.31",
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.3",
32
+ "@esri/calcite-components": "5.2.0-next.31",
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": "04f926d3372afec8c58d9d95ffc8c7f526969cec"
40
+ "gitHead": "4a7274d94676f33352b62ed6e4b92f89b9baf0ca"
41
41
  }