playbook_ui_docs 14.3.2.pre.alpha.play1472newicons3773 → 14.3.2.pre.alpha.revert3614PBNTR455ganttchartPOC3783

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.3.2.pre.alpha.play1472newicons3773
4
+ version: 14.3.2.pre.alpha.revert3614PBNTR455ganttchartPOC3783
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-09-13 00:00:00.000000000 Z
12
+ date: 2024-09-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -829,9 +829,6 @@ files:
829
829
  - app/pb_kits/playbook/pb_form_pill/docs/_form_pill_user.jsx
830
830
  - app/pb_kits/playbook/pb_form_pill/docs/example.yml
831
831
  - app/pb_kits/playbook/pb_form_pill/docs/index.js
832
- - app/pb_kits/playbook/pb_gantt_chart/docs/_gantt_chart_default.jsx
833
- - app/pb_kits/playbook/pb_gantt_chart/docs/example.yml
834
- - app/pb_kits/playbook/pb_gantt_chart/docs/index.js
835
832
  - app/pb_kits/playbook/pb_gauge/docs/_gauge_colors.html.erb
836
833
  - app/pb_kits/playbook/pb_gauge/docs/_gauge_colors.jsx
837
834
  - app/pb_kits/playbook/pb_gauge/docs/_gauge_colors.md
@@ -1,53 +0,0 @@
1
- import React from "react";
2
- import { GanttChart } from "playbook-ui";
3
-
4
- const mockOptions = {
5
- title: {
6
- text: "Simple Gantt Chart",
7
- },
8
-
9
- xAxis: [
10
- {
11
- min: Date.UTC(2014, 10, 17),
12
- max: Date.UTC(2014, 10, 30),
13
- },
14
- ],
15
-
16
- series: [
17
- {
18
- name: "Project 1",
19
- data: [
20
- {
21
- name: "Start prototype",
22
- start: Date.UTC(2014, 10, 18),
23
- end: Date.UTC(2014, 10, 25),
24
- },
25
- {
26
- name: "Develop",
27
- start: Date.UTC(2014, 10, 20),
28
- end: Date.UTC(2014, 10, 25),
29
- },
30
- {
31
- name: "Run acceptance tests",
32
- start: Date.UTC(2014, 10, 23),
33
- end: Date.UTC(2014, 10, 26),
34
- },
35
- {
36
- name: "Test prototype",
37
- start: Date.UTC(2014, 10, 27),
38
- end: Date.UTC(2014, 10, 29),
39
- },
40
- ],
41
- },
42
- ],
43
- };
44
-
45
- const GanttChartDefault = (props) => (
46
- <div>
47
- <GanttChart customOptions={mockOptions}
48
- {...props}
49
- />
50
- </div>
51
- );
52
-
53
- export default GanttChartDefault;
@@ -1,7 +0,0 @@
1
- examples:
2
-
3
-
4
- react:
5
- - gantt_chart_default: Default
6
-
7
-
@@ -1 +0,0 @@
1
- export { default as GanttChartDefault } from './_gantt_chart_default.jsx'