playbook_ui 15.2.0.pre.alpha.toastfixes11416 → 15.2.0.pre.alpha.toastfixes11417
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: a0337b2677bd5411161752e4c3769bf2469a4ff1cc2a56368639e8785bfe761e
|
4
|
+
data.tar.gz: 43b7e73766b95756079ca66703e3e19e314a1eadd4b48cb26c55cd5d17952630
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d466e97f01e7202031caeb3d2b8546eb5fab2fa203aa685f20b59a30a33780144b76170ce45e83bc916f4b91f614ea8d3fe92c87d8ba3dc49433a5220ad607d
|
7
|
+
data.tar.gz: aa36b922bcb388af5da9c9ae4dd4ae2d210f09cba2b5d4aa7ab5e97b7a63a2e7f55d26db46a7f5ac70490826e4248940bb3274dafa019f0c38fae2d16666ca62
|
@@ -61,7 +61,9 @@ module Playbook
|
|
61
61
|
|
62
62
|
def classname
|
63
63
|
default_z_index = z_index.present? ? "" : " z_index_max"
|
64
|
-
|
64
|
+
# IMPORTANT: the AutoClose class must be the last class in the string for JS to read it correctly
|
65
|
+
# Changing the order will break the auto_close functionality
|
66
|
+
generate_classname("pb_fixed_confirmation_toast_kit", status, multi_line_class) + close_class + position_class + icon_class + default_z_index + auto_close_class
|
65
67
|
end
|
66
68
|
end
|
67
69
|
end
|
data/lib/playbook/version.rb
CHANGED