playbook_ui_docs 15.0.0.pre.alpha.popovertesting10431 → 15.0.0

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: 0ad03617727d4dbe737903be516966df566ca73ffa8fe3f642ea8aca31c7c03a
4
- data.tar.gz: ee75272a08dbf7944f2a742bc35c24f820b82f31292fa53279ce89e48360ebb8
3
+ metadata.gz: 2d156fed572020a8d5687970113736401a8e949da7d78b02c7a52b830d025da8
4
+ data.tar.gz: 1cb6e138149788777c222d44d2e481ed4fa48b05be03eb52f3405b9a06cbac61
5
5
  SHA512:
6
- metadata.gz: 1a7529aa76c39c96e8ebd428917cb9f32fb91a54ccb90ec1ca05f59ca4b3a27196973b0973214dff8cd58c8ea5ce93c2636d520eeffc6b162fe11c51405e0c99
7
- data.tar.gz: f117908dcaa125fadbabf767a9759a7fba29b3911fa2305561394b930c4b4a31c871db43bf3f36a808494d53f8182c84518c451f43a35174918d78bfee2633a7
6
+ metadata.gz: b007c353f23e5fba4dcb5a3a9a9ebada24368c45806ee863be89d9ed2091ed4d74861bbec9790c1679dc41a4bbb83ec0593940f64e476b10dcd695695817be1e
7
+ data.tar.gz: 60e54628d10f793973df03dedf2f2177cc7e53b18d616f8b760c911d8f35b4afba777945679147f42ad6b87270a058d9745e64d39be5ef5130e310cb9981660b
@@ -1,24 +1 @@
1
- <%= pb_rails("flex") do %>
2
- <%= pb_rails("date_picker", props: { picker_id: "date-picker-default"}) %>
3
-
4
- <!-- see how it behaves for raw html date picker -->
5
-
6
- <form style="margin-top:100px;" action="/action_page.php">
7
- <label for="birthday" style="padding-top:100px;">Birthday:</label>
8
- <input type="date" id="birthday" name="birthday">
9
- <input type="submit" value="Submit">
10
- </form>
11
-
12
- <form style="margin-top:100px;" action="/action_page.php">
13
- <label for="birthday" style="margin-top:100px;">Birthday:</label>
14
- <input type="date" id="birthday" name="birthday">
15
- <input type="submit" value="Submit">
16
- </form>
17
- <form style="margin-top:100px;" action="/action_page.php">
18
- <label for="birthday" style="padding-top:100px;">Birthday:</label>
19
- <input type="date" id="birthday" name="birthday">
20
- <input type="submit" value="Submit">
21
- </form>
22
- <p><strong>Note:</strong> type="date" is not supported in Internet Explorer 11.</p>
23
-
24
- <% end %>
1
+ <%= pb_rails("date_picker", props: { picker_id: "date-picker-default"}) %>
@@ -3,11 +3,9 @@ examples:
3
3
  rails:
4
4
  - loading_inline_default: Default
5
5
  - loading_inline_custom: Custom Text
6
- - loading_inline_variant: Variant
7
6
 
8
7
 
9
8
 
10
9
  react:
11
10
  - loading_inline_default: Default
12
11
  - loading_inline_custom: Custom Text
13
- - loading_inline_variant: Variant
@@ -1,3 +1,2 @@
1
1
  export { default as LoadingInlineDefault } from './_loading_inline_default.jsx'
2
2
  export { default as LoadingInlineCustom } from './_loading_inline_custom.jsx'
3
- export { default as LoadingInlineVariant } from './_loading_inline_variant.jsx'
@@ -9,8 +9,6 @@ examples:
9
9
  - text_input_no_label: No Label
10
10
  - text_input_options: Input Options
11
11
  - text_input_mask: Mask
12
- - text_input_autocomplete: Autocomplete
13
-
14
12
  react:
15
13
  - text_input_default: Default
16
14
  - text_input_error: With Error
@@ -21,7 +19,6 @@ examples:
21
19
  - text_input_no_label: No Label
22
20
  - text_input_mask: Mask
23
21
  - text_input_sanitize: Sanitized Masked Input
24
- - text_input_autocomplete: Autocomplete
25
22
 
26
23
 
27
24
  swift:
@@ -7,4 +7,3 @@ export { default as TextInputInline } from './_text_input_inline.jsx'
7
7
  export { default as TextInputNoLabel } from './_text_input_no_label.jsx'
8
8
  export { default as TextInputMask } from './_text_input_mask.jsx'
9
9
  export { default as TextInputSanitize } from './_text_input_sanitize.jsx'
10
- export { default as TextInputAutocomplete } from './_text_input_autocomplete.jsx'