playbook_ui 13.34.1.pre.alpha.powerfontsexternal3403 → 14.0.0.pre.alpha.PLAY14113475

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.
Files changed (101) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_advanced_table/Components/TableHeaderCell.tsx +5 -2
  3. data/app/pb_kits/playbook/pb_advanced_table/SubKits/TableBody.tsx +24 -20
  4. data/app/pb_kits/playbook/pb_advanced_table/SubKits/TableHeader.tsx +17 -12
  5. data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +86 -1
  6. data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx +5 -1
  7. data/app/pb_kits/playbook/pb_advanced_table/advanced_table.test.jsx +30 -0
  8. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_responsive.jsx +67 -0
  9. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_responsive.md +1 -0
  10. data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +1 -0
  11. data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +2 -1
  12. data/app/pb_kits/playbook/pb_avatar/_avatar.scss +0 -30
  13. data/app/pb_kits/playbook/pb_avatar/_avatar.tsx +19 -1
  14. data/app/pb_kits/playbook/pb_avatar/avatar.rb +44 -1
  15. data/app/pb_kits/playbook/pb_avatar/avatar.test.js +17 -0
  16. data/app/pb_kits/playbook/pb_badge/_badge.scss +6 -0
  17. data/app/pb_kits/playbook/pb_badge/_badge.tsx +4 -2
  18. data/app/pb_kits/playbook/pb_badge/badge.rb +1 -1
  19. data/app/pb_kits/playbook/pb_badge/badge.test.js +17 -11
  20. data/app/pb_kits/playbook/pb_badge/docs/_badge_notification.html.erb +13 -0
  21. data/app/pb_kits/playbook/pb_badge/docs/_badge_notification.jsx +31 -12
  22. data/app/pb_kits/playbook/pb_date_picker/docs/_description.md +3 -1
  23. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/_fixed_confirmation_toast.scss +1 -1
  24. data/app/pb_kits/playbook/pb_form/docs/_form_form_with.html.erb +1 -0
  25. data/app/pb_kits/playbook/pb_icon/_icon.tsx +3 -0
  26. data/app/pb_kits/playbook/pb_icon/icon.rb +2 -0
  27. data/app/pb_kits/playbook/pb_icon_circle/_icon_circle.tsx +2 -1
  28. data/app/pb_kits/playbook/pb_icon_circle/icon_circle.rb +2 -2
  29. data/app/pb_kits/playbook/pb_icon_stat_value/_icon_stat_value.scss +0 -11
  30. data/app/pb_kits/playbook/pb_icon_stat_value/_icon_stat_value.tsx +3 -2
  31. data/app/pb_kits/playbook/pb_icon_stat_value/docs/_icon_stat_value_color.html.erb +1 -0
  32. data/app/pb_kits/playbook/pb_icon_stat_value/icon_stat_value.rb +2 -2
  33. data/app/pb_kits/playbook/pb_icon_stat_value/icon_stat_value.test.js +5 -4
  34. data/app/pb_kits/playbook/pb_nav/_horizontal_nav.scss +1 -1
  35. data/app/pb_kits/playbook/pb_online_status/_online_status.scss +52 -5
  36. data/app/pb_kits/playbook/pb_online_status/_online_status.tsx +6 -1
  37. data/app/pb_kits/playbook/pb_online_status/docs/_online_status_no_border.html.erb +1 -0
  38. data/app/pb_kits/playbook/pb_online_status/docs/_online_status_no_border.jsx +14 -0
  39. data/app/pb_kits/playbook/pb_online_status/docs/_online_status_size.html.erb +3 -0
  40. data/app/pb_kits/playbook/pb_online_status/docs/_online_status_size.jsx +25 -0
  41. data/app/pb_kits/playbook/pb_online_status/docs/example.yml +6 -2
  42. data/app/pb_kits/playbook/pb_online_status/docs/index.js +2 -0
  43. data/app/pb_kits/playbook/pb_online_status/online_status.rb +11 -1
  44. data/app/pb_kits/playbook/pb_online_status/online_status.test.js +31 -0
  45. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_toggle.html.erb +61 -0
  46. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_toggle.jsx +70 -0
  47. data/app/pb_kits/playbook/pb_overlay/docs/_overlay_toggle.md +1 -0
  48. data/app/pb_kits/playbook/pb_overlay/docs/example.yml +4 -2
  49. data/app/pb_kits/playbook/pb_overlay/docs/index.js +1 -0
  50. data/app/pb_kits/playbook/pb_star_rating/_star_rating.scss +83 -6
  51. data/app/pb_kits/playbook/pb_star_rating/docs/example.yml +3 -1
  52. data/app/pb_kits/playbook/pb_star_rating/index.js +73 -4
  53. data/app/pb_kits/playbook/pb_star_rating/star_rating.html.erb +1 -1
  54. data/app/pb_kits/playbook/pb_star_rating/star_rating.rb +2 -2
  55. data/app/pb_kits/playbook/pb_star_rating/stars/utils.tsx +5 -1
  56. data/app/pb_kits/playbook/pb_star_rating/subcomponents/_star_rating_interactive.tsx +50 -21
  57. data/app/pb_kits/playbook/pb_table/_table.tsx +1 -1
  58. data/app/pb_kits/playbook/pb_table/index.ts +4 -4
  59. data/app/pb_kits/playbook/pb_table/subcomponents/_table_body.tsx +1 -1
  60. data/app/pb_kits/playbook/pb_table/subcomponents/_table_cell.tsx +1 -1
  61. data/app/pb_kits/playbook/pb_table/subcomponents/_table_head.tsx +1 -1
  62. data/app/pb_kits/playbook/pb_table/subcomponents/_table_header.tsx +1 -1
  63. data/app/pb_kits/playbook/pb_table/subcomponents/_table_row.tsx +1 -1
  64. data/app/pb_kits/playbook/pb_table/table.test.js +2 -0
  65. data/app/pb_kits/playbook/pb_text_input/_text_input.tsx +1 -1
  66. data/app/pb_kits/playbook/pb_text_input/docs/_text_input_default.jsx +1 -1
  67. data/app/pb_kits/playbook/pb_textarea/_textarea.tsx +45 -27
  68. data/app/pb_kits/playbook/pb_textarea/index.ts +3 -3
  69. data/app/pb_kits/playbook/pb_time/_time.tsx +3 -3
  70. data/app/pb_kits/playbook/pb_time_range_inline/_time_range_inline.tsx +1 -1
  71. data/app/pb_kits/playbook/pb_timeline/_item.tsx +1 -1
  72. data/app/pb_kits/playbook/pb_timeline/_timeline.tsx +1 -1
  73. data/app/pb_kits/playbook/pb_title_detail/_title_detail.tsx +10 -10
  74. data/app/pb_kits/playbook/pb_toggle/_toggle.tsx +1 -1
  75. data/app/pb_kits/playbook/pb_tooltip/_tooltip.tsx +2 -2
  76. data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.tsx +1 -2
  77. data/app/pb_kits/playbook/pb_treemap_chart/treemapChart.test.js +2 -0
  78. data/app/pb_kits/playbook/pb_typeahead/_typeahead.tsx +2 -2
  79. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_multi_kit.html.erb +1 -1
  80. data/app/pb_kits/playbook/pb_typeahead/typeahead.rb +1 -0
  81. data/app/pb_kits/playbook/pb_user/_user.tsx +1 -1
  82. data/app/pb_kits/playbook/pb_user_badge/_user_badge.tsx +6 -6
  83. data/app/pb_kits/playbook/pb_user_badge/badges/million-dollar.tsx +236 -235
  84. data/app/pb_kits/playbook/pb_user_badge/badges/veteran.tsx +1 -1
  85. data/app/pb_kits/playbook/pb_walkthrough/_walkthrough.tsx +68 -63
  86. data/app/pb_kits/playbook/pb_weekday_stacked/_weekday_stacked.tsx +1 -1
  87. data/app/pb_kits/playbook/utilities/_positioning.scss +26 -15
  88. data/dist/chunks/{_typeahead-COUJ88EA.js → _typeahead-eBLGedV-.js} +2 -2
  89. data/dist/chunks/{_weekday_stacked-BZu4elIU.js → _weekday_stacked-Bw_5qEUW.js} +2 -2
  90. data/dist/chunks/lazysizes-B7xYodB-.js +1 -0
  91. data/dist/chunks/{lib-Bf_E03gc.js → lib-BE0Z3F7x.js} +1 -1
  92. data/dist/chunks/{pb_form_validation-D0dhqeN2.js → pb_form_validation-TzZQ0Flx.js} +1 -1
  93. data/dist/chunks/vendor.js +1 -1
  94. data/dist/playbook-doc.js +1 -1
  95. data/dist/playbook-rails-react-bindings.js +1 -1
  96. data/dist/playbook-rails.js +1 -1
  97. data/dist/playbook.css +1 -1
  98. data/lib/playbook/version.rb +2 -2
  99. metadata +17 -8
  100. data/app/pb_kits/playbook/pb_online_status/_online_status_mixins.scss +0 -32
  101. data/dist/chunks/lazysizes-DHz07jlL.js +0 -1
