playbook_ui_docs 14.24.0.pre.alpha.reactupgradetest9656 → 14.24.0.pre.alpha.testingfa9512

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.24.0.pre.alpha.reactupgradetest9656
4
+ version: 14.24.0.pre.alpha.testingfa9512
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-08-15 00:00:00.000000000 Z
12
+ date: 2025-08-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -462,8 +462,6 @@ files:
462
462
  - app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_click.jsx
463
463
  - app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_default.html.erb
464
464
  - app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_default.jsx
465
- - app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_input_options.html.erb
466
- - app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_input_options.md
467
465
  - app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_link.html.erb
468
466
  - app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_link.jsx
469
467
  - app/pb_kits/playbook/pb_circle_icon_button/docs/_circle_icon_button_link.md
@@ -1015,9 +1013,6 @@ files:
1015
1013
  - app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_multi_line.jsx
1016
1014
  - app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_multi_line.md
1017
1015
  - app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_multi_line_swift.md
1018
- - app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_no_icon.html.erb
1019
- - app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_no_icon.jsx
1020
- - app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_no_icon.md
1021
1016
  - app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_positions.html.erb
1022
1017
  - app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_positions.jsx
1023
1018
  - app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_positions_swift.md
@@ -1,24 +0,0 @@
1
- <%= pb_rails("circle_icon_button", props: {
2
- icon: "plus",
3
- input_options: {
4
- data: { "test-id": "add-button", remote: true },
5
- }
6
- }) %>
7
- <br/>
8
- <%= pb_rails("circle_icon_button", props: {
9
- icon: "pen",
10
- variant: "secondary",
11
- input_options: {
12
- data: { "test-id": "edit-button" },
13
- classname: "custom-secondary-button-class"
14
- }
15
- }) %>
16
- <br/>
17
- <%= pb_rails("circle_icon_button", props: {
18
- icon: "user",
19
- variant: "link",
20
- input_options: {
21
- data: { "test-id": "user-button" },
22
- id: "user-button-id"
23
- }
24
- }) %>
@@ -1,3 +0,0 @@
1
- Use the `input_options` prop to pass additional attributes directly to the internal Playbook Button component. While the wrapper div has access to the standard `data` prop from KitBase, `input_options` allows you to attach attributes specifically to the internal button element.
2
-
3
- This is particularly useful when you need data attributes or other HTML attributes to apply to the button itself.
@@ -1,22 +0,0 @@
1
- <%= pb_rails("fixed_confirmation_toast", props: {
2
- text: "Error Message",
3
- status: "error",
4
- icon: "none",
5
- closeable: true
6
- })%>
7
-
8
- <br><br>
9
-
10
- <%= pb_rails("fixed_confirmation_toast", props: {
11
- text: "Items Successfully Moved",
12
- status: "success",
13
- icon: "none"
14
- })%>
15
-
16
- <br><br>
17
-
18
- <%= pb_rails("fixed_confirmation_toast", props: {
19
- text: "Scan to Assign Selected Items",
20
- status: "neutral",
21
- icon: "none"
22
- })%>
@@ -1,43 +0,0 @@
1
- import React from 'react'
2
-
3
- import FixedConfirmationToast from '../_fixed_confirmation_toast'
4
-
5
- const FixedConfirmationToastNoIcon = (props) => {
6
- return (
7
- <div>
8
- <div>
9
- <FixedConfirmationToast
10
- closeable
11
- icon="none"
12
- status="error"
13
- text="Error Message"
14
- {...props}
15
- />
16
- </div>
17
-
18
- <br />
19
-
20
- <div>
21
- <FixedConfirmationToast
22
- icon="none"
23
- status="success"
24
- text="Items Successfully Moved"
25
- {...props}
26
- />
27
- </div>
28
-
29
- <br />
30
-
31
- <div>
32
- <FixedConfirmationToast
33
- icon="none"
34
- status="neutral"
35
- text="Scan to Assign Selected Items"
36
- {...props}
37
- />
38
- </div>
39
- </div>
40
- )
41
- }
42
-
43
- export default FixedConfirmationToastNoIcon
@@ -1 +0,0 @@
1
- Setting `icon` prop to "none" will render the fixed confirmation toast without the left side icon.