@privacykit/web 0.1.10 → 0.1.12

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/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import "./styles.css";
1
+ import "../styles.css";
2
2
  export type InitPrivacyKitOptions = {
3
3
  version?: string;
4
4
  cdnBaseUrl?: string;
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /// <reference path="../privacykit.d.ts" />
2
- import "./styles.css";
2
+ import "../styles.css";
3
3
  const DEFAULT_CDN_BASE_URL = "https://cdn.privacykit.eu";
4
4
  const DEFAULT_VERSION = "v1";
5
5
  function addScript(src, options) {
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  declare module "*.css";
2
2
 
3
- /// <reference path="./privacykit.d.ts" />
3
+ import "./privacykit";
4
4
 
5
5
  export * from './dist/index';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@privacykit/web",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
4
4
  "description": "Developer-friendly GDPR consent management with real enforcement.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./index.d.ts",