aura-glass 2.0.19 → 2.0.20

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.
@@ -122,7 +122,7 @@ export declare const useAIPersonalization: (userId: string) => {
122
122
  };
123
123
  export declare const useInteractionRecording: (componentId: string, userId: string) => {
124
124
  startInteraction: (type: UserInteraction["type"], context?: string) => {
125
- type: "click" | "focus" | "scroll" | "hover" | "gesture" | "type" | "voice" | "gaze";
125
+ type: "type" | "click" | "focus" | "scroll" | "hover" | "gesture" | "voice" | "gaze";
126
126
  target: string;
127
127
  context: string;
128
128
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aura-glass",
3
- "version": "2.0.19",
3
+ "version": "2.0.20",
4
4
  "description": "A comprehensive glassmorphism design system for React applications with 142+ production-ready components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -21,13 +21,14 @@
21
21
  },
22
22
  "files": [
23
23
  "dist",
24
- "src/workers",
24
+ "workers",
25
25
  "README.md",
26
26
  "LICENSE"
27
27
  ],
28
28
  "scripts": {
29
29
  "dev": "rollup -c --watch",
30
- "build": "rollup -c",
30
+ "copy:workers": "mkdir -p workers && cp -r src/workers/* workers/",
31
+ "build": "npm run copy:workers && rollup -c",
31
32
  "build:server": "tsc --project tsconfig.server.json",
32
33
  "typecheck": "tsc --noEmit",
33
34
  "lint": "eslint src --fix",
File without changes
File without changes
File without changes