playbook_ui_docs 14.2.0.pre.alpha.play1432playgroundsanitation3622 → 14.2.0.pre.alpha.play1490railsdialogdatafix3649
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ece876c6243b230746458ef5d7ef39128eacf41d79bdfa97d82c9702cc12eb8b
|
4
|
+
data.tar.gz: b30767358d0bb68cb02dea0b3c2991365cee46b774ad32359a4fb4e8647a85c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f092fe9c1b31f8466415f14bccc3aaa82bb261e86d3ad4d72c49e707c05bd4f3f13fc7ad81d7cabacbb2efe95eb0ff461ba98ef5bd713b1f9383e30c20f9b43c
|
7
|
+
data.tar.gz: 0e30c5a64317fe31c24ee2ac2084487e9b42d9401e2f401bd2050bb7cf98669e5a916cc474813df399f625af6c336e9bd2a699da48dc1399bff8de3cd515ecb3
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<%= pb_rails("button", props: { text: "Open Dialog", data: {"open-dialog": "dialog-loading"} }) %>
|
2
|
+
|
3
|
+
<%= pb_rails("dialog", props: {
|
4
|
+
id:"dialog-loading",
|
5
|
+
size: "sm",
|
6
|
+
title: "Loading Exmaple",
|
7
|
+
text: "Make a loading request?",
|
8
|
+
cancel_button: "Cancel Button",
|
9
|
+
cancel_button_id: "cancel-button-loading",
|
10
|
+
confirm_button: "Okay",
|
11
|
+
confirm_button_id: "confirm-button-loading",
|
12
|
+
loading: true,
|
13
|
+
}) %>
|