@frontify/fondue 12.0.0-beta.372 → 12.0.0-beta.374
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/{Textarea/Textarea.es.js → LegacyTextarea/LegacyTextarea.es.js} +21 -21
- package/dist/components/LegacyTextarea/LegacyTextarea.es.js.map +1 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +10 -6
- package/dist/index.es.js +2 -2
- 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/components/Textarea/Textarea.es.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -973,6 +973,7 @@ export declare enum ComponentEnum {
|
|
|
973
973
|
"Fondue - InputLabel" = "InputLabel",
|
|
974
974
|
"Fondue - LegacyCollectionItem" = "LegacyCollectionItem",
|
|
975
975
|
"Fondue - LegacyOrderableList" = "LegacyOrderableList",
|
|
976
|
+
"Fondue - LegacyTextarea" = "LegacyTextarea",
|
|
976
977
|
"Fondue - BrightHeader" = "BrightHeader",
|
|
977
978
|
"Fondue - LegacyTooltip" = "LegacyTooltip",
|
|
978
979
|
"Fondue - LinkChooser" = "LinkChooser",
|
|
@@ -997,6 +998,7 @@ export declare enum ComponentEnum {
|
|
|
997
998
|
"Fondue - NumberInput" = "NumberInput",
|
|
998
999
|
"Fondue - OrderableList" = "OrderableList",
|
|
999
1000
|
"Fondue - OverflowMenu" = "OverflowMenu",
|
|
1001
|
+
"Fondue - PasswordInput" = "PasswordInput",
|
|
1000
1002
|
"Fondue - Popper" = "Popper",
|
|
1001
1003
|
"Fondue - Portal" = "Portal",
|
|
1002
1004
|
"Fondue - RadioButton" = "RadioButton",
|
|
@@ -1017,7 +1019,6 @@ export declare enum ComponentEnum {
|
|
|
1017
1019
|
"Fondue - Tabs" = "Tabs",
|
|
1018
1020
|
"Fondue - Tag" = "Tag",
|
|
1019
1021
|
"Fondue - TextInput" = "TextInput",
|
|
1020
|
-
"Fondue - Textarea" = "Textarea",
|
|
1021
1022
|
"Fondue - Toast" = "Toast",
|
|
1022
1023
|
"Fondue - types" = "types",
|
|
1023
1024
|
"Fondue - Tooltip" = "Tooltip",
|
|
@@ -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;
|
|
@@ -11844,6 +11848,11 @@ export declare type LegacyStackProps = {
|
|
|
11844
11848
|
|
|
11845
11849
|
export declare type LegacyStackSpacing = 'none' | 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl';
|
|
11846
11850
|
|
|
11851
|
+
export declare const LegacyTextarea: {
|
|
11852
|
+
({ id: propId, value, required, decorator, placeholder, disabled, onInput, onBlur, validation, minRows, maxRows, autosize, resizeable, onFocus, selectable, focusOnMount, onEnterPressed, ...props }: TextareaProps): ReactElement;
|
|
11853
|
+
displayName: string;
|
|
11854
|
+
};
|
|
11855
|
+
|
|
11847
11856
|
export declare const LegacyTooltip: {
|
|
11848
11857
|
({ content, tooltipIcon, heading, headingIcon, linkUrl, linkLabel, brightHeader, buttons, children, position, alignment, withStrongBorder, withArrow, flip, triggerElement, hoverDelay, enterDelay, open, disabled, enablePortal, hidden, "data-test-id": dataTestId, }: LegacyTooltipProps): JSX_2.Element;
|
|
11849
11858
|
displayName: string;
|
|
@@ -13430,11 +13439,6 @@ declare const Text_2: {
|
|
|
13430
13439
|
};
|
|
13431
13440
|
export { Text_2 as Text }
|
|
13432
13441
|
|
|
13433
|
-
export declare const Textarea: {
|
|
13434
|
-
({ id: propId, value, required, decorator, placeholder, disabled, onInput, onBlur, validation, minRows, maxRows, autosize, resizeable, onFocus, selectable, focusOnMount, onEnterPressed, ...props }: TextareaProps): ReactElement;
|
|
13435
|
-
displayName: string;
|
|
13436
|
-
};
|
|
13437
|
-
|
|
13438
13442
|
export declare type TextareaProps = {
|
|
13439
13443
|
id?: string;
|
|
13440
13444
|
value?: string;
|
package/dist/index.es.js
CHANGED
|
@@ -179,7 +179,7 @@ import { TabItem as Ad } from "./components/Tabs/TabItem.es.js";
|
|
|
179
179
|
import { TabSize as kd, Tabs as hd, TabsPaddingX as Ld } from "./components/Tabs/Tabs.es.js";
|
|
180
180
|
import { Tag as Bd, TagSize as Md, TagType as bd, tagStyles as Fd } from "./components/Tag/Tag.es.js";
|
|
181
181
|
import { TextInput as Dd, TextInputType as Ed } from "./components/TextInput/TextInput.es.js";
|
|
182
|
-
import {
|
|
182
|
+
import { LegacyTextarea as yd } from "./components/LegacyTextarea/LegacyTextarea.es.js";
|
|
183
183
|
import { Toast as Hd } from "./components/Toast/Toast.es.js";
|
|
184
184
|
import { ToastAnimationDirection as Nd, ToastStyle as vd, toastStylesBackgroundColorsMap as Ud } from "./components/Toast/types.es.js";
|
|
185
185
|
import { BrightHeader as jd, BrightHeaderStyle as Gd, brightHeaderArrowBackgroundColors as Vd, brightHeaderBackgroundColors as Wd } from "./components/LegacyTooltip/BrightHeader.es.js";
|
|
@@ -4156,6 +4156,7 @@ export {
|
|
|
4156
4156
|
dr as LegacyItemDragState,
|
|
4157
4157
|
lr as LegacyOrderableList,
|
|
4158
4158
|
GIo as LegacyStack,
|
|
4159
|
+
yd as LegacyTextarea,
|
|
4159
4160
|
Yd as LegacyTooltip,
|
|
4160
4161
|
ur as LinkChooser,
|
|
4161
4162
|
uf as LinkPlugin,
|
|
@@ -4289,7 +4290,6 @@ export {
|
|
|
4289
4290
|
Ed as TextInputType,
|
|
4290
4291
|
$l as TextStylePlugin,
|
|
4291
4292
|
hl as TextStyles,
|
|
4292
|
-
yd as Textarea,
|
|
4293
4293
|
Hd as Toast,
|
|
4294
4294
|
Nd as ToastAnimationDirection,
|
|
4295
4295
|
vd as ToastStyle,
|