playbook_ui_docs 14.2.1.pre.alpha.pbntr373enablekitsforradio3665 → 14.2.1.pre.alpha.20240828cikubedbump3702

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.
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.pbntr373enablekitsforradio3665
4
+ version: 14.2.1.pre.alpha.20240828cikubedbump3702
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-04 00:00:00.000000000 Z
12
+ date: 2024-09-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -353,6 +353,8 @@ 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
356
358
  - app/pb_kits/playbook/pb_circle_icon_button/docs/_description.md
357
359
  - app/pb_kits/playbook/pb_circle_icon_button/docs/_footer.md
358
360
  - app/pb_kits/playbook/pb_circle_icon_button/docs/example.yml
@@ -1382,7 +1384,6 @@ files:
1382
1384
  - app/pb_kits/playbook/pb_radio/docs/_radio_alignment.html.erb
1383
1385
  - app/pb_kits/playbook/pb_radio/docs/_radio_alignment.jsx
1384
1386
  - app/pb_kits/playbook/pb_radio/docs/_radio_alignment_swift.md
1385
- - app/pb_kits/playbook/pb_radio/docs/_radio_children.jsx
1386
1387
  - app/pb_kits/playbook/pb_radio/docs/_radio_custom.html.erb
1387
1388
  - app/pb_kits/playbook/pb_radio/docs/_radio_custom.jsx
1388
1389
  - app/pb_kits/playbook/pb_radio/docs/_radio_custom_swift.md
@@ -1,56 +0,0 @@
1
- import React from 'react'
2
- import Radio from '../_radio'
3
- import Select from '../../pb_select/_select'
4
- import Typeahead from '../../pb_typeahead/_typeahead'
5
- import Title from '../../pb_title/_title'
6
-
7
- const RadioChildren = (props) => {
8
-
9
-
10
- const options = [
11
- { label: 'Orange', value: 'Orange' },
12
- { label: 'Red', value: 'Red' },
13
- { label: 'Green', value: 'Green' },
14
- { label: 'Blue', value: 'Blue' },
15
- ]
16
-
17
- return (
18
- <div>
19
- <Radio
20
- label="Select"
21
- name="Group1"
22
- tabIndex={0}
23
- value="Select"
24
- {...props}
25
- >
26
- <Select
27
- minWidth="xs"
28
- options={options}
29
- />
30
- </Radio>
31
- <Radio
32
- label="Typeahead"
33
- name="Group1"
34
- tabIndex={0}
35
- value="Typeahead"
36
- {...props}
37
- >
38
- <Typeahead
39
- minWidth="xs"
40
- options={options}
41
- />
42
- </Radio>
43
- <br />
44
- <Radio
45
- defaultChecked={false}
46
- label="Typography"
47
- name="Group1"
48
- value="Typography"
49
- {...props}
50
- >
51
- <Title text="Custom Typography" />
52
- </Radio>
53
- </div>
54
- )
55
- }
56
- export default RadioChildren