playbook_ui 11.16.0.pre.alpha.reactupgrade1 → 11.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/index.js +0 -1
  3. data/app/pb_kits/playbook/pb_bar_graph/_bar_graph.tsx +145 -0
  4. data/app/pb_kits/playbook/pb_circle_chart/ChartsTypes.ts +2 -0
  5. data/app/pb_kits/playbook/pb_circle_chart/_circle_chart.tsx +207 -0
  6. data/app/pb_kits/playbook/pb_circle_chart/circle_chart.html.erb +9 -21
  7. data/app/pb_kits/playbook/pb_circle_chart/circle_chart.rb +7 -47
  8. data/app/pb_kits/playbook/pb_dashboard/pbChartsColorsHelper.ts +16 -0
  9. data/app/pb_kits/playbook/pb_dashboard/{pbChartsDarkTheme.js → pbChartsDarkTheme.ts} +6 -21
  10. data/app/pb_kits/playbook/pb_dashboard/{pbChartsLightTheme.js → pbChartsLightTheme.ts} +6 -21
  11. data/app/pb_kits/playbook/pb_dashboard/themeTypes.ts +16 -0
  12. data/app/pb_kits/playbook/pb_gauge/_gauge.scss +4 -0
  13. data/app/pb_kits/playbook/pb_gauge/_gauge.tsx +202 -0
  14. data/app/pb_kits/playbook/pb_gauge/docs/_gauge_complex.html.erb +1 -1
  15. data/app/pb_kits/playbook/pb_gauge/docs/_gauge_complex.jsx +8 -8
  16. data/app/pb_kits/playbook/pb_gauge/gauge.html.erb +1 -11
  17. data/app/pb_kits/playbook/pb_gauge/gauge.rb +3 -8
  18. data/app/pb_kits/playbook/pb_line_graph/_line_graph.tsx +148 -0
  19. data/app/pb_kits/playbook/pb_popover/_popover.jsx +130 -120
  20. data/app/pb_kits/playbook/pb_popover/docs/_popover_close.jsx +1 -1
  21. data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.tsx +111 -0
  22. data/app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_tooltip.jsx +1 -1
  23. data/app/pb_kits/playbook/playbook-rails-react-bindings.js +4 -0
  24. data/app/pb_kits/playbook/playbook-rails.js +0 -4
  25. data/lib/playbook/version.rb +1 -1
  26. metadata +13 -11
  27. data/app/pb_kits/playbook/pb_bar_graph/_bar_graph.jsx +0 -111
  28. data/app/pb_kits/playbook/pb_circle_chart/_circle_chart.jsx +0 -151
  29. data/app/pb_kits/playbook/pb_gauge/_gauge.jsx +0 -112
  30. data/app/pb_kits/playbook/pb_line_graph/_line_graph.jsx +0 -113
  31. data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.jsx +0 -79
  32. data/app/pb_kits/playbook/plugins/pb_chart.js +0 -322
@@ -1,25 +1,19 @@
1
- /* eslint-disable react/no-multi-comp */
2
1
  // @flow
3
2
 
4
- import React, {useEffect} from "react";
5
- import ReactDOM from "react-dom";
3
+ import React from 'react'
4
+ import ReactDOM from 'react-dom'
6
5
 
7
6
  import {
8
7
  Popper,
9
8
  Manager as PopperManager,
10
9
  PopperProps,
11
10
  Reference as PopperReference,
12
- } from "react-popper";
11
+ } from 'react-popper'
13
12
 
14
- import {
15
- buildAriaProps,
16
- buildCss,
17
- buildDataProps,
18
- noop,
19
- } from "../utilities/props";
13
+ import { buildAriaProps, buildCss, buildDataProps, noop } from '../utilities/props'
20
14
 
21
- import classnames from "classnames";
22
- import { globalProps } from "../utilities/globalProps";
15
+ import classnames from 'classnames'
16
+ import { globalProps } from '../utilities/globalProps'
23
17
 
24
18
  type PbPopoverProps = {
25
19
  aria?: object,
@@ -31,7 +25,7 @@ type PbPopoverProps = {
31
25
  reference: PopperReference,
32
26
  show?: boolean,
33
27
  shouldClosePopover?: () => boolean,
34
- } & PopperProps;
28
+ } & PopperProps
35
29
 
36
30
  // Prop enabled default modifiers here
37
31
  // https://popper.js.org/docs/v2/modifiers
