playbook_ui_docs 14.11.1.pre.alpha.PLAY17445539 → 14.11.1.pre.alpha.hfhbrakemanplaybook5370

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sort_control.md +2 -2
  3. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_default_date.md +1 -1
  4. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_with_list_rails.html.erb +9 -3
  5. data/app/pb_kits/playbook/pb_draggable/docs/example.yml +0 -1
  6. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_borders.jsx +45 -3
  7. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_breakpoints.jsx +1 -0
  8. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_default.jsx +16 -9
  9. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_menu.jsx +19 -44
  10. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_menu.md +3 -21
  11. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_overlay.jsx +21 -16
  12. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_sizes.jsx +19 -2
  13. data/app/pb_kits/playbook/pb_drawer/docs/example.yml +1 -2
  14. data/app/pb_kits/playbook/pb_drawer/docs/index.js +0 -1
  15. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_subtle_variant.md +1 -1
  16. data/app/pb_kits/playbook/pb_phone_number_input/docs/example.yml +1 -3
  17. data/app/pb_kits/playbook/pb_phone_number_input/docs/index.js +0 -1
  18. data/app/pb_kits/playbook/pb_radio/docs/_radio_custom_children.jsx +3 -8
  19. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns_rails.md +2 -2
  20. data/app/pb_kits/playbook/pb_table/docs/example.yml +0 -2
  21. data/dist/playbook-doc.js +1 -1
  22. metadata +2 -13
  23. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_with_list_rails.md +0 -5
  24. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_with_selectable_list_rails.html.erb +0 -38
  25. data/app/pb_kits/playbook/pb_draggable/docs/_draggable_with_selectable_list_rails.md +0 -3
  26. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_behavior.jsx +0 -38
  27. data/app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_format.html.erb +0 -15
  28. data/app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_format.jsx +0 -24
  29. data/app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_format.md +0 -1
  30. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns.html.erb +0 -74
  31. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns_rails.md +0 -3
  32. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns.html.erb +0 -74
  33. data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns_rails.md +0 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '090f195e5c1d632daff7a380a997fa713796b9f3fe91b57716e4f47f2009127e'
4
- data.tar.gz: 564f6568f7c77fb7b11528ee81690486d00ec53dffe1ba829e4bc37aaa69a9c9
3
+ metadata.gz: 8cec5b327027d185abd08e5306f4d55cd69463894c965c49b410fc4f5e87c264
4
+ data.tar.gz: 2aa04f18b9ed1b6befdd50d8568d574cff1c86b88e9dc84035b5043a1e1680a2
5
5
  SHA512:
6
- metadata.gz: a768c323ef00fb1bc7dad3728d146a71f1be7ea69c2bc592ed9337bccc0374f0bd7b4dcdcc967328e81354608474199048a14d6caab13842180c262c0d97225d
7
- data.tar.gz: 301d2159ace035f984951c9eafcfc43ace554798fd5730bfc383ccc2763c1a6ae7d1c074a72ca87af790cbfddaa007746d7cadff6768b7f6032b0d48e6800de1
6
+ metadata.gz: 7bdfd5454a5ab5591e8a656b63b40192b03d9389dd4388279b317dbedd3bd933730736996d3aef33f0c36bbff7234d23265a9e63065f841fcb8318afccb2d7fa
7
+ data.tar.gz: 0e09ff8694c3c0166393a0e73893b37da44fe33ef54a8c0028e3150de55d7b107277b78d89a5d8a2b17d0f9a3e8cc7a545353533398bdf7a8d3b884279606d84
@@ -1,3 +1,3 @@
1
- `sortControl` is an optional prop that can be used to gain greater control over the sort state of the Advanced Table. Tanstack handles sort itself, however it does provide for a way to handle the state manually if needed. Usecases for this include needing to store the sort state so it persists on page reload, set an initial sort state, etc.
1
+ `sortControl` is an optional prop that can be used to gain greater control over the sort state of the Advanced Table. Tanstack handles sort itself, however it does provide for a way to handle the state manually if needed. Usecases for this include needing to store the sort state so it persists on page reload, set an initial sort state, etc.
2
2
 
3
- The sort state must be an object with a single key/value pair, with the key being "desc" and the value being a boolean. The default for sort direction is `desc: true`.
3
+ The sort state must be an object with a single key/value pair, with the key being "desc" and the value being a boolean. The default for sort directino is `desc: true`.
@@ -2,4 +2,4 @@ The `defaultDate`/`default_date` prop has a null or empty string value by defaul
2
2
 
