playbook_ui 13.33.0 → 13.33.1.pre.alpha.PLAY14063320

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/_fixed_confirmation_toast.scss +1 -1
  3. data/app/pb_kits/playbook/pb_table/_table.tsx +1 -1
  4. data/app/pb_kits/playbook/pb_table/index.ts +4 -4
  5. data/app/pb_kits/playbook/pb_table/subcomponents/_table_body.tsx +1 -1
  6. data/app/pb_kits/playbook/pb_table/subcomponents/_table_cell.tsx +1 -1
  7. data/app/pb_kits/playbook/pb_table/subcomponents/_table_head.tsx +1 -1
  8. data/app/pb_kits/playbook/pb_table/subcomponents/_table_header.tsx +1 -1
  9. data/app/pb_kits/playbook/pb_table/subcomponents/_table_row.tsx +1 -1
  10. data/app/pb_kits/playbook/pb_table/table.test.js +0 -2
  11. data/app/pb_kits/playbook/pb_text_input/_text_input.tsx +1 -1
  12. data/app/pb_kits/playbook/pb_text_input/docs/_text_input_default.jsx +1 -1
  13. data/app/pb_kits/playbook/pb_textarea/_textarea.tsx +27 -45
  14. data/app/pb_kits/playbook/pb_textarea/index.tsx +3 -3
  15. data/app/pb_kits/playbook/pb_time/_time.tsx +3 -3
  16. data/app/pb_kits/playbook/pb_time_range_inline/_time_range_inline.tsx +1 -1
  17. data/app/pb_kits/playbook/pb_timeline/_item.tsx +1 -1
  18. data/app/pb_kits/playbook/pb_timeline/_timeline.tsx +1 -1
  19. data/app/pb_kits/playbook/pb_title_detail/_title_detail.tsx +10 -10
  20. data/app/pb_kits/playbook/pb_toggle/_toggle.tsx +1 -1
  21. data/app/pb_kits/playbook/pb_tooltip/_tooltip.tsx +2 -2
  22. data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.tsx +2 -1
  23. data/app/pb_kits/playbook/pb_treemap_chart/treemapChart.test.js +0 -2
  24. data/app/pb_kits/playbook/pb_typeahead/_typeahead.tsx +3 -3
  25. data/app/pb_kits/playbook/pb_typeahead/components/ClearIndicator.tsx +4 -4
  26. data/app/pb_kits/playbook/pb_typeahead/components/Control.tsx +7 -11
  27. data/app/pb_kits/playbook/pb_typeahead/components/IndicatorsContainer.tsx +3 -8
  28. data/app/pb_kits/playbook/pb_typeahead/components/MenuList.tsx +1 -6
  29. data/app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx +19 -18
  30. data/app/pb_kits/playbook/pb_typeahead/components/Option.tsx +6 -6
  31. data/app/pb_kits/playbook/pb_typeahead/components/Placeholder.tsx +6 -6
  32. data/app/pb_kits/playbook/pb_typeahead/components/ValueContainer.tsx +3 -3
  33. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_custom_menu_list.jsx +0 -2
  34. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_pills_async.jsx +2 -2
  35. data/app/pb_kits/playbook/pb_typeahead/index.ts +31 -31
  36. data/app/pb_kits/playbook/pb_user/_user.tsx +1 -1
  37. data/app/pb_kits/playbook/pb_user_badge/_user_badge.tsx +6 -6
  38. data/app/pb_kits/playbook/pb_user_badge/badges/million-dollar.tsx +235 -236
  39. data/app/pb_kits/playbook/pb_user_badge/badges/veteran.tsx +1 -1
  40. data/app/pb_kits/playbook/pb_walkthrough/_walkthrough.tsx +63 -68
  41. data/app/pb_kits/playbook/pb_weekday_stacked/_weekday_stacked.tsx +2 -2
  42. data/app/pb_kits/playbook/utilities/_positioning.scss +26 -15
  43. data/dist/playbook-rails.js +2 -2
  44. data/lib/playbook/version.rb +2 -2
  45. metadata +5 -5
@@ -1,5 +1,3 @@
1
- /* eslint-disable react/no-multi-comp */
2
-
3
1
  import React from 'react'
4
2
  import classnames from 'classnames'
5
3
  import { buildAriaProps, buildCss, buildDataProps, buildHtmlProps } from '../utilities/props'