@@ -40,17 +34,17 @@ const POPOVER_MODIFIERS = {
40
34
  offset: {
41
35
  //https://popper.js.org/docs/v2/modifiers/offset/
42
36
  enabled: true,
43
- name: "offset",
37
+ name: 'offset',
44
38
  options: {
45
39
  offset: [0, 20],
46
40
  },
47
- phase: "main",
41
+ phase: 'main',
48
42
  },
49
- };
43
+ }
50
44
 
51
45
  const popoverModifiers = ({ modifiers, offset }) => {
52
- return offset ? modifiers.concat([POPOVER_MODIFIERS.offset]) : modifiers;
53
- };
46
+ return offset ? modifiers.concat([POPOVER_MODIFIERS.offset]) : modifiers
47
+ }
54
48
 
55
49
  const Popover = (props: PbPopoverProps) => {
56
50
  const {
@@ -68,14 +62,11 @@ const Popover = (props: PbPopoverProps) => {
68
62
  maxWidth,
69
63
  minHeight,
70
64
  minWidth,
71
- } = props;
72
-
73
- const popoverSpacing =
74
- globalProps(props).includes("dark") || !globalProps(props)
75
- ? "p_sm"
76
- : globalProps(props);
77
- const overflowHandling = maxHeight || maxWidth ? "overflow_handling" : "";
78
- const zIndexStyle = zIndex ? { zIndex: zIndex } : {};
65
+ } = props
66
+
67
+ const popoverSpacing = globalProps(props).includes('dark') || !globalProps(props) ? 'p_sm' : globalProps(props)
68
+ const overflowHandling = maxHeight || maxWidth ? 'overflow_handling' : ''
69
+ const zIndexStyle = zIndex ? { zIndex: zIndex } : {}
79
70
  const widthHeightStyles = () => {
80
71
  return Object.assign(
81
72
  {},
@@ -83,15 +74,15 @@ const Popover = (props: PbPopoverProps) => {
83
74
  maxWidth ? { maxWidth: maxWidth } : {},
84
75
  minHeight ? { minHeight: minHeight } : {},
85
76
  minWidth ? { minWidth: minWidth } : {}
86
- );
87
- };
88
- const ariaProps = buildAriaProps(aria);
89
- const dataProps = buildDataProps(data);
77
+ )
78
+ }
79
+ const ariaProps = buildAriaProps(aria)
80
+ const dataProps = buildDataProps(data)
90
81
  const classes = classnames(
91
- buildCss("pb_popover_kit"),
82
+ buildCss('pb_popover_kit'),
92
83
  globalProps(props),
93
84
  className
94
- );
85
+ )
95
86
 
96
87
  return (
97
88
  <Popper
@@ -108,14 +99,20 @@ const Popover = (props: PbPopoverProps) => {
108
99
  data-placement={placement}
109
100
  id={id}
110
101
  ref={ref}
111
- style={Object.assign({}, style, zIndexStyle)}
102
+ style={Object.assign(
103
+ {},
104
+ style,
105
+ zIndexStyle
106
+ )}
112
107
  >
113
108
  <div
114
- className={classnames(`${buildCss("pb_popover_tooltip")} show`)}
109
+ className={classnames(
110
+ `${buildCss('pb_popover_tooltip')} show`
111
+ )}
115
112
  >
116
113
  <div
117
114
  className={classnames(
118
- "pb_popover_body",
115
+ 'pb_popover_body',
119
116
  popoverSpacing,
120
117
  overflowHandling
121
118
  )}
@@ -125,33 +122,25 @@ const Popover = (props: PbPopoverProps) => {
125
122
  </div>
126
123
  </div>
127
124
  </div>
128
- );
125
+ )
129
126
  }}
130
127
  </Popper>
