@esri/calcite-components-react 3.2.0-next.0 → 3.2.0-next.2

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/LICENSE.md CHANGED
@@ -8,6 +8,6 @@ This material is licensed for use under the Esri Master License Agreement (MLA),
8
8
 
9
9
  See use restrictions at <http://www.esri.com/legal/pdfs/mla_e204_e300/english>
10
10
 
11
- For additional information, contact: Environmental Systems Research Institute, Inc. Attn: Contracts and Legal Services Department 380 New York Street Redlands, California, USA 92373 USA
11
+ For additional information, refer to [Calcite's licensing](https://developers.arcgis.com/calcite-design-system/resources/licensing) and contact: Environmental Systems Research Institute, Inc. Attn: Contracts and Legal Services Department 380 New York Street Redlands, California, USA 92373 USA
12
12
 
13
13
  email: <contracts@esri.com>
package/README.md CHANGED
@@ -110,7 +110,7 @@ This material is licensed for use under the Esri Master License Agreement (MLA),
110
110
 
111
111
  See use restrictions at <http://www.esri.com/legal/pdfs/mla_e204_e300/english>
112
112
 
113
- For additional information, contact: Environmental Systems Research Institute, Inc. Attn: Contracts and Legal Services Department 380 New York Street Redlands, California, USA 92373 USA
113
+ For additional information, refer to [Calcite's licensing](https://developers.arcgis.com/calcite-design-system/resources/licensing) and contact: Environmental Systems Research Institute, Inc. Attn: Contracts and Legal Services Department 380 New York Street Redlands, California, USA 92373 USA
114
114
 
115
115
  email: <contracts@esri.com>
116
116
 
@@ -73,6 +73,7 @@ export declare const CalciteBlockGroup: import("@lit/react").ReactWebComponent<H
73
73
  }, {
74
74
  onCalciteBlockGroupDragEnd: EventName<HTMLCalciteBlockGroupElement["calciteBlockGroupDragEnd"]>;
75
75
  onCalciteBlockGroupDragStart: EventName<HTMLCalciteBlockGroupElement["calciteBlockGroupDragStart"]>;
76
+ onCalciteBlockGroupMoveHalt: EventName<HTMLCalciteBlockGroupElement["calciteBlockGroupMoveHalt"]>;
76
77
  onCalciteBlockGroupOrderChange: EventName<HTMLCalciteBlockGroupElement["calciteBlockGroupOrderChange"]>;
77
78
  }>;
78
79
  export declare const CalciteBlockSection: import("@lit/react").ReactWebComponent<HTMLCalciteBlockSectionElement & {
@@ -293,6 +294,7 @@ export declare const CalciteList: import("@lit/react").ReactWebComponent<HTMLCal
293
294
  onCalciteListDragEnd: EventName<HTMLCalciteListElement["calciteListDragEnd"]>;
294
295
  onCalciteListDragStart: EventName<HTMLCalciteListElement["calciteListDragStart"]>;
295
296
  onCalciteListFilter: EventName<HTMLCalciteListElement["calciteListFilter"]>;
297
+ onCalciteListMoveHalt: EventName<HTMLCalciteListElement["calciteListMoveHalt"]>;
296
298
  onCalciteListOrderChange: EventName<HTMLCalciteListElement["calciteListOrderChange"]>;
297
299
  }>;
298
300
  export declare const CalciteListItem: import("@lit/react").ReactWebComponent<HTMLCalciteListItemElement & {
@@ -48,6 +48,7 @@ export const CalciteBlock = /*@__PURE__*/ createWrapper(getReactWrapperOptions("
48
48
  export const CalciteBlockGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-block-group", {
49
49
  onCalciteBlockGroupDragEnd: "calciteBlockGroupDragEnd",
50
50
  onCalciteBlockGroupDragStart: "calciteBlockGroupDragStart",
51
+ onCalciteBlockGroupMoveHalt: "calciteBlockGroupMoveHalt",
51
52
  onCalciteBlockGroupOrderChange: "calciteBlockGroupOrderChange",
52
53
  }));
53
54
  export const CalciteBlockSection = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-block-section", {
@@ -186,6 +187,7 @@ export const CalciteList = /*@__PURE__*/ createWrapper(getReactWrapperOptions("c
186
187
  onCalciteListDragEnd: "calciteListDragEnd",
187
188
  onCalciteListDragStart: "calciteListDragStart",
188
189
  onCalciteListFilter: "calciteListFilter",
190
+ onCalciteListMoveHalt: "calciteListMoveHalt",
189
191
  onCalciteListOrderChange: "calciteListOrderChange",
190
192
  }));
191
193
  export const CalciteListItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-list-item", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esri/calcite-components-react",
3
- "version": "3.2.0-next.0",
3
+ "version": "3.2.0-next.2",
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": {
@@ -28,7 +28,7 @@
28
28
  "util:update-3rd-party-licenses": "tsx ../../support/createThirdPartyLicenses.ts"
29
29
  },
30
30
  "dependencies": {
31
- "@esri/calcite-components": "3.2.0-next.0",
31
+ "@esri/calcite-components": "3.2.0-next.2",
32
32
  "@lit/react": "1.0.7"
33
33
  },
34
34
  "peerDependencies": {
@@ -38,5 +38,5 @@
38
38
  "volta": {
39
39
  "extends": "../../package.json"
40
40
  },
41
- "gitHead": "ced136b19e3b75fecda8b5ddf06749fd13e93594"
41
+ "gitHead": "2374e997f45b341ce1349b2ef690c93a8255810b"
42
42
  }