playbook_ui 13.12.0.pre.alpha.play1051testhighcharts1579 → 13.12.0.pre.alpha.play1051testhighcharts1580
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/index.js +3 -3
- data/app/pb_kits/playbook/pb_circle_chart/_circle_chart.tsx +198 -198
- data/app/pb_kits/playbook/pb_gauge/_gauge.tsx +197 -197
- data/app/pb_kits/playbook/pb_treemap_chart/_treemap_chart.tsx +106 -106
- data/app/pb_kits/playbook/playbook-doc.js +6 -6
- data/app/pb_kits/playbook/playbook-rails-react-bindings.js +6 -6
- data/dist/playbook-rails.js +7 -7
- data/lib/playbook/version.rb +1 -1
- metadata +1 -1
@@ -16,7 +16,7 @@ import * as ButtonToolbar from 'pb_button_toolbar/docs'
|
|
16
16
|
import * as Caption from 'pb_caption/docs'
|
17
17
|
import * as Card from 'pb_card/docs'
|
18
18
|
import * as Checkbox from 'pb_checkbox/docs'
|
19
|
-
|
19
|
+
import * as CircleChart from 'pb_circle_chart/docs'
|
20
20
|
import * as CircleIconButton from 'pb_circle_icon_button/docs'
|
21
21
|
import * as Collapsible from 'pb_collapsible/docs'
|
22
22
|
import * as Contact from 'pb_contact/docs'
|
@@ -39,7 +39,7 @@ import * as FixedConfirmationToast from 'pb_fixed_confirmation_toast/docs'
|
|
39
39
|
import * as Flex from 'pb_flex/docs'
|
40
40
|
import * as FormGroup from 'pb_form_group/docs'
|
41
41
|
import * as FormPill from 'pb_form_pill/docs'
|
42
|
-
|
42
|
+
import * as Gauge from 'pb_gauge/docs'
|
43
43
|
import * as Hashtag from 'pb_hashtag/docs'
|
44
44
|
import * as Highlight from 'pb_highlight/docs'
|
45
45
|
import * as HomeAddressStreet from 'pb_home_address_street/docs'
|
@@ -97,7 +97,7 @@ import * as TitleCount from 'pb_title_count/docs'
|
|
97
97
|
import * as TitleDetail from 'pb_title_detail/docs'
|
98
98
|
import * as Toggle from 'pb_toggle/docs'
|
99
99
|
import * as Tooltip from 'pb_tooltip/docs'
|
100
|
-
|
100
|
+
import * as TreemapChart from 'pb_treemap_chart/docs'
|
101
101
|
import * as Typeahead from 'pb_typeahead/docs'
|
102
102
|
import * as User from 'pb_user/docs'
|
103
103
|
import * as UserBadge from 'pb_user_badge/docs'
|
@@ -117,7 +117,7 @@ WebpackerReact.registerComponents({
|
|
117
117
|
...Caption,
|
118
118
|
...Card,
|
119
119
|
...Checkbox,
|
120
|
-
|
120
|
+
...CircleChart,
|
121
121
|
...CircleIconButton,
|
122
122
|
...Collapsible,
|
123
123
|
...Contact,
|
@@ -140,7 +140,7 @@ WebpackerReact.registerComponents({
|
|
140
140
|
...Flex,
|
141
141
|
...FormGroup,
|
142
142
|
...FormPill,
|
143
|
-
|
143
|
+
...Gauge,
|
144
144
|
...Hashtag,
|
145
145
|
...Highlight,
|
146
146
|
...HomeAddressStreet,
|
@@ -198,7 +198,7 @@ WebpackerReact.registerComponents({
|
|
198
198
|
...TitleDetail,
|
199
199
|
...Toggle,
|
200
200
|
...Tooltip,
|
201
|
-
|
201
|
+
...TreemapChart,
|
202
202
|
...Typeahead,
|
203
203
|
...User,
|
204
204
|
...UserBadge,
|
@@ -4,25 +4,25 @@ 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
|
-
|
7
|
+
import CircleChart from './pb_circle_chart/_circle_chart'
|
8
8
|
import Dialog from './pb_dialog/_dialog'
|
9
9
|
import DialogBody from './pb_dialog/child_kits/_dialog_body'
|
10
10
|
import DialogFooter from './pb_dialog/child_kits/_dialog_footer'
|
11
11
|
import DialogHeader from './pb_dialog/child_kits/_dialog_header'
|
12
12
|
import DistributionBar from './pb_distribution_bar/_distribution_bar'
|
13
|
-
|
13
|
+
import Gauge from './pb_gauge/_gauge'
|
14
14
|
import Legend from './pb_legend/_legend'
|
15
15
|
import LineGraph from './pb_line_graph/_line_graph'
|
16
16
|
import MultiLevelSelect from './pb_multi_level_select/_multi_level_select'
|
17
17
|
import Passphrase from './pb_passphrase/_passphrase'
|
18
18
|
import RichTextEditor from './pb_rich_text_editor/_rich_text_editor'
|
19
|
-
|
19
|
+
import TreemapChart from './pb_treemap_chart/_treemap_chart'
|
20
20
|
import Typeahead from './pb_typeahead/_typeahead'
|
21
21
|
import PhoneNumberInput from './pb_phone_number_input/_phone_number_input'
|
22
22
|
|
23
23
|
WebpackerReact.registerComponents({
|
24
24
|
BarGraph,
|
25
|
-
|
25
|
+
CircleChart,
|
26
26
|
Dialog,
|
27
27
|
DialogBody,
|
28
28
|
DialogFooter,
|
@@ -33,9 +33,9 @@ WebpackerReact.registerComponents({
|
|
33
33
|
LineGraph,
|
34
34
|
Passphrase,
|
35
35
|
RichTextEditor,
|
36
|
-
|
36
|
+
TreemapChart,
|
37
37
|
Typeahead,
|
38
|
-
|
38
|
+
Gauge,
|
39
39
|
PhoneNumberInput
|
40
40
|
})
|
41
41
|
|