@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "25.10.50",
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;
@@ -119,7 +119,7 @@ const actions = {
119
119
  let sort;
120
120
 
121
121
  if (field) {
122
- sort = field === header.field ? nextSort : currentSort;
122
+ sort = field === header.field ? nextSort : null;
123
123
  } else {
124
124
  sort = nextSort; // null
125
125
  }
@@ -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. '