From 1abb8542d0c3bc880dc2e8aa0a93db902d0c909b Mon Sep 17 00:00:00 2001 From: Joachim Schuler Date: Wed, 23 Aug 2023 14:49:03 -0400 Subject: [PATCH 01/14] Badge --- packages/react-core/output.txt | 10 ++++ packages/react-core/package.json | 2 + .../AboutModal/AboutModalBoxContent.tsx | 2 +- .../react-core/src/components/Badge/Badge.tsx | 4 +- packages/react-core/tsconfig.json | 53 ++++++++++++++++--- 5 files changed, 63 insertions(+), 8 deletions(-) create mode 100644 packages/react-core/output.txt diff --git a/packages/react-core/output.txt b/packages/react-core/output.txt new file mode 100644 index 00000000000..7fa89103c18 --- /dev/null +++ b/packages/react-core/output.txt @@ -0,0 +1,10 @@ +2:28:40 PM - Projects in this build: + * ../react-styles/tsconfig.json + * tsconfig.json + +2:28:40 PM - Project '../react-styles/tsconfig.json' is up to date because newest input '../react-styles/src/index.ts' is older than oldest output '../react-styles/dist/esm/index.js.map' + +2:28:40 PM - Project 'tsconfig.json' is out of date because oldest output 'dist/esm/components/Badge/Badge.js' is older than newest input 'src/components/Badge/Badge.tsx' + +2:28:40 PM - Building project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'... + diff --git a/packages/react-core/package.json b/packages/react-core/package.json index 58d03e3e4fb..3d4e02939e2 100644 --- a/packages/react-core/package.json +++ b/packages/react-core/package.json @@ -60,6 +60,8 @@ "css": "^2.2.3", "fs-extra": "^11.1.1", "glob": "^7.1.2", + "preact": "^10.17.1", + "preact-compat": "^3.19.0", "rimraf": "^3.0.2", "rollup": "^3.21.5", "rollup-plugin-scss": "^4.0.0", diff --git a/packages/react-core/src/components/AboutModal/AboutModalBoxContent.tsx b/packages/react-core/src/components/AboutModal/AboutModalBoxContent.tsx index 0c37db076ca..e1c066d95d2 100644 --- a/packages/react-core/src/components/AboutModal/AboutModalBoxContent.tsx +++ b/packages/react-core/src/components/AboutModal/AboutModalBoxContent.tsx @@ -3,7 +3,7 @@ import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/AboutModalBox/about-modal-box'; import contentStyles from '@patternfly/react-styles/css/components/Content/content'; -export interface AboutModalBoxContentProps extends React.HTMLProps { +export interface AboutModalBoxContentProps { /** Content rendered inside the about modal box content */ children: React.ReactNode; /** The trademark info for the product */ diff --git a/packages/react-core/src/components/Badge/Badge.tsx b/packages/react-core/src/components/Badge/Badge.tsx index d2d00753abe..e584038f930 100644 --- a/packages/react-core/src/components/Badge/Badge.tsx +++ b/packages/react-core/src/components/Badge/Badge.tsx @@ -1,8 +1,10 @@ import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Badge/badge'; +import { JSX } from 'preact'; -export interface BadgeProps extends React.HTMLProps { +// export interface BadgeProps extends React.HTMLProps { +export interface BadgeProps extends JSX.HTMLAttributes { /** Text announced by screen readers to indicate the current content/status of the badge. */ screenReaderText?: string; /** Adds styling to the badge to indicate it has been read */ diff --git a/packages/react-core/tsconfig.json b/packages/react-core/tsconfig.json index 3a4be05f922..115d9b6d348 100644 --- a/packages/react-core/tsconfig.json +++ b/packages/react-core/tsconfig.json @@ -1,17 +1,58 @@ { - "extends": "../tsconfig.base.json", + // "extends": "../tsconfig.base.json", "compilerOptions": { - "jsx": "react", + "assumeChangesOnlyAffectDirectDependencies": true, + // "jsx": "react", + "lib": [ + "es2015", + "dom" + ], + // "target": "es2015", + // "module": "es2015", + // "moduleResolution": "node", + // "esModuleInterop": true, + "skipLibCheck": true, + "importHelpers": true, + "composite": true, + "sourceMap": true, + "declarationMap": true, + "strict": true, + "strictNullChecks": false, + "isolatedModules": true, + "plugins": [ + { "transform": "transformer-cjs-imports" } + ], + // "jsx": "react", "rootDir": "./src", "outDir": "./dist/esm", "tsBuildInfoFile": "dist/esm.tsbuildinfo", - "baseUrl": ".", + "baseUrl": "./", "paths": { "./next": ["./src/next"], - "./deprecated": ["./src/deprecated"] - } + "./deprecated": ["./src/deprecated"], + "react": ["../../node_modules/preact/compat/"], + "react-dom": ["../../node_modules/preact/compat/"] + }, + "target": "ESNext", + "module": "ESNext", + "moduleResolution": "Node", + "esModuleInterop": true, + // "jsx": "react", + // "jsxFactory": "h", + // "jsxFragmentFactory": "Fragment", + "jsx": "react-jsx", + "jsxImportSource": "preact", }, - "include": ["./src/*", "./src/**/*"], + "include": [ + // "./src/*", "./src/**/*" + "./src/components/Badge/Badge.tsx" + ], + "exclude": [ + "**/**.test.tsx", + "**/**.test.ts", + "**/examples/**", + "**/__mocks__/**" + ], "references": [ { "path": "../react-styles" From 08b59b70ef5272efbe7ecbb1893b1df6c622ee23 Mon Sep 17 00:00:00 2001 From: Joachim Schuler Date: Fri, 25 Aug 2023 12:11:18 -0400 Subject: [PATCH 02/14] wip --- .../esm/assets/output-2f04885f.css | 40 + .../esm/components/Badge/Badge.d.ts | 14 + .../esm/components/Badge/Badge.d.ts.map | 1 + .../esm/components/Badge/Test.d.ts | 7 + .../esm/components/Badge/Test.d.ts.map | 1 + .../esm/components/Badge/Test2.d.ts | 4 + .../esm/components/Badge/Test2.d.ts.map | 1 + .../esm/components/Badge/index.d.ts | 4 + .../esm/components/Badge/index.d.ts.map | 1 + packages/react-core/dist-rollup/esm/index.js | 48 + .../react-core/dist-rollup/esm/index.js.map | 1 + packages/react-core/global.d.ts | 62 + packages/react-core/output.txt | 2078 ++++++++++++++++- packages/react-core/package.json | 5 + packages/react-core/react.d.ts | 28 + packages/react-core/rollup-esm.config.js | 92 + .../src/components/AboutModal/AboutModal.tsx | 4 +- .../examples/ActionListSingleGroup.tsx | 2 +- .../src/components/Avatar/Avatar.tsx | 2 +- .../react-core/src/components/Badge/Badge.tsx | 10 +- .../react-core/src/components/Badge/Test.tsx | 14 + .../react-core/src/components/Badge/Test2.tsx | 16 + .../react-core/src/components/Badge/index.ts | 2 + .../react-core/src/components/Brand/Brand.tsx | 4 +- .../examples/BreadcrumbDropdown.tsx | 2 +- .../CalendarMonth/CalendarMonth.tsx | 2 +- .../examples/CardDeprecatedSelectable.tsx | 2 +- .../Card/examples/CardExpandable.tsx | 2 +- .../Card/examples/CardExpandableWithIcon.tsx | 2 +- .../Card/examples/CardHeaderInCardHead.tsx | 2 +- .../examples/CardOnlyActionsInCardHead.tsx | 2 +- .../Card/examples/CardWithImageAndActions.tsx | 2 +- .../react-core/src/components/Chip/Chip.tsx | 2 +- .../DataList/examples/DataListActions.tsx | 2 +- .../DataList/examples/DataListCheckboxes.tsx | 6 +- .../examples/DataListClickableRows.tsx | 4 +- .../DataList/examples/DataListExpandable.tsx | 6 +- .../examples/DataListMixedExpandable.tsx | 6 +- .../examples/DataListWidthModifiers.tsx | 4 +- .../src/components/DatePicker/DatePicker.tsx | 2 +- .../DescriptionList/DescriptionList.tsx | 6 +- .../src/components/DragDrop/Draggable.tsx | 8 +- .../src/components/Dropdown/Dropdown.tsx | 2 +- .../Dropdown/examples/DropdownBasic.tsx | 2 +- .../examples/DropdownWithDescriptions.tsx | 2 +- .../Dropdown/examples/DropdownWithGroups.tsx | 2 +- .../examples/DropdownWithKebabToggle.tsx | 2 +- .../DualListSelectorControlsWrapper.tsx | 2 +- .../DualListSelectorListItem.tsx | 2 +- .../DualListSelectorListWrapper.tsx | 2 +- .../DualListSelectorComplexOptionsActions.tsx | 4 +- .../Hint/examples/HintBasicWithTitle.tsx | 2 +- .../Hint/examples/HintBasicWithoutTitle.tsx | 2 +- .../examples/InputGroupWithDropdown.tsx | 2 +- .../examples/LoginPageLanguageSelect.tsx | 2 +- .../react-core/src/components/Menu/Menu.tsx | 2 +- .../src/components/Menu/MenuContainer.tsx | 4 +- .../examples/MenuWithDrilldownBreadcrumbs.tsx | 8 +- .../Modal/examples/ModalWithDropdown.tsx | 2 +- .../react-core/src/components/Nav/Nav.tsx | 2 +- .../examples/NotificationDrawerBasic.tsx | 14 +- .../examples/NotificationDrawerGroups.tsx | 18 +- .../components/Panel/__tests__/Panel.test.tsx | 2 +- .../ProgressStepper/ProgressStep.tsx | 2 +- .../components/SearchInput/SearchInput.tsx | 2 +- .../src/components/Select/Select.tsx | 2 +- .../Select/examples/SelectBasic.tsx | 2 +- .../Select/examples/SelectCheckbox.tsx | 2 +- .../Select/examples/SelectGrouped.tsx | 2 +- .../Select/examples/SelectMultiTypeahead.tsx | 2 +- .../examples/SelectMultiTypeaheadCheckbox.tsx | 2 +- .../SelectMultiTypeaheadCreatable.tsx | 2 +- .../examples/SelectOptionVariations.tsx | 2 +- .../Select/examples/SelectTypeahead.tsx | 2 +- .../examples/SelectTypeaheadCreatable.tsx | 2 +- .../src/components/SimpleList/SimpleList.tsx | 6 +- .../src/components/Slider/Slider.tsx | 2 +- .../src/components/Spinner/Spinner.tsx | 2 +- .../src/components/Switch/Switch.tsx | 2 +- .../src/components/Tabs/TabButton.tsx | 2 +- .../src/components/Tabs/examples/TabsHelp.tsx | 2 +- .../Tabs/examples/TabsHelpAndClose.tsx | 2 +- .../src/components/TextArea/TextArea.tsx | 2 +- .../TextArea/__tests__/TextArea.test.tsx | 2 +- .../src/components/TextInput/TextInput.tsx | 2 +- .../TextInputGroup/TextInputGroup.tsx | 2 +- .../TextInputGroup/TextInputGroupMain.tsx | 4 +- .../components/ToggleGroup/ToggleGroup.tsx | 4 +- .../Toolbar/ToolbarExpandableContent.tsx | 2 +- .../src/components/Toolbar/ToolbarFilter.tsx | 2 +- .../src/components/Toolbar/ToolbarGroup.tsx | 2 +- .../src/components/Toolbar/ToolbarItem.tsx | 2 +- .../ToolbarComponentManagedToggleGroups.tsx | 4 +- .../ToolbarConsumerManagedToggleGroups.tsx | 4 +- .../ToolbarCustomChipGroupContent.tsx | 4 +- .../Toolbar/examples/ToolbarGroups.tsx | 6 +- .../Toolbar/examples/ToolbarStacked.tsx | 8 +- .../Toolbar/examples/ToolbarWithFilters.tsx | 6 +- .../Tooltip/examples/TooltipOptions.tsx | 4 +- .../react-core/src/components/Wizard/utils.ts | 4 +- .../src/helpers/FocusTrap/FocusTrap.tsx | 5 +- .../react-core/src/helpers/Popper/Popper.tsx | 3 +- packages/react-core/src/helpers/favorites.ts | 4 +- packages/react-core/src/helpers/typeUtils.ts | 2 +- packages/react-core/src/helpers/util.ts | 2 +- packages/react-core/src/layouts/Flex/Flex.tsx | 2 +- .../react-core/src/layouts/Flex/FlexItem.tsx | 2 +- .../src/layouts/Gallery/Gallery.tsx | 2 +- packages/react-core/src/layouts/Grid/Grid.tsx | 2 +- .../react-core/src/layouts/Grid/GridItem.tsx | 2 +- packages/react-core/tsconfig.json | 39 +- 111 files changed, 2584 insertions(+), 170 deletions(-) create mode 100644 packages/react-core/dist-rollup/esm/assets/output-2f04885f.css create mode 100644 packages/react-core/dist-rollup/esm/components/Badge/Badge.d.ts create mode 100644 packages/react-core/dist-rollup/esm/components/Badge/Badge.d.ts.map create mode 100644 packages/react-core/dist-rollup/esm/components/Badge/Test.d.ts create mode 100644 packages/react-core/dist-rollup/esm/components/Badge/Test.d.ts.map create mode 100644 packages/react-core/dist-rollup/esm/components/Badge/Test2.d.ts create mode 100644 packages/react-core/dist-rollup/esm/components/Badge/Test2.d.ts.map create mode 100644 packages/react-core/dist-rollup/esm/components/Badge/index.d.ts create mode 100644 packages/react-core/dist-rollup/esm/components/Badge/index.d.ts.map create mode 100644 packages/react-core/dist-rollup/esm/index.js create mode 100644 packages/react-core/dist-rollup/esm/index.js.map create mode 100644 packages/react-core/global.d.ts create mode 100644 packages/react-core/react.d.ts create mode 100644 packages/react-core/rollup-esm.config.js create mode 100644 packages/react-core/src/components/Badge/Test.tsx create mode 100644 packages/react-core/src/components/Badge/Test2.tsx diff --git a/packages/react-core/dist-rollup/esm/assets/output-2f04885f.css b/packages/react-core/dist-rollup/esm/assets/output-2f04885f.css new file mode 100644 index 00000000000..7aab0002388 --- /dev/null +++ b/packages/react-core/dist-rollup/esm/assets/output-2f04885f.css @@ -0,0 +1,40 @@ +.pf-v5-c-badge { + --pf-v5-c-badge--BorderRadius: var(--pf-v5-global--BorderRadius--lg); + --pf-v5-c-badge--FontSize: var(--pf-v5-global--FontSize--xs); + --pf-v5-c-badge--FontWeight: var(--pf-v5-global--FontWeight--bold); + --pf-v5-c-badge--PaddingRight: var(--pf-v5-global--spacer--sm); + --pf-v5-c-badge--PaddingLeft: var(--pf-v5-global--spacer--sm); + --pf-v5-c-badge--Color: var(--pf-v5-global--Color--dark-100); + --pf-v5-c-badge--MinWidth: var(--pf-v5-global--spacer--xl); + --pf-v5-c-badge--m-read--BackgroundColor: var(--pf-v5-global--BackgroundColor--200); + --pf-v5-c-badge--m-read--Color: var(--pf-v5-global--Color--dark-100); + --pf-v5-c-badge--m-unread--BackgroundColor: var(--pf-v5-global--primary-color--100); + --pf-v5-c-badge--m-unread--Color: var(--pf-v5-global--Color--light-100); + display: inline-block; + min-width: var(--pf-v5-c-badge--MinWidth); + padding-right: var(--pf-v5-c-badge--PaddingRight); + padding-left: var(--pf-v5-c-badge--PaddingLeft); + font-size: var(--pf-v5-c-badge--FontSize); + font-weight: var(--pf-v5-c-badge--FontWeight); + color: var(--pf-v5-c-badge--Color); + text-align: center; + white-space: nowrap; + background-color: var(--pf-v5-c-badge--BackgroundColor); + border-radius: var(--pf-v5-c-badge--BorderRadius); +} + +.pf-v5-c-badge.pf-m-read { + --pf-v5-c-badge--Color: var(--pf-v5-c-badge--m-read--Color); + --pf-v5-c-badge--BackgroundColor: var(--pf-v5-c-badge--m-read--BackgroundColor); +} + +.pf-v5-c-badge.pf-m-unread { + --pf-v5-c-badge--Color: var(--pf-v5-c-badge--m-unread--Color); + --pf-v5-c-badge--BackgroundColor: var(--pf-v5-c-badge--m-unread--BackgroundColor); +} + +:where(.pf-v5-theme-dark) .pf-v5-c-badge { + --pf-v5-c-badge--m-read--BackgroundColor: var(--pf-v5-global--palette--black-500); + --pf-v5-c-badge--m-unread--Color: var(--pf-v5-global--primary-color--400); + --pf-v5-c-badge--m-unread--BackgroundColor: var(--pf-v5-global--primary-color--300); +} \ No newline at end of file diff --git a/packages/react-core/dist-rollup/esm/components/Badge/Badge.d.ts b/packages/react-core/dist-rollup/esm/components/Badge/Badge.d.ts new file mode 100644 index 00000000000..421b16d1793 --- /dev/null +++ b/packages/react-core/dist-rollup/esm/components/Badge/Badge.d.ts @@ -0,0 +1,14 @@ +import { /*HTMLProps,*/ ReactNode, FunctionComponent } from 'react'; +import { JSX } from 'preact'; +export interface BadgeProps extends JSX.HTMLAttributes { + /** Text announced by screen readers to indicate the current content/status of the badge. */ + screenReaderText?: string; + /** Adds styling to the badge to indicate it has been read */ + isRead?: boolean; + /** content rendered inside the Badge */ + children?: ReactNode; + /** additional classes added to the Badge */ + className?: string; +} +export declare const Badge: FunctionComponent; +//# sourceMappingURL=Badge.d.ts.map \ No newline at end of file diff --git a/packages/react-core/dist-rollup/esm/components/Badge/Badge.d.ts.map b/packages/react-core/dist-rollup/esm/components/Badge/Badge.d.ts.map new file mode 100644 index 00000000000..03e499a0d4d --- /dev/null +++ b/packages/react-core/dist-rollup/esm/components/Badge/Badge.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"Badge.d.ts","sourceRoot":"","sources":["../../../../src/components/Badge/Badge.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,CAAC,SAAS,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AAIpE,OAAO,EAAE,GAAG,EAAE,MAAM,QAAQ,CAAC;AAG7B,MAAM,WAAW,UAAW,SAAQ,GAAG,CAAC,cAAc,CAAC,eAAe,CAAC;IACrE,4FAA4F;IAC5F,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,8DAA8D;IAC9D,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,wCAAwC;IACxC,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,4CAA4C;IAC5C,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,KAAK,EAAE,iBAAiB,CAAC,UAAU,CAc/C,CAAC"} \ No newline at end of file diff --git a/packages/react-core/dist-rollup/esm/components/Badge/Test.d.ts b/packages/react-core/dist-rollup/esm/components/Badge/Test.d.ts new file mode 100644 index 00000000000..d4348af79e6 --- /dev/null +++ b/packages/react-core/dist-rollup/esm/components/Badge/Test.d.ts @@ -0,0 +1,7 @@ +import { h } from 'preact'; +export interface Props { + value: string; + optionalValue?: string; +} +export default function SomeFunctionalComponent({ value, optionalValue }: Props): h.JSX.Element; +//# sourceMappingURL=Test.d.ts.map \ No newline at end of file diff --git a/packages/react-core/dist-rollup/esm/components/Badge/Test.d.ts.map b/packages/react-core/dist-rollup/esm/components/Badge/Test.d.ts.map new file mode 100644 index 00000000000..20d05f59a4b --- /dev/null +++ b/packages/react-core/dist-rollup/esm/components/Badge/Test.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"Test.d.ts","sourceRoot":"","sources":["../../../../src/components/Badge/Test.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAE3B,MAAM,WAAW,KAAK;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,CAAC,EAAE,MAAM,CAAA;CACvB;AAED,MAAM,CAAC,OAAO,UAAU,uBAAuB,CAAC,EAAE,KAAK,EAAE,aAAa,EAAE,EAAE,KAAK,iBAM9E"} \ No newline at end of file diff --git a/packages/react-core/dist-rollup/esm/components/Badge/Test2.d.ts b/packages/react-core/dist-rollup/esm/components/Badge/Test2.d.ts new file mode 100644 index 00000000000..de892bdb4d9 --- /dev/null +++ b/packages/react-core/dist-rollup/esm/components/Badge/Test2.d.ts @@ -0,0 +1,4 @@ +import { FunctionalComponent } from 'preact'; +declare const Home: FunctionalComponent; +export default Home; +//# sourceMappingURL=Test2.d.ts.map \ No newline at end of file diff --git a/packages/react-core/dist-rollup/esm/components/Badge/Test2.d.ts.map b/packages/react-core/dist-rollup/esm/components/Badge/Test2.d.ts.map new file mode 100644 index 00000000000..59ad53fc6b9 --- /dev/null +++ b/packages/react-core/dist-rollup/esm/components/Badge/Test2.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"Test2.d.ts","sourceRoot":"","sources":["../../../../src/components/Badge/Test2.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAK,MAAM,QAAQ,CAAA;AAM/C,QAAA,MAAM,IAAI,EAAE,mBAMX,CAAA;AAED,eAAe,IAAI,CAAA"} \ No newline at end of file diff --git a/packages/react-core/dist-rollup/esm/components/Badge/index.d.ts b/packages/react-core/dist-rollup/esm/components/Badge/index.d.ts new file mode 100644 index 00000000000..7b42e0c37e6 --- /dev/null +++ b/packages/react-core/dist-rollup/esm/components/Badge/index.d.ts @@ -0,0 +1,4 @@ +export * from './Badge'; +export * from './Test'; +export * from './Test2'; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/packages/react-core/dist-rollup/esm/components/Badge/index.d.ts.map b/packages/react-core/dist-rollup/esm/components/Badge/index.d.ts.map new file mode 100644 index 00000000000..214a33cf7be --- /dev/null +++ b/packages/react-core/dist-rollup/esm/components/Badge/index.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Badge/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC"} \ No newline at end of file diff --git a/packages/react-core/dist-rollup/esm/index.js b/packages/react-core/dist-rollup/esm/index.js new file mode 100644 index 00000000000..17d92d33fc1 --- /dev/null +++ b/packages/react-core/dist-rollup/esm/index.js @@ -0,0 +1,48 @@ +var l;l={__e:function(n,l,u,t){for(var i,o,r;l=l.__;)if((i=l.__c)&&!i.__)try{if((o=i.constructor)&&null!=o.getDerivedStateFromError&&(i.setState(o.getDerivedStateFromError(n)),r=i.__d),null!=i.componentDidCatch&&(i.componentDidCatch(n,t||{}),r=i.__d),r)return i.__E=i}catch(l){n=l;}throw n}},"function"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout; + +var _=0;function o(o,e,n,t,f,l$1){var s,u,a={};for(u in e)"ref"==u?s=e[u]:a[u]=e[u];var i={type:o,props:a,key:n,ref:s,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:--_,__source:f,__self:l$1};if("function"==typeof o&&(s=o.defaultProps))for(u in s)void 0===a[u]&&(a[u]=s[u]);return l.vnode&&l.vnode(i),i} + +/** Joins args into a className string + * + * @param {any} args list of objects, string, or arrays to reduce + */ +function css(...args) { + // Adapted from https://github.com/JedWatson/classnames/blob/master/index.js + const classes = []; + const hasOwn = {}.hasOwnProperty; + args.filter(Boolean).forEach((arg) => { + const argType = typeof arg; + if (argType === 'string' || argType === 'number') { + classes.push(arg); + } + else if (Array.isArray(arg) && arg.length) { + const inner = css(...arg); + if (inner) { + classes.push(inner); + } + } + else if (argType === 'object') { + for (const key in arg) { + if (hasOwn.call(arg, key) && arg[key]) { + classes.push(key); + } + } + } + }); + return classes.join(' '); +} + +var styles = { + "badge": "pf-v5-c-badge", + "modifiers": { + "read": "pf-m-read", + "unread": "pf-m-unread" + }, + "themeDark": "pf-v5-theme-dark" +}; + +const Badge = ({ isRead = false, className = '', children = '', screenReaderText, ...props }) => (o("span", { ...props, className: css(styles.badge, (isRead ? styles.modifiers.read : styles.modifiers.unread), className), children: [children, screenReaderText && o("span", { className: "pf-v5-screen-reader", children: screenReaderText })] })); +Badge.displayName = 'Badge'; + +export { Badge }; +//# sourceMappingURL=index.js.map diff --git a/packages/react-core/dist-rollup/esm/index.js.map b/packages/react-core/dist-rollup/esm/index.js.map new file mode 100644 index 00000000000..63a8be70163 --- /dev/null +++ b/packages/react-core/dist-rollup/esm/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sources":["../../../../node_modules/preact/dist/preact.mjs","../../../../node_modules/preact/jsx-runtime/dist/jsxRuntime.mjs","../../../react-styles/dist/esm/index.js","../../../react-styles/css/components/Badge/badge.mjs","../../src/components/Badge/Badge.tsx"],"sourcesContent":["var n,l,u,t,i,o,r,f,e,c={},s=[],a=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,h=Array.isArray;function v(n,l){for(var u in l)n[u]=l[u];return n}function p(n){var l=n.parentNode;l&&l.removeChild(n)}function y(l,u,t){var i,o,r,f={};for(r in u)\"key\"==r?i=u[r]:\"ref\"==r?o=u[r]:f[r]=u[r];if(arguments.length>2&&(f.children=arguments.length>3?n.call(arguments,2):t),\"function\"==typeof l&&null!=l.defaultProps)for(r in l.defaultProps)void 0===f[r]&&(f[r]=l.defaultProps[r]);return d(l,f,i,o,null)}function d(n,t,i,o,r){var f={type:n,props:t,key:i,ref:o,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:null==r?++u:r};return null==r&&null!=l.vnode&&l.vnode(f),f}function _(){return{current:null}}function k(n){return n.children}function b(n,l){this.props=n,this.context=l}function g(n,l){if(null==l)return n.__?g(n.__,n.__.__k.indexOf(n)+1):null;for(var u;ll&&i.sort(f));x.__r=0}function P(n,l,u,t,i,o,r,f,e,a,v){var p,y,_,b,m,w,x,P,C,H=0,I=t&&t.__k||s,T=I.length,j=T,z=l.length;for(u.__k=[],p=0;p0?d(b.type,b.props,b.key,b.ref?b.ref:null,b.__v):b)?(b.__=u,b.__b=u.__b+1,-1===(P=A(b,I,x=p+H,j))?_=c:(_=I[P]||c,I[P]=void 0,j--),L(n,b,_,i,o,r,f,e,a,v),m=b.__e,(y=b.ref)&&_.ref!=y&&(_.ref&&O(_.ref,null,b),v.push(y,b.__c||m,b)),null!=m&&(null==w&&(w=m),(C=_===c||null===_.__v)?-1==P&&H--:P!==x&&(P===x+1?H++:P>x?j>z-x?H+=P-x:H--:H=P(null!=e?1:0))for(;r>=0||f=0){if((e=l[r])&&i==e.key&&o===e.type)return r;r--}if(f2&&(e.children=arguments.length>3?n.call(arguments,2):t),d(l.type,e,i||l.key,o||l.ref,null)}function G(n,l){var u={__c:l=\"__cC\"+e++,__:n,Consumer:function(n,l){return n.children(l)},Provider:function(n){var u,t;return this.getChildContext||(u=[],(t={})[l]=this,this.getChildContext=function(){return t},this.shouldComponentUpdate=function(n){this.props.value!==n.value&&u.some(function(n){n.__e=!0,w(n)})},this.sub=function(n){u.push(n);var l=n.componentWillUnmount;n.componentWillUnmount=function(){u.splice(u.indexOf(n),1),l&&l.call(n)}}),n.children}};return u.Provider.__=u.Consumer.contextType=u}n=s.slice,l={__e:function(n,l,u,t){for(var i,o,r;l=l.__;)if((i=l.__c)&&!i.__)try{if((o=i.constructor)&&null!=o.getDerivedStateFromError&&(i.setState(o.getDerivedStateFromError(n)),r=i.__d),null!=i.componentDidCatch&&(i.componentDidCatch(n,t||{}),r=i.__d),r)return i.__E=i}catch(l){n=l}throw n}},u=0,t=function(n){return null!=n&&void 0===n.constructor},b.prototype.setState=function(n,l){var u;u=null!=this.__s&&this.__s!==this.state?this.__s:this.__s=v({},this.state),\"function\"==typeof n&&(n=n(v({},u),this.props)),n&&v(u,n),null!=n&&this.__v&&(l&&this._sb.push(l),w(this))},b.prototype.forceUpdate=function(n){this.__v&&(this.__e=!0,n&&this.__h.push(n),w(this))},b.prototype.render=k,i=[],r=\"function\"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout,f=function(n,l){return n.__v.__b-l.__v.__b},x.__r=0,e=0;export{b as Component,k as Fragment,F as cloneElement,G as createContext,y as createElement,_ as createRef,y as h,E as hydrate,t as isValidElement,l as options,D as render,C as toChildArray};\n//# sourceMappingURL=preact.module.js.map\n","import{options as r}from\"preact\";export{Fragment}from\"preact\";var _=0;function o(o,e,n,t,f,l){var s,u,a={};for(u in e)\"ref\"==u?s=e[u]:a[u]=e[u];var i={type:o,props:a,key:n,ref:s,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:--_,__source:f,__self:l};if(\"function\"==typeof o&&(s=o.defaultProps))for(u in s)void 0===a[u]&&(a[u]=s[u]);return r.vnode&&r.vnode(i),i}export{o as jsx,o as jsxDEV,o as jsxs};\n//# sourceMappingURL=jsxRuntime.module.js.map\n","/** Joins args into a className string\n *\n * @param {any} args list of objects, string, or arrays to reduce\n */\nexport function css(...args) {\n // Adapted from https://github.com/JedWatson/classnames/blob/master/index.js\n const classes = [];\n const hasOwn = {}.hasOwnProperty;\n args.filter(Boolean).forEach((arg) => {\n const argType = typeof arg;\n if (argType === 'string' || argType === 'number') {\n classes.push(arg);\n }\n else if (Array.isArray(arg) && arg.length) {\n const inner = css(...arg);\n if (inner) {\n classes.push(inner);\n }\n }\n else if (argType === 'object') {\n for (const key in arg) {\n if (hasOwn.call(arg, key) && arg[key]) {\n classes.push(key);\n }\n }\n }\n });\n return classes.join(' ');\n}\n//# sourceMappingURL=index.js.map","import './badge.css';\nexport default {\n \"badge\": \"pf-v5-c-badge\",\n \"modifiers\": {\n \"read\": \"pf-m-read\",\n \"unread\": \"pf-m-unread\"\n },\n \"themeDark\": \"pf-v5-theme-dark\"\n};","// import * as React from 'react';\nimport { /*HTMLProps,*/ ReactNode, FunctionComponent } from 'react';\n// import { HTMLAttributes, ReactNode, FunctionComponent } from 'preact/compat';\nimport { css } from '@patternfly/react-styles';\nimport styles from '@patternfly/react-styles/css/components/Badge/badge';\nimport { JSX } from 'preact';\n\n// React: ...extends HTMLProps\nexport interface BadgeProps extends JSX.HTMLAttributes {\n /** Text announced by screen readers to indicate the current content/status of the badge. */\n screenReaderText?: string;\n /** Adds styling to the badge to indicate it has been read */\n isRead?: boolean;\n /** content rendered inside the Badge */\n children?: ReactNode;\n /** additional classes added to the Badge */\n className?: string;\n}\n\nexport const Badge: FunctionComponent = ({\n isRead = false,\n className = '',\n children = '',\n screenReaderText,\n ...props\n}: BadgeProps) => (\n \n {children}\n {screenReaderText && {screenReaderText}}\n \n);\nBadge.displayName = 'Badge';\n"],"names":["l","r","_jsxs","_jsx"],"mappings":"AAAG,IAAG,CAAC,CAAmiT,CAAC,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,WAAW,GAAG,IAAI,EAAE,CAAC,CAAC,wBAAwB,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,iBAAiB,GAAG,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAgZ,UAAU,EAAE,OAAO,OAAO,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,UAAkE;;ACApyU,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAACA,GAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAACA,GAAC,CAAC,CAAC,GAAG,UAAU,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,OAAOC,CAAC,CAAC,KAAK,EAAEA,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;;ACA7Y;AACA;AACA;AACA;AACO,SAAS,GAAG,CAAC,GAAG,IAAI,EAAE;AAC7B;AACA,IAAI,MAAM,OAAO,GAAG,EAAE,CAAC;AACvB,IAAI,MAAM,MAAM,GAAG,EAAE,CAAC,cAAc,CAAC;AACrC,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,KAAK;AAC1C,QAAQ,MAAM,OAAO,GAAG,OAAO,GAAG,CAAC;AACnC,QAAQ,IAAI,OAAO,KAAK,QAAQ,IAAI,OAAO,KAAK,QAAQ,EAAE;AAC1D,YAAY,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC9B,SAAS;AACT,aAAa,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,MAAM,EAAE;AACnD,YAAY,MAAM,KAAK,GAAG,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC;AACtC,YAAY,IAAI,KAAK,EAAE;AACvB,gBAAgB,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;AACpC,aAAa;AACb,SAAS;AACT,aAAa,IAAI,OAAO,KAAK,QAAQ,EAAE;AACvC,YAAY,KAAK,MAAM,GAAG,IAAI,GAAG,EAAE;AACnC,gBAAgB,IAAI,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,CAAC,IAAI,GAAG,CAAC,GAAG,CAAC,EAAE;AACvD,oBAAoB,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AACtC,iBAAiB;AACjB,aAAa;AACb,SAAS;AACT,KAAK,CAAC,CAAC;AACP,IAAI,OAAO,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC7B;;AC3BA,aAAe;AACf,EAAE,OAAO,EAAE,eAAe;AAC1B,EAAE,WAAW,EAAE;AACf,IAAI,MAAM,EAAE,WAAW;AACvB,IAAI,QAAQ,EAAE,aAAa;AAC3B,GAAG;AACH,EAAE,WAAW,EAAE,kBAAkB;AACjC,CAAC;;ACWM,MAAM,KAAK,GAAkC,CAAC,EACnD,MAAM,GAAG,KAAK,EACd,SAAS,GAAG,EAAE,EACd,QAAQ,GAAG,EAAE,EACb,gBAAgB,EAChB,GAAG,KAAK,EACG,MACXC,CACM,CAAA,MAAA,EAAA,EAAA,GAAA,KAAK,EACT,SAAS,EAAE,GAAG,CAAC,MAAM,CAAC,KAAK,GAAG,MAAM,GAAG,MAAM,CAAC,SAAS,CAAC,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,MAAM,GAAU,SAAS,CAAC,EAAA,QAAA,EAAA,CAEzG,QAAQ,EACR,gBAAgB,IAAIC,CAAA,CAAA,MAAA,EAAA,EAAM,SAAS,EAAC,qBAAqB,EAAE,QAAA,EAAA,gBAAgB,EAAQ,CAAA,CAAA,EAAA,CAC/E,EACP;AACF,KAAK,CAAC,WAAW,GAAG,OAAO;;;;","x_google_ignoreList":[0,1]} \ No newline at end of file diff --git a/packages/react-core/global.d.ts b/packages/react-core/global.d.ts new file mode 100644 index 00000000000..fb5fa01a196 --- /dev/null +++ b/packages/react-core/global.d.ts @@ -0,0 +1,62 @@ +// // global.d.ts +import * as preact from 'preact'; + +// also modified +// node_modules/preact/src/index.d.ts +/* +export interface VNode

{ + type: ComponentType

| string; + props: P & any; +export function cloneElement( + vnode: ComponentChild, + props?: any, + ...children: ComponentChildren[] +): VNode; +*/ + +// node_modules/preact/compat/src/index.d.ts +/* +export function createPortal( + vnode: preact.ComponentChild, + container: Element | DocumentFragment + ): preact.VNode; +*/ + +declare module 'react' { +// // https://github.com/preactjs/preact/issues/4114#issuecomment-1690930689 + interface HTMLProps extends preact.JSX.HTMLAttributes { + icon?: string | undefined | preact.SignalLike | preact.ComponentChild; + role?: preact.JSX.AriaRole | undefined | preact.SignalLike; + }; + type AriaRole = preact.JSX.AriaRole; + interface ButtonHTMLAttributes extends preact.JSX.HTMLAttributes {}; + interface ImgHTMLAttributes extends preact.JSX.HTMLAttributes {}; + interface InputHTMLAttributes extends preact.JSX.HTMLAttributes {}; + type ComponentType

= preact.ComponentType

; + type ElementType

= + { + [K in keyof preact.JSX.IntrinsicElements]: P extends preact.JSX.IntrinsicElements[K] ? K : never + }[keyof preact.JSX.IntrinsicElements] | + ComponentType

; + // interface VNode

extends preact.VNode

{ + // props: P & { + // children: preact.ComponentChildren; + // className: string; + // }; + // } + interface ReactElement

extends preact.VNode

{}; + type MouseEvent = any; + type KeyboardEvent = any; + type DragEvent = any; + type FormEvent = any; + type TouchEvent = any; + type FocusEvent = any; + type SyntheticEvent = any; + type SetStateAction = S | ((prevState: S) => S); + type HTMLAttributeAnchorTarget = + | '_self' + | '_blank' + | '_parent' + | '_top' + | (string & {}); +} diff --git a/packages/react-core/output.txt b/packages/react-core/output.txt index 7fa89103c18..3abc7287e72 100644 --- a/packages/react-core/output.txt +++ b/packages/react-core/output.txt @@ -1,10 +1,2068 @@ -2:28:40 PM - Projects in this build: - * ../react-styles/tsconfig.json - * tsconfig.json - -2:28:40 PM - Project '../react-styles/tsconfig.json' is up to date because newest input '../react-styles/src/index.ts' is older than oldest output '../react-styles/dist/esm/index.js.map' - -2:28:40 PM - Project 'tsconfig.json' is out of date because oldest output 'dist/esm/components/Badge/Badge.js' is older than newest input 'src/components/Badge/Badge.tsx' - -2:28:40 PM - Building project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'... - +yarn run v1.22.10 +$ npx tsc --project tsconfig.json +src/components/AboutModal/AboutModal.tsx(12,48): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'HTMLAttributes'. +src/components/AboutModal/AboutModal.tsx(43,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/AboutModal/AboutModal.tsx(77,5): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/AboutModal/AboutModal.tsx(77,6): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. + Type 'GenerateId' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/AboutModal/AboutModal.tsx(78,9): error TS7006: Parameter 'ariaLabelledBy' implicitly has an 'any' type. +src/components/AboutModal/AboutModal.tsx(79,9): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/AboutModal/AboutModal.tsx(79,10): error TS2786: 'Modal' cannot be used as a JSX component. + Its instance type 'Modal' is not a valid JSX element. + Type 'Modal' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/AboutModal/AboutModal.tsx(93,86): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/AboutModal/AboutModalBox.tsx(12,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/AboutModal/AboutModalBoxBrand.tsx(12,40): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/AboutModal/AboutModalBoxCloseButton.tsx(14,46): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/AboutModal/AboutModalBoxCloseButton.tsx(21,8): error TS2604: JSX element type 'TimesIcon' does not have any construct or call signatures. +src/components/AboutModal/AboutModalBoxContent.tsx(15,42): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/AboutModal/AboutModalBoxHeader.tsx(13,41): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Accordion/Accordion.tsx(23,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Accordion/AccordionContent.tsx(28,38): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Accordion/AccordionContent.tsx(40,49): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Accordion/AccordionContent.tsx(41,30): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Accordion/AccordionContent.tsx(43,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Accordion/AccordionContent.tsx(55,11): error TS7031: Binding element 'ContentContainer' implicitly has an 'any' type. +src/components/Accordion/AccordionContext.ts(8,39): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Accordion/AccordionExpandableContentBody.tsx(10,52): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Accordion/AccordionItem.tsx(8,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Accordion/AccordionToggle.tsx(8,17): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/Accordion/AccordionToggle.tsx(21,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Accordion/AccordionToggle.tsx(30,9): error TS7031: Binding element 'ToggleContainer' implicitly has an 'any' type. +src/components/Accordion/AccordionToggle.tsx(43,16): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/ActionList/ActionList.tsx(14,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/ActionList/ActionListGroup.tsx(12,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/ActionList/ActionListItem.tsx(11,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Alert/Alert.tsx(2,10): error TS2305: Module '"react"' has no exported member 'useState'. +src/components/Alert/Alert.tsx(89,27): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Alert/Alert.tsx(124,26): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Alert/Alert.tsx(127,24): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Alert/Alert.tsx(129,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Alert/Alert.tsx(145,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Alert/Alert.tsx(152,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Alert/Alert.tsx(168,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Alert/Alert.tsx(174,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Alert/AlertActionCloseButton.tsx(21,44): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Alert/AlertActionCloseButton.tsx(29,9): error TS7031: Binding element 'title' implicitly has an 'any' type. +src/components/Alert/AlertActionCloseButton.tsx(29,30): error TS7031: Binding element 'alertVariantLabel' implicitly has an 'any' type. +src/components/Alert/AlertActionCloseButton.tsx(37,10): error TS2604: JSX element type 'TimesIcon' does not have any construct or call signatures. +src/components/Alert/AlertActionLink.tsx(15,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Alert/AlertContext.ts(8,35): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Alert/AlertGroup.tsx(29,32): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Alert/AlertGroup.tsx(38,10): error TS2339: Property 'setState' does not exist on type 'AlertGroup'. +src/components/Alert/AlertGroup.tsx(50,27): error TS2339: Property 'props' does not exist on type 'AlertGroup'. +src/components/Alert/AlertGroup.tsx(69,14): error TS2339: Property 'props' does not exist on type 'AlertGroup'. +src/components/Alert/AlertGroup.tsx(83,15): error TS2339: Property 'props' does not exist on type 'AlertGroup'. +src/components/Alert/AlertGroupInline.tsx(7,38): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Alert/AlertGroupInline.tsx(23,12): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Alert/AlertGroupInline.tsx(23,44): error TS7006: Parameter 'alert' implicitly has an 'any' type. +src/components/Alert/AlertGroupInline.tsx(23,51): error TS7006: Parameter 'index' implicitly has an 'any' type. +src/components/Alert/AlertIcon.tsx(31,23): error TS2604: JSX element type 'Icon' does not have any construct or call signatures. +src/components/Alert/AlertToggleExpandButton.tsx(19,45): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Alert/AlertToggleExpandButton.tsx(26,60): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Alert/AlertToggleExpandButton.tsx(36,10): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Avatar/Avatar.tsx(6,22): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/Avatar/Avatar.tsx(19,28): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Backdrop/Backdrop.tsx(12,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/BackgroundImage/BackgroundImage.tsx(13,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/BackgroundImage/BackgroundImage.tsx(23,18): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/BackToTop/BackToTop.tsx(8,40): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/BackToTop/BackToTop.tsx(14,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/BackToTop/BackToTop.tsx(21,28): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/BackToTop/BackToTop.tsx(29,39): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/BackToTop/BackToTop.tsx(30,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/BackToTop/BackToTop.tsx(34,51): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/BackToTop/BackToTop.tsx(47,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/BackToTop/BackToTop.tsx(85,40): error TS2604: JSX element type 'AngleUpIcon' does not have any construct or call signatures. +src/components/BackToTop/BackToTop.tsx(92,32): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/BackToTop/BackToTop.tsx(92,78): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Badge/Badge.tsx(2,36): error TS2305: Module '"react"' has no exported member 'FunctionComponent'. +src/components/Badge/Test2.tsx(4,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FC'. +src/components/Banner/Banner.tsx(20,28): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Brand/Brand.tsx(6,17): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/Brand/Brand.tsx(35,27): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Brand/Brand.tsx(42,3): error TS2339: Property 'style' does not exist on type 'BrandProps'. +src/components/Breadcrumb/Breadcrumb.tsx(19,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Breadcrumb/Breadcrumb.tsx(31,16): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Breadcrumb/Breadcrumb.tsx(31,40): error TS7006: Parameter 'child' implicitly has an 'any' type. +src/components/Breadcrumb/Breadcrumb.tsx(31,47): error TS7006: Parameter 'index' implicitly has an 'any' type. +src/components/Breadcrumb/Breadcrumb.tsx(33,21): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Breadcrumb/Breadcrumb.tsx(34,26): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Breadcrumb/BreadcrumbHeading.tsx(21,39): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Breadcrumb/BreadcrumbHeading.tsx(35,12): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Breadcrumb/BreadcrumbItem.tsx(32,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Breadcrumb/BreadcrumbItem.tsx(51,12): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Breadcrumb/BreadcrumbItem.tsx(62,10): error TS2604: JSX element type 'Component' does not have any construct or call signatures. +src/components/Button/Button.tsx(84,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Button/Button.tsx(93,25): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Button/Button.tsx(202,29): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Button/Button.tsx(202,66): error TS2304: Cannot find name 'ForwardedRef'. +src/components/CalendarMonth/CalendarMonth.tsx(1,17): error TS2305: Module '"react"' has no exported member 'useEffect'. +src/components/CalendarMonth/CalendarMonth.tsx(77,38): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/CalendarMonth/CalendarMonth.tsx(154,49): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/CalendarMonth/CalendarMonth.tsx(165,47): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/CalendarMonth/CalendarMonth.tsx(166,47): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/CalendarMonth/CalendarMonth.tsx(167,26): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/CalendarMonth/CalendarMonth.tsx(168,33): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/CalendarMonth/CalendarMonth.tsx(169,47): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/CalendarMonth/CalendarMonth.tsx(259,26): error TS2339: Property 'useMemo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/CalendarMonth/CalendarMonth.tsx(265,16): error TS7006: Parameter 'acc' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(265,21): error TS7006: Parameter 'cur' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(266,18): error TS7031: Binding element 'date' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(266,24): error TS7031: Binding element 'isValid' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(267,15): error TS7031: Binding element 'date' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(268,14): error TS7006: Parameter 'o1' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(268,18): error TS7006: Parameter 'o2' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(269,15): error TS7031: Binding element 'date' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(288,14): error TS2604: JSX element type 'AngleLeftIcon' does not have any construct or call signatures. +src/components/CalendarMonth/CalendarMonth.tsx(303,56): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/CalendarMonth/CalendarMonth.tsx(310,32): error TS7006: Parameter 'isOpen' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(314,28): error TS7006: Parameter 'ev' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(314,32): error TS7006: Parameter 'monthNum' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(371,14): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/CalendarMonth/CalendarMonth.tsx(378,33): error TS7031: Binding element 'date' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(378,41): error TS7006: Parameter 'index' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(387,26): error TS7006: Parameter 'week' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(387,32): error TS7006: Parameter 'index' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(389,28): error TS7031: Binding element 'date' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(389,34): error TS7031: Binding element 'isValid' implicitly has an 'any' type. +src/components/CalendarMonth/CalendarMonth.tsx(389,45): error TS7006: Parameter 'index' implicitly has an 'any' type. +src/components/Card/Card.tsx(69,34): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Card/Card.tsx(78,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Card/Card.tsx(105,39): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Card/Card.tsx(106,43): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Card/Card.tsx(136,43): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Card/Card.tsx(143,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Card/CardActions.tsx(14,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Card/CardBody.tsx(16,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Card/CardExpandableContent.tsx(13,43): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Card/CardExpandableContent.tsx(19,9): error TS7031: Binding element 'isExpanded' implicitly has an 'any' type. +src/components/Card/CardFooter.tsx(14,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Card/CardHeader.tsx(70,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Card/CardHeader.tsx(83,9): error TS7031: Binding element 'cardId' implicitly has an 'any' type. +src/components/Card/CardHeader.tsx(83,17): error TS7031: Binding element 'isClickable' implicitly has an 'any' type. +src/components/Card/CardHeader.tsx(83,30): error TS7031: Binding element 'isSelectable' implicitly has an 'any' type. +src/components/Card/CardHeader.tsx(83,56): error TS7031: Binding element 'isCardDisabled' implicitly has an 'any' type. +src/components/Card/CardHeader.tsx(83,72): error TS7031: Binding element 'hasSelectableInput' implicitly has an 'any' type. +src/components/Card/CardHeader.tsx(89,23): error TS7006: Parameter 'evt' implicitly has an 'any' type. +src/components/Card/CardHeader.tsx(95,16): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Card/CardHeader.tsx(162,21): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Card/CardHeader.tsx(162,22): error TS2786: 'Radio' cannot be used as a JSX component. + Its instance type 'Radio' is not a valid JSX element. + Type 'Radio' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/Card/CardHeader.tsx(164,21): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Card/CardHeader.tsx(164,22): error TS2786: 'Checkbox' cannot be used as a JSX component. + Its instance type 'Checkbox' is not a valid JSX element. +src/components/Card/CardHeaderMain.tsx(12,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Card/CardSelectableActions.tsx(12,43): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Card/CardTitle.tsx(15,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Card/CardTitle.tsx(21,45): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Card/CardTitle.tsx(25,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Checkbox/Checkbox.tsx(51,30): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Checkbox/Checkbox.tsx(66,10): error TS2339: Property 'state' does not exist on type 'Checkbox'. +src/components/Checkbox/Checkbox.tsx(72,10): error TS2339: Property 'props' does not exist on type 'Checkbox'. +src/components/Checkbox/Checkbox.tsx(94,14): error TS2339: Property 'props' does not exist on type 'Checkbox'. +src/components/Checkbox/Checkbox.tsx(124,87): error TS2339: Property 'state' does not exist on type 'Checkbox'. +src/components/Chip/Chip.tsx(55,26): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Chip/Chip.tsx(59,10): error TS2339: Property 'state' does not exist on type 'Chip'. +src/components/Chip/Chip.tsx(64,16): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Chip/Chip.tsx(78,10): error TS2339: Property 'setState' does not exist on type 'Chip'. +src/components/Chip/Chip.tsx(84,44): error TS2339: Property 'props' does not exist on type 'Chip'. +src/components/Chip/Chip.tsx(106,14): error TS2339: Property 'props' does not exist on type 'Chip'. +src/components/Chip/Chip.tsx(117,79): error TS2339: Property 'state' does not exist on type 'Chip'. +src/components/Chip/Chip.tsx(143,14): error TS2339: Property 'props' does not exist on type 'Chip'. +src/components/Chip/Chip.tsx(147,19): error TS2339: Property 'props' does not exist on type 'Chip'. +src/components/Chip/Chip.tsx(151,19): error TS2339: Property 'state' does not exist on type 'Chip'. +src/components/Chip/Chip.tsx(152,81): error TS2339: Property 'state' does not exist on type 'Chip'. +src/components/Chip/Chip.tsx(171,16): error TS2604: JSX element type 'TimesIcon' does not have any construct or call signatures. +src/components/Chip/Chip.tsx(180,48): error TS2339: Property 'props' does not exist on type 'Chip'. +src/components/Chip/Chip.tsx(181,14): error TS2339: Property 'state' does not exist on type 'Chip'. +src/components/Chip/Chip.tsx(192,37): error TS2339: Property 'props' does not exist on type 'Chip'. +src/components/Chip/Chip.tsx(194,8): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/Chip/Chip.tsx(195,11): error TS7006: Parameter 'randomId' implicitly has an 'any' type. +src/components/Chip/Chip.tsx(195,91): error TS2339: Property 'props' does not exist on type 'Chip'. +src/components/Chip/ChipGroup.tsx(62,31): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Chip/ChipGroup.tsx(66,10): error TS2339: Property 'state' does not exist on type 'ChipGroup'. +src/components/Chip/ChipGroup.tsx(67,20): error TS2339: Property 'props' does not exist on type 'ChipGroup'. +src/components/Chip/ChipGroup.tsx(71,30): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Chip/ChipGroup.tsx(89,10): error TS2339: Property 'setState' does not exist on type 'ChipGroup'. +src/components/Chip/ChipGroup.tsx(97,10): error TS2339: Property 'setState' does not exist on type 'ChipGroup'. +src/components/Chip/ChipGroup.tsx(97,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/Chip/ChipGroup.tsx(106,52): error TS2339: Property 'props' does not exist on type 'ChipGroup'. +src/components/Chip/ChipGroup.tsx(107,39): error TS2339: Property 'state' does not exist on type 'ChipGroup'. +src/components/Chip/ChipGroup.tsx(140,14): error TS2339: Property 'props' does not exist on type 'ChipGroup'. +src/components/Chip/ChipGroup.tsx(141,29): error TS2339: Property 'state' does not exist on type 'ChipGroup'. +src/components/Chip/ChipGroup.tsx(142,31): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Chip/ChipGroup.tsx(144,24): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Chip/ChipGroup.tsx(149,17): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Chip/ChipGroup.tsx(150,17): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Chip/ChipGroup.tsx(169,31): error TS7006: Parameter 'child' implicitly has an 'any' type. +src/components/Chip/ChipGroup.tsx(169,38): error TS7006: Parameter 'i' implicitly has an 'any' type. +src/components/Chip/ChipGroup.tsx(176,19): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Chip/ChipGroup.tsx(176,20): error TS2786: 'Chip' cannot be used as a JSX component. + Its instance type 'Chip' is not a valid JSX element. + Type 'Chip' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/Chip/ChipGroup.tsx(178,31): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Chip/ChipGroup.tsx(200,18): error TS2604: JSX element type 'TimesCircleIcon' does not have any construct or call signatures. +src/components/Chip/ChipGroup.tsx(209,8): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/Chip/ChipGroup.tsx(209,21): error TS7006: Parameter 'randomId' implicitly has an 'any' type. +src/components/Chip/ChipGroup.tsx(209,55): error TS2339: Property 'props' does not exist on type 'ChipGroup'. +src/components/ClipboardCopy/ClipboardCopy.tsx(13,48): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ClipboardEvent'. +src/components/ClipboardCopy/ClipboardCopy.tsx(73,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ClipboardEvent'. +src/components/ClipboardCopy/ClipboardCopy.tsx(86,35): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/ClipboardCopy/ClipboardCopy.tsx(91,10): error TS2339: Property 'state' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(92,32): error TS2339: Property 'props' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(93,16): error TS2339: Property 'props' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(94,17): error TS2339: Property 'props' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(95,22): error TS2339: Property 'props' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(121,37): error TS2339: Property 'props' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(122,12): error TS2339: Property 'setState' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(122,34): error TS2339: Property 'props' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(134,10): error TS2339: Property 'setState' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(134,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/ClipboardCopy/ClipboardCopy.tsx(140,10): error TS2339: Property 'setState' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(141,10): error TS2339: Property 'props' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(168,14): error TS2339: Property 'props' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(178,16): error TS2339: Property 'state' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(185,11): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/ClipboardCopy/ClipboardCopy.tsx(185,12): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/ClipboardCopy/ClipboardCopy.tsx(186,15): error TS7006: Parameter 'id' implicitly has an 'any' type. +src/components/ClipboardCopy/ClipboardCopy.tsx(190,27): error TS2339: Property 'state' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(195,27): error TS2339: Property 'state' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(210,44): error TS2339: Property 'state' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(211,30): error TS2339: Property 'setState' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(213,51): error TS2339: Property 'setState' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(215,29): error TS2339: Property 'state' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(225,11): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/ClipboardCopy/ClipboardCopy.tsx(225,12): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/ClipboardCopy/ClipboardCopy.tsx(226,15): error TS7006: Parameter 'id' implicitly has an 'any' type. +src/components/ClipboardCopy/ClipboardCopy.tsx(231,40): error TS2339: Property 'state' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(240,57): error TS2339: Property 'state' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(242,33): error TS2339: Property 'state' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(255,42): error TS2339: Property 'state' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(256,28): error TS2339: Property 'setState' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(258,49): error TS2339: Property 'setState' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(260,27): error TS2339: Property 'state' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(263,23): error TS2339: Property 'state' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopy.tsx(264,19): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/ClipboardCopy/ClipboardCopy.tsx(264,20): error TS2786: 'ClipboardCopyExpanded' cannot be used as a JSX component. + Its instance type 'ClipboardCopyExpanded' is not a valid JSX element. + Type 'ClipboardCopyExpanded' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/ClipboardCopy/ClipboardCopy.tsx(270,27): error TS2339: Property 'state' does not exist on type 'ClipboardCopy'. +src/components/ClipboardCopy/ClipboardCopyAction.tsx(12,41): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/ClipboardCopy/ClipboardCopyAction.tsx(17,4): error TS2322: Type '{ children: ReactNode; icon?: any; role?: any; accept?: string | SignalLike; acceptCharset?: string | SignalLike; accessKey?: string | SignalLike<...>; ... 400 more ...; className: string; }' is not assignable to type 'HTMLAttributes'. + Types of property 'ref' are incompatible. + Type 'Ref' is not assignable to type 'Ref'. + Type 'RefCallback' is not assignable to type 'Ref'. + Type 'RefCallback' is not assignable to type 'RefCallback'. + Type 'HTMLSpanElement' is missing the following properties from type 'HTMLLIElement': type, value +src/components/ClipboardCopy/ClipboardCopyButton.tsx(7,22): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/ClipboardCopy/ClipboardCopyButton.tsx(48,41): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/ClipboardCopy/ClipboardCopyButton.tsx(62,28): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/ClipboardCopy/ClipboardCopyButton.tsx(87,10): error TS2604: JSX element type 'CopyIcon' does not have any construct or call signatures. +src/components/ClipboardCopy/ClipboardCopyExpanded.tsx(15,43): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/ClipboardCopy/ClipboardCopyExpanded.tsx(29,82): error TS2339: Property 'props' does not exist on type 'ClipboardCopyExpanded'. +src/components/ClipboardCopy/ClipboardCopyToggle.tsx(7,22): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/ClipboardCopy/ClipboardCopyToggle.tsx(16,41): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/ClipboardCopy/ClipboardCopyToggle.tsx(34,20): error TS2604: JSX element type 'AngleDownIcon' does not have any construct or call signatures. +src/components/ClipboardCopy/ClipboardCopyToggle.tsx(34,59): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/CodeBlock/CodeBlock.tsx(14,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/CodeBlock/CodeBlockAction.tsx(11,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/CodeBlock/CodeBlockCode.tsx(14,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DataList/DataList.tsx(50,38): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DataList/DataList.tsx(54,30): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DataList/DataList.tsx(64,15): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DataList/DataList.tsx(70,93): error TS2339: Property 'id' does not exist on type 'unknown'. +src/components/DataList/DataList.tsx(83,14): error TS2339: Property 'props' does not exist on type 'DataList'. +src/components/DataList/DataList.tsx(103,13): error TS7053: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type '{ none: "pf-m-grid-none"; always: string; sm: "pf-m-grid-sm"; md: "pf-m-grid-md"; lg: "pf-m-grid-lg"; xl: "pf-m-grid-xl"; '2xl': "pf-m-grid-2xl"; }'. +src/components/DataList/DataList.tsx(104,29): error TS7053: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type '{ hidden: "pf-m-hidden"; hiddenOnSm: "pf-m-hidden-on-sm"; visibleOnSm: "pf-m-visible-on-sm"; hiddenOnMd: "pf-m-hidden-on-md"; visibleOnMd: "pf-m-visible-on-md"; hiddenOnLg: "pf-m-hidden-on-lg"; ... 28 more ...; noPadding: "pf-m-no-padding"; }'. +src/components/DataList/DataListAction.tsx(30,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DataList/DataListCell.tsx(23,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DataList/DataListCheck.tsx(34,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DataList/DataListContent.tsx(22,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DataList/DataListControl.tsx(12,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DataList/DataListDragButton.tsx(15,40): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DataList/DataListDragButton.tsx(27,8): error TS2604: JSX element type 'GripVerticalIcon' does not have any construct or call signatures. +src/components/DataList/DataListItem.tsx(27,34): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DataList/DataListItem.tsx(45,14): error TS2339: Property 'props' does not exist on type 'DataListItem'. +src/components/DataList/DataListItem.tsx(48,13): error TS7031: Binding element 'isSelectable' implicitly has an 'any' type. +src/components/DataList/DataListItem.tsx(48,27): error TS7031: Binding element 'selectedDataListItemId' implicitly has an 'any' type. +src/components/DataList/DataListItem.tsx(48,51): error TS7031: Binding element 'updateSelectedDataListItem' implicitly has an 'any' type. +src/components/DataList/DataListItem.tsx(48,79): error TS7031: Binding element 'onSelectableRowChange' implicitly has an 'any' type. +src/components/DataList/DataListItem.tsx(104,22): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DataList/DataListItem.tsx(106,18): error TS7006: Parameter 'child' implicitly has an 'any' type. +src/components/DataList/DataListItem.tsx(107,25): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DataList/DataListItem.tsx(108,25): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DataList/DataListItemCells.tsx(14,39): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DataList/DataListItemRow.tsx(17,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DataList/DataListItemRow.tsx(25,12): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DataList/DataListItemRow.tsx(27,8): error TS7006: Parameter 'child' implicitly has an 'any' type. +src/components/DataList/DataListItemRow.tsx(28,15): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DataList/DataListItemRow.tsx(29,15): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DataList/DataListText.tsx(22,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DataList/DataListText.tsx(33,39): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DataList/DataListToggle.tsx(26,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DataList/DataListToggle.tsx(48,12): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/DatePicker/DatePicker.tsx(10,10): error TS2305: Module '"react"' has no exported member 'useImperativeHandle'. +src/components/DatePicker/DatePicker.tsx(125,35): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DatePicker/DatePicker.tsx(126,43): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DatePicker/DatePicker.tsx(127,43): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DatePicker/DatePicker.tsx(128,47): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DatePicker/DatePicker.tsx(129,45): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DatePicker/DatePicker.tsx(130,41): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DatePicker/DatePicker.tsx(131,28): error TS2339: Property 'useMemo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DatePicker/DatePicker.tsx(133,27): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DatePicker/DatePicker.tsx(134,38): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DatePicker/DatePicker.tsx(135,28): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DatePicker/DatePicker.tsx(138,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DatePicker/DatePicker.tsx(143,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DatePicker/DatePicker.tsx(210,25): error TS7006: Parameter 'prev' implicitly has an 'any' type. +src/components/DatePicker/DatePicker.tsx(240,23): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/DatePicker/DatePicker.tsx(240,30): error TS7006: Parameter 'hideFunction' implicitly has an 'any' type. +src/components/DatePicker/DatePicker.tsx(299,18): error TS2604: JSX element type 'OutlinedCalendarAltIcon' does not have any construct or call signatures. +src/components/DatePicker/DatePicker.tsx(320,33): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DescriptionList/DescriptionList.tsx(83,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DescriptionList/DescriptionListDescription.tsx(12,48): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DescriptionList/DescriptionListGroup.tsx(12,42): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DescriptionList/DescriptionListTerm.tsx(14,41): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DescriptionList/DescriptionListTermHelpText.tsx(12,49): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DescriptionList/DescriptionListTermHelpTextButton.tsx(12,55): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Divider/Divider.tsx(37,29): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DragDrop/DragDrop.tsx(10,38): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DragDrop/DragDrop.tsx(27,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DragDrop/Draggable.tsx(78,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DragDrop/Draggable.tsx(86,33): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DragDrop/Draggable.tsx(88,45): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DragDrop/Draggable.tsx(89,47): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DragDrop/Draggable.tsx(90,39): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DragDrop/Draggable.tsx(91,48): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DragDrop/Draggable.tsx(105,39): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'TransitionEvent'. +src/components/DragDrop/Draggable.tsx(144,31): error TS2339: Property 'background' does not exist on type 'string | CSSProperties | SignalLike'. + Property 'background' does not exist on type 'string'. +src/components/DragDrop/Draggable.tsx(145,30): error TS2339: Property 'boxShadow' does not exist on type 'string | CSSProperties | SignalLike'. + Property 'boxShadow' does not exist on type 'string'. +src/components/DragDrop/Draggable.tsx(320,15): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DragDrop/Droppable.tsx(19,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DragDrop/Droppable.tsx(32,29): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DragDrop/Droppable.tsx(41,15): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DragDrop/DroppableContext.ts(3,39): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/Drawer.tsx(25,63): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'TransitionEvent'. +src/components/Drawer/Drawer.tsx(31,63): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'TransitionEvent'. +src/components/Drawer/Drawer.tsx(33,21): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Drawer/Drawer.tsx(34,28): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Drawer/Drawer.tsx(38,36): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/Drawer.tsx(48,28): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Drawer/Drawer.tsx(58,27): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/Drawer.tsx(59,34): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/DrawerActions.tsx(12,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Drawer/DrawerCloseButton.tsx(16,39): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Drawer/DrawerCloseButton.tsx(25,8): error TS2604: JSX element type 'TimesIcon' does not have any construct or call signatures. +src/components/Drawer/DrawerContent.tsx(18,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Drawer/DrawerContent.tsx(26,38): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/DrawerContentBody.tsx(14,39): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Drawer/DrawerHead.tsx(15,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Drawer/DrawerMain.tsx(12,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Drawer/DrawerPanelBody.tsx(14,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Drawer/DrawerPanelContent.tsx(8,18): error TS2430: Interface 'DrawerPanelContentProps' incorrectly extends interface 'HTMLProps'. + Types of property 'onResize' are incompatible. + Type '(event: any, width: number, id: string) => void' is not assignable to type 'PictureInPictureEventHandler'. +src/components/Drawer/DrawerPanelContent.tsx(44,40): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Drawer/DrawerPanelContent.tsx(60,23): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/DrawerPanelContent.tsx(61,29): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/DrawerPanelContent.tsx(62,53): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/DrawerPanelContent.tsx(64,11): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/DrawerPanelContent.tsx(66,61): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/DrawerPanelContent.tsx(74,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/DrawerPanelContent.tsx(194,35): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/DrawerPanelContent.tsx(195,34): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/DrawerPanelContent.tsx(196,35): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/DrawerPanelContent.tsx(197,33): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Drawer/DrawerPanelContent.tsx(250,5): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Drawer/DrawerPanelContent.tsx(250,6): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/Drawer/DrawerPanelContent.tsx(251,9): error TS7006: Parameter 'panelId' implicitly has an 'any' type. +src/components/Drawer/DrawerPanelContent.tsx(266,33): error TS2339: Property 'nativeEvent' does not exist on type 'TargetedTransitionEvent'. +src/components/Drawer/DrawerPanelContent.tsx(274,45): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/Drawer/DrawerSection.tsx(15,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Dropdown/Dropdown.tsx(26,21): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Dropdown/Dropdown.tsx(38,52): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Dropdown/Dropdown.tsx(55,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Dropdown/Dropdown.tsx(66,27): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Dropdown/Dropdown.tsx(84,30): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Dropdown/Dropdown.tsx(85,32): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Dropdown/Dropdown.tsx(88,38): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Dropdown/Dropdown.tsx(92,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Dropdown/Dropdown.tsx(94,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Dropdown/Dropdown.tsx(141,18): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Dropdown/Dropdown.tsx(141,25): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/Dropdown/Dropdown.tsx(166,31): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Dropdown/Dropdown.tsx(166,70): error TS2304: Cannot find name 'ForwardedRef'. +src/components/Dropdown/DropdownGroup.tsx(17,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Dropdown/DropdownItem.tsx(16,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Dropdown/DropdownItem.tsx(35,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Dropdown/DropdownItem.tsx(68,35): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Dropdown/DropdownList.tsx(12,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Dropdown/index.ts(1,15): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Dropdown/Dropdown.tsx' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. +src/components/Dropdown/index.ts(2,15): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Dropdown/DropdownGroup.tsx' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. +src/components/Dropdown/index.ts(3,15): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Dropdown/DropdownItem.tsx' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. +src/components/Dropdown/index.ts(4,15): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Dropdown/DropdownList.tsx' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. +src/components/DualListSelector/DualListSelector.tsx(96,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelector.tsx(105,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelector.tsx(137,38): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelector.tsx(139,35): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelector.tsx(140,40): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelector.tsx(141,43): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelector.tsx(142,38): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelector.tsx(162,60): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(163,57): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(165,17): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(186,10): error TS2339: Property 'state' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(187,34): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(191,31): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(212,27): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(213,29): error TS2339: Property 'state' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(214,27): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(215,29): error TS2339: Property 'state' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(217,12): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(218,36): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(219,33): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(225,29): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(228,14): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(235,14): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(241,14): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(247,14): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(254,14): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(260,14): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(268,10): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(268,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(272,43): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(281,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(281,33): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(282,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(282,39): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(289,9): error TS7018: Object literal's property 'chosenOptionsSelected' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(290,9): error TS7018: Object literal's property 'availableOptionsSelected' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(296,10): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(296,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(301,15): error TS7006: Parameter 'opt' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(302,18): error TS7006: Parameter 'item' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(314,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(314,33): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(315,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(315,39): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(322,9): error TS7018: Object literal's property 'availableTreeOptionsChecked' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(323,9): error TS7018: Object literal's property 'chosenTreeOptionsChecked' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(329,10): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(329,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(332,43): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(332,50): error TS7006: Parameter 'index' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(341,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(341,38): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(342,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(342,39): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(345,9): error TS7018: Object literal's property 'chosenOptionsSelected' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(346,9): error TS7018: Object literal's property 'availableOptionsSelected' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(356,10): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(356,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(359,15): error TS7006: Parameter 'opt' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(360,18): error TS7006: Parameter 'item' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(373,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(373,38): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(374,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(374,39): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(377,9): error TS7018: Object literal's property 'availableTreeOptionsChecked' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(378,9): error TS7018: Object literal's property 'chosenTreeOptionsChecked' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(386,10): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(386,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(390,40): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(399,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(399,36): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(400,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(400,39): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(407,9): error TS7018: Object literal's property 'chosenOptionsSelected' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(408,9): error TS7018: Object literal's property 'availableOptionsSelected' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(414,10): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(414,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(420,15): error TS7006: Parameter 'opt' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(421,18): error TS7006: Parameter 'item' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(430,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(430,36): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(431,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(431,39): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(436,9): error TS7018: Object literal's property 'availableTreeOptionsChecked' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(437,9): error TS7018: Object literal's property 'chosenTreeOptionsChecked' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(443,10): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(443,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(446,40): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(446,47): error TS7006: Parameter 'index' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(455,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(455,41): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(456,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(456,39): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(459,9): error TS7018: Object literal's property 'chosenOptionsSelected' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(460,9): error TS7018: Object literal's property 'availableOptionsSelected' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(470,10): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(470,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(473,15): error TS7006: Parameter 'opt' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(474,18): error TS7006: Parameter 'item' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(487,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(487,41): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(488,12): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(488,39): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(491,9): error TS7018: Object literal's property 'availableTreeOptionsChecked' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(492,9): error TS7018: Object literal's property 'chosenTreeOptionsChecked' implicitly has an 'any[]' type. +src/components/DualListSelector/DualListSelector.tsx(500,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelector.tsx(509,10): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(509,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(514,46): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(525,10): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(525,39): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(530,14): error TS2339: Property 'state' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(531,14): error TS2339: Property 'state' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(564,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelector.tsx(569,111): error TS2339: Property 'state' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(574,17): error TS7006: Parameter 'opt' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(575,20): error TS7006: Parameter 'item' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(584,17): error TS7006: Parameter 'opt' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(585,20): error TS7006: Parameter 'item' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(593,13): error TS7006: Parameter 'opt' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(594,16): error TS7006: Parameter 'item' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(597,41): error TS2339: Property 'state' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(597,79): error TS2339: Property 'state' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(602,44): error TS7006: Parameter 'id' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(605,10): error TS2339: Property 'setState' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(606,8): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(611,14): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(611,42): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(659,14): error TS2339: Property 'props' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(667,14): error TS2339: Property 'state' does not exist on type 'DualListSelector'. +src/components/DualListSelector/DualListSelector.tsx(686,33): error TS7006: Parameter 'item' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(691,30): error TS7006: Parameter 'item' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(697,10): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/DualListSelector/DualListSelector.tsx(698,13): error TS7006: Parameter 'randomId' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(713,37): error TS7006: Parameter 'e' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(713,40): error TS7006: Parameter 'isChecked' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(713,51): error TS7006: Parameter 'itemData' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(730,24): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/DualListSelector/DualListSelector.tsx(740,24): error TS2604: JSX element type 'AngleDoubleRightIcon' does not have any construct or call signatures. +src/components/DualListSelector/DualListSelector.tsx(750,24): error TS2604: JSX element type 'AngleDoubleLeftIcon' does not have any construct or call signatures. +src/components/DualListSelector/DualListSelector.tsx(763,24): error TS2604: JSX element type 'AngleLeftIcon' does not have any construct or call signatures. +src/components/DualListSelector/DualListSelector.tsx(778,37): error TS7006: Parameter 'e' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(778,40): error TS7006: Parameter 'isChecked' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelector.tsx(778,51): error TS7006: Parameter 'itemData' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelectorContext.ts(3,46): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorContext.ts(7,50): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorContext.ts(15,49): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelectorContext.ts(20,50): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorControl.tsx(14,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/DualListSelector/DualListSelectorControl.tsx(29,49): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DualListSelector/DualListSelectorControl.tsx(40,28): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorControl.tsx(61,46): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorControl.tsx(61,100): error TS2304: Cannot find name 'ForwardedRef'. +src/components/DualListSelector/DualListSelectorControlsWrapper.tsx(14,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRefObject'. +src/components/DualListSelector/DualListSelectorControlsWrapper.tsx(19,57): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DualListSelector/DualListSelectorControlsWrapper.tsx(26,21): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorControlsWrapper.tsx(58,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorControlsWrapper.tsx(80,54): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorControlsWrapper.tsx(82,65): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'MutableRefObject'. +src/components/DualListSelector/DualListSelectorList.tsx(14,42): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DualListSelector/DualListSelectorList.tsx(29,13): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorList.tsx(32,54): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelectorList.tsx(54,24): error TS7006: Parameter 'option' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelectorList.tsx(54,32): error TS7006: Parameter 'index' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelectorList.tsx(61,36): error TS7006: Parameter 'e' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelectorList.tsx(61,39): error TS7006: Parameter 'id' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelectorListItem.tsx(21,53): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelectorListItem.tsx(27,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRefObject'. +src/components/DualListSelector/DualListSelectorListItem.tsx(36,50): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DualListSelector/DualListSelectorListItem.tsx(50,28): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorListItem.tsx(52,38): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorListItem.tsx(85,16): error TS2604: JSX element type 'GripVerticalIcon' does not have any construct or call signatures. +src/components/DualListSelector/DualListSelectorListItem.tsx(100,47): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorListItem.tsx(102,58): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'MutableRefObject'. +src/components/DualListSelector/DualListSelectorListWrapper.tsx(18,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRefObject'. +src/components/DualListSelector/DualListSelectorListWrapper.tsx(24,49): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelectorListWrapper.tsx(31,53): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DualListSelector/DualListSelectorListWrapper.tsx(44,51): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorListWrapper.tsx(45,21): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorListWrapper.tsx(47,28): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorListWrapper.tsx(92,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorListWrapper.tsx(122,50): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorListWrapper.tsx(124,61): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'MutableRefObject'. +src/components/DualListSelector/DualListSelectorPane.tsx(39,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelectorPane.tsx(48,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelectorPane.tsx(57,28): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelectorPane.tsx(72,42): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DualListSelector/DualListSelectorPane.tsx(95,35): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorPane.tsx(96,28): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorPane.tsx(171,26): error TS7006: Parameter 'e' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelectorPane.tsx(196,43): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelectorPane.tsx(204,98): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/DualListSelector/DualListSelectorPane.tsx(215,98): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/DualListSelector/DualListSelectorTree.tsx(17,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelectorTree.tsx(57,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelectorTree.tsx(63,42): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DualListSelector/DualListSelectorTreeItem.tsx(21,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelectorTreeItem.tsx(43,43): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/DualListSelector/DualListSelectorTreeItem.tsx(60,21): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorTreeItem.tsx(61,45): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorTreeItem.tsx(62,38): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorTreeItem.tsx(64,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorTreeItem.tsx(122,20): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/DualListSelector/DualListSelectorTreeItem.tsx(129,39): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/DualListSelector/DualListSelectorTreeItem.tsx(162,47): error TS2339: Property 'memo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/DualListSelector/DualListSelectorTreeItem.tsx(162,83): error TS7006: Parameter 'prevProps' implicitly has an 'any' type. +src/components/DualListSelector/DualListSelectorTreeItem.tsx(162,94): error TS7006: Parameter 'nextProps' implicitly has an 'any' type. +src/components/EmptyState/EmptyState.tsx(24,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/EmptyState/EmptyStateActions.tsx(12,39): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/EmptyState/EmptyStateBody.tsx(12,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/EmptyState/EmptyStateFooter.tsx(12,38): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/EmptyState/EmptyStateHeader.tsx(21,38): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/EmptyState/EmptyStateIcon.tsx(20,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/EmptyState/EmptyStateIcon.tsx(26,36): error TS2604: JSX element type 'IconComponent' does not have any construct or call signatures. +src/components/EmptyState/EmptyStateIcon.tsx(31,95): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/EmptyState/EmptyStateIcon.tsx(33,8): error TS2604: JSX element type 'IconComponent' does not have any construct or call signatures. +src/components/ExpandableSection/ExpandableSection.tsx(17,18): error TS2430: Interface 'ExpandableSectionProps' incorrectly extends interface 'HTMLProps'. + Types of property 'onToggle' are incompatible. + Type '(event: any, isExpanded: boolean) => void' is not assignable to type 'GenericEventHandler'. +src/components/ExpandableSection/ExpandableSection.tsx(84,39): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/ExpandableSection/ExpandableSection.tsx(89,10): error TS2339: Property 'state' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(96,32): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/ExpandableSection/ExpandableSection.tsx(130,14): error TS2339: Property 'props' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(132,12): error TS2339: Property 'setState' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(135,16): error TS2339: Property 'props' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(136,27): error TS2339: Property 'props' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(145,12): error TS2339: Property 'props' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(146,43): error TS2339: Property 'props' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(149,25): error TS2339: Property 'props' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(155,14): error TS2339: Property 'props' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(162,29): error TS2339: Property 'props' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(167,12): error TS2339: Property 'setState' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(175,14): error TS2339: Property 'state' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(176,12): error TS2339: Property 'setState' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(204,14): error TS2339: Property 'props' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(220,36): error TS2339: Property 'state' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(221,19): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/ExpandableSection/ExpandableSection.tsx(221,26): error TS7006: Parameter 'isOpen' implicitly has an 'any' type. +src/components/ExpandableSection/ExpandableSection.tsx(222,14): error TS2339: Property 'setState' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(222,78): error TS2339: Property 'state' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSection.tsx(244,14): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/ExpandableSection/ExpandableSection.tsx(277,64): error TS2339: Property 'state' does not exist on type 'ExpandableSection'. +src/components/ExpandableSection/ExpandableSectionToggle.tsx(10,18): error TS2430: Interface 'ExpandableSectionToggleProps' incorrectly extends interface 'HTMLProps'. + Types of property 'onToggle' are incompatible. + Type '(isExpanded: boolean) => void' is not assignable to type 'GenericEventHandler'. + Types of parameters 'isExpanded' and 'event' are incompatible. + Type 'TargetedEvent' is not assignable to type 'boolean'. +src/components/ExpandableSection/ExpandableSectionToggle.tsx(33,45): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/ExpandableSection/ExpandableSectionToggle.tsx(69,12): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/FileUpload/FileUpload.tsx(70,24): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'MouseEventHandler'. +src/components/FileUpload/FileUpload.tsx(80,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/FileUpload/FileUpload.tsx(83,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/FileUpload/FileUpload.tsx(146,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/FileUpload/FileUploadField.tsx(80,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/FileUpload/FileUploadField.tsx(85,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/FileUpload/FileUploadField.tsx(117,42): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/Form/ActionGroup.tsx(12,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Form/Form.tsx(17,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Form/Form.tsx(20,23): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Form/Form.tsx(34,9): error TS2698: Spread types may only be created from object types. +src/components/Form/Form.tsx(35,18): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/Form/Form.tsx(50,27): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Form/Form.tsx(50,62): error TS2304: Cannot find name 'ForwardedRef'. +src/components/Form/FormAlert.tsx(11,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Form/FormContext.tsx(1,17): error TS2305: Module '"react"' has no exported member 'Dispatch'. +src/components/Form/FormContext.tsx(38,27): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Form/FormContext.tsx(49,41): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FC'. +src/components/Form/FormContext.tsx(49,75): error TS7031: Binding element 'initialValues' implicitly has an 'any' type. +src/components/Form/FormContext.tsx(49,90): error TS7031: Binding element 'children' implicitly has an 'any' type. +src/components/Form/FormContext.tsx(50,37): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Form/FormContext.tsx(51,37): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Form/FormContext.tsx(52,45): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Form/FormContext.tsx(53,39): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Form/FormContext.tsx(57,57): error TS2769: No overload matches this call. + Overload 1 of 3, '(callbackfn: (previousValue: [string, unknown], currentValue: [string, unknown], currentIndex: number, array: [string, unknown][]) => [string, unknown], initialValue: [string, unknown]): [string, unknown]', gave the following error. + Type 'unknown' is not assignable to type '[string, unknown]'. + Overload 2 of 3, '(callbackfn: (previousValue: string, currentValue: [string, unknown], currentIndex: number, array: [string, unknown][]) => string, initialValue: string): string', gave the following error. + Type 'unknown' is not assignable to type 'string'. +src/components/Form/FormContext.tsx(61,18): error TS7006: Parameter 'prevValues' implicitly has an 'any' type. +src/components/Form/FormContext.tsx(67,57): error TS2769: No overload matches this call. + Overload 1 of 3, '(callbackfn: (previousValue: [string, unknown], currentValue: [string, unknown], currentIndex: number, array: [string, unknown][]) => [string, unknown], initialValue: [string, unknown]): [string, unknown]', gave the following error. + Type 'unknown' is not assignable to type '[string, unknown]'. + Overload 2 of 3, '(callbackfn: (previousValue: string, currentValue: [string, unknown], currentIndex: number, array: [string, unknown][]) => string, initialValue: string): string', gave the following error. + Type 'unknown' is not assignable to type 'string'. +src/components/Form/FormContext.tsx(77,62): error TS2769: No overload matches this call. + Overload 1 of 3, '(callbackfn: (previousValue: [string, unknown], currentValue: [string, unknown], currentIndex: number, array: [string, unknown][]) => [string, unknown], initialValue: [string, unknown]): [string, unknown]', gave the following error. + Type 'unknown' is not assignable to type '[string, unknown]'. + Overload 2 of 3, '(callbackfn: (previousValue: boolean, currentValue: [string, unknown], currentIndex: number, array: [string, unknown][]) => boolean, initialValue: boolean): boolean', gave the following error. + Type 'unknown' is not assignable to type 'boolean'. +src/components/Form/FormContext.tsx(87,56): error TS7006: Parameter 'prevValidators' implicitly has an 'any' type. +src/components/Form/FormContext.tsx(92,26): error TS2349: This expression is not callable. + Type '{}' has no call signatures. +src/components/Form/FormContext.tsx(121,33): error TS7006: Parameter 'formContext' implicitly has an 'any' type. +src/components/Form/FormContext.tsx(130,43): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Form/FormFieldGroup.tsx(13,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Form/FormFieldGroupExpandable.tsx(2,10): error TS2305: Module '"react"' has no exported member 'useState'. +src/components/Form/FormFieldGroupExpandable.tsx(18,46): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Form/FormFieldGroupHeader.tsx(26,42): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Form/FormFieldGroupToggle.tsx(22,42): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Form/FormFieldGroupToggle.tsx(42,12): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Form/FormGroup.tsx(36,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Form/FormGroup.tsx(64,14): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Form/FormGroup.tsx(69,6): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/Form/FormGroup.tsx(70,9): error TS7006: Parameter 'randomId' implicitly has an 'any' type. +src/components/Form/FormGroup.tsx(71,10): error TS2322: Type '{ children: Element[]; ref?: Ref; icon?: any; accept?: string | SignalLike; acceptCharset?: string | SignalLike; ... 400 more ...; className: string; }' is not assignable to type 'HTMLAttributes'. + Types of property 'role' are incompatible. + Type 'string' is not assignable to type 'AriaRole | SignalLike'. +src/components/Form/FormHelperText.tsx(12,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Form/FormSection.tsx(17,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Form/FormSection.tsx(24,3): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Form/FormSection.tsx(24,4): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/Form/FormSection.tsx(25,7): error TS7006: Parameter 'sectionId' implicitly has an 'any' type. +src/components/Form/FormSection.tsx(26,8): error TS2322: Type '{ children: (ReactNode | Element)[]; ref?: Ref; icon?: any; role: any; accept?: string | SignalLike; acceptCharset?: string | SignalLike<...>; ... 399 more ...; className: string; }' is not assignable to type 'HTMLAttributes'. + Types of property 'ref' are incompatible. + Type 'Ref' is not assignable to type 'Ref'. +src/components/Form/InternalFormFieldGroup.tsx(24,44): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Form/InternalFormFieldGroup.tsx(50,9): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Form/InternalFormFieldGroup.tsx(50,10): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/Form/InternalFormFieldGroup.tsx(51,13): error TS7006: Parameter 'id' implicitly has an 'any' type. +src/components/FormControl/FormControlIcon.tsx(27,6): error TS2322: Type '{ children: string | number | bigint | true | object; icon?: any; role?: any; accept?: string | SignalLike; acceptCharset?: string | SignalLike; ... 401 more ...; className: string; }' is not assignable to type 'HTMLAttributes'. + Types of property 'ref' are incompatible. + Type 'Ref' is not assignable to type 'Ref'. + Type 'RefCallback' is not assignable to type 'Ref'. + Type 'RefCallback' is not assignable to type 'RefCallback'. + Property 'align' is missing in type 'HTMLSpanElement' but required in type 'HTMLDivElement'. +src/components/FormControl/FormControlIcon.tsx(28,23): error TS2604: JSX element type 'StatusIcon' does not have any construct or call signatures. +src/components/FormSelect/FormSelect.tsx(42,32): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/FormSelect/FormSelect.tsx(50,10): error TS2339: Property 'state' does not exist on type 'FormSelect'. +src/components/FormSelect/FormSelect.tsx(68,10): error TS2339: Property 'props' does not exist on type 'FormSelect'. +src/components/FormSelect/FormSelect.tsx(72,112): error TS2339: Property 'props' does not exist on type 'FormSelect'. +src/components/FormSelect/FormSelect.tsx(74,34): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/FormSelect/FormSelect.tsx(91,89): error TS2339: Property 'state' does not exist on type 'FormSelect'. +src/components/FormSelect/FormSelect.tsx(102,14): error TS2604: JSX element type 'CaretDownIcon' does not have any construct or call signatures. +src/components/FormSelect/FormSelectOption.tsx(16,38): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/FormSelect/FormSelectOptionGroup.tsx(14,43): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/HelperText/HelperText.tsx(25,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/HelperText/HelperTextItem.tsx(46,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/HelperText/HelperTextItem.tsx(72,71): error TS2604: JSX element type 'MinusIcon' does not have any construct or call signatures. +src/components/HelperText/HelperTextItem.tsx(73,38): error TS2604: JSX element type 'ExclamationTriangleIcon' does not have any construct or call signatures. +src/components/HelperText/HelperTextItem.tsx(74,38): error TS2604: JSX element type 'CheckCircleIcon' does not have any construct or call signatures. +src/components/HelperText/HelperTextItem.tsx(75,36): error TS2604: JSX element type 'ExclamationCircleIcon' does not have any construct or call signatures. +src/components/Hint/Hint.tsx(14,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Hint/HintBody.tsx(12,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Hint/HintFooter.tsx(12,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Hint/HintTitle.tsx(12,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Icon/Icon.tsx(29,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/index.ts(26,15): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Dropdown/index.ts' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. + The file is in the program because: + Imported via './Dropdown' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/index.ts' + Imported via '../Dropdown' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/OverflowMenu/OverflowMenuDropdownItem.tsx' +src/components/index.ts(65,15): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/index.ts' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. +src/components/InputGroup/InputGroup.tsx(14,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/InputGroup/InputGroup.tsx(17,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/InputGroup/InputGroup.tsx(25,13): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/InputGroup/InputGroup.tsx(32,11): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/InputGroup/InputGroup.tsx(43,21): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/InputGroup/InputGroup.tsx(46,32): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/InputGroup/InputGroup.tsx(48,33): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/InputGroup/InputGroup.tsx(48,69): error TS7006: Parameter '_child' implicitly has an 'any' type. +src/components/InputGroup/InputGroup.tsx(58,22): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/InputGroup/InputGroup.tsx(62,20): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/InputGroup/InputGroup.tsx(71,18): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/InputGroup/InputGroup.tsx(83,33): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/InputGroup/InputGroupItem.tsx(20,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/InputGroup/InputGroupText.tsx(19,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/JumpLinks/JumpLinks.tsx(51,9): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinks.tsx(78,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/JumpLinks/JumpLinks.tsx(95,47): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinks.tsx(96,47): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinks.tsx(97,45): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinks.tsx(99,31): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinks.tsx(101,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinks.tsx(102,24): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinks.tsx(106,27): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinks.tsx(120,31): error TS7006: Parameter 'e' implicitly has an 'any' type. +src/components/JumpLinks/JumpLinks.tsx(127,15): error TS7006: Parameter 'e' implicitly has an 'any' type. +src/components/JumpLinks/JumpLinks.tsx(127,18): error TS7006: Parameter 'index' implicitly has an 'any' type. +src/components/JumpLinks/JumpLinks.tsx(131,20): error TS7031: Binding element 'y' implicitly has an 'any' type. +src/components/JumpLinks/JumpLinks.tsx(132,16): error TS7006: Parameter 'e1' implicitly has an 'any' type. +src/components/JumpLinks/JumpLinks.tsx(132,20): error TS7006: Parameter 'e2' implicitly has an 'any' type. +src/components/JumpLinks/JumpLinks.tsx(141,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinks.tsx(151,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinks.tsx(159,15): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinks.tsx(164,26): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinks.tsx(210,26): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinks.tsx(240,20): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/JumpLinks/JumpLinksItem.tsx(21,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/JumpLinks/JumpLinksItem.tsx(31,29): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/JumpLinks/JumpLinksList.tsx(12,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Label/Label.tsx(2,10): error TS2305: Module '"react"' has no exported member 'useState'. +src/components/Label/Label.tsx(85,27): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Label/Label.tsx(109,35): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Label/Label.tsx(110,34): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Label/Label.tsx(112,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Label/Label.tsx(193,8): error TS2604: JSX element type 'TimesIcon' does not have any construct or call signatures. +src/components/Label/Label.tsx(198,25): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Label/Label.tsx(200,30): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Label/Label.tsx(201,57): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Label/Label.tsx(217,22): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/Label/Label.tsx(225,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Label/LabelGroup.tsx(70,32): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Label/LabelGroup.tsx(74,10): error TS2339: Property 'state' does not exist on type 'LabelGroup'. +src/components/Label/LabelGroup.tsx(75,20): error TS2339: Property 'props' does not exist on type 'LabelGroup'. +src/components/Label/LabelGroup.tsx(79,30): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Label/LabelGroup.tsx(100,10): error TS2339: Property 'setState' does not exist on type 'LabelGroup'. +src/components/Label/LabelGroup.tsx(108,10): error TS2339: Property 'setState' does not exist on type 'LabelGroup'. +src/components/Label/LabelGroup.tsx(108,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/Label/LabelGroup.tsx(117,52): error TS2339: Property 'props' does not exist on type 'LabelGroup'. +src/components/Label/LabelGroup.tsx(118,39): error TS2339: Property 'state' does not exist on type 'LabelGroup'. +src/components/Label/LabelGroup.tsx(157,14): error TS2339: Property 'props' does not exist on type 'LabelGroup'. +src/components/Label/LabelGroup.tsx(158,29): error TS2339: Property 'state' does not exist on type 'LabelGroup'. +src/components/Label/LabelGroup.tsx(159,36): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Label/LabelGroup.tsx(178,30): error TS7006: Parameter 'child' implicitly has an 'any' type. +src/components/Label/LabelGroup.tsx(178,37): error TS7006: Parameter 'i' implicitly has an 'any' type. +src/components/Label/LabelGroup.tsx(213,14): error TS2604: JSX element type 'TimesCircleIcon' does not have any construct or call signatures. +src/components/Label/LabelGroup.tsx(235,8): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/Label/LabelGroup.tsx(235,21): error TS7006: Parameter 'randomId' implicitly has an 'any' type. +src/components/Label/LabelGroup.tsx(235,56): error TS2339: Property 'props' does not exist on type 'LabelGroup'. +src/components/List/List.tsx(43,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/List/List.tsx(57,25): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'LegacyRef'. +src/components/List/List.tsx(74,25): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'LegacyRef'. +src/components/List/ListItem.tsx(12,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/LoginPage/Login.tsx(16,27): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/LoginPage/LoginFooter.tsx(12,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/LoginPage/LoginFooterItem.tsx(14,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/LoginPage/LoginFooterItem.tsx(20,9): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/LoginPage/LoginForm.tsx(59,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/LoginPage/LoginForm.tsx(84,53): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/LoginPage/LoginForm.tsx(131,36): error TS2604: JSX element type 'EyeIcon' does not have any construct or call signatures. +src/components/LoginPage/LoginForm.tsx(131,50): error TS2604: JSX element type 'EyeSlashIcon' does not have any construct or call signatures. +src/components/LoginPage/LoginForm.tsx(140,11): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/LoginPage/LoginForm.tsx(140,12): error TS2786: 'Checkbox' cannot be used as a JSX component. + Its instance type 'Checkbox' is not a valid JSX element. +src/components/LoginPage/LoginHeader.tsx(14,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/LoginPage/LoginHeader.tsx(20,4): error TS2322: Type '{ children: ReactNode[]; icon?: any; role?: any; accept?: string | SignalLike; acceptCharset?: string | SignalLike; accessKey?: string | SignalLike<...>; ... 400 more ...; className: string; }' is not assignable to type 'HTMLAttributes'. + Types of property 'ref' are incompatible. + Type 'Ref' is not assignable to type 'Ref'. +src/components/LoginPage/LoginMainBody.tsx(12,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/LoginPage/LoginMainFooter.tsx(20,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/LoginPage/LoginMainFooterBandItem.tsx(12,45): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/LoginPage/LoginMainFooterLinksItem.tsx(20,46): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/LoginPage/LoginMainHeader.tsx(19,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/LoginPage/LoginMainHeader.tsx(27,4): error TS2322: Type '{ children: (ReactNode | Element)[]; icon?: any; role?: any; accept?: string | SignalLike; acceptCharset?: string | SignalLike; ... 400 more ...; className: string; }' is not assignable to type 'HTMLAttributes'. + Types of property 'ref' are incompatible. + Type 'Ref' is not assignable to type 'Ref'. +src/components/LoginPage/LoginPage.tsx(48,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Masthead/Masthead.tsx(7,46): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/Masthead/Masthead.tsx(34,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Masthead/Masthead.tsx(44,42): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Masthead/MastheadBrand.tsx(6,17): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/Masthead/MastheadBrand.tsx(15,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Masthead/MastheadBrand.tsx(23,16): error TS2339: Property 'href' does not exist on type '{}'. +src/components/Masthead/MastheadContent.tsx(5,53): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/Masthead/MastheadContent.tsx(12,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Masthead/MastheadMain.tsx(5,50): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/Masthead/MastheadMain.tsx(12,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Masthead/MastheadToggle.tsx(5,52): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/Masthead/MastheadToggle.tsx(12,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Menu/DrilldownMenu.tsx(7,56): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'HTMLAttributes'. +src/components/Menu/DrilldownMenu.tsx(18,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Menu/DrilldownMenu.tsx(27,9): error TS7031: Binding element 'menuId' implicitly has an 'any' type. +src/components/Menu/DrilldownMenu.tsx(27,17): error TS7031: Binding element 'parentMenu' implicitly has an 'any' type. +src/components/Menu/DrilldownMenu.tsx(27,29): error TS7031: Binding element 'flyoutRef' implicitly has an 'any' type. +src/components/Menu/DrilldownMenu.tsx(27,40): error TS7031: Binding element 'setFlyoutRef' implicitly has an 'any' type. +src/components/Menu/DrilldownMenu.tsx(27,54): error TS7031: Binding element 'disableHover' implicitly has an 'any' type. +src/components/Menu/DrilldownMenu.tsx(33,20): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/Menu.tsx(8,47): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'HTMLAttributes'. +src/components/Menu/Menu.tsx(51,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Menu/Menu.tsx(75,30): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/Menu.tsx(78,19): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ContextType'. +src/components/Menu/Menu.tsx(79,27): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/Menu.tsx(92,46): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Menu/Menu.tsx(101,34): error TS2339: Property 'props' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(119,12): error TS2339: Property 'setState' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(122,53): error TS2339: Property 'props' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(135,37): error TS2339: Property 'props' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(154,12): error TS2339: Property 'setState' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(156,57): error TS2339: Property 'props' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(160,14): error TS2339: Property 'setState' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(166,22): error TS2339: Property 'classList' does not exist on type 'unknown'. +src/components/Menu/Menu.tsx(166,64): error TS2339: Property 'classList' does not exist on type 'unknown'. +src/components/Menu/Menu.tsx(167,12): error TS2339: Property 'firstChild' does not exist on type 'unknown'. +src/components/Menu/Menu.tsx(175,30): error TS2339: Property 'props' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(183,12): error TS2339: Property 'setState' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(203,16): error TS2339: Property 'setState' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(212,18): error TS2339: Property 'setState' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(221,30): error TS2339: Property 'props' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(232,26): error TS2339: Property 'classList' does not exist on type 'unknown'. +src/components/Menu/Menu.tsx(232,68): error TS2339: Property 'classList' does not exist on type 'unknown'. +src/components/Menu/Menu.tsx(268,14): error TS2339: Property 'props' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(285,26): error TS7006: Parameter 'flyoutRef' implicitly has an 'any' type. +src/components/Menu/Menu.tsx(285,45): error TS2339: Property 'setState' does not exist on type 'MenuBase'. +src/components/Menu/Menu.tsx(291,11): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Menu/Menu.tsx(291,12): error TS2786: 'KeyboardHandler' cannot be used as a JSX component. + Its instance type 'KeyboardHandler' is not a valid JSX element. + Type 'KeyboardHandler' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/Menu/Menu.tsx(292,50): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Menu/Menu.tsx(341,27): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/Menu.tsx(342,3): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Menu/Menu.tsx(342,4): error TS2786: 'MenuBase' cannot be used as a JSX component. + Its instance type 'MenuBase' is not a valid JSX element. + Type 'MenuBase' is missing the following properties from type 'Component': props, setState, forceUpdate +src/components/Menu/MenuBreadcrumb.tsx(5,57): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'HTMLAttributes'. +src/components/Menu/MenuBreadcrumb.tsx(10,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Menu/MenuContainer.tsx(22,18): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Menu/MenuContainer.tsx(26,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Menu/MenuContainer.tsx(44,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Menu/MenuContainer.tsx(55,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuContent.tsx(10,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Menu/MenuContent.tsx(19,34): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuContent.tsx(21,32): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuContent.tsx(54,11): error TS7031: Binding element 'menuId' implicitly has an 'any' type. +src/components/Menu/MenuContent.tsx(54,19): error TS7031: Binding element 'onGetMenuHeight' implicitly has an 'any' type. +src/components/Menu/MenuContent.tsx(63,24): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/Menu/MenuContext.ts(3,34): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuContext.ts(27,18): error TS7011: Function expression, which lacks return-type annotation, implicitly has an 'any' return type. +src/components/Menu/MenuContext.ts(28,13): error TS7011: Function expression, which lacks return-type annotation, implicitly has an 'any' return type. +src/components/Menu/MenuContext.ts(35,20): error TS7011: Function expression, which lacks return-type annotation, implicitly has an 'any' return type. +src/components/Menu/MenuContext.ts(37,17): error TS7011: Function expression, which lacks return-type annotation, implicitly has an 'any' return type. +src/components/Menu/MenuContext.ts(42,38): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuFooter.tsx(12,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Menu/MenuGroup.tsx(15,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Menu/MenuGroup.tsx(20,28): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Menu/MenuGroup.tsx(34,12): error TS2604: JSX element type 'Wrapper' does not have any construct or call signatures. +src/components/Menu/MenuGroup.tsx(46,32): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuItem.tsx(81,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Menu/MenuItem.tsx(86,29): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuItem.tsx(90,27): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Menu/MenuItem.tsx(138,13): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuItem.tsx(143,49): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuItem.tsx(144,31): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuItem.tsx(145,57): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuItem.tsx(146,21): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuItem.tsx(200,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuItem.tsx(204,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuItem.tsx(320,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuItem.tsx(340,8): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/Menu/MenuItem.tsx(341,11): error TS7006: Parameter 'randomId' implicitly has an 'any' type. +src/components/Menu/MenuItem.tsx(368,20): error TS2604: JSX element type 'AngleLeftIcon' does not have any construct or call signatures. +src/components/Menu/MenuItem.tsx(374,19): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Menu/MenuItem.tsx(374,20): error TS2786: 'Checkbox' cannot be used as a JSX component. + Its instance type 'Checkbox' is not a valid JSX element. + Type 'Checkbox' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/Menu/MenuItem.tsx(378,32): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Menu/MenuItem.tsx(387,20): error TS2604: JSX element type 'ExternalLinkAltIcon' does not have any construct or call signatures. +src/components/Menu/MenuItem.tsx(392,20): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Menu/MenuItem.tsx(397,20): error TS2604: JSX element type 'CheckIcon' does not have any construct or call signatures. +src/components/Menu/MenuItem.tsx(422,23): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Menu/MenuItem.tsx(460,31): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuItem.tsx(460,70): error TS2304: Cannot find name 'ForwardedRef'. +src/components/Menu/MenuItemAction.tsx(23,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Menu/MenuItemAction.tsx(26,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Menu/MenuItemAction.tsx(38,9): error TS7031: Binding element 'onActionClick' implicitly has an 'any' type. +src/components/Menu/MenuItemAction.tsx(40,13): error TS7031: Binding element 'itemId' implicitly has an 'any' type. +src/components/Menu/MenuItemAction.tsx(40,33): error TS7031: Binding element 'isDisabledContext' implicitly has an 'any' type. +src/components/Menu/MenuItemAction.tsx(63,66): error TS2604: JSX element type 'StarIcon' does not have any construct or call signatures. +src/components/Menu/MenuItemAction.tsx(73,37): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuList.tsx(19,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Menu/MenuList.tsx(26,26): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuSearch.tsx(9,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Menu/MenuSearch.tsx(12,33): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Menu/MenuSearchInput.tsx(8,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Menu/MenuSearchInput.tsx(11,38): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MenuToggle/MenuToggle.tsx(18,11): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/MenuToggle/MenuToggle.tsx(19,61): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'HTMLAttributes'. +src/components/MenuToggle/MenuToggle.tsx(47,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/MenuToggle/MenuToggle.tsx(50,36): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MenuToggle/MenuToggle.tsx(76,14): error TS2339: Property 'props' does not exist on type 'MenuToggleBase'. +src/components/MenuToggle/MenuToggle.tsx(83,12): error TS2604: JSX element type 'CaretDownIcon' does not have any construct or call signatures. +src/components/MenuToggle/MenuToggle.tsx(92,16): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MenuToggle/MenuToggle.tsx(179,33): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MenuToggle/MenuToggle.tsx(180,3): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/MenuToggle/MenuToggle.tsx(180,4): error TS2786: 'MenuToggleBase' cannot be used as a JSX component. + Its instance type 'MenuToggleBase' is not a valid JSX element. + Type 'MenuToggleBase' is not assignable to type 'FunctionComponent'. + Type 'MenuToggleBase' provides no match for the signature '(props: any, context?: any): VNode'. +src/components/MenuToggle/MenuToggleAction.tsx(18,38): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MenuToggle/MenuToggleAction.tsx(27,77): error TS2339: Property 'props' does not exist on type 'MenuToggleAction'. +src/components/MenuToggle/MenuToggleCheckbox.tsx(36,40): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MenuToggle/MenuToggleCheckbox.tsx(46,10): error TS2339: Property 'state' does not exist on type 'MenuToggleCheckbox'. +src/components/MenuToggle/MenuToggleCheckbox.tsx(52,10): error TS2339: Property 'props' does not exist on type 'MenuToggleCheckbox'. +src/components/MenuToggle/MenuToggleCheckbox.tsx(56,48): error TS2339: Property 'props' does not exist on type 'MenuToggleCheckbox'. +src/components/MenuToggle/MenuToggleCheckbox.tsx(80,14): error TS2339: Property 'props' does not exist on type 'MenuToggleCheckbox'. +src/components/MenuToggle/MenuToggleCheckbox.tsx(99,50): error TS2339: Property 'state' does not exist on type 'MenuToggleCheckbox'. +src/components/Modal/Modal.tsx(99,27): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Modal/Modal.tsx(135,10): error TS2339: Property 'state' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(142,36): error TS2339: Property 'props' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(143,47): error TS2339: Property 'props' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(144,51): error TS2339: Property 'props' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(156,31): error TS2339: Property 'props' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(160,26): error TS2339: Property 'state' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(176,14): error TS2339: Property 'props' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(179,10): error TS2339: Property 'setState' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(183,14): error TS2339: Property 'props' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(203,31): error TS2339: Property 'props' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(205,14): error TS2339: Property 'props' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(215,31): error TS2339: Property 'props' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(217,14): error TS2339: Property 'state' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(218,31): error TS2339: Property 'state' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(244,14): error TS2339: Property 'props' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(245,32): error TS2339: Property 'state' does not exist on type 'Modal'. +src/components/Modal/Modal.tsx(265,54): error TS2339: Property 'state' does not exist on type 'Modal'. +src/components/Modal/ModalBox.tsx(25,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Modal/ModalBoxBody.tsx(12,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Modal/ModalBoxCloseButton.tsx(19,41): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Modal/ModalBoxCloseButton.tsx(29,17): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Modal/ModalBoxCloseButton.tsx(34,8): error TS2604: JSX element type 'TimesIcon' does not have any construct or call signatures. +src/components/Modal/ModalBoxDescription.tsx(14,41): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Modal/ModalBoxFooter.tsx(12,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Modal/ModalBoxHeader.tsx(14,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Modal/ModalBoxTitle.tsx(30,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Modal/ModalBoxTitle.tsx(38,45): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Modal/ModalBoxTitle.tsx(39,20): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Modal/ModalBoxTitle.tsx(42,15): error TS2604: JSX element type 'CheckCircleIcon' does not have any construct or call signatures. +src/components/Modal/ModalBoxTitle.tsx(43,14): error TS2604: JSX element type 'ExclamationCircleIcon' does not have any construct or call signatures. +src/components/Modal/ModalBoxTitle.tsx(44,15): error TS2604: JSX element type 'ExclamationTriangleIcon' does not have any construct or call signatures. +src/components/Modal/ModalBoxTitle.tsx(45,12): error TS2604: JSX element type 'InfoCircleIcon' does not have any construct or call signatures. +src/components/Modal/ModalBoxTitle.tsx(46,14): error TS2604: JSX element type 'BellIcon' does not have any construct or call signatures. +src/components/Modal/ModalBoxTitle.tsx(63,80): error TS2604: JSX element type 'CustomIcon' does not have any construct or call signatures. +src/components/Modal/ModalContent.tsx(94,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Modal/ModalContent.tsx(197,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/Modal/ModalContent.tsx(200,52): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/MultipleFileUpload/MultipleFileUpload.tsx(25,48): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MultipleFileUpload/MultipleFileUpload.tsx(29,40): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/MultipleFileUpload/MultipleFileUpload.tsx(51,15): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/MultipleFileUpload/MultipleFileUploadButton.tsx(16,46): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/MultipleFileUpload/MultipleFileUploadButton.tsx(28,26): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MultipleFileUpload/MultipleFileUploadInfo.tsx(12,44): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/MultipleFileUpload/MultipleFileUploadMain.tsx(28,44): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/MultipleFileUpload/MultipleFileUploadStatus.tsx(29,46): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/MultipleFileUpload/MultipleFileUploadStatus.tsx(37,33): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MultipleFileUpload/MultipleFileUploadStatus.tsx(38,37): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MultipleFileUpload/MultipleFileUploadStatus.tsx(40,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MultipleFileUpload/MultipleFileUploadStatus.tsx(43,18): error TS2604: JSX element type 'TimesCircleIcon' does not have any construct or call signatures. +src/components/MultipleFileUpload/MultipleFileUploadStatus.tsx(46,18): error TS2604: JSX element type 'CheckCircleIcon' does not have any construct or call signatures. +src/components/MultipleFileUpload/MultipleFileUploadStatus.tsx(49,18): error TS2604: JSX element type 'InProgressIcon' does not have any construct or call signatures. +src/components/MultipleFileUpload/MultipleFileUploadStatus.tsx(69,7): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/MultipleFileUpload/MultipleFileUploadStatus.tsx(69,8): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/MultipleFileUpload/MultipleFileUploadStatus.tsx(70,11): error TS7006: Parameter 'expandableSectionId' implicitly has an 'any' type. +src/components/MultipleFileUpload/MultipleFileUploadStatus.tsx(71,11): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/MultipleFileUpload/MultipleFileUploadStatus.tsx(71,12): error TS2786: 'ExpandableSection' cannot be used as a JSX component. + Its instance type 'ExpandableSection' is not a valid JSX element. + Type 'ExpandableSection' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/MultipleFileUpload/MultipleFileUploadStatusItem.tsx(30,24): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'MouseEventHandler'. +src/components/MultipleFileUpload/MultipleFileUploadStatusItem.tsx(61,50): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/MultipleFileUpload/MultipleFileUploadStatusItem.tsx(83,53): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MultipleFileUpload/MultipleFileUploadStatusItem.tsx(84,45): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MultipleFileUpload/MultipleFileUploadStatusItem.tsx(100,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/MultipleFileUpload/MultipleFileUploadStatusItem.tsx(149,78): error TS2604: JSX element type 'FileIcon' does not have any construct or call signatures. +src/components/MultipleFileUpload/MultipleFileUploadStatusItem.tsx(158,9): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/MultipleFileUpload/MultipleFileUploadStatusItem.tsx(158,10): error TS2786: 'Progress' cannot be used as a JSX component. + Its instance type 'Progress' is not a valid JSX element. + Type 'Progress' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/MultipleFileUpload/MultipleFileUploadStatusItem.tsx(170,12): error TS2604: JSX element type 'TimesCircleIcon' does not have any construct or call signatures. +src/components/MultipleFileUpload/MultipleFileUploadTitle.tsx(18,45): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/MultipleFileUpload/MultipleFileUploadTitleIcon.tsx(11,49): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/MultipleFileUpload/MultipleFileUploadTitleText.tsx(12,49): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/MultipleFileUpload/MultipleFileUploadTitleTextSeparator.tsx(12,58): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Nav/Nav.tsx(13,22): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/Nav/Nav.tsx(13,46): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'HTMLAttributes'. +src/components/Nav/Nav.tsx(62,18): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Nav/Nav.tsx(65,33): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/Nav.tsx(67,25): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/Nav.tsx(81,57): error TS2339: Property 'props' does not exist on type 'Nav'. +src/components/Nav/Nav.tsx(85,18): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/Nav.tsx(100,10): error TS2339: Property 'props' does not exist on type 'Nav'. +src/components/Nav/Nav.tsx(109,10): error TS2339: Property 'props' does not exist on type 'Nav'. +src/components/Nav/Nav.tsx(129,14): error TS2339: Property 'props' does not exist on type 'Nav'. +src/components/Nav/Nav.tsx(150,63): error TS2339: Property 'setState' does not exist on type 'Nav'. +src/components/Nav/Nav.tsx(153,26): error TS7006: Parameter 'flyoutRef' implicitly has an 'any' type. +src/components/Nav/Nav.tsx(153,45): error TS2339: Property 'setState' does not exist on type 'Nav'. +src/components/Nav/NavExpandable.tsx(12,17): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/Nav/NavExpandable.tsx(12,41): error TS2724: '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member named 'LiHTMLAttributes'. Did you mean 'ImgHTMLAttributes'? +src/components/Nav/NavExpandable.tsx(43,35): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/NavExpandable.tsx(55,13): error TS2339: Property 'props' does not exist on type 'NavExpandable'. +src/components/Nav/NavExpandable.tsx(58,25): error TS2339: Property 'props' does not exist on type 'NavExpandable'. +src/components/Nav/NavExpandable.tsx(63,10): error TS2339: Property 'setState' does not exist on type 'NavExpandable'. +src/components/Nav/NavExpandable.tsx(63,41): error TS2339: Property 'props' does not exist on type 'NavExpandable'. +src/components/Nav/NavExpandable.tsx(67,14): error TS2339: Property 'props' does not exist on type 'NavExpandable'. +src/components/Nav/NavExpandable.tsx(68,12): error TS2339: Property 'setState' does not exist on type 'NavExpandable'. +src/components/Nav/NavExpandable.tsx(68,43): error TS2339: Property 'props' does not exist on type 'NavExpandable'. +src/components/Nav/NavExpandable.tsx(81,14): error TS2339: Property 'props' does not exist on type 'NavExpandable'. +src/components/Nav/NavExpandable.tsx(82,12): error TS2339: Property 'props' does not exist on type 'NavExpandable'. +src/components/Nav/NavExpandable.tsx(84,12): error TS2339: Property 'setState' does not exist on type 'NavExpandable'. +src/components/Nav/NavExpandable.tsx(84,22): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/Nav/NavExpandable.tsx(85,32): error TS2339: Property 'props' does not exist on type 'NavExpandable'. +src/components/Nav/NavExpandable.tsx(108,14): error TS2339: Property 'props' does not exist on type 'NavExpandable'. +src/components/Nav/NavExpandable.tsx(114,11): error TS7006: Parameter 'context' implicitly has an 'any' type. +src/components/Nav/NavExpandable.tsx(127,19): error TS7031: Binding element 'isSidebarOpen' implicitly has an 'any' type. +src/components/Nav/NavExpandable.tsx(139,24): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Nav/NavGroup.tsx(17,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Nav/NavGroup.tsx(32,6): error TS2322: Type '{ children: Element[]; icon?: any; role?: any; accept?: string | SignalLike; acceptCharset?: string | SignalLike; accessKey?: string | SignalLike<...>; ... 398 more ...; className: string; }' is not assignable to type 'HTMLAttributes'. + Types of property 'ref' are incompatible. + Type 'Ref' is not assignable to type 'Ref'. +src/components/Nav/NavItem.tsx(43,29): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Nav/NavItem.tsx(61,53): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/NavItem.tsx(62,35): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/NavItem.tsx(63,49): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/NavItem.tsx(64,43): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/NavItem.tsx(65,21): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/NavItem.tsx(67,27): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/NavItem.tsx(135,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/NavItem.tsx(146,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/NavItem.tsx(162,10): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Nav/NavItem.tsx(198,11): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/NavItem.tsx(251,13): error TS7006: Parameter 'context' implicitly has an 'any' type. +src/components/Nav/NavItem.tsx(252,19): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/NavItemSeparator.tsx(4,38): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Nav/NavList.tsx(12,17): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/Nav/NavList.tsx(12,41): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'HTMLAttributes'. +src/components/Nav/NavList.tsx(23,29): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/NavList.tsx(26,19): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ContextType'. +src/components/Nav/NavList.tsx(37,19): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Nav/NavList.tsx(46,12): error TS2339: Property 'setState' does not exist on type 'NavList'. +src/components/Nav/NavList.tsx(63,11): error TS2740: Type '{}' is missing the following properties from type 'Element': attributes, classList, className, clientHeight, and 160 more. +src/components/Nav/NavList.tsx(64,11): error TS2322: Type 'unknown' is not assignable to type 'Element'. +src/components/Nav/NavList.tsx(83,11): error TS2322: Type 'unknown' is not assignable to type 'Element'. +src/components/Nav/NavList.tsx(84,11): error TS2322: Type 'unknown' is not assignable to type 'Element'. +src/components/Nav/NavList.tsx(104,85): error TS2339: Property 'props' does not exist on type 'NavList'. +src/components/Nav/NavList.tsx(109,13): error TS7031: Binding element 'isHorizontal' implicitly has an 'any' type. +src/components/Nav/NavList.tsx(111,17): error TS7031: Binding element 'isSidebarOpen' implicitly has an 'any' type. +src/components/Nav/NavList.tsx(121,22): error TS2604: JSX element type 'AngleLeftIcon' does not have any construct or call signatures. +src/components/Nav/NavList.tsx(141,22): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/NotificationBadge/NotificationBadge.tsx(35,39): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/NotificationBadge/NotificationBadge.tsx(39,20): error TS2604: JSX element type 'AttentionBellIcon' does not have any construct or call signatures. +src/components/NotificationBadge/NotificationBadge.tsx(40,11): error TS2604: JSX element type 'BellIcon' does not have any construct or call signatures. +src/components/NotificationDrawer/NotificationDrawer.tsx(12,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/NotificationDrawer/NotificationDrawer.tsx(15,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/NotificationDrawer/NotificationDrawer.tsx(25,41): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/NotificationDrawer/NotificationDrawer.tsx(25,90): error TS2304: Cannot find name 'ForwardedRef'. +src/components/NotificationDrawer/NotificationDrawerBody.tsx(13,44): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/NotificationDrawer/NotificationDrawerGroup.tsx(48,45): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/NotificationDrawer/NotificationDrawerGroup.tsx(62,26): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/NotificationDrawer/NotificationDrawerGroup.tsx(63,57): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/NotificationDrawer/NotificationDrawerGroup.tsx(64,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/NotificationDrawer/NotificationDrawerGroup.tsx(87,6): error TS2322: Type '{ children: (ReactNode | Element)[]; className: string; ref?: Ref; icon?: any; role?: any; accept?: string | SignalLike; ... 399 more ...; 'aria-valuetext'?: Signalish<...>; }' is not assignable to type 'HTMLAttributes'. + Types of property 'ref' are incompatible. + Type 'Ref' is not assignable to type 'Ref'. +src/components/NotificationDrawer/NotificationDrawerGroup.tsx(115,14): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/NotificationDrawer/NotificationDrawerGroupList.tsx(13,49): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/NotificationDrawer/NotificationDrawerHeader.tsx(29,46): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/NotificationDrawer/NotificationDrawerHeader.tsx(52,95): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/NotificationDrawer/NotificationDrawerHeader.tsx(53,16): error TS2604: JSX element type 'TimesIcon' does not have any construct or call signatures. +src/components/NotificationDrawer/NotificationDrawerList.tsx(16,44): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/NotificationDrawer/NotificationDrawerListItem.tsx(22,48): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/NotificationDrawer/NotificationDrawerListItemBody.tsx(15,52): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/NotificationDrawer/NotificationDrawerListItemHeader.tsx(58,54): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/NotificationDrawer/NotificationDrawerListItemHeader.tsx(70,26): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/NotificationDrawer/NotificationDrawerListItemHeader.tsx(71,57): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/NotificationDrawer/NotificationDrawerListItemHeader.tsx(72,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/NotificationDrawer/NotificationDrawerListItemHeader.tsx(97,92): error TS2604: JSX element type 'Icon' does not have any construct or call signatures. +src/components/NumberInput/NumberInput.tsx(69,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/NumberInput/NumberInput.tsx(112,11): error TS2698: Spread types may only be created from object types. +src/components/NumberInput/NumberInput.tsx(113,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/NumberInput/NumberInput.tsx(124,23): error TS7006: Parameter 'evt' implicitly has an 'any' type. +src/components/NumberInput/NumberInput.tsx(128,16): error TS2604: JSX element type 'MinusIcon' does not have any construct or call signatures. +src/components/NumberInput/NumberInput.tsx(140,43): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/NumberInput/NumberInput.tsx(140,50): error TS7006: Parameter '_value' implicitly has an 'any' type. +src/components/NumberInput/NumberInput.tsx(152,23): error TS7006: Parameter 'evt' implicitly has an 'any' type. +src/components/NumberInput/NumberInput.tsx(156,16): error TS2604: JSX element type 'PlusIcon' does not have any construct or call signatures. +src/components/OverflowMenu/OverflowMenu.tsx(17,67): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/OverflowMenu/OverflowMenu.tsx(25,34): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/OverflowMenu/OverflowMenu.tsx(29,10): error TS2339: Property 'state' does not exist on type 'OverflowMenu'. +src/components/OverflowMenu/OverflowMenu.tsx(38,42): error TS2339: Property 'props' does not exist on type 'OverflowMenu'. +src/components/OverflowMenu/OverflowMenu.tsx(40,39): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/OverflowMenu/OverflowMenu.tsx(41,44): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/OverflowMenu/OverflowMenu.tsx(48,28): error TS2339: Property 'props' does not exist on type 'OverflowMenu'. +src/components/OverflowMenu/OverflowMenu.tsx(50,10): error TS2339: Property 'setState' does not exist on type 'OverflowMenu'. +src/components/OverflowMenu/OverflowMenu.tsx(56,28): error TS2339: Property 'props' does not exist on type 'OverflowMenu'. +src/components/OverflowMenu/OverflowMenu.tsx(61,12): error TS2339: Property 'setState' does not exist on type 'OverflowMenu'. +src/components/OverflowMenu/OverflowMenu.tsx(72,29): error TS7053: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type '{ sm: number; md: number; lg: number; xl: number; '2xl': number; }'. +src/components/OverflowMenu/OverflowMenu.tsx(72,57): error TS2339: Property 'props' does not exist on type 'OverflowMenu'. +src/components/OverflowMenu/OverflowMenu.tsx(79,32): error TS2339: Property 'state' does not exist on type 'OverflowMenu'. +src/components/OverflowMenu/OverflowMenu.tsx(79,59): error TS2339: Property 'state' does not exist on type 'OverflowMenu'. +src/components/OverflowMenu/OverflowMenu.tsx(81,14): error TS2339: Property 'state' does not exist on type 'OverflowMenu'. +src/components/OverflowMenu/OverflowMenu.tsx(82,12): error TS2339: Property 'setState' does not exist on type 'OverflowMenu'. +src/components/OverflowMenu/OverflowMenu.tsx(90,85): error TS2339: Property 'props' does not exist on type 'OverflowMenu'. +src/components/OverflowMenu/OverflowMenu.tsx(94,72): error TS2339: Property 'state' does not exist on type 'OverflowMenu'. +src/components/OverflowMenu/OverflowMenu.tsx(102,14): error TS2339: Property 'contextType' does not exist on type 'typeof OverflowMenu'. +src/components/OverflowMenu/OverflowMenuContent.tsx(15,41): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/OverflowMenu/OverflowMenuContent.tsx(21,7): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/OverflowMenu/OverflowMenuContext.tsx(3,42): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/OverflowMenu/OverflowMenuControl.tsx(15,41): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/OverflowMenu/OverflowMenuControl.tsx(22,7): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/OverflowMenu/OverflowMenuDropdownItem.tsx(12,46): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/OverflowMenu/OverflowMenuDropdownItem.tsx(19,7): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/OverflowMenu/OverflowMenuGroup.tsx(17,39): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/OverflowMenu/OverflowMenuGroup.tsx(25,7): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/OverflowMenu/OverflowMenuItem.tsx(15,38): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/OverflowMenu/OverflowMenuItem.tsx(21,7): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/Page/Page.tsx(33,81): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'TransitionEvent'. +src/components/Page/Page.tsx(100,26): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Page/Page.tsx(113,19): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Page/Page.tsx(114,19): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Page/Page.tsx(122,10): error TS2339: Property 'state' does not exist on type 'Page'. +src/components/Page/Page.tsx(132,53): error TS2339: Property 'props' does not exist on type 'Page'. +src/components/Page/Page.tsx(146,53): error TS2339: Property 'props' does not exist on type 'Page'. +src/components/Page/Page.tsx(170,35): error TS2339: Property 'props' does not exist on type 'Page'. +src/components/Page/Page.tsx(175,29): error TS2339: Property 'state' does not exist on type 'Page'. +src/components/Page/Page.tsx(176,12): error TS2339: Property 'setState' does not exist on type 'Page'. +src/components/Page/Page.tsx(182,16): error TS2339: Property 'state' does not exist on type 'Page'. +src/components/Page/Page.tsx(183,14): error TS2339: Property 'setState' does not exist on type 'Page'. +src/components/Page/Page.tsx(185,16): error TS2339: Property 'state' does not exist on type 'Page'. +src/components/Page/Page.tsx(186,14): error TS2339: Property 'setState' does not exist on type 'Page'. +src/components/Page/Page.tsx(194,33): error TS2339: Property 'state' does not exist on type 'Page'. +src/components/Page/Page.tsx(195,12): error TS2339: Property 'setState' does not exist on type 'Page'. +src/components/Page/Page.tsx(200,10): error TS2339: Property 'setState' does not exist on type 'Page'. +src/components/Page/Page.tsx(200,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/Page/Page.tsx(206,10): error TS2339: Property 'setState' does not exist on type 'Page'. +src/components/Page/Page.tsx(206,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/Page/Page.tsx(243,14): error TS2339: Property 'props' does not exist on type 'Page'. +src/components/Page/Page.tsx(244,91): error TS2339: Property 'state' does not exist on type 'Page'. +src/components/Page/Page.tsx(298,7): error TS2339: Property 'noindex' does not exist on type 'JSX.IntrinsicElements'. +src/components/Page/Page.tsx(298,7): error TS2339: Property 'template' does not exist on type 'JSX.IntrinsicElements'. +src/components/Page/Page.tsx(298,7): error TS2339: Property 'webview' does not exist on type 'JSX.IntrinsicElements'. +src/components/Page/Page.tsx(298,8): error TS2604: JSX element type 'Component' does not have any construct or call signatures. +src/components/Page/Page.tsx(333,76): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Page/PageBreadcrumb.tsx(44,51): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Page/PageBreadcrumb.tsx(46,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Page/PageContext.tsx(24,34): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Page/PageGroup.tsx(40,51): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Page/PageGroup.tsx(42,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Page/PageNavigation.tsx(44,51): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Page/PageNavigation.tsx(46,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Page/PageSection.tsx(86,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Page/PageSection.tsx(103,51): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Page/PageSection.tsx(105,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Page/PageSidebar.tsx(30,41): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Page/PageSidebar.tsx(32,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Page/PageSidebarBody.tsx(16,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Page/PageToggleButton.tsx(17,38): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Pagination/Navigation.tsx(64,25): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ReactText'. +src/components/Pagination/Navigation.tsx(67,32): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Pagination/Navigation.tsx(71,10): error TS2339: Property 'state' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(71,40): error TS2339: Property 'props' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(96,44): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ReactText'. +src/components/Pagination/Navigation.tsx(108,10): error TS2339: Property 'setState' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(129,54): error TS2339: Property 'state' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(138,41): error TS2339: Property 'props' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(146,12): error TS2339: Property 'props' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(147,12): error TS2339: Property 'props' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(147,31): error TS2339: Property 'props' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(148,12): error TS2339: Property 'state' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(148,41): error TS2339: Property 'props' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(150,12): error TS2339: Property 'setState' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(150,43): error TS2339: Property 'props' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(182,14): error TS2339: Property 'props' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(183,36): error TS2339: Property 'state' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(193,25): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Pagination/Navigation.tsx(196,22): error TS2339: Property 'setState' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(199,16): error TS2604: JSX element type 'AngleDoubleLeftIcon' does not have any construct or call signatures. +src/components/Pagination/Navigation.tsx(208,23): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Pagination/Navigation.tsx(212,20): error TS2339: Property 'setState' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(216,14): error TS2604: JSX element type 'AngleLeftIcon' does not have any construct or call signatures. +src/components/Pagination/Navigation.tsx(230,27): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Pagination/Navigation.tsx(231,26): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Pagination/Navigation.tsx(246,23): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Pagination/Navigation.tsx(250,20): error TS2339: Property 'setState' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(253,14): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Pagination/Navigation.tsx(263,25): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Pagination/Navigation.tsx(266,22): error TS2339: Property 'setState' does not exist on type 'Navigation'. +src/components/Pagination/Navigation.tsx(269,16): error TS2604: JSX element type 'AngleDoubleRightIcon' does not have any construct or call signatures. +src/components/Pagination/Pagination.tsx(186,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Pagination/Pagination.tsx(234,31): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Pagination/Pagination.tsx(240,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Pagination/Pagination.tsx(340,7): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Pagination/Pagination.tsx(340,8): error TS2786: 'Navigation' cannot be used as a JSX component. + Its instance type 'Navigation' is not a valid JSX element. + Type 'Navigation' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/Pagination/PaginationOptionsMenu.tsx(57,43): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Pagination/PaginationOptionsMenu.tsx(79,37): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Pagination/PaginationOptionsMenu.tsx(80,27): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Pagination/PaginationOptionsMenu.tsx(81,25): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Pagination/PaginationOptionsMenu.tsx(82,30): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Pagination/PaginationOptionsMenu.tsx(85,16): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/Pagination/PaginationOptionsMenu.tsx(89,16): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/Pagination/PaginationOptionsMenu.tsx(112,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Pagination/PaginationOptionsMenu.tsx(162,19): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Pagination/ToggleTemplate.tsx(20,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Panel/Panel.tsx(15,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Panel/Panel.tsx(18,24): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Panel/Panel.tsx(41,28): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Panel/Panel.tsx(41,64): error TS2304: Cannot find name 'ForwardedRef'. +src/components/Panel/PanelFooter.tsx(12,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Panel/PanelHeader.tsx(12,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Panel/PanelMain.tsx(14,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Panel/PanelMain.tsx(22,71): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/Panel/PanelMainBody.tsx(12,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Popover/Popover.tsx(74,58): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Popover/Popover.tsx(222,29): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Popover/Popover.tsx(278,39): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Popover/Popover.tsx(279,55): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Popover/Popover.tsx(280,28): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Popover/Popover.tsx(282,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Popover/Popover.tsx(285,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Popover/PopoverArrow.tsx(5,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Popover/PopoverBody.tsx(14,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Popover/PopoverCloseButton.tsx(7,40): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Popover/PopoverCloseButton.tsx(13,8): error TS2604: JSX element type 'TimesIcon' does not have any construct or call signatures. +src/components/Popover/PopoverContent.tsx(5,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Popover/PopoverContext.tsx(7,37): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Popover/PopoverDialog.tsx(12,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Popover/PopoverFooter.tsx(12,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Popover/PopoverFooter.tsx(17,4): error TS2322: Type '{ children: ReactNode; icon?: any; role?: any; accept?: string | SignalLike; acceptCharset?: string | SignalLike; accessKey?: string | SignalLike<...>; ... 400 more ...; className: string; }' is not assignable to type 'HTMLAttributes'. + Types of property 'ref' are incompatible. + Type 'Ref' is not assignable to type 'Ref'. + Type 'RefCallback' is not assignable to type 'Ref'. + Type 'RefCallback' is not assignable to type 'RefCallback'. + Property 'align' is missing in type 'HTMLElement' but required in type 'HTMLDivElement'. +src/components/Popover/PopoverHeader.tsx(24,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Popover/PopoverHeader.tsx(34,4): error TS2322: Type '{ children: Element; ref?: Ref; role?: any; accept?: string | SignalLike; acceptCharset?: string | SignalLike; ... 398 more ...; className: string; }' is not assignable to type 'HTMLAttributes'. + Types of property 'ref' are incompatible. + Type 'Ref' is not assignable to type 'Ref'. + Type 'RefCallback' is not assignable to type 'Ref'. + Type 'RefCallback' is not assignable to type 'RefCallback'. + Property 'align' is missing in type 'HTMLElement' but required in type 'HTMLHeadingElement'. +src/components/Popover/PopoverHeaderIcon.tsx(12,39): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Popover/PopoverHeaderText.tsx(14,39): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Progress/Progress.tsx(51,30): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Progress/Progress.tsx(71,13): error TS2339: Property 'props' does not exist on type 'Progress'. +src/components/Progress/Progress.tsx(94,14): error TS2339: Property 'props' does not exist on type 'Progress'. +src/components/Progress/Progress.tsx(127,11): error TS7053: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type '{ sm: "pf-m-sm"; lg: "pf-m-lg"; inside: "pf-m-inside"; outside: "pf-m-outside"; staticWidth: "pf-m-static-width"; singleline: "pf-m-singleline"; success: "pf-m-success"; warning: "pf-m-warning"; danger: "pf-m-danger"; truncate: "pf-m-truncate"; }'. +src/components/Progress/ProgressBar.tsx(25,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Progress/ProgressContainer.tsx(69,39): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Progress/ProgressContainer.tsx(82,39): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Progress/ProgressContainer.tsx(121,16): error TS2604: JSX element type 'StatusIcon' does not have any construct or call signatures. +src/components/Progress/ProgressHelperText.tsx(11,40): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/ProgressStepper/ProgressStep.tsx(19,17): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/ProgressStepper/ProgressStep.tsx(19,41): error TS2724: '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member named 'LiHTMLAttributes'. Did you mean 'ImgHTMLAttributes'? +src/components/ProgressStepper/ProgressStep.tsx(38,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/ProgressStepper/ProgressStep.tsx(44,13): error TS2604: JSX element type 'CheckCircleIcon' does not have any construct or call signatures. +src/components/ProgressStepper/ProgressStep.tsx(45,10): error TS2604: JSX element type 'ResourcesFullIcon' does not have any construct or call signatures. +src/components/ProgressStepper/ProgressStep.tsx(46,13): error TS2604: JSX element type 'ExclamationTriangleIcon' does not have any construct or call signatures. +src/components/ProgressStepper/ProgressStep.tsx(47,12): error TS2604: JSX element type 'ExclamationCircleIcon' does not have any construct or call signatures. +src/components/ProgressStepper/ProgressStep.tsx(59,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/ProgressStepper/ProgressStep.tsx(73,25): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/ProgressStepper/ProgressStep.tsx(75,13): error TS2339: Property 'id' does not exist on type '{}'. +src/components/ProgressStepper/ProgressStep.tsx(105,22): error TS2339: Property 'id' does not exist on type '{}'. +src/components/ProgressStepper/ProgressStep.tsx(107,60): error TS2339: Property 'id' does not exist on type '{}'. +src/components/ProgressStepper/ProgressStepper.tsx(6,17): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'DetailedHTMLProps'. +src/components/ProgressStepper/ProgressStepper.tsx(6,41): error TS2724: '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member named 'OlHTMLAttributes'. Did you mean 'ImgHTMLAttributes'? +src/components/ProgressStepper/ProgressStepper.tsx(21,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Radio/Radio.tsx(48,27): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Radio/Radio.tsx(63,10): error TS2339: Property 'state' does not exist on type 'Radio'. +src/components/Radio/Radio.tsx(69,10): error TS2339: Property 'props' does not exist on type 'Radio'. +src/components/Radio/Radio.tsx(92,14): error TS2339: Property 'props' does not exist on type 'Radio'. +src/components/Radio/Radio.tsx(109,82): error TS2339: Property 'state' does not exist on type 'Radio'. +src/components/SearchInput/AdvancedSearchMenu.tsx(10,18): error TS2430: Interface 'AdvancedSearchMenuProps' incorrectly extends interface 'Omit, "onChange">'. + Types of property 'onSearch' are incompatible. + Type '(event: any, value: string, attrValueMap: { [key: string]: string; }) => void' is not assignable to type 'GenericEventHandler'. +src/components/SearchInput/AdvancedSearchMenu.tsx(41,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SearchInput/AdvancedSearchMenu.tsx(43,21): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SearchInput/AdvancedSearchMenu.tsx(52,40): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/SearchInput/AdvancedSearchMenu.tsx(70,30): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/AdvancedSearchMenu.tsx(71,63): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/AdvancedSearchMenu.tsx(73,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/AdvancedSearchMenu.tsx(82,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/AdvancedSearchMenu.tsx(91,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/AdvancedSearchMenu.tsx(175,26): error TS7006: Parameter 'evt' implicitly has an 'any' type. +src/components/SearchInput/AdvancedSearchMenu.tsx(175,31): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/SearchInput/AdvancedSearchMenu.tsx(186,26): error TS7006: Parameter 'evt' implicitly has an 'any' type. +src/components/SearchInput/AdvancedSearchMenu.tsx(186,31): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/SearchInput/AdvancedSearchMenu.tsx(193,7): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/SearchInput/AdvancedSearchMenu.tsx(193,8): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/SearchInput/AdvancedSearchMenu.tsx(194,11): error TS7006: Parameter 'randomId' implicitly has an 'any' type. +src/components/SearchInput/AdvancedSearchMenu.tsx(200,26): error TS7006: Parameter 'evt' implicitly has an 'any' type. +src/components/SearchInput/AdvancedSearchMenu.tsx(200,31): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/SearchInput/SearchInput.tsx(46,18): error TS2430: Interface 'SearchInputProps' incorrectly extends interface 'Omit, "ref" | "results" | "onChange">'. + Types of property 'onSearch' are incompatible. + Type '(event: any, value: string, attrValueMap: { [key: string]: string; }) => void' is not assignable to type 'GenericEventHandler'. +src/components/SearchInput/SearchInput.tsx(74,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRefObject'. +src/components/SearchInput/SearchInput.tsx(122,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/SearchInput/SearchInput.tsx(155,57): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/SearchInput.tsx(156,47): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/SearchInput.tsx(157,32): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/SearchInput.tsx(158,21): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/SearchInput.tsx(160,48): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/SearchInput.tsx(161,28): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/SearchInput.tsx(162,27): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/SearchInput.tsx(163,69): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/SearchInput.tsx(167,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/SearchInput.tsx(180,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/SearchInput.tsx(184,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/SearchInput.tsx(193,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/SearchInput.tsx(287,16): error TS2604: JSX element type 'SearchIcon' does not have any construct or call signatures. +src/components/SearchInput/SearchInput.tsx(307,18): error TS2604: JSX element type 'AngleUpIcon' does not have any construct or call signatures. +src/components/SearchInput/SearchInput.tsx(315,18): error TS2604: JSX element type 'AngleDownIcon' does not have any construct or call signatures. +src/components/SearchInput/SearchInput.tsx(326,16): error TS2604: JSX element type 'TimesIcon' does not have any construct or call signatures. +src/components/SearchInput/SearchInput.tsx(339,27): error TS2604: JSX element type 'TimesIcon' does not have any construct or call signatures. +src/components/SearchInput/SearchInput.tsx(339,43): error TS2604: JSX element type 'SearchIcon' does not have any construct or call signatures. +src/components/SearchInput/SearchInput.tsx(373,14): error TS2604: JSX element type 'CaretDownIcon' does not have any construct or call signatures. +src/components/SearchInput/SearchInput.tsx(386,14): error TS2604: JSX element type 'ArrowRightIcon' does not have any construct or call signatures. +src/components/SearchInput/SearchInput.tsx(462,34): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SearchInput/SearchInput.tsx(463,54): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'MutableRefObject'. +src/components/Select/Select.tsx(26,21): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Select/Select.tsx(43,50): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Select/Select.tsx(56,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Select/Select.tsx(65,25): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Select/Select.tsx(82,30): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Select/Select.tsx(83,32): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Select/Select.tsx(85,38): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Select/Select.tsx(89,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Select/Select.tsx(91,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Select/Select.tsx(138,18): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Select/Select.tsx(138,25): error TS7006: Parameter 'value' implicitly has an 'any' type. +src/components/Select/Select.tsx(167,29): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Select/Select.tsx(167,66): error TS2304: Cannot find name 'ForwardedRef'. +src/components/Select/SelectGroup.tsx(17,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Select/SelectList.tsx(16,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Select/SelectOption.tsx(15,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Select/SelectOption.tsx(36,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Select/SelectOption.tsx(48,35): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Select/SelectOption.tsx(48,78): error TS2304: Cannot find name 'ForwardedRef'. +src/components/Sidebar/Sidebar.tsx(19,29): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Sidebar/SidebarContent.tsx(13,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Sidebar/SidebarPanel.tsx(35,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/SimpleList/SimpleList.tsx(14,16): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SimpleList/SimpleList.tsx(14,53): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SimpleList/SimpleList.tsx(25,21): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SimpleList/SimpleList.tsx(25,58): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SimpleList/SimpleList.tsx(29,21): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SimpleList/SimpleList.tsx(29,58): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SimpleList/SimpleList.tsx(31,15): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SimpleList/SimpleList.tsx(31,52): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SimpleList/SimpleList.tsx(37,40): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SimpleList/SimpleList.tsx(39,32): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SimpleList/SimpleList.tsx(42,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SimpleList/SimpleList.tsx(42,68): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SimpleList/SimpleList.tsx(52,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SimpleList/SimpleList.tsx(52,63): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/SimpleList/SimpleList.tsx(55,10): error TS2339: Property 'setState' does not exist on type 'SimpleList'. +src/components/SimpleList/SimpleList.tsx(56,31): error TS2339: Property 'props' does not exist on type 'SimpleList'. +src/components/SimpleList/SimpleList.tsx(62,101): error TS2339: Property 'props' does not exist on type 'SimpleList'. +src/components/SimpleList/SimpleList.tsx(66,26): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SimpleList/SimpleListGroup.tsx(18,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/SimpleList/SimpleListGroup.tsx(26,4): error TS2322: Type '{ children: Element[]; ref?: Ref; icon?: any; role?: any; accept?: string | SignalLike; acceptCharset?: string | SignalLike<...>; ... 398 more ...; className: string; }' is not assignable to type 'HTMLAttributes'. + Types of property 'ref' are incompatible. + Type 'Ref' is not assignable to type 'Ref'. + Type 'RefCallback' is not assignable to type 'Ref'. + Type 'RefCallback' is not assignable to type 'RefCallback'. + Type 'HTMLElement' is missing the following properties from type 'HTMLTableSectionElement': align, ch, chOff, rows, and 3 more. +src/components/SimpleList/SimpleListItem.tsx(22,46): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/SimpleList/SimpleListItem.tsx(29,36): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SimpleList/SimpleListItem.tsx(31,15): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/SimpleList/SimpleListItem.tsx(57,14): error TS2339: Property 'props' does not exist on type 'SimpleListItem'. +src/components/SimpleList/SimpleListItem.tsx(60,13): error TS7031: Binding element 'currentRef' implicitly has an 'any' type. +src/components/SimpleList/SimpleListItem.tsx(60,25): error TS7031: Binding element 'updateCurrentRef' implicitly has an 'any' type. +src/components/SimpleList/SimpleListItem.tsx(60,43): error TS7031: Binding element 'isControlled' implicitly has an 'any' type. +src/components/SimpleList/SimpleListItem.tsx(84,51): error TS2339: Property 'props' does not exist on type 'SimpleListItem'. +src/components/Skeleton/Skeleton.tsx(20,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Skeleton/Skeleton.tsx(47,11): error TS2698: Spread types may only be created from object types. +src/components/Skeleton/Skeleton.tsx(48,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/SkipToContent/SkipToContent.tsx(15,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Slider/Slider.tsx(2,10): error TS2305: Module '"react"' has no exported member 'useState'. +src/components/Slider/Slider.tsx(68,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'Dispatch'. +src/components/Slider/Slider.tsx(86,28): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Slider/Slider.tsx(111,31): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Slider/Slider.tsx(112,26): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Slider/Slider.tsx(117,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Slider/Slider.tsx(121,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Slider/Slider.tsx(130,76): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/Slider/Slider.tsx(131,28): error TS2339: Property 'useMemo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Slider/Slider.tsx(132,102): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/Slider/Slider.tsx(278,35): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Slider/Slider.tsx(279,33): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Slider/SliderStep.tsx(20,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Slider/SliderStep.tsx(29,74): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/Spinner/Spinner.tsx(12,50): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'SVGProps'. +src/components/Spinner/Spinner.tsx(29,29): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Spinner/Spinner.tsx(45,86): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/Switch/Switch.tsx(43,28): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Switch/Switch.tsx(63,10): error TS2339: Property 'state' does not exist on type 'Switch'. +src/components/Switch/Switch.tsx(84,14): error TS2339: Property 'props' does not exist on type 'Switch'. +src/components/Switch/Switch.tsx(91,83): error TS2339: Property 'state' does not exist on type 'Switch'. +src/components/Switch/Switch.tsx(108,20): error TS2604: JSX element type 'CheckIcon' does not have any construct or call signatures. +src/components/Switch/Switch.tsx(130,16): error TS2604: JSX element type 'CheckIcon' does not have any construct or call signatures. +src/components/Tabs/index.ts(1,15): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/Tab.tsx' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. + The file is in the program because: + Imported via './Tab' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/index.ts' + Imported via './Tab' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/Tabs.tsx' + Imported via './Tab' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/OverflowTab.tsx' +src/components/Tabs/index.ts(3,15): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/Tabs.tsx' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. +src/components/Tabs/index.ts(5,15): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/TabContentBody.tsx' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. +src/components/Tabs/index.ts(8,15): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/TabTitleIcon.tsx' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. +src/components/Tabs/OverflowTab.tsx(9,30): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/TabTitleText.tsx' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. + The file is in the program because: + Imported via './TabTitleText' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/OverflowTab.tsx' + Imported via './TabTitleText' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/index.ts' +src/components/Tabs/OverflowTab.tsx(26,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Tabs/OverflowTab.tsx(35,25): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/OverflowTab.tsx(36,32): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/OverflowTab.tsx(37,31): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/OverflowTab.tsx(39,45): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/OverflowTab.tsx(41,52): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/OverflowTab.tsx(63,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/OverflowTab.tsx(77,20): error TS7006: Parameter 'prevIsExpanded' implicitly has an 'any' type. +src/components/Tabs/OverflowTab.tsx(108,12): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Tabs/OverflowTab.tsx(127,36): error TS7006: Parameter 'ev' implicitly has an 'any' type. +src/components/Tabs/OverflowTab.tsx(127,40): error TS7006: Parameter 'itemId' implicitly has an 'any' type. +src/components/Tabs/Tab.tsx(4,27): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/TabButton.tsx' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. +src/components/Tabs/Tab.tsx(5,29): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/TabsContext.ts' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. + The file is in the program because: + Imported via './TabsContext' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/Tab.tsx' + Imported via './TabsContext' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/TabContent.tsx' + Imported via './TabsContext' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/Tabs.tsx' + Imported via './TabsContext' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/OverflowTab.tsx' + Imported via './TabsContext' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/index.ts' +src/components/Tabs/Tab.tsx(9,27): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/TabAction.tsx' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. + The file is in the program because: + Imported via './TabAction' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/Tab.tsx' + Imported via './TabAction' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/index.ts' +src/components/Tabs/Tab.tsx(27,25): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Tabs/Tab.tsx(37,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Tabs/Tab.tsx(50,22): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Tabs/Tab.tsx(79,11): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/Tab.tsx(138,12): error TS2604: JSX element type 'TimesIcon' does not have any construct or call signatures. +src/components/Tabs/Tab.tsx(145,26): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/Tab.tsx(145,60): error TS2304: Cannot find name 'ForwardedRef'. +src/components/Tabs/TabAction.tsx(19,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Tabs/TabAction.tsx(22,28): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Tabs/TabAction.tsx(50,32): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/TabButton.tsx(14,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Tabs/TabButton.tsx(17,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Tabs/TabButton.tsx(22,3): error TS2339: Property 'parentInnerRef' does not exist on type 'TabButtonProps'. +src/components/Tabs/TabContent.tsx(19,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRef'. +src/components/Tabs/TabContent.tsx(35,29): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Tabs/TabContent.tsx(85,33): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/TabContentBody.tsx(14,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Tabs/Tabs.tsx(10,28): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/TabContent.tsx' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. + The file is in the program because: + Imported via './TabContent' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/Tabs.tsx' + Imported via './TabContent' from file '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/index.ts' +src/components/Tabs/Tabs.tsx(13,29): error TS6307: File '/Users/jschuler/Code/patternfly-react/packages/react-core/src/components/Tabs/OverflowTab.tsx' is not listed within the file list of project '/Users/jschuler/Code/patternfly-react/packages/react-core/tsconfig.json'. Projects must list all files or use an 'include' pattern. +src/components/Tabs/Tabs.tsx(35,18): error TS2430: Interface 'TabsProps' incorrectly extends interface 'Omit, "onSelect">'. + Types of property 'onToggle' are incompatible. + Type '(event: any, isExpanded: boolean) => void' is not assignable to type 'GenericEventHandler'. +src/components/Tabs/Tabs.tsx(139,26): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/Tabs.tsx(141,19): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/Tabs.tsx(142,31): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/Tabs.tsx(145,10): error TS2339: Property 'state' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(151,23): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(151,68): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(151,100): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(152,35): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(153,41): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(158,14): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(158,39): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(159,17): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(159,48): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(193,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Tabs/Tabs.tsx(195,32): error TS2339: Property 'state' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(196,49): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(199,12): error TS2339: Property 'setState' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(208,13): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/Tabs.tsx(208,35): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(209,18): error TS7006: Parameter 'child' implicitly has an 'any' type. +src/components/Tabs/Tabs.tsx(209,55): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/Tabs.tsx(210,20): error TS7031: Binding element 'props' implicitly has an 'any' type. +src/components/Tabs/Tabs.tsx(211,19): error TS7006: Parameter 'child' implicitly has an 'any' type. +src/components/Tabs/Tabs.tsx(217,14): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(218,12): error TS2339: Property 'setState' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(230,65): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(240,30): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(257,12): error TS2339: Property 'setState' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(306,82): error TS2339: Property 'state' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(308,12): error TS2339: Property 'setState' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(313,15): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(323,15): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(333,78): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(334,74): error TS2339: Property 'state' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(336,12): error TS2339: Property 'setState' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(344,13): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/Tabs.tsx(344,67): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/Tabs.tsx(351,12): error TS2339: Property 'setState' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(355,12): error TS2339: Property 'setState' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(358,14): error TS2339: Property 'setState' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(361,12): error TS2339: Property 'setState' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(399,14): error TS2339: Property 'props' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(409,14): error TS2339: Property 'state' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(410,36): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/Tabs.tsx(411,16): error TS7006: Parameter 'child' implicitly has an 'any' type. +src/components/Tabs/Tabs.tsx(411,53): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/Tabs.tsx(412,18): error TS7031: Binding element 'props' implicitly has an 'any' type. +src/components/Tabs/Tabs.tsx(426,14): error TS2339: Property 'setState' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(443,28): error TS7019: Rest parameter 'args' implicitly has an 'any[]' type. +src/components/Tabs/Tabs.tsx(443,60): error TS2556: A spread argument must either have a tuple type or be passed to a rest parameter. +src/components/Tabs/Tabs.tsx(461,13): error TS7053: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type '{ default: string; light300: "pf-m-color-scheme--light-300"; }'. +src/components/Tabs/Tabs.tsx(465,83): error TS2339: Property 'state' does not exist on type 'Tabs'. +src/components/Tabs/Tabs.tsx(470,14): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/Tabs/Tabs.tsx(471,17): error TS7006: Parameter 'randomId' implicitly has an 'any' type. +src/components/Tabs/Tabs.tsx(475,33): error TS7006: Parameter 'event' implicitly has an 'any' type. +src/components/Tabs/Tabs.tsx(483,26): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Tabs/Tabs.tsx(506,16): error TS2604: JSX element type 'AngleLeftIcon' does not have any construct or call signatures. +src/components/Tabs/Tabs.tsx(522,16): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Tabs/Tabs.tsx(528,18): error TS2604: JSX element type 'PlusIcon' does not have any construct or call signatures. +src/components/Tabs/Tabs.tsx(535,14): error TS7006: Parameter 'child' implicitly has an 'any' type. +src/components/Tabs/Tabs.tsx(540,17): error TS7006: Parameter 'child' implicitly has an 'any' type. +src/components/Tabs/TabsContext.ts(12,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Tabs/TabsContext.ts(17,27): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Tabs/TabsContext.ts(21,34): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tabs/TabsContext.ts(27,19): error TS7011: Function expression, which lacks return-type annotation, implicitly has an 'any' return type. +src/components/Tabs/TabTitleIcon.tsx(12,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Tabs/TabTitleText.tsx(12,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Text/Text.tsx(35,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Text/TextContent.tsx(14,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Text/TextList.tsx(22,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Text/TextListItem.tsx(19,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/TextArea/TextArea.tsx(38,28): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/TextArea/TextArea.tsx(44,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRefObject'. +src/components/TextArea/TextArea.tsx(47,34): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TextArea/TextArea.tsx(50,21): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TextArea/TextArea.tsx(59,20): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TextArea/TextArea.tsx(84,27): error TS2339: Property 'props' does not exist on type 'TextAreaBase'. +src/components/TextArea/TextArea.tsx(85,14): error TS2339: Property 'props' does not exist on type 'TextAreaBase'. +src/components/TextArea/TextArea.tsx(91,40): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/TextArea/TextArea.tsx(94,14): error TS2339: Property 'props' does not exist on type 'TextAreaBase'. +src/components/TextArea/TextArea.tsx(97,14): error TS2339: Property 'props' does not exist on type 'TextAreaBase'. +src/components/TextArea/TextArea.tsx(98,12): error TS2339: Property 'props' does not exist on type 'TextAreaBase'. +src/components/TextArea/TextArea.tsx(118,14): error TS2339: Property 'props' does not exist on type 'TextAreaBase'. +src/components/TextArea/TextArea.tsx(139,28): error TS2339: Property 'props' does not exist on type 'TextAreaBase'. +src/components/TextArea/TextArea.tsx(157,31): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TextArea/TextArea.tsx(158,3): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/TextArea/TextArea.tsx(158,4): error TS2786: 'TextAreaBase' cannot be used as a JSX component. + Its instance type 'TextAreaBase' is not a valid JSX element. + Type 'TextAreaBase' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/TextArea/TextArea.tsx(158,51): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'MutableRefObject'. +src/components/TextInput/TextInput.tsx(69,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRefObject'. +src/components/TextInput/TextInput.tsx(89,42): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TextInput/TextInput.tsx(102,20): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TextInput/TextInput.tsx(111,10): error TS2339: Property 'state' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(117,14): error TS2339: Property 'props' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(118,12): error TS2339: Property 'props' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(123,14): error TS2339: Property 'props' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(124,29): error TS2339: Property 'props' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(131,14): error TS2339: Property 'props' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(137,27): error TS2339: Property 'props' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(139,46): error TS2339: Property 'props' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(144,27): error TS2339: Property 'props' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(146,64): error TS2339: Property 'props' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(152,47): error TS2339: Property 'props' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(160,46): error TS2339: Property 'props' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(189,14): error TS2339: Property 'props' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(219,88): error TS2339: Property 'state' does not exist on type 'TextInputBase'. +src/components/TextInput/TextInput.tsx(235,32): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TextInput/TextInput.tsx(236,3): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/TextInput/TextInput.tsx(236,4): error TS2786: 'TextInputBase' cannot be used as a JSX component. + Its instance type 'TextInputBase' is not a valid JSX element. + Type 'TextInputBase' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/TextInput/TextInput.tsx(236,52): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'MutableRefObject'. +src/components/TextInputGroup/TextInputGroup.tsx(15,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRefObject'. +src/components/TextInputGroup/TextInputGroup.tsx(18,44): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TextInputGroup/TextInputGroup.tsx(22,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/TextInputGroup/TextInputGroup.tsx(30,21): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TextInputGroup/TextInputGroupMain.tsx(41,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRefObject'. +src/components/TextInputGroup/TextInputGroupMain.tsx(58,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/TextInputGroup/TextInputGroupMain.tsx(78,32): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TextInputGroup/TextInputGroupMain.tsx(79,21): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TextInputGroup/TextInputGroupMain.tsx(122,41): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TextInputGroup/TextInputGroupMain.tsx(124,52): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'MutableRefObject'. +src/components/TextInputGroup/TextInputGroupUtilities.tsx(12,45): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Tile/Tile.tsx(24,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/TimePicker/TimePicker.tsx(96,32): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TimePicker/TimePicker.tsx(98,36): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TimePicker/TimePicker.tsx(99,29): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TimePicker/TimePicker.tsx(100,28): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TimePicker/TimePicker.tsx(101,27): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TimePicker/TimePicker.tsx(126,72): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(127,37): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(137,10): error TS2339: Property 'state' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(154,10): error TS2339: Property 'setState' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(154,51): error TS2339: Property 'state' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(166,14): error TS2339: Property 'state' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(172,67): error TS2339: Property 'state' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(209,73): error TS2339: Property 'state' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(210,90): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(219,12): error TS2339: Property 'setState' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(226,12): error TS2339: Property 'setState' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(232,12): error TS2339: Property 'setState' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(238,12): error TS2339: Property 'setState' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(245,10): error TS2339: Property 'setState' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(245,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/TimePicker/TimePicker.tsx(263,14): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(283,42): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(284,37): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(293,35): error TS2339: Property 'state' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(332,10): error TS2339: Property 'setState' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(339,42): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(355,14): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(356,19): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(359,58): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(364,48): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(365,49): error TS2339: Property 'state' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(374,10): error TS2339: Property 'setState' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(374,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/TimePicker/TimePicker.tsx(376,70): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(397,10): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(404,43): error TS2339: Property 'state' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(405,69): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(412,10): error TS2339: Property 'setState' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(420,15): error TS2339: Property 'state' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(427,31): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(428,32): error TS2339: Property 'state' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(440,10): error TS2339: Property 'setState' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(473,14): error TS2339: Property 'props' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(474,90): error TS2339: Property 'state' does not exist on type 'TimePicker'. +src/components/TimePicker/TimePicker.tsx(475,93): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/TimePicker/TimePicker.tsx(510,22): error TS2604: JSX element type 'OutlinedClockIcon' does not have any construct or call signatures. +src/components/Timestamp/Timestamp.tsx(78,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Timestamp/Timestamp.tsx(91,33): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Timestamp/Timestamp.tsx(100,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Title/Title.tsx(41,27): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/ToggleGroup/ToggleGroup.tsx(19,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/ToggleGroup/ToggleGroup.tsx(27,37): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/ToggleGroup/ToggleGroup.tsx(27,61): error TS7006: Parameter 'child' implicitly has an 'any' type. +src/components/ToggleGroup/ToggleGroup.tsx(28,13): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/ToggleGroup/ToggleGroup.tsx(30,15): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/ToggleGroup/ToggleGroupItem.tsx(25,37): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/ToggleGroup/ToggleGroupItemElement.tsx(17,44): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/ToggleGroup/ToggleGroupItemElement.tsx(17,96): error TS7031: Binding element 'variant' implicitly has an 'any' type. +src/components/ToggleGroup/ToggleGroupItemElement.tsx(17,105): error TS7031: Binding element 'children' implicitly has an 'any' type. +src/components/Toolbar/Toolbar.tsx(70,29): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Toolbar/Toolbar.tsx(72,31): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Toolbar/Toolbar.tsx(81,34): error TS2339: Property 'props' does not exist on type 'Toolbar'. +src/components/Toolbar/Toolbar.tsx(81,61): error TS2339: Property 'props' does not exist on type 'Toolbar'. +src/components/Toolbar/Toolbar.tsx(84,10): error TS2339: Property 'setState' does not exist on type 'Toolbar'. +src/components/Toolbar/Toolbar.tsx(84,20): error TS7006: Parameter 'prevState' implicitly has an 'any' type. +src/components/Toolbar/Toolbar.tsx(91,12): error TS2339: Property 'setState' does not exist on type 'Toolbar'. +src/components/Toolbar/Toolbar.tsx(115,12): error TS2339: Property 'setState' does not exist on type 'Toolbar'. +src/components/Toolbar/Toolbar.tsx(140,14): error TS2339: Property 'props' does not exist on type 'Toolbar'. +src/components/Toolbar/Toolbar.tsx(151,13): error TS7031: Binding element 'width' implicitly has an 'any' type. +src/components/Toolbar/Toolbar.tsx(151,20): error TS7031: Binding element 'getBreakpoint' implicitly has an 'any' type. +src/components/Toolbar/Toolbar.tsx(181,15): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Toolbar/Toolbar.tsx(181,16): error TS2786: 'ToolbarChipGroupContent' cannot be used as a JSX component. + Its instance type 'ToolbarChipGroupContent' is not a valid JSX element. + Type 'ToolbarChipGroupContent' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/Toolbar/Toolbar.tsx(200,17): error TS2339: Property 'props' does not exist on type 'Toolbar'. +src/components/Toolbar/Toolbar.tsx(201,31): error TS2339: Property 'props' does not exist on type 'Toolbar'. +src/components/Toolbar/Toolbar.tsx(203,8): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/Toolbar/Toolbar.tsx(203,21): error TS7006: Parameter 'randomId' implicitly has an 'any' type. +src/components/Toolbar/ToolbarChipGroupContent.tsx(6,10): error TS2305: Module '"react"' has no exported member 'RefObject'. +src/components/Toolbar/ToolbarChipGroupContent.tsx(36,45): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Toolbar/ToolbarChipGroupContent.tsx(57,14): error TS2339: Property 'props' does not exist on type 'ToolbarChipGroupContent'. +src/components/Toolbar/ToolbarChipGroupContent.tsx(68,50): error TS7053: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type '{ md: number; lg: number; xl: number; '2xl': number; }'. +src/components/Toolbar/ToolbarContent.tsx(38,36): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Toolbar/ToolbarContent.tsx(40,40): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Toolbar/ToolbarContent.tsx(41,36): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Toolbar/ToolbarContent.tsx(62,14): error TS2339: Property 'props' does not exist on type 'ToolbarContent'. +src/components/Toolbar/ToolbarContent.tsx(66,13): error TS7031: Binding element 'width' implicitly has an 'any' type. +src/components/Toolbar/ToolbarContent.tsx(66,20): error TS7031: Binding element 'getBreakpoint' implicitly has an 'any' type. +src/components/Toolbar/ToolbarContent.tsx(77,34): error TS7031: Binding element 'clearAllFiltersContext' implicitly has an 'any' type. +src/components/Toolbar/ToolbarContent.tsx(78,41): error TS7031: Binding element 'clearFiltersButtonContext' implicitly has an 'any' type. +src/components/Toolbar/ToolbarContent.tsx(79,41): error TS7031: Binding element 'showClearFiltersButtonContext' implicitly has an 'any' type. +src/components/Toolbar/ToolbarContent.tsx(80,28): error TS7031: Binding element 'toolbarIdContext' implicitly has an 'any' type. +src/components/Toolbar/ToolbarContent.tsx(106,21): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Toolbar/ToolbarContent.tsx(106,22): error TS2786: 'ToolbarExpandableContent' cannot be used as a JSX component. + Its instance type 'ToolbarExpandableContent' is not a valid JSX element. + Type 'ToolbarExpandableContent' is missing the following properties from type 'Component': state, props, setState, forceUpdate +src/components/Toolbar/ToolbarExpandableContent.tsx(5,10): error TS2305: Module '"react"' has no exported member 'RefObject'. +src/components/Toolbar/ToolbarExpandableContent.tsx(29,46): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Toolbar/ToolbarExpandableContent.tsx(32,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ContextType'. +src/components/Toolbar/ToolbarExpandableContent.tsx(49,14): error TS2339: Property 'props' does not exist on type 'ToolbarExpandableContent'. +src/components/Toolbar/ToolbarExpandIconWrapper.tsx(12,46): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Toolbar/ToolbarFilter.tsx(46,35): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Toolbar/ToolbarFilter.tsx(49,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ContextType'. +src/components/Toolbar/ToolbarFilter.tsx(57,10): error TS2339: Property 'state' does not exist on type 'ToolbarFilter'. +src/components/Toolbar/ToolbarFilter.tsx(63,42): error TS2339: Property 'props' does not exist on type 'ToolbarFilter'. +src/components/Toolbar/ToolbarFilter.tsx(70,10): error TS2339: Property 'setState' does not exist on type 'ToolbarFilter'. +src/components/Toolbar/ToolbarFilter.tsx(74,42): error TS2339: Property 'props' does not exist on type 'ToolbarFilter'. +src/components/Toolbar/ToolbarFilter.tsx(94,14): error TS2339: Property 'props' does not exist on type 'ToolbarFilter'. +src/components/Toolbar/ToolbarFilter.tsx(103,9): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Toolbar/ToolbarFilter.tsx(103,10): error TS2786: 'ChipGroup' cannot be used as a JSX component. + Its instance type 'ChipGroup' is not a valid JSX element. + Type 'ChipGroup' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/Toolbar/ToolbarFilter.tsx(111,23): error TS7006: Parameter 'chip' implicitly has an 'any' type. +src/components/Toolbar/ToolbarFilter.tsx(113,15): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Toolbar/ToolbarFilter.tsx(113,16): error TS2786: 'Chip' cannot be used as a JSX component. + Its instance type 'Chip' is not a valid JSX element. +src/components/Toolbar/ToolbarFilter.tsx(117,15): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Toolbar/ToolbarFilter.tsx(117,16): error TS2786: 'Chip' cannot be used as a JSX component. + Its instance type 'Chip' is not a valid JSX element. +src/components/Toolbar/ToolbarFilter.tsx(126,29): error TS2339: Property 'state' does not exist on type 'ToolbarFilter'. +src/components/Toolbar/ToolbarFilter.tsx(137,13): error TS7031: Binding element 'chipContainerRef' implicitly has an 'any' type. +src/components/Toolbar/ToolbarGroup.tsx(59,20): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ForwardedRefObject'. +src/components/Toolbar/ToolbarGroup.tsx(62,41): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Toolbar/ToolbarGroup.tsx(77,14): error TS2339: Property 'props' does not exist on type 'ToolbarGroupWithRef'. +src/components/Toolbar/ToolbarGroup.tsx(81,13): error TS7031: Binding element 'width' implicitly has an 'any' type. +src/components/Toolbar/ToolbarGroup.tsx(81,20): error TS7031: Binding element 'getBreakpoint' implicitly has an 'any' type. +src/components/Toolbar/ToolbarGroup.tsx(110,35): error TS2339: Property 'forwardRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Toolbar/ToolbarGroup.tsx(111,3): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/Toolbar/ToolbarGroup.tsx(111,4): error TS2786: 'ToolbarGroupWithRef' cannot be used as a JSX component. + Its instance type 'ToolbarGroupWithRef' is not a valid JSX element. + Type 'ToolbarGroupWithRef' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/Toolbar/ToolbarItem.tsx(81,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Toolbar/ToolbarItem.tsx(110,11): error TS7031: Binding element 'width' implicitly has an 'any' type. +src/components/Toolbar/ToolbarItem.tsx(110,18): error TS7031: Binding element 'getBreakpoint' implicitly has an 'any' type. +src/components/Toolbar/ToolbarItem.tsx(140,88): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/components/Toolbar/ToolbarToggleGroup.tsx(51,40): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Toolbar/ToolbarToggleGroup.tsx(71,14): error TS2339: Property 'props' does not exist on type 'ToolbarToggleGroup'. +src/components/Toolbar/ToolbarToggleGroup.tsx(80,13): error TS7031: Binding element 'width' implicitly has an 'any' type. +src/components/Toolbar/ToolbarToggleGroup.tsx(80,20): error TS7031: Binding element 'getBreakpoint' implicitly has an 'any' type. +src/components/Toolbar/ToolbarToggleGroup.tsx(82,17): error TS7031: Binding element 'isExpanded' implicitly has an 'any' type. +src/components/Toolbar/ToolbarToggleGroup.tsx(82,29): error TS7031: Binding element 'toggleIsExpanded' implicitly has an 'any' type. +src/components/Toolbar/ToolbarToggleGroup.tsx(84,21): error TS7031: Binding element 'expandableContentRef' implicitly has an 'any' type. +src/components/Toolbar/ToolbarToggleGroup.tsx(84,43): error TS7031: Binding element 'expandableContentId' implicitly has an 'any' type. +src/components/Toolbar/ToolbarToggleGroup.tsx(99,19): error TS7053: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type '{ md?: "show"; lg?: "show"; xl?: "show"; '2xl'?: "show"; }'. +src/components/Toolbar/ToolbarUtils.tsx(2,10): error TS2305: Module '"react"' has no exported member 'RefObject'. +src/components/Toolbar/ToolbarUtils.tsx(21,37): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Toolbar/ToolbarUtils.tsx(36,44): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tooltip/Tooltip.tsx(55,58): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/components/Tooltip/Tooltip.tsx(144,29): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Tooltip/Tooltip.tsx(176,39): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tooltip/Tooltip.tsx(177,27): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tooltip/Tooltip.tsx(195,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tooltip/Tooltip.tsx(265,20): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tooltip/Tooltip.tsx(267,20): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Tooltip/TooltipArrow.tsx(10,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Tooltip/TooltipContent.tsx(14,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/TreeView/TreeView.tsx(76,27): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/TreeView/TreeView.tsx(96,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/TreeView/TreeView.tsx(181,9): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/TreeView/TreeView.tsx(181,10): error TS2786: 'TreeViewRoot' cannot be used as a JSX component. + Its instance type 'TreeViewRoot' is not a valid JSX element. + Type 'TreeViewRoot' is missing the following properties from type 'Component': state, props, context, setState, forceUpdate +src/components/TreeView/TreeViewList.tsx(14,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/TreeView/TreeViewListItem.tsx(1,17): error TS2305: Module '"react"' has no exported member 'useState'. +src/components/TreeView/TreeViewListItem.tsx(1,27): error TS2305: Module '"react"' has no exported member 'useEffect'. +src/components/TreeView/TreeViewListItem.tsx(53,27): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/TreeView/TreeViewListItem.tsx(73,35): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/TreeView/TreeViewListItem.tsx(141,10): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/TreeView/TreeViewListItem.tsx(205,9): error TS2607: JSX element class does not support attributes because it does not have a 'props' property. +src/components/TreeView/TreeViewListItem.tsx(205,10): error TS2786: 'GenerateId' cannot be used as a JSX component. + Its instance type 'GenerateId' is not a valid JSX element. +src/components/TreeView/TreeViewListItem.tsx(206,13): error TS7006: Parameter 'randomId' implicitly has an 'any' type. +src/components/TreeView/TreeViewListItem.tsx(251,39): error TS2339: Property 'memo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TreeView/TreeViewListItem.tsx(251,67): error TS7006: Parameter 'prevProps' implicitly has an 'any' type. +src/components/TreeView/TreeViewListItem.tsx(251,78): error TS7006: Parameter 'nextProps' implicitly has an 'any' type. +src/components/TreeView/TreeViewListItem.tsx(260,8): error TS7006: Parameter 'item' implicitly has an 'any' type. +src/components/TreeView/TreeViewListItem.tsx(266,8): error TS7006: Parameter 'item' implicitly has an 'any' type. +src/components/TreeView/TreeViewRoot.tsx(23,34): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TreeView/TreeViewRoot.tsx(25,27): error TS2339: Property 'createRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/TreeView/TreeViewRoot.tsx(31,14): error TS2339: Property 'props' does not exist on type 'TreeViewRoot'. +src/components/TreeView/TreeViewRoot.tsx(31,42): error TS2339: Property 'props' does not exist on type 'TreeViewRoot'. +src/components/TreeView/TreeViewRoot.tsx(34,14): error TS2339: Property 'props' does not exist on type 'TreeViewRoot'. +src/components/TreeView/TreeViewRoot.tsx(34,42): error TS2339: Property 'props' does not exist on type 'TreeViewRoot'. +src/components/TreeView/TreeViewRoot.tsx(41,16): error TS2339: Property 'props' does not exist on type 'TreeViewRoot'. +src/components/TreeView/TreeViewRoot.tsx(47,16): error TS2339: Property 'props' does not exist on type 'TreeViewRoot'. +src/components/TreeView/TreeViewRoot.tsx(64,14): error TS2339: Property 'props' does not exist on type 'TreeViewRoot'. +src/components/TreeView/TreeViewRoot.tsx(64,42): error TS2339: Property 'props' does not exist on type 'TreeViewRoot'. +src/components/TreeView/TreeViewRoot.tsx(79,19): error TS2339: Property 'classList' does not exist on type 'unknown'. +src/components/TreeView/TreeViewRoot.tsx(89,7): error TS2345: Argument of type 'unknown[]' is not assignable to parameter of type 'Element[]'. + Type 'unknown' is not assignable to type 'Element'. +src/components/TreeView/TreeViewRoot.tsx(193,107): error TS2339: Property 'props' does not exist on type 'TreeViewRoot'. +src/components/TreeView/TreeViewRoot.tsx(199,11): error TS7053: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type '{ default: string | string[]; compact: string | string[]; compactNoBackground: string | string[]; }'. +src/components/TreeView/TreeViewSearch.tsx(21,28): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'ChangeEvent'. +src/components/TreeView/TreeViewSearch.tsx(24,36): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/TreeView/TreeViewSearch.tsx(37,12): error TS2604: JSX element type 'SearchIcon' does not have any construct or call signatures. +src/components/Truncate/Truncate.tsx(48,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Wizard/hooks/useWizardFooter.tsx(14,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/types.tsx(85,45): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/types.tsx(91,49): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/types.tsx(97,48): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/utils.ts(12,9): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/utils.ts(22,11): error TS2322: Type 'VNode' is not assignable to type 'VNode<{}, any>'. + Types of property 'type' are incompatible. + Type 'string | ComponentType' is not assignable to type 'string | ComponentType<{}>'. + Type 'ComponentClass' is not assignable to type 'string | ComponentType<{}>'. + Type 'ComponentClass' is not assignable to type 'ComponentClass<{}, {}>'. + Types of parameters 'props' and 'props' are incompatible. + Type '{}' is not assignable to type 'WizardStepProps'. +src/components/Wizard/utils.ts(51,16): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/Wizard.tsx(74,55): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/Wizard.tsx(76,30): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/Wizard.tsx(79,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/Wizard.tsx(191,51): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/Wizard.tsx(193,27): error TS2339: Property 'useMemo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/Wizard.tsx(215,50): error TS7006: Parameter 'prevIsExpanded' implicitly has an 'any' type. +src/components/Wizard/WizardBody.tsx(37,49): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardBody.tsx(38,51): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardBody.tsx(39,28): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardBody.tsx(41,32): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardBody.tsx(44,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardBody.tsx(73,6): error TS2604: JSX element type 'WrapperComponent' does not have any construct or call signatures. +src/components/Wizard/WizardContext.tsx(33,36): error TS2339: Property 'createContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(52,43): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Wizard/WizardContext.tsx(53,10): error TS7031: Binding element 'initialSteps' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(54,11): error TS7031: Binding element 'initialFooter' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(55,3): error TS7031: Binding element 'activeStepIndex' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(56,3): error TS7031: Binding element 'children' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(57,3): error TS7031: Binding element 'onNext' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(58,3): error TS7031: Binding element 'onBack' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(59,3): error TS7031: Binding element 'onClose' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(60,3): error TS7031: Binding element 'goToStepById' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(61,3): error TS7031: Binding element 'goToStepByName' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(62,3): error TS7031: Binding element 'goToStepByIndex' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(64,49): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(65,51): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(68,23): error TS2339: Property 'useMemo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(70,25): error TS7006: Parameter 'currentStepProps' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(70,43): error TS7006: Parameter 'index' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(77,28): error TS2339: Property 'useMemo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(78,23): error TS7006: Parameter 'step' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(82,23): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(83,30): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(84,30): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(86,24): error TS2339: Property 'useMemo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(109,25): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(109,78): error TS7006: Parameter 'step' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(111,25): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(113,24): error TS7006: Parameter 'prevSteps' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(114,24): error TS7006: Parameter 'prevStep' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(137,29): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(137,42): error TS7006: Parameter 'id' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(138,31): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(138,44): error TS7006: Parameter 'name' implicitly has an 'any' type. +src/components/Wizard/WizardContext.tsx(139,32): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardContext.tsx(152,45): error TS2339: Property 'useContext' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardHeader.tsx(26,34): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Wizard/WizardHeader.tsx(40,12): error TS2604: JSX element type 'TimesIcon' does not have any construct or call signatures. +src/components/Wizard/WizardNav.tsx(18,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/components/Wizard/WizardNavInternal.tsx(32,19): error TS7006: Parameter 'step' implicitly has an 'any' type. +src/components/Wizard/WizardNavInternal.tsx(32,25): error TS7006: Parameter 'stepIndex' implicitly has an 'any' type. +src/components/Wizard/WizardNavInternal.tsx(33,48): error TS7006: Parameter 'step' implicitly has an 'any' type. +src/components/Wizard/WizardNavInternal.tsx(46,41): error TS7006: Parameter 'step' implicitly has an 'any' type. +src/components/Wizard/WizardNavInternal.tsx(47,52): error TS7006: Parameter 'step' implicitly has an 'any' type. +src/components/Wizard/WizardNavInternal.tsx(92,44): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardNavInternal.tsx(93,14): error TS7006: Parameter 'child' implicitly has an 'any' type. +src/components/Wizard/WizardNavInternal.tsx(93,30): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardNavItem.tsx(57,45): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardNavItem.tsx(60,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardNavItem.tsx(69,27): error TS2339: Property 'useMemo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardNavItem.tsx(119,18): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Wizard/WizardNavItem.tsx(129,18): error TS2604: JSX element type 'ExclamationCircleIcon' does not have any construct or call signatures. +src/components/Wizard/WizardStep.tsx(43,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardToggle.tsx(49,33): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardToggle.tsx(59,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/components/Wizard/WizardToggle.tsx(96,34): error TS2604: JSX element type 'AngleRightIcon' does not have any construct or call signatures. +src/components/Wizard/WizardToggle.tsx(102,12): error TS2604: JSX element type 'CaretDownIcon' does not have any construct or call signatures. +src/helpers/favorites.ts(30,25): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/favorites.ts(38,25): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/favorites.ts(49,26): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/favorites.ts(62,13): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/favorites.ts(63,25): error TS2339: Property 'Children' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/favorites.ts(63,85): error TS7006: Parameter 'item' implicitly has an 'any' type. +src/helpers/favorites.ts(67,24): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/favorites.ts(77,11): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/FocusTrap/FocusTrap.tsx(2,28): error TS2305: Module '"react"' has no exported member 'forwardRef'. +src/helpers/FocusTrap/FocusTrap.tsx(2,40): error TS2305: Module '"react"' has no exported member 'useEffect'. +src/helpers/FocusTrap/FocusTrap.tsx(2,51): error TS2305: Module '"react"' has no exported member 'useImperativeHandle'. +src/helpers/FocusTrap/FocusTrap.tsx(2,72): error TS2305: Module '"react"' has no exported member 'useRef'. +src/helpers/FocusTrap/FocusTrap.tsx(16,3): error TS7006: Parameter 'forwardedRef' implicitly has an 'any' type. +src/helpers/FocusTrap/FocusTrap.tsx(54,26): error TS2339: Property 'returnFocusOnDeactivate' does not exist on type '{}'. +src/helpers/GenerateId/GenerateId.ts(25,32): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/GenerateId/GenerateId.ts(30,16): error TS2339: Property 'props' does not exist on type 'GenerateId'. +src/helpers/GenerateId/GenerateId.ts(33,17): error TS2339: Property 'props' does not exist on type 'GenerateId'. +src/helpers/KeyboardHandler.tsx(6,23): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/helpers/KeyboardHandler.tsx(173,37): error TS2339: Property 'Component' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/KeyboardHandler.tsx(202,43): error TS2339: Property 'props' does not exist on type 'KeyboardHandler'. +src/helpers/KeyboardHandler.tsx(220,14): error TS2339: Property 'props' does not exist on type 'KeyboardHandler'. +src/helpers/KeyboardHandler.tsx(269,35): error TS2339: Property 'props' does not exist on type 'KeyboardHandler'. +src/helpers/OUIA/ouia.ts(1,10): error TS2305: Module '"react"' has no exported member 'useMemo'. +src/helpers/Popper/Popper.tsx(59,58): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/helpers/Popper/Popper.tsx(66,57): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/helpers/Popper/Popper.tsx(177,28): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/helpers/Popper/Popper.tsx(178,3): error TS7031: Binding element 'trigger' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(179,3): error TS7031: Binding element 'popper' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(182,3): error TS7031: Binding element 'placement' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(183,3): error TS7031: Binding element 'width' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(185,3): error TS7031: Binding element 'maxWidth' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(189,3): error TS7031: Binding element 'positionModifiers' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(191,3): error TS7031: Binding element 'onMouseEnter' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(192,3): error TS7031: Binding element 'onMouseLeave' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(193,3): error TS7031: Binding element 'onFocus' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(194,3): error TS7031: Binding element 'onBlur' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(195,3): error TS7031: Binding element 'onDocumentClick' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(196,3): error TS7031: Binding element 'onTriggerClick' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(197,3): error TS7031: Binding element 'onTriggerEnter' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(198,3): error TS7031: Binding element 'onPopperClick' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(199,3): error TS7031: Binding element 'onPopperMouseEnter' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(200,3): error TS7031: Binding element 'onPopperMouseLeave' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(201,3): error TS7031: Binding element 'onDocumentKeyDown' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(204,3): error TS7031: Binding element 'triggerRef' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(205,3): error TS7031: Binding element 'popperRef' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(215,53): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(216,45): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(217,51): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(218,51): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(219,35): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(220,39): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(221,59): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(222,36): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(223,30): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(224,30): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(225,34): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(230,41): error TS2339: Property 'useCallback' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(235,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(241,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(248,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(250,32): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/helpers/Popper/Popper.tsx(251,44): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/helpers/Popper/Popper.tsx(257,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(260,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/helpers/Popper/Popper.tsx(261,46): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'RefObject'. +src/helpers/Popper/Popper.tsx(267,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(290,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(342,34): error TS2339: Property 'useMemo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(343,42): error TS2339: Property 'useMemo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(348,54): error TS2339: Property 'useMemo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(354,14): error TS7031: Binding element 'state' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(368,18): error TS7031: Binding element 'state' implicitly has an 'any' type. +src/helpers/Popper/Popper.tsx(424,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(433,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(467,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(498,31): error TS2339: Property 'cloneElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(513,55): error TS2349: This expression is not callable. + Type 'never' has no call signatures. +src/helpers/Popper/Popper.tsx(520,40): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/Popper.tsx(525,39): error TS2339: Property 'isValidElement' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/thirdparty/react-popper/usePopper.ts(44,29): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/thirdparty/react-popper/usePopper.ts(53,35): error TS2339: Property 'useState' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/thirdparty/react-popper/usePopper.ts(64,37): error TS2339: Property 'useMemo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/thirdparty/react-popper/usePopper.ts(83,31): error TS2339: Property 'useMemo' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/Popper/thirdparty/react-popper/usePopper.ts(105,35): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/useInterval.ts(9,31): error TS2339: Property 'useRef' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/useInterval.ts(11,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/useInterval.ts(15,9): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/useIsomorphicLayout.ts(7,60): error TS2339: Property 'useLayoutEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/useIsomorphicLayout.ts(7,84): error TS2339: Property 'useEffect' does not exist on type 'typeof import("/Users/jschuler/Code/patternfly-react/packages/react-core/react")'. +src/helpers/useUnmountEffect.ts(1,10): error TS2305: Module '"react"' has no exported member 'EffectCallback'. +src/helpers/useUnmountEffect.ts(1,26): error TS2305: Module '"react"' has no exported member 'useEffect'. +src/helpers/useUnmountEffect.ts(1,37): error TS2305: Module '"react"' has no exported member 'useRef'. +src/layouts/Bullseye/Bullseye.tsx(14,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/layouts/Flex/Flex.tsx(488,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/layouts/Flex/FlexItem.tsx(142,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/layouts/Gallery/Gallery.tsx(33,29): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/layouts/Gallery/Gallery.tsx(68,102): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'CSSProperties'. +src/layouts/Gallery/GalleryItem.tsx(10,33): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/layouts/Grid/Grid.tsx(42,26): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/layouts/Grid/GridItem.tsx(64,30): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/layouts/Level/Level.tsx(14,27): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/layouts/Level/LevelItem.tsx(8,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/layouts/Split/Split.tsx(18,27): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/layouts/Split/SplitItem.tsx(14,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/layouts/Stack/Stack.tsx(16,27): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +src/layouts/Stack/StackItem.tsx(14,31): error TS2694: Namespace '"/Users/jschuler/Code/patternfly-react/packages/react-core/react"' has no exported member 'FunctionComponent'. +info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. diff --git a/packages/react-core/package.json b/packages/react-core/package.json index 3d4e02939e2..26dd44efc07 100644 --- a/packages/react-core/package.json +++ b/packages/react-core/package.json @@ -38,6 +38,8 @@ }, "homepage": "https://github.com/patternfly/patternfly-react#readme", "scripts": { + "build:tsc": "npx tsc --project tsconfig.json", + "build:rollup": "rm -rf dist && npx rollup -c rollup-esm.config.js", "build:umd": "rollup -c --environment IS_PRODUCTION", "build:single:packages": "node ../../scripts/build-single-packages.js --config single-packages.config.json", "clean": "rimraf dist components layouts helpers next deprecated node_modules", @@ -54,6 +56,7 @@ }, "devDependencies": { "@patternfly/patternfly": "5.1.0-prerelease.7", + "@rollup/plugin-alias": "^5.0.0", "@rollup/plugin-commonjs": "^25.0.0", "@rollup/plugin-node-resolve": "^15.0.2", "@rollup/plugin-replace": "^5.0.2", @@ -66,6 +69,8 @@ "rollup": "^3.21.5", "rollup-plugin-scss": "^4.0.0", "rollup-plugin-terser": "^7.0.2", + "rollup-plugin-typescript2": "^0.35.0", + "sass": "^1.66.1", "typescript": "^4.7.4" }, "peerDependencies": { diff --git a/packages/react-core/react.d.ts b/packages/react-core/react.d.ts new file mode 100644 index 00000000000..f4dfcbbd4e1 --- /dev/null +++ b/packages/react-core/react.d.ts @@ -0,0 +1,28 @@ +import { + AnyComponent, + createElement, + FunctionalComponent, + RenderableProps, + ComponentChild, + ComponentChildren + } from 'preact' + + export { + Attributes, + FunctionalComponent as SFC, + AnyComponent as ComponentType, + AnyComponent as JSXElementConstructor, + Component as ComponentClass, + ClassAttributes, + PreactContext as Context, + PreactProvider as Provider, + VNode as ReactElement, + createElement, + Fragment, + Ref, + render, + JSX, + RenderableProps as ComponentPropsWithRef + } from 'preact' + + export type ReactNode = ComponentChild | ComponentChildren; \ No newline at end of file diff --git a/packages/react-core/rollup-esm.config.js b/packages/react-core/rollup-esm.config.js new file mode 100644 index 00000000000..9ddedd9dd21 --- /dev/null +++ b/packages/react-core/rollup-esm.config.js @@ -0,0 +1,92 @@ +const alias = require('@rollup/plugin-alias'); +const { nodeResolve } = require('@rollup/plugin-node-resolve'); +const typescript = require('rollup-plugin-typescript2'); +const scss = require('rollup-plugin-scss'); + +const packageJson = require('./package.json'); + +module.exports = { + // input: 'dist/esm/index.js', + input: 'src/index.ts', + output: [ + { + file: packageJson.module, + format: 'esm', // ES Modules + sourcemap: true + } + ], + external: ['react', 'react-dom'], + plugins: [ + alias({ + entries: [ + { find: 'react', replacement: 'preact/compat' }, + { find: 'react-dom/test-utils', replacement: 'preact/test-utils' }, + { find: 'react-dom', replacement: 'preact/compat' }, + { find: 'react/jsx-runtime', replacement: 'preact/jsx-runtime' } + ] + }), + nodeResolve(), + typescript({ + useTsconfigDeclarationDir: false + }), + scss() + ] +}; + +// const { nodeResolve } = require('@rollup/plugin-node-resolve'); +// const commonjs = require('@rollup/plugin-commonjs'); +// const scss = require('rollup-plugin-scss'); +// const replace = require('@rollup/plugin-replace'); +// const { terser } = require('rollup-plugin-terser'); + +// const isProduction = process.env.IS_PRODUCTION; +// let exitCode = 0; + +// function circularFailPlugin() { +// return { +// name: 'circluarFailPlugin', +// buildEnd() { +// if (exitCode !== 0) { +// process.exit(exitCode); +// } +// } +// }; +// } + +// module.exports = ({ packageName, name }) => ({ +// input: 'dist/esm/index.js', +// output: { +// file: `dist/umd/${packageName}${isProduction ? '.min' : ''}.js`, +// format: 'umd', +// inlineDynamicImports: true, +// name, +// globals: { +// react: 'React', +// 'react-dom': 'ReactDOM' +// } +// }, +// external: ['react', 'react-dom'], +// plugins: [ +// replace({ +// 'process.env.NODE_ENV': `'${isProduction ? 'production' : 'development'}'` +// }), +// nodeResolve(), +// commonjs(), +// scss(), +// isProduction && terser(), +// circularFailPlugin() +// ], +// onwarn(warning) { +// if (warning.code === 'CIRCULAR_DEPENDENCY') { +// const split = warning.message.split(':'); +// if (warning.message.includes('d3-interpolate')) { +// // eslint-disable-next-line no-console +// console.error(`\x1b[33m(!) ${split[0]}:\x1b[0m${split[1]}`); +// } else { +// // eslint-disable-next-line no-console +// console.error(`\x1b[31m(!) ${split[0]}:\x1b[0m${split[1]}`); +// exitCode = 1; +// } +// } +// } +// }); diff --git a/packages/react-core/src/components/AboutModal/AboutModal.tsx b/packages/react-core/src/components/AboutModal/AboutModal.tsx index d75aaec82f3..7420efe741c 100644 --- a/packages/react-core/src/components/AboutModal/AboutModal.tsx +++ b/packages/react-core/src/components/AboutModal/AboutModal.tsx @@ -9,7 +9,7 @@ import { AboutModalBox } from './AboutModalBox'; import { Modal, ModalVariant } from '../Modal'; import { GenerateId } from '../../helpers/GenerateId/GenerateId'; -export interface AboutModalProps extends React.HTMLProps { +export interface AboutModalProps extends React.HTMLAttributes { /** Content rendered inside the about modal */ children: React.ReactNode; /** Additional classes added to the about modal */ @@ -17,7 +17,7 @@ export interface AboutModalProps extends React.HTMLProps { /** Flag to show the about modal */ isOpen?: boolean; /** A callback for when the close button is clicked */ - onClose?: (event: React.MouseEvent | MouseEvent | KeyboardEvent) => void; + onClose?: (event: any) => void; /** Product name */ productName?: string; /** Trademark information */ diff --git a/packages/react-core/src/components/ActionList/examples/ActionListSingleGroup.tsx b/packages/react-core/src/components/ActionList/examples/ActionListSingleGroup.tsx index ab14d443179..cdafe867e26 100644 --- a/packages/react-core/src/components/ActionList/examples/ActionListSingleGroup.tsx +++ b/packages/react-core/src/components/ActionList/examples/ActionListSingleGroup.tsx @@ -73,7 +73,7 @@ export const ActionListSingleGroup: React.FunctionComponent = () => { ) => ( + toggle={(toggleref: React.Ref) => ( , HTMLImageElement> { + extends Omit, HTMLImageElement>, 'size'> { /** Additional classes added to the Avatar. */ className?: string; /** Attribute that specifies the URL of the image for the Avatar. */ diff --git a/packages/react-core/src/components/Badge/Badge.tsx b/packages/react-core/src/components/Badge/Badge.tsx index e584038f930..70e9f864b5b 100644 --- a/packages/react-core/src/components/Badge/Badge.tsx +++ b/packages/react-core/src/components/Badge/Badge.tsx @@ -1,21 +1,23 @@ -import * as React from 'react'; +// import * as React from 'react'; +import { /*HTMLProps,*/ ReactNode, FunctionComponent } from 'react'; +// import { HTMLAttributes, ReactNode, FunctionComponent } from 'preact/compat'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Badge/badge'; import { JSX } from 'preact'; -// export interface BadgeProps extends React.HTMLProps { +// React: ...extends HTMLProps export interface BadgeProps extends JSX.HTMLAttributes { /** Text announced by screen readers to indicate the current content/status of the badge. */ screenReaderText?: string; /** Adds styling to the badge to indicate it has been read */ isRead?: boolean; /** content rendered inside the Badge */ - children?: React.ReactNode; + children?: ReactNode; /** additional classes added to the Badge */ className?: string; } -export const Badge: React.FunctionComponent = ({ +export const Badge: FunctionComponent = ({ isRead = false, className = '', children = '', diff --git a/packages/react-core/src/components/Badge/Test.tsx b/packages/react-core/src/components/Badge/Test.tsx new file mode 100644 index 00000000000..15689db03ed --- /dev/null +++ b/packages/react-core/src/components/Badge/Test.tsx @@ -0,0 +1,14 @@ +import { h } from 'preact'; + +export interface Props { + value: string, + optionalValue?: string +} + +export default function SomeFunctionalComponent({ value, optionalValue }: Props) { + return ( +

+ {value} {optionalValue} +
+ ); +} \ No newline at end of file diff --git a/packages/react-core/src/components/Badge/Test2.tsx b/packages/react-core/src/components/Badge/Test2.tsx new file mode 100644 index 00000000000..d317943b701 --- /dev/null +++ b/packages/react-core/src/components/Badge/Test2.tsx @@ -0,0 +1,16 @@ +import type React from 'react' +import { FunctionalComponent, h } from 'preact' + +const ReactFCInterlop: React.FC = () => { + return hello +} + +const Home: FunctionalComponent = () => { + return ( +
+ +
+ ) +} + +export default Home \ No newline at end of file diff --git a/packages/react-core/src/components/Badge/index.ts b/packages/react-core/src/components/Badge/index.ts index 9c8edca28a4..59227ad3325 100644 --- a/packages/react-core/src/components/Badge/index.ts +++ b/packages/react-core/src/components/Badge/index.ts @@ -1 +1,3 @@ export * from './Badge'; +export * from './Test'; +export * from './Test2'; \ No newline at end of file diff --git a/packages/react-core/src/components/Brand/Brand.tsx b/packages/react-core/src/components/Brand/Brand.tsx index 03ed8a9bcea..cc1c405b182 100644 --- a/packages/react-core/src/components/Brand/Brand.tsx +++ b/packages/react-core/src/components/Brand/Brand.tsx @@ -61,7 +61,7 @@ export const Brand: React.FunctionComponent = ({ children !== undefined ? ( {children} @@ -71,7 +71,7 @@ export const Brand: React.FunctionComponent = ({ {alt} diff --git a/packages/react-core/src/components/Breadcrumb/examples/BreadcrumbDropdown.tsx b/packages/react-core/src/components/Breadcrumb/examples/BreadcrumbDropdown.tsx index ca6d166c18c..e41603461b6 100644 --- a/packages/react-core/src/components/Breadcrumb/examples/BreadcrumbDropdown.tsx +++ b/packages/react-core/src/components/Breadcrumb/examples/BreadcrumbDropdown.tsx @@ -43,7 +43,7 @@ export const BreadcrumbDropdown: React.FunctionComponent = () => { setIsOpen(isOpen)} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( {dropdownItems.length}{' '} diff --git a/packages/react-core/src/components/CalendarMonth/CalendarMonth.tsx b/packages/react-core/src/components/CalendarMonth/CalendarMonth.tsx index c49cc6b715e..59c96158303 100644 --- a/packages/react-core/src/components/CalendarMonth/CalendarMonth.tsx +++ b/packages/react-core/src/components/CalendarMonth/CalendarMonth.tsx @@ -295,7 +295,7 @@ export const CalendarMonth = ({ Month ) => ( + toggle={(toggleref: React.Ref) => ( setIsHeaderUtilsOpen(!isHeaderUtilsOpen)} diff --git a/packages/react-core/src/components/Menu/Menu.tsx b/packages/react-core/src/components/Menu/Menu.tsx index fb6b91c9e00..8a2a8f288b4 100644 --- a/packages/react-core/src/components/Menu/Menu.tsx +++ b/packages/react-core/src/components/Menu/Menu.tsx @@ -67,7 +67,7 @@ export interface MenuProps extends Omit, 'r export interface MenuState { ouiaStateId: string; transitionMoveTarget: HTMLElement; - flyoutRef: React.Ref | null; + flyoutref: React.Ref | null; disableHover: boolean; currentDrilldownMenuId: string; } diff --git a/packages/react-core/src/components/Menu/MenuContainer.tsx b/packages/react-core/src/components/Menu/MenuContainer.tsx index 16f002561f3..ba5184f7b1b 100644 --- a/packages/react-core/src/components/Menu/MenuContainer.tsx +++ b/packages/react-core/src/components/Menu/MenuContainer.tsx @@ -19,11 +19,11 @@ export interface MenuContainerProps { /** Menu to be rendered */ menu: React.ReactElement>; /** Reference to the menu */ - menuRef: React.RefObject; + menuref: React.RefObject; /** Toggle to be rendered */ toggle: React.ReactNode; /** Reference to the toggle */ - toggleRef: React.RefObject; + toggleref: React.RefObject; /** Flag to indicate if menu is opened.*/ isOpen: boolean; /** Callback to change the open state of the menu. diff --git a/packages/react-core/src/components/Menu/examples/MenuWithDrilldownBreadcrumbs.tsx b/packages/react-core/src/components/Menu/examples/MenuWithDrilldownBreadcrumbs.tsx index cbeb81777dd..2becf6d7854 100644 --- a/packages/react-core/src/components/Menu/examples/MenuWithDrilldownBreadcrumbs.tsx +++ b/packages/react-core/src/components/Menu/examples/MenuWithDrilldownBreadcrumbs.tsx @@ -115,7 +115,7 @@ export const MenuWithDrilldownBreadcrumbs: React.FunctionComponent = () => { onToggle(isOpen, 'app')} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( onToggle(true, 'app')} isExpanded={isOpen} variant="plain"> 1{' '} @@ -155,7 +155,7 @@ export const MenuWithDrilldownBreadcrumbs: React.FunctionComponent = () => { onToggle(isOpen, 'label')} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( onToggle(true, 'label')} isExpanded={isOpen} variant="plain"> 1{' '} @@ -207,7 +207,7 @@ export const MenuWithDrilldownBreadcrumbs: React.FunctionComponent = () => { onToggle(isOpen, 'pause-app')} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( onToggle(true, 'pause-app')} isExpanded={isOpen} variant="plain"> 1{' '} @@ -247,7 +247,7 @@ export const MenuWithDrilldownBreadcrumbs: React.FunctionComponent = () => { onToggle(isOpen, 'pause-label')} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( onToggle(true, 'pause-label')} diff --git a/packages/react-core/src/components/Modal/examples/ModalWithDropdown.tsx b/packages/react-core/src/components/Modal/examples/ModalWithDropdown.tsx index 12051fef113..6b4ad8d5144 100644 --- a/packages/react-core/src/components/Modal/examples/ModalWithDropdown.tsx +++ b/packages/react-core/src/components/Modal/examples/ModalWithDropdown.tsx @@ -74,7 +74,7 @@ export const ModalWithDropdown: React.FunctionComponent = () => { isOpen={isDropdownOpen} onSelect={onSelect} onOpenChange={(isOpen: boolean) => setIsDropdownOpen(isOpen)} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( Dropdown diff --git a/packages/react-core/src/components/Nav/Nav.tsx b/packages/react-core/src/components/Nav/Nav.tsx index 6fe6eb9ca73..c9dbbae552b 100644 --- a/packages/react-core/src/components/Nav/Nav.tsx +++ b/packages/react-core/src/components/Nav/Nav.tsx @@ -66,7 +66,7 @@ export const NavContext = React.createContext(navContextDefault class Nav extends React.Component< NavProps, - { isScrollable: boolean; ouiaStateId: string; flyoutRef: React.Ref | null } + { isScrollable: boolean; ouiaStateId: string; flyoutref: React.Ref | null } > { static displayName = 'Nav'; static defaultProps: NavProps = { diff --git a/packages/react-core/src/components/NotificationDrawer/examples/NotificationDrawerBasic.tsx b/packages/react-core/src/components/NotificationDrawer/examples/NotificationDrawerBasic.tsx index 4c41f01bc72..e3e82e9b4c6 100644 --- a/packages/react-core/src/components/NotificationDrawer/examples/NotificationDrawerBasic.tsx +++ b/packages/react-core/src/components/NotificationDrawer/examples/NotificationDrawerBasic.tsx @@ -57,7 +57,7 @@ export const NotificationDrawerBasic: React.FunctionComponent = () => { isOpen={isOpen0} onOpenChange={() => setIsOpenMap(new Array(7).fill(false))} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpen1} onOpenChange={() => setIsOpenMap(new Array(7).fill(false))} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpen2} onOpenChange={() => setIsOpenMap(new Array(7).fill(false))} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpen3} onOpenChange={() => setIsOpenMap(new Array(7).fill(false))} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpen4} onOpenChange={() => setIsOpenMap(new Array(7).fill(false))} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpen5} onOpenChange={() => setIsOpenMap(new Array(7).fill(false))} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpen6} onOpenChange={() => setIsOpenMap(new Array(7).fill(false))} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpenMap['groups-kebab-toggle-1'] || false} onOpenChange={() => setIsOpenMap({})} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpenMap['groups-kebab-toggle-2'] || false} onOpenChange={() => setIsOpenMap({})} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpenMap['groups-kebab-toggle-3'] || false} onOpenChange={() => setIsOpenMap({})} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpenMap['groups-kebab-toggle-4'] || false} onOpenChange={() => setIsOpenMap({})} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpenMap['groups-kebab-toggle-5'] || false} onOpenChange={() => setIsOpenMap({})} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpenMap['groups-kebab-toggle-6'] || false} onOpenChange={() => setIsOpenMap({})} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpenMap['groups-kebab-toggle-7'] || false} onOpenChange={() => setIsOpenMap({})} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpenMap['groups-kebab-toggle-8'] || false} onOpenChange={() => setIsOpenMap({})} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( { isOpen={isOpenMap['groups-kebab-toggle-9'] || false} onOpenChange={() => setIsOpenMap({})} popperProps={{ position: 'right' }} - toggle={(toggleRef: React.Ref) => ( + toggle={(toggleref: React.Ref) => ( test('Renders with ref', async () => { const user = userEvent.setup(); - const panelRef: React.RefObject = React.createRef(); + const panelref: React.RefObject = React.createRef(); const BasicPanel = () => { const [lastClickWasInPanel, setLastClickWasInPanel] = React.useState(false); diff --git a/packages/react-core/src/components/ProgressStepper/ProgressStep.tsx b/packages/react-core/src/components/ProgressStepper/ProgressStep.tsx index 0bc63dc449a..78132748fbd 100644 --- a/packages/react-core/src/components/ProgressStepper/ProgressStep.tsx +++ b/packages/react-core/src/components/ProgressStepper/ProgressStep.tsx @@ -35,7 +35,7 @@ export interface ProgressStepProps * step's icon, including the variant and the completed status. */ 'aria-label'?: string; /** Forwards the step ref to rendered function. Use this prop to add a popover to the step.*/ - popoverRender?: (stepRef: React.RefObject) => React.ReactNode; + popoverRender?: (stepref: React.RefObject) => React.ReactNode; } const variantIcons = { diff --git a/packages/react-core/src/components/SearchInput/SearchInput.tsx b/packages/react-core/src/components/SearchInput/SearchInput.tsx index 1381199ee68..cdfd6f88d80 100644 --- a/packages/react-core/src/components/SearchInput/SearchInput.tsx +++ b/packages/react-core/src/components/SearchInput/SearchInput.tsx @@ -71,7 +71,7 @@ export interface SearchInputProps extends Omit, /** A suggestion for autocompleting. */ hint?: string; /** @hide A reference object to attach to the input box. */ - innerRef?: React.RefObject; + innerRef?: React.Ref; /** A flag for controlling the open state of a custom advanced search implementation. */ isAdvancedSearchOpen?: boolean; /** Flag indicating if search input is disabled. */ diff --git a/packages/react-core/src/components/Select/Select.tsx b/packages/react-core/src/components/Select/Select.tsx index d3f71d5862f..cab4b1a7645 100644 --- a/packages/react-core/src/components/Select/Select.tsx +++ b/packages/react-core/src/components/Select/Select.tsx @@ -40,7 +40,7 @@ export interface SelectProps extends MenuProps, OUIAProps { /** Single select option value for single select menus, or array of select option values for multi select. You can also specify isSelected on the SelectOption. */ selected?: any | any[]; /** Select toggle. The toggle should either be a renderer function which forwards the given toggle ref, or a direct ReactNode that should be passed along with the toggleRef property. */ - toggle: SelectToggleProps | ((toggleRef: React.RefObject) => React.ReactNode); + toggle: SelectToggleProps | ((toggleref: React.RefObject) => React.ReactNode); /** Flag indicating the toggle should be focused after a selection. If this use case is too restrictive, the optional toggleRef property with a node toggle may be used to control focus. */ shouldFocusToggleOnSelect?: boolean; /** Function callback when user selects an option. */ diff --git a/packages/react-core/src/components/Select/examples/SelectBasic.tsx b/packages/react-core/src/components/Select/examples/SelectBasic.tsx index a149e5d3994..75bf0f6f0e3 100644 --- a/packages/react-core/src/components/Select/examples/SelectBasic.tsx +++ b/packages/react-core/src/components/Select/examples/SelectBasic.tsx @@ -18,7 +18,7 @@ export const SelectBasic: React.FunctionComponent = () => { setIsOpen(false); }; - const toggle = (toggleRef: React.Ref) => ( + const toggle = (toggleref: React.Ref) => ( { } }; - const toggle = (toggleRef: React.Ref) => ( + const toggle = (toggleref: React.Ref) => ( { setIsOpen(false); }; - const toggle = (toggleRef: React.Ref) => ( + const toggle = (toggleref: React.Ref) => ( { textInputRef.current?.focus(); }; - const toggle = (toggleRef: React.Ref) => ( + const toggle = (toggleref: React.Ref) => ( { setPlaceholder(`${selected.length} items selected`); }, [selected]); - const toggle = (toggleRef: React.Ref) => ( + const toggle = (toggleref: React.Ref) => ( { textInputRef.current?.focus(); }; - const toggle = (toggleRef: React.Ref) => ( + const toggle = (toggleref: React.Ref) => ( { setIsOpen(false); }; - const toggle = (toggleRef: React.Ref) => ( + const toggle = (toggleref: React.Ref) => ( { } }; - const toggle = (toggleRef: React.Ref) => ( + const toggle = (toggleref: React.Ref) => ( { } }; - const toggle = (toggleRef: React.Ref) => ( + const toggle = (toggleref: React.Ref) => ( , ' export interface SimpleListState { /** Ref of the current SimpleListItem */ - currentRef: React.RefObject | React.RefObject; + currentref: React.RefObject | React.RefObject; } interface SimpleListContextProps { - currentRef: React.RefObject | React.RefObject; + currentref: React.RefObject | React.RefObject; updateCurrentRef: ( id: React.RefObject | React.RefObject, props: SimpleListItemProps @@ -49,7 +49,7 @@ class SimpleList extends React.Component { }; handleCurrentUpdate = ( - newCurrentRef: React.RefObject | React.RefObject, + newCurrentref: React.RefObject | React.RefObject, itemProps: SimpleListItemProps ) => { this.setState({ currentRef: newCurrentRef }); diff --git a/packages/react-core/src/components/Slider/Slider.tsx b/packages/react-core/src/components/Slider/Slider.tsx index a889032e3a3..e222bd3f878 100644 --- a/packages/react-core/src/components/Slider/Slider.tsx +++ b/packages/react-core/src/components/Slider/Slider.tsx @@ -391,7 +391,7 @@ export const Slider: React.FunctionComponent = ({ return (
{leftActions &&
{leftActions}
} diff --git a/packages/react-core/src/components/Spinner/Spinner.tsx b/packages/react-core/src/components/Spinner/Spinner.tsx index cd4953c974d..f1a31b5765a 100644 --- a/packages/react-core/src/components/Spinner/Spinner.tsx +++ b/packages/react-core/src/components/Spinner/Spinner.tsx @@ -9,7 +9,7 @@ export enum spinnerSize { xl = 'xl' } -export interface SpinnerProps extends React.SVGProps { +export interface SpinnerProps extends Omit, 'size'> { /** Additional classes added to the Spinner. */ className?: string; /** Size variant of progress. */ diff --git a/packages/react-core/src/components/Switch/Switch.tsx b/packages/react-core/src/components/Switch/Switch.tsx index c428080babf..b768307974c 100644 --- a/packages/react-core/src/components/Switch/Switch.tsx +++ b/packages/react-core/src/components/Switch/Switch.tsx @@ -94,7 +94,7 @@ class Switch extends React.Component onChange(event, event.target.checked)} + onChange={(event) => onChange(event, (event.target as HTMLInputElement).checked)} {...(defaultChecked !== undefined ? { defaultChecked } : { checked: isChecked })} disabled={isDisabled} aria-labelledby={!isAriaLabelledBy ? null : `${this.id}-${isChecked !== true ? 'off' : 'on'}`} diff --git a/packages/react-core/src/components/Tabs/TabButton.tsx b/packages/react-core/src/components/Tabs/TabButton.tsx index 7756a4dbea2..fc2b705d3cf 100644 --- a/packages/react-core/src/components/Tabs/TabButton.tsx +++ b/packages/react-core/src/components/Tabs/TabButton.tsx @@ -11,7 +11,7 @@ export interface TabButtonProps extends Omit; /** Parents' innerRef passed down for properly displaying Tooltips */ - parentInnerRef?: React.Ref; + parentinnerRef?: React.Ref; } export const TabButton: React.FunctionComponent = ({ diff --git a/packages/react-core/src/components/Tabs/examples/TabsHelp.tsx b/packages/react-core/src/components/Tabs/examples/TabsHelp.tsx index 7ed588052bd..cc93e79e73f 100644 --- a/packages/react-core/src/components/Tabs/examples/TabsHelp.tsx +++ b/packages/react-core/src/components/Tabs/examples/TabsHelp.tsx @@ -7,7 +7,7 @@ export const TabsHelp: React.FunctionComponent = () => { const tabs = ['Users', 'Containers', 'Database', 'Disabled', 'ARIA disabled', 'Help disabled']; - const helpPopover = (header: string, popoverRef: React.RefObject) => ( + const helpPopover = (header: string, popoverref: React.RefObject) => ( {header}
} bodyContent={ diff --git a/packages/react-core/src/components/Tabs/examples/TabsHelpAndClose.tsx b/packages/react-core/src/components/Tabs/examples/TabsHelpAndClose.tsx index 3418c489480..9a07d7140c8 100644 --- a/packages/react-core/src/components/Tabs/examples/TabsHelpAndClose.tsx +++ b/packages/react-core/src/components/Tabs/examples/TabsHelpAndClose.tsx @@ -23,7 +23,7 @@ export const TabsHelpAndClose: React.FunctionComponent = () => { setTabs(tabs.filter((tab, index) => index !== tabIndex)); }; - const helpPopover = (header: string, popoverRef: React.RefObject) => ( + const helpPopover = (header: string, popoverref: React.RefObject) => ( {header}} bodyContent={ diff --git a/packages/react-core/src/components/TextArea/TextArea.tsx b/packages/react-core/src/components/TextArea/TextArea.tsx index 055930dd160..baf6e272b6d 100644 --- a/packages/react-core/src/components/TextArea/TextArea.tsx +++ b/packages/react-core/src/components/TextArea/TextArea.tsx @@ -41,7 +41,7 @@ export interface TextAreaProps extends Omit, 'onC /** Custom flag to show that the text area requires an associated id or aria-label. */ 'aria-label'?: string; /** @hide A reference object to attach to the text area. */ - innerRef?: React.RefObject; + innerRef?: React.Ref; } class TextAreaBase extends React.Component { diff --git a/packages/react-core/src/components/TextArea/__tests__/TextArea.test.tsx b/packages/react-core/src/components/TextArea/__tests__/TextArea.test.tsx index 03c828a0731..5004ad4c5ec 100644 --- a/packages/react-core/src/components/TextArea/__tests__/TextArea.test.tsx +++ b/packages/react-core/src/components/TextArea/__tests__/TextArea.test.tsx @@ -127,7 +127,7 @@ test('Does not throw console error when aria-label is given but no id', () => { }); test('TextArea can be accessed via passed ref', () => { - const testRef: React.RefObject = React.createRef(); + const testref: React.RefObject = React.createRef(); render(