@appkit/dek-lib 0.1.0 → 0.2.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.
@@ -1 +1,2 @@
1
- export declare function updateData(email: string, password: string): Promise<void>;
1
+ import { DekPluginFactory } from '@appkit/dek-plugin';
2
+ export declare function updateData(email: string, password: string, plugin?: DekPluginFactory): Promise<void>;
@@ -0,0 +1,2 @@
1
+ declare const DevBoard: () => import("react/jsx-runtime").JSX.Element;
2
+ export default DevBoard;
@@ -0,0 +1,2 @@
1
+ declare const EmptyBoard: () => import("react/jsx-runtime").JSX.Element;
2
+ export default EmptyBoard;
@@ -0,0 +1,2 @@
1
+ declare const ComponentScreen: () => import("react/jsx-runtime").JSX.Element;
2
+ export default ComponentScreen;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@appkit/dek-lib",
3
3
  "private": false,
4
- "version": "0.1.0",
4
+ "version": "0.2.1",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "build": "tsc && vite build",
@@ -57,11 +57,5 @@
57
57
  ],
58
58
  "main": "./dist/index.umd.js",
59
59
  "module": "./dist/index.es.js",
60
- "types": "./dist/index.d.ts",
61
- "Xexports": {
62
- ".": {
63
- "import": "./dist/index.es.js",
64
- "require": "./dist/index.umd.js"
65
- }
66
- }
60
+ "types": "./dist/index.d.ts"
67
61
  }