playbook_ui 13.6.0.pre.alpha.play845allkitsbytypes1219 → 13.6.0.pre.alpha.tiptapreacthookformbug1210

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Playbook
4
4
  PREVIOUS_VERSION = "13.6.0"
5
- VERSION = "13.6.0.pre.alpha.play845allkitsbytypes1219"
5
+ VERSION = "13.6.0.pre.alpha.tiptapreacthookformbug1210"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 13.6.0.pre.alpha.play845allkitsbytypes1219
4
+ version: 13.6.0.pre.alpha.tiptapreacthookformbug1210
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-09-22 00:00:00.000000000 Z
12
+ date: 2023-09-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack
@@ -398,9 +398,6 @@ files:
398
398
  - app/pb_kits/playbook/pb_body/docs/_body_styled.html.erb
399
399
  - app/pb_kits/playbook/pb_body/docs/_body_styled.jsx
400
400
  - app/pb_kits/playbook/pb_body/docs/_body_styled.md
401
- - app/pb_kits/playbook/pb_body/docs/_body_truncate.html.erb
402
- - app/pb_kits/playbook/pb_body/docs/_body_truncate.jsx
403
- - app/pb_kits/playbook/pb_body/docs/_body_truncate.md
404
401
  - app/pb_kits/playbook/pb_body/docs/_description.md
405
402
  - app/pb_kits/playbook/pb_body/docs/_footer.md
406
403
  - app/pb_kits/playbook/pb_body/docs/example.yml
@@ -2284,9 +2281,6 @@ files:
2284
2281
  - app/pb_kits/playbook/pb_title/docs/_title_responsive.html.erb
2285
2282
  - app/pb_kits/playbook/pb_title/docs/_title_responsive.jsx
2286
2283
  - app/pb_kits/playbook/pb_title/docs/_title_responsive.md
2287
- - app/pb_kits/playbook/pb_title/docs/_title_truncate.html.erb
2288
- - app/pb_kits/playbook/pb_title/docs/_title_truncate.jsx
2289
- - app/pb_kits/playbook/pb_title/docs/_title_truncate.md
2290
2284
  - app/pb_kits/playbook/pb_title/docs/example.yml
2291
2285
  - app/pb_kits/playbook/pb_title/docs/index.js
2292
2286
  - app/pb_kits/playbook/pb_title/title.html.erb
