lty-protocol 1.0.20 → 1.0.21

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lty-protocol",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "main": "dist/lty-protocol.umd.js",
5
5
  "module": "dist/lty-protocol.mjs",
6
6
  "style": "dist/lty-protocol.css",
@@ -1,2 +0,0 @@
1
- export declare const UI_KEY: unique symbol;
2
- export declare const THEME_KEY: unique symbol;
@@ -1,8 +0,0 @@
1
- import { App } from 'vue';
2
- import { UIComponentMap, ThemeConfig } from './types';
3
- export declare function createUIAdapter(options: {
4
- components: UIComponentMap;
5
- theme?: ThemeConfig;
6
- }): {
7
- install(app: App): void;
8
- };
@@ -1,10 +0,0 @@
1
- import { Component } from 'vue';
2
- export interface ComponentModelConfig {
3
- component: Component;
4
- modelProp?: string;
5
- modelEvent?: string;
6
- }
7
- export type UIComponentMap = Partial<Record<string, ComponentModelConfig>>;
8
- export interface ThemeConfig {
9
- [key: string]: string | number | undefined;
10
- }