@esri/calcite-components-react 3.0.0-next.73 → 3.0.0-next.75
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 +17 -0
- package/dist/components.js +11 -0
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -35,6 +35,23 @@ export declare const CalciteAlert: import("@lit/react").ReactWebComponent<HTMLCa
|
|
|
35
35
|
onCalciteAlertClose: EventName<HTMLCalciteAlertElement["calciteAlertClose"]>;
|
|
36
36
|
onCalciteAlertOpen: EventName<HTMLCalciteAlertElement["calciteAlertOpen"]>;
|
|
37
37
|
}>;
|
|
38
|
+
export declare const CalciteAutocomplete: import("@lit/react").ReactWebComponent<HTMLCalciteAutocompleteElement & {
|
|
39
|
+
class?: string;
|
|
40
|
+
}, {
|
|
41
|
+
onCalciteAutocompleteBeforeClose: EventName<HTMLCalciteAutocompleteElement["calciteAutocompleteBeforeClose"]>;
|
|
42
|
+
onCalciteAutocompleteBeforeOpen: EventName<HTMLCalciteAutocompleteElement["calciteAutocompleteBeforeOpen"]>;
|
|
43
|
+
onCalciteAutocompleteChange: EventName<HTMLCalciteAutocompleteElement["calciteAutocompleteChange"]>;
|
|
44
|
+
onCalciteAutocompleteClose: EventName<HTMLCalciteAutocompleteElement["calciteAutocompleteClose"]>;
|
|
45
|
+
onCalciteAutocompleteOpen: EventName<HTMLCalciteAutocompleteElement["calciteAutocompleteOpen"]>;
|
|
46
|
+
onCalciteAutocompleteTextChange: EventName<HTMLCalciteAutocompleteElement["calciteAutocompleteTextChange"]>;
|
|
47
|
+
onCalciteAutocompleteTextInput: EventName<HTMLCalciteAutocompleteElement["calciteAutocompleteTextInput"]>;
|
|
48
|
+
}>;
|
|
49
|
+
export declare const CalciteAutocompleteItem: import("@lit/react").ReactWebComponent<HTMLCalciteAutocompleteItemElement & {
|
|
50
|
+
class?: string;
|
|
51
|
+
}, {}>;
|
|
52
|
+
export declare const CalciteAutocompleteItemGroup: import("@lit/react").ReactWebComponent<HTMLCalciteAutocompleteItemGroupElement & {
|
|
53
|
+
class?: string;
|
|
54
|
+
}, {}>;
|
|
38
55
|
export declare const CalciteAvatar: import("@lit/react").ReactWebComponent<HTMLCalciteAvatarElement & {
|
|
39
56
|
class?: string;
|
|
40
57
|
}, {}>;
|
package/dist/components.js
CHANGED
|
@@ -22,6 +22,17 @@ export const CalciteAlert = /*@__PURE__*/ createWrapper(getReactWrapperOptions("
|
|
|
22
22
|
onCalciteAlertClose: "calciteAlertClose",
|
|
23
23
|
onCalciteAlertOpen: "calciteAlertOpen",
|
|
24
24
|
}));
|
|
25
|
+
export const CalciteAutocomplete = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-autocomplete", {
|
|
26
|
+
onCalciteAutocompleteBeforeClose: "calciteAutocompleteBeforeClose",
|
|
27
|
+
onCalciteAutocompleteBeforeOpen: "calciteAutocompleteBeforeOpen",
|
|
28
|
+
onCalciteAutocompleteChange: "calciteAutocompleteChange",
|
|
29
|
+
onCalciteAutocompleteClose: "calciteAutocompleteClose",
|
|
30
|
+
onCalciteAutocompleteOpen: "calciteAutocompleteOpen",
|
|
31
|
+
onCalciteAutocompleteTextChange: "calciteAutocompleteTextChange",
|
|
32
|
+
onCalciteAutocompleteTextInput: "calciteAutocompleteTextInput",
|
|
33
|
+
}));
|
|
34
|
+
export const CalciteAutocompleteItem = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-autocomplete-item", {}));
|
|
35
|
+
export const CalciteAutocompleteItemGroup = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-autocomplete-item-group", {}));
|
|
25
36
|
export const CalciteAvatar = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-avatar", {}));
|
|
26
37
|
export const CalciteBlock = /*@__PURE__*/ createWrapper(getReactWrapperOptions("calcite-block", {
|
|
27
38
|
onCalciteBlockBeforeClose: "calciteBlockBeforeClose",
|
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.75",
|
|
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.75",
|
|
30
30
|
"@lit/react": "1.0.6"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"volta": {
|
|
37
37
|
"extends": "../../package.json"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "81eb5c5e5dff473be5844eef320062ea11317349"
|
|
40
40
|
}
|