diff --git a/package.json b/package.json index 163b5e9..cca3fc3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-form-helper", - "version": "0.4.2", + "version": "0.4.3", "description": "React component for building forms with ease", "main": "dist/src/index.js", "typings": "dist/src/index.d.ts", @@ -33,9 +33,9 @@ "tslint-config-beanloop": "^0.1.0" }, "dependencies": { - "@types/ramda": "^0.0.2", + "@types/ramda": "^0.25.8", "@types/recompose": "^0.20.4", - "ramda": "^0.22.1", + "ramda": "^0.25.0", "recompose": "^0.21.2", "scroll-into-view-if-needed": "^1.0.6" }, diff --git a/src/helpers.ts b/src/helpers.ts index 58e4ee8..cb7d6b2 100644 --- a/src/helpers.ts +++ b/src/helpers.ts @@ -1,4 +1,4 @@ -import {path as getPath} from 'ramda' +import getPath from 'ramda/src/path' import {FieldConfig} from './index' import {required as requiredError} from './validation' diff --git a/src/index.tsx b/src/index.tsx index 2c2f3f3..5760bf2 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,4 +1,6 @@ -import {lensPath, path as getPath, set} from 'ramda' +import lensPath from 'ramda/src/lensPath' +import getPath from 'ramda/src/path' +import set from 'ramda/src/set' import * as React from 'react' import {CSSProperties, Component, ReactChild, ReactType, cloneElement} from 'react' import {BrowserButton, BrowserInput} from './browser-components' diff --git a/typings/ramda.d.ts b/typings/ramda.d.ts new file mode 100644 index 0000000..8f04e8a --- /dev/null +++ b/typings/ramda.d.ts @@ -0,0 +1,15 @@ +declare module 'ramda/src/path' { + import {path} from 'ramda' + export default path +} + +declare module 'ramda/src/lensPath' { + import {lensPath} from 'ramda' + export default lensPath +} + +declare module 'ramda/src/set' { + import {set} from 'ramda' + export default set +} + diff --git a/yarn.lock b/yarn.lock index bdc1f19..f4a187c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14,6 +14,10 @@ version "0.0.2" resolved "https://registry.yarnpkg.com/@types/ramda/-/ramda-0.0.2.tgz#04e9b560b118eaf48542945ef9b2701c3f9832e3" +"@types/ramda@^0.25.8": + version "0.25.8" + resolved "https://registry.yarnpkg.com/@types/ramda/-/ramda-0.25.8.tgz#d95e7e9a47ed4a0fcb1b4bbb7f6ffac71276c619" + "@types/react-dom@^0.14.23": version "0.14.23" resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-0.14.23.tgz#cecfcfad754b4c2765fe5d29b81b301889ad6c2e" @@ -6938,6 +6942,10 @@ ramda@^0.23.0: version "0.23.0" resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.23.0.tgz#ccd13fff73497a93974e3e86327bfd87bd6e8e2b" +ramda@^0.25.0: + version "0.25.0" + resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.25.0.tgz#8fdf68231cffa90bc2f9460390a0cb74a29b29a9" + randexp@^0.4.2: version "0.4.5" resolved "https://registry.yarnpkg.com/randexp/-/randexp-0.4.5.tgz#ffe3a80c3f666cd71e6b008e477e584c1a32ff3e"