playbook_ui_docs 14.15.0.pre.alpha.PLAY1756pbcontenttagpt76722 → 14.15.0.pre.alpha.PLAY1871speedupvitebuildwatch6643

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.
Files changed (23) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_hooks.md +1 -3
  3. data/app/pb_kits/playbook/pb_date_picker/docs/example.yml +0 -2
  4. data/app/pb_kits/playbook/pb_form/docs/_form_form_with.html.erb +1 -1
  5. data/app/pb_kits/playbook/pb_form/docs/_form_form_with_validate.html.erb +1 -1
  6. data/app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_default.html.erb +1 -1
  7. data/app/pb_kits/playbook/pb_phone_number_input/docs/example.yml +1 -3
  8. data/app/pb_kits/playbook/pb_tooltip/docs/example.yml +0 -1
  9. data/dist/playbook-doc.js +1 -1
  10. metadata +2 -15
  11. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_on_change.html.erb +0 -39
  12. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_on_close.html.erb +0 -39
  13. data/app/pb_kits/playbook/pb_empty_state/docs/_empty_state_alignment.jsx +0 -38
  14. data/app/pb_kits/playbook/pb_empty_state/docs/_empty_state_default.jsx +0 -17
  15. data/app/pb_kits/playbook/pb_empty_state/docs/_empty_state_orientation.jsx +0 -21
  16. data/app/pb_kits/playbook/pb_empty_state/docs/_empty_state_size.jsx +0 -35
  17. data/app/pb_kits/playbook/pb_empty_state/docs/default_image/computer_fly_no_branding.svg +0 -21
  18. data/app/pb_kits/playbook/pb_empty_state/docs/default_image/utils.tsx +0 -118
  19. data/app/pb_kits/playbook/pb_empty_state/docs/example.yml +0 -8
  20. data/app/pb_kits/playbook/pb_empty_state/docs/index.js +0 -4
  21. data/app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_hidden_inputs.html.erb +0 -5
  22. data/app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_hidden_inputs.md +0 -1
  23. data/app/pb_kits/playbook/pb_tooltip/docs/_tooltip_sizing.html.erb +0 -22
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: de30282ce195dc0656732d3e3e2a3786e5d22a5496ccb289afbd6f669456d687
4
- data.tar.gz: bad1ca5da538eb318cd393ba4e212b1de13d1fe081bad4bbbf22807124e183b8
3
+ metadata.gz: d61adddd78244dd3844ab6bd261d621ef28678d36cdc41cf00bd5ab2ca237b73
4
+ data.tar.gz: 973c356c5be8b05054412a43e5c5ae52ca330ebd0b50449c48fe52b842bcc477
5
5
  SHA512:
6
- metadata.gz: 7993026953aad936fde9634240edbb802006d65c67332041d3ba5e37910cc9d867b53020d0ba83f08678f486dcc311bf841be1e38fc66b5caba62ca02a85ef35
7
- data.tar.gz: ea9ffc81fc841a37ad7260561abdbf37c81e911eb152c23ace14e759f90a3c0b34be1f1a5d323c562ccd7f66a014fa47fee8a9fc82d18324cf932a278d3daee0
6
+ metadata.gz: 799af284e279e857c44e62f462cf88529d9d2cd0ca05100d446a2c86b7cd4540678c86d3f624bcd93e7acb2b84c7a004bfe8361279b220772306d21aed35f63f
7
+ data.tar.gz: ae9a99dba7a772402181ad735e9de19a5a443ec9389052f9159e8734bad6f3fd16511483458a99c293897cb3b3a54c845bfefbac9f6811b3a0da11e903c205b0
@@ -1,3 +1 @@
1
- You can find a full list of flatpickr events and hooks in their [documentation](https://flatpickr.js.org/events/).
2
-
3
- Use `window.addEventListener("DOMContentLoaded", () => {})`, not `document.addEventListener("DOMContentLoaded", () => {})`.
1
+ You can find a full list of flatpickr events and hooks in their [documentation](https://flatpickr.js.org/events/).
@@ -7,8 +7,6 @@ examples:
7
7
  - date_picker_allow_input: Allow Input
8
8
  - date_picker_input: Input Field
9
9
  - date_picker_label: Label
10
- - date_picker_on_change: onChange
11
- - date_picker_on_close: onClose
12
10
  # - date_picker_range: Range
13
11
  - date_picker_quick_pick_rails: Range (Quick Pick)
14
12
  - date_picker_quick_pick_range_limit: Range (Quick Pick w/ “This” Range limit)
@@ -25,7 +25,7 @@
25
25
  <%= pb_form_with(scope: :example, url: "", method: :get) do |form| %>
26
26
  <%= form.typeahead :example_typeahead, props: { data: { typeahead_example1: true, user: {} }, label: true, placeholder: "Search for a user" } %>
27
27
  <%= form.text_field :example_text_field, props: { label: true } %>
28
- <%= form.phone_number_field :example_phone_number_field, props: { label: "Example phone field", hidden_inputs: true } %>
28
+ <%= form.phone_number_field :example_phone_number_field, props: { label: "Example phone field" } %>
29
29
  <%= form.email_field :example_email_field, props: { label: true } %>
30
30
  <%= form.number_field :example_number_field, props: { label: true } %>
31
31
  <%= form.search_field :example_search_field, props: { label: true } %>
@@ -24,7 +24,7 @@
24
24
  <%= pb_form_with(scope: :example, method: :get, url: "", validate: true) do |form| %>
25
25
  <%= 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." } } %>
26
26
  <%= form.text_field :example_text_field_validation, props: { label: true, required: true } %>
27
- <%= form.phone_number_field :example_phone_number_field_validation, props: { label: "Example phone field", hidden_inputs: true } %>
27
+ <%= form.phone_number_field :example_phone_number_field_validation, props: { label: "Example phone field" } %>
28
28
  <%= form.email_field :example_email_field_validation, props: { label: true, required: true } %>
29
29
  <%= form.number_field :example_number_field_validation, props: { label: true, required: true } %>
30
30
  <%= 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)." } } %>
@@ -1,3 +1,3 @@
1
1
  <%= pb_rails("phone_number_input", props: {
2
- id: "hello",
2
+ id: "hello"
3
3
  }) %>
@@ -16,6 +16,4 @@ examples:
16
16
  - phone_number_input_initial_country: Initial Country
17
17
  - phone_number_input_only_countries: Limited Countries
18
18
  - phone_number_input_validation: Form Validation
19
- - phone_number_input_format: Format as You Type
20
- - phone_number_input_hidden_inputs: Hidden Inputs
21
-
19
+ - phone_number_input_format: Format as You Type
@@ -4,7 +4,6 @@ examples:
4
4
  - tooltip_default: Default
5
5
  - tooltip_interaction: Content Interaction
6
6
  - tooltip_selectors: Using Common Selectors
7
- - tooltip_sizing: Tooltip Sizing
8
7
  - tooltip_icon_rails: Tooltip with Icon
9
8
  - tooltip_with_icon_circle: Icon Circle Tooltip
10
9
  - tooltip_delay_rails: Delay