@pingux/astro 2.79.0 → 2.80.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -35,7 +35,7 @@ export interface ColorFieldProps extends TestingAttributes {
35
35
  */
36
36
  onChange?: (color: CustomColorProps, event: React.ChangeEvent) => void | undefined;
37
37
  /** Color controls what color is active on the color picker. */
38
- value?: string;
38
+ value?: React.InputHTMLAttributes<HTMLInputElement>['value'];
39
39
  /** Props object that is spread into the Button element. */
40
40
  buttonProps?: ButtonProps;
41
41
  status?: Status;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TestingAttributes } from './shared/test';
2
3
  import { DOMAttributes, StyleProps, ValidPositiveInteger } from './shared';
3
4
  export interface InputProps extends StyleProps, DOMAttributes, TestingAttributes {
@@ -15,4 +16,5 @@ export interface InputProps extends StyleProps, DOMAttributes, TestingAttributes
15
16
  placeholder?: string;
16
17
  /** Styling variant for the input */
17
18
  variant?: string;
19
+ value?: React.InputHTMLAttributes<HTMLInputElement>['value'];
18
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "2.79.0",
3
+ "version": "2.80.0-alpha.0",
4
4
  "description": "React component library for Ping Identity's design system",
5
5
  "repository": {
6
6
  "type": "git",