@wishbone-media/spark 0.31.0 → 0.32.0
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 +7 -21
- package/dist/index.js +1663 -1399
- package/package.json +1 -1
- package/src/components/SparkButton.vue +1 -1
- package/src/components/SparkFileDragUpload.vue +275 -0
- package/src/components/index.js +1 -0
package/README.md
CHANGED
|
@@ -1,28 +1,14 @@
|
|
|
1
1
|
# Spark UI Package
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## Project Overview
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Spark is a Vue 3 UI component library published as `@wishbone-media/spark`. It provides reusable components, composables, stores, and utilities for building authenticated multi-tenant web applications. The library is distributed via npm and designed to be consumed by other Wishbone applications.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
```
|
|
9
|
-
alias spark.relink='pnpm add link:../spark && rm -rf node_modules && pnpm i'
|
|
10
|
-
```
|
|
7
|
+
## Related Projects
|
|
11
8
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
alias spark.public='pnpm remove @wishbone-media/spark && pnpm i @wishbone-media/spark && rm -rf node_modules && pnpm i'
|
|
15
|
-
```
|
|
9
|
+
- [Tabula](../tabula) - Demo/storybook app showcasing Spark components. Also serves as the boilerplate template for new admin apps.
|
|
10
|
+
- [BOLT Web Next](../bolt-web-next) - Production admin interface using Spark. Reference implementation for real-world patterns.
|
|
16
11
|
|
|
17
|
-
|
|
12
|
+
## Documentation
|
|
18
13
|
|
|
19
|
-
|
|
20
|
-
```
|
|
21
|
-
spark.relink # Set tabula to use symblinked local spark at (../spark) for @wishbone-media/spark
|
|
22
|
-
pnpm dev # Serves the tabula in browser
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
#### In Spark folder
|
|
26
|
-
```
|
|
27
|
-
pnpm build --watch # Build spark on change
|
|
28
|
-
```
|
|
14
|
+
- Many existing features have been documented in [docs](./docs) as markdown files
|