@parqui/vue 1.2.0 → 1.2.2

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.
Files changed (3) hide show
  1. package/LICENSE +18 -0
  2. package/README.md +76 -0
  3. package/package.json +27 -5
package/LICENSE ADDED
@@ -0,0 +1,18 @@
1
+ Business Source License 1.1
2
+
3
+ SPDX short identifier: BUSL-1.1
4
+
5
+ Copyright (c) 2026 Parqui
6
+
7
+ Use of this package is governed by the Business Source License 1.1.
8
+ The licensor for this package is Parqui.
9
+
10
+ Additional Use Grant:
11
+ - Personal, educational, and open-source usage is permitted at no cost.
12
+ - Commercial usage requires a paid Parqui commercial license.
13
+
14
+ Change Date: 2030-01-01
15
+ Change License: Apache-2.0
16
+
17
+ For the full legal text of Business Source License 1.1, see:
18
+ https://mariadb.com/bsl11/
package/README.md ADDED
@@ -0,0 +1,76 @@
1
+ # @parqui/vue
2
+
3
+ [![npm version](https://img.shields.io/npm/v/%40parqui%2Fvue)](https://www.npmjs.com/package/@parqui/vue)
4
+ [![npm downloads](https://img.shields.io/npm/dm/%40parqui%2Fvue)](https://www.npmjs.com/package/@parqui/vue)
5
+
6
+ High-performance Vue 3 Parquet file viewer component for Apache Parquet datasets. Includes virtual scrolling data grid, filtering, sorting, grouping, search, and column controls.
7
+
8
+ ## Why `@parqui/vue`
9
+
10
+ - Ready-to-use Parquet viewer for Vue 3.4+
11
+ - Fast virtualized grid for large parquet datasets
12
+ - Built-in filtering, multi-sort, grouping, and search
13
+ - Smooth integration in data apps, internal tools, and analytics dashboards
14
+ - Uses the same core engine as the React and Angular packages
15
+
16
+ ## Installation
17
+
18
+ ```bash
19
+ npm install @parqui/vue
20
+ ```
21
+
22
+ Peer dependencies:
23
+
24
+ - `vue` `^3.4.0`
25
+
26
+ ## Quick Start
27
+
28
+ ```vue
29
+ <script setup lang="ts">
30
+ import { Parkui } from "@parqui/vue";
31
+ </script>
32
+
33
+ <template>
34
+ <div style="height: 80vh">
35
+ <Parkui />
36
+ </div>
37
+ </template>
38
+ ```
39
+
40
+ With predefined parquet source:
41
+
42
+ ```vue
43
+ <script setup lang="ts">
44
+ import { Parkui } from "@parqui/vue";
45
+ import { sourceFromUrl } from "@parqui/core";
46
+
47
+ const source = sourceFromUrl("https://example.com/data/events.parquet");
48
+ </script>
49
+
50
+ <template>
51
+ <Parkui :source="source" />
52
+ </template>
53
+ ```
54
+
55
+ ## Key Props
56
+
57
+ - `source`: predefined parquet source (`File`, URL source, or custom `ParquetSource`)
58
+ - `columns`: limit visible columns
59
+ - `allowOpen`: enable/disable built-in file open flow
60
+ - `showToolbar`: show/hide toolbar with search and pipeline chips
61
+ - `onMetadataLoad`: callback when parquet metadata is available
62
+ - `onRequestOpen`: custom open handler for desktop/in-app file pickers
63
+
64
+ ## Package Ecosystem
65
+
66
+ - Core engine: [`@parqui/core`](https://www.npmjs.com/package/@parqui/core)
67
+ - React package: [`@parqui/react`](https://www.npmjs.com/package/@parqui/react)
68
+ - Angular wrapper: [`@parqui/angular`](https://www.npmjs.com/package/@parqui/angular)
69
+
70
+ ## Links
71
+
72
+ - Website: [parqui.dev](https://parqui.dev)
73
+
74
+ ## License
75
+
76
+ Business Source License 1.1 (`BUSL-1.1`). See `LICENSE`.
package/package.json CHANGED
@@ -1,7 +1,26 @@
1
1
  {
2
2
  "name": "@parqui/vue",
3
- "version": "1.2.0",
4
- "description": "Vue wrappers around @parqui/react components",
3
+ "version": "1.2.2",
4
+ "description": "Vue 3 Apache Parquet file viewer with virtualized grid, filtering, sorting, and search.",
5
+ "keywords": [
6
+ "parquet",
7
+ "apache parquet",
8
+ "parquet viewer",
9
+ "parquet file viewer",
10
+ "vue parquet viewer",
11
+ "vue data grid",
12
+ "vue data table",
13
+ "virtual scroll",
14
+ "virtualized table",
15
+ "data viewer",
16
+ "dataset viewer",
17
+ "analytics ui",
18
+ "typescript",
19
+ "vue",
20
+ "vue3"
21
+ ],
22
+ "homepage": "https://parqui.dev",
23
+ "author": "Sam Prof",
5
24
  "type": "module",
6
25
  "main": "./dist/parqui-vue.cjs",
7
26
  "module": "./dist/parqui-vue.js",
@@ -19,8 +38,8 @@
19
38
  "dependencies": {
20
39
  "react": "^19.0.0",
21
40
  "react-dom": "^19.0.0",
22
- "@parqui/core": "1.2.0",
23
- "@parqui/react": "1.2.0"
41
+ "@parqui/core": "1.2.2",
42
+ "@parqui/react": "1.2.2"
24
43
  },
25
44
  "devDependencies": {
26
45
  "@types/react": "^19.0.0",
@@ -35,7 +54,10 @@
35
54
  "peerDependencies": {
36
55
  "vue": "^3.4.0"
37
56
  },
38
- "license": "MIT",
57
+ "license": "BUSL-1.1",
58
+ "publishConfig": {
59
+ "access": "public"
60
+ },
39
61
  "scripts": {
40
62
  "build": "vite build",
41
63
  "dev": "vite build --watch",