Compare commits
23 Commits
tax-compli
...
@bigcapita
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
04b16a7d2f | ||
|
|
fd27136274 | ||
|
|
951e360405 | ||
|
|
d2242b7744 | ||
|
|
4e9b0ae24f | ||
|
|
e5ffb5661a | ||
|
|
9eaff0785b | ||
|
|
b3a97ed5d5 | ||
|
|
1aaa65edd2 | ||
|
|
efebf424d1 | ||
|
|
597973d5d1 | ||
|
|
ee6bc822c9 | ||
|
|
07e78ebd6a | ||
|
|
8c04a6205b | ||
|
|
d54ea68d46 | ||
|
|
f42c8031c2 | ||
|
|
5261d332b7 | ||
|
|
a0a5d00be3 | ||
|
|
17e055db5e | ||
|
|
b49a021506 | ||
|
|
339559d830 | ||
|
|
22e4d757e4 | ||
|
|
3b98e8de80 |
13
.github/FUNDING.yml
vendored
Normal file
13
.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
# These are supported funding model platforms
|
||||||
|
|
||||||
|
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||||
|
patreon: Bigcapital # Replace with a single Patreon username
|
||||||
|
open_collective: # Replace with a single Open Collective username
|
||||||
|
ko_fi: # Replace with a single Ko-fi username
|
||||||
|
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||||
|
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||||
|
liberapay: # Replace with a single Liberapay username
|
||||||
|
issuehunt: # Replace with a single IssueHunt username
|
||||||
|
otechie: # Replace with a single Otechie username
|
||||||
|
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
|
||||||
|
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
||||||
14
CHANGELOG.md
14
CHANGELOG.md
@@ -2,6 +2,20 @@
|
|||||||
|
|
||||||
All notable changes to Bigcapital server-side will be in this file.
|
All notable changes to Bigcapital server-side will be in this file.
|
||||||
|
|
||||||
|
# [0.10.1] - 25-09-2023
|
||||||
|
|
||||||
|
* Fix: Running tenants migration on Docker migration container by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/242
|
||||||
|
|
||||||
|
# [0.10.0] - 24-09-2023
|
||||||
|
|
||||||
|
* Added: Tax rates service by @abouolia @elforjani13 in https://github.com/bigcapitalhq/bigcapital/pull/204
|
||||||
|
* Added: Sales Tax Liability Summary report by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/204
|
||||||
|
* Added: Tax rates tracking with sale invoices by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/204
|
||||||
|
* fix(webapp): Table headers sticky for all reports. by @elforjani13 in https://github.com/bigcapitalhq/bigcapital/pull/240
|
||||||
|
* chore(deps): bump word-wrap from 1.2.3 to 1.2.4 by @dependabot in https://github.com/bigcapitalhq/bigcapital/pull/200
|
||||||
|
* chore(deps): bump word-wrap from 1.2.3 to 1.2.4 in /packages/webapp by @dependabot in https://github.com/bigcapitalhq/bigcapital/pull/199
|
||||||
|
* chore(deps): bump mongoose from 5.13.15 to 5.13.20 by @dependabot in https://github.com/bigcapitalhq/bigcapital/pull/197
|
||||||
|
|
||||||
# [0.9.12] - 29-08-2023
|
# [0.9.12] - 29-08-2023
|
||||||
|
|
||||||
* Refactor: split the services to multiple service classes. (by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/202)
|
* Refactor: split the services to multiple service classes. (by @abouolia in https://github.com/bigcapitalhq/bigcapital/pull/202)
|
||||||
|
|||||||
@@ -48,6 +48,12 @@ Bigcapital is a smart and open-source accounting and inventory software, Bigcapi
|
|||||||
|
|
||||||
Please see [Releases](https://github.com/bigcapitalhq/bigcapital/releases) for more information what has changed recently.
|
Please see [Releases](https://github.com/bigcapitalhq/bigcapital/releases) for more information what has changed recently.
|
||||||
|
|
||||||
|
# Contact us
|
||||||
|
|
||||||
|
Meet our sales team for any commercial inquiries.
|
||||||
|
|
||||||
|
<a target="_blank" href="https://cal.com/ahmed-bouhuolia-ekk3ph/30min"><img src="https://cal.com/book-with-cal-dark.svg" alt="Book us with Cal.com"></a>
|
||||||
|
|
||||||
# Recognition
|
# Recognition
|
||||||
|
|
||||||
<a href="https://news.ycombinator.com/item?id=36118990">
|
<a href="https://news.ycombinator.com/item?id=36118990">
|
||||||
|
|||||||
@@ -15,8 +15,8 @@ services:
|
|||||||
- ./data/logs/nginx/:/var/log/nginx
|
- ./data/logs/nginx/:/var/log/nginx
|
||||||
- ./docker/certbot/certs/:/var/certs
|
- ./docker/certbot/certs/:/var/certs
|
||||||
ports:
|
ports:
|
||||||
- "${PUBLIC_PROXY_PORT:-80}:80"
|
- '${PUBLIC_PROXY_PORT:-80}:80'
|
||||||
- "${PUBLIC_PROXY_SSL_PORT:-443}:443"
|
- '${PUBLIC_PROXY_SSL_PORT:-443}:443'
|
||||||
tty: true
|
tty: true
|
||||||
depends_on:
|
depends_on:
|
||||||
- server
|
- server
|
||||||
@@ -71,7 +71,7 @@ services:
|
|||||||
# Authentication
|
# Authentication
|
||||||
- JWT_SECRET=${JWT_SECRET}
|
- JWT_SECRET=${JWT_SECRET}
|
||||||
|
|
||||||
# MongoDB
|
# MongoDB
|
||||||
- MONGODB_DATABASE_URL=mongodb://mongo/bigcapital
|
- MONGODB_DATABASE_URL=mongodb://mongo/bigcapital
|
||||||
|
|
||||||
# Application
|
# Application
|
||||||
@@ -92,11 +92,14 @@ services:
|
|||||||
context: ./
|
context: ./
|
||||||
dockerfile: docker/migration/Dockerfile
|
dockerfile: docker/migration/Dockerfile
|
||||||
environment:
|
environment:
|
||||||
|
# Database
|
||||||
- DB_HOST=mysql
|
- DB_HOST=mysql
|
||||||
- DB_USER=${DB_USER}
|
- DB_USER=${DB_USER}
|
||||||
- DB_PASSWORD=${DB_PASSWORD}
|
- DB_PASSWORD=${DB_PASSWORD}
|
||||||
- DB_CHARSET=${DB_CHARSET}
|
- DB_CHARSET=${DB_CHARSET}
|
||||||
- SYSTEM_DB_NAME=${SYSTEM_DB_NAME}
|
- SYSTEM_DB_NAME=${SYSTEM_DB_NAME}
|
||||||
|
# Tenants databases
|
||||||
|
- TENANT_DB_NAME_PERFIX=${TENANT_DB_NAME_PERFIX}
|
||||||
depends_on:
|
depends_on:
|
||||||
- mysql
|
- mysql
|
||||||
|
|
||||||
@@ -136,7 +139,7 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: ./docker/redis
|
context: ./docker/redis
|
||||||
expose:
|
expose:
|
||||||
- "6379"
|
- '6379'
|
||||||
volumes:
|
volumes:
|
||||||
- redis:/data
|
- redis:/data
|
||||||
|
|
||||||
|
|||||||
@@ -34,5 +34,7 @@ WORKDIR /app/packages/server
|
|||||||
|
|
||||||
RUN git clone https://github.com/vishnubob/wait-for-it.git
|
RUN git clone https://github.com/vishnubob/wait-for-it.git
|
||||||
|
|
||||||
# Once we listen the mysql port run the migration task.
|
ADD docker/migration/start.sh /
|
||||||
CMD ["./wait-for-it/wait-for-it.sh", "mysql:3306", "--", "node", "./build/commands.js", "system:migrate:latest"]
|
RUN chmod +x /start.sh
|
||||||
|
|
||||||
|
CMD ["/start.sh"]
|
||||||
5
docker/migration/start.sh
Normal file
5
docker/migration/start.sh
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Migrate the master system database.
|
||||||
|
./wait-for-it/wait-for-it.sh mysql:3306 -- node ./build/commands.js system:migrate:latest
|
||||||
|
|
||||||
|
# Migrate all tenants.
|
||||||
|
./wait-for-it/wait-for-it.sh mysql:3306 -- node ./build/commands.js tenants:migrate:latest
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
|
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
|
||||||
"useWorkspaces": true,
|
"version": "independent",
|
||||||
"version": "0.9.6",
|
"npmClient": "pnpm",
|
||||||
"npmClient": "npm"
|
"packages": ["packages/*"]
|
||||||
}
|
}
|
||||||
|
|||||||
5730
package-lock.json
generated
5730
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,7 @@
|
|||||||
"name": "bigcapital-monorepo",
|
"name": "bigcapital-monorepo",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"bootstrap": "lerna exec npm install",
|
"bootstrap": "lerna exec pnpm install",
|
||||||
"dev": "lerna run dev",
|
"dev": "lerna run dev",
|
||||||
"build": "lerna run build",
|
"build": "lerna run build",
|
||||||
"dev:webapp": "lerna run dev --scope \"@bigcapital/webapp\"",
|
"dev:webapp": "lerna run dev --scope \"@bigcapital/webapp\"",
|
||||||
@@ -13,10 +13,6 @@
|
|||||||
"test:e2e": "playwright test",
|
"test:e2e": "playwright test",
|
||||||
"prepare": "husky install"
|
"prepare": "husky install"
|
||||||
},
|
},
|
||||||
"workspaces": [
|
|
||||||
"packages/*",
|
|
||||||
"shared/*"
|
|
||||||
],
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@commitlint/cli": "^17.4.2",
|
"@commitlint/cli": "^17.4.2",
|
||||||
"@commitlint/config-conventional": "^17.4.2",
|
"@commitlint/config-conventional": "^17.4.2",
|
||||||
|
|||||||
3
packages/server/.gitignore
vendored
3
packages/server/.gitignore
vendored
@@ -1,7 +1,6 @@
|
|||||||
/node_modules/
|
/node_modules/
|
||||||
/.env
|
/.env
|
||||||
/storage
|
/storage
|
||||||
package-lock.json
|
|
||||||
stdout.log
|
stdout.log
|
||||||
/dist
|
/dist
|
||||||
/build
|
/build
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@bigcapital/server",
|
"name": "@bigcapital/server",
|
||||||
"version": "0.9.5",
|
"version": "0.10.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "src/server.ts",
|
"main": "src/server.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -35,6 +35,7 @@
|
|||||||
"babel-loader": "^9.1.2",
|
"babel-loader": "^9.1.2",
|
||||||
"bcryptjs": "^2.4.3",
|
"bcryptjs": "^2.4.3",
|
||||||
"bluebird": "^3.7.2",
|
"bluebird": "^3.7.2",
|
||||||
|
"body-parser": "^1.20.2",
|
||||||
"compression": "^1.7.4",
|
"compression": "^1.7.4",
|
||||||
"country-codes-list": "^1.6.8",
|
"country-codes-list": "^1.6.8",
|
||||||
"cpy": "^8.1.2",
|
"cpy": "^8.1.2",
|
||||||
@@ -72,6 +73,8 @@
|
|||||||
"memory-cache": "^0.2.0",
|
"memory-cache": "^0.2.0",
|
||||||
"moment": "^2.24.0",
|
"moment": "^2.24.0",
|
||||||
"moment-range": "^4.0.2",
|
"moment-range": "^4.0.2",
|
||||||
|
"moment-timezone": "^0.5.43",
|
||||||
|
"mongodb": "^6.1.0",
|
||||||
"mongoose": "^5.10.0",
|
"mongoose": "^5.10.0",
|
||||||
"mustache": "^3.0.3",
|
"mustache": "^3.0.3",
|
||||||
"mysql": "^2.17.1",
|
"mysql": "^2.17.1",
|
||||||
@@ -131,7 +134,7 @@
|
|||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
"rtlcss": "^3.3.0",
|
"rtlcss": "^3.3.0",
|
||||||
"run-script-webpack-plugin": "^0.1.1",
|
"run-script-webpack-plugin": "^0.1.1",
|
||||||
"sass": "^1.37.5",
|
"sass": "^1.58.0",
|
||||||
"sinon": "^7.4.2",
|
"sinon": "^7.4.2",
|
||||||
"start-server-webpack-plugin": "^2.2.5",
|
"start-server-webpack-plugin": "^2.2.5",
|
||||||
"ts-loader": "^9.4.2",
|
"ts-loader": "^9.4.2",
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
@bigcapitalhq:registry=https://npm.pkg.github.com
|
|
||||||
17754
packages/webapp/package-lock.json
generated
17754
packages/webapp/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,17 +1,18 @@
|
|||||||
{
|
{
|
||||||
"name": "@bigcapital/webapp",
|
"name": "@bigcapital/webapp",
|
||||||
"version": "0.9.6",
|
"version": "0.10.2",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@blueprintjs-formik/core": "^0.3.4",
|
"@blueprintjs-formik/core": "^0.3.6",
|
||||||
"@blueprintjs-formik/datetime": "^0.3.4",
|
"@blueprintjs-formik/datetime": "^0.3.7",
|
||||||
"@blueprintjs-formik/select": "^0.3.1",
|
"@blueprintjs-formik/select": "^0.3.5",
|
||||||
"@blueprintjs/core": "^3.50.2",
|
"@blueprintjs/colors": "4.1.19",
|
||||||
"@blueprintjs/datetime": "^3.23.12",
|
"@blueprintjs/core": "^4.20.2",
|
||||||
|
"@blueprintjs/datetime": "^4.4.37",
|
||||||
"@blueprintjs/popover2": "^0.11.1",
|
"@blueprintjs/popover2": "^0.11.1",
|
||||||
"@blueprintjs/select": "^3.11.2",
|
"@blueprintjs/select": "^4.9.24",
|
||||||
"@blueprintjs/table": "^3.8.3",
|
"@blueprintjs/table": "^4.10.12",
|
||||||
"@blueprintjs/timezone": "^3.6.2",
|
"@blueprintjs/timezone": "^4.5.43",
|
||||||
"@casl/ability": "^5.4.3",
|
"@casl/ability": "^5.4.3",
|
||||||
"@casl/react": "^2.3.0",
|
"@casl/react": "^2.3.0",
|
||||||
"@craco/craco": "^5.9.0",
|
"@craco/craco": "^5.9.0",
|
||||||
@@ -26,6 +27,7 @@
|
|||||||
"@types/ramda": "^0.28.14",
|
"@types/ramda": "^0.28.14",
|
||||||
"@types/react": "^16.14.28",
|
"@types/react": "^16.14.28",
|
||||||
"@types/react-body-classname": "^1.1.7",
|
"@types/react-body-classname": "^1.1.7",
|
||||||
|
"@types/react-dom": "^16.9.16",
|
||||||
"@types/react-redux": "^7.1.24",
|
"@types/react-redux": "^7.1.24",
|
||||||
"@types/react-router-dom": "^5.3.3",
|
"@types/react-router-dom": "^5.3.3",
|
||||||
"@types/react-transition-group": "^4.4.5",
|
"@types/react-transition-group": "^4.4.5",
|
||||||
@@ -38,44 +40,49 @@
|
|||||||
"axios": "^0.21.2",
|
"axios": "^0.21.2",
|
||||||
"basscss": "^8.0.2",
|
"basscss": "^8.0.2",
|
||||||
"camelcase": "^5.3.1",
|
"camelcase": "^5.3.1",
|
||||||
|
"classnames": "^2.3.2",
|
||||||
"cross-env": "^7.0.2",
|
"cross-env": "^7.0.2",
|
||||||
"deep-map-keys": "^2.0.1",
|
|
||||||
"deepdash": "^5.3.9",
|
"deepdash": "^5.3.9",
|
||||||
"dependency-graph": "^0.11.0",
|
"dependency-graph": "^0.11.0",
|
||||||
"dotenv-webpack": "^8.0.1",
|
"dotenv-webpack": "^8.0.1",
|
||||||
|
"eslint": "^8.33.0",
|
||||||
"fast-deep-equal": "^3.1.3",
|
"fast-deep-equal": "^3.1.3",
|
||||||
"flat": "^5.0.2",
|
"flat": "^5.0.2",
|
||||||
"formik": "^2.2.5",
|
"formik": "^2.2.5",
|
||||||
|
"history": "4.10.1",
|
||||||
"http-proxy-middleware": "^1.0.0",
|
"http-proxy-middleware": "^1.0.0",
|
||||||
"jest": "24.9.0",
|
"jest": "24.9.0",
|
||||||
"jest-environment-jsdom-fourteen": "1.0.1",
|
"jest-environment-jsdom-fourteen": "1.0.1",
|
||||||
"jest-resolve": "24.9.0",
|
"jest-resolve": "24.9.0",
|
||||||
"jest-watch-typeahead": "0.4.2",
|
"jest-watch-typeahead": "0.4.2",
|
||||||
|
"js-cookie": "2.2.1",
|
||||||
"js-money": "^0.6.3",
|
"js-money": "^0.6.3",
|
||||||
"lodash": "^4.17.15",
|
"lodash": "^4.17.15",
|
||||||
"moment": "^2.24.0",
|
"moment": "^2.24.0",
|
||||||
"moment-timezone": "^0.5.33",
|
"moment-timezone": "^0.5.33",
|
||||||
"node-sass": "^4.14.1",
|
|
||||||
"path-browserify": "^1.0.1",
|
"path-browserify": "^1.0.1",
|
||||||
|
"prop-types": "15.8.1",
|
||||||
"query-string": "^7.1.1",
|
"query-string": "^7.1.1",
|
||||||
"ramda": "^0.27.1",
|
"ramda": "^0.27.1",
|
||||||
"react": "^16.14.0",
|
"react": "^18.2.0",
|
||||||
"react-app-polyfill": "^1.0.6",
|
"react-app-polyfill": "^1.0.6",
|
||||||
"react-body-classname": "^1.3.1",
|
"react-body-classname": "^1.3.1",
|
||||||
"react-content-loader": "^6.0.1",
|
"react-content-loader": "^6.0.1",
|
||||||
"react-dev-utils": "^11.0.4",
|
"react-dev-utils": "^11.0.4",
|
||||||
"react-dom": "^16.12.0",
|
"react-dom": "^18.2.0",
|
||||||
"react-dropzone": "^11.0.1",
|
"react-dropzone": "^11.0.1",
|
||||||
"react-error-boundary": "^3.0.2",
|
"react-error-boundary": "^3.0.2",
|
||||||
|
"react-error-overlay": "^6.0.9",
|
||||||
"react-hotkeys-hook": "^3.0.3",
|
"react-hotkeys-hook": "^3.0.3",
|
||||||
"react-intl-universal": "^2.4.7",
|
"react-intl-universal": "^2.4.7",
|
||||||
"react-loadable": "^5.5.0",
|
"react-loadable": "^5.5.0",
|
||||||
"react-query": "^3.6.0",
|
"react-query": "^3.6.0",
|
||||||
"react-query-devtools": "^2.1.1",
|
"react-query-devtools": "^2.1.1",
|
||||||
"react-redux": "^7.1.3",
|
"react-redux": "^7.2.9",
|
||||||
|
"react-router": "5.3.4",
|
||||||
"react-router-breadcrumbs-hoc": "^3.2.10",
|
"react-router-breadcrumbs-hoc": "^3.2.10",
|
||||||
"react-router-dom": "^5.3.3",
|
"react-router-dom": "^5.3.3",
|
||||||
"react-scripts": "^3.4.4",
|
"react-scripts": "5.0.1",
|
||||||
"react-scroll-sync": "^0.7.1",
|
"react-scroll-sync": "^0.7.1",
|
||||||
"react-scrollbars-custom": "^4.0.21",
|
"react-scrollbars-custom": "^4.0.21",
|
||||||
"react-sortablejs": "^2.0.11",
|
"react-sortablejs": "^2.0.11",
|
||||||
@@ -86,11 +93,13 @@
|
|||||||
"react-use": "^13.26.1",
|
"react-use": "^13.26.1",
|
||||||
"react-use-context-menu": "^0.1.4",
|
"react-use-context-menu": "^0.1.4",
|
||||||
"react-virtualized": "^9.22.3",
|
"react-virtualized": "^9.22.3",
|
||||||
"redux": "^4.0.5",
|
"redux": "^4.2.1",
|
||||||
"redux-devtools": "^3.5.0",
|
"redux-devtools": "^3.5.0",
|
||||||
"redux-persist": "^6.0.0",
|
"redux-persist": "^6.0.0",
|
||||||
"redux-thunk": "^2.3.0",
|
"redux-thunk": "^2.4.2",
|
||||||
|
"reselect": "4.1.7",
|
||||||
"rtl-detect": "^1.0.3",
|
"rtl-detect": "^1.0.3",
|
||||||
|
"sass": "^1.68.0",
|
||||||
"semver": "6.3.0",
|
"semver": "6.3.0",
|
||||||
"style-loader": "0.23.1",
|
"style-loader": "0.23.1",
|
||||||
"styled-components": "^5.3.1",
|
"styled-components": "^5.3.1",
|
||||||
@@ -105,10 +114,6 @@
|
|||||||
"storybook": "start-storybook -p 6006"
|
"storybook": "start-storybook -p 6006"
|
||||||
},
|
},
|
||||||
"proxy": "http://localhost:3000/",
|
"proxy": "http://localhost:3000/",
|
||||||
"devDependencies": {
|
|
||||||
"@types/react-dom": "^16.9.16",
|
|
||||||
"react-error-overlay": "^6.0.9"
|
|
||||||
},
|
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
"react-error-overlay": "6.0.9"
|
"react-error-overlay": "6.0.9"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
import { FSelect } from '@/components/Forms';
|
import { FSelect } from '@/components/Forms';
|
||||||
|
|
||||||
export function AccountsTypesSelect({ ...props }) {
|
export function AccountsTypesSelect({ ...props }) {
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
|
|
||||||
// Filters accounts items.
|
// Filters accounts items.
|
||||||
export const accountPredicate = (query, account, _index, exactMatch) => {
|
export const accountPredicate = (query, account, _index, exactMatch) => {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { Formik, FastField, FieldArray, useFormikContext } from 'formik';
|
import { Formik, FastField, FieldArray } from 'formik';
|
||||||
import {
|
import {
|
||||||
Button,
|
Button,
|
||||||
FormGroup,
|
FormGroup,
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
import { Router, Switch, Route } from 'react-router';
|
import { Router, Switch, Route } from 'react-router';
|
||||||
import { createBrowserHistory } from 'history';
|
import { createBrowserHistory } from 'history';
|
||||||
import { QueryClientProvider, QueryClient } from 'react-query';
|
import { QueryClientProvider, QueryClient } from 'react-query';
|
||||||
|
|||||||
@@ -18,10 +18,10 @@ export const CardFooterActions = styled.div`
|
|||||||
border-top: 1px solid #e0e7ea;
|
border-top: 1px solid #e0e7ea;
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
|
|
||||||
.bp3-button {
|
.bp4-button {
|
||||||
min-width: 70px;
|
min-width: 70px;
|
||||||
|
|
||||||
+ .bp3-button {
|
+ .bp4-button {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
.menu{
|
.menu{
|
||||||
:global .bp3-heading{
|
:global .bp4-heading{
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
import * as R from 'ramda';
|
import * as R from 'ramda';
|
||||||
import BigcapitalLoading from './BigcapitalLoading';
|
import BigcapitalLoading from './BigcapitalLoading';
|
||||||
import withDashboard from '@/containers/Dashboard/withDashboard';
|
import withDashboard from '@/containers/Dashboard/withDashboard';
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ export function DataTableEditable({
|
|||||||
}
|
}
|
||||||
|
|
||||||
const DatatableEditableRoot = styled.div`
|
const DatatableEditableRoot = styled.div`
|
||||||
.bp3-form-group {
|
.bp4-form-group {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.table {
|
.table {
|
||||||
@@ -69,17 +69,17 @@ const DatatableEditableRoot = styled.div`
|
|||||||
}
|
}
|
||||||
.tr {
|
.tr {
|
||||||
&:hover .td,
|
&:hover .td,
|
||||||
.bp3-input {
|
.bp4-input {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
.bp3-form-group:not(.bp3-intent-danger) .bp3-input,
|
.bp4-form-group:not(.bp4-intent-danger) .bp4-input,
|
||||||
.form-group--select-list .bp3-button {
|
.form-group--select-list .bp4-button {
|
||||||
border-color: #ffffff;
|
border-color: #ffffff;
|
||||||
color: #222;
|
color: #222;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
text-align: inherit;
|
text-align: inherit;
|
||||||
}
|
}
|
||||||
.bp3-form-group:not(.bp3-intent-danger) .bp3-input {
|
.bp4-form-group:not(.bp4-intent-danger) .bp4-input {
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
padding-left: 14px;
|
padding-left: 14px;
|
||||||
padding-right: 14px;
|
padding-right: 14px;
|
||||||
@@ -88,7 +88,7 @@ const DatatableEditableRoot = styled.div`
|
|||||||
box-shadow: 0 0 0 2px #116cd0;
|
box-shadow: 0 0 0 2px #116cd0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.form-group--select-list .bp3-button {
|
.form-group--select-list .bp4-button {
|
||||||
padding-left: 6px;
|
padding-left: 6px;
|
||||||
padding-right: 6px;
|
padding-right: 6px;
|
||||||
|
|
||||||
@@ -97,16 +97,16 @@ const DatatableEditableRoot = styled.div`
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.form-group--select-list,
|
.form-group--select-list,
|
||||||
.bp3-form-group {
|
.bp4-form-group {
|
||||||
&.bp3-intent-danger {
|
&.bp4-intent-danger {
|
||||||
.bp3-button:not(.bp3-minimal),
|
.bp4-button:not(.bp4-minimal),
|
||||||
.bp3-input {
|
.bp4-input {
|
||||||
border-color: #f7b6b6;
|
border-color: #f7b6b6;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.td.actions {
|
.td.actions {
|
||||||
.bp3-button {
|
.bp4-button {
|
||||||
color: #80858f;
|
color: #80858f;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ const DialogFooterActionsRoot = styled.div`
|
|||||||
${(props) =>
|
${(props) =>
|
||||||
props.alignment === 'right' ? 'margin-left: auto;' : 'margin-right: auto;'};
|
props.alignment === 'right' ? 'margin-left: auto;' : 'margin-right: auto;'};
|
||||||
|
|
||||||
.bp3-button {
|
.bp4-button {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
import React from 'react';
|
|
||||||
|
|
||||||
import AccountDialog from '@/containers/Dialogs/AccountDialog';
|
import AccountDialog from '@/containers/Dialogs/AccountDialog';
|
||||||
import InviteUserDialog from '@/containers/Dialogs/InviteUserDialog';
|
import InviteUserDialog from '@/containers/Dialogs/InviteUserDialog';
|
||||||
import UserFormDialog from '@/containers/Dialogs/UserFormDialog';
|
import UserFormDialog from '@/containers/Dialogs/UserFormDialog';
|
||||||
|
|||||||
@@ -17,8 +17,8 @@ export function DrawerMainTabs({ children, ...restProps }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const DrawerMainTabsRoot = styled.div`
|
const DrawerMainTabsRoot = styled.div`
|
||||||
.bp3-tabs {
|
.bp4-tabs {
|
||||||
.bp3-tab-list {
|
.bp4-tab-list {
|
||||||
position: relative;
|
position: relative;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
@@ -28,7 +28,7 @@ const DrawerMainTabsRoot = styled.div`
|
|||||||
margin-right: 25px;
|
margin-right: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.bp3-large > .bp3-tab {
|
&.bp4-large > .bp4-tab {
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
color: #7f8596;
|
color: #7f8596;
|
||||||
margin: 0 1rem;
|
margin: 0 1rem;
|
||||||
@@ -38,13 +38,13 @@ const DrawerMainTabsRoot = styled.div`
|
|||||||
color: #0052cc;
|
color: #0052cc;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.bp3-tab-indicator-wrapper .bp3-tab-indicator {
|
.bp4-tab-indicator-wrapper .bp4-tab-indicator {
|
||||||
height: 2px;
|
height: 2px;
|
||||||
bottom: -2px;
|
bottom: -2px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bp3-tab-panel {
|
.bp4-tab-panel {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
|
|||||||
@@ -60,8 +60,8 @@ export function ExchangeRateMutedField({
|
|||||||
}
|
}
|
||||||
|
|
||||||
const ExchangeRateFormGroup = styled(FormGroup)`
|
const ExchangeRateFormGroup = styled(FormGroup)`
|
||||||
&.bp3-form-group {
|
&.bp4-form-group {
|
||||||
label.bp3-label {
|
label.bp4-label {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
@@ -79,7 +79,7 @@ const ExchangeRateButton = styled.div`
|
|||||||
position: relative;
|
position: relative;
|
||||||
padding-right: 28px;
|
padding-right: 28px;
|
||||||
|
|
||||||
.bp3-button {
|
.bp4-button {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
@@ -88,7 +88,7 @@ const ExchangeRateButton = styled.div`
|
|||||||
const ExchangeRateFormGroupContent = styled.div`
|
const ExchangeRateFormGroupContent = styled.div`
|
||||||
padding: 5px 0;
|
padding: 5px 0;
|
||||||
|
|
||||||
.bp3-form-group {
|
.bp4-form-group {
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
margin: 2px 4px !important;
|
margin: 2px 4px !important;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ const SelectButton = styled(Button)`
|
|||||||
position: relative;
|
position: relative;
|
||||||
padding-right: 30px;
|
padding-right: 30px;
|
||||||
|
|
||||||
&:not(.is-selected):not([class*='bp3-intent-']):not(.bp3-minimal) {
|
&:not(.is-selected):not([class*='bp4-intent-']):not(.bp4-minimal) {
|
||||||
color: #5c7080;
|
color: #5c7080;
|
||||||
}
|
}
|
||||||
&:after {
|
&:after {
|
||||||
@@ -46,13 +46,13 @@ const SelectButton = styled(Button)`
|
|||||||
margin-right: 12px;
|
margin-right: 12px;
|
||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
}
|
}
|
||||||
&:not([class*='bp3-intent-']):not(.bp3-disabled) {
|
&:not([class*='bp4-intent-']):not(.bp4-disabled) {
|
||||||
&,
|
&,
|
||||||
&:hover {
|
&:hover {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.bp3-intent-danger & {
|
.bp4-intent-danger & {
|
||||||
border-color: #db3737;
|
border-color: #db3737;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -2,5 +2,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
export function MenuItemLabel({ text }) {
|
export function MenuItemLabel({ text }) {
|
||||||
return <span class="bp3-menu-item-labeler">{text}</span>;
|
return <span class="bp4-menu-item-labeler">{text}</span>;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,16 +18,16 @@ const FormTopBarRoot = styled(Navbar)`
|
|||||||
height: 35px;
|
height: 35px;
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
|
|
||||||
.bp3-navbar-group {
|
.bp4-navbar-group {
|
||||||
height: 35px;
|
height: 35px;
|
||||||
}
|
}
|
||||||
.bp3-navbar-divider {
|
.bp4-navbar-divider {
|
||||||
border-left-color: #d2dce2;
|
border-left-color: #d2dce2;
|
||||||
}
|
}
|
||||||
.bp3-skeleton {
|
.bp4-skeleton {
|
||||||
max-height: 10px;
|
max-height: 10px;
|
||||||
}
|
}
|
||||||
.bp3-button {
|
.bp4-button {
|
||||||
&:hover {
|
&:hover {
|
||||||
background: rgba(167, 182, 194, 0.12);
|
background: rgba(167, 182, 194, 0.12);
|
||||||
color: #32304a;
|
color: #32304a;
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
|
||||||
export const For = ({ render, of }) =>
|
export const For = ({ render, of }) =>
|
||||||
|
|||||||
@@ -22,12 +22,12 @@ export function MakeJournalFormFooterLeft() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const DescriptionFormGroup = styled(FFormGroup)`
|
const DescriptionFormGroup = styled(FFormGroup)`
|
||||||
&.bp3-form-group {
|
&.bp4-form-group {
|
||||||
.bp3-label {
|
.bp4-label {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
.bp3-form-content {
|
.bp4-form-content {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
import { Formik } from 'formik';
|
import { Formik } from 'formik';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// @ts-nocheck
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import { Spinner } from '@blueprintjs/core';
|
import { Spinner } from '@blueprintjs/core';
|
||||||
@@ -39,7 +40,7 @@ export const AuthInsiderCopyright = styled.div`
|
|||||||
color: #666;
|
color: #666;
|
||||||
margin-top: 1.2rem;
|
margin-top: 1.2rem;
|
||||||
|
|
||||||
.bp3-icon-bigcapital {
|
.bp4-icon-bigcapital {
|
||||||
svg {
|
svg {
|
||||||
path {
|
path {
|
||||||
fill: #a3a3a3;
|
fill: #a3a3a3;
|
||||||
@@ -65,11 +66,11 @@ export const AuthFooterLink = styled.p`
|
|||||||
export const AuthSubmitButton = styled(Button)`
|
export const AuthSubmitButton = styled(Button)`
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
|
||||||
&.bp3-intent-primary {
|
&.bp4-intent-primary {
|
||||||
background-color: #0052cc;
|
background-color: #0052cc;
|
||||||
|
|
||||||
&:disabled,
|
&:disabled,
|
||||||
&.bp3-disabled {
|
&.bp4-disabled {
|
||||||
background-color: rgba(0, 82, 204, 0.4);
|
background-color: rgba(0, 82, 204, 0.4);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -178,7 +178,7 @@ const AccountSwitchItemUpdatedAt = styled.div`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const AccountSwitchButtonBase = styled(Button)`
|
const AccountSwitchButtonBase = styled(Button)`
|
||||||
.bp3-button-text {
|
.bp4-button-text {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ export const ItemManuTransaction = ({ onChange }) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const ItemSwitchButton = styled(Button)`
|
const ItemSwitchButton = styled(Button)`
|
||||||
.bp3-button-text {
|
.bp4-button-text {
|
||||||
display: flex;
|
display: flex;
|
||||||
color: #727983;
|
color: #727983;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
import intl from 'react-intl-universal';
|
import intl from 'react-intl-universal';
|
||||||
import { defaultTo } from 'lodash';
|
import { defaultTo } from 'lodash';
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
|
|
||||||
import { CommercialDocBox } from '@/components';
|
import { CommercialDocBox } from '@/components';
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
|
|
||||||
import { Card } from '@/components';
|
import { Card } from '@/components';
|
||||||
|
|||||||
@@ -20,12 +20,12 @@ export function ExpenseFormFooterLeft() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
const DescriptionFormGroup = styled(FFormGroup)`
|
const DescriptionFormGroup = styled(FFormGroup)`
|
||||||
&.bp3-form-group {
|
&.bp4-form-group {
|
||||||
.bp3-label {
|
.bp4-label {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
.bp3-form-content {
|
.bp4-form-content {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ export default compose(
|
|||||||
)(APAgingSummaryHeader);
|
)(APAgingSummaryHeader);
|
||||||
|
|
||||||
const APAgingDrawerHeader = styled(FinancialStatementHeader)`
|
const APAgingDrawerHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 520px;
|
max-height: 520px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -14,12 +14,11 @@ import classNames from 'classnames';
|
|||||||
|
|
||||||
import NumberFormatDropdown from '@/components/NumberFormatDropdown';
|
import NumberFormatDropdown from '@/components/NumberFormatDropdown';
|
||||||
|
|
||||||
import { safeInvoke } from '@blueprintjs/core/lib/esm/common/utils';
|
|
||||||
import { useARAgingSummaryContext } from './ARAgingSummaryProvider';
|
import { useARAgingSummaryContext } from './ARAgingSummaryProvider';
|
||||||
import withARAgingSummaryActions from './withARAgingSummaryActions';
|
import withARAgingSummaryActions from './withARAgingSummaryActions';
|
||||||
import withARAgingSummary from './withARAgingSummary';
|
import withARAgingSummary from './withARAgingSummary';
|
||||||
|
|
||||||
import { compose } from '@/utils';
|
import { compose, safeInvoke } from '@/utils';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A/R Aging summary sheet - Actions bar.
|
* A/R Aging summary sheet - Actions bar.
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ export default compose(
|
|||||||
)(ARAgingSummaryHeader);
|
)(ARAgingSummaryHeader);
|
||||||
|
|
||||||
const ARAgingDrawerHeader = styled(FinancialStatementHeader)`
|
const ARAgingDrawerHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 520px;
|
max-height: 520px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -125,7 +125,7 @@ export default compose(
|
|||||||
)(BalanceSheetHeader);
|
)(BalanceSheetHeader);
|
||||||
|
|
||||||
const BalanceSheetFinancialHeader = styled(FinancialStatementHeader)`
|
const BalanceSheetFinancialHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 520px;
|
max-height: 520px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -159,7 +159,7 @@ export default function BalanceSheetHeaderComparisonPanal() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const BalanceSheetComparisonWrap = styled.div`
|
const BalanceSheetComparisonWrap = styled.div`
|
||||||
.bp3-form-group {
|
.bp4-form-group {
|
||||||
margin-bottom: 3px;
|
margin-bottom: 3px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
|
|
||||||
import { Row, Col } from '@/components';
|
import { Row, Col } from '@/components';
|
||||||
import FinancialStatementDateRange from '../FinancialStatementDateRange';
|
import FinancialStatementDateRange from '../FinancialStatementDateRange';
|
||||||
import FinancialStatementsFilter from '../FinancialStatementsFilter';
|
import FinancialStatementsFilter from '../FinancialStatementsFilter';
|
||||||
|
|||||||
@@ -44,6 +44,7 @@ export default function CashFlowStatementTable({
|
|||||||
expandable={true}
|
expandable={true}
|
||||||
expanded={expandedRows}
|
expanded={expandedRows}
|
||||||
expandToggleColumn={1}
|
expandToggleColumn={1}
|
||||||
|
sticky={true}
|
||||||
expandColumnSpace={0.8}
|
expandColumnSpace={0.8}
|
||||||
styleName={TableStyle.Constrant}
|
styleName={TableStyle.Constrant}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
import {
|
import {
|
||||||
NavbarGroup,
|
NavbarGroup,
|
||||||
Button,
|
Button,
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
import { FastField } from 'formik';
|
import { FastField } from 'formik';
|
||||||
import { DateInput } from '@blueprintjs/datetime';
|
import { DateInput } from '@blueprintjs/datetime';
|
||||||
import { FormGroup, Position, Checkbox } from '@blueprintjs/core';
|
import { FormGroup, Position, Checkbox } from '@blueprintjs/core';
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ export default compose(
|
|||||||
)(CustomersBalanceSummaryHeader);
|
)(CustomersBalanceSummaryHeader);
|
||||||
|
|
||||||
const CustomerBalanceDrawerHeader = styled(FinancialStatementHeader)`
|
const CustomerBalanceDrawerHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 450px;
|
max-height: 450px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ export default function CustomersBalanceSummaryTable({
|
|||||||
data={table.data}
|
data={table.data}
|
||||||
rowClassNames={tableRowTypesToClassnames}
|
rowClassNames={tableRowTypesToClassnames}
|
||||||
noInitialFetch={true}
|
noInitialFetch={true}
|
||||||
|
sticky={true}
|
||||||
styleName={TableStyle.Constrant}
|
styleName={TableStyle.Constrant}
|
||||||
/>
|
/>
|
||||||
</FinancialSheet>
|
</FinancialSheet>
|
||||||
|
|||||||
@@ -101,7 +101,7 @@ export default compose(
|
|||||||
)(CustomersTransactionsHeader);
|
)(CustomersTransactionsHeader);
|
||||||
|
|
||||||
const CustomerTransactionsDrawerHeader = styled(FinancialStatementHeader)`
|
const CustomerTransactionsDrawerHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 450px;
|
max-height: 450px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -47,6 +47,7 @@ export default function CustomersTransactionsTable({
|
|||||||
noInitialFetch={true}
|
noInitialFetch={true}
|
||||||
expandable={true}
|
expandable={true}
|
||||||
expanded={expandedRows}
|
expanded={expandedRows}
|
||||||
|
sticky={true}
|
||||||
expandToggleColumn={1}
|
expandToggleColumn={1}
|
||||||
expandColumnSpace={0.8}
|
expandColumnSpace={0.8}
|
||||||
styleName={TableStyle.Constrant}
|
styleName={TableStyle.Constrant}
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ export default function FinancialStatementsFilter({
|
|||||||
{({ form: { setFieldValue }, field: { value } }) => (
|
{({ form: { setFieldValue }, field: { value } }) => (
|
||||||
<FormGroup
|
<FormGroup
|
||||||
label={label}
|
label={label}
|
||||||
className="form-group--select-list bp3-fill"
|
className="form-group--select-list bp4-fill"
|
||||||
inline={false}
|
inline={false}
|
||||||
>
|
>
|
||||||
<ListSelect
|
<ListSelect
|
||||||
|
|||||||
@@ -120,7 +120,7 @@ export default compose(
|
|||||||
)(GeneralLedgerHeader);
|
)(GeneralLedgerHeader);
|
||||||
|
|
||||||
const GeneralLedgerDrawerHeader = styled(FinancialStatementHeader)`
|
const GeneralLedgerDrawerHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 520px;
|
max-height: 520px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -119,7 +119,7 @@ export default compose(
|
|||||||
)(InventoryItemDetailsHeader);
|
)(InventoryItemDetailsHeader);
|
||||||
|
|
||||||
const InventoryItemDetailsDrawerHeader = styled(FinancialStatementHeader)`
|
const InventoryItemDetailsDrawerHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 400px;
|
max-height: 400px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ export function InventoryItemDetailsTable({
|
|||||||
expanded={expandedRows}
|
expanded={expandedRows}
|
||||||
expandToggleColumn={1}
|
expandToggleColumn={1}
|
||||||
expandColumnSpace={0.8}
|
expandColumnSpace={0.8}
|
||||||
|
sticky={true}
|
||||||
styleName={TableStyle.Constrant}
|
styleName={TableStyle.Constrant}
|
||||||
/>
|
/>
|
||||||
</FinancialSheet>
|
</FinancialSheet>
|
||||||
|
|||||||
@@ -117,7 +117,7 @@ export default compose(
|
|||||||
)(InventoryValuationHeader);
|
)(InventoryValuationHeader);
|
||||||
|
|
||||||
const InventoryValuationDrawerHeader = styled(FinancialStatementHeader)`
|
const InventoryValuationDrawerHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 450px;
|
max-height: 450px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ export default compose(
|
|||||||
)(JournalHeader);
|
)(JournalHeader);
|
||||||
|
|
||||||
const JournalDrawerHeader = styled(FinancialStatementHeader)`
|
const JournalDrawerHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 350px;
|
max-height: 350px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -114,7 +114,7 @@ export default R.compose(
|
|||||||
)(ProfitLossHeader);
|
)(ProfitLossHeader);
|
||||||
|
|
||||||
const ProfitLossSheetHeader = styled(FinancialStatementHeader)`
|
const ProfitLossSheetHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 520px;
|
max-height: 520px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -191,7 +191,7 @@ export default function ProfitLossSheetHeaderComparisonPanel() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const ProfitLossSheetComparisonWrap = styled.div`
|
const ProfitLossSheetComparisonWrap = styled.div`
|
||||||
.bp3-form-group {
|
.bp4-form-group {
|
||||||
margin-bottom: 3px;
|
margin-bottom: 3px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -109,7 +109,7 @@ export default compose(
|
|||||||
)(ProjectProfitabilitySummaryHeader);
|
)(ProjectProfitabilitySummaryHeader);
|
||||||
|
|
||||||
const ProjectProfitabilityDrawerHeader = styled(FinancialStatementHeader)`
|
const ProjectProfitabilityDrawerHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 520px;
|
max-height: 520px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ export default compose(
|
|||||||
)(PurchasesByItemsHeader);
|
)(PurchasesByItemsHeader);
|
||||||
|
|
||||||
const PurchasesByItemsDrawerHeader = styled(FinancialStatementHeader)`
|
const PurchasesByItemsDrawerHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 450px;
|
max-height: 450px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -105,7 +105,7 @@ export default compose(
|
|||||||
)(SalesByItemsHeader);
|
)(SalesByItemsHeader);
|
||||||
|
|
||||||
const SalesByItemsDrawerHeader = styled(FinancialStatementHeader)`
|
const SalesByItemsDrawerHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 450px;
|
max-height: 450px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ export default compose(
|
|||||||
)(SalesTaxLiabilitySummaryHeader);
|
)(SalesTaxLiabilitySummaryHeader);
|
||||||
|
|
||||||
const SalesTaxSummaryFinancialHeader = styled(FinancialStatementHeader)`
|
const SalesTaxSummaryFinancialHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 320px;
|
max-height: 320px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ export default function SelectsListColumnsBy(props) {
|
|||||||
{({ form, field: { value }, meta: { error, touched } }) => (
|
{({ form, field: { value }, meta: { error, touched } }) => (
|
||||||
<FormGroup
|
<FormGroup
|
||||||
label={<T id={'display_report_columns'} />}
|
label={<T id={'display_report_columns'} />}
|
||||||
className="form-group-display-columns-by form-group--select-list bp3-fill"
|
className="form-group-display-columns-by form-group--select-list bp4-fill"
|
||||||
inline={false}
|
inline={false}
|
||||||
{...formGroupProps}
|
{...formGroupProps}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -127,7 +127,7 @@ export default compose(
|
|||||||
)(TrialBalanceSheetHeader);
|
)(TrialBalanceSheetHeader);
|
||||||
|
|
||||||
const TrialBalanceSheetDrawerHeader = styled(FinancialStatementHeader)`
|
const TrialBalanceSheetDrawerHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 450px;
|
max-height: 450px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -102,7 +102,7 @@ export default compose(
|
|||||||
)(VendorsBalanceSummaryHeader);
|
)(VendorsBalanceSummaryHeader);
|
||||||
|
|
||||||
const VendorBalanceDrawerHeader = styled(FinancialStatementHeader)`
|
const VendorBalanceDrawerHeader = styled(FinancialStatementHeader)`
|
||||||
.bp3-drawer {
|
.bp4-drawer {
|
||||||
max-height: 450px;
|
max-height: 450px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ export default function VendorsBalanceSummaryTable({
|
|||||||
data={table.data}
|
data={table.data}
|
||||||
rowClassNames={tableRowTypesToClassnames}
|
rowClassNames={tableRowTypesToClassnames}
|
||||||
noInitialFetch={true}
|
noInitialFetch={true}
|
||||||
|
sticky={true}
|
||||||
styleName={TableStyle.Constrant}
|
styleName={TableStyle.Constrant}
|
||||||
/>
|
/>
|
||||||
</VendorBalanceFinancialSheet>
|
</VendorBalanceFinancialSheet>
|
||||||
|
|||||||
@@ -53,6 +53,7 @@ export default function VendorsTransactionsTable({
|
|||||||
expanded={expandedRows}
|
expanded={expandedRows}
|
||||||
expandToggleColumn={1}
|
expandToggleColumn={1}
|
||||||
expandColumnSpace={0.8}
|
expandColumnSpace={0.8}
|
||||||
|
sticky={true}
|
||||||
styleName={TableStyle.Constrant}
|
styleName={TableStyle.Constrant}
|
||||||
/>
|
/>
|
||||||
</FinancialSheet>
|
</FinancialSheet>
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
import {
|
import {
|
||||||
NavbarGroup,
|
NavbarGroup,
|
||||||
NavbarDivider,
|
NavbarDivider,
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ const BranchesTable = styled(DataTable)`
|
|||||||
min-height: 38px;
|
min-height: 38px;
|
||||||
|
|
||||||
.td.td-name {
|
.td.td-name {
|
||||||
.bp3-icon {
|
.bp4-icon {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: 2px;
|
margin-left: 2px;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
|
|||||||
@@ -221,10 +221,10 @@ const CardFooterActions = styled.div`
|
|||||||
border-top: 1px solid #e0e7ea;
|
border-top: 1px solid #e0e7ea;
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
|
|
||||||
.bp3-button {
|
.bp4-button {
|
||||||
min-width: 70px;
|
min-width: 70px;
|
||||||
|
|
||||||
+ .bp3-button {
|
+ .bp4-button {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import React from 'react';
|
|
||||||
import ContentLoader from 'react-content-loader';
|
import ContentLoader from 'react-content-loader';
|
||||||
|
|
||||||
export default function PreferencesPageLoader(props) {
|
export default function PreferencesPageLoader(props) {
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ const RoleFormFloatingActionsRoot = styled.div`
|
|||||||
border-top: 1px solid #d2dde2;
|
border-top: 1px solid #d2dde2;
|
||||||
box-shadow: 0px -1px 4px 0px rgb(0 0 0 / 5%);
|
box-shadow: 0px -1px 4px 0px rgb(0 0 0 / 5%);
|
||||||
|
|
||||||
.bp3-button {
|
.bp4-button {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -374,7 +374,7 @@ export const RolesPermissionList = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const PermissionCheckbox = styled(Checkbox)`
|
const PermissionCheckbox = styled(Checkbox)`
|
||||||
&.bp3-control.bp3-checkbox .bp3-control-indicator {
|
&.bp4-control.bp4-checkbox .bp4-control-indicator {
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
border-color: #555;
|
border-color: #555;
|
||||||
|
|
||||||
@@ -454,7 +454,7 @@ const ModulePermissionsTableRoot = styled.table`
|
|||||||
}
|
}
|
||||||
|
|
||||||
tr td {
|
tr td {
|
||||||
.bp3-control.bp3-inline {
|
.bp4-control.bp4-inline {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -150,7 +150,7 @@ export const WarehouseTitle = styled.div`
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
|
|
||||||
.bp3-icon {
|
.bp4-icon {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
margin-left: 2px;
|
margin-left: 2px;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
|
|||||||
@@ -40,17 +40,17 @@ function EstimatedExpenseFormDialog({
|
|||||||
export default compose(withDialogRedux())(EstimatedExpenseFormDialog);
|
export default compose(withDialogRedux())(EstimatedExpenseFormDialog);
|
||||||
|
|
||||||
const EstimateExpenseFormDialogRoot = styled(Dialog)`
|
const EstimateExpenseFormDialogRoot = styled(Dialog)`
|
||||||
.bp3-dialog-body {
|
.bp4-dialog-body {
|
||||||
.bp3-form-group {
|
.bp4-form-group {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
|
|
||||||
label.bp3-label {
|
label.bp4-label {
|
||||||
margin-bottom: 3px;
|
margin-bottom: 3px;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.bp3-dialog-footer {
|
.bp4-dialog-footer {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ function ProjectEntriesFormFloatingActions({
|
|||||||
export default compose(withDialogActions)(ProjectEntriesFormFloatingActions);
|
export default compose(withDialogActions)(ProjectEntriesFormFloatingActions);
|
||||||
|
|
||||||
const SaveButton = styled(Button)`
|
const SaveButton = styled(Button)`
|
||||||
&.bp3-button {
|
&.bp4-button {
|
||||||
margin-left: 0px;
|
margin-left: 0px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -102,8 +102,8 @@ const BillableEntryFooter = styled.div`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const BillableEntryButton = styled(Button)`
|
const BillableEntryButton = styled(Button)`
|
||||||
&.bp3-button.bp3-small,
|
&.bp4-button.bp4-small,
|
||||||
&.bp3-button:not([class*='bp3-intent-']):not(.bp3-minimal).bp3-small {
|
&.bp4-button:not([class*='bp4-intent-']):not(.bp4-minimal).bp4-small {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: #2172ed;
|
color: #2172ed;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
|
|||||||
@@ -41,18 +41,18 @@ function ProjectBillableEntriesFormDialog({
|
|||||||
export default compose(withDialogRedux())(ProjectBillableEntriesFormDialog);
|
export default compose(withDialogRedux())(ProjectBillableEntriesFormDialog);
|
||||||
|
|
||||||
const ProjectBillableEntriesFormDialogRoot = styled(Dialog)`
|
const ProjectBillableEntriesFormDialogRoot = styled(Dialog)`
|
||||||
.bp3-dialog-body {
|
.bp4-dialog-body {
|
||||||
.bp3-form-group {
|
.bp4-form-group {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
|
|
||||||
label.bp3-label {
|
label.bp4-label {
|
||||||
margin-bottom: 3px;
|
margin-bottom: 3px;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.bp3-dialog-footer {
|
.bp4-dialog-footer {
|
||||||
.bp3-dialog-footer-actions {
|
.bp4-dialog-footer-actions {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,8 +48,8 @@ export default function ProjectDetailTabs() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const ProjectTabsContent = styled.div`
|
const ProjectTabsContent = styled.div`
|
||||||
.bp3-tabs {
|
.bp4-tabs {
|
||||||
.bp3-tab-list {
|
.bp4-tab-list {
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-bottom: 1px solid #d2dce2;
|
border-bottom: 1px solid #d2dce2;
|
||||||
@@ -58,7 +58,7 @@ const ProjectTabsContent = styled.div`
|
|||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.bp3-large > .bp3-tab {
|
&.bp4-large > .bp4-tab {
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
color: #7f8596;
|
color: #7f8596;
|
||||||
@@ -69,12 +69,12 @@ const ProjectTabsContent = styled.div`
|
|||||||
color: #0052cc;
|
color: #0052cc;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.bp3-tab-indicator-wrapper .bp3-tab-indicator {
|
.bp4-tab-indicator-wrapper .bp4-tab-indicator {
|
||||||
height: 2px;
|
height: 2px;
|
||||||
bottom: -2px;
|
bottom: -2px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.bp3-tab-panel {
|
.bp4-tab-panel {
|
||||||
/* margin: 20px 32px; */
|
/* margin: 20px 32px; */
|
||||||
/* margin: 20px; */
|
/* margin: 20px; */
|
||||||
/* margin-top: 20px;
|
/* margin-top: 20px;
|
||||||
|
|||||||
@@ -109,13 +109,13 @@ const TaskTimeFull = styled.div`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const TaskProgressBar = styled(ProgressBar)`
|
const TaskProgressBar = styled(ProgressBar)`
|
||||||
&.bp3-progress-bar {
|
&.bp4-progress-bar {
|
||||||
display: block;
|
display: block;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
max-width: 150px;
|
max-width: 150px;
|
||||||
&,
|
&,
|
||||||
.bp3-progress-meter {
|
.bp4-progress-meter {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -76,10 +76,10 @@ export const FinancialCardText = styled.div`
|
|||||||
color: #7b8195;
|
color: #7b8195;
|
||||||
`;
|
`;
|
||||||
export const FinancialCardProgressBar = styled(ProgressBar)`
|
export const FinancialCardProgressBar = styled(ProgressBar)`
|
||||||
&.bp3-progress-bar {
|
&.bp4-progress-bar {
|
||||||
height: 3px;
|
height: 3px;
|
||||||
&,
|
&,
|
||||||
.bp3-progress-meter {
|
.bp4-progress-meter {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,17 +40,17 @@ function ProjectExpenseFormDialog({
|
|||||||
export default compose(withDialogRedux())(ProjectExpenseFormDialog);
|
export default compose(withDialogRedux())(ProjectExpenseFormDialog);
|
||||||
|
|
||||||
const ProjectExpenseFormDialogRoot = styled(Dialog)`
|
const ProjectExpenseFormDialogRoot = styled(Dialog)`
|
||||||
.bp3-dialog-body {
|
.bp4-dialog-body {
|
||||||
.bp3-form-group {
|
.bp4-form-group {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
|
|
||||||
label.bp3-label {
|
label.bp4-label {
|
||||||
margin-bottom: 3px;
|
margin-bottom: 3px;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.bp3-dialog-footer {
|
.bp4-dialog-footer {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -43,17 +43,17 @@ function ProjectFormDialog({
|
|||||||
export default compose(withDialogRedux())(ProjectFormDialog);
|
export default compose(withDialogRedux())(ProjectFormDialog);
|
||||||
|
|
||||||
const ProjectFormDialogRoot = styled(Dialog)`
|
const ProjectFormDialogRoot = styled(Dialog)`
|
||||||
.bp3-dialog-body {
|
.bp4-dialog-body {
|
||||||
.bp3-form-group {
|
.bp4-form-group {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
||||||
label.bp3-label {
|
label.bp4-label {
|
||||||
margin-bottom: 3px;
|
margin-bottom: 3px;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.bp3-dialog-footer {
|
.bp4-dialog-footer {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -34,22 +34,22 @@ function ProjectInvoicingFormDialog({ dialogName, payload: {}, isOpen }) {
|
|||||||
export default compose(withDialogRedux())(ProjectInvoicingFormDialog);
|
export default compose(withDialogRedux())(ProjectInvoicingFormDialog);
|
||||||
|
|
||||||
const ProjectInvoicingFormDialogRoot = styled(Dialog)`
|
const ProjectInvoicingFormDialogRoot = styled(Dialog)`
|
||||||
.bp3-dialog-body {
|
.bp4-dialog-body {
|
||||||
.bp3-form-group {
|
.bp4-form-group {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
|
|
||||||
label.bp3-label {
|
label.bp4-label {
|
||||||
margin-bottom: 3px;
|
margin-bottom: 3px;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
label.bp3-control.bp3-checkbox {
|
label.bp4-control.bp4-checkbox {
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.bp3-dialog-footer {
|
.bp4-dialog-footer {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -113,7 +113,7 @@ function ProjectTimeEntryFormFields() {
|
|||||||
export default ProjectTimeEntryFormFields;
|
export default ProjectTimeEntryFormFields;
|
||||||
|
|
||||||
const DurationInputGroup = styled(FInputGroup)`
|
const DurationInputGroup = styled(FInputGroup)`
|
||||||
.bp3-input {
|
.bp4-input {
|
||||||
width: 150px;
|
width: 150px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -47,18 +47,18 @@ function ProjectTimeEntryFormDialog({
|
|||||||
export default compose(withDialogRedux())(ProjectTimeEntryFormDialog);
|
export default compose(withDialogRedux())(ProjectTimeEntryFormDialog);
|
||||||
|
|
||||||
const ProjectTimeEntryFormDialogRoot = styled(Dialog)`
|
const ProjectTimeEntryFormDialogRoot = styled(Dialog)`
|
||||||
.bp3-dialog-body {
|
.bp4-dialog-body {
|
||||||
.bp3-form-group {
|
.bp4-form-group {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
||||||
label.bp3-label {
|
label.bp4-label {
|
||||||
margin-bottom: 3px;
|
margin-bottom: 3px;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.form-group {
|
.form-group {
|
||||||
&--description {
|
&--description {
|
||||||
.bp3-form-content {
|
.bp4-form-content {
|
||||||
textarea {
|
textarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
@@ -68,7 +68,7 @@ const ProjectTimeEntryFormDialogRoot = styled(Dialog)`
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.bp3-dialog-footer {
|
.bp4-dialog-footer {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -195,13 +195,13 @@ const ProjectStatusTaskAmount = styled.div`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const ProjectProgressBar = styled(ProgressBar)`
|
const ProjectProgressBar = styled(ProgressBar)`
|
||||||
&.bp3-progress-bar {
|
&.bp4-progress-bar {
|
||||||
display: block;
|
display: block;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
height: 3px;
|
height: 3px;
|
||||||
max-width: 110px;
|
max-width: 110px;
|
||||||
&,
|
&,
|
||||||
.bp3-progress-meter {
|
.bp4-progress-meter {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,12 +22,12 @@ export function BillFormFooterLeft() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const TermsConditsFormGroup = styled(FFormGroup)`
|
const TermsConditsFormGroup = styled(FFormGroup)`
|
||||||
&.bp3-form-group {
|
&.bp4-form-group {
|
||||||
.bp3-label {
|
.bp4-label {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
.bp3-form-content {
|
.bp4-form-content {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ export function BillUniversalSearchItem(
|
|||||||
text={
|
text={
|
||||||
<div>
|
<div>
|
||||||
<div>{item.text}</div>
|
<div>{item.text}</div>
|
||||||
<span class="bp3-text-muted">
|
<span class="bp4-text-muted">
|
||||||
{item.reference.bill_number}{' '}
|
{item.reference.bill_number}{' '}
|
||||||
<Icon icon={'caret-right-16'} iconSize={16} />
|
<Icon icon={'caret-right-16'} iconSize={16} />
|
||||||
{item.reference.formatted_bill_date}
|
{item.reference.formatted_bill_date}
|
||||||
|
|||||||
@@ -22,12 +22,12 @@ export function VendorCreditNoteFormFooterLeft() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const TermsConditsFormGroup = styled(FFormGroup)`
|
const TermsConditsFormGroup = styled(FFormGroup)`
|
||||||
&.bp3-form-group {
|
&.bp4-form-group {
|
||||||
.bp3-label {
|
.bp4-label {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
.bp3-form-content {
|
.bp4-form-content {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ export function VendorCreditUniversalSearchItem(
|
|||||||
text={
|
text={
|
||||||
<div>
|
<div>
|
||||||
<div>{item.text}</div>
|
<div>{item.text}</div>
|
||||||
<span class="bp3-text-muted">
|
<span class="bp4-text-muted">
|
||||||
{item.reference.vendor_credit_number}{' '}
|
{item.reference.vendor_credit_number}{' '}
|
||||||
<Icon icon={'caret-right-16'} iconSize={16} />
|
<Icon icon={'caret-right-16'} iconSize={16} />
|
||||||
{item.reference.formatted_vendor_credit_date}
|
{item.reference.formatted_vendor_credit_date}
|
||||||
|
|||||||
@@ -28,14 +28,14 @@ export function PaymentMadeFormFooterLeft() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const InternalNoteFormGroup = styled(FFormGroup)`
|
const InternalNoteFormGroup = styled(FFormGroup)`
|
||||||
&.bp3-form-group {
|
&.bp4-form-group {
|
||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
|
|
||||||
.bp3-label {
|
.bp4-label {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
.bp3-form-content {
|
.bp4-form-content {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ export function PaymentMadeUniversalSearchItem(
|
|||||||
<div>
|
<div>
|
||||||
<div>{highlightText(text, query)}</div>
|
<div>{highlightText(text, query)}</div>
|
||||||
|
|
||||||
<span class="bp3-text-muted">
|
<span class="bp4-text-muted">
|
||||||
{reference.payment_number && (
|
{reference.payment_number && (
|
||||||
<>
|
<>
|
||||||
{highlightText(reference.payment_number, query)}
|
{highlightText(reference.payment_number, query)}
|
||||||
|
|||||||
@@ -34,26 +34,26 @@ export function CreditNoteFormFooterLeft() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const CreditNoteMsgFormGroup = styled(FFormGroup)`
|
const CreditNoteMsgFormGroup = styled(FFormGroup)`
|
||||||
&.bp3-form-group {
|
&.bp4-form-group {
|
||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
|
|
||||||
.bp3-label {
|
.bp4-label {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
.bp3-form-content {
|
.bp4-form-content {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const TermsConditsFormGroup = styled(FFormGroup)`
|
const TermsConditsFormGroup = styled(FFormGroup)`
|
||||||
&.bp3-form-group {
|
&.bp4-form-group {
|
||||||
.bp3-label {
|
.bp4-label {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
.bp3-form-content {
|
.bp4-form-content {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ export function CreditNoteUniversalSearchItem(
|
|||||||
text={
|
text={
|
||||||
<div>
|
<div>
|
||||||
<div>{item.text}</div>
|
<div>{item.text}</div>
|
||||||
<span class="bp3-text-muted">
|
<span class="bp4-text-muted">
|
||||||
{item.reference.credit_note_number}{' '}
|
{item.reference.credit_note_number}{' '}
|
||||||
<Icon icon={'caret-right-16'} iconSize={16} />
|
<Icon icon={'caret-right-16'} iconSize={16} />
|
||||||
{item.reference.formatted_credit_note_date}
|
{item.reference.formatted_credit_note_date}
|
||||||
|
|||||||
@@ -34,26 +34,26 @@ export function EstimateFormFooterLeft() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const EstimateMsgFormGroup = styled(FFormGroup)`
|
const EstimateMsgFormGroup = styled(FFormGroup)`
|
||||||
&.bp3-form-group {
|
&.bp4-form-group {
|
||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
|
|
||||||
.bp3-label {
|
.bp4-label {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
.bp3-form-content {
|
.bp4-form-content {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const TermsConditsFormGroup = styled(FFormGroup)`
|
const TermsConditsFormGroup = styled(FFormGroup)`
|
||||||
&.bp3-form-group {
|
&.bp4-form-group {
|
||||||
.bp3-label {
|
.bp4-label {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
}
|
}
|
||||||
.bp3-form-content {
|
.bp4-form-content {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ export function EstimateUniversalSearchItem(
|
|||||||
text={
|
text={
|
||||||
<div>
|
<div>
|
||||||
<div>{item.text}</div>
|
<div>{item.text}</div>
|
||||||
<span class="bp3-text-muted">
|
<span class="bp4-text-muted">
|
||||||
{item.reference.estimate_number}{' '}
|
{item.reference.estimate_number}{' '}
|
||||||
<Icon icon={'caret-right-16'} iconSize={16} />
|
<Icon icon={'caret-right-16'} iconSize={16} />
|
||||||
{item.reference.formatted_estimate_date}
|
{item.reference.formatted_estimate_date}
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ const InclusiveFormGroup = styled(FFormGroup)`
|
|||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
|
||||||
&.bp3-form-group.bp3-inline label.bp3-label {
|
&.bp4-form-group.bp4-inline label.bp4-label {
|
||||||
line-height: 1.25;
|
line-height: 1.25;
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
@@ -68,7 +68,7 @@ const InclusiveFormGroup = styled(FFormGroup)`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const InclusiveSelect = styled(FSelect)`
|
const InclusiveSelect = styled(FSelect)`
|
||||||
.bp3-button {
|
.bp4-button {
|
||||||
padding-right: 24px;
|
padding-right: 24px;
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user