Skip to content
This repository was archived by the owner on Jul 9, 2019. It is now read-only.

Import fix #5

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion src/helpers.ts
Original file line number Diff line number Diff line change
@@ -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'

Expand Down
4 changes: 3 additions & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
15 changes: 15 additions & 0 deletions typings/ramda.d.ts
Original file line number Diff line number Diff line change
@@ -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
}

8 changes: 8 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down