@@ -9,10 +9,10 @@
9
9
  justify-content: flex-start;
10
10
 
11
11
  path {
12
- &.suble_star_dark {
12
+ &.subtle_star_dark {
13
13
  fill: $text_dk_default;
14
14
  }
15
- &.suble_star_light {
15
+ &.subtle_star_light {
16
16
  fill: $text_lt_default;
17
17
  }
18
18
  &.outline_star_dark {
@@ -49,9 +49,10 @@
49
49
 
50
50
  $star-styles: (
51
51
  yellow_star: (color: $yellow),
52
- primary_star: (color: $royal),
53
- suble_star_light: (color: $text_lt_default),
54
- suble_star_dark: (color: $text_dk_default),
52
+ primary_star_light: (color: $royal),
53
+ primary_star_dark: (color: $active_dark),
54
+ subtle_star_light: (color: $text_lt_default),
55
+ subtle_star_dark: (color: $text_dk_default),
55
56
  empty_star_dark: (color: $border_dark),
56
57
  empty_star_light: (color: $border_light),
57
58
  outline_empty_star_dark: (color: transparent),
@@ -111,13 +112,89 @@
111
112
  }
112
113
  }
113
114
  }
115
+
116
+ // Interactivity
117
+ path {
118
+ transition: fill 0.2s
119
+ }
120
+ // Rails selected styles
121
+ .interactive-star-icon {
122
+ cursor: pointer;
123
+ }
114
124
  .yellow-star-selected {
115
125
  color: $yellow;
116
126
  }
117
127
  .primary-star-selected {
118
128
  color: $royal
119
129
  }
120
- .suble-star-selected {
130
+ .subtle-star-selected {
121
131
  color: $text_lt_default;
122
132
  }
133
+ &.dark {
134
+ .primary-star-selected {
135
+ color: $active_dark;
136
+ }
137
+ .subtle-star-selected {
138
+ color: $text_dk_default;
139
+ }
140
+ }
141
+ // React selected styles
142
+ &.star-selected {
143
+ path {
144
+ animation: growColor 0.3s forwards;
145
+ }
146
+ .yellow-star-selected {
147
+ color: $yellow;
148
+ }
149
+ .primary-star-selected {
150
+ color: $royal;
151
+ }
152
+ .subtle-star-selected {
153
+ color: $text_lt_default;
154
+ }
155
+ &.dark {
156
+ .primary-star-selected {
157
+ color: $active_dark;
158
+ }
159
+ .subtle-star-selected {
160
+ color: $text_dk_default;
161
+ }
162
+ }
163
+ }
164
+ // Hover styles
165
+ .star-hovered {
166
+ path {
167
+ fill: mix($primary, $white, 20%);
168
+ }
169
+ }
170
+ &.dark{
171
+ .star-hovered {
172
+ path {
173
+ fill: mix($active_dark, $bg_dark, 50%);
174
+ }
175
+ }
176
+ }
177
+ // Focus styles
178
+ .pb_custom_icon {
179
+ &:focus {
180
+ outline: none;
181
+ }
182
+ &:focus-visible {
183
+ border-radius: 2px;
184
+ outline: 1px solid $primary;
185
+ outline-offset: 2px;
186
+ }
187
+ }
188
+ &.dark {
189
+ .pb_custom_icon {
190
+ &:focus {
191
+ outline: none;
192
+ }
193
+ &:focus-visible {
194
+ border-radius: 2px;
195
+ outline: 1px solid $active_dark;
196
+ outline-offset: 2px;
197
+ }
198
+ }
199
+ }
123
200
  }
@@ -6,6 +6,7 @@ examples:
6
6
  - star_rating_hide: Layout Options
7
7
  - star_rating_number_config: Number Config
8
8
  - star_rating_size_options: Size Options
9
+ - star_rating_interactive: Interactive
9
10
 
10
11
  react:
11
12
  - star_rating_default: Default
@@ -13,4 +14,5 @@ examples:
13
14
  - star_rating_background_options: Background Options
14
15
  - star_rating_hide: Layout Options
15
16
  - star_rating_number_config: Number Config
16
- - star_rating_size_options: Size Options
17
+ - star_rating_size_options: Size Options
18
+ - star_rating_interactive: Interactive
@@ -14,6 +14,29 @@ export default class PbStarRating extends PbEnhancedElement {
14
14
  this.updateStarColors(clickedStarId);
15
15
  this.updateHiddenInputValue(clickedStarId);
16
16
  });
17
+
18
+ document.querySelectorAll(STAR_RATING_SELECTOR).forEach(star => {
19
+ star.addEventListener("mouseenter", (event) => {
20
+ const hoveredStarId = event.currentTarget.id
21
+ this.updateStarHoverColors(hoveredStarId);
22
+ })
23
+
24
+ star.addEventListener("mouseleave", () => {
25
+ this.removeStarHoverColors();
26
+ })
27
+
28
+ star.addEventListener("keydown", (event) => {
29
+ if (event.key === 'Enter' || event.key === ' ') {
30
+ event.preventDefault();
31
+ this.handleStarClick(star.id);
32
+ }
33
+ })
34
+ })
35
+ }
36
+
37
+ handleStarClick(starId) {
38
+ this.updateStarColors(starId);
39
+ this.updateHiddenInputValue(starId);
17
40
  }
