@onetype/framework 2.0.29 → 2.0.30
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.
- package/lib/items/elements/global/code/code.js +7 -1
- package/lib/items/elements/global/tags/tags.css +22 -0
- package/lib/items/elements/global/tags/tags.js +9 -4
- package/lib/items/elements/navigation/sidebar/sidebar.css +83 -29
- package/lib/items/elements/navigation/sidebar/sidebar.js +16 -2
- package/lib/items/elements/sections/pricing/pricing.js +1 -1
- package/package.json +1 -1
|
@@ -11,11 +11,16 @@ onetype.AddonReady('elements', (elements) =>
|
|
|
11
11
|
label: {
|
|
12
12
|
type: 'string',
|
|
13
13
|
value: ''
|
|
14
|
+
},
|
|
15
|
+
source: {
|
|
16
|
+
type: 'string',
|
|
17
|
+
value: ''
|
|
14
18
|
}
|
|
15
19
|
},
|
|
16
20
|
render: function()
|
|
17
21
|
{
|
|
18
22
|
this.copied = false;
|
|
23
|
+
this.escaped = this.source ? this.source.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>') : '';
|
|
19
24
|
|
|
20
25
|
this.copy = (event, ctx) =>
|
|
21
26
|
{
|
|
@@ -32,7 +37,8 @@ onetype.AddonReady('elements', (elements) =>
|
|
|
32
37
|
<span ot-if="label">{{ label }}</span>
|
|
33
38
|
<button class="copy" ot-click="copy"><i ot-if="!copied">content_copy</i><i ot-if="copied">check</i></button>
|
|
34
39
|
</div>
|
|
35
|
-
<pre class="content"><
|
|
40
|
+
<pre ot-if="escaped" class="content"><div ot-html="escaped"></div></pre>
|
|
41
|
+
<pre ot-if="!escaped" class="content"><slot name="content"></slot></pre>
|
|
36
42
|
</div>
|
|
37
43
|
`;
|
|
38
44
|
}
|
|
@@ -40,3 +40,25 @@
|
|
|
40
40
|
background: var(--ot-brand);
|
|
41
41
|
border-color: var(--ot-brand);
|
|
42
42
|
}
|
|
43
|
+
|
|
44
|
+
/* Dot */
|
|
45
|
+
|
|
46
|
+
.e-4a1d382d > .holder > .tag > .dot
|
|
47
|
+
{
|
|
48
|
+
width: 6px;
|
|
49
|
+
height: 6px;
|
|
50
|
+
border-radius: 50%;
|
|
51
|
+
margin-right: 6px;
|
|
52
|
+
flex-shrink: 0;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.e-4a1d382d > .holder > .tag > .dot-brand { background: var(--ot-brand); }
|
|
56
|
+
.e-4a1d382d > .holder > .tag > .dot-blue { background: var(--ot-blue); }
|
|
57
|
+
.e-4a1d382d > .holder > .tag > .dot-red { background: var(--ot-red); }
|
|
58
|
+
.e-4a1d382d > .holder > .tag > .dot-orange { background: var(--ot-orange); }
|
|
59
|
+
.e-4a1d382d > .holder > .tag > .dot-green { background: var(--ot-green); }
|
|
60
|
+
|
|
61
|
+
.e-4a1d382d > .holder > .tag.active > .dot
|
|
62
|
+
{
|
|
63
|
+
background: white;
|
|
64
|
+
}
|
|
@@ -22,6 +22,11 @@ onetype.AddonReady('elements', (elements) =>
|
|
|
22
22
|
},
|
|
23
23
|
render: function()
|
|
24
24
|
{
|
|
25
|
+
this.normalized = () =>
|
|
26
|
+
{
|
|
27
|
+
return this.items.map(item => typeof item === 'string' ? { label: item } : item);
|
|
28
|
+
};
|
|
29
|
+
|
|
25
30
|
this.select = (tag) =>
|
|
26
31
|
{
|
|
27
32
|
this.active = tag;
|
|
@@ -35,10 +40,10 @@ onetype.AddonReady('elements', (elements) =>
|
|
|
35
40
|
return `
|
|
36
41
|
<div class="holder">
|
|
37
42
|
<button
|
|
38
|
-
ot-for="tag in
|
|
39
|
-
:class="'tag' + (tag === active ? ' active' : '')"
|
|
40
|
-
ot-click="select(tag)"
|
|
41
|
-
>{{ tag }}</button>
|
|
43
|
+
ot-for="tag in normalized()"
|
|
44
|
+
:class="'tag' + (tag.label === active ? ' active' : '')"
|
|
45
|
+
ot-click="select(tag.label)"
|
|
46
|
+
><span ot-if="tag.color" :class="'dot dot-' + tag.color"></span>{{ tag.label }}</button>
|
|
42
47
|
</div>
|
|
43
48
|
`;
|
|
44
49
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.e-210c16c7
|
|
2
2
|
{
|
|
3
3
|
display: flex;
|
|
4
|
-
width:
|
|
4
|
+
width: 240px;
|
|
5
5
|
flex-shrink: 0;
|
|
6
6
|
height: calc(100vh - 48px);
|
|
7
7
|
}
|
|
@@ -11,81 +11,135 @@
|
|
|
11
11
|
display: flex;
|
|
12
12
|
flex-direction: column;
|
|
13
13
|
width: 100%;
|
|
14
|
-
padding: var(--ot-spacing-m)
|
|
15
|
-
gap:
|
|
14
|
+
padding: var(--ot-spacing-m) var(--ot-spacing-s);
|
|
15
|
+
gap: 0;
|
|
16
|
+
overflow-y: auto;
|
|
16
17
|
}
|
|
17
18
|
|
|
18
19
|
/* Group */
|
|
19
20
|
|
|
20
|
-
.e-210c16c7 > .holder > .group
|
|
21
|
+
.e-210c16c7 > .holder > .group,
|
|
22
|
+
.e-210c16c7 > .holder > .bottom > .group
|
|
21
23
|
{
|
|
22
24
|
display: flex;
|
|
23
25
|
flex-direction: column;
|
|
24
26
|
gap: 2px;
|
|
27
|
+
padding: var(--ot-spacing-s) 0;
|
|
28
|
+
border-top: 1px solid var(--ot-bg-3-border);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.e-210c16c7 > .holder > .group:first-child,
|
|
32
|
+
.e-210c16c7 > .holder > .bottom > .group:first-child
|
|
33
|
+
{
|
|
34
|
+
padding-top: 0;
|
|
35
|
+
border-top: none;
|
|
25
36
|
}
|
|
26
37
|
|
|
27
38
|
/* Title */
|
|
28
39
|
|
|
29
|
-
.e-210c16c7 > .holder > .group > .title
|
|
40
|
+
.e-210c16c7 > .holder > .group > .title,
|
|
41
|
+
.e-210c16c7 > .holder > .bottom > .group > .title
|
|
30
42
|
{
|
|
31
|
-
font-size:
|
|
43
|
+
font-size: 10px;
|
|
32
44
|
font-weight: 600;
|
|
33
45
|
color: var(--ot-text-2);
|
|
34
46
|
text-transform: uppercase;
|
|
35
|
-
letter-spacing:
|
|
36
|
-
padding:
|
|
37
|
-
|
|
38
|
-
opacity: 0.6;
|
|
47
|
+
letter-spacing: 1px;
|
|
48
|
+
padding: var(--ot-spacing-x) var(--ot-spacing-s) var(--ot-spacing-s);
|
|
49
|
+
opacity: 0.35;
|
|
39
50
|
}
|
|
40
51
|
|
|
41
52
|
/* Item */
|
|
42
53
|
|
|
43
|
-
.e-210c16c7 > .holder > .group > .item
|
|
54
|
+
.e-210c16c7 > .holder > .group > .item,
|
|
55
|
+
.e-210c16c7 > .holder > .bottom > .group > .item
|
|
44
56
|
{
|
|
45
57
|
display: flex;
|
|
46
58
|
align-items: center;
|
|
47
|
-
gap:
|
|
48
|
-
padding: 0 var(--ot-spacing-
|
|
49
|
-
height: var(--ot-height-
|
|
59
|
+
gap: var(--ot-spacing-s);
|
|
60
|
+
padding: 0 var(--ot-spacing-s);
|
|
61
|
+
height: var(--ot-height-m);
|
|
50
62
|
text-decoration: none;
|
|
51
63
|
color: var(--ot-text-2);
|
|
52
64
|
font-size: var(--ot-size-m);
|
|
53
|
-
font-weight:
|
|
54
|
-
border
|
|
55
|
-
|
|
65
|
+
font-weight: 400;
|
|
66
|
+
border: 1px solid transparent;
|
|
67
|
+
border-radius: var(--ot-radius-m);
|
|
56
68
|
cursor: pointer;
|
|
57
|
-
transition:
|
|
69
|
+
transition: all 0.15s ease;
|
|
58
70
|
}
|
|
59
71
|
|
|
60
|
-
.e-210c16c7 > .holder > .group > .item > i
|
|
72
|
+
.e-210c16c7 > .holder > .group > .item > i,
|
|
73
|
+
.e-210c16c7 > .holder > .bottom > .group > .item > i
|
|
61
74
|
{
|
|
62
|
-
font-size:
|
|
63
|
-
opacity: 0.
|
|
75
|
+
font-size: 20px;
|
|
76
|
+
opacity: 0.4;
|
|
77
|
+
transition: opacity 0.15s ease;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.e-210c16c7 > .holder > .group > .item > span,
|
|
81
|
+
.e-210c16c7 > .holder > .bottom > .group > .item > span
|
|
82
|
+
{
|
|
83
|
+
white-space: nowrap;
|
|
84
|
+
overflow: hidden;
|
|
85
|
+
text-overflow: ellipsis;
|
|
64
86
|
}
|
|
65
87
|
|
|
66
|
-
.e-210c16c7 > .holder > .group > .item > .count
|
|
88
|
+
.e-210c16c7 > .holder > .group > .item > .count,
|
|
89
|
+
.e-210c16c7 > .holder > .bottom > .group > .item > .count
|
|
67
90
|
{
|
|
68
91
|
margin-left: auto;
|
|
69
|
-
font-size:
|
|
92
|
+
font-size: var(--ot-size-s);
|
|
93
|
+
min-width: 20px;
|
|
94
|
+
height: 20px;
|
|
95
|
+
display: flex;
|
|
96
|
+
align-items: center;
|
|
97
|
+
justify-content: center;
|
|
98
|
+
border-radius: 10px;
|
|
99
|
+
background: var(--ot-bg-4);
|
|
70
100
|
color: var(--ot-text-2);
|
|
71
|
-
|
|
101
|
+
font-weight: 500;
|
|
72
102
|
}
|
|
73
103
|
|
|
74
|
-
|
|
104
|
+
/* Hover */
|
|
105
|
+
|
|
106
|
+
.e-210c16c7 > .holder > .group > .item:hover,
|
|
107
|
+
.e-210c16c7 > .holder > .bottom > .group > .item:hover
|
|
75
108
|
{
|
|
76
109
|
color: var(--ot-text-1);
|
|
77
|
-
background: var(--ot-bg-
|
|
110
|
+
background: var(--ot-bg-3);
|
|
78
111
|
}
|
|
79
112
|
|
|
80
|
-
.e-210c16c7 > .holder > .group > .item
|
|
113
|
+
.e-210c16c7 > .holder > .group > .item:hover > i,
|
|
114
|
+
.e-210c16c7 > .holder > .bottom > .group > .item:hover > i
|
|
115
|
+
{
|
|
116
|
+
opacity: 0.6;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/* Active */
|
|
120
|
+
|
|
121
|
+
.e-210c16c7 > .holder > .group > .item.active,
|
|
122
|
+
.e-210c16c7 > .holder > .bottom > .group > .item.active
|
|
81
123
|
{
|
|
82
124
|
color: var(--ot-text-1);
|
|
83
125
|
background: var(--ot-bg-3);
|
|
126
|
+
border: 1px solid var(--ot-bg-3-border);
|
|
127
|
+
font-weight: 500;
|
|
84
128
|
}
|
|
85
129
|
|
|
86
|
-
.e-210c16c7 > .holder > .group > .item.active > i
|
|
130
|
+
.e-210c16c7 > .holder > .group > .item.active > i,
|
|
131
|
+
.e-210c16c7 > .holder > .bottom > .group > .item.active > i
|
|
87
132
|
{
|
|
88
|
-
opacity:
|
|
133
|
+
opacity: 0.9;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/* Bottom */
|
|
137
|
+
|
|
138
|
+
.e-210c16c7 > .holder > .bottom
|
|
139
|
+
{
|
|
140
|
+
display: flex;
|
|
141
|
+
flex-direction: column;
|
|
142
|
+
margin-top: auto;
|
|
89
143
|
}
|
|
90
144
|
|
|
91
145
|
/* Variants */
|
|
@@ -29,11 +29,15 @@ onetype.AddonReady('elements', (elements) =>
|
|
|
29
29
|
{
|
|
30
30
|
const path = onetype.RouteCurrent();
|
|
31
31
|
|
|
32
|
+
this.top = this.groups.filter(g => !g.placement || g.placement === 'top');
|
|
33
|
+
this.bottom = this.groups.filter(g => g.placement === 'bottom');
|
|
34
|
+
|
|
32
35
|
this.isActive = (item) =>
|
|
33
36
|
{
|
|
34
37
|
if(item.href)
|
|
35
38
|
{
|
|
36
|
-
|
|
39
|
+
if(item.match === 'exact' || item.href === '/') return path === item.href;
|
|
40
|
+
return path.startsWith(item.href);
|
|
37
41
|
}
|
|
38
42
|
|
|
39
43
|
return item.value === this.active;
|
|
@@ -52,7 +56,7 @@ onetype.AddonReady('elements', (elements) =>
|
|
|
52
56
|
return `
|
|
53
57
|
<nav :class="'holder ' + variant.join(' ')">
|
|
54
58
|
<slot name="top"></slot>
|
|
55
|
-
<div ot-for="group in
|
|
59
|
+
<div ot-for="group in top" class="group">
|
|
56
60
|
<p ot-if="group.title" class="title">{{ group.title }}</p>
|
|
57
61
|
<a ot-for="item in group.items" :class="'item' + (isActive(item) ? ' active' : '')" :href="item.href || 'javascript:void(0)'" ot-click="handleClick(item)">
|
|
58
62
|
<i ot-if="item.icon">{{ item.icon }}</i>
|
|
@@ -60,6 +64,16 @@ onetype.AddonReady('elements', (elements) =>
|
|
|
60
64
|
<span ot-if="item.count !== undefined" class="count">{{ item.count }}</span>
|
|
61
65
|
</a>
|
|
62
66
|
</div>
|
|
67
|
+
<div ot-if="bottom.length" class="bottom">
|
|
68
|
+
<div ot-for="group in bottom" class="group">
|
|
69
|
+
<p ot-if="group.title" class="title">{{ group.title }}</p>
|
|
70
|
+
<a ot-for="item in group.items" :class="'item' + (isActive(item) ? ' active' : '')" :href="item.href || 'javascript:void(0)'" ot-click="handleClick(item)">
|
|
71
|
+
<i ot-if="item.icon">{{ item.icon }}</i>
|
|
72
|
+
<span>{{ item.label }}</span>
|
|
73
|
+
<span ot-if="item.count !== undefined" class="count">{{ item.count }}</span>
|
|
74
|
+
</a>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
63
77
|
<slot name="bottom"></slot>
|
|
64
78
|
</nav>
|
|
65
79
|
`;
|
|
@@ -66,7 +66,7 @@ onetype.AddonReady('elements', (elements) =>
|
|
|
66
66
|
<span class="text">{{ feature.text }}</span>
|
|
67
67
|
</div>
|
|
68
68
|
</div>
|
|
69
|
-
<div class="action">
|
|
69
|
+
<div ot-if="href" class="action">
|
|
70
70
|
<e-form-button text="Get Started" icon="arrow_forward" :href="href" :variant="highlighted ? ['brand', 'size-m', 'full'] : ['bg-2', 'border', 'size-m', 'full']"></e-form-button>
|
|
71
71
|
</div>
|
|
72
72
|
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onetype/framework",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.30",
|
|
4
4
|
"description": "OneType Framework — Full-stack isomorphic JavaScript framework built from scratch. One addon abstraction powers databases, servers, commands, pages, directives, queues, and more.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/load.js",
|