@frontify/fondue 12.0.0-beta.373 → 12.0.0-beta.375
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.
- package/dist/components/ComponentEnum.es.js +1 -1
- package/dist/components/ComponentEnum.es.js.map +1 -1
- package/dist/components/SegmentedControls/SegmentedControls.es.js +78 -77
- package/dist/components/SegmentedControls/SegmentedControls.es.js.map +1 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/utilities/validation.es.js +12 -12
- package/dist/utilities/validation.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -998,6 +998,7 @@ export declare enum ComponentEnum {
|
|
|
998
998
|
"Fondue - NumberInput" = "NumberInput",
|
|
999
999
|
"Fondue - OrderableList" = "OrderableList",
|
|
1000
1000
|
"Fondue - OverflowMenu" = "OverflowMenu",
|
|
1001
|
+
"Fondue - PasswordInput" = "PasswordInput",
|
|
1001
1002
|
"Fondue - Popper" = "Popper",
|
|
1002
1003
|
"Fondue - Portal" = "Portal",
|
|
1003
1004
|
"Fondue - RadioButton" = "RadioButton",
|
|
@@ -11689,10 +11690,13 @@ export declare const InlineDialog: {
|
|
|
11689
11690
|
export declare type InlineDialogProps = Omit<OverlayProps, 'strategy'> & BaseDialogProps;
|
|
11690
11691
|
|
|
11691
11692
|
declare type InputBaseProps<TValue> = {
|
|
11693
|
+
autocomplete?: boolean;
|
|
11694
|
+
id?: string;
|
|
11692
11695
|
clearable?: boolean;
|
|
11693
11696
|
decorator?: ReactElement;
|
|
11694
11697
|
suffix?: string;
|
|
11695
11698
|
status?: Validation_2;
|
|
11699
|
+
size?: number;
|
|
11696
11700
|
valueSelect?: boolean;
|
|
11697
11701
|
onChange?: (value?: TValue) => void;
|
|
11698
11702
|
'data-test-id'?: string;
|