3
3
  If you use a Date object without UTC time standardization the Date Picker kit may misinterpret that date as yesterdays date (consequence of timezone differentials and the Javascript Date Object constructor). See [this GitHub issue for more information](https://github.com/powerhome/playbook/issues/1167) and the anti-pattern examples below.
4
4
 
5
- You can leverage the `defaultDate`/`default_date` prop with custom logic in your filter or controller files where the determination of the default value changes based on user interaction. The page can load with an initial default date picker value or placeholder text, then after filter submission save the submitted values as the "new default" (via state or params).
5
+
@@ -6,8 +6,14 @@
6
6
 
7
7
  ] %>
8
8
 
9
- <%= pb_rails("list", props: { enable_drag: true, items: initial_items }) do %>
10
- <% initial_items.each do |item| %>
11
- <%= pb_rails("list/item", props:{drag_id: item[:id]}) do %><%= item[:name] %><% end %>
9
+ <%= pb_rails("draggable", props: {initial_items: initial_items}) do %>
10
+ <%= pb_rails("draggable/draggable_container") do %>
11
+ <%= pb_rails("list", props: {ordered: false}) do %>
12
+ <% initial_items.each do |item| %>
13
+ <%= pb_rails("draggable/draggable_item", props:{drag_id: item[:id]}) do %>
14
+ <%= pb_rails("list/item") do %><%= item[:name] %><% end %>
15
+ <% end %>
16
+ <% end %>
17
+ <% end %>
12
18
  <% end %>
13
19
  <% end %>
@@ -11,7 +11,6 @@ examples:
11
11
  rails:
12
12
  - draggable_default_rails: Default
13
13
  - draggable_with_list_rails: Draggable with List Kit
14
- - draggable_with_selectable_list_rails: Draggable with SelectableList Kit
15
14
  - draggable_with_cards_rails: Draggable with Cards
16
15
 
17
16
 