@@ -26,7 +24,7 @@ type WalkthroughProps = {
26
24
  disableOverlay?: boolean,
27
25
  disableOverlayClose?: boolean,
28
26
  disableScrolling?: boolean,
29
- floaterProps?: Record<string, unknown>,
27
+ floaterProps?: object,
30
28
  hideBackButton?: boolean,
31
29
  hideCloseButton?: boolean,
32
30
  showProgress?: boolean,
@@ -60,92 +58,89 @@ type TooltipProps = {
60
58
  disableBeacon?: boolean,
61
59
  },
62
60
  skip?: boolean,
63
- backProps?: Record<string, unknown>,
64
- closeProps?: Record<string, unknown>,
65
- primaryProps?: Record<string, unknown>,
66
- skipProps?: Record<string, unknown>,
67
- tooltipProps?: Record<string, unknown>,
61
+ backProps?: object,
62
+ closeProps?: object,
63
+ primaryProps?: object,
64
+ skipProps?: object,
65
+ tooltipProps?: object,
68
66
  }
69
67
 
70
- // eslint-disable-next-line react/display-name
71
68
  const Tooltip = React.forwardRef((props: TooltipProps) => (
72
- <div
69
+ <div
73
70
  className="pb_card_kit_border_none p_none"
74
71
  {...props.tooltipProps}
75
- >
76
- {props.step.title && <div>
77
- <Flex
78
- align="center"
79
- justify="between"
80
- padding="xs"
81
72
  >
82
- <Title
73
+ {props.step.title && <div>
74
+ <Flex
75
+ align="center"
76
+ justify="between"
77
+ padding="xs"
78
+ >
79
+ <Title
83
80
  paddingLeft="xs"
84
81
  size={4}
85
- >
86
- {props.step.title}
87
- </Title>
88
- {props.skip && (
89
- <Button
82
+ >
83
+ {props.step.title}
84
+ </Title>
85
+ {props.skip && (<Button
90
86
  {...props.skipProps}
91
87
  id="skip"
92
88
  text="Skip Tour"
93
89
  variant="link"
94
- />
95
- )}
96
- <Button
90
+ />)}
91
+ <Button
97
92
  {...props.skipProps}
98
93
  id="skip"
99
94
  text="Skip Tour"
100
95
  variant="link"
101
- />
102
- </Flex>
103
- <SectionSeparator />
104
- </div>}
96
+ />
97
+ </Flex>
98
+ <SectionSeparator />
99
+ </div>}
105
100
 
106
- <Flex padding="sm">{props.step.content}</Flex>
107
- <SectionSeparator />
108
- <Flex
101
+ <Flex padding="sm">{props.step.content}</Flex>
102
+ <SectionSeparator />
103
+ <Flex
109
104
  justify={props.index == 0 ? 'end' : 'between'}
110
105
  padding="xs"
111
- >
106
+ >
112
107
 
113
- {props.index > 0 && (
114
- <Button
108
+ {props.index > 0 && (
109
+ <Button
115
110
  {...props.backProps}
116
111
  id="back"
117
112
  text="Back"
118
- />
119
- )}
113
+ />
114
+ )}
120
115
 
121
- {props.continuous && !props.isLastStep &&
122
- <Button
116
+ {props.continuous && !props.isLastStep &&
117
+ <Button
123
118
  {...props.primaryProps}
124
119
  id="next"
125
120
  text="Next"
126
- />
127
- }
121
+ />
122
+ }
128
123
 
129
- {!props.continuous &&
130
- <Button
124
+ {!props.continuous &&
125
+ <Button
131
126
  {...props.closeProps}
132
127
  id="close"
133
128
  text="Close"
134
- />
135
- }
129
+ />
130
+ }
136
131
 
137
- {!((props.continuous && !props.isLastStep) || (!props.continuous)) &&
138
- <Button
132
+ {!((props.continuous && !props.isLastStep) || (!props.continuous)) &&
133
+ <Button
139
134
  {...props.closeProps}
140
135
  id="close"
141
136
  text="Close"
142
- />
143
- }
144
- </Flex>
145
- </div>
137
+ />
138
+ }
139
+ </Flex>
140
+ </div>
146
141
  )) as unknown as React.ForwardRefRenderFunction<HTMLDivElement, TooltipRenderProps>
147
142
 