131
- );
132
- };
133
-
134
- const PbReactPopover = (props: PbPopoverProps) => {
135
- const {
136
- className,
137
- children,
138
- modifiers = [],
139
- offset = false,
140
- placement = "left",
141
- portal = "body",
142
- reference,
143
- referenceElement,
144
- show = false,
145
- usePortal = true,
146
- zIndex,
147
- maxHeight,
148
- maxWidth,
149
- minHeight,
150
- minWidth,
151
- } = props;
152
-
153
- useEffect(() => {
154
- const { closeOnClick, shouldClosePopover = noop } = props
128
+ )
129
+ }
130
+
131
+ export default class PbReactPopover extends React.Component<PbPopoverProps> {
132
+ static defaultProps = {
133
+ modifiers: [],
134
+ offset: false,
135
+ placement: 'left',
136
+ portal: 'body',
137
+ show: false,
138
+ shouldClosePopover: noop,
139
+ usePortal: true,
140
+ }
141
+
142
+ componentDidMount() {
143
+ const { closeOnClick, shouldClosePopover } = this.props
155
144
 
156
145
  if (!closeOnClick) return
157
146
 
@@ -162,66 +151,87 @@ const PbReactPopover = (props: PbPopoverProps) => {
162
151
  target.closest('.pb_popover_reference_wrapper') !== null
163
152
 
164
153
  switch (closeOnClick) {
165
- case 'outside':
166
- if (!targetIsPopover || targetIsReference) {
167
- shouldClosePopover(true)
168
- }
169
- break
170
- case 'inside':
171
- if (targetIsPopover || targetIsReference) {
172
- shouldClosePopover(true)
173
- }
174
- break
175
- case 'any':
154
+ case 'outside':
155
+ if (!targetIsPopover || targetIsReference) {
156
+ shouldClosePopover(true)
157
+ }
158
+ break
159
+ case 'inside':
160
+ if (targetIsPopover || targetIsReference) {
176
161
  shouldClosePopover(true)
177
- break
162
+ }
163
+ break
164
+ case 'any':
165
+ shouldClosePopover(true)
166
+ break
178
167
  }
179
- }, { capture: true })
180
- }, [])
181
-
182
- const popoverComponent = (
183
- <Popover
184
- className={className}
185
- maxHeight={maxHeight}
186
- maxWidth={maxWidth}
187
- minHeight={minHeight}
188
- minWidth={minWidth}
189
- modifiers={modifiers}
190
- offset={offset}
191
- placement={placement}
192
- referenceElement={referenceElement}
193
- zIndex={zIndex}
194
- {...props}
195
- >
196
- {children}
197
- </Popover>
198
- );
199
-
200
- return (
201
- <PopperManager>
202
- <If condition={reference && !referenceElement}>
203
- <PopperReference>
204
- {({ ref }) => (
205
- <span className="pb_popover_reference_wrapper"
206
- ref={ref}
207
- >
208
- <reference.type {...reference.props} />
209
- </span>
210
- )}
211
- </PopperReference>
212
- </If>
213
- <If condition={show}>
214
- <If condition={usePortal}>
215
- {ReactDOM.createPortal(
216
- popoverComponent,
217
- document.querySelector(portal)
218
- )}
219
- <Else />
220
- {popoverComponent}
168
+ })
169
+ }
170
+
171
+ props: PbPopoverProps
172
+
173
+ render() {
174
+ const {
175
+ className,
176
+ children,
177
+ modifiers,
178
+ offset,
179
+ placement,
180
+ portal,
181
+ reference,
182
+ referenceElement,
183
+ show,
184
+ usePortal,
185
+ zIndex,
186
+ maxHeight,
187
+ maxWidth,
188
+ minHeight,
189
+ minWidth,
190
+ } = this.props
191
+
192
+ const popoverComponent = (
193
+ <Popover
194
+ {...this.props}
195
+ className={className}
196
+ maxHeight={maxHeight}
197
+ maxWidth={maxWidth}
198
+ minHeight={minHeight}
199
+ minWidth={minWidth}
200
+ modifiers={modifiers}
201
+ offset={offset}
202
+ placement={placement}
203
+ referenceElement={referenceElement}
204
+ zIndex={zIndex}
205
+ >
206
+ {children}
207
+ </Popover>
208
+ )
209
+
210
+ return (
211
+ <PopperManager>
212
+ <If condition={reference && !referenceElement}>
213
+ <PopperReference>
214
+ {({ ref }) => (
215
+ <span
216
+ className="pb_popover_reference_wrapper"
217
+ ref={ref}
218
+ >
219
+ <reference.type {...reference.props} />
220
+ </span>
221
+ )}
222
+ </PopperReference>
221
223
  </If>
222
- </If>
223
- </PopperManager>
224
- );
225
- };
226
-
227
- export default PbReactPopover;
224
+ <If condition={show}>
225
+ <If condition={usePortal}>
226
+ {ReactDOM.createPortal(
227
+ popoverComponent,
228
+ document.querySelector(portal)
229
+ )}
230
+ <Else />
231
+ {popoverComponent}
232
+ </If>
233
+ </If>
234
+ </PopperManager>
235
+ )
236
+ }
237
+ }
@@ -31,7 +31,7 @@ const PopoverClose = (props) => {
31
31
  }
