Merge branch 'master' into feature/integration
# Conflicts: # yarn.lock
This commit is contained in:
commit
1d0da80621
12
app/client/.editorconfig
Normal file
12
app/client/.editorconfig
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
trim_trailing_whitespace = false
|
||||||
2
app/client/.gitignore
vendored
2
app/client/.gitignore
vendored
|
|
@ -22,3 +22,5 @@
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
|
||||||
|
/out
|
||||||
1
app/client/.nvmrc
Normal file
1
app/client/.nvmrc
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
lts/dubnium
|
||||||
5
app/client/.prettierignore
Normal file
5
app/client/.prettierignore
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
build/
|
||||||
|
node_modules/
|
||||||
|
package-lock.json
|
||||||
|
yarn.lock
|
||||||
|
package.json
|
||||||
9
app/client/.prettierrc
Normal file
9
app/client/.prettierrc
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"printWidth": 80,
|
||||||
|
"tabWidth": 2,
|
||||||
|
"useTabs": false,
|
||||||
|
"semi": true,
|
||||||
|
"singleQuote": false,
|
||||||
|
"trailingComma": "all",
|
||||||
|
"parser": "typescript"
|
||||||
|
}
|
||||||
|
|
@ -2,6 +2,10 @@
|
||||||
"name": "appsmith",
|
"name": "appsmith",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
"engines": {
|
||||||
|
"node": "10.16.3",
|
||||||
|
"npm": "6.9.0"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@blueprintjs/core": "^3.11.0",
|
"@blueprintjs/core": "^3.11.0",
|
||||||
"@blueprintjs/datetime": "^3.6.0",
|
"@blueprintjs/datetime": "^3.6.0",
|
||||||
|
|
@ -27,8 +31,8 @@
|
||||||
"normalizr": "^3.3.0",
|
"normalizr": "^3.3.0",
|
||||||
"prettier": "^1.16.0",
|
"prettier": "^1.16.0",
|
||||||
"react": "^16.7.0",
|
"react": "^16.7.0",
|
||||||
"react-dnd": "^7.0.2",
|
"react-dnd": "^9.3.4",
|
||||||
"react-dnd-html5-backend": "^7.0.2",
|
"react-dnd-html5-backend": "^9.3.4",
|
||||||
"react-dom": "^16.7.0",
|
"react-dom": "^16.7.0",
|
||||||
"react-redux": "^6.0.0",
|
"react-redux": "^6.0.0",
|
||||||
"react-router": "^4.3.1",
|
"react-router": "^4.3.1",
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ export interface IFontInterface {
|
||||||
export interface IThemeInterface {
|
export interface IThemeInterface {
|
||||||
primaryColor: Color
|
primaryColor: Color
|
||||||
secondaryColor: Color
|
secondaryColor: Color
|
||||||
ascentColor: Color
|
accentColor: Color
|
||||||
headerFont: IFontInterface,
|
headerFont: IFontInterface,
|
||||||
titleFont: IFontInterface,
|
titleFont: IFontInterface,
|
||||||
subTitleFont: IFontInterface
|
subTitleFont: IFontInterface
|
||||||
|
|
@ -35,7 +35,7 @@ const defaultFont: IFontInterface = {
|
||||||
export const theme = {
|
export const theme = {
|
||||||
primaryColor: Colors.FullBlack,
|
primaryColor: Colors.FullBlack,
|
||||||
secondaryColor: Colors.FullWhite,
|
secondaryColor: Colors.FullWhite,
|
||||||
ascentColor: Colors.FullBlack,
|
accentColor: Colors.FullBlack,
|
||||||
headerFont: defaultFont,
|
headerFont: defaultFont,
|
||||||
titleFont: defaultFont,
|
titleFont: defaultFont,
|
||||||
subTitleFont: defaultFont
|
subTitleFont: defaultFont
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,8 @@ import styled from "../constants/DefaultTheme"
|
||||||
import React from "react"
|
import React from "react"
|
||||||
|
|
||||||
export const Container = styled("div")<IContainerProps>`
|
export const Container = styled("div")<IContainerProps>`
|
||||||
display: "flex"
|
display: flex;
|
||||||
flexDirection: ${props => {
|
flex-direction: ${props => {
|
||||||
return props.orientation === "HORIZONTAL" ? "row" : "column"
|
return props.orientation === "HORIZONTAL" ? "row" : "column"
|
||||||
}};
|
}};
|
||||||
background: ${props => props.style.backgroundColor};
|
background: ${props => props.style.backgroundColor};
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
"dom.iterable",
|
"dom.iterable",
|
||||||
"esnext"
|
"esnext"
|
||||||
],
|
],
|
||||||
|
"outDir": "./out/js/src",
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
|
|
@ -20,6 +21,6 @@
|
||||||
"jsx": "preserve"
|
"jsx": "preserve"
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src"
|
"./src/**/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user