@commercelayer/app-elements 2.3.2 → 2.3.3

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,67 +0,0 @@
1
- import { InputWrapperBaseProps } from '../internals/InputWrapper';
2
-
3
- export type InputReadonlyProps = InputWrapperBaseProps & {
4
- /**
5
- * Optional CSS class names used for the outer wrapper/container element
6
- */
7
- wrapperClassName?: string;
8
- /**
9
- * Optional CSS class names used for the input element
10
- */
11
- inputClassName?: string;
12
- /**
13
- * Optional prop to define whether to show or not the Copy to clipboard button
14
- */
15
- showCopyAction?: boolean;
16
- /**
17
- * Value to be rendered as simple input text
18
- */
19
- value?: string;
20
- /**
21
- * Multi-line content to be rendered as textarea like.
22
- * It only accepts a string and will respect new lines when passing a template literal (backticks).
23
- */
24
- children?: string;
25
- /**
26
- * Show an icon to hide/show content. Content starts hidden if `secret` is true.
27
- */
28
- secret?: boolean;
29
- };
30
- export declare const InputReadonly: import('../atoms/SkeletonTemplate').SkeletonTemplateComponent<{
31
- label?: string | undefined;
32
- hint?: {
33
- icon?: import('../atoms/Hint').HintProps["icon"];
34
- text: import('../atoms/Hint').HintProps["children"];
35
- } | undefined;
36
- feedback?: Omit<import('./InputFeedback').InputFeedbackProps, "className"> | undefined;
37
- inline?: boolean | undefined;
38
- wrapperClassName?: string
39
- /**
40
- * Optional CSS class names used for the input element
41
- */
42
- | undefined;
43
- inputClassName?: string
44
- /**
45
- * Optional prop to define whether to show or not the Copy to clipboard button
46
- */
47
- | undefined;
48
- showCopyAction?: boolean
49
- /**
50
- * Value to be rendered as simple input text
51
- */
52
- | undefined;
53
- value?: string
54
- /**
55
- * Multi-line content to be rendered as textarea like.
56
- * It only accepts a string and will respect new lines when passing a template literal (backticks).
57
- */
58
- | undefined;
59
- children?: string
60
- /**
61
- * Show an icon to hide/show content. Content starts hidden if `secret` is true.
62
- */
63
- | undefined;
64
- secret?: boolean | undefined;
65
- delayMs?: number | undefined;
66
- isLoading?: boolean | undefined;
67
- }>;