@@ -1,12 +0,0 @@
1
- <% lorem = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Veritatis, minus. Nisi beatae voluptatum labore sequi. Nemo accusantium corrupti, reiciendis magnam tenetur perferendis esse pariatur voluptas eaque hic vel rem nihil quidem dolorum ex dolor, libero ullam placeat, sapiente eos. Cumque obcaecati dignissimos molestiae, minima quibusdam sint maxime libero accusantium animi quis quia maiores enim ipsum, esse, modi laudantium illum error!" %>
2
-
3
- <%= pb_rails("flex", props: { orientation: "column", max_width: "md" }) do %>
4
- <%= pb_rails("caption", props: { text: "After first row" }) %>
5
- <%= pb_rails("body", props: { text: lorem, truncate: "1", margin_bottom: "md" }) %>
6
-
7
- <%= pb_rails("caption", props: { text: "After second row" }) %>
8
- <%= pb_rails("body", props: { text: lorem, truncate: "2", margin_bottom: "md" }) %>
9
-
10
- <%= pb_rails("caption", props: { text: "After third row" }) %>
11
- <%= pb_rails("body", props: { text: lorem, truncate: "3" }) %>
12
- <% end %>
@@ -1,50 +0,0 @@
1
- import React from 'react';
2
-
3
- import Body from '../_body';
4
- import Caption from '../../pb_caption/_caption'
5
- import Flex from '../../pb_flex/_flex'
6
-
7
- const BodyTruncate = (props) => {
8
- const lorem = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Veritatis, minus. Nisi beatae voluptatum labore sequi. Nemo accusantium corrupti, reiciendis magnam tenetur perferendis esse pariatur voluptas eaque hic vel rem nihil quidem dolorum ex dolor, libero ullam placeat, sapiente eos. Cumque obcaecati dignissimos molestiae, minima quibusdam sint maxime libero accusantium animi quis quia maiores enim ipsum, esse, modi laudantium illum error!"
9
-
10
- return (
11
- <Flex
12
- maxWidth="md"
13
- orientation="column"
14
- >
15
- <Caption
16
- text="After first row"
17
- {...props}
18
- />
19
- <Body
20
- marginBottom="md"
21
- text={lorem}
22
- truncate="1"
23
- {...props}
24
- />
25
-
26
- <Caption
27
- text="After second row"
28
- {...props}
29
- />
30
- <Body
31
- marginBottom="md"
32
- text={lorem}
33
- truncate="2"
34
- {...props}
35
- />
36
-
37
- <Caption
38
- text="After third row"
39
- {...props}
40
- />
41
- <Body
42
- text={lorem}
43
- truncate="3"
44
- {...props}
45
- />
46
- </Flex>
47
- )
48
- }
49
-
50
- export default BodyTruncate
@@ -1,4 +0,0 @@
1
- ##### Prop
2
- `truncate` | **Type**: String | **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.
@@ -1,12 +0,0 @@
1
- <% lorem = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Veritatis, minus. Nisi beatae voluptatum labore sequi. Nemo accusantium corrupti, reiciendis magnam tenetur perferendis esse pariatur voluptas eaque hic vel rem nihil quidem dolorum ex dolor, libero ullam placeat, sapiente eos. Cumque obcaecati dignissimos molestiae, minima quibusdam sint maxime libero accusantium animi quis quia maiores enim ipsum, esse, modi laudantium illum error!" %>
2
-
3
- <%= pb_rails("flex", props: { orientation: "column", max_width: "md" }) do %>
4
- <%= pb_rails("caption", props: { text: "After first row" }) %>
5
- <%= pb_rails("title", props: { text: lorem, truncate: "1", size: 4, margin_bottom: "md" }) %>
6
-
7
- <%= pb_rails("caption", props: { text: "After second row" }) %>
8
- <%= pb_rails("title", props: { text: lorem, truncate: "2", size: 4, margin_bottom: "md" }) %>
9
-
10
- <%= pb_rails("caption", props: { text: "After third row" }) %>
11
- <%= pb_rails("title", props: { text: lorem, truncate: "3", size: 4 }) %>
12
- <% end %>
@@ -1,53 +0,0 @@
1
- import React from 'react';
2
-
3
- import Title from '../_title';
4
- import Caption from '../../pb_caption/_caption'
5
- import Flex from '../../pb_flex/_flex'
6
-
7
- const TitleTruncate = (props) => {
8
- const lorem = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Veritatis, minus. Nisi beatae voluptatum labore sequi. Nemo accusantium corrupti, reiciendis magnam tenetur perferendis esse pariatur voluptas eaque hic vel rem nihil quidem dolorum ex dolor, libero ullam placeat, sapiente eos. Cumque obcaecati dignissimos molestiae, minima quibusdam sint maxime libero accusantium animi quis quia maiores enim ipsum, esse, modi laudantium illum error!"
9
-
10
- return (
11
- <Flex
12
- maxWidth="md"
13
- orientation="column"
14
- >
15
- <Caption
16
- text="After first row"
17
- {...props}
18
- />
19
- <Title
20
- marginBottom="md"
21
- size={4}
22
- text={lorem}
23
- truncate="1"
24
- {...props}
25
- />
26
-
27
- <Caption
28
- text="After second row"
29
- {...props}
30
- />
31
- <Title
32
- marginBottom="md"
33
- size={4}
34
- text={lorem}
35
- truncate="2"
36
- {...props}
37
- />
38
-
39
- <Caption
40
- text="After third row"
41
- {...props}
42
- />
43
- <Title
44
- size={4}
45
- text={lorem}
46
- truncate="3"
47
- {...props}
48
- />
49
- </Flex>
50
- )
51
- }
52
-
53
- export default TitleTruncate
@@ -1,4 +0,0 @@
1
- ##### Prop
2
- `truncate` | **Type**: String | **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.