playbook_ui_docs 14.18.0.pre.alpha.play1736highchartslinegraphdefaultrebuild7444 → 14.18.0.pre.alpha.play2034zonesandcolors7407

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec643d2624339f66649e5f5a01a0816ec2c4a0b9dd2b09c896a567ecdf11f05b
4
- data.tar.gz: f4874152eb784200523b4a72d9e5633e85c0c735cc6ffd7fa1f8c73c88eb256c
3
+ metadata.gz: '079828368ddeaf360fde9d539c1ec196279af6fe4c9087032bb386d6155bbcac'
4
+ data.tar.gz: 8573cdff051f7161b2f88a13e14def0cfe98e8465a0bf16107c03bee62e0081c
5
5
  SHA512:
6
- metadata.gz: 2b687fb1576d9089b98d07fc45e426a154633bbc2199c36dff4de8c9fedbb99e30baddc85def6c7fc0052d656f04c76df88821ac3cb76b176ba86120823bf401
7
- data.tar.gz: 24b0dcf09a44adf5f87f49f6d26d214ac0e80483ff30899704209ef0a26ba0fec8dcf3e4db119f4ed803d069f23c91dfbf887d08d1890df36d6d1f2ae12f35d6
6
+ metadata.gz: 1fc23270977a2c886999c6ade1339f41bb900eef36480e5b6ae6ddc1f6ebcfaca6b38632fa5764eb5c2c05dec593d5d704dd6b843ae63aedc2c16b89d0bfbeaf
7
+ data.tar.gz: 81627b52875b9d50e6cc86628abfda7e6b3a09af43196ead289619706fa1481f4426e494b5f0dd80a1bc34501e7f52bd9efdee79b7328f5e77364b618e323a85
@@ -1,7 +1,3 @@
1
- To use the `quickpick`:
2
- - prop `mode` must be set to `range`
3
- - prop `selection_type` must be set to `quickpick`
4
-
5
1
  This date range variant uses hidden inputs to handle start and end dates. While they are not required props, it is advisable to specify a unique `start_date_id`, `start_date_name`, `end_date_id`, and `end_date_name` for each quick pick instance you place in a form and/or on a page.
6
2
 
7
3
  Like all other date pickers, the quick pick does require a `picker_id`.
@@ -1 +1 @@
1
- Use `this_ranges_end_today`/`thisRangesEndToday` 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 the `this_ranges_end_today`/`thisRangesEndToday` prop is used, end date on that range will be today's date.
1
+ Because the Quick Pick variant has `allowInput` set to `true` by default, use the `onClose` handler function to access the startDate and endDate values. See the `onClose` example for details.
@@ -1,5 +1 @@
1
- To use the `quickpick`:
2
- - prop `mode` must be set to `range`
3
- - prop `selectionType` must be set to `quickpick`
4
-
5
- Use the `onClose` handler function to access the startDate and endDate values. Check the [`onClose` example](https://playbook.powerapp.cloud/kits/date_picker/react#onclose) for more information.
1
+ Use the `onChange` handler function to access the startDate and endDate values. Check the [`onChange` example](https://playbook.powerapp.cloud/kits/date_picker/react#onchange) for more information.
@@ -15,7 +15,6 @@ examples:
15
15
  - date_picker_quick_pick_custom: Custom Quick Pick Dates
16
16
  - date_picker_quick_pick_custom_override: Custom Quick Pick Dates (append to defaults)
17
17
  - date_picker_quick_pick_default_date: Range (Quick Pick w/ Default Date)
18
- - date_picker_range_pattern_rails: Range with 2 Date Pickers and a Quick Pick
19
18
  - date_picker_format: Format
20
19
  - date_picker_disabled: Disabled Dates
21
20
  - date_picker_min_max: Min Max
@@ -48,7 +47,6 @@ examples:
48
47
  - date_picker_quick_pick_custom: Custom Quick Pick Dates
49
48
  - date_picker_quick_pick_custom_override: Custom Quick Pick Dates (append to defaults)
50
49
  - 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
52
50
  - date_picker_format: Format
53
51
  - date_picker_disabled: Disabled Dates
54
52
  - date_picker_min_max: Min Max
@@ -26,4 +26,3 @@ 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'
@@ -11,7 +11,6 @@ examples:
11
11
 
12
12
  react:
13
13
  - line_graph_default: Default
14
- - line_graph_pb_styles: Playbook Styles
15
14
  - line_graph_legend: Legend
16
15
  - line_graph_legend_position: Legend Position
17
16
  - line_graph_legend_nonclickable: Legend Nonclickable
@@ -4,4 +4,3 @@ export { default as LineGraphLegendPosition } from './_line_graph_legend_positio
4
4
  export { default as LineGraphLegendNonclickable } from './_line_graph_legend_nonclickable.jsx'
5
5
  export { default as LineGraphHeight } from './_line_graph_height.jsx'
6
6
  export { default as LineGraphColors } from './_line_graph_colors.jsx'
7
- export { default as LineGraphPbStyles } from './_line_graph_pb_styles.jsx'