18
41
 
19
42
  updateStarColors(clickedStarId) {
@@ -27,16 +50,21 @@ export default class PbStarRating extends PbEnhancedElement {
27
50
  if (starId <= clickedStarId) {
28
51
  if (star.classList.contains("yellow_star")) {
29
52
  icon.classList.add("yellow-star-selected");
30
- } else if (star.classList.contains("primary_star")) {
53
+ } else if (star.classList.contains("primary_star_light")) {
31
54
  icon.classList.add("primary-star-selected");
32
- } else if (star.classList.contains("suble_star_light")) {
33
- icon.classList.add("suble-star-selected");
55
+ } else if (star.classList.contains("primary_star_dark")) {
56
+ icon.classList.add("primary-star-selected");
57
+ } else if (star.classList.contains("subtle_star_light")) {
58
+ icon.classList.add("subtle-star-selected");
59
+ } else if (star.classList.contains("subtle_star_dark")) {
60
+ icon.classList.add("subtle-star-selected");
34
61
  } else {
35
62
  icon.classList.add("yellow-star-selected");
36
63
  }
37
64
  } else {
38
- icon.classList.remove("yellow-star-selected", "primary-star-selected", "suble-star-selected");
65
+ icon.classList.remove("yellow-star-selected", "primary-star-selected", "subtle-star-selected");
39
66
  }
67
+ icon.classList.remove("star-hovered");
40
68
  }
41
69
  });
