playbook_ui_docs 14.12.0.pre.alpha.PLAY1888initializeOncereactdatepickerslowdown5956 → 14.12.0.pre.alpha.PLAY18565866

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.12.0.pre.alpha.PLAY1888initializeOncereactdatepickerslowdown5956
4
+ version: 14.12.0.pre.alpha.PLAY18565866
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-02-06 00:00:00.000000000 Z
12
+ date: 2025-02-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -436,9 +436,7 @@ files:
436
436
  - app/pb_kits/playbook/pb_contact/docs/_description.md
437
437
  - app/pb_kits/playbook/pb_contact/docs/example.yml
438
438
  - app/pb_kits/playbook/pb_contact/docs/index.js
439
- - app/pb_kits/playbook/pb_copy_button/docs/_copy_button_default.html.erb
440
439
  - app/pb_kits/playbook/pb_copy_button/docs/_copy_button_default.jsx
441
- - app/pb_kits/playbook/pb_copy_button/docs/_copy_button_from.html.erb
442
440
  - app/pb_kits/playbook/pb_copy_button/docs/_copy_button_from.jsx
443
441
  - app/pb_kits/playbook/pb_copy_button/docs/_copy_button_from.md
444
442
  - app/pb_kits/playbook/pb_copy_button/docs/example.yml
@@ -976,6 +974,10 @@ files:
976
974
  - app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_emphasis.jsx
977
975
  - app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_emphasis.md
978
976
  - app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_emphasis_swift.md
977
+ - app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_formatting.html.erb
978
+ - app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_formatting.jsx
979
+ - app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_formatting_rails.md
980
+ - app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_formatting_react.md
979
981
  - app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_link.html.erb
980
982
  - app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_link.jsx
981
983
  - app/pb_kits/playbook/pb_home_address_street/docs/_home_address_street_link.md
@@ -1172,8 +1174,6 @@ files:
1172
1174
  - app/pb_kits/playbook/pb_link/docs/_link_icon.jsx
1173
1175
  - app/pb_kits/playbook/pb_link/docs/_link_tag.html.erb
1174
1176
  - app/pb_kits/playbook/pb_link/docs/_link_tag.jsx
1175
- - app/pb_kits/playbook/pb_link/docs/_link_target.html.erb
1176
- - app/pb_kits/playbook/pb_link/docs/_link_target.jsx
1177
1177
  - app/pb_kits/playbook/pb_link/docs/_link_underline.html.erb
1178
1178
  - app/pb_kits/playbook/pb_link/docs/_link_underline.jsx
1179
1179
  - app/pb_kits/playbook/pb_link/docs/example.yml
@@ -1,2 +0,0 @@
1
- <%= pb_rails("copy_button", props: { id: "default-copy-button", text: "Copy Text", value: "Playbook makes it easy to support bleeding edge, or legacy systems. Use Playbook’s 200+ components and end-to-end design language to create simple, intuitive and beautiful experiences with ease." } ) %>
2
- <%= pb_rails("textarea", props: { margin_top: "xs", placeholder: "Copy and paste here" }) %>
@@ -1,5 +0,0 @@
1
- <%= pb_rails("body", props: { id: "body", text: "Copy this body text!"}) %>
2
- <%= pb_rails("copy_button", props: { text: "Copy Body text", from: "body", id: "copy-body-button" }) %>
3
- <%= pb_rails("text_input", props: { margin_top: "xs", placeholder: "Copy and paste here" }) %>
4
- <%= pb_rails("copy_button", props: { text: "Copy Text Input", from: "copy-input", id: "copy-input-button" }) %>
5
- <%= pb_rails("text_input", props: { margin_top: "xs", id: "copy-input" , value: "Copy and paste here" }) %>
@@ -1,15 +0,0 @@
1
- <div>
2
- <%= pb_rails("link", props: {
3
- href: "http://google.com",
4
- target: "blank",
5
- text: "Open In New Window"
6
- }) %>
7
- </div>
8
-
9
- <div>
10
- <%= pb_rails("link", props: {
11
- href: "https://playbook.powerapp.cloud/",
12
- target: "child",
13
- text: "Open In Child Tab",
14
- }) %>
15
- </div>
@@ -1,29 +0,0 @@
1
- import React from 'react'
2
- import { Link } from 'playbook-ui'
3
-
4
- const LinkTarget = (props) => (
5
- <div>
6
- <div>
7
- <Link
8
- aria={{ label: 'Link to Google in new window' }}
9
- href="https://google.com"
10
- tabIndex={0}
11
- target='blank'
12
- text="Open In New Window"
13
- {...props}
14
- />
15
- </div>
16
- <div>
17
- <Link
18
- aria={{ label: 'Link to Playbook in a child tab' }}
19
- href="https://playbook.powerapp.cloud/"
20
- tabIndex={0}
21
- target='child'
22
- text="Open In Child Tab"
23
- {...props}
24
- />
25
- </div>
26
- </div>
27
- )
28
-
29
- export default LinkTarget