@webitel/ui-sdk 25.4.68 → 25.4.69
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/types/components/wt-dual-panel/wt-dual-panel.vue.d.ts +2 -0
- package/dist/types/components/wt-page-wrapper/wt-page-wrapper.vue.d.ts +9 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +22 -8
- package/dist/ui-sdk.umd.cjs +1 -1
- package/package.json +1 -1
- package/src/components/wt-dual-panel/wt-dual-panel.vue +5 -1
- package/src/components/wt-page-wrapper/wt-page-wrapper.vue +5 -1
|
@@ -5,9 +5,11 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
7
|
$emit: (event: "update:side-panel-size", ...args: any[]) => void;
|
|
8
|
+
hideHeader: boolean;
|
|
8
9
|
actionsPanel: boolean;
|
|
9
10
|
disableResize: boolean;
|
|
10
11
|
$props: {
|
|
12
|
+
readonly hideHeader?: boolean;
|
|
11
13
|
readonly actionsPanel?: boolean;
|
|
12
14
|
readonly disableResize?: boolean;
|
|
13
15
|
};
|
|
@@ -1,14 +1,23 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
hideHeader: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
2
6
|
actionsPanel: {
|
|
3
7
|
type: BooleanConstructor;
|
|
4
8
|
default: boolean;
|
|
5
9
|
};
|
|
6
10
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
hideHeader: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
7
15
|
actionsPanel: {
|
|
8
16
|
type: BooleanConstructor;
|
|
9
17
|
default: boolean;
|
|
10
18
|
};
|
|
11
19
|
}>> & Readonly<{}>, {
|
|
20
|
+
hideHeader: boolean;
|
|
12
21
|
actionsPanel: boolean;
|
|
13
22
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
23
|
export default _default;
|