@esri/calcite-components-react 1.10.1-next.2 → 2.0.0-rc.0
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 +1 -1
- package/package.json +5 -4
package/dist/components.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import type { JSX } from '@esri/calcite-components/dist/components';
|
|
2
|
+
import type { JSX } from '@esri/calcite-components/dist/types/components';
|
|
3
3
|
export declare const CalciteAccordion: import("react").ForwardRefExoticComponent<JSX.CalciteAccordion & Omit<import("react").HTMLAttributes<HTMLCalciteAccordionElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLCalciteAccordionElement>>;
|
|
4
4
|
export declare const CalciteAccordionItem: import("react").ForwardRefExoticComponent<JSX.CalciteAccordionItem & Omit<import("react").HTMLAttributes<HTMLCalciteAccordionItemElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLCalciteAccordionItemElement>>;
|
|
5
5
|
export declare const CalciteAction: import("react").ForwardRefExoticComponent<JSX.CalciteAction & Omit<import("react").HTMLAttributes<HTMLCalciteActionElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLCalciteActionElement>>;
|
package/package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esri/calcite-components-react",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0-rc.0",
|
|
5
5
|
"homepage": "https://developers.arcgis.com/calcite-design-system/",
|
|
6
6
|
"description": "A set of React components that wrap calcite components",
|
|
7
7
|
"license": "SEE LICENSE.md",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "rimraf dist && npm run compile",
|
|
10
|
-
"prebuild": "npm run patch:ssr",
|
|
10
|
+
"prebuild": "npm run patch:ssr && npm run patch:jsx-import",
|
|
11
11
|
"clean": "rimraf dist node_modules .turbo",
|
|
12
12
|
"compile": "npm run tsc",
|
|
13
|
+
"patch:jsx-import": "ts-node support/patchJSXImport.ts",
|
|
13
14
|
"patch:ssr": "ts-node support/patchSSR.ts",
|
|
14
15
|
"tsc": "tsc"
|
|
15
16
|
},
|
|
@@ -20,7 +21,7 @@
|
|
|
20
21
|
"dist/"
|
|
21
22
|
],
|
|
22
23
|
"dependencies": {
|
|
23
|
-
"@esri/calcite-components": "^
|
|
24
|
+
"@esri/calcite-components": "^2.0.0-rc.0"
|
|
24
25
|
},
|
|
25
26
|
"peerDependencies": {
|
|
26
27
|
"react": ">=16.7",
|
|
@@ -29,5 +30,5 @@
|
|
|
29
30
|
"volta": {
|
|
30
31
|
"extends": "../../package.json"
|
|
31
32
|
},
|
|
32
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "e0373a82aadbede912a0ecf1969fb55217d8c93c"
|
|
33
34
|
}
|