-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html-old
335 lines (315 loc) · 12.1 KB
/
index.html-old
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Storybook</title>
<script type="module" src="index.js" defer></script>
<link href="index.css" rel="stylesheet">
</head>
<body>
<wc-canvas>
<wc-navbar backgroundColor="dark">
<wc-nav>
<wc-nav-item><wc-icon name="list">menu</wc-icon></wc-nav-item>
<wc-nav-item>File</wc-nav-item>
<wc-nav-item>Edit</wc-nav-item>
<wc-nav-item>Selection</wc-nav-item>
<wc-nav-item>View</wc-nav-item>
<wc-nav-item disabled>Disabled</wc-nav-item>
<wc-nav-spacer></wc-nav-spacer>
<wc-nav-item justify="right"><wc-icon name="question-square">help</wc-icon></wc-nav-item>
</wc-nav>
</wc-navbar>
<wc-sidebar backgroundColor="light">
<wc-nav vertical>
<wc-nav-item>
<nobr><wc-icon name="house" size="medium"></wc-icon> Home</nobr>
</wc-nav-item>
<wc-nav-item>
<nobr><wc-icon name="speedometer" size="medium"></wc-icon> Dashboard</nobr>
</wc-nav-item>
<wc-nav-item>
<nobr><wc-icon name="table" size="medium"></wc-icon> Orders</nobr>
</wc-nav-item>
<wc-nav-item>
<nobr><wc-icon name="grid" size="medium"></wc-icon> Products</nobr>
</wc-nav-item>
<wc-nav-item>
<nobr><wc-icon name="person-circle" size="medium"></wc-icon> Customers</nobr>
</wc-nav-item>
<wc-nav-spacer></wc-nav-spacer>
<wc-nav-item>
<nobr><wc-icon name="question-circle" size="medium"></wc-icon> Help</nobr>
</wc-nav-item>
</wc-nav>
</wc-sidebar>
<wc-content>
<div style="background-color: #fcfcfc; padding: 5px;">
<wc-tab-group id="tab-group" backgroundColor="light">
<wc-tab name="tab-tables" selected><wc-icon name="table" size="medium"></wc-icon> Tables</wc-tab>
<wc-tab name="tab-buttons">Buttons</wc-tab>
<wc-tab name="tab-badges">Badges</wc-tab>
<wc-tab name="tab-icons">Icons</wc-tab>
<wc-tab name="tab-code">Code</wc-tab>
<wc-tab name="tab-disabled" disabled><wc-icon name="person-circle" size="medium"></wc-icon>
Disabled</wc-tab>
</wc-tab-group>
<wc-view-group id="view-group" backgroundColor="light">
<wc-view name="tab-tables" selected>
<div class="container">
<h1>Tables</h1>
<wc-table id="table" backgroundColor="black" stripedRows>Table of Fruit</wc-table>
<script>
document.getElementById('table').data = [
{ fruit: 'apple', color: 'green', weight: '100gr' },
{ fruit: 'banana', color: 'yellow', weight: '140gr' }
];
</script>
</div>
</wc-view>
<wc-view name="tab-buttons">
<div class="container">
<h1>Buttons</h1>
<h3>Individual</h3>
<wc-button name="save" link="http://news.bbc.co.uk/" default>Save</wc-button>
<wc-button name="retry">Retry</wc-button>
<h3>Group</h3>
<wc-button-group>
<wc-button name="save" link="http://news.bbc.co.uk/">Save</wc-button>
<wc-button name="retry">Retry</wc-button>
<wc-button name="cancel" default>Cancel</wc-button>
</wc-button-group>
</div>
</wc-view>
<wc-view name="tab-badges">
<div class="container">
<h1>Badge</h1>
<h3>Individual</h3>
<wc-badge textTransform="uppercase">default</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="primary">primary</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="secondary">secondary</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="success">success</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="warning">warning</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="error">error</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="light">light</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="dark">dark</wc-badge>
<hr>
<h3>Group</h3>
<wc-badge-group>
<wc-badge textTransform="uppercase">default</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="primary">primary</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="secondary">secondary</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="success">success</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="warning">warning</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="error">error</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="light">light</wc-badge>
<wc-badge textTransform="uppercase" backgroundColor="dark">dark</wc-badge>
</wc-badge-group>
</div>
</wc-view>
<wc-view name="tab-icons">
<div class="container">
<h1>Icon</h1>
<wc-icon name="0-circle-fill"></wc-icon> DEFAULT
<wc-icon name="1-circle-fill" size="small"></wc-icon> SMALL
<wc-icon name="2-circle-fill" size="medium"></wc-icon> MEDIUM
<wc-icon name="3-circle-fill" size="large"></wc-icon> LARGE
<wc-icon name="4-circle-fill" size="xlarge"></wc-icon> XLARGE
</div>
</wc-view>
<wc-view name="tab-code">
<div class="container">
<h1>Code</h1>
<div style="background-color: #fcfcfc; padding: 5px;">
<wc-code language="javascript">
console.log('hello');
console.log('hello');
console.log('hello');
/* this is some more javascript */
console.log('hello');
</wc-code>
</div>
</div>
</wc-view>
</wc-view-group>
</div>
</div>
<div class="container wc-card">
<h1>Close Button</h1>
<div
style="position:relative; margin: 0 100px 0 100px; padding: 5px; border: 5px solid aliceblue; background-color: aliceblue;">
<wc-close name="close"></wc-close>
<p>Here is some content within a container</p>
</div>
</div>
<hr>
</div>
<hr>
<div class="container">
<h1>Modal</h1>
<wc-button name="modal">Pop-up</wc-button>
<wc-modal>
<wc-close name="modal-close"></wc-close>
<p>Here is some content within a modal</p>
</wc-modal>
<wc-sidemodal>
<wc-close name="modal-close"></wc-close>
<wc-nav vertical>
<wc-nav-item>
<nobr><wc-icon name="house" size="medium"></wc-icon> Home</nobr>
</wc-nav-item>
<wc-nav-item>
<nobr><wc-icon name="speedometer" size="medium"></wc-icon> Dashboard</nobr>
</wc-nav-item>
<wc-nav-item>
<nobr><wc-icon name="table" size="medium"></wc-icon> Orders</nobr>
</wc-nav-item>
<wc-nav-item>
<nobr><wc-icon name="grid" size="medium"></wc-icon> Products</nobr>
</wc-nav-item>
<wc-nav-item>
<nobr><wc-icon name="person-circle" size="medium"></wc-icon> Customers</nobr>
</wc-nav-item>
<wc-nav-spacer></wc-nav-spacer>
<wc-nav-item>
<nobr><wc-icon name="question-circle" size="medium"></wc-icon> Help</nobr>
</wc-nav-item>
</wc-nav>
</wc-sidemodal>
</div>
<hr>
<div class="container">
<form method="POST" action="#" onSubmit="console.log('submit'); return false;">
<h1>Form</h1>
<wc-row backgroundColor="light">
<wc-row-6>
<wc-form-text name="name" placeholder="Name" autocomplete required minlength="3">Name</wc-form-text>
<wc-spacer></wc-spacer>
<wc-form-text name="email" placeholder="Email" pattern="^\S+@\S+$" description="Email Address (optional)"
autocomplete minlength="3">Email
Address</wc-form-text>
<wc-spacer></wc-spacer>
<wc-form-date name="date" placeholder="Date of Birth" labelabove>Date of
Birth</wc-form-date>
</wc-row-6>
<wc-row-6>
<wc-form-text name="address" placeholder="Address" labelabove rows="6"
description="Shipping address (optional)">Address</wc-form-text>
</wc-row-6>
</wc-row>
<wc-row backgroundColor="light">
<wc-row-12>
<wc-spacer></wc-spacer>
<wc-button-group>
<wc-button name="save" submit default>Save</wc-button>
<wc-button name="save" submit>Cancel</wc-button>
</wc-button-group>
<wc-spacer></wc-spacer>
</wc-row-12>
</wc-row>
</form>
</div>
<hr>
<div class="container">
<h1>Row Layout</h1>
<h3>Two Columns</h3>
<wc-row backgroundColor="light">
<wc-row-6>
Left Hand Side
</wc-row-6>
<wc-row-6>
Right Hand Side
</wc-row-6>
</wc-row>
<hr />
<h3>Three Columns</h3>
<wc-row> <!-- 1, 2, 3, 4, 6, 9 and 12 are defined -->
<wc-row-4>
Left
</wc-row-4>
<wc-row-4>
Middle
</wc-row-4>
<wc-row-4>
Right
</wc-row-4>
</wc-row>
<hr />
<h2>Four Columns</h2>
<wc-row> <!-- 1, 2, 3, 4, 6, 9 and 12 are defined -->
<wc-row-3>
Col 1
</wc-row-3>
<wc-row-3>
Col 2
</wc-row-3>
<wc-row-3>
Col 3
</wc-row-3>
<wc-row-3>
Col 4
</wc-row-3>
</wc-row>
<hr />
<h2>Six Columns</h2>
<wc-row> <!-- 1, 2, 3, 4, 6, 9 and 12 are defined -->
<wc-row-2>
Col 1
</wc-row-2>
<wc-row-2>
Col 2
</wc-row-2>
<wc-row-2>
Col 3
</wc-row-2>
<wc-row-2>
Col 4
</wc-row-2>
<wc-row-2>
Col 5
</wc-row-2>
<wc-row-2>
Col 6
</wc-row-2>
</wc-row>
<hr />
</div>
</wc-content>
<wc-sidebar>
<wc-nav vertical>
<wc-nav-item>
<nobr><wc-icon name="house" size="medium"></wc-icon> Home</nobr>
</wc-nav-item>
<wc-nav-item>
<nobr><wc-icon name="speedometer" size="medium"></wc-icon> Dashboard</nobr>
</wc-nav-item>
<wc-nav-item>
<nobr><wc-icon name="table" size="medium"></wc-icon> Orders</nobr>
</wc-nav-item>
<wc-nav-item>
<nobr><wc-icon name="grid" size="medium"></wc-icon> Products</nobr>
</wc-nav-item>
<wc-nav-item>
<nobr><wc-icon name="person-circle" size="medium"></wc-icon> Customers</nobr>
</wc-nav-item>
<wc-nav-spacer></wc-nav-spacer>
<wc-nav-item>
<nobr><wc-icon name="question-circle" size="medium"></wc-icon> Help</nobr>
</wc-nav-item>
</wc-nav>
</wc-sidebar>
<wc-navbar backgroundColor="light">
<wc-nav>
<wc-nav-item><wc-icon name="list">menu</wc-icon></wc-nav-item>
<wc-nav-item>File</wc-nav-item>
<wc-nav-item>Edit</wc-nav-item>
<wc-nav-item>Selection</wc-nav-item>
<wc-nav-item>View</wc-nav-item>
<wc-nav-item disabled>Disabled</wc-nav-item>
<wc-nav-item justify="right"><wc-icon name="question-square">help</wc-icon></wc-nav-item>
</wc-nav>
</wc-navbar>
</wc-canvas>
</body>
</html>