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 +4 -4
- data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_default.html.erb +1 -24
- data/app/pb_kits/playbook/pb_loading_inline/docs/example.yml +0 -2
- data/app/pb_kits/playbook/pb_loading_inline/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_text_input/docs/example.yml +0 -3
- data/app/pb_kits/playbook/pb_text_input/docs/index.js +0 -1
- data/dist/playbook-doc.js +2 -2
- metadata +2 -7
- data/app/pb_kits/playbook/pb_loading_inline/docs/_loading_inline_variant.html.erb +0 -5
- data/app/pb_kits/playbook/pb_loading_inline/docs/_loading_inline_variant.jsx +0 -24
- data/app/pb_kits/playbook/pb_text_input/docs/_text_input_autocomplete.html.erb +0 -41
- data/app/pb_kits/playbook/pb_text_input/docs/_text_input_autocomplete.jsx +0 -80
- data/app/pb_kits/playbook/pb_text_input/docs/_text_input_autocomplete.md +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d156fed572020a8d5687970113736401a8e949da7d78b02c7a52b830d025da8
|
4
|
+
data.tar.gz: 1cb6e138149788777c222d44d2e481ed4fa48b05be03eb52f3405b9a06cbac61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b007c353f23e5fba4dcb5a3a9a9ebada24368c45806ee863be89d9ed2091ed4d74861bbec9790c1679dc41a4bbb83ec0593940f64e476b10dcd695695817be1e
|
7
|
+
data.tar.gz: 60e54628d10f793973df03dedf2f2177cc7e53b18d616f8b760c911d8f35b4afba777945679147f42ad6b87270a058d9745e64d39be5ef5130e310cb9981660b
|
@@ -1,24 +1 @@
|
|
1
|
-
<%= pb_rails("
|
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
|
@@ -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'
|