svelora 3.0.0 → 3.0.1

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.
@@ -11,7 +11,7 @@ export type DocsGroup = {
11
11
  };
12
12
  export declare const docsMeta: {
13
13
  readonly name: "Svelora";
14
- readonly version: "v2.2.0";
14
+ readonly version: `v${string}`;
15
15
  readonly npmCommand: "npm install svelora";
16
16
  readonly githubHref: "https://github.com/asphum/svelora";
17
17
  };
@@ -1,6 +1,7 @@
1
+ import packageJson from '../../../package.json' with { type: 'json' };
1
2
  export const docsMeta = {
2
3
  name: 'Svelora',
3
- version: 'v2.2.0',
4
+ version: `v${packageJson.version}`,
4
5
  npmCommand: 'npm install svelora',
5
6
  githubHref: 'https://github.com/asphum/svelora'
6
7
  };
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "version": 1,
3
3
  "packageName": "svelora",
4
- "packageVersion": "3.0.0",
5
- "generatedAt": "2026-06-23T07:37:57.185Z",
4
+ "packageVersion": "3.0.1",
5
+ "generatedAt": "2026-06-23T08:03:53.877Z",
6
6
  "slugs": {
7
7
  "components": [
8
8
  "button",
package/dist/theme.css CHANGED
@@ -280,7 +280,7 @@
280
280
  }
281
281
 
282
282
  body {
283
- @apply bg-surface text-on-surface;
283
+ @apply bg-surface text-on-surface cursor-default;
284
284
  font-family: var(--font-sans-family);
285
285
  }
286
286
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelora",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Modern primitive-based UI component library for Svelte 5",
5
5
  "packageManager": "bun@1.3.14",
6
6
  "author": "asphum",