@progress/kendo-themes-html 7.1.0 → 7.1.1-dev.0
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,101 +0,0 @@
|
|
|
1
|
-
import { TextareaNormal } from '..';
|
|
2
|
-
import { IconButton } from '../../button';
|
|
3
|
-
import { Icon } from '../../icon';
|
|
4
|
-
|
|
5
|
-
const styles = `
|
|
6
|
-
#test-area {
|
|
7
|
-
grid-template-columns: 80px repeat(2, 1fr);
|
|
8
|
-
}
|
|
9
|
-
`;
|
|
10
|
-
|
|
11
|
-
export default () =>(
|
|
12
|
-
<>
|
|
13
|
-
<style>{styles}</style>
|
|
14
|
-
<div id="test-area" className="k-d-grid">
|
|
15
|
-
|
|
16
|
-
<span></span>
|
|
17
|
-
<span>Textarea Resizable - vertical flow</span>
|
|
18
|
-
<span>Textarea Resizable - horizontal flow</span>
|
|
19
|
-
|
|
20
|
-
<span>Prefix/Suffix - horizontal orientation</span>
|
|
21
|
-
|
|
22
|
-
<div>
|
|
23
|
-
<TextareaNormal style={{ width: "max-content" }} value="Prefix & Suffix"
|
|
24
|
-
prefix={
|
|
25
|
-
<>
|
|
26
|
-
<Icon icon="envelope"/>
|
|
27
|
-
<Icon icon="envelope"/>
|
|
28
|
-
<Icon icon="envelope"/>
|
|
29
|
-
</>
|
|
30
|
-
}
|
|
31
|
-
suffix={
|
|
32
|
-
<>
|
|
33
|
-
<IconButton icon="volume-up" fillMode="clear" />
|
|
34
|
-
<IconButton icon="volume-up" fillMode="clear" />
|
|
35
|
-
<IconButton icon="volume-up" fillMode="clear" />
|
|
36
|
-
</>
|
|
37
|
-
}
|
|
38
|
-
/>
|
|
39
|
-
</div>
|
|
40
|
-
|
|
41
|
-
<div>
|
|
42
|
-
<TextareaNormal style={{ width: "max-content" }} flow="horizontal" value="Prefix & Suffix"
|
|
43
|
-
prefix={
|
|
44
|
-
<>
|
|
45
|
-
<Icon icon="envelope"/>
|
|
46
|
-
<Icon icon="envelope"/>
|
|
47
|
-
<Icon icon="envelope"/>
|
|
48
|
-
</>
|
|
49
|
-
}
|
|
50
|
-
suffix={
|
|
51
|
-
<>
|
|
52
|
-
<IconButton icon="volume-up" fillMode="clear" />
|
|
53
|
-
<IconButton icon="volume-up" fillMode="clear" />
|
|
54
|
-
<IconButton icon="volume-up" fillMode="clear" />
|
|
55
|
-
</>
|
|
56
|
-
}
|
|
57
|
-
/>
|
|
58
|
-
</div>
|
|
59
|
-
|
|
60
|
-
<span>Prefix/Suffix - vertical orientation</span>
|
|
61
|
-
|
|
62
|
-
<div>
|
|
63
|
-
<TextareaNormal style={{ width: "max-content" }} affixesOrientation="vertical" value="Prefix & Suffix"
|
|
64
|
-
prefix={
|
|
65
|
-
<>
|
|
66
|
-
<Icon icon="envelope"/>
|
|
67
|
-
<Icon icon="envelope"/>
|
|
68
|
-
<Icon icon="envelope"/>
|
|
69
|
-
</>
|
|
70
|
-
}
|
|
71
|
-
suffix={
|
|
72
|
-
<>
|
|
73
|
-
<IconButton icon="volume-up" fillMode="clear" />
|
|
74
|
-
<IconButton icon="volume-up" fillMode="clear" />
|
|
75
|
-
<IconButton icon="volume-up" fillMode="clear" />
|
|
76
|
-
</>
|
|
77
|
-
}
|
|
78
|
-
/>
|
|
79
|
-
</div>
|
|
80
|
-
|
|
81
|
-
<div>
|
|
82
|
-
<TextareaNormal style={{ width: "max-content" }} affixesOrientation="vertical" flow="horizontal" value="Prefix & Suffix"
|
|
83
|
-
prefix={
|
|
84
|
-
<>
|
|
85
|
-
<Icon icon="envelope"/>
|
|
86
|
-
<Icon icon="envelope"/>
|
|
87
|
-
<Icon icon="envelope"/>
|
|
88
|
-
</>
|
|
89
|
-
}
|
|
90
|
-
suffix={
|
|
91
|
-
<>
|
|
92
|
-
<IconButton icon="volume-up" fillMode="clear" />
|
|
93
|
-
<IconButton icon="volume-up" fillMode="clear" />
|
|
94
|
-
<IconButton icon="volume-up" fillMode="clear" />
|
|
95
|
-
</>
|
|
96
|
-
}
|
|
97
|
-
/>
|
|
98
|
-
</div>
|
|
99
|
-
</div>
|
|
100
|
-
</>
|
|
101
|
-
);
|