Skip to content

Commit 4453daf

Browse files
authored
Merge pull request #112 from markteekman/next
Next
2 parents cafd20e + 9545a96 commit 4453daf

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.astro/data-store.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[["Map",1,2],"meta::meta",["Map",3,4],"astro-version","5.0.5"]
1+
[["Map",1,2],"meta::meta",["Map",3,4,5,6],"astro-version","5.1.3","astro-config-digest","{\"root\":{},\"srcDir\":{},\"publicDir\":{},\"outDir\":{},\"cacheDir\":{},\"compressHTML\":true,\"base\":\"/\",\"trailingSlash\":\"ignore\",\"output\":\"static\",\"scopedStyleStrategy\":\"attribute\",\"build\":{\"format\":\"directory\",\"client\":{},\"server\":{},\"assets\":\"_astro\",\"serverEntry\":\"entry.mjs\",\"redirects\":true,\"inlineStylesheets\":\"auto\",\"concurrency\":1},\"server\":{\"open\":false,\"host\":false,\"port\":4321,\"streaming\":true},\"redirects\":{},\"image\":{\"endpoint\":{\"route\":\"/_image\"},\"service\":{\"entrypoint\":\"astro/assets/services/sharp\",\"config\":{}},\"domains\":[],\"remotePatterns\":[]},\"devToolbar\":{\"enabled\":true},\"markdown\":{\"syntaxHighlight\":\"shiki\",\"shikiConfig\":{\"langs\":[],\"langAlias\":{},\"theme\":\"github-dark\",\"themes\":{},\"wrap\":false,\"transformers\":[]},\"remarkPlugins\":[],\"rehypePlugins\":[],\"remarkRehype\":{},\"gfm\":true,\"smartypants\":true},\"security\":{\"checkOrigin\":true},\"env\":{\"schema\":{},\"validateSecrets\":false},\"experimental\":{\"clientPrerender\":false,\"contentIntellisense\":false,\"responsiveImages\":false},\"legacy\":{\"collections\":false}}"]

.astro/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"_variables": {
3-
"lastUpdateCheck": 1733168096785
3+
"lastUpdateCheck": 1736275209506
44
}
55
}

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "accessible-astro-starter",
33
"description": "An Accessible Starter Theme for Astro including several accessibility features and tools to help you build faster.",
4-
"version": "3.2.3",
4+
"version": "3.2.4",
55
"author": "Mark Teekman",
66
"homepage": "https://accessible-astro.netlify.app/",
77
"scripts": {
@@ -11,14 +11,14 @@
1111
"preview": "astro preview"
1212
},
1313
"devDependencies": {
14-
"@astrojs/mdx": "^4.0.2",
15-
"@astrojs/partytown": "^2.1.2",
16-
"@astrojs/tailwind": "^5.1.3",
14+
"@astrojs/mdx": "^4.0.3",
15+
"@astrojs/partytown": "^2.1.3",
16+
"@astrojs/tailwind": "^5.1.4",
1717
"@iconify-json/ion": "^1.2.1",
1818
"@iconify-json/mdi": "^1.2.1",
1919
"@typescript-eslint/eslint-plugin": "^6.21.0",
2020
"@typescript-eslint/parser": "^6.21.0",
21-
"astro": "^5.0.5",
21+
"astro": "^5.1.3",
2222
"astro-compress": "^2.3.5",
2323
"astro-icon": "^1.1.4",
2424
"eslint": "^8.57.0",

src/layouts/DefaultLayout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ const {
7171
html,
7272
body {
7373
height: 100%;
74-
overflow-x: hidden;
7574
}
7675

7776
body {
7877
display: flex;
7978
flex-direction: column;
8079
color: var(--font-color);
8180
background-color: var(--background);
81+
overflow-x: hidden;
8282

8383
main {
8484
flex: 1 0 auto;

src/pages/accessible-components.astro

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
<h1>Accessible Components</h1>
2525
<p class="text-2xl">
2626
This theme has a lot of extra a11y components provided by the <a
27-
href="https://github.com/markteekman/accessible-astro-components">Accessible Astro Component</a
27+
href="https://github.com/markteekman/accessible-astro-components">Accessible Astro Components</a
2828
> NPM package to help you build accessible pages faster:
2929
</p>
3030
</div>
@@ -159,23 +159,23 @@ import {
159159
<Notification>
160160
<Icon name="ion:notifications-outline" /><p><strong>Message:</strong> This is a notification!</p>
161161
</Notification>
162-
<Notification type="info">
162+
<Notification role="status" type="info">
163163
<Icon name="ion:information-circle-outline" /><p>
164164
<strong>Info:</strong> This is a notification of type info.
165165
</p>
166166
</Notification>
167-
<Notification type="success">
167+
<Notification role="status" type="success">
168168
<Icon name="ion:checkbox-outline" /><p>
169169
<strong>Success:</strong> This is a notification of type success.
170170
</p>
171171
</Notification>
172-
<Notification type="warning">
172+
<Notification role="status" type="warning">
173173
<Icon name="ion:warning-outline" /><p>
174174
<strong>Warning:</strong> This is a notification of type warning and goes on multiple lines to see how that
175175
looks.
176176
</p>
177177
</Notification>
178-
<Notification type="error">
178+
<Notification role="alert" type="error">
179179
<Icon name="ion:alert-circle-outline" /><p>
180180
<strong>Error:</strong> This is a notification of type error.
181181
</p>

0 commit comments

Comments
 (0)