@kakadu/components 1.1.10 → 1.1.11

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 (2) hide show
  1. package/index.d.ts +1 -0
  2. package/package.json +7 -5
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './build/index';
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@kakadu/components",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "description": "Kakadu components library",
5
5
  "license": "MIT",
6
6
  "main": "./build/index.js",
7
7
  "module": "./build/index.mjs",
8
- "types": "./build/index.d.ts",
8
+ "types": "./index.d.ts",
9
9
  "typesVersions": {
10
10
  "*": {
11
11
  "*": [
@@ -54,7 +54,7 @@
54
54
  },
55
55
  "exports": {
56
56
  ".": {
57
- "types": "./build/index.d.ts",
57
+ "types": "./index.d.ts",
58
58
  "import": "./build/index.mjs",
59
59
  "require": "./build/index.js"
60
60
  },
@@ -369,7 +369,8 @@
369
369
  }
370
370
  },
371
371
  "files": [
372
- "build"
372
+ "build",
373
+ "index.d.ts"
373
374
  ],
374
375
  "publishConfig": {
375
376
  "access": "public"
@@ -475,7 +476,8 @@
475
476
  "ignore": [
476
477
  ".vercel/",
477
478
  "build/",
478
- "public/**/*.js"
479
+ "public/**/*.js",
480
+ "index.d.ts"
479
481
  ]
480
482
  }
481
483
  }