@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.
- package/dist/{InputDateComponent-bcNRU_QV.js → InputDateComponent-BpksCVjY.js} +1 -1
- package/dist/{main-DN-Yoqnj.js → main-WRXNKuA0.js} +5299 -5262
- package/dist/main.d.ts +1 -1
- package/dist/main.js +48 -48
- package/dist/style.css +1 -1
- package/dist/ui/atoms/CodeBlock.d.ts +38 -0
- package/dist/ui/atoms/Icon/icons.d.ts +1 -0
- package/dist/ui/composite/ListDetailsItem.d.ts +1 -1
- package/dist/ui/resources/ResourceListItem/ResourceListItem.mocks.d.ts +16 -0
- package/dist/ui/resources/ResourceListItem/transformers/index.d.ts +1 -0
- package/dist/ui/resources/ResourceListItem/transformers/skuListItem.d.ts +4 -0
- package/dist/ui/resources/ResourceListItem/types.d.ts +5 -2
- package/package.json +1 -1
- package/dist/ui/forms/InputReadonly.d.ts +0 -67
- /package/dist/ui/{forms/InputReadonly.test.d.ts → atoms/CodeBlock.test.d.ts} +0 -0
|
@@ -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
|
-
}>;
|
|
File without changes
|