-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroadmap.html
126 lines (113 loc) · 4.1 KB
/
roadmap.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
---
layout: default
title: "Metabase Product Roadmap"
summary: "A look at what's coming to Metabase and some of what we recently released."
show_releases_roadmap_nav: true
---
<div class="bootstrap">
<div class="roadmap">
<div class="container">
<div class="releases-roadmap-nav">
<a href="/releases">
{% include svg-icons/stars.html %}
What’s new
</a>
<a href="/roadmap" class="active">
{% include svg-icons/map.html %}
Roadmap
</a>
</div>
<h1>Highlights of what we’re cooking</h1>
</div>
<div class="roadmap__content container">
<div class="roadmap__navigation now">
<button class="roadmap__navigation__now active">{% include svg-icons/lightning.html %} Now</button>
<button class="roadmap__navigation__soon">{% include svg-icons/clock.html %} Soon</button>
<button class="roadmap__navigation__later">{% include svg-icons/moon-and-star.html %} Later</button>
</div>
<div class="roadmap__entries">
<div class="roadmap__entry">
<div class="roadmap__tiles__header roadmap__tiles__header__now">
Actively being built
</div>
<div class="roadmap__tiles roadmap__tiles__now">
{% for entry in site.data.roadmap.now %}
{% include roadmap-entry.html entry=entry %}
{% endfor %}
</div>
</div>
<div class="roadmap__entry">
<div class="roadmap__tiles__header roadmap__tiles__header__soon">
Planned for the next release or two
</div>
<div class="roadmap__tiles roadmap__tiles__soon">
{% for entry in site.data.roadmap.soon %}
{% include roadmap-entry.html entry=entry %}
{% endfor %}
</div>
</div>
<div class="roadmap__entry">
<div class="roadmap__tiles__header roadmap__tiles__header__later">
Coming in the next 6 months or so
</div>
<div class="roadmap__tiles roadmap__tiles__later">
{% for entry in site.data.roadmap.later %}
{% include roadmap-entry.html entry=entry %}
{% endfor %}
</div>
</div>
<p>Want to see what we shipped recently?
<a href="/releases"> See what’s new <img class="chevron-blue-right" src="/images/chevron_blue_right.svg"></a>
</p>
</div>
<div class="roadmap__right-sidebar">
<div>
<div>
<p>Keep in mind these are non-exhaustive plans and subject to change. Plans are always clearer for the near future than far out. Features may not be available in all plans.</p>
</div>
<div>
<p><b>Have a great feature idea?</b></p>
<a href="https://github.com/metabase/metabase/issues/new/choose">Submit on Github <img class="chevron-blue-right" src="/images/chevron_blue_right.svg"></a>
</div>
</div>
<div>
<h6>{% include svg-icons/stars.html %}What’s new</h6>
<p>Want to see what we shipped recently?</p>
<a href="/releases">See what’s new <img class="chevron-blue-right" src="/images/chevron_blue_right.svg"></a>
</div>
</div>
</div>
</div>
</div>
<script src="/js/roadmap.js"></script>
<script src="https://unpkg.com/@popperjs/core@2/dist/umd/popper.min.js"></script>
<script src="https://unpkg.com/tippy.js@6/dist/tippy-bundle.umd.js"></script>
<script src="https://unpkg.com/@popperjs/core@2/dist/umd/popper.js"></script>
<script>
var applyTT = document.querySelectorAll(".apply-tooltip");
tippy(applyTT, {
appendTo: 'parent',
duration: [0, 0],
placement: "auto",
trigger: "mouseenter click",
popperOptions: {
strategy: "absolute",
modifiers: [
{
name: "flip",
options: {
fallbackPlacements: ["top", "right"],
},
},
{
name: "preventOverflow",
options: {
altAxis: true,
boundary: "window",
tether: false,
},
},
],
},
});
</script>