@datapos/datapos-shared 0.3.58 → 0.3.60

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
@@ -2,7 +2,6 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@datapos/datapos-shared.svg)](https://www.npmjs.com/package/@datapos/datapos-shared)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE)
5
- [![Build Status](https://img.shields.io/badge/build-passing-brightgreen.svg)](#)
6
5
 
7
6
  A TypeScript library containing common declarations and utilities used across other Data Positioning repositories.
8
7
 
@@ -15,7 +15,7 @@ export interface ComponentRef {
15
15
  id: string;
16
16
  label: Record<string, string>;
17
17
  }
18
- export type ComponentTypeId = 'app' | 'connection' | 'connector' | 'engine' | 'focus' | 'model' | 'dataView' | 'eventQuery' | 'presentation' | 'presenter' | 'tutorial';
18
+ export type ComponentTypeId = 'app' | 'connection' | 'connector' | 'dimension' | 'engine' | 'focus' | 'model' | 'dataView' | 'eventQuery' | 'presentation' | 'presenter' | 'recipe' | 'tutorial';
19
19
  export type StatusColorId = 'amber' | 'red' | 'other';
20
20
  export type ComponentStatusId = 'alpha' | 'beta' | 'generalAvailability' | 'notApplicable' | 'preAlpha' | 'proposed' | 'releaseCandidate' | 'unavailable' | 'underReview';
21
21
  export type ComponentStatus = {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@datapos/datapos-shared",
3
3
  "license": "MIT",
4
4
  "private": false,
5
- "version": "0.3.58",
5
+ "version": "0.3.60",
6
6
  "type": "module",
7
7
  "files": [
8
8
  "dist"
@@ -35,7 +35,7 @@
35
35
  },
36
36
  "scripts": {
37
37
  "audit": "npm audit",
38
- "build": "vite build",
38
+ "build": "npx vite build",
39
39
  "bumpVersion": "node -e \"require('@datapos/datapos-development').bumpVersion()\"",
40
40
  "check": "npm outdated; npm-check-updates -i && retire",
41
41
  "document": "license-report --only=prod,peer > LICENSES.json && license-report-check --source ./LICENSES.json --allowed 'MIT' --allowed 'n/a' --allowed 'Apache-2.0' --output=table",