@webitel/ui-sdk 26.8.4 → 26.8.5
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.
|
@@ -102,9 +102,9 @@ declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, i
|
|
|
102
102
|
"onReorder:row"?: (...args: any[]) => any;
|
|
103
103
|
"onColumn-resize"?: (...args: any[]) => any;
|
|
104
104
|
}>, {
|
|
105
|
+
headers: WtTableHeader[];
|
|
105
106
|
data: Array<unknown>;
|
|
106
107
|
lazy: boolean;
|
|
107
|
-
headers: WtTableHeader[];
|
|
108
108
|
dataKey: string;
|
|
109
109
|
sortable: boolean;
|
|
110
110
|
selectable: boolean;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import 'vidstack/bundle';
|
|
2
|
+
import 'vue-multiselect/dist/vue-multiselect.css';
|
|
3
|
+
import '@webitel/styleguide/fonts';
|
|
4
|
+
import './css/main.css';
|
|
5
|
+
import './css/tailwind.css';
|
|
6
|
+
import type { AxiosInstance } from 'axios';
|
|
7
|
+
import type { App } from 'vue';
|
|
8
|
+
import type { Router } from 'vue-router';
|
|
9
|
+
import { fillIconsRepository } from './assets/icons';
|
|
10
|
+
export { fillIconsRepository };
|
|
11
|
+
export type WebitelUiInstallOptions = {
|
|
12
|
+
eventBus: unknown;
|
|
13
|
+
globals?: Record<string, unknown>;
|
|
14
|
+
/** Accepted for app wiring; not consumed by the plugin today. */
|
|
15
|
+
router?: Router;
|
|
16
|
+
};
|
|
17
|
+
export type WebitelUiPlugin = {
|
|
18
|
+
install(app: App, options: WebitelUiInstallOptions): void;
|
|
19
|
+
generateInstance: (options?: Record<string, unknown>) => AxiosInstance;
|
|
20
|
+
};
|
|
21
|
+
declare const plugin: WebitelUiPlugin;
|
|
22
|
+
export default plugin;
|