playbook_ui_docs 14.2.1.pre.alpha.PBNTR431fixingduplicatingtextareaclassname3689 → 14.2.1.pre.alpha.PBNTR479removeextraspacingfromradiochildren3669

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.2.1.pre.alpha.PBNTR431fixingduplicatingtextareaclassname3689
4
+ version: 14.2.1.pre.alpha.PBNTR479removeextraspacingfromradiochildren3669
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: 2024-09-06 00:00:00.000000000 Z
12
+ date: 2024-09-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -353,8 +353,6 @@ files:
353
353
  - app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_default.jsx
354
354
  - app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_link.html.erb
355
355
  - app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_link.jsx
356
- - app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_loading.html.erb
357
- - app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_loading.jsx
358
356
  - app/pb_kits/playbook/pb_circle_icon_button/docs/_description.md
359
357
  - app/pb_kits/playbook/pb_circle_icon_button/docs/_footer.md
360
358
  - app/pb_kits/playbook/pb_circle_icon_button/docs/example.yml
@@ -1875,6 +1873,8 @@ files:
1875
1873
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_error_state.md
1876
1874
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_inline.html.erb
1877
1875
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_inline.jsx
1876
+ - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_margin_bottom.html.erb
1877
+ - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_margin_bottom.jsx
1878
1878
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_multi_kit.html.erb
1879
1879
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_multi_kit.jsx
1880
1880
  - app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_context.html.erb
@@ -1,29 +0,0 @@
1
- <%= pb_rails("circle_icon_button", props: {
2
- variant: "primary",
3
- icon: "plus",
4
- loading: true
5
- }) %>
6
-
7
- <br/>
8
-
9
- <%= pb_rails("circle_icon_button", props: {
10
- variant: "secondary",
11
- icon: "pen",
12
- loading: true
13
- }) %>
14
-
15
- <br/>
16
-
17
- <%= pb_rails("circle_icon_button", props: {
18
- disabled: true,
19
- icon: "times",
20
- loading: true
21
- }) %>
22
-
23
- <br/>
24
-
25
- <%= pb_rails("circle_icon_button", props: {
26
- variant: "link",
27
- icon: "user",
28
- loading: true
29
- }) %>
@@ -1,43 +0,0 @@
1
- import React from 'react'
2
-
3
- import CircleIconButton from '../_circle_icon_button'
4
-
5
- const CircleIconButtonLoading = (props) => (
6
- <div>
7
- <CircleIconButton
8
- icon="plus"
9
- loading
10
- variant="primary"
11
- {...props}
12
- />
13
-
14
- <br />
15
-
16
- <CircleIconButton
17
- icon="pen"
18
- loading
19
- variant="secondary"
20
- {...props}
21
- />
22
-
23
- <br />
24
-
25
- <CircleIconButton
26
- disabled
27
- icon="times"
28
- loading
29
- {...props}
30
- />
31
-
32
- <br />
33
-
34
- <CircleIconButton
35
- icon="user"
36
- loading
37
- variant="link"
38
- {...props}
39
- />
40
- </div>
41
- )
42
-
43
- export default CircleIconButtonLoading