@ansible/ansible-ui-framework 2.4.519 → 2.4.521

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ansible/ansible-ui-framework",
3
3
  "description": "A framework for building applications using PatternFly.",
4
- "version": "2.4.519",
4
+ "version": "2.4.521",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -1,6 +0,0 @@
1
- import { TextInputProps } from '@patternfly/react-core';
2
- import { ReactNode } from 'react';
3
- import { PageFormGroupProps } from './PageFormGroup';
4
- export type FormGroupTextInputProps = Pick<TextInputProps, 'placeholder' | 'value' | 'isDisabled' | 'isReadOnly' | 'isRequired' | 'validated' | 'onChange' | 'type' | 'aria-label' | 'autoFocus' | 'innerRef' | 'minLength' | 'maxLength' | 'onBlur' | 'min' | 'max'> & PageFormGroupProps & {
5
- children?: ReactNode;
6
- };