bref-ui 0.0.5 → 0.0.8

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/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Bref: a truly Svelte-esque UI Component Library
2
2
 
3
+ **[Live Demo](https://feuersteiner.github.io/bref/)**
4
+
3
5
  Bref is a Svelte UI component library designed to be minimal, flexible, and easy to use.
4
6
  Think of it as, what if `Shadcn/ui` was built specifically for Svelte, used only CSS styling and no Tailwind CSS, fully embracing Svelte's unique capabilities and idioms.
5
7
 
@@ -53,14 +55,15 @@ Bref handles:
53
55
 
54
56
  ## Base Components
55
57
 
58
+ - [ ] Icon
56
59
  - [ ] Button
60
+ - [ ] Icon Button
57
61
  - [ ] Input
58
62
  - [ ] Textarea
59
63
  - [ ] Select
60
64
  - [ ] Checkbox
61
65
  - [ ] Radio
62
66
  - [ ] Switch
63
- - [ ] Label
64
67
  - [ ] Avatar
65
68
  - [ ] Img
66
69
  - [ ] Icon
@@ -1,2 +1,3 @@
1
1
  export * from './icon-button.svelte';
2
+ export * from './button.svelte';
2
3
  export * from './types.ts';
@@ -1,2 +1,3 @@
1
1
  export * from './icon-button.svelte';
2
+ export * from './button.svelte';
2
3
  export * from "./types.js";
@@ -1,3 +1,4 @@
1
- export * from './icon/index.ts';
2
1
  export * from './types.ts';
2
+ export * from './icon/index.ts';
3
3
  export * from './theme/index.ts';
4
+ export * from './button/index.ts';
@@ -1,3 +1,4 @@
1
- export * from "./icon/index.js";
2
1
  export * from "./types.js";
2
+ export * from "./icon/index.js";
3
3
  export * from "./theme/index.js";
4
+ export * from "./button/index.js";
package/dist/index.js CHANGED
@@ -1,4 +1,2 @@
1
- // Fonts - bundled with the library
2
1
  import '@fontsource-variable/material-symbols-rounded/fill.css';
3
- // Reexport your entry components here
4
2
  export * from "./base/index.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bref-ui",
3
- "version": "0.0.5",
3
+ "version": "0.0.8",
4
4
  "description": "A truly Svelte-esque UI component library - minimal, flexible, pure CSS, no Tailwind",
5
5
  "license": "MIT",
6
6
  "author": "feuerstein",
@@ -8,13 +8,14 @@
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/feuersteiner/bref.git"
10
10
  },
11
- "homepage": "https://github.com/feuersteiner/bref#readme",
11
+ "homepage": "https://feuersteiner.github.io/bref/",
12
12
  "bugs": {
13
13
  "url": "https://github.com/feuersteiner/bref/issues"
14
14
  },
15
15
  "scripts": {
16
16
  "dev": "vite dev",
17
17
  "build": "vite build && npm run prepack",
18
+ "demo-site-build": "vite build",
18
19
  "preview": "vite preview",
19
20
  "prepare": "svelte-kit sync || echo ''",
20
21
  "prepack": "svelte-kit sync && svelte-package && publint",
@@ -46,9 +47,10 @@
46
47
  "devDependencies": {
47
48
  "@eslint/compat": "^1.4.0",
48
49
  "@eslint/js": "^9.39.1",
49
- "@fontsource/spectral": "^5.2.8",
50
50
  "@fontsource/meow-script": "^5.2.8",
51
+ "@fontsource/spectral": "^5.2.8",
51
52
  "@sveltejs/adapter-auto": "^7.0.0",
53
+ "@sveltejs/adapter-static": "^3.0.10",
52
54
  "@sveltejs/kit": "^2.49.1",
53
55
  "@sveltejs/package": "^2.5.7",
54
56
  "@sveltejs/vite-plugin-svelte": "^6.2.1",