playbook_ui 15.3.0.pre.alpha.PLAY2601advancedtablecustomcellmultiheaderrails12030 → 15.3.0.pre.alpha.PLAY2624stickyColumnnullerror12217

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 (71) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_advanced_table/Components/RegularTableView.tsx +2 -1
  3. data/app/pb_kits/playbook/pb_advanced_table/Utilities/RowUtils.ts +1 -1
  4. data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +4 -4
  5. data/app/pb_kits/playbook/pb_advanced_table/advanced_table.test.jsx +68 -5
  6. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_background_control_rails.html.erb +4 -0
  7. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_background_control_rails.md +1 -1
  8. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling.jsx +3 -1
  9. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling.md +2 -0
  10. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers.jsx +1 -1
  11. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_rails.html.erb +1 -0
  12. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_rails.md +2 -0
  13. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_padding_control.jsx +9 -1
  14. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_padding_control.md +1 -1
  15. data/app/pb_kits/playbook/pb_advanced_table/flat_advanced_table.js +2 -2
  16. data/app/pb_kits/playbook/pb_advanced_table/index.js +7 -7
  17. data/app/pb_kits/playbook/pb_advanced_table/scss_partials/advanced_table_sticky_mixin.scss +2 -2
  18. data/app/pb_kits/playbook/pb_advanced_table/table_row.rb +32 -3
  19. data/app/pb_kits/playbook/pb_background/background.html.erb +10 -2
  20. data/app/pb_kits/playbook/pb_badge/_badge.tsx +4 -1
  21. data/app/pb_kits/playbook/pb_badge/badge.test.js +13 -0
  22. data/app/pb_kits/playbook/pb_currency/_currency.tsx +20 -7
  23. data/app/pb_kits/playbook/pb_currency/currency.rb +35 -8
  24. data/app/pb_kits/playbook/pb_currency/currency.test.js +47 -0
  25. data/app/pb_kits/playbook/pb_currency/docs/_currency_variants.html.erb +1 -1
  26. data/app/pb_kits/playbook/pb_currency/docs/_currency_variants.jsx +1 -1
  27. data/app/pb_kits/playbook/pb_currency/docs/_currency_variants.md +1 -0
  28. data/app/pb_kits/playbook/pb_date_picker/date_picker_helper.ts +16 -4
  29. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_and_dropdown_range.jsx +38 -0
  30. data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_and_dropdown_range.md +14 -0
  31. data/app/pb_kits/playbook/pb_date_picker/docs/example.yml +2 -1
  32. data/app/pb_kits/playbook/pb_date_picker/docs/index.js +2 -1
  33. data/app/pb_kits/playbook/pb_dropdown/_dropdown.scss +1 -0
  34. data/app/pb_kits/playbook/pb_dropdown/_dropdown.tsx +111 -6
  35. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_quickpick.jsx +18 -0
  36. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_quickpick.md +4 -0
  37. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_quickpick_default_dates.jsx +18 -0
  38. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_quickpick_default_dates.md +1 -0
  39. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_quickpick_range_end.jsx +19 -0
  40. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_quickpick_range_end.md +1 -0
  41. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_quickpick_with_date_pickers.jsx +38 -0
  42. data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_quickpick_with_date_pickers.md +14 -0
  43. data/app/pb_kits/playbook/pb_dropdown/docs/example.yml +5 -0
  44. data/app/pb_kits/playbook/pb_dropdown/docs/index.js +5 -1
  45. data/app/pb_kits/playbook/pb_dropdown/dropdown.test.jsx +148 -2
  46. data/app/pb_kits/playbook/pb_dropdown/quickpick/index.ts +60 -0
  47. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_auto_close.html.erb +15 -1
  48. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_multi_line.html.erb +9 -8
  49. data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_positions.html.erb +11 -10
  50. data/app/pb_kits/playbook/pb_form/pb_form_validation.js +44 -11
  51. data/app/pb_kits/playbook/pb_form_pill/_form_pill.tsx +1 -1
  52. data/app/pb_kits/playbook/pb_phone_number_input/_phone_number_input.tsx +110 -17
  53. data/app/pb_kits/playbook/pb_table/_table.tsx +28 -26
  54. data/app/pb_kits/playbook/pb_typeahead/_typeahead.scss +7 -0
  55. data/app/pb_kits/playbook/pb_typeahead/_typeahead.test.jsx +64 -1
  56. data/app/pb_kits/playbook/pb_typeahead/components/MultiValue.tsx +33 -1
  57. data/dist/chunks/{_line_graph-CqE0-dq5.js → _line_graph-C-AuMGN2.js} +1 -1
  58. data/dist/chunks/_typeahead--38pnHwS.js +6 -0
  59. data/dist/chunks/_weekday_stacked-Db5x2Q33.js +37 -0
  60. data/dist/chunks/{lib-CGxXTQ75.js → lib-BXBHAZMY.js} +1 -1
  61. data/dist/chunks/pb_form_validation-BNfSnIUF.js +1 -0
  62. data/dist/chunks/vendor.js +1 -1
  63. data/dist/playbook-doc.js +1 -1
  64. data/dist/playbook-rails-react-bindings.js +1 -1
  65. data/dist/playbook-rails.js +1 -1
  66. data/dist/playbook.css +1 -1
  67. data/lib/playbook/version.rb +1 -1
  68. metadata +19 -7
  69. data/dist/chunks/_typeahead-3ZAbZUqU.js +0 -6
  70. data/dist/chunks/_weekday_stacked-BFB3mjtE.js +0 -37
  71. data/dist/chunks/pb_form_validation-DebqlUKZ.js +0 -1
