playbook_ui_docs 13.23.0.pre.alpha.PLAY1284investigation2657 → 13.23.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: 06bdd9ccfee263666899576e57d9ef54ccb2e7906006bcf984b7cf156aa9a8f3
4
- data.tar.gz: 66c6fabfcc30a18004c79541dc5c354387a624261c3460b7c8442ef5872ec712
3
+ metadata.gz: 2551238e0e39b464ae21f0564d14852da929defe1f380520ae00449c116a886d
4
+ data.tar.gz: 56c99772990210d2cab93af23ce4138a55f2ada2034d97abb26f54ce854e7085
5
5
  SHA512:
6
- metadata.gz: 617bf467c44ac9574c0a09f6818234df1d5f8db9f9303a620052ccc748d9112a03ac5c54ed57a0301dd3b091d9b5933ba752d29bbac7368cb9c89a398d69dcb0
7
- data.tar.gz: 408a9dd519c47b3fde7761c3eccbb4975f12ac4f4d846a0e587b7c7d0ed78c50399196f92599440909a7c473ee5ddf6aa8aaff2a760d0309559d6a5cbca52f28
6
+ metadata.gz: 991d70d46030520c81bcd566d7841c57d06b3374d2eeabd0c2020f2ef62f78685925e0d5dc8de17a989a0630a64f54eff6cfa6d316f3df9a999ba6b707be29c9
7
+ data.tar.gz: f8e3874aad138721909b1ee9de0f26ba1aa9bfe3a78e25645203b8d62c2d8548f89795494d0f6148c65e42f6199d0592402d8d5aa8d7de48447206a9a2419115
@@ -9,7 +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_secondary_y_axis: Secondary Y-Axis
13
12
 
14
13
 
15
14
  react:
@@ -21,4 +20,3 @@ examples:
21
20
  - bar_graph_spline: Spline
22
21
  - bar_graph_colors: Color Overrides
23
22
  - bar_graph_custom: Custom Overrides
24
- - bar_graph_secondary_y_axis: Secondary Y-Axis
@@ -6,4 +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 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'