playbook_ui_docs 14.3.0.pre.rc.1 → 14.3.0.pre.rc.3

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: b8b7a86368d9144904d66c35d5800c1f41db1f1d7b16e04fb21b24e1e36dec5c
4
- data.tar.gz: 31bac34ae090280b73cf1c4affaf85fa3e9d071c0633d0a8b36d14c7b063044d
3
+ metadata.gz: 1ba319f4d7afbf304da6f909e6175d171d42dc46d232b171678687f626b3331b
4
+ data.tar.gz: fe6a235175fb0dcde56763a6def1c3119eed9748a0fd8faddb28963b156ad897
5
5
  SHA512:
6
- metadata.gz: 1a7019d2429c18b127b26822e57ecce217c7b0e4b8cfa801843746632251f66b8e636a5f2ea7270fce54835a78617f55120e52f3d324a5d73700cb5a232436ea
7
- data.tar.gz: ea40e56e78054e76dfbf74a54de3801c80bb87d36dff0d72579c9c9d75706a316cc8e560dcde505dcb4d1ea707d8587da54921e1d73f63dc5c1a0d1d3806d6db
6
+ metadata.gz: 12cf306bc7f5089e494df8ac4ae3c3bafcb2bb08743820eb50b217b46569b5fda00542a45ab12ba554472270819009e1ee052a644da2d1553a6012b2180756ca
7
+ data.tar.gz: f5417074669b1c81f84466156c26aedda383870282e8c0322e3b6511b2228b10ab462748e4ef1c3a74d0d2ca9b75ddc297b4b882a0583ca9c36f7d035368b22d
@@ -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'