@@ -6,15 +6,19 @@ const DrawerBorders = () => {
6
6
  const [openedBRightDrawer, setOpenedBRightDrawer] = useState(false);
7
7
  const [openedBLeftDrawer, setOpenedBLeftDrawer] = useState(false);
8
8
  const [openedBFullDrawer, setOpenedBFullDrawer] = useState(false);
9
+ const [openedBDefaultDrawer, setOpenedBDefaultDrawer] = useState(false);
10
+ const [openedBRoundedDrawer, setOpenedBRoundedDrawer] = useState(false);
9
11
 
10
12
  // Toggle functions for each drawer
11
13
  const toggleBRightDrawer = () => setOpenedBRightDrawer(!openedBRightDrawer);
12
14
  const toggleBLeftDrawer = () => setOpenedBLeftDrawer(!openedBLeftDrawer);
13
15
  const toggleBFullDrawer = () => setOpenedBFullDrawer(!openedBFullDrawer);
16
+ const toggleBDefaultDrawer = () => setOpenedBDefaultDrawer(!openedBDefaultDrawer);
17
+ const toggleBRoundedDrawer = () => setOpenedBRoundedDrawer(!openedBRoundedDrawer);
14
18
 
15
19
  return (
16
20
  <>
17
- <Flex
21
+ <Flex padding="md"
18
22
  wrap
19
23
  >
20
24
  <Button marginRight="md"
@@ -32,12 +36,23 @@ const DrawerBorders = () => {
32
36
  >
33
37
  Drawer with border full
34
38
  </Button>
39
+ <Button marginRight="md"
40
+ onClick={toggleBDefaultDrawer}
41
+ >
42
+ Default Drawer
43
+ </Button>
44
+ <Button marginRight="md"
45
+ onClick={toggleBRoundedDrawer}
46
+ >
47
+ Rounded Drawer
48
+ </Button>
35
49
  </Flex>
36
50
 
37
51
  {/* Drawers for each size */}
38
52
  <Drawer
39
53
  behavior="float"
40
54
  border="right"
55
+ fullHeight
41
56
  onClose={toggleBRightDrawer}
42
57
  opened={openedBRightDrawer}
43
58
  overlay={false}
@@ -49,10 +64,11 @@ const DrawerBorders = () => {
49
64
  <Drawer
50
65
  behavior="float"
51
66
  border="left"
67
+ fullHeight
52
68
  onClose={toggleBLeftDrawer}
53
69
  opened={openedBLeftDrawer}
54
70
  overlay={false}
55
- placement="left"
71
+ placement="right"
56
72
  size="lg"
57
73
  >
58
74
  This is a Drawer with border left
@@ -60,14 +76,40 @@ const DrawerBorders = () => {
60
76
  <Drawer
61
77
  behavior="float"
62
78
  border="full"
79
+ fullHeight
63
80
  onClose={toggleBFullDrawer}
64
81
  opened={openedBFullDrawer}
65
82
  overlay={false}
66
- placement="left"
83
+ placement="right"
67
84
  size="lg"
68
85
  >
69
86
  This is a Drawer with border full
70
87
  </Drawer>
88
+ <Drawer
89
+ behavior="float"
90
+ fullHeight
91
+ onClose={toggleBDefaultDrawer}
92
+ opened={openedBDefaultDrawer}
93
+ overlay={false}
94
+ placement="right"
95
+ size="lg"
96
+ >
97
+ This is a Default Drawer
98
+ </Drawer>
99
+ <Drawer
100
+ behavior="float"
101
+ borderRadius="rounded"
102
+ fullHeight
103
+ onClose={toggleBRoundedDrawer}
104
+ opened={openedBRoundedDrawer}
105
+ overlay={false}
106
+ placement="right"
107
+ size="lg"
108
+ >
109
+ <div style={{ paddingTop: '100px', paddingLeft: '12px' }}>
110
+ This is a Rounded Drawer
111
+ </div>
112
+ </Drawer>
71
113
  </>
72
114
  );
73
115
  };
@@ -26,6 +26,7 @@ const DrawerBreakpoints = () => {
26
26
  <Drawer
27
27
  behavior={"push"}
28
28
  breakpoint="sm"
29
+ fullHeight
29
30
  onClose={toggleSmallDrawer}
30
31
  opened={smallDrawerOpened}
31
32
  overlay={false}
@@ -9,8 +9,8 @@ const useDrawer = (visible = false) => {
9
9
  };
10
10
 
11
11
  const DrawerDefault = () => {
12
- const [drawerLeftOpen, toggleDrawerLeftOpen] = useDrawer();
13
- const [drawerRightOpen, toggleDrawerRightOpen ] = useDrawer();
12
+ const [headerSeparatorDrawerOpened, toggleHeaderSeparatorDrawer] = useDrawer();
13
+ const [bothSeparatorsDrawerOpened, toggleBothSeparatorsDrawer] = useDrawer();
14
14
 
15
15
  return (
16
16
  <>
@@ -18,13 +18,13 @@ const DrawerDefault = () => {
18
18
  <Button
19
19
  id="sm"
20
20
  marginRight="md"
21
- onClick={toggleDrawerLeftOpen}
21
+ onClick={toggleHeaderSeparatorDrawer}
22
22
  >
23
23
  {"Left Drawer"}
24
24
  </Button>
25
25
  <Button
26
26
  marginRight="xl"
27
- onClick={toggleDrawerRightOpen}
27
+ onClick={toggleBothSeparatorsDrawer}
28
28
  >
29
29
  {"Right Drawer"}
30
30
  </Button>
@@ -32,8 +32,12 @@ const DrawerDefault = () => {
32
32
  <Flex>
33
33
  {/* Left Drawer */}
34
34
  <Drawer
35
- onClose={toggleDrawerLeftOpen}
36
- opened={drawerLeftOpen}
35
+ behavior={"push"}
36
+ fullHeight
37
+ onClose={toggleHeaderSeparatorDrawer}
38
+ opened={headerSeparatorDrawerOpened}
39
+ overlay
40
+ placement={"left"}
37
41
  size={"lg"}
38
42
  >
39
43
  Test me (Left Drawer)
@@ -41,8 +45,11 @@ const DrawerDefault = () => {
41
45
 
42
46
  {/* Right Drawer */}
43
47
  <Drawer
44
- onClose={toggleDrawerRightOpen}
45
- opened={drawerRightOpen}
48
+ behavior={"push"}
49
+ fullHeight
50
+ onClose={toggleBothSeparatorsDrawer}
51
+ opened={bothSeparatorsDrawerOpened}
52
+ overlay
46
53
  placement={"right"}
47
54
  size={"lg"}
48
55
  >
@@ -53,4 +60,4 @@ const DrawerDefault = () => {
53
60
  );
54
61
  };
55
62
 
56
- export default DrawerDefault;
63
+ export default DrawerDefault;
@@ -1,56 +1,31 @@
1
- import React, { useState, useEffect } from "react"
2
- import { Button, Drawer, Icon, Nav, NavItem } from "playbook-ui"
1
+ import React from "react";
2
+ import { Button, Drawer, Icon, Title } from "playbook-ui";
3
3
 
4
4
  const DrawerMenu = () => {
5
- const [isSmallScreen, setIsSmallScreen] = useState(false)
6
-
7
- useEffect(() => {
8
- const mediaQuery = window.matchMedia("(max-width: 600px)")
9
- setIsSmallScreen(mediaQuery.matches)
10
- const handler = (e) => setIsSmallScreen(e.matches)
11
- mediaQuery.addEventListener('change', handler)
12
- return () => mediaQuery.removeEventListener('change', handler)
13
- }, [])
14
5
 
15
6
  return (
16
- <div>
17
- <Button id='menuButton'
18
- padding='xs'
7
+ <>
8
+ <Button id="menuButton"
9
+ padding="sm"
19
10
  >
20
- <Icon icon='bars'
21
- size='2x'
11
+ <Icon icon="bars"
12
+ size="3x"
22
13
  />
23
14
  </Button>
24
15
  <Drawer
25
- breakpoint="md"
26
- placement='bottom'
27
- size='full'
28
- triggerId='menuButton'
16
+ behavior="push"
17
+ closeBreakpoint="md"
18
+ menuButtonID="menuButton"
19
+ overlay={false}
20
+ placement="left"
21
+ size="lg"
29
22
  withinElement
30
23
  >
31
- <Nav
32
- highlight={false}
33
- link='#'
34
- orientation={isSmallScreen ? 'vertical' : 'horizontal'}
35
- padding={isSmallScreen ? 'none' : 'sm'}
36
- >
37
- <NavItem link='#'
38
- text='About'
39
- />
40
- <NavItem active
41
- link='#'
42
- text='Case Studies'
43
- />
44
- <NavItem link='#'
45
- text='Service'
46
- />
47
- <NavItem link='#'
48
- text='Contacts'
49
- />
50
- </Nav>
24
+ <Title paddingBottom="md">A really neat menu</Title>
25
+ <Button text="This Button does nothing" />
51
26
  </Drawer>
52
- </div>
53
- )
54
- }
27
+ </>
28
+ );
29
+ };
55
30
 
56
- export default DrawerMenu
31
+ export default DrawerMenu;
@@ -1,24 +1,6 @@
1
- The Drawer component can be used to create responsive navigation menus and sidebars. It provides flexible options for controlling when and how the drawer appears based on screen size.
2
-
3
- ### Within Element
4
- The `withinElement` prop allows you to render the drawer within its parent container:
5
- - The drawer will be positioned relative to its parent element
6
- - Useful for creating nested navigation structures
7
- - This must be used in conjunction with the `triggerId` prop
8
-
9
- This provides a clean way to create responsive navigation patterns that adapt to different screen sizes while maintaining a consistent user experience.
10
-
11
- ### Trigger Id
12
- The `triggerId` prop allows you to connect an element to control the drawer:
13
- - The specified element will toggle the drawer open/closed
14
- - The element is automatically hidden when the drawer is opened via breakpoint
15
- - The element reappears when the drawer is closed via breakpoint
16
-
17
- ### Breakpoint
18
- Use the `breakpoint` prop to control when the drawer automatically opens or closes based on screen size. For example, setting `breakpoint="md"` will:
19
- - Close the drawer on screens smaller than the medium breakpoint (992px)
20
- - Automatically open the drawer on screens larger than or equal to the medium breakpoint
21
-
1
+ Our drawer kit can fulfill your responsive menu needs! Using the `closeBreakpoint` prop you can have the menu close on smaller screens like phones/tablets.
22
2
 
3
+ Set a menu button with the `menuButtonID` props. When the Drawer is open, the menu button will be hidden. But when your Brakpoint closes the drawer, you can toggle the Drawer open/close with your menu butotn.
23
4
 
5
+ Also use the `withinElement` props to have the Drawer open within a specific element, instead of the default behavior of it taking up the entire screen size.
24
6
 
@@ -1,25 +1,24 @@
1
- import React, { useState } from "react"
2
- import { Button, Drawer, Flex } from "playbook-ui"
1
+ import React, { useState } from "react";
2
+ import { Button, Drawer, Flex } from "playbook-ui";
3
3
 
4
4
  const DrawerSizes = () => {
5
5
  // Individual state variables for each drawer size
6
- const [openedNoOverlayDrawer, setOpenedNoOverlayDrawer] = useState(false)
7
- const [openedOverlayDrawer, setOpenedOverlayDrawer] = useState(false)
6
+ const [openedNoOverlayDrawer, setOpenedNoOverlayDrawer] = useState(false);
7
+ const [openedOverlayDrawer, setOpenedOverlayDrawer] = useState(false);
8
8
 
9
9
  // Toggle functions for each drawer
10
- const toggleNoOverlayDrawer = () =>
11
- setOpenedNoOverlayDrawer(!openedNoOverlayDrawer)
12
- const toggleOverlayDrawer = () => setOpenedOverlayDrawer(!openedOverlayDrawer)
10
+ const toggleNoOverlayDrawer = () => setOpenedNoOverlayDrawer(!openedNoOverlayDrawer);
11
+ const toggleOverlayDrawer = () => setOpenedOverlayDrawer(!openedOverlayDrawer);
13
12
 
14
13
  return (
15
14
  <>
16
15
  <Flex wrap>
17
- <Button marginRight='md'
16
+ <Button marginRight="md"
18
17
  onClick={toggleNoOverlayDrawer}
19
18
  >
20
19
  No Overlay Drawer
21
20
  </Button>
22
- <Button marginRight='md'
21
+ <Button marginRight="md"
23
22
  onClick={toggleOverlayDrawer}
24
23
  >
25
24
  Overlay Drawer
@@ -28,23 +27,29 @@ const DrawerSizes = () => {
28
27
 
29
28
  {/* Drawers for each size */}
30
29
  <Drawer
30
+ behavior="push"
31
+ fullHeight
31
32
  onClose={toggleNoOverlayDrawer}
32
33
  opened={openedNoOverlayDrawer}
33
34
  overlay={false}
34
- size='lg'
35
+ placement="right"
36
+ size="lg"
35
37
  >
36
38
  This is a Drawer with no overlay
37
39
  </Drawer>
38
40
  <Drawer
41
+ behavior="push"
42
+ fullHeight
39
43
  onClose={toggleOverlayDrawer}
40
44
  opened={openedOverlayDrawer}
41
- placement='right'
42
- size='lg'
45
+ overlay
46
+ placement="right"
47
+ size="lg"
43
48
  >
44
- This is a Drawer with an overlay
49
+ This is a Drawer with an overlay
45
50
  </Drawer>
46
51
  </>
47
- )
48
- }
52
+ );
53
+ };
49
54
 
50
- export default DrawerSizes
55
+ export default DrawerSizes;
@@ -19,8 +19,7 @@ const DrawerSizes = () => {
19
19
  return (
20
20
  <>
21
21
  <Flex wrap>
22
- <Button
23
- marginRight="md"
22
+ <Button marginRight="md"
24
23
  onClick={toggleXsDrawer}
25
24
  >
26
25
  XS Drawer
@@ -49,8 +48,11 @@ const DrawerSizes = () => {
49
48
 
50
49
  {/* Drawers for each size */}
51
50
  <Drawer
51
+ behavior="push"
52
+ fullHeight
52
53
  onClose={toggleXsDrawer}
53
54
  opened={openedXsDrawer}
55
+ overlay
54
56
  placement="right"
55
57
  size="xs"
56
58
  >
@@ -58,32 +60,47 @@ const DrawerSizes = () => {
58
60
  </Drawer>
59
61
 
60
62
  <Drawer
63
+ behavior="push"
64
+ fullHeight
61
65
  onClose={toggleSmDrawer}
62
66
  opened={openedSmDrawer}
67
+ overlay
68
+ placement="right"
63
69
  size="sm"
64
70
  >
65
71
  This is an SM Drawer
66
72
  </Drawer>
67
73
 
68
74
  <Drawer
75
+ behavior="push"
76
+ fullHeight
69
77
  onClose={toggleMdDrawer}
70
78
  opened={openedMdDrawer}
79
+ overlay
71
80
  placement="right"
81
+ size="md"
72
82
  >
73
83
  This is an MD Drawer
74
84
  </Drawer>
75
85
 
76
86
  <Drawer
87
+ behavior="push"
88
+ fullHeight
77
89
  onClose={toggleLgDrawer}
78
90
  opened={openedLgDrawer}
91
+ overlay
92
+ placement="right"
79
93
  size="lg"
80
94
  >
81
95
  This is an LG Drawer
82
96
  </Drawer>
83
97
 
84
98
  <Drawer
99
+ behavior="push"
100
+ fullHeight
85
101
  onClose={toggleXlDrawer}
86
102
  opened={openedXlDrawer}
103
+ overlay
87
104
  placement="right"
88
105
  size="xl"
89
106
  >
@@ -6,8 +6,7 @@ examples:
6
6
 
7
7
  react:
8
8
  - drawer_default: Default
9
- - drawer_behavior: Push Behavior
10
- - drawer_menu: Within Element
9
+ - drawer_menu: Menu Behavior
11
10
  - drawer_sizes: Sizes
12
11
  - drawer_overlay: Overlay
13
12
  - drawer_borders: Borders
@@ -4,4 +4,3 @@ export { default as DrawerOverlay } from './_drawer_overlay.jsx'
4
4
  export { default as DrawerBorders } from './_drawer_borders.jsx'
5
5
  export { default as DrawerBreakpoints } from './_drawer_breakpoints.jsx'
6
6
  export { default as DrawerMenu } from './_drawer_menu.jsx'
7
- export { default as DrawerBehavior } from './_drawer_behavior.jsx'
@@ -1 +1 @@
1
- For the `subtle` variant, it is recommended that you set the `Separators` prop to `false` to remove the separator lines between the options for a cleaner look.
1
+ For the `subtle` variant, it is recommended that you set the `Separators` prop to `false` to remove the separator lines between the options for a more cleaner look.
@@ -8,12 +8,10 @@ examples:
8
8
  - phone_number_input_validation: Form Validation
9
9
  - phone_number_input_clear_field: Clearing the Input Field
10
10
  - phone_number_input_access_input_element: Accessing the Input Element
11
- - phone_number_input_format: Format as You Type
12
11
 
13
12
  rails:
14
13
  - phone_number_input_default: Default
15
14
  - phone_number_input_preferred_countries: Preferred Countries
16
15
  - phone_number_input_initial_country: Initial Country
17
16
  - phone_number_input_only_countries: Limited Countries
18
- - phone_number_input_validation: Form Validation
19
- - phone_number_input_format: Format as You Type
17
+ - phone_number_input_validation: Form Validation
@@ -5,4 +5,3 @@ export { default as PhoneNumberInputOnlyCountries } from './_phone_number_input_
5
5
  export { default as PhoneNumberInputValidation } from './_phone_number_input_validation'
6
6
  export { default as PhoneNumberInputClearField } from './_phone_number_input_clear_field'
7
7
  export { default as PhoneNumberInputAccessInputElement } from './_phone_number_input_access_input_element'
8
- export { default as PhoneNumberInputFormat } from './_phone_number_input_format'
@@ -29,7 +29,6 @@ const RadioChildren = (props) => {
29
29
  marginBottom="none"
30
30
  minWidth="xs"
31
31
  options={options}
32
- {...props}
33
32
  />
34
33
  </Radio>
35
34
  <Radio
@@ -41,11 +40,10 @@ const RadioChildren = (props) => {
41
40
  value="Typeahead"
42
41
  {...props}
43
42
  >
44
- <Typeahead
43
+ <Typeahead
45
44
  marginBottom="none"
46
45
  minWidth="xs"
47
46
  options={options}
48
- {...props}
49
47
  />
50
48
  </Radio>
51
49
  <Radio
@@ -56,12 +54,9 @@ const RadioChildren = (props) => {
56
54
  value="Typography"
57
55
  {...props}
58
56
  >
59
- <Title
60
- text="Custom Typography"
61
- {...props}
62
- />
57
+ <Title text="Custom Typography" />
63
58
  </Radio>
64
59
  </div>
65
60
  )
66
61
  }
67
- export default RadioChildren
62
+ export default RadioChildren
@@ -1,3 +1,3 @@
1
- The `sticky_left_column` prop expects an array of the column ids you want to be sticky. Make sure to add the corresponding id to the `<th>` and `<td>`.
1
+ The `stickyLeftColumn` prop expects an array of the column ids you want to be sticky. Make sure to add the corresponding id to the `<th>` and `<td>`.
2
2
 
3
- Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using the `sticky_left_column`.
3
+ Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using the `stickyLeftColumn`.
@@ -5,8 +5,6 @@ examples:
5
5
  - table_lg: Large
6
6
  - table_sticky: Sticky Header
7
7
  - table_sticky_left_columns: Sticky Left Column
8
- - table_sticky_right_columns: Sticky Right Column
9
- - table_sticky_columns: Sticky Left and Right Columns
10
8
  - table_header: Table Header
11
9
  - table_alignment_row_rails: Row Alignment
12
10
  - table_alignment_column_rails: Cell Alignment