@esri/calcite-components-react 5.1.0-next.61 → 5.1.0-next.62

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.
@@ -273,6 +273,12 @@ export declare const CalciteFlowItem: import("@lit/react").ReactWebComponent<imp
273
273
  onCalciteFlowItemScroll: EventName<HTMLCalciteFlowItemElement["calciteFlowItemScroll"]>;
274
274
  onCalciteFlowItemToggle: EventName<HTMLCalciteFlowItemElement["calciteFlowItemToggle"]>;
275
275
  }>;
276
+ /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-focus-trap /> directly. */
277
+ export declare const CalciteFocusTrap: import("@lit/react").ReactWebComponent<import("@esri/calcite-components/components/calcite-focus-trap/customElement").FocusTrap & {
278
+ class?: string;
279
+ }, {
280
+ onCalciteFocusTrapActiveChange: EventName<HTMLCalciteFocusTrapElement["calciteFocusTrapActiveChange"]>;
281
+ }>;
276
282
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-graph /> directly. */
277
283
  export declare const CalciteGraph: import("@lit/react").ReactWebComponent<import("@esri/calcite-components/components/calcite-graph/customElement").Graph & {
278
284
  class?: string;
@@ -196,6 +196,10 @@ export const CalciteFlowItem = /*@__PURE__*/ createWrapper(getReactWrapperOption
196
196
  onCalciteFlowItemScroll: "calciteFlowItemScroll",
197
197
  onCalciteFlowItemToggle: "calciteFlowItemToggle",
198
198
  }));
199
+ /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-focus-trap /> directly. */
200
+ export const CalciteFocusTrap = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-focus-trap", {
201
+ onCalciteFocusTrapActiveChange: "calciteFocusTrapActiveChange",
202
+ }));
199
203
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-graph /> directly. */
200
204
  export const CalciteGraph = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-graph", {}));
201
205
  /** @deprecated since 5.0. React wrappers are not needed in React 19 or above. Use <calcite-handle /> directly. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esri/calcite-components-react",
3
- "version": "5.1.0-next.61",
3
+ "version": "5.1.0-next.62",
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.1.0-next.61",
32
+ "@esri/calcite-components": "5.1.0-next.62",
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": "2c3190556cb951bd9d52ca0baf745179919cde58"
40
+ "gitHead": "34161861730a129f1b62ea2a11c936d831154b4e"
41
41
  }