@esri/calcite-components-react 3.0.0-next.124 → 3.0.0-next.126
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 +11 -0
- package/dist/components.js +9 -0
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -62,8 +62,19 @@ export declare const CalciteBlock: import("@lit/react").ReactWebComponent<HTMLCa
|
|
|
62
62
|
onCalciteBlockBeforeOpen: EventName<HTMLCalciteBlockElement["calciteBlockBeforeOpen"]>;
|
|
63
63
|
onCalciteBlockClose: EventName<HTMLCalciteBlockElement["calciteBlockClose"]>;
|
|
64
64
|
onCalciteBlockOpen: EventName<HTMLCalciteBlockElement["calciteBlockOpen"]>;
|
|
65
|
+
onCalciteBlockSortHandleBeforeClose: EventName<HTMLCalciteBlockElement["calciteBlockSortHandleBeforeClose"]>;
|
|
66
|
+
onCalciteBlockSortHandleBeforeOpen: EventName<HTMLCalciteBlockElement["calciteBlockSortHandleBeforeOpen"]>;
|
|
67
|
+
onCalciteBlockSortHandleClose: EventName<HTMLCalciteBlockElement["calciteBlockSortHandleClose"]>;
|
|
68
|
+
onCalciteBlockSortHandleOpen: EventName<HTMLCalciteBlockElement["calciteBlockSortHandleOpen"]>;
|
|
65
69
|
onCalciteBlockToggle: EventName<HTMLCalciteBlockElement["calciteBlockToggle"]>;
|
|
66
70
|
}>;
|
|
71
|
+
export declare const CalciteBlockGroup: import("@lit/react").ReactWebComponent<HTMLCalciteBlockGroupElement & {
|
|
72
|
+
class?: string;
|
|
73
|
+
}, {
|
|
74
|
+
onCalciteBlockGroupDragEnd: EventName<HTMLCalciteBlockGroupElement["calciteBlockGroupDragEnd"]>;
|
|
75
|
+
onCalciteBlockGroupDragStart: EventName<HTMLCalciteBlockGroupElement["calciteBlockGroupDragStart"]>;
|
|
76
|
+
onCalciteBlockGroupOrderChange: EventName<HTMLCalciteBlockGroupElement["calciteBlockGroupOrderChange"]>;
|
|
77
|
+
}>;
|
|
67
78
|
export declare const CalciteBlockSection: import("@lit/react").ReactWebComponent<HTMLCalciteBlockSectionElement & {
|
|
68
79
|
class?: string;
|
|
69
80
|
}, {
|
package/dist/components.js
CHANGED
|
@@ -39,8 +39,17 @@ export const CalciteBlock = /*@__PURE__*/ createWrapper(getReactWrapperOptions("
|
|
|
39
39
|
onCalciteBlockBeforeOpen: "calciteBlockBeforeOpen",
|
|
40
40
|
onCalciteBlockClose: "calciteBlockClose",
|
|
41
41
|
onCalciteBlockOpen: "calciteBlockOpen",
|
|
42
|
+
onCalciteBlockSortHandleBeforeClose: "calciteBlockSortHandleBeforeClose",
|
|
43
|
+
onCalciteBlockSortHandleBeforeOpen: "calciteBlockSortHandleBeforeOpen",
|
|
44
|
+
onCalciteBlockSortHandleClose: "calciteBlockSortHandleClose",
|
|
45
|
+
onCalciteBlockSortHandleOpen: "calciteBlockSortHandleOpen",
|
|
42
46
|
onCalciteBlockToggle: "calciteBlockToggle",
|
|
43
47
|
}));
|
|
48
|
+
export const CalciteBlockGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-block-group", {
|
|
49
|
+
onCalciteBlockGroupDragEnd: "calciteBlockGroupDragEnd",
|
|
50
|
+
onCalciteBlockGroupDragStart: "calciteBlockGroupDragStart",
|
|
51
|
+
onCalciteBlockGroupOrderChange: "calciteBlockGroupOrderChange",
|
|
52
|
+
}));
|
|
44
53
|
export const CalciteBlockSection = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-block-section", {
|
|
45
54
|
onCalciteBlockSectionToggle: "calciteBlockSectionToggle",
|
|
46
55
|
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esri/calcite-components-react",
|
|
3
|
-
"version": "3.0.0-next.
|
|
3
|
+
"version": "3.0.0-next.126",
|
|
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": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"tsc": "tsc"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@esri/calcite-components": "3.0.0-next.
|
|
29
|
+
"@esri/calcite-components": "3.0.0-next.126",
|
|
30
30
|
"@lit/react": "1.0.7"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"volta": {
|
|
37
37
|
"extends": "../../package.json"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "635eb45e1daa77f8cffe4a47ed6d48805f3004c2"
|
|
40
40
|
}
|