@pingux/astro 2.107.2-alpha.0 → 2.108.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.
@@ -1,5 +1,6 @@
|
|
1
1
|
import React, { Key } from 'react';
|
2
2
|
import type { AriaLabelingProps, CollectionChildren, DOMProps } from '@react-types/shared';
|
3
|
+
import { ThemeUICSSObject } from 'theme-ui';
|
3
4
|
import { AriaRole, BoxProps, LabelModeProps, LabelProps, Status, ValidPositiveInteger } from '../../types';
|
4
5
|
/**
|
5
6
|
* Generates the necessary props to be used in field components.
|
@@ -45,6 +46,7 @@ export interface ControlProps extends React.HTMLAttributes<Element> {
|
|
45
46
|
hasAutoFocus?: boolean;
|
46
47
|
isDefaultSelected?: boolean;
|
47
48
|
variant?: string;
|
49
|
+
sx?: ThemeUICSSObject;
|
48
50
|
}
|
49
51
|
export interface UseFieldProps<T> {
|
50
52
|
autocomplete?: string;
|