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

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be1f0b5273d0a05e88c0f74fc141efe02c59ff18c5a170704636b2c7376f29ec
4
- data.tar.gz: 97bbfe0555d6bfef282bc11f6dc312c021e7664f784ed9399a290d8845f71aab
3
+ metadata.gz: b2e937ffd44f1c1125af7d577af54bc9cf9d43eea0b41add007292e072a8d85f
4
+ data.tar.gz: 4727dab3fc2d2f0f39610556337b9b397aa569d1ca09284b988184d2eb81c000
5
5
  SHA512:
6
- metadata.gz: 4918e8dd79bee9fbee6ed0e9b7f79ad6250d789709752b29056d6ade89d318dc93180f2e4b3979ad6ed333c1412f257e28954d11eef3eb7c2dc15c415f3dc510
7
- data.tar.gz: b0356d07f5c986b3da45f7945046f95d1d48f61a3631c8b8c10b6eac7bf52522e1623e93b1e22fa4e61f855437d8f420951f3ebc82b7f6b65a58fefced842468
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'