@esri/calcite-components-react 5.2.0-next.30 → 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.
- package/dist/components.d.ts +2 -0
- package/dist/components.js +2 -0
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -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 & {
|
package/dist/components.js
CHANGED
|
@@ -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", {
|
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.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.
|
|
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": "
|
|
40
|
+
"gitHead": "4a7274d94676f33352b62ed6e4b92f89b9baf0ca"
|
|
41
41
|
}
|