playbook_ui_docs 14.22.0.pre.alpha.PLAY22958843 → 14.22.0.pre.alpha.PLAY23038941

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6cc312c7813b3f157e0f2fa5e9c47ffd61d44328af494855e5d4427904b02a1f
4
- data.tar.gz: c632445302b5015e28fc8cc11810c9aeba63961aedeec920cc732af92bd5cfca
3
+ metadata.gz: d48dffaaf2a5f3ef24d0c3b1bfcb813d05f40b4abc66c087184920b00989fa0b
4
+ data.tar.gz: c8631758f71e59e532a0011c0efaf1f4582cdcaa6077c90f39c6a63fff8e1d04
5
5
  SHA512:
6
- metadata.gz: 7b51557812419227df16047a7dea76f2734edbad1377c9c3b034f3b050bf378e59fa3ca0d444add46cc65de54f5d4ecdb0aa2b89721c8849f956d17df44e2b09
7
- data.tar.gz: 57f57706167b156225d5d80f8c708c6925443ef5ff2b8c4f912dd474910090bb7c03fc2201a95372dca104848d32239e61c301ffedf4500ff820f8be693c6de5
6
+ metadata.gz: d44283b8b62866ef3a17c9469ccd7cad864e2bbb7fd1d8ce9c2755fd3323b2f5a471699e1413e0f9d12f0c3d3e28a68b000f4787ff5a7e478c48789a6c4a035a
7
+ data.tar.gz: bd7e0968c8f87404c75cf2c65d31bbca0d0f342ecff88e85b1956da312e80010c98a12e08ec641f5bde928baf5de58118755ed045881c96cb9b92d494ee2ff39
@@ -19,7 +19,7 @@ const BodyTruncate = (props) => {
19
19
  <Body
20
20
  marginBottom="md"
21
21
  text={lorem}
22
- truncate="1"
22
+ truncate={1}
23
23
  {...props}
24
24
  />
25
25
 
@@ -30,7 +30,7 @@ const BodyTruncate = (props) => {
30
30
  <Body
31
31
  marginBottom="md"
32
32
  text={lorem}
33
- truncate="2"
33
+ truncate={2}
34
34
  {...props}
35
35
  />
36
36
 
@@ -40,7 +40,7 @@ const BodyTruncate = (props) => {
40
40
  />
41
41
  <Body
42
42
  text={lorem}
43
- truncate="3"
43
+ truncate={3}
44
44
  {...props}
45
45
  />
46
46
  </Flex>
@@ -0,0 +1,4 @@
1
+ ##### Prop
2
+ `truncate` | **Type**: Enum | **Values**: 1 | 2 | 3 | 4 | 5
3
+
4
+ The `truncate` prop truncates overflowing text up to a maximum of five rows and adds an ellipsis at the end.
@@ -20,7 +20,7 @@ const TitleTruncate = (props) => {
20
20
  marginBottom="md"
21
21
  size={4}
22
22
  text={lorem}
23
- truncate="1"
23
+ truncate={1}
24
24
  {...props}
25
25
  />
26
26
 
@@ -32,7 +32,7 @@ const TitleTruncate = (props) => {
32
32
  marginBottom="md"
33
33
  size={4}
34
34
  text={lorem}
35
- truncate="2"
35
+ truncate={2}
36
36
  {...props}
37
37
  />
38
38
 
@@ -43,7 +43,7 @@ const TitleTruncate = (props) => {
43
43
  <Title
44
44
  size={4}
45
45
  text={lorem}
46
- truncate="3"
46
+ truncate={3}
47
47
  {...props}
48
48
  />
49
49
  </Flex>
@@ -0,0 +1,4 @@
1
+ ##### Prop
2
+ `truncate` | **Type**: Enum | **Values**: 1 | 2 | 3 | 4 | 5
3
+
4
+ The `truncate` prop truncates overflowing text up to a maximum of five rows and adds an ellipsis at the end.