@smallwebco/tinypivot-vue 1.0.79 → 1.0.80
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 +87 -1
- package/dist/components/AIAnalyst.vue.d.ts +3 -3
- package/dist/components/AIAnalyst.vue.d.ts.map +1 -1
- package/dist/components/ChartBuilder.vue.d.ts +3 -3
- package/dist/components/ChartBuilder.vue.d.ts.map +1 -1
- package/dist/components/DataGrid.vue.d.ts +4 -4
- package/dist/components/DataGrid.vue.d.ts.map +1 -1
- package/dist/components/PivotConfig.vue.d.ts +2 -0
- package/dist/components/PivotConfig.vue.d.ts.map +1 -1
- package/dist/components/PivotSkeleton.vue.d.ts +2 -0
- package/dist/components/PivotSkeleton.vue.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/tinypivot-vue.js +2043 -2032
- package/dist/tinypivot-vue.js.map +1 -1
- package/dist/tinypivot-vue.umd.cjs +21 -21
- package/dist/tinypivot-vue.umd.cjs.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -45,6 +45,92 @@ const data = [
|
|
|
45
45
|
</template>
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
+
## Theming
|
|
49
|
+
|
|
50
|
+
TinyPivot ships 22 themes — 2 neutral (`light`, `dark`) plus 10 brand themes each with a light and dark variant. Themes are applied via the `theme` prop on `DataGrid`.
|
|
51
|
+
|
|
52
|
+
### Quick start
|
|
53
|
+
|
|
54
|
+
```vue
|
|
55
|
+
<DataGrid :data="data" theme="slate-dark" />
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
`theme="auto"` resolves to `'light'` or `'dark'` based on the user's system preference (`prefers-color-scheme`).
|
|
59
|
+
|
|
60
|
+
### Available themes
|
|
61
|
+
|
|
62
|
+
| Theme | Accent | Vibe |
|
|
63
|
+
|---|---|---|
|
|
64
|
+
| `light` / `dark` / `auto` | indigo / violet | TinyPivot defaults — neutral cool grays |
|
|
65
|
+
| `slate` / `slate-dark` | `#4f46e5` indigo | Linear / Stripe — cool neutral |
|
|
66
|
+
| `zinc` / `zinc-dark` | near-mono | Vercel / Anthropic — minimalist |
|
|
67
|
+
| `indigo` / `indigo-dark` | `#6366f1` vivid indigo | Premium SaaS |
|
|
68
|
+
| `violet` / `violet-dark` | `#8b5cf6` purple | Data viz / AI tools |
|
|
69
|
+
| `emerald` / `emerald-dark` | `#10b981` green | Fintech / finance |
|
|
70
|
+
| `sky` / `sky-dark` | `#0ea5e9` light blue | Productivity / airy |
|
|
71
|
+
| `rose` / `rose-dark` | `#f43f5e` warm pink | Friendly / creator |
|
|
72
|
+
| `amber` / `amber-dark` | `#f59e0b` warm orange | Energy / wellness |
|
|
73
|
+
| `solar` / `solar-dark` | `#b58900` mustard | Solarized-inspired warm cream + dark teal |
|
|
74
|
+
| `mono` / `mono-dark` | `#000` / `#fff` | Editorial — pure grayscale, high contrast |
|
|
75
|
+
|
|
76
|
+
### Custom themes
|
|
77
|
+
|
|
78
|
+
Brand themes redefine ~25 CSS custom property tokens at the grid root. You can override these in your own CSS to create a custom theme:
|
|
79
|
+
|
|
80
|
+
```vue
|
|
81
|
+
<template>
|
|
82
|
+
<DataGrid :data="data" theme="light" class="my-brand" />
|
|
83
|
+
</template>
|
|
84
|
+
|
|
85
|
+
<style>
|
|
86
|
+
.vpg-data-grid.my-brand {
|
|
87
|
+
--vpg-accent: #ff6b35;
|
|
88
|
+
--vpg-accent-hover: #e55426;
|
|
89
|
+
--vpg-surface-bg: #fafaf7;
|
|
90
|
+
--vpg-surface-panel: #f0eee7;
|
|
91
|
+
/* …override any of the tokens below */
|
|
92
|
+
}
|
|
93
|
+
</style>
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
**Token reference** — these are the variables you can override:
|
|
97
|
+
|
|
98
|
+
- **Surfaces**: `--vpg-surface-bg`, `--vpg-surface-panel`, `--vpg-surface-elevated`, `--vpg-surface-hover`, `--vpg-surface-selected`, `--vpg-surface-striped`
|
|
99
|
+
- **Text**: `--vpg-text-primary`, `--vpg-text-secondary`, `--vpg-text-muted`, `--vpg-text-inverse`
|
|
100
|
+
- **Borders**: `--vpg-border-default`, `--vpg-border-strong`, `--vpg-border-subtle`
|
|
101
|
+
- **Accent**: `--vpg-accent`, `--vpg-accent-hover`, `--vpg-accent-soft-bg`, `--vpg-accent-soft-text`, `--vpg-focus-ring`
|
|
102
|
+
- **States**: `--vpg-state-error`, `--vpg-state-warning`, `--vpg-state-success`, `--vpg-state-info`
|
|
103
|
+
- **Scrollbar**: `--vpg-scrollbar-thumb`, `--vpg-scrollbar-track`
|
|
104
|
+
|
|
105
|
+
Custom theme classes layer on top of any preset, so you can start from `theme="dark"` and tweak just the accent, for example.
|
|
106
|
+
|
|
107
|
+
### Adding a theme switcher
|
|
108
|
+
|
|
109
|
+
Let users pick their own theme — bind a reactive `theme` value to a `<select>`:
|
|
110
|
+
|
|
111
|
+
```vue
|
|
112
|
+
<script setup lang="ts">
|
|
113
|
+
import { DataGrid } from '@smallwebco/tinypivot-vue'
|
|
114
|
+
import '@smallwebco/tinypivot-vue/style.css'
|
|
115
|
+
import { ref } from 'vue'
|
|
116
|
+
|
|
117
|
+
const theme = ref<'light' | 'dark' | 'slate' | 'slate-dark' | 'emerald' | 'emerald-dark'>('dark')
|
|
118
|
+
const data = [/* ... */]
|
|
119
|
+
</script>
|
|
120
|
+
|
|
121
|
+
<template>
|
|
122
|
+
<select v-model="theme">
|
|
123
|
+
<option value="light">Light</option>
|
|
124
|
+
<option value="dark">Dark</option>
|
|
125
|
+
<option value="slate-dark">Slate (dark)</option>
|
|
126
|
+
<option value="emerald-dark">Emerald (dark)</option>
|
|
127
|
+
<!-- …add more themes -->
|
|
128
|
+
</select>
|
|
129
|
+
|
|
130
|
+
<DataGrid :data="data" :theme="theme" />
|
|
131
|
+
</template>
|
|
132
|
+
```
|
|
133
|
+
|
|
48
134
|
## Features
|
|
49
135
|
|
|
50
136
|
| Feature | Free | Pro |
|
|
@@ -79,7 +165,7 @@ const data = [
|
|
|
79
165
|
| `pageSize` | `number` | `50` | Rows per page |
|
|
80
166
|
| `enableColumnResize` | `boolean` | `true` | Drag to resize columns |
|
|
81
167
|
| `enableClipboard` | `boolean` | `true` | Ctrl+C to copy cells |
|
|
82
|
-
| `theme` | `
|
|
168
|
+
| `theme` | `string` | `'light'` | Color theme — see [Theming](#theming) for the full list (22 presets) |
|
|
83
169
|
| `numberFormat` | `'us' \| 'eu' \| 'plain'` | `'us'` | Number display format: US (1,234.56), EU (1.234,56), plain (1234.56) |
|
|
84
170
|
| `dateFormat` | `'us' \| 'eu' \| 'iso'` | `'iso'` | Date display format: US (MM/DD/YYYY), EU (DD/MM/YYYY), ISO (YYYY-MM-DD) |
|
|
85
171
|
| `fieldRoleOverrides` | `Record<string, FieldRole>` | `undefined` | Override auto-detected chart field roles per column (`'dimension'` \| `'measure'` \| `'temporal'`) |
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { AIAnalystConfig, AIConversationUpdateEvent, AIDataLoadedEvent, AIErrorEvent, AIQueryExecutedEvent } from '@smallwebco/tinypivot-core';
|
|
1
|
+
import { AIAnalystConfig, AIConversationUpdateEvent, AIDataLoadedEvent, AIErrorEvent, AIQueryExecutedEvent, ResolvedTheme } from '@smallwebco/tinypivot-core';
|
|
2
2
|
|
|
3
3
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
config: AIAnalystConfig;
|
|
5
|
-
theme?:
|
|
5
|
+
theme?: ResolvedTheme | undefined;
|
|
6
6
|
}>>, {
|
|
7
7
|
loadFullData: () => Promise<Record<string, unknown>[] | null>;
|
|
8
8
|
selectedDataSource: import('vue').ComputedRef<string | undefined>;
|
|
@@ -17,7 +17,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
17
17
|
}) => void;
|
|
18
18
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
19
19
|
config: AIAnalystConfig;
|
|
20
|
-
theme?:
|
|
20
|
+
theme?: ResolvedTheme | undefined;
|
|
21
21
|
}>>> & Readonly<{
|
|
22
22
|
onError?: ((payload: AIErrorEvent) => any) | undefined;
|
|
23
23
|
onDataLoaded?: ((payload: AIDataLoadedEvent) => any) | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AIAnalyst.vue.d.ts","sourceRoot":"","sources":["../../src/components/AIAnalyst.vue"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,OAAO,KAAK,EACV,eAAe,EACf,yBAAyB,EACzB,iBAAiB,EACjB,YAAY,EAEZ,oBAAoB,
|
|
1
|
+
{"version":3,"file":"AIAnalyst.vue.d.ts","sourceRoot":"","sources":["../../src/components/AIAnalyst.vue"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,OAAO,KAAK,EACV,eAAe,EACf,yBAAyB,EACzB,iBAAiB,EACjB,YAAY,EAEZ,oBAAoB,EAEpB,aAAa,EACd,MAAM,4BAA4B,CAAA;;YAgoEzB,eAAe;;;;;;;;;;;;;;;YAAf,eAAe;;;;;;;;;;;;AAPzB,wBAWG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { ChartConfig } from '@smallwebco/tinypivot-core';
|
|
1
|
+
import { ChartConfig, ResolvedTheme } from '@smallwebco/tinypivot-core';
|
|
2
2
|
|
|
3
3
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
data: Record<string, unknown>[];
|
|
5
|
-
theme?:
|
|
5
|
+
theme?: ResolvedTheme | undefined;
|
|
6
6
|
fieldRoleOverrides?: Record<string, import('@smallwebco/tinypivot-core').FieldRole> | undefined;
|
|
7
7
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
8
|
configChange: (config: ChartConfig) => void;
|
|
9
9
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
10
|
data: Record<string, unknown>[];
|
|
11
|
-
theme?:
|
|
11
|
+
theme?: ResolvedTheme | undefined;
|
|
12
12
|
fieldRoleOverrides?: Record<string, import('@smallwebco/tinypivot-core').FieldRole> | undefined;
|
|
13
13
|
}>>> & Readonly<{
|
|
14
14
|
onConfigChange?: ((config: ChartConfig) => any) | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChartBuilder.vue.d.ts","sourceRoot":"","sources":["../../src/components/ChartBuilder.vue"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAEV,WAAW,
|
|
1
|
+
{"version":3,"file":"ChartBuilder.vue.d.ts","sourceRoot":"","sources":["../../src/components/ChartBuilder.vue"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAEV,WAAW,EAGX,aAAa,EACd,MAAM,4BAA4B,CAAA;;UA2qD3B,OAAO,MAAM,EAAE,OAAO,CAAC,EAAE;;;;;;UAAzB,OAAO,MAAM,EAAE,OAAO,CAAC,EAAE;;;;;;AANjC,wBAWG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AIAnalystConfig, AIConversationUpdateEvent, AIDataLoadedEvent, AIErrorEvent, AIQueryExecutedEvent, DateFormat, NumberFormat } from '@smallwebco/tinypivot-core';
|
|
1
|
+
import { AIAnalystConfig, AIConversationUpdateEvent, AIDataLoadedEvent, AIErrorEvent, AIQueryExecutedEvent, DateFormat, NumberFormat, Theme } from '@smallwebco/tinypivot-core';
|
|
2
2
|
|
|
3
3
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
data: Record<string, unknown>[];
|
|
@@ -13,7 +13,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
13
13
|
pageSize?: number | undefined;
|
|
14
14
|
enableColumnResize?: boolean | undefined;
|
|
15
15
|
enableClipboard?: boolean | undefined;
|
|
16
|
-
theme?:
|
|
16
|
+
theme?: Theme | undefined;
|
|
17
17
|
stripedRows?: boolean | undefined;
|
|
18
18
|
exportFilename?: string | undefined;
|
|
19
19
|
enableVerticalResize?: boolean | undefined;
|
|
@@ -89,7 +89,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
89
89
|
pageSize?: number | undefined;
|
|
90
90
|
enableColumnResize?: boolean | undefined;
|
|
91
91
|
enableClipboard?: boolean | undefined;
|
|
92
|
-
theme?:
|
|
92
|
+
theme?: Theme | undefined;
|
|
93
93
|
stripedRows?: boolean | undefined;
|
|
94
94
|
exportFilename?: string | undefined;
|
|
95
95
|
enableVerticalResize?: boolean | undefined;
|
|
@@ -153,7 +153,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
153
153
|
onAiQueryExecuted?: ((payload: AIQueryExecutedEvent) => any) | undefined;
|
|
154
154
|
onAiError?: ((payload: AIErrorEvent) => any) | undefined;
|
|
155
155
|
}>, {
|
|
156
|
-
theme:
|
|
156
|
+
theme: Theme;
|
|
157
157
|
fontSize: 'xs' | 'sm' | 'base';
|
|
158
158
|
dateFormat: DateFormat;
|
|
159
159
|
numberFormat: NumberFormat;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataGrid.vue.d.ts","sourceRoot":"","sources":["../../src/components/DataGrid.vue"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,eAAe,EACf,yBAAyB,EACzB,iBAAiB,EACjB,YAAY,EACZ,oBAAoB,EAGpB,UAAU,EACV,YAAY,
|
|
1
|
+
{"version":3,"file":"DataGrid.vue.d.ts","sourceRoot":"","sources":["../../src/components/DataGrid.vue"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,eAAe,EACf,yBAAyB,EACzB,iBAAiB,EACjB,YAAY,EACZ,oBAAoB,EAGpB,UAAU,EACV,YAAY,EACZ,KAAK,EACN,MAAM,4BAA4B,CAAA;;UAwsH3B,OAAO,MAAM,EAAE,OAAO,CAAC,EAAE;;;;;;;;;;;;;;;;;;;IAoB/B,uEAAuE;;IAEvE,4BAA4B;;IAE5B,0BAA0B;;IAE1B,+DAA+D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA1BzD,OAAO,MAAM,EAAE,OAAO,CAAC,EAAE;;;;;;;;;;;;;;;;;;;IAoB/B,uEAAuE;;IAEvE,4BAA4B;;IAE5B,0BAA0B;;IAE1B,+DAA+D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAbvD,KAAK;cATF,IAAI,GAAG,IAAI,GAAG,MAAM;gBAqBlB,UAAU;kBAFR,YAAY;eAFf,eAAe;aApBjB,OAAO;eACL,MAAM;kBACH,MAAM;eAET,OAAO;kBAEJ,OAAO;kBACP,OAAO;sBACH,OAAO;cACf,MAAM;wBACI,OAAO;qBACV,OAAO;iBAEX,OAAO;oBACJ,MAAM;0BACA,OAAO;mBACd,MAAM;eACV,MAAM;eACN,MAAM;;AAzBpB,wBAoCG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
|
@@ -14,6 +14,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
14
14
|
showRowTotals: boolean;
|
|
15
15
|
showColumnTotals: boolean;
|
|
16
16
|
calculatedFields?: CalculatedField[] | undefined;
|
|
17
|
+
theme?: string | undefined;
|
|
17
18
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
18
19
|
"update:showRowTotals": (value: boolean) => void;
|
|
19
20
|
"update:showColumnTotals": (value: boolean) => void;
|
|
@@ -38,6 +39,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
38
39
|
showRowTotals: boolean;
|
|
39
40
|
showColumnTotals: boolean;
|
|
40
41
|
calculatedFields?: CalculatedField[] | undefined;
|
|
42
|
+
theme?: string | undefined;
|
|
41
43
|
}>>> & Readonly<{
|
|
42
44
|
onUpdateAggregation?: ((field: string, oldAgg: AggregationFunction, newAgg: AggregationFunction) => any) | undefined;
|
|
43
45
|
"onUpdate:showRowTotals"?: ((value: boolean) => any) | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PivotConfig.vue.d.ts","sourceRoot":"","sources":["../../src/components/PivotConfig.vue"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,mBAAmB,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAYvG,UAAU,UAAU;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,OAAO,CAAA;IACxD,WAAW,EAAE,MAAM,CAAA;IACnB,SAAS,EAAE,OAAO,CAAA;CACnB;;
|
|
1
|
+
{"version":3,"file":"PivotConfig.vue.d.ts","sourceRoot":"","sources":["../../src/components/PivotConfig.vue"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,mBAAmB,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAYvG,UAAU,UAAU;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,QAAQ,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,OAAO,CAAA;IACxD,WAAW,EAAE,MAAM,CAAA;IACnB,SAAS,EAAE,OAAO,CAAA;CACnB;;qBA4gCkB,UAAU,EAAE;eAClB,MAAM,EAAE;kBACL,MAAM,EAAE;iBACT,eAAe,EAAE;mBACf,OAAO;sBACJ,OAAO;;;;;;;;;;;;;;;;;;;;qBALR,UAAU,EAAE;eAClB,MAAM,EAAE;kBACL,MAAM,EAAE;iBACT,eAAe,EAAE;mBACf,OAAO;sBACJ,OAAO;;;;;;;;;;;;;;;;;;;;AAX3B,wBAgBG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -19,6 +19,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
19
19
|
activeFilters?: ActiveFilter[] | null | undefined;
|
|
20
20
|
totalRowCount?: number | undefined;
|
|
21
21
|
filteredRowCount?: number | undefined;
|
|
22
|
+
theme?: string | undefined;
|
|
22
23
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
23
24
|
addRowField: (field: string) => void;
|
|
24
25
|
removeRowField: (field: string) => void;
|
|
@@ -41,6 +42,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
41
42
|
activeFilters?: ActiveFilter[] | null | undefined;
|
|
42
43
|
totalRowCount?: number | undefined;
|
|
43
44
|
filteredRowCount?: number | undefined;
|
|
45
|
+
theme?: string | undefined;
|
|
44
46
|
}>>> & Readonly<{
|
|
45
47
|
onUpdateAggregation?: ((field: string, oldAgg: AggregationFunction, newAgg: AggregationFunction) => any) | undefined;
|
|
46
48
|
onAddRowField?: ((field: string) => any) | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PivotSkeleton.vue.d.ts","sourceRoot":"","sources":["../../src/components/PivotSkeleton.vue"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,mBAAmB,EAAE,eAAe,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAWpH,UAAU,YAAY;IACpB,MAAM,EAAE,MAAM,CAAA;IACd,UAAU,EAAE,MAAM,CAAA;IAClB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAA;IACjB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;;
|
|
1
|
+
{"version":3,"file":"PivotSkeleton.vue.d.ts","sourceRoot":"","sources":["../../src/components/PivotSkeleton.vue"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,mBAAmB,EAAE,eAAe,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAWpH,UAAU,YAAY;IACpB,MAAM,EAAE,MAAM,CAAA;IACd,UAAU,EAAE,MAAM,CAAA;IAClB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAA;IACjB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;;eA0zEY,MAAM,EAAE;kBACL,MAAM,EAAE;iBACT,eAAe,EAAE;;kBAEhB,OAAO;mBACN,MAAM,GAAG,IAAI;iBACf,WAAW,GAAG,IAAI;;;;;;;;;;;;;;;;;eANpB,MAAM,EAAE;kBACL,MAAM,EAAE;iBACT,eAAe,EAAE;;kBAEhB,OAAO;mBACN,MAAM,GAAG,IAAI;iBACf,WAAW,GAAG,IAAI;;;;;;;;;;;;;;;;;AAZjC,wBAoBG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|