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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 851f6c4ec3754d58b28279edd613d3ae6b70f057bab213969436a0a6d17b36cd
4
- data.tar.gz: b0fbe0741797c8baf11e20611d49b782684b0f69b5d29b7126b07e7cd4275ea4
3
+ metadata.gz: b2e937ffd44f1c1125af7d577af54bc9cf9d43eea0b41add007292e072a8d85f
4
+ data.tar.gz: 4727dab3fc2d2f0f39610556337b9b397aa569d1ca09284b988184d2eb81c000
5
5
  SHA512:
6
- metadata.gz: 7d4a68e1101f56feef5b488579f50a8204ec7fa2fac6019201bae7682417bc942d8ae5daa0d7aecff517bf1132cabbc01e6068ab7491e9fac13ff005a0c05e49
7
- data.tar.gz: '00975facbfc0dae3b076ba1b60d796232c01ef02897aea9ee2275d879f012cf4a63f8d55222e715dc5c41f8953c4020deaa25a9d41cca855d9dff9a8266f37e0'
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'
@@ -14,7 +14,6 @@ examples:
14
14
  - radio_error: With Error
15
15
  - radio_alignment: Alignment
16
16
  - radio_disabled: Disabled
17
- - radio_children: Children
18
17
 
19
18
  swift:
20
19
  - radio_default_swift: Default
@@ -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'