Skip to content

Commit

Permalink
Release 7.0.0 (#105)
Browse files Browse the repository at this point in the history
* prepare next development version 6.0.1-SNAPSHOT

* Fix LineUp data type icons in comparison

The issue is present since we use Font Awesome from tdp_core for LineUp and disable the lu-font.

This change imports the lu-font from the LineUp assets.

It also fixes the icons for the numerical data type.

* Prepare github changes

* Update README.md

* Remove circleci

* prepare next dev version

* Remove outdated styles for link with Font Awesome 4 icon (#100)

Remove outdated styles for link w/ Font Awesome 4 icon

I couldn't find any TypeScript code or link in the UI.

* Update fontawesome

* Update .yo-rc.json

* Merge visyn_scripts

* prepare release 7.0.0

* fix lint

* fix lint

* fix lint

Co-authored-by: Holger Stitz <[email protected]>
Co-authored-by: anita-steiner <>
Co-authored-by: Anita Steiner <[email protected]>
  • Loading branch information
3 people authored Sep 8, 2022
1 parent b43eec1 commit d8e3213
Show file tree
Hide file tree
Showing 158 changed files with 974 additions and 6,496 deletions.
72 changes: 1 addition & 71 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,71 +1 @@
module.exports = {
root: true,
extends: [
"airbnb",
"airbnb-typescript",
"airbnb/hooks",
"eslint:recommended",
"plugin:import/recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended",
"plugin:prettier/recommended"
],
plugins: ["react", "@typescript-eslint", "jest"],
ignorePatterns: ["*.js"],
env: {
browser: true,
es6: true,
jest: true
},
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly",
},
parser: "@typescript-eslint/parser",
parserOptions: {
// Make sure eslint and VS Code use the same path for the tsconfig.json:
// https://github.com/typescript-eslint/typescript-eslint/issues/251
tsconfigRootDir: __dirname,
project: "./tsconfig.eslint.json"
},
rules: {
// Disables jsx-a11y https://github.com/import-js/eslint-plugin-import/blob/v2.25.4/docs/rules/no-webpack-loader-syntax.md
...Object.keys(require('eslint-plugin-jsx-a11y').rules).reduce((acc, rule) => { acc[`jsx-a11y/${rule}`] = 'off'; return acc }, {}),
"class-methods-use-this":"off",
"linebreak-style": "off",
"no-continue": "off",
"no-multi-assign": "warn",
"no-nested-ternary": "off",
"no-param-reassign": ["error", { "props": false }],
"no-return-assign": "warn",
"no-restricted-syntax": "off",
"no-plusplus": "off",
"no-prototype-builtins": "warn",
"no-minusminus": "off",
"no-underscore-dangle": "off",
"max-classes-per-file": "off",
"no-param-reassign": "warn",
"import/no-extraneous-dependencies": "off",
// Disable the following 2 lines because to allow webpack file-loaders syntax
"import/no-webpack-loader-syntax": "off",
"import/no-unresolved": "off",
"import/prefer-default-export": "off",
"import/order": "error",
"prefer-destructuring": ["warn", {"object": true, "array": false}],
"prefer-promise-reject-errors": "warn",
"prefer-spread": "warn",
"@typescript-eslint/ban-ts-comment": "warn",
"react/destructuring-assignment": "warn",
"react/jsx-props-no-spreading": "off",
"react/no-unused-class-component-methods": "warn",
"react/prop-types": "off",
"react/require-default-props": "off",
"react/static-property-placement": ["warn", "property assignment", {
childContextTypes: "static getter",
contextTypes: "static public field",
contextType: "static public field",
displayName: "static public field",
}]
}
};
module.exports = require('visyn_scripts/config/eslintrc.template')({ tsconfigRootDir: __dirname });
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,13 @@ node_modules/
/tests/**/*.map
*.css
*.log
package-lock.json
/dist/
/yarn.lock
# yarn
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
7 changes: 1 addition & 6 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1 @@
module.exports = {
"endOfLine": "auto",
"singleQuote": true,
"trailingComma": "all",
"printWidth": 160
};
module.exports = require('visyn_scripts/config/prettierrc.template')
783 changes: 783 additions & 0 deletions .yarn/releases/yarn-3.2.2.cjs

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
yarnPath: .yarn/releases/yarn-3.2.2.cjs
nodeLinker: node-modules
1 change: 0 additions & 1 deletion .yo-rc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"jquery"
],
"modules": [],
"entries": "./index.js",
"ignores": [],
"extensions": [],
"name": "tourdino",
Expand Down
30 changes: 0 additions & 30 deletions dist/app/TouringPanel.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion dist/app/TouringPanel.d.ts.map

This file was deleted.

135 changes: 0 additions & 135 deletions dist/app/TouringPanel.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/app/TouringPanel.js.map

This file was deleted.

2 changes: 0 additions & 2 deletions dist/app/index.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion dist/app/index.d.ts.map

This file was deleted.

2 changes: 0 additions & 2 deletions dist/app/index.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/app/index.js.map

This file was deleted.

Binary file removed dist/assets/colCmp.png
Binary file not shown.
Binary file removed dist/assets/rowCmp.png
Binary file not shown.
67 changes: 0 additions & 67 deletions dist/base/BaseUtils.d.ts

This file was deleted.

Loading

0 comments on commit d8e3213

Please sign in to comment.