Skip to content

Commit 67626c4

Browse files
committed
chore update dependencies
1 parent 3d1f8c8 commit 67626c4

8 files changed

Lines changed: 286 additions & 239 deletions

File tree

v2-html-classless/index.html

Lines changed: 5 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1" />
66
<meta name="color-scheme" content="light dark" />
77
<title>Class-less preview • Pico CSS</title>
8-
<meta
9-
name="description"
10-
content="A class-less example, without dependencies."
11-
/>
8+
<meta name="description" content="A class-less example, without dependencies." />
129

1310
<!-- Pico.css -->
1411
<link
1512
rel="stylesheet"
16-
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2.0.0-rc3/css/pico.classless.min.css"
13+
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2.0.0-rc4/css/pico.classless.min.css"
1714
/>
1815
</head>
1916

@@ -56,6 +53,7 @@ <h2>Preview</h2>
5653
name="email"
5754
placeholder="Email address"
5855
aria-label="Email address"
56+
autocomplete="email"
5957
required
6058
/>
6159
<button type="submit">Subscribe</button>
@@ -274,60 +272,6 @@ <h2>Form elements</h2>
274272
</section>
275273
<!-- ./ Form elements-->
276274

277-
<!-- Tables -->
278-
<section id="tables">
279-
<h2>Tables</h2>
280-
<figure>
281-
<table role="grid">
282-
<thead>
283-
<tr>
284-
<th scope="col">#</th>
285-
<th scope="col">Heading</th>
286-
<th scope="col">Heading</th>
287-
<th scope="col">Heading</th>
288-
<th scope="col">Heading</th>
289-
<th scope="col">Heading</th>
290-
<th scope="col">Heading</th>
291-
<th scope="col">Heading</th>
292-
</tr>
293-
</thead>
294-
<tbody>
295-
<tr>
296-
<th scope="row">1</th>
297-
<td>Cell</td>
298-
<td>Cell</td>
299-
<td>Cell</td>
300-
<td>Cell</td>
301-
<td>Cell</td>
302-
<td>Cell</td>
303-
<td>Cell</td>
304-
</tr>
305-
<tr>
306-
<th scope="row">2</th>
307-
<td>Cell</td>
308-
<td>Cell</td>
309-
<td>Cell</td>
310-
<td>Cell</td>
311-
<td>Cell</td>
312-
<td>Cell</td>
313-
<td>Cell</td>
314-
</tr>
315-
<tr>
316-
<th scope="row">3</th>
317-
<td>Cell</td>
318-
<td>Cell</td>
319-
<td>Cell</td>
320-
<td>Cell</td>
321-
<td>Cell</td>
322-
<td>Cell</td>
323-
<td>Cell</td>
324-
</tr>
325-
</tbody>
326-
</table>
327-
</figure>
328-
</section>
329-
<!-- ./ Tables -->
330-
331275
<!-- Modal -->
332276
<section id="modal">
333277
<h2>Modal</h2>
@@ -383,12 +327,12 @@ <h2>Article</h2>
383327
<h2>Group</h2>
384328
<form>
385329
<fieldset role="group">
386-
<input type="email" placeholder="Enter your email" />
330+
<input name="email" type="email" placeholder="Enter your email" autocomplete="email" />
387331
<input type="submit" value="Subscribe" />
388332
</fieldset>
389333
</form>
390334
</section>
391-
<!-- ./ Modal -->
335+
<!-- ./ Group -->
392336

393337
<!-- Progress -->
394338
<section id="progress">

v2-html/index.html

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1" />
66
<meta name="color-scheme" content="light dark" />
77
<title>Preview • Pico CSS</title>
8-
<meta
9-
name="description"
10-
content="A pure HTML example, without dependencies."
11-
/>
8+
<meta name="description" content="A pure HTML example, without dependencies." />
129

1310
<!-- Pico.css -->
1411
<link
1512
rel="stylesheet"
16-
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2.0.0-rc3/css/pico.min.css"
13+
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2.0.0-rc4/css/pico.min.css"
1714
/>
1815
</head>
1916

@@ -64,6 +61,7 @@ <h2>Preview</h2>
6461
name="email"
6562
placeholder="Email address"
6663
aria-label="Email address"
64+
autocomplete="email"
6765
required
6866
/>
6967
<button type="submit">Subscribe</button>
@@ -323,8 +321,8 @@ <h2>Form elements</h2>
323321
<!-- Tables -->
324322
<section id="tables">
325323
<h2>Tables</h2>
326-
<figure>
327-
<table role="grid">
324+
<div class="overflow-auto">
325+
<table class="striped">
328326
<thead>
329327
<tr>
330328
<th scope="col">#</th>
@@ -370,7 +368,7 @@ <h2>Tables</h2>
370368
</tr>
371369
</tbody>
372370
</table>
373-
</figure>
371+
</div>
374372
</section>
375373
<!-- ./ Tables -->
376374

@@ -429,12 +427,12 @@ <h2>Article</h2>
429427
<h2>Group</h2>
430428
<form>
431429
<fieldset role="group">
432-
<input type="email" placeholder="Enter your email" />
430+
<input name="email" type="email" placeholder="Enter your email" autocomplete="email" />
433431
<input type="submit" value="Subscribe" />
434432
</fieldset>
435433
</form>
436434
</section>
437-
<!-- ./ Modal -->
435+
<!-- ./ Group -->
438436

439437
<!-- Progress -->
440438
<section id="progress">

v2-react-classless-login/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@
1313
"react-dom": "^18.2.0"
1414
},
1515
"devDependencies": {
16-
"@babel/core": "^7.23.7",
17-
"@babel/preset-env": "^7.23.8",
16+
"@babel/core": "^7.23.9",
17+
"@babel/preset-env": "^7.23.9",
1818
"@babel/preset-react": "^7.23.3",
19-
"@picocss/pico": "2.0.0-rc3",
19+
"@picocss/pico": "2.0.0-rc4",
2020
"babel-loader": "^9.1.3",
2121
"copy-webpack-plugin": "^12.0.2",
2222
"css-loader": "^6.9.1",
2323
"html-webpack-plugin": "^5.6.0",
2424
"sass": "^1.70.0",
2525
"sass-loader": "^14.0.0",
2626
"style-loader": "^3.3.4",
27-
"webpack": "^5.89.0",
27+
"webpack": "^5.90.0",
2828
"webpack-cli": "^5.1.4",
2929
"webpack-dev-server": "^4.15.1"
3030
},

0 commit comments

Comments
 (0)