@maibornwolff/mwui-react
Advanced tools
Comparing version 0.1.13 to 0.1.14
@@ -9,3 +9,3 @@ import React from 'react'; | ||
} | ||
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("./utils").StencilReactExternalProps<PropType, ElementType>> & React.RefAttributes<ElementType>>; | ||
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>>; | ||
export {}; |
@@ -0,1 +1,2 @@ | ||
export {}; | ||
//# sourceMappingURL=interfaces.js.map |
@@ -7,5 +7,5 @@ import React from 'react'; | ||
export declare const mergeRefs: (...refs: (StencilReactForwardedRef<any> | React.Ref<any> | undefined)[]) => React.RefCallback<any>; | ||
export declare const createForwardRef: <PropType, ElementType>(ReactComponent: any, displayName: string) => React.ForwardRefExoticComponent<React.PropsWithoutRef<StencilReactExternalProps<PropType, ElementType>> & React.RefAttributes<ElementType>>; | ||
export declare const createForwardRef: <PropType, ElementType>(ReactComponent: any, displayName: string) => React.ForwardRefExoticComponent<React.PropsWithoutRef<PropType & Omit<React.HTMLAttributes<ElementType>, "style"> & StyleReactProps> & React.RefAttributes<ElementType>>; | ||
export declare const defineCustomElement: (tagName: string, customElement: any) => void; | ||
export * from './attachProps'; | ||
export * from './case'; |
{ | ||
"name": "@maibornwolff/mwui-react", | ||
"sideEffects": false, | ||
"version": "0.1.13", | ||
"description": "React specific wrapper for mwui", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/MaibornWolff/mwui.git" | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && npm run compile", | ||
"clean": "rm -rf dist", | ||
"compile": "npm run tsc", | ||
"tsc": "tsc -p .", | ||
"rollup": "rollup -c" | ||
}, | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"dist/" | ||
], | ||
"devDependencies": { | ||
"@types/jest": "23.3.9", | ||
"@types/node": "^15.12.2", | ||
"@types/react": "^17.0.34", | ||
"@types/react-dom": "^17.0.11", | ||
"jest": "^29.0.1", | ||
"jest-dom": "^3.0.2", | ||
"np": "^3.0.4", | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2", | ||
"typescript": "^3.3.4000" | ||
}, | ||
"dependencies": { | ||
"@maibornwolff/mwui-stencil": "^0.1.11" | ||
}, | ||
"peerDependencies": { | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2" | ||
}, | ||
"jest": { | ||
"preset": "ts-jest", | ||
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js", | ||
"testPathIgnorePatterns": [ | ||
"node_modules", | ||
"dist" | ||
] | ||
} | ||
"name": "@maibornwolff/mwui-react", | ||
"sideEffects": false, | ||
"version": "0.1.14", | ||
"description": "React specific wrapper for mwui", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/MaibornWolff/mwui.git" | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && npm run compile", | ||
"clean": "rm -rf dist", | ||
"compile": "npm run tsc", | ||
"tsc": "tsc -p .", | ||
"rollup": "rollup -c" | ||
}, | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"dist/" | ||
], | ||
"devDependencies": { | ||
"@types/jest": "23.3.9", | ||
"@types/node": "^18.11.18", | ||
"@types/react": "^17.0.34", | ||
"@types/react-dom": "^17.0.11", | ||
"jest": "^27.4.5", | ||
"jest-dom": "^3.0.2", | ||
"np": "^3.0.4", | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2", | ||
"typescript": "^4.8.2" | ||
}, | ||
"dependencies": { | ||
"@maibornwolff/mwui-stencil": "^0.1.12" | ||
}, | ||
"peerDependencies": { | ||
"react": "^17.0.2", | ||
"react-dom": "^17.0.2" | ||
}, | ||
"jest": { | ||
"preset": "ts-jest", | ||
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js", | ||
"testPathIgnorePatterns": [ | ||
"node_modules", | ||
"dist" | ||
] | ||
} | ||
} |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44771
493