148
- const Walkthrough = (props: WalkthroughProps): React.ReactElement => {
143
+ const Walkthrough = (props: WalkthroughProps) => {
149
144
  const {
150
145
  aria = {},
151
146
  callback,
@@ -175,24 +170,24 @@ const Walkthrough = (props: WalkthroughProps): React.ReactElement => {
175
170
 
176
171
  return (
177
172
  <div
178
- {...ariaProps}
179
- {...dataProps}
180
- {...htmlProps}
181
- className={classes}
182
- id={id}
173
+ {...ariaProps}
174
+ {...dataProps}
175
+ {...htmlProps}
176
+ className={classes}
177
+ id={id}
183
178
  >
184
179
  <Joyride
185
- callback={callback}
186
- continuous={continuous}
187
- disableOverlay={disableOverlay}
188
- disableScrolling
189
- floaterProps={floaterProps}
190
- run={run}
191
- showSkipButton={showSkipButton}
192
- steps={steps}
193
- styles={styles}
194
- tooltipComponent={Tooltip}
195
- {...props}
180
+ callback={callback}
181
+ continuous={continuous}
182
+ disableOverlay={disableOverlay}
183
+ disableScrolling
184
+ floaterProps={floaterProps}
185
+ run={run}
186
+ showSkipButton={showSkipButton}
187
+ steps={steps}
188
+ styles={styles}
189
+ tooltipComponent={Tooltip}
190
+ {...props}
196
191
  />
197
192
  </div>
198
193
 
@@ -14,7 +14,7 @@ type WeekdayStackedProps = {
14
14
  aria?: {[key:string]:string },
15
15
  className?: string,
16
16
  dark?: boolean,
17
- data?: Record<string, unknown>,
17
+ data?: object,
18
18
  date: Date,
19
19
  htmlOptions?: {[key: string]: string | number | boolean | (() => void)},
20
20
  id?: string,
@@ -39,7 +39,7 @@ const getFormattedDate = (value: Date, variant: "day_only" | "month_day" | "expa
39
39
  }
40
40
  }
41
41
 
42
- const WeekdayStacked = (props: WeekdayStackedProps): React.ReactElement => {
42
+ const WeekdayStacked = (props: WeekdayStackedProps) => {
43
43
  const {
44
44
  align = 'left',
45
45
  aria = {},
@@ -19,55 +19,66 @@
19
19
  }
20
20
 
21
21
  .z_index_1 {
22
- z-index: 100;
22
+ z-index: $z_1 !important;
23
23
  }
24
24
 
25
25
  .z_index_2 {
26
- z-index: 200;
26
+ z-index: $z_2 !important;
27
27
  }
28
28
 
29
29
  .z_index_3 {
30
- z-index: 300;
30
+ z-index: $z_3 !important;
31
31
  }
32
32
 
33
33
  .z_index_4 {
34
- z-index: 400;
34
+ z-index: $z_4 !important;
35
35
  }
36
36
 
37
37
  .z_index_5 {
38
- z-index: 500;
38
+ z-index: $z_5 !important;
39
39
  }
40
40
 
41
41
  .z_index_6 {
42
- z-index: 600;
42
+ z-index: $z_6 !important;
43
43
  }
44
44
 
45
45
  .z_index_7 {
46
- z-index: 700;
46
+ z-index: $z_7 !important;
47
47
  }
48
48
 
49
49
  .z_index_8 {
50
- z-index: 800;
50
+ z-index: $z_8 !important;
51
51
  }
52
52
 
53
53
  .z_index_9 {
54
- z-index: 900;
54
+ z-index: $z_9 !important;
55
55
  }
56
56
 
57
57
  .z_index_10 {
58
- z-index: 1000;
59
- }
60
-
61
- $zIndex_values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10;
58
+ z-index: $z_10 !important;
59
+ }
60
+
61
+ $zIndex_values: (
62
+ 1: $z_1,
63
+ 2: $z_2,
64
+ 3: $z_3,
65
+ 4: $z_4,
66
+ 5: $z_5,
67
+ 6: $z_6,
68
+ 7: $z_7,
69
+ 8: $z_8,
70
+ 9: $z_9,
71
+ 10: $z_10
72
+ );
62
73
 
63
74
  @each $size, $size_value in $breakpoints_grid {
64
- @each $zIndex_value in $zIndex_values {
75
+ @each $zIndex_value, $zIndex_variable in $zIndex_values {
65
76
  $min_size: map-get($size_value, "min");
66
77
  $max_size: map-get($size_value, "max");
67
78
 
68
79
  .z_index_#{$size}_#{$zIndex_value} {
69
80
  @include break_on($min_size, $max_size) {
70
- z-index: #{$zIndex_value * 100} !important;
81
+ z-index: $zIndex_variable !important;
71
82
  }
72
83
  }
73
84
  }