42
70
  }
@@ -47,4 +75,45 @@ export default class PbStarRating extends PbEnhancedElement {
47
75
  hiddenInput.value = value;
48
76
  }
49
77
  }
78
+
79
+ updateStarHoverColors(hoveredStarId) {
80
+ const allStars = document.querySelectorAll(STAR_RATING_SELECTOR);
81
+
82
+ allStars.forEach(star => {
83
+ const starId = star.id;
84
+ const icon = star.querySelector(".interactive-star-icon");
85
+
86
+ if (icon) {
87
+ if (starId <= hoveredStarId) {
88
+ if (!icon.classList.contains("yellow-star-selected") &&
89
+ !icon.classList.contains("primary-star-selected") &&
90
+ !icon.classList.contains("subtle-star-selected")) {
91
+ icon.classList.add("star-hovered");
92
+ }
93
+ } else {
94
+ icon.classList.remove("star-hovered");
95
+ }
96
+ }
97
+ });
98
+ }
99
+
100
+
101
+ removeStarHoverColors() {
102
+ const allStars = document.querySelectorAll(STAR_RATING_SELECTOR);
103
+
104
+ allStars.forEach(star => {
105
+ const icon = star.querySelector(".interactive-star-icon");
106
+ if (icon) {
107
+ if (!icon.classList.contains("yellow-star-selected") &&
108
+ !icon.classList.contains("primary-star-selected") &&
109
+ !icon.classList.contains("subtle-star-selected")) {
110
+ icon.classList.remove("star-hovered");
111
+ }
112
+ }
113
+ });
114
+ }
115
+
116
+ isStarSelected() {
117
+ return document.querySelectorAll(".yellow-star-selected, .primary-star-selected, .subtle-star-selected").length > 0;
118
+ }
50
119
  }
