playbook_ui_docs 13.27.0.pre.alpha.PLAY1349checkboxzindexsticky2936 → 13.27.0.pre.alpha.PLAY11782916
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_collapsible/docs/example.yml +0 -7
- data/app/pb_kits/playbook/pb_collapsible/docs/index.js +1 -3
- data/app/pb_kits/playbook/pb_date_range_inline/docs/example.yml +1 -4
- data/app/pb_kits/playbook/pb_date_stacked/docs/example.yml +0 -7
- data/app/pb_kits/playbook/pb_date_time/docs/example.yml +0 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display.jsx +3 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display_rails.html.erb +6 -11
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_options.jsx +2 -5
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_options_rails.html.erb +8 -13
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_padding.md +1 -1
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_trigger.jsx +2 -5
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_trigger_rails.html.erb +8 -13
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/example.yml +0 -9
- data/app/pb_kits/playbook/pb_form/docs/_form_form_with.html.erb +1 -1
- data/app/pb_kits/playbook/pb_form/docs/_form_form_with_validate.html.erb +1 -1
- data/dist/playbook-doc.js +6 -6
- metadata +2 -28
- data/app/pb_kits/playbook/pb_collapsible/docs/_collapsible_custom_main.jsx +0 -72
- data/app/pb_kits/playbook/pb_collapsible/docs/_collapsible_custom_main.md +0 -3
- data/app/pb_kits/playbook/pb_collapsible/docs/_collapsible_custom_main_rails.html.erb +0 -19
- data/app/pb_kits/playbook/pb_collapsible/docs/_collapsible_custom_main_rails.md +0 -3
- data/app/pb_kits/playbook/pb_collapsible/docs/_collapsible_custom_main_with_icon.jsx +0 -73
- data/app/pb_kits/playbook/pb_collapsible/docs/_collapsible_custom_main_with_icon.md +0 -3
- data/app/pb_kits/playbook/pb_collapsible/docs/_collapsible_custom_main_with_icon_rails.html.erb +0 -20
- data/app/pb_kits/playbook/pb_collapsible/docs/_collapsible_custom_main_with_icon_rails.md +0 -3
- data/app/pb_kits/playbook/pb_date_range_inline/docs/_date_range_inline_default_swift.md +0 -61
- data/app/pb_kits/playbook/pb_date_range_inline/docs/_date_range_inline_props_swift.md +0 -11
- data/app/pb_kits/playbook/pb_date_stacked/docs/_date_stacked_bold_swift.md +0 -32
- data/app/pb_kits/playbook/pb_date_stacked/docs/_date_stacked_default_swift.md +0 -17
- data/app/pb_kits/playbook/pb_date_stacked/docs/_date_stacked_not_current_year_swift.md +0 -19
- data/app/pb_kits/playbook/pb_date_stacked/docs/_date_stacked_props_swift.md +0 -10
- data/app/pb_kits/playbook/pb_date_stacked/docs/_date_stacked_reversed_swift.md +0 -17
- data/app/pb_kits/playbook/pb_date_time/docs/_date_time_alignment_swift.md +0 -39
- data/app/pb_kits/playbook/pb_date_time/docs/_date_time_default_swift.md +0 -39
- data/app/pb_kits/playbook/pb_date_time/docs/_date_time_props_swift.md +0 -15
- data/app/pb_kits/playbook/pb_date_time/docs/_date_time_size_swift.md +0 -78
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_children_swift.md +0 -23
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_close_swift.md +0 -7
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_default_swift.md +0 -9
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_dismiss_with_timer_swift.md +0 -22
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_multi_line_swift.md +0 -9
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_positions_swift.md +0 -62
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_props_swift.md +0 -8
@@ -1,23 +0,0 @@
|
|
1
|
-
![Children-Toast](https://github.com/powerhome/playbook-swift/assets/54749071/55aebd12-43c4-4061-92d3-6aebb07ff349)
|
2
|
-
|
3
|
-
```swift
|
4
|
-
VStack(alignment: .leading) {
|
5
|
-
PBToast(
|
6
|
-
text: message,
|
7
|
-
variant: .success,
|
8
|
-
actionView: .custom(AnyView(Text("Undo").pbFont(.title4, color: .white))),
|
9
|
-
dismissAction: closeToast
|
10
|
-
)
|
11
|
-
PBToast(
|
12
|
-
variant: .custom(nil, .pbPrimary),
|
13
|
-
actionView: .custom(
|
14
|
-
AnyView(
|
15
|
-
HStack {
|
16
|
-
Text("Undo action").pbFont(.caption, color: .white)
|
17
|
-
PBButton(variant: .primary, title: "Undo").disabled(true)
|
18
|
-
}
|
19
|
-
)),
|
20
|
-
dismissAction: closeToast
|
21
|
-
)
|
22
|
-
}
|
23
|
-
```
|
data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_close_swift.md
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
```swift
|
2
|
-
VStack(alignment: .leading) {
|
3
|
-
PBToast(text: "Error Message", variant: .error, actionView: .default, dismissAction: closeToast)
|
4
|
-
PBToast(text: "Items Successfully Moved", variant: .success, actionView: .default, dismissAction: closeToast)
|
5
|
-
PBToast(text: "Scan to Assign Selected Items", variant: .neutral, actionView: .default, dismissAction: closeToast)
|
6
|
-
}
|
7
|
-
```
|
@@ -1,9 +0,0 @@
|
|
1
|
-
![Default-Toast](https://github.com/powerhome/playbook-swift/assets/54749071/cc465b1b-85ba-4492-a832-b06b842a1555)
|
2
|
-
|
3
|
-
```swift
|
4
|
-
VStack(alignment: .leading) {
|
5
|
-
PBToast(text: "Error Message", variant: .error, dismissAction: closeToast)
|
6
|
-
PBToast(text: "Items Successfully Moved", variant: .success, dismissAction: closeToast)
|
7
|
-
PBToast(text: "Scan to Assign Selected Items", variant: .neutral, dismissAction: closeToast)
|
8
|
-
}
|
9
|
-
```
|
@@ -1,22 +0,0 @@
|
|
1
|
-
```swift
|
2
|
-
HStack {
|
3
|
-
PBButton(variant: .secondary, title: "Top Center") {
|
4
|
-
position = .top
|
5
|
-
toastView = PBToast(
|
6
|
-
text: "Top Center",
|
7
|
-
variant: .neutral,
|
8
|
-
actionView: .withTimer(3),
|
9
|
-
dismissAction: closeToast
|
10
|
-
)
|
11
|
-
}
|
12
|
-
PBButton(variant: .secondary, title: "Bottom Center") {
|
13
|
-
position = .bottom
|
14
|
-
toastView = PBToast(
|
15
|
-
text: "Bottom Center",
|
16
|
-
variant: .neutral,
|
17
|
-
actionView: .withTimer(2),
|
18
|
-
dismissAction: closeToast
|
19
|
-
)
|
20
|
-
}
|
21
|
-
}
|
22
|
-
```
|
@@ -1,62 +0,0 @@
|
|
1
|
-
```swift
|
2
|
-
GridRow {
|
3
|
-
PBButton(variant: .secondary, title: "Top Left") {
|
4
|
-
position = .topLeft
|
5
|
-
toastView = PBToast(
|
6
|
-
text: "Top Left",
|
7
|
-
variant: .neutral,
|
8
|
-
actionView: .default,
|
9
|
-
dismissAction: closeToast
|
10
|
-
)
|
11
|
-
}
|
12
|
-
PBButton(variant: .secondary, title: "Top Right") {
|
13
|
-
position = .topRight
|
14
|
-
toastView = PBToast(
|
15
|
-
text: "Top Right",
|
16
|
-
variant: .neutral,
|
17
|
-
actionView: .default,
|
18
|
-
dismissAction: closeToast
|
19
|
-
)
|
20
|
-
}
|
21
|
-
}
|
22
|
-
GridRow {
|
23
|
-
PBButton(variant: .secondary, title: "Top Center") {
|
24
|
-
position = .top
|
25
|
-
toastView = PBToast(
|
26
|
-
text: "Top Center",
|
27
|
-
variant: .neutral,
|
28
|
-
actionView: .default,
|
29
|
-
dismissAction: closeToast
|
30
|
-
)
|
31
|
-
}
|
32
|
-
PBButton(variant: .secondary, title: "Bottom Center") {
|
33
|
-
position = .bottom
|
34
|
-
toastView = PBToast(
|
35
|
-
text: "Bottom Center",
|
36
|
-
variant: .custom(.user, .status(.neutral)),
|
37
|
-
actionView: .default,
|
38
|
-
dismissAction: closeToast
|
39
|
-
)
|
40
|
-
}
|
41
|
-
}
|
42
|
-
GridRow {
|
43
|
-
PBButton(variant: .secondary, title: "Bottom Left") {
|
44
|
-
position = .bottomLeft
|
45
|
-
toastView = PBToast(
|
46
|
-
text: "Bottom Left",
|
47
|
-
variant: .custom(.user, .status(.neutral)),
|
48
|
-
actionView: .default,
|
49
|
-
dismissAction: closeToast
|
50
|
-
)
|
51
|
-
}
|
52
|
-
PBButton(variant: .secondary, title: "Bottom Right") {
|
53
|
-
position = .bottomRight
|
54
|
-
toastView = PBToast(
|
55
|
-
text: "Bottom Right",
|
56
|
-
variant: .custom(.user, .status(.neutral)),
|
57
|
-
actionView: .default,
|
58
|
-
dismissAction: closeToast
|
59
|
-
)
|
60
|
-
}
|
61
|
-
}
|
62
|
-
```
|
data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_props_swift.md
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
### Props
|
2
|
-
| Name | Type | Description | Default | Values |
|
3
|
-
| --- | ----------- | --------- | --------- | --------- |
|
4
|
-
| **text** | `String` |`Value for the toast message` | `nil` | |
|
5
|
-
| **variant** | `Variant` | `Determines the type pf toast message being displayed` | `.custom()` | `error`, `success`,
|
6
|
-
`neutral`, `custom()` |
|
7
|
-
| **actionView** | `dismissAction` | Dismisses the toast message | `.default` | `default` `custom()` `withTimer()` |
|
8
|
-
| **dismissAction** | `(() -> Void)` | `Triggers the dismiss action` | | |
|