playbook_ui_docs 14.2.1.pre.alpha.20240828cikubedbump3702 → 14.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_circle_icon_button/docs/example.yml +0 -2
- data/app/pb_kits/playbook/pb_circle_icon_button/docs/index.js +0 -1
- data/dist/playbook-doc.js +1 -1
- metadata +5 -7
- data/app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_loading.html.erb +0 -29
- data/app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_loading.jsx +0 -43
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: playbook_ui_docs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 14.2.1
|
4
|
+
version: 14.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Power UX
|
8
8
|
- Power Devs
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-
|
12
|
+
date: 2024-08-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: playbook_ui
|
@@ -353,8 +353,6 @@ 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
|
358
356
|
- app/pb_kits/playbook/pb_circle_icon_button/docs/_description.md
|
359
357
|
- app/pb_kits/playbook/pb_circle_icon_button/docs/_footer.md
|
360
358
|
- app/pb_kits/playbook/pb_circle_icon_button/docs/example.yml
|
@@ -1950,7 +1948,7 @@ homepage: https://playbook.powerapp.cloud/
|
|
1950
1948
|
licenses:
|
1951
1949
|
- ISC
|
1952
1950
|
metadata: {}
|
1953
|
-
post_install_message:
|
1951
|
+
post_install_message:
|
1954
1952
|
rdoc_options: []
|
1955
1953
|
require_paths:
|
1956
1954
|
- lib
|
@@ -1966,7 +1964,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1966
1964
|
version: '0'
|
1967
1965
|
requirements: []
|
1968
1966
|
rubygems_version: 3.5.3
|
1969
|
-
signing_key:
|
1967
|
+
signing_key:
|
1970
1968
|
specification_version: 4
|
1971
1969
|
summary: Playbook Design System Docs
|
1972
1970
|
test_files: []
|
@@ -1,29 +0,0 @@
|
|
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
|
-
}) %>
|
@@ -1,43 +0,0 @@
|
|
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
|