32
32
 
33
33
  const handleAnyTogglePopover = () => {
34
- setAnyShowPopover(!showAnyPopover)
34
+ setAnyShowPopover(!showOutsidePopover)
35
35
  }
36
36
 
37
37
  const insidePopoverTrigger = (
@@ -0,0 +1,111 @@
1
+ import React, { useState, useEffect } from "react";
2
+ import classnames from "classnames";
3
+
4
+ import { globalProps } from "../utilities/globalProps";
5
+ import { buildAriaProps, buildDataProps } from "../utilities/props";
6
+
7
+ import HighchartsReact from "highcharts-react-official";
8
+ import Highcharts from "highcharts";
9
+ import { highchartsTheme } from "../pb_dashboard/pbChartsLightTheme";
10
+ import { highchartsDarkTheme } from "../pb_dashboard/pbChartsDarkTheme";
11
+ import mapColors from "../pb_dashboard/pbChartsColorsHelper";
12
+ import treemap from 'highcharts/modules/treemap'
13
+
14
+ type TreemapChartProps = {
15
+ chartData: {
16
+ name: string;
17
+ parent?: string | number;
18
+ value: number;
19
+ color?: string;
20
+ id?: string | number;
21
+ }[];
22
+ className?: string;
23
+ colors: string[];
24
+ dark?: boolean;
25
+ drillable: boolean;
26
+ grouped: boolean;
27
+ height?: string;
28
+ id: number | string;
29
+ title?: string;
30
+ tooltipHtml: string;
31
+ type?: string;
32
+ aria?: { [key: string]: string };
33
+ data?: { [key: string]: string };
34
+ };
35
+
36
+ const TreemapChart = ({
37
+ aria = {},
38
+ data = {},
39
+ chartData,
40
+ colors,
41
+ dark = false,
42
+ drillable = false,
43
+ grouped = false,
44
+ height,
45
+ id,
46
+ title = "",
47
+ tooltipHtml = '<span style="font-weight: bold; color:{point.color};">●</span>{point.name}: <b>{point.value}</b>',
48
+ type = "treemap",
49
+ ...props
50
+ }: TreemapChartProps) => {
51
+ const ariaProps = buildAriaProps(aria);
52
+ const dataProps = buildDataProps(data);
53
+ const setupTheme = () => {
54
+ dark
55
+ ? Highcharts.setOptions(highchartsDarkTheme)
56
+ : Highcharts.setOptions(highchartsTheme);
57
+ };
58
+ treemap(Highcharts)
59
+ setupTheme();
60
+
61
+ const staticOptions = {
62
+ title: {
63
+ text: title,
64
+ },
65
+ chart: {
66
+ height: height,
67
+ type: type,
68
+ },
69
+ credits: false,
70
+ series: [
71
+ {
72
+ data: chartData,
73
+ },
74
+ ],
75
+ plotOptions: {
76
+ treemap: {
77
+ tooltip: {
78
+ pointFormat: tooltipHtml,
79
+ },
80
+ allowTraversingTree: drillable,
81
+ colorByPoint: !grouped,
82
+ colors:
83
+ colors !== undefined && colors.length > 0
84
+ ? mapColors(colors)
85
+ : highchartsTheme.colors,
86
+ },
87
+ },
88
+ };
89
+
90
+ const [options, setOptions] = useState({});
91
+
92
+ useEffect(() => {
93
+
94
+ setOptions({ ...staticOptions });
95
+ }, [chartData]);
96
+
97
+ return (
98
+ <HighchartsReact
99
+ containerProps={{
100
+ className: classnames(globalProps(props), "pb_treemap_chart"),
101
+ id: id,
102
+ ...ariaProps,
103
+ ...dataProps,
104
+ }}
105
+ highcharts={Highcharts}
106
+ options={options}
107
+ />
108
+ );
109
+ };
110
+
111
+ export default TreemapChart;
@@ -39,7 +39,7 @@ const TreemapChartTooltip = (props) => (
39
39
  chartData={chartData}
40
40
  id="treemap-tooltip"
41
41
  title="Favored Pizza Toppings"
42
- tooltipHtml={"<p>Custom tooltip for {point.name} <br/>with value: {point.value}</p>"}
42
+ tooltipHtml= '<p>Custom tooltip for {point.name} <br/>with value: {point.value}</p>'
43
43
  {...props}
44
44
  />
45
45
  </div>
@@ -4,11 +4,13 @@ import WebpackerReact from 'webpacker-react'
4
4
  import ujs from 'webpacker-react/ujs'
5
5
 
6
6
  import BarGraph from './pb_bar_graph/_bar_graph'
7
+ import CircleChart from './pb_circle_chart/_circle_chart'
7
8
  import Dialog from './pb_dialog/_dialog'
8
9
  import DialogBody from './pb_dialog/child_kits/_dialog_body'
9
10
  import DialogFooter from './pb_dialog/child_kits/_dialog_footer'
10
11
  import DialogHeader from './pb_dialog/child_kits/_dialog_header'
11
12
  import DistributionBar from './pb_distribution_bar/_distribution_bar'
13
+ import Gauge from './pb_gauge/_gauge'
12
14
  import Legend from './pb_legend/_legend'
13
15
  import LineGraph from './pb_line_graph/_line_graph'
14
16
  import Passphrase from './pb_passphrase/_passphrase'
@@ -18,6 +20,7 @@ import Typeahead from './pb_typeahead/_typeahead'
18
20
 
19
21
  WebpackerReact.registerComponents({
20
22
  BarGraph,
23
+ CircleChart,
21
24
  Dialog,
22
25
  DialogBody,
23
26
  DialogFooter,
@@ -29,6 +32,7 @@ WebpackerReact.registerComponents({
29
32
  RichTextEditor,
30
33
  TreemapChart,
31
34
  Typeahead,
35
+ Gauge,
32
36
  })
33
37
 
34
38
  ujs.setup(
@@ -1,7 +1,3 @@
1
- // Charts
2
- import pbChart from './plugins/pb_chart'
3
- window.pbChart = pbChart
4
-
5
1
  // Forms
6
2
  import './pb_form/pb_form_validation'
7
3
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Playbook
4
4
  PREVIOUS_VERSION = "11.15.0"
5
- VERSION = "11.16.0.pre.alpha.reactupgrade1"
5
+ VERSION = "11.16.0"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.16.0.pre.alpha.reactupgrade1
4
+ version: 11.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -361,8 +361,8 @@ files:
361
361
  - app/pb_kits/playbook/pb_badge/docs/_description.md
362
362
  - app/pb_kits/playbook/pb_badge/docs/example.yml
363
363
  - app/pb_kits/playbook/pb_badge/docs/index.js
364
- - app/pb_kits/playbook/pb_bar_graph/_bar_graph.jsx
365
364
  - app/pb_kits/playbook/pb_bar_graph/_bar_graph.scss
365
+ - app/pb_kits/playbook/pb_bar_graph/_bar_graph.tsx
366
366
  - app/pb_kits/playbook/pb_bar_graph/barGraphSettings.js
367
367
  - app/pb_kits/playbook/pb_bar_graph/bar_graph.html.erb
368
368
  - app/pb_kits/playbook/pb_bar_graph/bar_graph.rb
@@ -540,8 +540,9 @@ files:
540
540
  - app/pb_kits/playbook/pb_checkbox/docs/_description.md
541
541
  - app/pb_kits/playbook/pb_checkbox/docs/example.yml
542
542
  - app/pb_kits/playbook/pb_checkbox/docs/index.js
543
- - app/pb_kits/playbook/pb_circle_chart/_circle_chart.jsx
543
+ - app/pb_kits/playbook/pb_circle_chart/ChartsTypes.ts
544
544
  - app/pb_kits/playbook/pb_circle_chart/_circle_chart.scss
545
+ - app/pb_kits/playbook/pb_circle_chart/_circle_chart.tsx
545
546
  - app/pb_kits/playbook/pb_circle_chart/circle_chart.html.erb
546
547
  - app/pb_kits/playbook/pb_circle_chart/circle_chart.rb
547
548
  - app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_block.html.erb
@@ -638,8 +639,10 @@ files:
638
639
  - app/pb_kits/playbook/pb_currency/docs/example.yml
639
640
  - app/pb_kits/playbook/pb_currency/docs/index.js
640
641
  - app/pb_kits/playbook/pb_dashboard/commonSettings.js
641
- - app/pb_kits/playbook/pb_dashboard/pbChartsDarkTheme.js
642
- - app/pb_kits/playbook/pb_dashboard/pbChartsLightTheme.js
642
+ - app/pb_kits/playbook/pb_dashboard/pbChartsColorsHelper.ts
643
+ - app/pb_kits/playbook/pb_dashboard/pbChartsDarkTheme.ts
644
+ - app/pb_kits/playbook/pb_dashboard/pbChartsLightTheme.ts
645
+ - app/pb_kits/playbook/pb_dashboard/themeTypes.ts
643
646
  - app/pb_kits/playbook/pb_dashboard_value/_dashboard_value.jsx
644
647
  - app/pb_kits/playbook/pb_dashboard_value/_dashboard_value.scss
645
648
  - app/pb_kits/playbook/pb_dashboard_value/_dashboard_value_mixins.scss
@@ -1033,8 +1036,8 @@ files:
1033
1036
  - app/pb_kits/playbook/pb_form_pill/docs/index.js
1034
1037
  - app/pb_kits/playbook/pb_form_pill/form_pill.html.erb
1035
1038
  - app/pb_kits/playbook/pb_form_pill/form_pill.rb
1036
- - app/pb_kits/playbook/pb_gauge/_gauge.jsx
1037
1039
  - app/pb_kits/playbook/pb_gauge/_gauge.scss
1040
+ - app/pb_kits/playbook/pb_gauge/_gauge.tsx
1038
1041
  - app/pb_kits/playbook/pb_gauge/docs/_gauge_colors.html.erb
1039
1042
  - app/pb_kits/playbook/pb_gauge/docs/_gauge_colors.jsx
1040
1043
  - app/pb_kits/playbook/pb_gauge/docs/_gauge_colors.md
@@ -1311,8 +1314,8 @@ files:
1311
1314
  - app/pb_kits/playbook/pb_lightbox/hooks/useWindowSize.ts
1312
1315
  - app/pb_kits/playbook/pb_lightbox/lightbox.scss
1313
1316
  - app/pb_kits/playbook/pb_lightbox/lightbox.test.jsx
1314
- - app/pb_kits/playbook/pb_line_graph/_line_graph.jsx
1315
1317
  - app/pb_kits/playbook/pb_line_graph/_line_graph.scss
1318
+ - app/pb_kits/playbook/pb_line_graph/_line_graph.tsx
1316
1319
  - app/pb_kits/playbook/pb_line_graph/docs/_description.md
1317
1320
  - app/pb_kits/playbook/pb_line_graph/docs/_line_graph_colors.html.erb
1318
1321
  - app/pb_kits/playbook/pb_line_graph/docs/_line_graph_colors.jsx
@@ -2097,7 +2100,7 @@ files:
2097
2100
  - app/pb_kits/playbook/pb_tooltip/tooltip.html.erb
2098
2101
  - app/pb_kits/playbook/pb_tooltip/tooltip.rb
2099
2102
  - app/pb_kits/playbook/pb_tooltip/tooltip.test.jsx
2100
- - app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.jsx
2103
+ - app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.tsx
2101
2104
  - app/pb_kits/playbook/pb_treemap_chart/docs/_description.md
2102
2105
  - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.html.erb
2103
2106
  - app/pb_kits/playbook/pb_treemap_chart/docs/_treemap_chart_colors.jsx
@@ -2223,7 +2226,6 @@ files:
2223
2226
  - app/pb_kits/playbook/playbook-doc.js
2224
2227
  - app/pb_kits/playbook/playbook-rails-react-bindings.js
2225
2228
  - app/pb_kits/playbook/playbook-rails.js
2226
- - app/pb_kits/playbook/plugins/pb_chart.js
2227
2229
  - app/pb_kits/playbook/tokens/_animation-curves.scss
2228
2230
  - app/pb_kits/playbook/tokens/_border_radius.scss
2229
2231
  - app/pb_kits/playbook/tokens/_colors.scss
@@ -2359,9 +2361,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
2359
2361
  version: '0'
2360
2362
  required_rubygems_version: !ruby/object:Gem::Requirement
2361
2363
  requirements:
2362
- - - ">"
2364
+ - - ">="
2363
2365
  - !ruby/object:Gem::Version
2364
- version: 1.3.1
2366
+ version: '0'
2365
2367
  requirements: []
2366
2368
  rubygems_version: 3.3.7
2367
2369
  signing_key: