-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(TypeaheadSelect): Add callback on clear selection (#10719) * fix(CodeEditor) resizeObserver resize loop (#10644) * fix(CodeEditor) resizeObserver resize loop * yarn * add debounce --------- Co-authored-by: Titani <[email protected]> * cherry pick fix(SimpleSelect,CheckboxSelect): Handle initial selection(s) * (Drag and drop): Updated example for multi list to use flex * docs(Table): add Editable Table example * fix(DragDrop): fix flexgrow type * feat(MultiTypeaheadSelect): Add MultiTypeaheadSelect to react-templates (#10757) * feat(MultiTypeaheadSelect): Add MultiTypeaheadSelect to react-templates * Update packages/react-templates/src/components/Select/MultiTypeaheadSelect.tsx Co-authored-by: kmcfaul <[email protected]> --------- Co-authored-by: Titani Labaj <[email protected]> Co-authored-by: kmcfaul <[email protected]> * fix(TypeaheadSelect): Correctly show the newly selected item on selection (#10792) * feat(TypeaheadSelect) Add creation options to TypeaheadSelect (#10802) * update MultiTypeaheadSelect to use label instead of chip * chore(deps): upgrade eslint-plugin-react to the latest (#10739) * chore(deps): upgrade `eslint-plugin-markdown` to the latest version (#10738) Signed-off-by: Jon Koops <[email protected]> * resolve merge conflicts * feat(eslint-plugin-patternfly-react): update rules for eslint v9 (#10743) * resolve conflicts for chore(deps): upgrade ESLint to the latest version * fix yarn lint issue * fix yarn lint issue * fix(TypeaheadSelect): Update input value only when appropriate (#10826) * fix lint errors and demo-app --------- Signed-off-by: Jon Koops <[email protected]> Co-authored-by: Jeff Phillips <[email protected]> Co-authored-by: Dominik Petřík <[email protected]> Co-authored-by: kmcfaul <[email protected]> Co-authored-by: Jon Koops <[email protected]>
- Loading branch information
1 parent
431a35e
commit 6c08c96
Showing
94 changed files
with
1,980 additions
and
647 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
/* eslint-disable no-console */ | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
|
||
const BASE_DIR = path.join(__dirname, '../packages/react-integration/cypress/integration'); | ||
const WORKER_NUM = +process.env['WORKER_NUM']; | ||
const WORKER_COUNT = +process.env['WORKER_COUNT']; | ||
const WORKER_NUM = +process.env.WORKER_NUM; | ||
const WORKER_COUNT = +process.env.WORKER_COUNT; | ||
|
||
const testFiles = fs.readdirSync(BASE_DIR) | ||
const testFiles = fs | ||
.readdirSync(BASE_DIR) | ||
.sort() | ||
.filter((_, i) => i % WORKER_COUNT === WORKER_NUM) | ||
.map(f => path.join(BASE_DIR, f)); | ||
.map((f) => path.join(BASE_DIR, f)); | ||
|
||
console.log(testFiles.join(' ')); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import markdown from 'eslint-plugin-markdown'; | ||
import patternflyReact from 'eslint-plugin-patternfly-react'; | ||
import react from 'eslint-plugin-react'; | ||
import tseslint from 'typescript-eslint'; | ||
|
||
export default [ | ||
{ | ||
ignores: ['.history/*'] | ||
}, | ||
...markdown.configs.recommended, | ||
{ | ||
plugins: { | ||
react, | ||
'patternfly-react': patternflyReact | ||
}, | ||
languageOptions: { | ||
parser: tseslint.parser | ||
}, | ||
settings: { | ||
react: { | ||
version: 'detect' | ||
} | ||
}, | ||
rules: { | ||
'eol-last': 'error', | ||
'spaced-comment': 'error', | ||
'no-unused-vars': 'off', | ||
'no-this-before-super': 'error', | ||
'patternfly-react/import-tokens-icons': 'error', | ||
'react/jsx-uses-react': 'error', | ||
'react/jsx-uses-vars': 'error', | ||
'react/no-unknown-property': 'error', | ||
'react/jsx-no-undef': 'error' | ||
} | ||
} | ||
]; |
Oops, something went wrong.