@esri/calcite-components-react 3.3.0-next.55 → 3.3.0-next.56

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.
@@ -495,6 +495,16 @@ export declare const CalciteStepperItem: import("@lit/react").ReactWebComponent<
495
495
  }, {
496
496
  onCalciteStepperItemSelect: EventName<HTMLCalciteStepperItemElement["calciteStepperItemSelect"]>;
497
497
  }>;
498
+ export declare const CalciteSwatch: import("@lit/react").ReactWebComponent<HTMLCalciteSwatchElement & {
499
+ class?: string;
500
+ }, {
501
+ onCalciteSwatchSelect: EventName<HTMLCalciteSwatchElement["calciteSwatchSelect"]>;
502
+ }>;
503
+ export declare const CalciteSwatchGroup: import("@lit/react").ReactWebComponent<HTMLCalciteSwatchGroupElement & {
504
+ class?: string;
505
+ }, {
506
+ onCalciteSwatchGroupSelect: EventName<HTMLCalciteSwatchGroupElement["calciteSwatchGroupSelect"]>;
507
+ }>;
498
508
  export declare const CalciteSwitch: import("@lit/react").ReactWebComponent<HTMLCalciteSwitchElement & {
499
509
  class?: string;
500
510
  }, {
@@ -318,6 +318,12 @@ export const CalciteStepper = /*@__PURE__*/ createWrapper(getReactWrapperOptions
318
318
  export const CalciteStepperItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-stepper-item", {
319
319
  onCalciteStepperItemSelect: "calciteStepperItemSelect",
320
320
  }));
321
+ export const CalciteSwatch = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-swatch", {
322
+ onCalciteSwatchSelect: "calciteSwatchSelect",
323
+ }));
324
+ export const CalciteSwatchGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-swatch-group", {
325
+ onCalciteSwatchGroupSelect: "calciteSwatchGroupSelect",
326
+ }));
321
327
  export const CalciteSwitch = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-switch", {
322
328
  onCalciteSwitchChange: "calciteSwitchChange",
323
329
  }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esri/calcite-components-react",
3
- "version": "3.3.0-next.55",
3
+ "version": "3.3.0-next.56",
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": "^4.34.0-next.49",
32
- "@esri/calcite-components": "3.3.0-next.55",
32
+ "@esri/calcite-components": "3.3.0-next.56",
33
33
  "@lit/react": "^1.0.8",
34
34
  "lit": "^3.3.0"
35
35
  },
@@ -40,5 +40,5 @@
40
40
  "volta": {
41
41
  "extends": "../../package.json"
42
42
  },
43
- "gitHead": "7b5f5efa1a78fec712809c84f7c9d77fa278d269"
43
+ "gitHead": "9f928541cda589c3557e82e0b0fae074c5197005"
44
44
  }