@webitel/ui-sdk 24.6.39 → 24.6.42
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 +2 -2
- package/dist/ui-sdk.umd.cjs +2 -2
- package/package.json +1 -1
- package/src/api/defaults/getDefaultInstance/getDefaultInstance.js +1 -0
- package/src/components/wt-button-select/wt-button-select.vue +15 -15
- package/src/modules/CSVExport/CSVExport.js +1 -6
- package/src/modules/CSVExport/__tests__/CSVExport.spec.js +2 -12
package/package.json
CHANGED
|
@@ -105,25 +105,25 @@ function atClickaway() {
|
|
|
105
105
|
display: inline-flex;
|
|
106
106
|
align-items: center;
|
|
107
107
|
gap: var(--button-select-buttons-gap);
|
|
108
|
-
}
|
|
109
108
|
|
|
110
|
-
.wt-button-select__button {
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
}
|
|
109
|
+
.wt-button-select__button {
|
|
110
|
+
padding: var(--button-select-button-padding);
|
|
111
|
+
border-radius: var(--border-radius) 0 0 var(--border-radius);
|
|
112
|
+
}
|
|
114
113
|
|
|
115
|
-
.wt-button-select__select-btn {
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
114
|
+
.wt-button-select__select-btn {
|
|
115
|
+
min-width: auto;
|
|
116
|
+
padding: var(--button-select-icon-button-padding);
|
|
117
|
+
border-radius: 0 var(--border-radius) var(--border-radius) 0;
|
|
119
118
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
119
|
+
// OPEN AND SHUT ARROW
|
|
120
|
+
.wt-button-select__select-arrow {
|
|
121
|
+
display: flex;
|
|
122
|
+
transform: rotate(0);
|
|
124
123
|
|
|
125
|
-
|
|
126
|
-
|
|
124
|
+
&--active {
|
|
125
|
+
transform: rotate(180deg);
|
|
126
|
+
}
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
129
|
}
|
|
@@ -1,10 +1,5 @@
|
|
|
1
|
-
<<<<<<< Updated upstream
|
|
2
|
-
import stringify from 'csv-stringify/lib/sync';
|
|
3
|
-
import { saveAs } from 'file-saver-es';
|
|
4
|
-
=======
|
|
5
1
|
import stringify from 'csv-stringify/lib/sync.js';
|
|
6
|
-
import { saveAs } from 'file-saver';
|
|
7
|
-
>>>>>>> Stashed changes
|
|
2
|
+
import { saveAs } from 'file-saver-es';
|
|
8
3
|
import { objSnakeToCamel } from '../../scripts/caseConverters.js';
|
|
9
4
|
|
|
10
5
|
const cast = {
|
|
@@ -1,21 +1,11 @@
|
|
|
1
1
|
import { shallowMount } from '@vue/test-utils';
|
|
2
|
-
<<<<<<< Updated upstream
|
|
3
|
-
import stringify from 'csv-stringify/lib/sync';
|
|
4
|
-
import * as fileSaver from 'file-saver-es';
|
|
5
|
-
import CSVExportMixin from '../mixins/exportCSVMixin.js';
|
|
6
|
-
import '../../../../tests/mocks/localStorageMock.js';
|
|
7
|
-
|
|
8
|
-
vi.mock('csv-stringify/lib/sync');
|
|
9
|
-
vi.mock('file-saver-es', () => ({
|
|
10
|
-
=======
|
|
11
2
|
import stringify from 'csv-stringify/lib/sync.js';
|
|
12
|
-
import * as fileSaver from 'file-saver';
|
|
3
|
+
import * as fileSaver from 'file-saver-es';
|
|
13
4
|
import CSVExportMixin from '../mixins/exportCSVMixin.js';
|
|
14
5
|
import '../../../../tests/mocks/localStorageMock.js';
|
|
15
6
|
|
|
16
7
|
vi.mock('csv-stringify/lib/sync.js');
|
|
17
|
-
vi.mock('file-saver', () => ({
|
|
18
|
-
>>>>>>> Stashed changes
|
|
8
|
+
vi.mock('file-saver-es', () => ({
|
|
19
9
|
saveAs: vi.fn(),
|
|
20
10
|
}));
|
|
21
11
|
|