@agile-team/mach-table-vue 0.4.0 → 0.4.1

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.
@@ -0,0 +1,2 @@
1
+ declare const stylesheet: string;
2
+ export default stylesheet;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agile-team/mach-table-vue",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Official Vue 3 adapter for the MachTable enterprise data grid",
5
5
  "keywords": [
6
6
  "vue",
@@ -41,22 +41,33 @@
41
41
  "types": "./dist/index.d.cts",
42
42
  "default": "./dist/index.cjs"
43
43
  }
44
+ },
45
+ "./styles.css": {
46
+ "types": "./dist/mach-table.css.d.ts",
47
+ "default": "./dist/mach-table.css"
48
+ },
49
+ "./styles/mach-table.css": {
50
+ "types": "./dist/mach-table.css.d.ts",
51
+ "default": "./dist/mach-table.css"
44
52
  }
45
53
  },
46
54
  "files": [
47
55
  "dist"
48
56
  ],
49
- "sideEffects": false,
57
+ "sideEffects": [
58
+ "**/*.css"
59
+ ],
60
+ "dependencies": {
61
+ "@agile-team/mach-table": "0.4.1"
62
+ },
50
63
  "peerDependencies": {
51
- "vue": ">=3.2.0",
52
- "@agile-team/mach-table": "0.4.0"
64
+ "vue": ">=3.2.0"
53
65
  },
54
66
  "devDependencies": {
55
- "vue": "^3.5.13",
56
- "@agile-team/mach-table": "0.4.0"
67
+ "vue": "^3.5.13"
57
68
  },
58
69
  "scripts": {
59
- "build": "tsup",
70
+ "build": "tsup && node ../../scripts/copy-adapter-style.mjs vue",
60
71
  "typecheck": "tsc --noEmit",
61
72
  "test": "vitest run",
62
73
  "test:coverage": "vitest run --coverage"