@@ -133,3 +133,50 @@ test('handles negative amounts correctly', () => {
133
133
  expect(screen.getByTestId('test-negative-no-symbol')).toHaveTextContent('-400.50')
134
134
  expect(screen.getByTestId('test-negative-medium-size')).toHaveTextContent('$-500.55')
135
135
  })
136
+
137
+ test('handles numeric amounts correctly', () => {
138
+ render(
139
+ <>
140
+ <Currency
141
+ amount={320}
142
+ data={{ testid: 'test-numeric-default' }}
143
+ />
144
+ <Currency
145
+ abbreviate
146
+ amount={3200000}
147
+ data={{ testid: 'test-numeric-millions' }}
148
+ />
149
+ <Currency
150
+ amount={123456.78}
151
+ commaSeparator
152
+ data={{ testid: 'test-numeric-comma-decimals' }}
153
+ />
154
+ <Currency
155
+ amount={400.50}
156
+ data={{ testid: 'test-numeric-no-symbol' }}
157
+ symbol=""
158
+ />
159
+ <Currency
160
+ amount={500.55}
161
+ data={{ testid: 'test-numeric-medium-size' }}
162
+ size="md"
163
+ />
164
+ <Currency
165
+ amount={-600.70}
166
+ data={{ testid: 'test-numeric-negative' }}
167
+ />
168
+ <Currency
169
+ amount={0.00}
170
+ data={{ testid: 'test-numeric-null' }}
171
+ />
172
+ </>
173
+ )
174
+
175
+ expect(screen.getByTestId('test-numeric-default')).toHaveTextContent('$320')
176
+ expect(screen.getByTestId('test-numeric-millions')).toHaveTextContent('$3.2M')
177
+ expect(screen.getByTestId('test-numeric-comma-decimals')).toHaveTextContent('$123,456.78')
178
+ expect(screen.getByTestId('test-numeric-no-symbol')).toHaveTextContent('400.50')
179
+ expect(screen.getByTestId('test-numeric-medium-size')).toHaveTextContent('$500.55')
180
+ expect(screen.getByTestId('test-numeric-negative')).toHaveTextContent('-$600.70')
181
+ expect(screen.getByTestId('test-numeric-null')).toHaveTextContent('$.00')
182
+ })
@@ -7,7 +7,7 @@
7
7
  }) %>
8
8
 
