playbook_ui_docs 15.0.0.pre.alpha.stimulusbutton10763 → 15.1.0.pre.alpha.PLAY2468phonenuminputvalidation10803

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: 5502cf92d841f167813a4288067616d35882ec8104e593f25a900940397d4c7a
4
- data.tar.gz: eab2af3154f8a86ec8da0a7080f4aecb2cec77de3227f2f3b9f266d65ab4252e
3
+ metadata.gz: 477655998ed307269e6b5d2ef410557d1c67836016bf14b941b579d6b517cd0d
4
+ data.tar.gz: 930404e3840aebbe517438d549c47067d3e3c6e6874df2ffdc0ceb891878b246
5
5
  SHA512:
6
- metadata.gz: 297cde1570bc5b8ead5fcd0dea29270ff28fc4771b2a8256ed76f61024879af7fa732dc9496392e5baa589515013d9f68ef56a7b37e2bfb142e648af0839a199
7
- data.tar.gz: 5b194a51746088a4d063cf029f742d759229d34b5d25791843fe989363df66df8328828df483ae38d2c9c3504c799abe9d0a1cc69b7ec4d2b71ea69c48593c86
6
+ metadata.gz: 24a662901328bc407c331b54588c0e110a2f41c51e7f123947b518f2cb48846bec43c457216fd65b160776ba89c29ed43d061ef5b934c53666477e8af21101c9
7
+ data.tar.gz: 52d6be6211562aa8b1b8a872269104e24dfe2ccb64c3af704ab3493877b3297efed1790a105e20361ad276f7ddd871840ec235f2d6e35bf6f279147ffb9cfa6e
@@ -11,8 +11,6 @@ examples:
11
11
  - button_options: Button Additional Options
12
12
  - button_size: Button Size
13
13
  - button_form: Button Form Attribute
14
- - button_managed_disabled: Button Toggle Disabled State
15
- - button_managed_disabled_helper: Button Toggle Disabled State Helper
16
14
 
17
15
  react:
18
16
  - button_default: Button Variants
@@ -90,7 +90,7 @@
90
90
  <%= pb_form_with(scope: :example, method: :get, url: "", validate: true) do |form| %>
91
91
  <%= form.typeahead :example_typeahead_validation, props: { data: { typeahead_example2: true, user: {} }, label: true, placeholder: "Search for a user", required: true, validation: { message: "Please select a user." } } %>
92
92
  <%= form.text_field :example_text_field_validation, props: { label: true, required: true } %>
93
- <%= form.phone_number_field :example_phone_number_field_validation, props: { label: "Example phone field", hidden_inputs: true } %>
93
+ <%= form.phone_number_field :example_phone_number_field_validation, props: { label: "Example phone field", hidden_inputs: true, required: true } %>
94
94
  <%= form.email_field :example_email_field_validation, props: { label: true, required: true } %>
95
95
  <%= form.number_field :example_number_field_validation, props: { label: true, required: true } %>
96
96
  <%= form.search_field :example_project_number_validation, props: { label: true, required: true, validation: { pattern: "[0-9]{2}-[0-9]{5}", message: "Please enter a valid project number (example: 33-12345)." } } %>