@@ -47,7 +47,7 @@
47
47
  <%= pb_rails("flex", props: { orientation: "row" }) do %>
48
48
  <% object.denominator.times do |index| %>
49
49
  <div data-pb-star-rating id="<%= index + 1 %>" class="<%= star_color %>">
50
- <%= pb_rails("icon", props: { classname: "#{background_star_color} pb_star_#{size} interactive-star-icon", custom_icon: Playbook::Engine.root.join(background_star_path)} ) %>
50
+ <%= pb_rails("icon", props: { classname: "#{background_star_color} pb_star_#{size} interactive-star-icon", custom_icon: Playbook::Engine.root.join(background_star_path), tabindex: 0 } ) %>
51
51
  </div>
52
52
  <% end %>
53
53
  <% end %>
@@ -52,9 +52,9 @@ module Playbook
52
52
  when "yellow"
53
53
  "yellow_star"
54
54
  when "primary"
55
- "primary_star"
55
+ dark ? "primary_star_dark" : "primary_star_light"
56
56
  when "subtle"
57
- dark ? "suble_star_dark" : "suble_star_light"
57
+ dark ? "subtle_star_dark" : "subtle_star_light"
58
58
  end
59
59
  end
60
60
 
@@ -53,7 +53,11 @@ const starOutline = (
53
53
  )
54
54
 
