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.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_loading.html.erb +29 -0
- data/app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_loading.jsx +43 -0
- data/app/pb_kits/playbook/pb_circle_icon_button/docs/example.yml +2 -0
- data/app/pb_kits/playbook/pb_circle_icon_button/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_radio/docs/example.yml +0 -1
- data/app/pb_kits/playbook/pb_radio/docs/index.js +0 -1
- data/dist/playbook-doc.js +1 -1
- metadata +4 -3
- data/app/pb_kits/playbook/pb_radio/docs/_radio_children.jsx +0 -56
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2e937ffd44f1c1125af7d577af54bc9cf9d43eea0b41add007292e072a8d85f
|
4
|
+
data.tar.gz: 4727dab3fc2d2f0f39610556337b9b397aa569d1ca09284b988184d2eb81c000
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16712c00e82c51435f233907e9663767a290cbf29a78e7dcd00a7286d64299969d28eb7df4d48d5de228f6b144f1d750cc6d16c048005374ce20a4aea78b2e0f
|
7
|
+
data.tar.gz: 81c876f11f23fe30816ec30b56e8a7436f8ae0125fc89dd9fa4481c06a1ea6ac9692ba900afc09a505b83a5b6785efdd31304bc76e4928682e7c857b3eb57783
|
@@ -0,0 +1,29 @@
|
|
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
|
+
}) %>
|
@@ -0,0 +1,43 @@
|
|
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
|
@@ -3,8 +3,10 @@ examples:
|
|
3
3
|
rails:
|
4
4
|
- circle_icon_button_default: Default
|
5
5
|
- circle_icon_button_link: Link
|
6
|
+
- circle_icon_button_loading: Loading
|
6
7
|
|
7
8
|
react:
|
8
9
|
- circle_icon_button_default: Default
|
9
10
|
- circle_icon_button_click: Click Handler
|
10
11
|
- circle_icon_button_link: Link
|
12
|
+
- circle_icon_button_loading: Loading
|
@@ -1,3 +1,4 @@
|
|
1
1
|
export { default as CircleIconButtonDefault } from './_circle_icon_button_default.jsx'
|
2
2
|
export { default as CircleIconButtonClick } from './_circle_icon_button_click.jsx'
|
3
3
|
export { default as CircleIconButtonLink } from './_circle_icon_button_link.jsx'
|
4
|
+
export { default as CircleIconButtonLoading } from './_circle_icon_button_loading.jsx'
|
@@ -3,4 +3,3 @@ export { default as RadioCustom } from './_radio_custom.jsx'
|
|
3
3
|
export { default as RadioError } from './_radio_error.jsx'
|
4
4
|
export { default as RadioAlignment } from './_radio_alignment.jsx'
|
5
5
|
export { default as RadioDisabled } from './_radio_disabled.jsx'
|
6
|
-
export { default as RadioChildren } from './_radio_children.jsx'
|