@esri/calcite-components-react 0.26.0 → 0.29.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.js
CHANGED
|
@@ -41,6 +41,7 @@ export const CalciteInput = /*@__PURE__*/ createReactComponent('calcite-input');
|
|
|
41
41
|
export const CalciteInputDatePicker = /*@__PURE__*/ createReactComponent('calcite-input-date-picker');
|
|
42
42
|
export const CalciteInputMessage = /*@__PURE__*/ createReactComponent('calcite-input-message');
|
|
43
43
|
export const CalciteInputNumber = /*@__PURE__*/ createReactComponent('calcite-input-number');
|
|
44
|
+
export const CalciteInputText = /*@__PURE__*/ createReactComponent('calcite-input-text');
|
|
44
45
|
export const CalciteInputTimePicker = /*@__PURE__*/ createReactComponent('calcite-input-time-picker');
|
|
45
46
|
export const CalciteLabel = /*@__PURE__*/ createReactComponent('calcite-label');
|
|
46
47
|
export const CalciteLink = /*@__PURE__*/ createReactComponent('calcite-link');
|
|
@@ -6,5 +6,5 @@ interface StencilReactInternalProps<ElementType> extends React.HTMLAttributes<El
|
|
|
6
6
|
forwardedRef: React.RefObject<ElementType>;
|
|
7
7
|
ref?: React.Ref<any>;
|
|
8
8
|
}
|
|
9
|
-
export declare const createReactComponent: <PropType, ElementType extends HTMLStencilElement, ContextStateType = {}, ExpandedPropsTypes = {}>(tagName: string, ReactComponentContext?: React.Context<ContextStateType>, manipulatePropsFunction?: (originalProps: StencilReactInternalProps<ElementType>, propsToPass: any) => ExpandedPropsTypes, defineCustomElement?: () => void) => React.ForwardRefExoticComponent<React.PropsWithoutRef<import("./
|
|
9
|
+
export declare const createReactComponent: <PropType, ElementType extends HTMLStencilElement, ContextStateType = {}, ExpandedPropsTypes = {}>(tagName: string, ReactComponentContext?: React.Context<ContextStateType>, manipulatePropsFunction?: (originalProps: StencilReactInternalProps<ElementType>, propsToPass: any) => ExpandedPropsTypes, defineCustomElement?: () => void) => React.ForwardRefExoticComponent<React.PropsWithoutRef<PropType & Omit<React.HTMLAttributes<ElementType>, "style"> & import("./interfaces").StyleReactProps> & React.RefAttributes<ElementType>>;
|
|
10
10
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -4,7 +4,7 @@ export declare type StencilReactExternalProps<PropType, ElementType> = PropType
|
|
|
4
4
|
export declare type StencilReactForwardedRef<T> = ((instance: T | null) => void) | React.MutableRefObject<T | null> | null;
|
|
5
5
|
export declare const setRef: (ref: StencilReactForwardedRef<any> | React.Ref<any> | undefined, value: any) => void;
|
|
6
6
|
export declare const mergeRefs: (...refs: (StencilReactForwardedRef<any> | React.Ref<any> | undefined)[]) => React.RefCallback<any>;
|
|
7
|
-
export declare const createForwardRef: <PropType, ElementType>(ReactComponent: any, displayName: string) => React.ForwardRefExoticComponent<React.PropsWithoutRef<
|
|
7
|
+
export declare const createForwardRef: <PropType, ElementType>(ReactComponent: any, displayName: string) => React.ForwardRefExoticComponent<React.PropsWithoutRef<PropType & Omit<React.HTMLAttributes<ElementType>, "style"> & StyleReactProps> & React.RefAttributes<ElementType>>;
|
|
8
8
|
export declare const defineCustomElement: (tagName: string, customElement: any) => void;
|
|
9
9
|
export * from './attachProps';
|
|
10
10
|
export * from './case';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esri/calcite-components-react",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.29.0",
|
|
5
5
|
"description": "A set of React components that wrap calcite components",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
7
7
|
"scripts": {
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"react": "^16.13.1",
|
|
24
24
|
"react-dom": "^16.13.1",
|
|
25
25
|
"rimraf": "^2.6.3",
|
|
26
|
-
"typescript": "
|
|
26
|
+
"typescript": "4.5.4"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@esri/calcite-components": "^1.0.0-beta.
|
|
29
|
+
"@esri/calcite-components": "^1.0.0-beta.92"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"react": ">=16.7",
|