@webitel/ui-sdk 25.10.50 → 25.10.51
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/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +3 -3
- package/dist/ui-sdk.umd.cjs +2 -2
- package/package.json +1 -1
- package/src/components/wt-dual-panel/wt-dual-panel.vue +2 -2
- package/src/store/new/modules/tableStoreModule/tableStoreModule.js +1 -1
- package/types/components/wt-table/wt-table.vue.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "25.10.
|
|
3
|
+
"version": "25.10.51",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run lint:fix || true) && npm run publish-lib",
|
|
@@ -97,7 +97,7 @@ $side-panel-md-width: 320px;
|
|
|
97
97
|
&__main {
|
|
98
98
|
@extend %wt-scrollbar;
|
|
99
99
|
flex: 1 1 auto;
|
|
100
|
-
overflow: auto;
|
|
100
|
+
overflow-x: auto;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
&__header,
|
|
@@ -122,7 +122,7 @@ $side-panel-md-width: 320px;
|
|
|
122
122
|
background: var(--wt-dual-panel-content-wrapper-color);
|
|
123
123
|
padding: var(--wt-dual-panel-section-padding);
|
|
124
124
|
min-width: 0;
|
|
125
|
-
overflow: auto;
|
|
125
|
+
// overflow: auto;
|
|
126
126
|
|
|
127
127
|
&--md {
|
|
128
128
|
flex: 0 0 $side-panel-md-width;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { DataTableProps } from 'primevue';
|
|
2
|
-
import type { WtTableHeader } from './types/WtTable';
|
|
3
2
|
import { VirtualScrollerLazyEvent } from 'primevue/virtualscroller';
|
|
3
|
+
import type { WtTableHeader } from './types/WtTable';
|
|
4
4
|
interface Props extends DataTableProps {
|
|
5
5
|
/**
|
|
6
6
|
* 'Accepts list of header objects. Draws text depending on "text" property, looks for data values through "value", "show" boolean controls visibility of a column (if undefined, all visible by default). ' Column width is calculated by "width" param. By default, sets 140px. '
|