@galaxy-ds/core 2.1.8 → 2.1.10
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/AccordionPanel/AccordionPanel.stories.d.ts +296 -0
- package/dist/AccordionSummary/AccordionSummary.stories.d.ts +602 -14
- package/dist/AccordionSummary/AccordionSummary.types.d.ts +1 -0
- package/dist/Alert/Alert.d.ts +3 -0
- package/dist/Alert/Alert.stories.d.ts +1523 -0
- package/dist/Alert/Alert.styled.d.ts +7 -0
- package/dist/Alert/Alert.types.d.ts +12 -0
- package/dist/Autocomplete/Autocomplete.stories.d.ts +359 -0
- package/dist/FormBody/FormBody.stories.d.ts +11 -0
- package/dist/FormGroup/FormGroup.stories.d.ts +6 -0
- package/dist/Icons/gui/icons.d.ts +102 -0
- package/dist/Icons/gui-icons.stories.d.ts +1020 -0
- package/dist/Icons/leap/ChevronCircleRight16.d.ts +2 -0
- package/dist/Icons/leap/ChevronCircleRight20.d.ts +2 -0
- package/dist/Icons/leap/ChevronCircleRight24.d.ts +2 -0
- package/dist/Icons/leap/Info11.d.ts +2 -0
- package/dist/Icons/leap/Info13.d.ts +2 -0
- package/dist/Icons/leap/Info15.d.ts +2 -0
- package/dist/Icons/leap/Info20.d.ts +2 -0
- package/dist/Icons/leap/WindowsSettings16.d.ts +2 -0
- package/dist/Icons/leap/icons.d.ts +9 -1
- package/dist/Icons/leap/index.d.ts +8 -0
- package/dist/Input/Input.stories.d.ts +192 -55
- package/dist/Input/support/InlineUtilityExamples.d.ts +1 -0
- package/dist/Input/support/InlineUtilityWebExamples.d.ts +1 -0
- package/dist/Input/support/InputUtilityChildrenExamples.d.ts +3 -0
- package/dist/Input/support/InputUtilityChildrenWebExamples.d.ts +3 -0
- package/dist/Input/support/InputUtilityExample.d.ts +11 -0
- package/dist/Input/support/InputUtilityWebExample.d.ts +11 -0
- package/dist/InputLabel/InputLabel.stories.d.ts +11 -0
- package/dist/StickyLayout/StickyLayout.stories.d.ts +6 -0
- package/dist/Switch/Switch.stories.d.ts +1 -0
- package/dist/TextEditor/TextEditor.types.d.ts +1 -0
- package/dist/TextEditor/extensions/TabIndent/TabIndent.d.ts +3 -0
- package/dist/TextEditor/extensions/TabIndent/index.d.ts +1 -0
- package/dist/TextEditor/extensions/index.d.ts +1 -0
- package/dist/index.esm.js +105 -12
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +112 -11
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -319,12 +319,18 @@ export declare const Default: {
|
|
|
319
319
|
background?: "dark" | "light" | "default" | undefined;
|
|
320
320
|
slots?: {
|
|
321
321
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
322
|
+
/**
|
|
323
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
324
|
+
*/
|
|
322
325
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
323
326
|
} | undefined;
|
|
324
327
|
slotProps?: {
|
|
325
328
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
326
329
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
327
330
|
}) | undefined;
|
|
331
|
+
/**
|
|
332
|
+
* If `disabled` is `true`, the input is disabled.
|
|
333
|
+
*/
|
|
328
334
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
329
335
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
330
336
|
}) | undefined;
|
|
@@ -393,9 +399,7 @@ export declare const Default: {
|
|
|
393
399
|
error?: boolean | undefined;
|
|
394
400
|
filled?: boolean | undefined;
|
|
395
401
|
focused?: boolean | undefined;
|
|
396
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
397
|
-
* If `disabled` is `true`, the input is disabled.
|
|
398
|
-
*/
|
|
402
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
399
403
|
required?: boolean | undefined;
|
|
400
404
|
startAdornment?: import("react").ReactNode;
|
|
401
405
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -644,12 +648,18 @@ export declare const Default: {
|
|
|
644
648
|
background?: "dark" | "light" | "default" | undefined;
|
|
645
649
|
slots?: {
|
|
646
650
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
651
|
+
/**
|
|
652
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
653
|
+
*/
|
|
647
654
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
648
655
|
} | undefined;
|
|
649
656
|
slotProps?: {
|
|
650
657
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
651
658
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
652
659
|
}) | undefined;
|
|
660
|
+
/**
|
|
661
|
+
* If `disabled` is `true`, the input is disabled.
|
|
662
|
+
*/
|
|
653
663
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
654
664
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
655
665
|
}) | undefined;
|
|
@@ -718,9 +728,7 @@ export declare const Default: {
|
|
|
718
728
|
error?: boolean | undefined;
|
|
719
729
|
filled?: boolean | undefined;
|
|
720
730
|
focused?: boolean | undefined;
|
|
721
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
722
|
-
* If `disabled` is `true`, the input is disabled.
|
|
723
|
-
*/
|
|
731
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
724
732
|
required?: boolean | undefined;
|
|
725
733
|
startAdornment?: import("react").ReactNode;
|
|
726
734
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -990,12 +998,18 @@ export declare const EndAdornment: {
|
|
|
990
998
|
background?: "dark" | "light" | "default" | undefined;
|
|
991
999
|
slots?: {
|
|
992
1000
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
1001
|
+
/**
|
|
1002
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
1003
|
+
*/
|
|
993
1004
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
994
1005
|
} | undefined;
|
|
995
1006
|
slotProps?: {
|
|
996
1007
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
997
1008
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
998
1009
|
}) | undefined;
|
|
1010
|
+
/**
|
|
1011
|
+
* If `disabled` is `true`, the input is disabled.
|
|
1012
|
+
*/
|
|
999
1013
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
1000
1014
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
1001
1015
|
}) | undefined;
|
|
@@ -1064,9 +1078,7 @@ export declare const EndAdornment: {
|
|
|
1064
1078
|
error?: boolean | undefined;
|
|
1065
1079
|
filled?: boolean | undefined;
|
|
1066
1080
|
focused?: boolean | undefined;
|
|
1067
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
1068
|
-
* If `disabled` is `true`, the input is disabled.
|
|
1069
|
-
*/
|
|
1081
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
1070
1082
|
required?: boolean | undefined;
|
|
1071
1083
|
startAdornment?: import("react").ReactNode;
|
|
1072
1084
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -1336,12 +1348,18 @@ export declare const StartAdornment: {
|
|
|
1336
1348
|
background?: "dark" | "light" | "default" | undefined;
|
|
1337
1349
|
slots?: {
|
|
1338
1350
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
1351
|
+
/**
|
|
1352
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
1353
|
+
*/
|
|
1339
1354
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
1340
1355
|
} | undefined;
|
|
1341
1356
|
slotProps?: {
|
|
1342
1357
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
1343
1358
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
1344
1359
|
}) | undefined;
|
|
1360
|
+
/**
|
|
1361
|
+
* If `disabled` is `true`, the input is disabled.
|
|
1362
|
+
*/
|
|
1345
1363
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
1346
1364
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
1347
1365
|
}) | undefined;
|
|
@@ -1410,9 +1428,7 @@ export declare const StartAdornment: {
|
|
|
1410
1428
|
error?: boolean | undefined;
|
|
1411
1429
|
filled?: boolean | undefined;
|
|
1412
1430
|
focused?: boolean | undefined;
|
|
1413
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
1414
|
-
* If `disabled` is `true`, the input is disabled.
|
|
1415
|
-
*/
|
|
1431
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
1416
1432
|
required?: boolean | undefined;
|
|
1417
1433
|
startAdornment?: import("react").ReactNode;
|
|
1418
1434
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -1429,6 +1445,10 @@ export declare const StartAdornment: {
|
|
|
1429
1445
|
/**
|
|
1430
1446
|
*
|
|
1431
1447
|
* Use `<FormGroup row>` to group Input and IconButtons, Buttons side by side.
|
|
1448
|
+
*
|
|
1449
|
+
* Note: Multiline inputs that contain `rows`, `minRows` or `maxRows` will need a container targeting the input width.
|
|
1450
|
+
*
|
|
1451
|
+
* Alternatively there is an `inputPropStyles` to override styles.
|
|
1432
1452
|
*/
|
|
1433
1453
|
export declare const FormGroup: {
|
|
1434
1454
|
args: {};
|
|
@@ -1675,12 +1695,18 @@ export declare const FormGroup: {
|
|
|
1675
1695
|
background?: "dark" | "light" | "default" | undefined;
|
|
1676
1696
|
slots?: {
|
|
1677
1697
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
1698
|
+
/**
|
|
1699
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
1700
|
+
*/
|
|
1678
1701
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
1679
1702
|
} | undefined;
|
|
1680
1703
|
slotProps?: {
|
|
1681
1704
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
1682
1705
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
1683
1706
|
}) | undefined;
|
|
1707
|
+
/**
|
|
1708
|
+
* If `disabled` is `true`, the input is disabled.
|
|
1709
|
+
*/
|
|
1684
1710
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
1685
1711
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
1686
1712
|
}) | undefined;
|
|
@@ -1749,9 +1775,7 @@ export declare const FormGroup: {
|
|
|
1749
1775
|
error?: boolean | undefined;
|
|
1750
1776
|
filled?: boolean | undefined;
|
|
1751
1777
|
focused?: boolean | undefined;
|
|
1752
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
1753
|
-
* If `disabled` is `true`, the input is disabled.
|
|
1754
|
-
*/
|
|
1778
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
1755
1779
|
required?: boolean | undefined;
|
|
1756
1780
|
startAdornment?: import("react").ReactNode;
|
|
1757
1781
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -2015,12 +2039,18 @@ export declare const Label: {
|
|
|
2015
2039
|
background?: "dark" | "light" | "default" | undefined;
|
|
2016
2040
|
slots?: {
|
|
2017
2041
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
2042
|
+
/**
|
|
2043
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
2044
|
+
*/
|
|
2018
2045
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
2019
2046
|
} | undefined;
|
|
2020
2047
|
slotProps?: {
|
|
2021
2048
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
2022
2049
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
2023
2050
|
}) | undefined;
|
|
2051
|
+
/**
|
|
2052
|
+
* If `disabled` is `true`, the input is disabled.
|
|
2053
|
+
*/
|
|
2024
2054
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
2025
2055
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
2026
2056
|
}) | undefined;
|
|
@@ -2089,9 +2119,7 @@ export declare const Label: {
|
|
|
2089
2119
|
error?: boolean | undefined;
|
|
2090
2120
|
filled?: boolean | undefined;
|
|
2091
2121
|
focused?: boolean | undefined;
|
|
2092
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
2093
|
-
* If `disabled` is `true`, the input is disabled.
|
|
2094
|
-
*/
|
|
2122
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
2095
2123
|
required?: boolean | undefined;
|
|
2096
2124
|
startAdornment?: import("react").ReactNode;
|
|
2097
2125
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -2353,12 +2381,18 @@ export declare const Types: {
|
|
|
2353
2381
|
background?: "dark" | "light" | "default" | undefined;
|
|
2354
2382
|
slots?: {
|
|
2355
2383
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
2384
|
+
/**
|
|
2385
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
2386
|
+
*/
|
|
2356
2387
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
2357
2388
|
} | undefined;
|
|
2358
2389
|
slotProps?: {
|
|
2359
2390
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
2360
2391
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
2361
2392
|
}) | undefined;
|
|
2393
|
+
/**
|
|
2394
|
+
* If `disabled` is `true`, the input is disabled.
|
|
2395
|
+
*/
|
|
2362
2396
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
2363
2397
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
2364
2398
|
}) | undefined;
|
|
@@ -2427,9 +2461,7 @@ export declare const Types: {
|
|
|
2427
2461
|
error?: boolean | undefined;
|
|
2428
2462
|
filled?: boolean | undefined;
|
|
2429
2463
|
focused?: boolean | undefined;
|
|
2430
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
2431
|
-
* If `disabled` is `true`, the input is disabled.
|
|
2432
|
-
*/
|
|
2464
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
2433
2465
|
required?: boolean | undefined;
|
|
2434
2466
|
startAdornment?: import("react").ReactNode;
|
|
2435
2467
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -2694,12 +2726,18 @@ export declare const HelperText: {
|
|
|
2694
2726
|
background?: "dark" | "light" | "default" | undefined;
|
|
2695
2727
|
slots?: {
|
|
2696
2728
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
2729
|
+
/**
|
|
2730
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
2731
|
+
*/
|
|
2697
2732
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
2698
2733
|
} | undefined;
|
|
2699
2734
|
slotProps?: {
|
|
2700
2735
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
2701
2736
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
2702
2737
|
}) | undefined;
|
|
2738
|
+
/**
|
|
2739
|
+
* If `disabled` is `true`, the input is disabled.
|
|
2740
|
+
*/
|
|
2703
2741
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
2704
2742
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
2705
2743
|
}) | undefined;
|
|
@@ -2768,9 +2806,7 @@ export declare const HelperText: {
|
|
|
2768
2806
|
error?: boolean | undefined;
|
|
2769
2807
|
filled?: boolean | undefined;
|
|
2770
2808
|
focused?: boolean | undefined;
|
|
2771
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
2772
|
-
* If `disabled` is `true`, the input is disabled.
|
|
2773
|
-
*/
|
|
2809
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
2774
2810
|
required?: boolean | undefined;
|
|
2775
2811
|
startAdornment?: import("react").ReactNode;
|
|
2776
2812
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -3036,12 +3072,18 @@ export declare const Error: {
|
|
|
3036
3072
|
background?: "dark" | "light" | "default" | undefined;
|
|
3037
3073
|
slots?: {
|
|
3038
3074
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
3075
|
+
/**
|
|
3076
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
3077
|
+
*/
|
|
3039
3078
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
3040
3079
|
} | undefined;
|
|
3041
3080
|
slotProps?: {
|
|
3042
3081
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
3043
3082
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
3044
3083
|
}) | undefined;
|
|
3084
|
+
/**
|
|
3085
|
+
* If `disabled` is `true`, the input is disabled.
|
|
3086
|
+
*/
|
|
3045
3087
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
3046
3088
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
3047
3089
|
}) | undefined;
|
|
@@ -3110,9 +3152,7 @@ export declare const Error: {
|
|
|
3110
3152
|
error?: boolean | undefined;
|
|
3111
3153
|
filled?: boolean | undefined;
|
|
3112
3154
|
focused?: boolean | undefined;
|
|
3113
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
3114
|
-
* If `disabled` is `true`, the input is disabled.
|
|
3115
|
-
*/
|
|
3155
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
3116
3156
|
required?: boolean | undefined;
|
|
3117
3157
|
startAdornment?: import("react").ReactNode;
|
|
3118
3158
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -3377,12 +3417,18 @@ export declare const Disabled: {
|
|
|
3377
3417
|
background?: "dark" | "light" | "default" | undefined;
|
|
3378
3418
|
slots?: {
|
|
3379
3419
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
3420
|
+
/**
|
|
3421
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
3422
|
+
*/
|
|
3380
3423
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
3381
3424
|
} | undefined;
|
|
3382
3425
|
slotProps?: {
|
|
3383
3426
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
3384
3427
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
3385
3428
|
}) | undefined;
|
|
3429
|
+
/**
|
|
3430
|
+
* If `disabled` is `true`, the input is disabled.
|
|
3431
|
+
*/
|
|
3386
3432
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
3387
3433
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
3388
3434
|
}) | undefined;
|
|
@@ -3451,9 +3497,7 @@ export declare const Disabled: {
|
|
|
3451
3497
|
error?: boolean | undefined;
|
|
3452
3498
|
filled?: boolean | undefined;
|
|
3453
3499
|
focused?: boolean | undefined;
|
|
3454
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
3455
|
-
* If `disabled` is `true`, the input is disabled.
|
|
3456
|
-
*/
|
|
3500
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
3457
3501
|
required?: boolean | undefined;
|
|
3458
3502
|
startAdornment?: import("react").ReactNode;
|
|
3459
3503
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -3718,12 +3762,18 @@ export declare const ReadOnly: {
|
|
|
3718
3762
|
background?: "dark" | "light" | "default" | undefined;
|
|
3719
3763
|
slots?: {
|
|
3720
3764
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
3765
|
+
/**
|
|
3766
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
3767
|
+
*/
|
|
3721
3768
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
3722
3769
|
} | undefined;
|
|
3723
3770
|
slotProps?: {
|
|
3724
3771
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
3725
3772
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
3726
3773
|
}) | undefined;
|
|
3774
|
+
/**
|
|
3775
|
+
* If `disabled` is `true`, the input is disabled.
|
|
3776
|
+
*/
|
|
3727
3777
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
3728
3778
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
3729
3779
|
}) | undefined;
|
|
@@ -3792,9 +3842,7 @@ export declare const ReadOnly: {
|
|
|
3792
3842
|
error?: boolean | undefined;
|
|
3793
3843
|
filled?: boolean | undefined;
|
|
3794
3844
|
focused?: boolean | undefined;
|
|
3795
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
3796
|
-
* If `disabled` is `true`, the input is disabled.
|
|
3797
|
-
*/
|
|
3845
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
3798
3846
|
required?: boolean | undefined;
|
|
3799
3847
|
startAdornment?: import("react").ReactNode;
|
|
3800
3848
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -4059,12 +4107,18 @@ export declare const TextAlignment: {
|
|
|
4059
4107
|
background?: "dark" | "light" | "default" | undefined;
|
|
4060
4108
|
slots?: {
|
|
4061
4109
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
4110
|
+
/**
|
|
4111
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
4112
|
+
*/
|
|
4062
4113
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
4063
4114
|
} | undefined;
|
|
4064
4115
|
slotProps?: {
|
|
4065
4116
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
4066
4117
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
4067
4118
|
}) | undefined;
|
|
4119
|
+
/**
|
|
4120
|
+
* If `disabled` is `true`, the input is disabled.
|
|
4121
|
+
*/
|
|
4068
4122
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
4069
4123
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
4070
4124
|
}) | undefined;
|
|
@@ -4133,9 +4187,7 @@ export declare const TextAlignment: {
|
|
|
4133
4187
|
error?: boolean | undefined;
|
|
4134
4188
|
filled?: boolean | undefined;
|
|
4135
4189
|
focused?: boolean | undefined;
|
|
4136
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
4137
|
-
* If `disabled` is `true`, the input is disabled.
|
|
4138
|
-
*/
|
|
4190
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
4139
4191
|
required?: boolean | undefined;
|
|
4140
4192
|
startAdornment?: import("react").ReactNode;
|
|
4141
4193
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -4400,12 +4452,18 @@ export declare const FullWidth: {
|
|
|
4400
4452
|
background?: "dark" | "light" | "default" | undefined;
|
|
4401
4453
|
slots?: {
|
|
4402
4454
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
4455
|
+
/**
|
|
4456
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
4457
|
+
*/
|
|
4403
4458
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
4404
4459
|
} | undefined;
|
|
4405
4460
|
slotProps?: {
|
|
4406
4461
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
4407
4462
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
4408
4463
|
}) | undefined;
|
|
4464
|
+
/**
|
|
4465
|
+
* If `disabled` is `true`, the input is disabled.
|
|
4466
|
+
*/
|
|
4409
4467
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
4410
4468
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
4411
4469
|
}) | undefined;
|
|
@@ -4474,9 +4532,7 @@ export declare const FullWidth: {
|
|
|
4474
4532
|
error?: boolean | undefined;
|
|
4475
4533
|
filled?: boolean | undefined;
|
|
4476
4534
|
focused?: boolean | undefined;
|
|
4477
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
4478
|
-
* If `disabled` is `true`, the input is disabled.
|
|
4479
|
-
*/
|
|
4535
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
4480
4536
|
required?: boolean | undefined;
|
|
4481
4537
|
startAdornment?: import("react").ReactNode;
|
|
4482
4538
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -4743,12 +4799,18 @@ export declare const LargeSizeToolbarSize: {
|
|
|
4743
4799
|
background?: "dark" | "light" | "default" | undefined;
|
|
4744
4800
|
slots?: {
|
|
4745
4801
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
4802
|
+
/**
|
|
4803
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
4804
|
+
*/
|
|
4746
4805
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
4747
4806
|
} | undefined;
|
|
4748
4807
|
slotProps?: {
|
|
4749
4808
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
4750
4809
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
4751
4810
|
}) | undefined;
|
|
4811
|
+
/**
|
|
4812
|
+
* If `disabled` is `true`, the input is disabled.
|
|
4813
|
+
*/
|
|
4752
4814
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
4753
4815
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
4754
4816
|
}) | undefined;
|
|
@@ -4817,9 +4879,7 @@ export declare const LargeSizeToolbarSize: {
|
|
|
4817
4879
|
error?: boolean | undefined;
|
|
4818
4880
|
filled?: boolean | undefined;
|
|
4819
4881
|
focused?: boolean | undefined;
|
|
4820
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
4821
|
-
* If `disabled` is `true`, the input is disabled.
|
|
4822
|
-
*/
|
|
4882
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
4823
4883
|
required?: boolean | undefined;
|
|
4824
4884
|
startAdornment?: import("react").ReactNode;
|
|
4825
4885
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -4838,7 +4898,6 @@ export declare const LargeSizeToolbarSize: {
|
|
|
4838
4898
|
* It grows automatically to fit the contents.
|
|
4839
4899
|
* Specify `rows` to set its height, the height is fixed in this case.
|
|
4840
4900
|
*
|
|
4841
|
-
* Use `inputPropStyles` to override default inputProps width of `162px`
|
|
4842
4901
|
*/
|
|
4843
4902
|
export declare const TextArea: {
|
|
4844
4903
|
args: {
|
|
@@ -5087,12 +5146,18 @@ export declare const TextArea: {
|
|
|
5087
5146
|
background?: "dark" | "light" | "default" | undefined;
|
|
5088
5147
|
slots?: {
|
|
5089
5148
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
5149
|
+
/**
|
|
5150
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
5151
|
+
*/
|
|
5090
5152
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
5091
5153
|
} | undefined;
|
|
5092
5154
|
slotProps?: {
|
|
5093
5155
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
5094
5156
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
5095
5157
|
}) | undefined;
|
|
5158
|
+
/**
|
|
5159
|
+
* If `disabled` is `true`, the input is disabled.
|
|
5160
|
+
*/
|
|
5096
5161
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
5097
5162
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
5098
5163
|
}) | undefined;
|
|
@@ -5161,9 +5226,7 @@ export declare const TextArea: {
|
|
|
5161
5226
|
error?: boolean | undefined;
|
|
5162
5227
|
filled?: boolean | undefined;
|
|
5163
5228
|
focused?: boolean | undefined;
|
|
5164
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
5165
|
-
* If `disabled` is `true`, the input is disabled.
|
|
5166
|
-
*/
|
|
5229
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
5167
5230
|
required?: boolean | undefined;
|
|
5168
5231
|
startAdornment?: import("react").ReactNode;
|
|
5169
5232
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -5177,6 +5240,12 @@ export declare const TextArea: {
|
|
|
5177
5240
|
key?: import("react").Key | null | undefined;
|
|
5178
5241
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
5179
5242
|
};
|
|
5243
|
+
/**
|
|
5244
|
+
*
|
|
5245
|
+
* Note: Multiline inputs that contain `rows`, `minRows` or `maxRows` will need a container targeting the input width.
|
|
5246
|
+
*
|
|
5247
|
+
* Alternatively use `inputPropStyles` to override styles.
|
|
5248
|
+
*/
|
|
5180
5249
|
export declare const TextAreaMinRows: {
|
|
5181
5250
|
args: {
|
|
5182
5251
|
multiline: true;
|
|
@@ -5425,12 +5494,18 @@ export declare const TextAreaMinRows: {
|
|
|
5425
5494
|
background?: "dark" | "light" | "default" | undefined;
|
|
5426
5495
|
slots?: {
|
|
5427
5496
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
5497
|
+
/**
|
|
5498
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
5499
|
+
*/
|
|
5428
5500
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
5429
5501
|
} | undefined;
|
|
5430
5502
|
slotProps?: {
|
|
5431
5503
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
5432
5504
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
5433
5505
|
}) | undefined;
|
|
5506
|
+
/**
|
|
5507
|
+
* If `disabled` is `true`, the input is disabled.
|
|
5508
|
+
*/
|
|
5434
5509
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
5435
5510
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
5436
5511
|
}) | undefined;
|
|
@@ -5499,9 +5574,7 @@ export declare const TextAreaMinRows: {
|
|
|
5499
5574
|
error?: boolean | undefined;
|
|
5500
5575
|
filled?: boolean | undefined;
|
|
5501
5576
|
focused?: boolean | undefined;
|
|
5502
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
5503
|
-
* If `disabled` is `true`, the input is disabled.
|
|
5504
|
-
*/
|
|
5577
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
5505
5578
|
required?: boolean | undefined;
|
|
5506
5579
|
startAdornment?: import("react").ReactNode;
|
|
5507
5580
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -5764,12 +5837,18 @@ export declare const TextAreaWithEndAdornment: {
|
|
|
5764
5837
|
background?: "dark" | "light" | "default" | undefined;
|
|
5765
5838
|
slots?: {
|
|
5766
5839
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
5840
|
+
/**
|
|
5841
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
5842
|
+
*/
|
|
5767
5843
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
5768
5844
|
} | undefined;
|
|
5769
5845
|
slotProps?: {
|
|
5770
5846
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
5771
5847
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
5772
5848
|
}) | undefined;
|
|
5849
|
+
/**
|
|
5850
|
+
* If `disabled` is `true`, the input is disabled.
|
|
5851
|
+
*/
|
|
5773
5852
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
5774
5853
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
5775
5854
|
}) | undefined;
|
|
@@ -5838,9 +5917,7 @@ export declare const TextAreaWithEndAdornment: {
|
|
|
5838
5917
|
error?: boolean | undefined;
|
|
5839
5918
|
filled?: boolean | undefined;
|
|
5840
5919
|
focused?: boolean | undefined;
|
|
5841
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
5842
|
-
* If `disabled` is `true`, the input is disabled.
|
|
5843
|
-
*/
|
|
5920
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
5844
5921
|
required?: boolean | undefined;
|
|
5845
5922
|
startAdornment?: import("react").ReactNode;
|
|
5846
5923
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -6103,12 +6180,18 @@ export declare const EventCallbacks: {
|
|
|
6103
6180
|
background?: "dark" | "light" | "default" | undefined;
|
|
6104
6181
|
slots?: {
|
|
6105
6182
|
root?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
6183
|
+
/**
|
|
6184
|
+
* If `readOnly` is `true`, the input is disabled.
|
|
6185
|
+
*/
|
|
6106
6186
|
input?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
|
|
6107
6187
|
} | undefined;
|
|
6108
6188
|
slotProps?: {
|
|
6109
6189
|
root?: (import("react").HTMLAttributes<HTMLDivElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
6110
6190
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
6111
6191
|
}) | undefined;
|
|
6192
|
+
/**
|
|
6193
|
+
* If `disabled` is `true`, the input is disabled.
|
|
6194
|
+
*/
|
|
6112
6195
|
input?: (import("react").InputHTMLAttributes<HTMLInputElement> & import("@mui/material").InputBaseComponentsPropsOverrides & {
|
|
6113
6196
|
sx?: import("@mui/system").SxProps<import("@mui/material").Theme> | undefined;
|
|
6114
6197
|
}) | undefined;
|
|
@@ -6177,9 +6260,7 @@ export declare const EventCallbacks: {
|
|
|
6177
6260
|
error?: boolean | undefined;
|
|
6178
6261
|
filled?: boolean | undefined;
|
|
6179
6262
|
focused?: boolean | undefined;
|
|
6180
|
-
margin?: "none" | "normal" | "dense" | undefined;
|
|
6181
|
-
* If `disabled` is `true`, the input is disabled.
|
|
6182
|
-
*/
|
|
6263
|
+
margin?: "none" | "normal" | "dense" | undefined;
|
|
6183
6264
|
required?: boolean | undefined;
|
|
6184
6265
|
startAdornment?: import("react").ReactNode;
|
|
6185
6266
|
}) => import("react").ReactNode) | undefined;
|
|
@@ -6193,3 +6274,59 @@ export declare const EventCallbacks: {
|
|
|
6193
6274
|
key?: import("react").Key | null | undefined;
|
|
6194
6275
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
6195
6276
|
};
|
|
6277
|
+
export declare const InputUtilityButton: {
|
|
6278
|
+
args: {};
|
|
6279
|
+
parameters: {
|
|
6280
|
+
themes: {
|
|
6281
|
+
themeOverride: string;
|
|
6282
|
+
};
|
|
6283
|
+
docs: {
|
|
6284
|
+
source: {
|
|
6285
|
+
code: string;
|
|
6286
|
+
};
|
|
6287
|
+
};
|
|
6288
|
+
};
|
|
6289
|
+
render: () => import("react/jsx-runtime").JSX.Element;
|
|
6290
|
+
};
|
|
6291
|
+
export declare const InputUtilityInline: {
|
|
6292
|
+
args: {};
|
|
6293
|
+
parameters: {
|
|
6294
|
+
themes: {
|
|
6295
|
+
themeOverride: string;
|
|
6296
|
+
};
|
|
6297
|
+
docs: {
|
|
6298
|
+
source: {
|
|
6299
|
+
code: string;
|
|
6300
|
+
};
|
|
6301
|
+
};
|
|
6302
|
+
};
|
|
6303
|
+
render: () => import("react/jsx-runtime").JSX.Element;
|
|
6304
|
+
};
|
|
6305
|
+
export declare const InputUtilityButtonWeb: {
|
|
6306
|
+
args: {};
|
|
6307
|
+
parameters: {
|
|
6308
|
+
themes: {
|
|
6309
|
+
themeOverride: string;
|
|
6310
|
+
};
|
|
6311
|
+
docs: {
|
|
6312
|
+
source: {
|
|
6313
|
+
code: string;
|
|
6314
|
+
};
|
|
6315
|
+
};
|
|
6316
|
+
};
|
|
6317
|
+
render: () => import("react/jsx-runtime").JSX.Element;
|
|
6318
|
+
};
|
|
6319
|
+
export declare const InputUtilityInlineWeb: {
|
|
6320
|
+
args: {};
|
|
6321
|
+
parameters: {
|
|
6322
|
+
themes: {
|
|
6323
|
+
themeOverride: string;
|
|
6324
|
+
};
|
|
6325
|
+
docs: {
|
|
6326
|
+
source: {
|
|
6327
|
+
code: string;
|
|
6328
|
+
};
|
|
6329
|
+
};
|
|
6330
|
+
};
|
|
6331
|
+
render: () => import("react/jsx-runtime").JSX.Element;
|
|
6332
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const InputInlineExample: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const InputInlineWebExample: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
type InputUtilityButtonProps = {
|
|
3
|
+
leftChildren?: React.ReactNode;
|
|
4
|
+
rightChildren?: React.ReactNode;
|
|
5
|
+
label?: string;
|
|
6
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
|
|
7
|
+
value?: string;
|
|
8
|
+
width?: number;
|
|
9
|
+
};
|
|
10
|
+
export declare const InputUtilityExample: ({ label, onChange, value, leftChildren, rightChildren, width, }: InputUtilityButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|