playbook_ui 5.2.0.pre.alpha14 → 5.2.0.pre.alpha15
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 +4 -4
- data/app/pb_kits/playbook/vendor.js +16 -0
- data/lib/playbook/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 274092c750becaf4daffb7d40f39b9e6bc1e6fcab52d5292b97135fa42f5442c
|
4
|
+
data.tar.gz: 2ab394c9c1a67c6ece74e66f350b49a6a09e7fa4eef8ea89b0fd0b85529ba558
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89c1011123df84fff6eed520e28df406440306ffdc386140d688111e8b68fe56f11c5d0ee742bc6d83013c0b0177c7cd9fd662657484e20627fed380105536c6
|
7
|
+
data.tar.gz: 6aa91b74538221795eb6a9606c95dd8bde9b11f61e29c4d105e37ad7f40dcaec1607b559f327dac36dd25f0a043e0aa2bd5482fab988788639f5c11f475dcd16
|
@@ -19,3 +19,19 @@ PbTypeahead.start()
|
|
19
19
|
|
20
20
|
import PbTable from './pb_table'
|
21
21
|
PbTable.start()
|
22
|
+
|
23
|
+
// React-Rendered Rails Kits =====
|
24
|
+
|
25
|
+
import WebpackerReact from 'webpacker-react'
|
26
|
+
|
27
|
+
import BarGraph from './pb_bar_graph/_bar_graph.jsx'
|
28
|
+
import DistributionBar from './pb_distribution_bar/_distribution_bar.jsx'
|
29
|
+
import Legend from './pb_legend/_legend.jsx'
|
30
|
+
import LineGraph from './pb_line_graph/_line_graph.jsx'
|
31
|
+
|
32
|
+
WebpackerReact.setup({
|
33
|
+
BarGraph,
|
34
|
+
DistributionBar,
|
35
|
+
Legend,
|
36
|
+
LineGraph,
|
37
|
+
})
|
data/lib/playbook/version.rb
CHANGED