55
55
  export const getStarIconObject = (backgroundType: string, color: string, dark: boolean, size: string) => {
56
- const colorClassName = color === "subtle" ? (dark ? "suble_star_dark" : "suble_star_light") : `${color}_star`
56
+ const colorClassName = color === "subtle"
57
+ ? (dark ? "suble_star_dark" : "suble_star_light")
58
+ : color === "primary"
59
+ ? (dark ? "primary_star_dark" : "primary_star_light")
60
+ : `${color}_star`
57
61
  const backgroundClassName = backgroundType === "outline" ? (dark ? "outline_empty_star_dark" : "outline_empty_star_light") : (dark ? "empty_star_dark" : "empty_star_light")
58
62
 
59
63
  return {
@@ -23,40 +23,69 @@ const StarRatingInteractive = (props: StarRatingInteractiveProps) => {
23
23
  size,
24
24
  } = props
25
25
  const [interactiveStarValue, setInteractiveStarValue] = useState(0)
26
+ const [hoverStarValue, setHoverStarValue] = useState<number | null>(null)
26
27
  const starIcon = getStarIconObject(backgroundType, colorOption, dark, size)
27
28
 
28
29
  const handleOnClick = (interactiveStarValue: number) => {
29
30
  setInteractiveStarValue(interactiveStarValue)
30
31
  onClick && onClick(interactiveStarValue)
31
32
  }
33
+ const handleMouseEnter = (value: number) => {
34
+ setHoverStarValue(value);
35
+ }
36
+ const handleMouseLeave = () => {
37
+ setHoverStarValue(null);
38
+ }
39
+ const handleOnKeyDown = (event: React.KeyboardEvent<HTMLDivElement>, starIndex: number) => {
40
+ if (event.key === 'Enter' || event.key === ' ') {
41
+ event.preventDefault()
42
+ handleOnClick(starIndex)
43
+ }
44
+ }
32
45
 
33
46
  return (
34
47
  <Flex className="star_flex_area">
35
- {[...Array(denominator)].map((_, index) => (
36
- <React.Fragment key={index}>
37
- {index + 1 <= interactiveStarValue && (
48
+ {[...Array(denominator)].map((_, index) => {
49
+ const starIndex = index + 1
50
+ const isFilled = starIndex <= interactiveStarValue
51
+ const isHovered = hoverStarValue !== null && starIndex > interactiveStarValue && starIndex <= hoverStarValue
52
+
53
+ const baseClass = dark
54
+ ? starIcon[backgroundType].className.replace("empty_star_light", "empty_star_dark")
55
+ : starIcon[backgroundType].className
56
+
57
+ let starClass = baseClass
58
+ if (isFilled) {
59
+ starClass = starClass.replace(/(empty_star_light|empty_star_dark)/, '')
60
+ starClass += ` ${starIcon[colorOption].className}`
61
+ }
62
+ if (isHovered) {
63
+ starClass += " star-hovered"
64
+ }
65
+ if (isFilled && starIndex === interactiveStarValue) {
66
+ starClass += " star-selected"
67
+ }
68
+
69
+ return (
70
+ <div
71
+ key={index}
72
+ onKeyDown={(event) => handleOnKeyDown(event, starIndex)}
73
+ >
38
74
  <Icon
39
- className={starIcon[colorOption].className}
75
+ className={starClass.trim()}
40
76
  cursor="pointer"
41
- customIcon={starIcon[colorOption].icon as unknown as { [key: string]: SVGElement }}
42
- htmlOptions={{ onClick: () => handleOnClick(index + 1) }}
77
+ customIcon={starIcon[backgroundType].icon as unknown as { [key: string]: SVGElement }}
78
+ htmlOptions={{
79
+ onClick: () => handleOnClick(starIndex),
80
+ onMouseEnter: () => handleMouseEnter(starIndex),
81
+ onMouseLeave: () => handleMouseLeave(),
82
+ }}
43
83
  icon=""
84
+ tabIndex={0}
44
85
  />
45
- )}
46
-
47
- {index + 1 > interactiveStarValue && (
48
- <React.Fragment key={index}>
49
- <Icon
50
- className={starIcon[backgroundType].className}
51
- cursor="pointer"
52
- customIcon={starIcon[backgroundType].icon as unknown as { [key: string]: SVGElement }}
53
- htmlOptions={{ onClick: () => handleOnClick(index + 1) }}
54
- icon=""
55
- />
56
- </React.Fragment>
57
- )}
58
- </React.Fragment>
59
- ))}
86
+ </div>
87
+ );
88
+ })}
60
89
  </Flex>
61
90
  )
62
91
  }
@@ -33,7 +33,7 @@ type TableProps = {
33
33
  verticalBorder?: boolean,
34
34
  } & GlobalProps
35
35
 
36
- const Table = (props: TableProps) => {
36
+ const Table = (props: TableProps): React.ReactElement => {
37
37
  const {
38
38
  aria = {},
39
39
  children,
@@ -1,19 +1,19 @@
1
1
  import PbEnhancedElement from '../pb_enhanced_element'
2
2
 
3
3
  export default class PbTable extends PbEnhancedElement {
4
- static get selector() {
4
+ static get selector(): string {
5
5
  return '.table-responsive-collapse'
6
6
  }
7
7
 
8
- connect() {
8
+ connect(): void {
9
9
  const tables = document.querySelectorAll('.table-responsive-collapse');
10
10
 
11
11
  // Each Table
12
12
  [].forEach.call(tables, (table: HTMLTableElement) => {
13
13
  // Header Titles
14
- let headers: string[] = [];
14
+ const headers: string[] = [];
15
15
  [].forEach.call(table.querySelectorAll('th'), (header: HTMLTableCellElement) => {
16
- let colSpan = header.colSpan
16
+ const colSpan = header.colSpan
17
17
  for (let i = 0; i < colSpan; i++) {
18
18
  headers.push(header.textContent.replace(/\r?\n|\r/, ''));
19
19
  }
@@ -17,7 +17,7 @@ type TableBodyPropTypes = {
17
17
  tag?: "table" | "div";
18
18
  };
19
19
 
20
- const TableBody = (props: TableBodyPropTypes) => {
20
+ const TableBody = (props: TableBodyPropTypes): React.ReactElement => {
21
21
  const {
22
22
  aria = {},
23
23
  children,
@@ -18,7 +18,7 @@ type TableCellPropTypes = {
18
18
  text?: string
19
19
  };
20
20
 
21
- const TableCell = (props: TableCellPropTypes) => {
21
+ const TableCell = (props: TableCellPropTypes): React.ReactElement => {
22
22
  const {
23
23
  aria = {},
24
24
  children,
@@ -17,7 +17,7 @@ type TableHeadPropTypes = {
17
17
  tag?: "table" | "div";
18
18
  };
19
19
 
20
- const TableHead = (props: TableHeadPropTypes) => {
20
+ const TableHead = (props: TableHeadPropTypes): React.ReactElement => {
21
21
  const {
22
22
  aria = {},
23
23
  children,
@@ -18,7 +18,7 @@ type TableHeaderPropTypes = {
18
18
  text?: string;
19
19
  };
20
20
 
21
- const TableHeader = (props: TableHeaderPropTypes) => {
21
+ const TableHeader = (props: TableHeaderPropTypes): React.ReactElement => {
22
22
  const {
23
23
  aria = {},
24
24
  children,
@@ -19,7 +19,7 @@ type TableRowPropTypes = {
19
19
  tag?: "table" | "div";
20
20
  };
21
21
 
22
- const TableRow = (props: TableRowPropTypes) => {
22
+ const TableRow = (props: TableRowPropTypes): React.ReactElement => {
23
23
  const {
24
24
  aria = {},
25
25
  children,
@@ -1,3 +1,5 @@
1
+ /* eslint-disable react/no-multi-comp */
2
+
1
3
  import React from "react";
2
4
  import { ensureAccessible, renderKit, render, screen } from "../utilities/test-utils"
3
5
 
@@ -107,7 +107,7 @@ const TextInput = (props: TextInputProps, ref: React.LegacyRef<HTMLInputElement>
107
107
  required={required}
108
108
  type={type}
109
109
  value={value}
110
- />)
110
+ />)
111
111
  )
112
112
 
113
113
  const addOnInput = (
@@ -5,12 +5,12 @@ import TextInput from '../../pb_text_input/_text_input'
5
5
  import Title from '../../pb_title/_title'
6
6
 
7
7
  const TextInputDefault = (props) => {
8
+ const [firstName, setFirstName] = useState('')
8
9
  const handleOnChangeFirstName = ({ target }) => {
9
10
  setFirstName(target.value)
10
11
  }
11
12
  const ref = React.createRef()
12
13
 
13
- const [firstName, setFirstName] = useState('')
14
14
  const [formFields, setFormFields] = useState({
15
15
  firstName: 'Jane',
16
16
  lastName: 'Doe',
@@ -52,14 +52,15 @@ const Textarea = ({
52
52
  label,
53
53
  maxCharacters,
54
54
  name,
55
+ // eslint-disable-next-line @typescript-eslint/no-empty-function
55
56
  onChange = () => {},
56
57
  placeholder,
57
58
  required,
58
59
  rows = 4,
59
60
  value,
60
61
  ...props
61
- }: TextareaProps, ref: any) => {
62
- ref = useRef<HTMLTextAreaElement>(null)
62
+ }: TextareaProps) => {
63
+ const ref = useRef<HTMLTextAreaElement>(null)
63
64
  useEffect(() => {
64
65
  if (ref.current && resize === 'auto') {
65
66
  PbTextarea.addMatch(ref.current)
@@ -71,58 +72,75 @@ const Textarea = ({
71
72
  const resizeClass = `resize_${resize}`
72
73
  const classes = classnames('pb_textarea_kit', errorClass, inlineClass, resizeClass, globalProps(props), className)
73
74
  const noCount = typeof characterCount !== 'undefined'
74
- const ariaProps: {[key: string]: any} = buildAriaProps(aria)
75
- const dataProps: {[key: string]: any} = buildDataProps(data)
75
+ const ariaProps: {[key: string]: string} = buildAriaProps(aria)
76
+ const dataProps: {[key: string]: string} = buildDataProps(data)
76
77
  const htmlProps = buildHtmlProps(htmlOptions)
77
- const characterCounter = () => {
78
- return maxCharacters && characterCount ? `${checkIfZero(characterCount)} / ${maxCharacters}` : `${checkIfZero(characterCount)}`
79
- }
80
-
81
78
  const checkIfZero = (characterCount: string | number) => {
82
79
  return characterCount == 0 ? characterCount.toString() : characterCount
83
80
  }
81
+ const characterCounter = () => {
82
+ return maxCharacters && characterCount ? `${checkIfZero(characterCount)} / ${maxCharacters}` : `${checkIfZero(characterCount)}`
83
+ }
84
84
 
85
85
  return (
86
86
  <div
87
- {...ariaProps}
88
- {...dataProps}
89
- {...htmlProps}
90
- className={classes}
87
+ {...ariaProps}
88
+ {...dataProps}
89
+ {...htmlProps}
90
+ className={classes}
91
91
  >
92
92
  <Caption text={label} />
93
93
  {children || (
94
94
  <textarea
95
- className="pb_textarea_kit"
96
- disabled={disabled}
97
- name={name}
98
- onChange={onChange}
99
- placeholder={placeholder}
100
- ref={ref}
101
- required={required}
102
- rows={rows}
103
- value={value}
104
- {...props}
95
+ className="pb_textarea_kit"
96
+ disabled={disabled}
97
+ name={name}
98
+ onChange={onChange}
99
+ placeholder={placeholder}
100
+ ref={ref}
101
+ required={required}
102
+ rows={rows}
103
+ value={value}
104
+ {...props}
105
105
  />
106
106
  )}
107
107
 
108
108
  {error ? (
109
109
  <>
110
110
  {characterCount ? (
111
- <Flex spacing="between" vertical="center">
111
+ <Flex
112
+ spacing="between"
113
+ vertical="center"
114
+ >
112
115
  <FlexItem>
113
- <Body margin="none" status="negative" text={error} />
116
+ <Body
117
+ margin="none"
118
+ status="negative"
119
+ text={error}
120
+ />
114
121
  </FlexItem>
115
122
  <FlexItem>
116
- <Caption margin="none" size="xs" text={characterCounter()} />
123
+ <Caption
124
+ margin="none"
125
+ size="xs"
126
+ text={characterCounter()}
127
+ />
117
128
  </FlexItem>
118
129
  </Flex>
119
130
  ) : (
120
- <Body status="negative" text={error} />
131
+ <Body
132
+ status="negative"
133
+ text={error}
134
+ />
121
135
  )}
122
136
  </>
123
137
  ) : (
124
138
  noCount && (
125
- <Caption margin="none" size="xs" text={characterCounter()} />
139
+ <Caption
140
+ margin="none"
141
+ size="xs"
142
+ text={characterCounter()}
143
+ />
126
144
  )
127
145
  )}
128
146
  </div>
@@ -3,16 +3,16 @@ import PbEnhancedElement from '../pb_enhanced_element'
3
3
  export default class PbTextarea extends PbEnhancedElement {
4
4
  style: {[key: string]: string}
5
5
  scrollHeight: string
6
- static get selector() {
6
+ static get selector(): string {
7
7
  return '.resize_auto textarea'
8
8
  }
9
9
 
10
- onInput() {
10
+ onInput(): void {
11
11
  this.style.height = 'auto'
12
12
  this.style.height = (this.scrollHeight) + 'px'
13
13
  }
14
14
 
15
- connect() {
15
+ connect(): void {
16
16
  this.element.setAttribute('style', 'height:' + (this.element.scrollHeight) + 'px;overflow-y:hidden;')
17
17
  this.element.addEventListener('input', this.onInput, false)
18
18
  }
@@ -24,7 +24,7 @@ type TimeProps = {
24
24
  unstyled?: boolean;
25
25
  } & GlobalProps
26
26
 
27
- const Time = (props: TimeProps) => {
27
+ const Time = (props: TimeProps): React.ReactElement => {
28
28
  const {
29
29
  align,
30
30
  className,
@@ -47,8 +47,8 @@ const Time = (props: TimeProps) => {
47
47
 
48
48
  return (
49
49
  <div
50
- {...htmlProps}
51
- className={classes}
50
+ {...htmlProps}
51
+ className={classes}
52
52
  >
53
53
  {showIcon && (
54
54
  unstyled
@@ -36,7 +36,7 @@ const dateTimeIso = (dateValue: Date) => {
36
36
  return DateTime.toIso(dateValue)
37
37
  }
38
38
 
39
- const TimeRangeInline = (props: TimeRangeInlineProps) => {
39
+ const TimeRangeInline = (props: TimeRangeInlineProps): React.ReactElement => {
40
40
  const {
41
41
  aria = {},
42
42
  className,
@@ -26,7 +26,7 @@ const TimelineItem = ({
26
26
  iconColor = 'default',
27
27
  lineStyle = 'solid',
28
28
  ...props
29
- }: ItemProps) => {
29
+ }: ItemProps): React.ReactElement => {
30
30
  const timelineItemCss = buildCss('pb_timeline_item_kit', lineStyle)
31
31
 
32
32
  const htmlProps = buildHtmlProps(htmlOptions)
@@ -27,7 +27,7 @@ const Timeline = ({
27
27
  orientation = 'horizontal',
28
28
  showDate = false,
29
29
  ...props
30
- }: TimelineProps) => {
30
+ }: TimelineProps): React.ReactElement => {
31
31
  const ariaProps = buildAriaProps(aria)
32
32
  const dataProps = buildDataProps(data)
33
33
  const htmlProps = buildHtmlProps(htmlOptions)