@kakadu/components 1.1.9 → 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.
@@ -0,0 +1,2 @@
1
+ declare const styles: string;
2
+ export default styles;
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.9",
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
  },
@@ -363,10 +363,14 @@
363
363
  "import": "./build/utilities/scale.mjs",
364
364
  "require": "./build/utilities/scale.js"
365
365
  },
366
- "./components.css": "./build/components.css"
366
+ "./components.css": {
367
+ "types": "./build/components.css.d.ts",
368
+ "default": "./build/components.css"
369
+ }
367
370
  },
368
371
  "files": [
369
- "build"
372
+ "build",
373
+ "index.d.ts"
370
374
  ],
371
375
  "publishConfig": {
372
376
  "access": "public"
@@ -472,7 +476,8 @@
472
476
  "ignore": [
473
477
  ".vercel/",
474
478
  "build/",
475
- "public/**/*.js"
479
+ "public/**/*.js",
480
+ "index.d.ts"
476
481
  ]
477
482
  }
478
483
  }