9
9
  <%= pb_rails("currency", props: {
10
- amount: "342",
10
+ amount: 342,
11
11
  label: "Light",
12
12
  margin_bottom: "md",
13
13
  size: "sm",
@@ -14,7 +14,7 @@ const CurrencyVariants = (props) => {
14
14
  {...props}
15
15
  />
16
16
  <Currency
17
- amount="342"
17
+ amount={342}
18
18
  label="Light"
19
19
  marginBottom="md"
20
20
  size="sm"
@@ -0,0 +1 @@
1
+ **NOTE:** The value passed into the `amount` prop can be either a string or numeric value.
@@ -350,8 +350,14 @@ const datePickerHelper = (config: DatePickerConfig, scrollContainer: string | HT
350
350
  if (syncStartWith) {
351
351
  picker.config.onClose.push((selectedDates: string) => {
352
352
  if (selectedDates?.length) {
353
- const quickpick = (document.querySelector(`#${syncStartWith}`) as HTMLElement & { _flatpickr?: any })?._flatpickr;
354
- quickpick?.clear();
353
+ const element = document.querySelector(`#${syncStartWith}`) as any;
354
+ // Check if it's a Dropdown QuickPick (has _dropdownRef) or DatePicker QuickPick (has _flatpickr)
355
+ if (element?._dropdownRef?.current) {
356
+ element._dropdownRef.current.clearSelected();
357
+ } else {
358
+ const quickpick = element?._flatpickr;
359
+ quickpick?.clear();
360
+ }
355
361
  }
356
362
  });
357
363
  }
@@ -360,8 +366,14 @@ const datePickerHelper = (config: DatePickerConfig, scrollContainer: string | HT
360
366
  if (syncEndWith) {
361
367
  picker.config.onClose.push((selectedDates: string) => {
362
368
  if (selectedDates?.length) {
363
- const quickpick = (document.querySelector(`#${syncEndWith}`) as HTMLElement & { _flatpickr?: any })?._flatpickr;
364
- quickpick?.clear();
369
+ const element = document.querySelector(`#${syncEndWith}`) as any;
370
+ // Check if it's a Dropdown QuickPick (has _dropdownRef) or DatePicker QuickPick (has _flatpickr)
371
+ if (element?._dropdownRef?.current) {
372
+ element._dropdownRef.current.clearSelected();
373
+ } else {
374
+ const quickpick = element?._flatpickr;
375
+ quickpick?.clear();
376
+ }
365
377
  }
366
378
  });
367
379
  }
@@ -0,0 +1,38 @@
1
+ import React from "react";
2
+ import Dropdown from "../../pb_dropdown/_dropdown";
3
+ import DatePicker from "../../pb_date_picker/_date_picker";
4
+
5
+ const DatePickerAndDropdownRange = (props) => {
6
+ return (
7
+ <>
8
+ <Dropdown
9
+ controlsEndId="end-date-picker1"
10
+ controlsStartId="start-date-picker1"
11
+ id="dropdown-as-quickpick"
12
+ label="Date Range"
13
+ marginBottom="sm"
14
+ placeholder="Select a Date Range"
15
+ variant="quickpick"
16
+ {...props}
17
+ />
18
+
19
+ <DatePicker
20
+ label="Start Date"
21
+ pickerId="start-date-picker1"
22
+ placeholder="Select a Start Date"
23
+ syncStartWith="dropdown-as-quickpick"
24
+ {...props}
25
+ />
26
+
27
+ <DatePicker
28
+ label="End Date"
29
+ pickerId="end-date-picker1"
30
+ placeholder="Select an End Date"
31
+ syncEndWith="dropdown-as-quickpick"
32
+ {...props}
33
+ />
34
+ </>
35
+ );
36
+ };
37
+
38
+ export default DatePickerAndDropdownRange;
@@ -0,0 +1,14 @@
1
+ You can link a Dropdown (`quickpick` variant) to standard DatePickers using the following props:
2
+
3
+ **For the Dropdown**:
4
+ `controlsStartId`: ID of the DatePicker that should receive the start date.
5
+
6
+ `controlsEndId`: ID of the DatePicker that should receive the end date.
7
+
8
+ When a quickpick option like “This Year” is selected, it automatically populates the linked start and end inputs.
9
+
10
+ **For the Start/End DatePickers**:
11
+ `syncStartWith`: ID of the quickpick this start date is synced to.
12
+ `syncEndWith`: ID of the quickpick this end date is synced to.
13
+
14
+ When a user manually edits the start or end date, it clears the selected quickpick to prevent conflicting values.
@@ -48,7 +48,8 @@ examples:
48
48
  - date_picker_quick_pick_custom: Custom Quick Pick Dates
49
49
  - date_picker_quick_pick_custom_override: Custom Quick Pick Dates (append to defaults)
50
50
  - date_picker_quick_pick_default_date: Range (Quick Pick w/ Default Date)
51
- - date_picker_range_pattern: Range with 2 Date Pickers and a Quick Pick
51
+ # - date_picker_range_pattern: Range with 2 Date Pickers and a Quick Pick
52
+ - date_picker_and_dropdown_range: Range with Dropdown and 2 Date Pickers
52
53
  - date_picker_format: Format
53
54
  - date_picker_disabled: Disabled Dates
54
55
  - date_picker_min_max: Min Max
@@ -26,4 +26,5 @@ export { default as DatePickerOnClose } from './_date_picker_on_close.jsx'
26
26
  export { default as DatePickerQuickPickCustom } from './_date_picker_quick_pick_custom'
27
27
  export { default as DatePickerQuickPickCustomOverride } from './_date_picker_quick_pick_custom_override'
28
28
  export { default as DatePickerQuickPickDefaultDate } from './_date_picker_quick_pick_default_date'
29
- export { default as DatePickerRangePattern } from './_date_picker_range_pattern'
29
+ export { default as DatePickerRangePattern } from './_date_picker_range_pattern'
30
+ export { default as DatePickerAndDropdownRange } from './_date_picker_and_dropdown_range.jsx'
@@ -12,6 +12,7 @@
12
12
 
13
13
  .pb_dropdown_default,
14
14
  .pb_dropdown_subtle,
15
+ .pb_dropdown_quickpick,
15
16
  .pb_dropdown_default_separators_hidden,
16
17
  .pb_dropdown_subtle_separators_hidden {
17
18
  .dropdown_wrapper {
@@ -12,6 +12,7 @@ import DropdownContext from "./context";
12
12
  import DropdownOption from "./subcomponents/DropdownOption";
13
13
  import DropdownTrigger from "./subcomponents/DropdownTrigger";
14
14
  import useDropdown from "./hooks/useDropdown";
15
+ import getQuickPickOptions from "./quickpick";
15
16
 
16
17
  import {
17
18
  separateChildComponents,
@@ -36,9 +37,12 @@ type DropdownProps = {
36
37
  label?: string;
37
38
  multiSelect?: boolean;
38
39
  onSelect?: (arg: GenericObject) => null;
39
- options: GenericObject;
40
+ options?: GenericObject;
40
41
  separators?: boolean;
41
- variant?: "default" | "subtle";
42
+ variant?: "default" | "subtle" | "quickpick";
43
+ rangeEndsToday?: boolean;
44
+ controlsStartId?: string;
45
+ controlsEndId?: string;
42
46
  activeStyle?: {
43
47
  backgroundColor?: string;
44
48
  fontColor?: string;
@@ -71,6 +75,9 @@ let Dropdown = (props: DropdownProps, ref: any): React.ReactElement | null => {
71
75
  formPillProps,
72
76
  onSelect,
73
77
  options,
78
+ rangeEndsToday = false,
79
+ controlsStartId,
80
+ controlsEndId,
74
81
  separators = true,
75
82
  variant = "default",
76
83
  activeStyle,
@@ -85,11 +92,25 @@ let Dropdown = (props: DropdownProps, ref: any): React.ReactElement | null => {
85
92
  globalProps(props),
86
93
  className
87
94
  );
95
+ // ------------- Quick Pick ---------------------------------
96
+ // Use QuickPick options when variant is "quickpick"
97
+ const dropdownOptions = variant === "quickpick"
98
+ ? getQuickPickOptions(rangeEndsToday)
99
+ : (options || []);
100
+ // ----------------------------------------------------------
88
101
 
89
102
  const [isDropDownClosed, setIsDropDownClosed, toggleDropdown] = useDropdown(isClosed);
90
103
 
91
104
  const [filterItem, setFilterItem] = useState("");
92
105
  const initialSelected = useMemo(() => {
106
+ // Handle quickpick variant with string defaultValue (e.g., "This Month")
107
+ if (variant === "quickpick" && typeof defaultValue === "string" && defaultValue) {
108
+ const matchedOption = dropdownOptions.find(
109
+ (opt: GenericObject) => opt.label?.toLowerCase() === (defaultValue as string).toLowerCase()
110
+ );
111
+ return matchedOption || {};
112
+ }
113
+
93
114
  if (multiSelect) {
94
115
  if (Array.isArray(defaultValue)) return defaultValue;
95
116
  return defaultValue && Object.keys(defaultValue).length
@@ -97,7 +118,7 @@ let Dropdown = (props: DropdownProps, ref: any): React.ReactElement | null => {
97
118
  : [];
98
119
  }
99
120
  return defaultValue || {};
100
- }, [multiSelect, defaultValue]);
121
+ }, [multiSelect, defaultValue, variant, dropdownOptions]);
101
122
 
102
123
  const [selected, setSelected] = useState<GenericObject | GenericObject[]>(
103
124
  initialSelected
@@ -151,7 +172,7 @@ let Dropdown = (props: DropdownProps, ref: any): React.ReactElement | null => {
151
172
  }, [isClosed])
152
173
 
153
174
  const blankSelectionOption: GenericObject = blankSelection ? [{ label: blankSelection, value: "" }] : [];
154
- const optionsWithBlankSelection = blankSelectionOption.concat(options);
175
+ const optionsWithBlankSelection = blankSelectionOption.concat(dropdownOptions);
155
176
 
156
177
  const availableOptions = useMemo(()=> {
157
178
  if (!multiSelect) return optionsWithBlankSelection;
@@ -203,6 +224,21 @@ let Dropdown = (props: DropdownProps, ref: any): React.ReactElement | null => {
203
224
  setFilterItem("");
204
225
  setIsDropDownClosed(true);
205
226
  onSelect && onSelect(clickedItem);
227
+
228
+ // Sync with DatePickers if this is a quickpick variant
229
+ if (variant === "quickpick" && Array.isArray(clickedItem.value)) {
230
+ const [start, end] = clickedItem.value;
231
+
232
+ if (controlsStartId) {
233
+ const startPicker = (document.querySelector(`#${controlsStartId}`) as HTMLElement & { _flatpickr?: any })?._flatpickr;
234
+ startPicker?.setDate(start, true);
235
+ }
236
+
237
+ if (controlsEndId) {
238
+ const endPicker = (document.querySelector(`#${controlsEndId}`) as HTMLElement & { _flatpickr?: any })?._flatpickr;
239
+ endPicker?.setDate(end, true);
240
+ }
241
+ }
206
242
  }
207
243
  };
208
244
 
@@ -219,6 +255,19 @@ let Dropdown = (props: DropdownProps, ref: any): React.ReactElement | null => {
219
255
  setSelected({});
220
256
  onSelect && onSelect(null);
221
257
  setFocusedOptionIndex(-1);
258
+
259
+ // Clear linked DatePickers as well if this is a quickpick variant with controls
260
+ if (variant === "quickpick") {
261
+ if (controlsStartId) {
262
+ const startPicker = (document.querySelector(`#${controlsStartId}`) as HTMLElement & { _flatpickr?: any })?._flatpickr;
263
+ startPicker?.clear();
264
+ }
265
+
266
+ if (controlsEndId) {
267
+ const endPicker = (document.querySelector(`#${controlsEndId}`) as HTMLElement & { _flatpickr?: any })?._flatpickr;
268
+ endPicker?.clear();
269
+ }
270
+ }
222
271
  }
223
272
  };
224
273
 
@@ -232,7 +281,8 @@ let Dropdown = (props: DropdownProps, ref: any): React.ReactElement | null => {
232
281
  dark
233
282
  });
234
283
 
235
- useImperativeHandle(ref, () => ({
284
+ // Create an internal ref object that holds the imperative handle methods
285
+ const imperativeRef = useRef({
236
286
  clearSelected: () => {
237
287
  if (multiSelect) {
238
288
  setSelected([]);
@@ -244,7 +294,61 @@ let Dropdown = (props: DropdownProps, ref: any): React.ReactElement | null => {
244
294
  setFilterItem("");
245
295
  setIsDropDownClosed(true);
246
296
  },
247
- }));
297
+ });
298
+
299
+ // Update imperativeRef whenever dependencies change
300
+ // (needed for external clearing of normal Dropdown + DatePicker-synced QuickPick Dropdown)
301
+ useEffect(() => {
302
+ imperativeRef.current = {
303
+ clearSelected: () => {
304
+ if (multiSelect) {
305
+ setSelected([]);
306
+ onSelect && onSelect([]);
307
+ } else {
308
+ setSelected({});
309
+ onSelect && onSelect(null);
310
+ }
311
+ setFilterItem("");
312
+ setIsDropDownClosed(true);
313
+ },
314
+ };
315
+ }, [multiSelect, onSelect, setSelected, setFilterItem, setIsDropDownClosed]);
316
+
317
+ useImperativeHandle(ref, () => imperativeRef.current);
318
+
319
+ // Create a ref to the outer div to attach the dropdown ref for DatePicker sync
320
+ const outerDivRef = useRef<HTMLDivElement>(null);
321
+
322
+ useEffect(() => {
323
+ // Attach the ref to the DOM element so DatePicker can access it
324
+ if (outerDivRef.current && variant === "quickpick" && id) {
325
+ (outerDivRef.current as any)._dropdownRef = imperativeRef;
326
+ }
327
+ }, [variant, id]);
328
+
329
+ // Sync defaultValue with DatePickers on mount when 3 input pattern is used
330
+ useEffect(() => {
331
+ if (variant === "quickpick" && initialSelected && typeof initialSelected === "object" && !Array.isArray(initialSelected)) {
332
+ const value = initialSelected.value;
333
+
334
+ if (Array.isArray(value) && value.length === 2) {
335
+ const [start, end] = value;
336
+
337
+ // Wait for DatePickers to be initialized
338
+ setTimeout(() => {
339
+ if (controlsStartId) {
340
+ const startPicker = (document.querySelector(`#${controlsStartId}`) as HTMLElement & { _flatpickr?: any })?._flatpickr;
341
+ startPicker?.setDate(start, true);
342
+ }
343
+
344
+ if (controlsEndId) {
345
+ const endPicker = (document.querySelector(`#${controlsEndId}`) as HTMLElement & { _flatpickr?: any })?._flatpickr;
346
+ endPicker?.setDate(end, true);
347
+ }
348
+ }, 0);
349
+ }
350
+ }
351
+ }, [variant, initialSelected, controlsStartId, controlsEndId]);
248
352
 
249
353
  return (
250
354
  <div {...ariaProps}
@@ -252,6 +356,7 @@ let Dropdown = (props: DropdownProps, ref: any): React.ReactElement | null => {
252
356
  {...htmlProps}
253
357
  className={classes}
254
358
  id={id}
359
+ ref={outerDivRef}
255
360
  style={{position: "relative"}}
256
361
  >
257
362
  <DropdownContext.Provider
@@ -0,0 +1,18 @@
1
+ import React from 'react'
2
+ import Dropdown from '../../pb_dropdown/_dropdown'
3
+
4
+ const DropdownQuickpick = (props) => {
5
+
6
+ return (
7
+ <div>
8
+ <Dropdown
9
+ label="Date Range"
10
+ onSelect={(selectedItem) => console.log(selectedItem)}
11
+ variant="quickpick"
12
+ {...props}
13
+ />
14
+ </div>
15
+ )
16
+ }
17
+
18
+ export default DropdownQuickpick
@@ -0,0 +1,4 @@
1
+ The QuickPick variant provides predefined date based options when `variant="quickpick"` is used.
2
+
3
+ Open the Dropdown above to see the default options.
4
+
@@ -0,0 +1,18 @@
1
+ import React from 'react'
2
+ import Dropdown from '../../pb_dropdown/_dropdown'
3
+
4
+ const DropdownQuickpickDefaultDates = (props) => {
5
+
6
+ return (
7
+ <div>
8
+ <Dropdown
9
+ defaultValue="This Year"
10
+ label="Date Range"
11
+ variant="quickpick"
12
+ {...props}
13
+ />
14
+ </div>
15
+ )
16
+ }
17
+
18
+ export default DropdownQuickpickDefaultDates
@@ -0,0 +1 @@
1
+ To set a default value for the Dropdown, you can use the label of the range you want set as default, for example "This Year", "Today", etc.
@@ -0,0 +1,19 @@
1
+ import React from 'react'
2
+ import Dropdown from '../../pb_dropdown/_dropdown'
3
+
4
+ const DropdownQuickpickRangeEnd = (props) => {
5
+
6
+ return (
7
+ <div>
8
+ <Dropdown
9
+ label="Date Range"
10
+ onSelect={(selectedItem) => console.log(selectedItem)}
11
+ rangeEndsToday
12
+ variant="quickpick"
13
+ {...props}
14
+ />
15
+ </div>
16
+ )
17
+ }
18
+
19
+ export default DropdownQuickpickRangeEnd
@@ -0,0 +1 @@
1
+ The optional `rangeEndsToday` prop can be used with the quickpick variant to set end date on all ranges that start with 'this' to today's date. For instance, by default 'This Year' will set end day to 12/31/(current year), but if `rangeEndsToday` prop is used, end date on that range will be today's date.
@@ -0,0 +1,38 @@
1
+ import React from "react";
2
+ import Dropdown from "../../pb_dropdown/_dropdown";
3
+ import DatePicker from "../../pb_date_picker/_date_picker";
4
+
5
+ const DropdownQuickpickWithDatePickers = (props) => {
6
+ return (
7
+ <>
8
+ <Dropdown
9
+ controlsEndId="end-date-picker"
10
+ controlsStartId="start-date-picker"
11
+ id="dropdown-quickpick"
12
+ label="Range"
13
+ marginBottom="sm"
14
+ placeholder="Select a Date Range"
15
+ variant="quickpick"
16
+ {...props}
17
+ />
18
+
19
+ <DatePicker
20
+ label="Start Date"
21
+ pickerId="start-date-picker"
22
+ placeholder="Select a Start Date"
23
+ syncStartWith="dropdown-quickpick"
24
+ {...props}
25
+ />
26
+
27
+ <DatePicker
28
+ label="End Date"
29
+ pickerId="end-date-picker"
30
+ placeholder="Select an End Date"
31
+ syncEndWith="dropdown-quickpick"
32
+ {...props}
33
+ />
34
+ </>
35
+ );
36
+ };
37
+
38
+ export default DropdownQuickpickWithDatePickers;
@@ -0,0 +1,14 @@
1
+ You can link a Dropdown (`quickpick` variant) to standard DatePickers using the following props:
2
+
3
+ **For the Dropdown**:
4
+ `controlsStartId`: ID of the DatePicker that should receive the start date.
5
+
6
+ `controlsEndId`: ID of the DatePicker that should receive the end date.
7
+
8
+ When a quickpick option like “This Year” is selected, it automatically populates the linked start and end inputs.
9
+
10
+ **For the Start/End DatePickers**:
11
+ `syncStartWith`: ID of the quickpick this start date is synced to.
12
+ `syncEndWith`: ID of the quickpick this end date is synced to.
13
+
14
+ When a user manually edits the start or end date, it clears the selected quickpick to prevent conflicting values.
@@ -49,4 +49,9 @@ examples:
49
49
  - dropdown_clear_selection: Clear Selection
50
50
  - dropdown_separators_hidden: Separators Hidden
51
51
  - dropdown_with_external_control: useDropdown Hook
52
+ - dropdown_quickpick: Quick Pick Variant
53
+ - dropdown_quickpick_range_end: Quick Pick Variant (Range Ends Today)
54
+ - dropdown_quickpick_default_dates: Quick Pick Variant (Default Dates)
55
+ - dropdown_quickpick_with_date_pickers: Quick Pick Variant with Date Pickers
56
+
52
57
 
@@ -22,4 +22,8 @@ export { default as DropdownMultiSelectWithDefault } from './_dropdown_multi_sel
22
22
  export { default as DropdownMultiSelectWithCustomOptions } from './_dropdown_multi_select_with_custom_options.jsx'
23
23
  export {default as DropdownWithCustomIconOptions} from './_dropdown_with_custom_icon_options.jsx'
24
24
  export {default as DropdownWithCustomRadioOptions} from './_dropdown_with_custom_radio_options.jsx'
25
- export {default as DropdownWithCustomActiveStyleOptions} from './_dropdown_with_custom_active_style_options.jsx'
25
+ export {default as DropdownWithCustomActiveStyleOptions} from './_dropdown_with_custom_active_style_options.jsx'
26
+ export { default as DropdownQuickpick } from './_dropdown_quickpick.jsx'
27
+ export { default as DropdownQuickpickRangeEnd } from './_dropdown_quickpick_range_end.jsx'
28
+ export { default as DropdownQuickpickDefaultDates } from './_dropdown_quickpick_default_dates.jsx'
29
+ export { default as DropdownQuickpickWithDatePickers } from './_dropdown_quickpick_with_date_pickers.jsx'