playbook_ui_docs 13.24.0.pre.alpha.play1305drycontenttag2689 → 13.24.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7903510a7c3214b6eb0e60889640844c9091085af1d1f1f5d1a897e1757a47ec
4
- data.tar.gz: 81257927181c191f38977e9ef8687bc413e1e21a0314a60b41bcff6917789c1b
3
+ metadata.gz: e5efc79de663963e76ac9525d08ffb97afdc5a9ca0dcc4c4343d6402b02bcd5f
4
+ data.tar.gz: 2ae3fc3adba0255a543db54c2a7bba2b7f9bd4564667a70d8b3cd77bb1fd565d
5
5
  SHA512:
6
- metadata.gz: 9df7841b958221749b7c8c85fc32f251ae16f9e8433c81a855bd9a496410fe05277724e27d7fcc5d9b2d4a4a4a4b7fedc0d65eedf77d5d7abdfcaab34bf1b8ba
7
- data.tar.gz: 75d4906587b4624ccffbc16e37f24125aa026f01c33e3d58e2ff8917c281a7be944b02aacb146bcc9cc6d6054380aff461c61f4e7488779dec7fc7bbd3067fb4
6
+ metadata.gz: 315796eb5d147c63f7c9bb5277245aa2464295b8d04c37309b155beb237e604e238918c8d3f22b5508232bd0d9f91580256f7eaf1a8ad558aa86d3dd497f5b79
7
+ data.tar.gz: 973beef1e4087acded14520c8417efc695108010479896df48187d58ddc9bce8f36bf5aca6ac6d3b984f18adbd30c376abead0f5b16a8367e51745ccd11d9673
@@ -9,9 +9,6 @@ examples:
9
9
  - bar_graph_spline: Spline
10
10
  - bar_graph_colors: Color Overrides
11
11
  - bar_graph_custom: Custom Overrides
12
- - bar_graph_stacked: Stacked
13
- - bar_graph_negative_numbers: Negative Numbers
14
- - bar_graph_secondary_y_axis: Secondary Y-Axis
15
12
 
16
13
 
17
14
  react:
@@ -23,6 +20,3 @@ examples:
23
20
  - bar_graph_spline: Spline
24
21
  - bar_graph_colors: Color Overrides
25
22
  - bar_graph_custom: Custom Overrides
26
- - bar_graph_stacked: Stacked
27
- - bar_graph_negative_numbers: Negative Numbers
28
- - bar_graph_secondary_y_axis: Secondary Y-Axis
@@ -6,6 +6,3 @@ export { default as BarGraphHeight } from './_bar_graph_height.jsx'
6
6
  export { default as BarGraphSpline } from './_bar_graph_spline.jsx'
7
7
  export { default as BarGraphColors } from './_bar_graph_colors.jsx'
8
8
  export { default as BarGraphCustom } from './_bar_graph_custom.jsx'
9
- export { default as BarGraphStacked } from './_bar_graph_stacked.jsx'
10
- export { default as BarGraphNegativeNumbers } from './_bar_graph_negative_numbers.jsx'
11
- export { default as BarGraphSecondaryYAxis } from './_bar_graph_secondary_y_axis.jsx'
@@ -46,7 +46,7 @@ const TypeaheadWithHighlight = (props) => {
46
46
  if (!inputValue.length) return text
47
47
  return text.replace(
48
48
  new RegExp(inputValue, 'gi'),
49
- (highlighted) => `<mark>${highlighted}</mark>`
49
+ highlighted => `<mark>${highlighted}</mark>`
50
50
  )
51
51
  }
52
52
  return (
@@ -22,4 +22,3 @@ examples:
22
22
  - typeahead_createable: Createable
23
23
  - typeahead_async_createable: Createable (+ Async Data)
24
24
  - typeahead_error_state: Error State
25
- - typeahead_custom_menu_list: Custom MenuList
@@ -9,4 +9,3 @@ export { default as TypeaheadMultiKit } from './_typeahead_multi_kit.jsx'
9
9
  export { default as TypeaheadCreateable } from './_typeahead_createable.jsx'
10
10
  export { default as TypeaheadAsyncCreateable } from './_typeahead_async_createable.jsx'
11
11
  export { default as TypeaheadErrorState } from './_typeahead_error_state.jsx'
12
- export { default as TypeaheadCustomMenuList } from './_typeahead_custom_menu_list.jsx'