@webitel/ui-sdk 24.6.27 → 24.6.30
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 +10807 -8077
- package/dist/ui-sdk.umd.cjs +21 -11
- package/package.json +1 -1
- package/src/api/axios/generateInstance.js +5 -2
- package/src/components/wt-app-header/wt-app-navigator.vue +2 -0
- package/src/components/wt-app-header/wt-header-actions.vue +2 -0
- package/src/components/wt-button/wt-button.vue +2 -0
- package/src/components/wt-checkbox/wt-checkbox.vue +1 -1
- package/src/components/wt-chip/wt-chip.scss +3 -0
- package/src/components/wt-context-menu/wt-context-menu.vue +1 -0
- package/src/components/wt-datepicker/wt-datepicker.vue +1 -0
- package/src/components/wt-dummy/wt-dummy.vue +2 -0
- package/src/components/wt-expansion-panel/wt-expansion-panel.vue +2 -0
- package/src/components/wt-headline/wt-headline.vue +1 -0
- package/src/components/wt-headline-nav/wt-headline-nav.vue +2 -0
- package/src/components/wt-icon/wt-icon.vue +0 -1
- package/src/components/wt-indicator/wt-indicator.vue +1 -0
- package/src/components/wt-input/wt-input.vue +1 -0
- package/src/components/wt-input-info/wt-input-info.vue +1 -0
- package/src/components/wt-label/wt-label.vue +1 -0
- package/src/components/wt-navigation-bar/wt-navigation-bar.vue +1 -1
- package/src/components/wt-notification/wt-notification.vue +2 -1
- package/src/components/wt-notifications-bar/wt-notifications-bar.vue +1 -0
- package/src/components/wt-pagination/wt-pagination.vue +1 -0
- package/src/components/wt-player/wt-player.vue +2 -0
- package/src/components/wt-popup/wt-popup.vue +1 -0
- package/src/components/wt-radio/wt-radio.vue +1 -1
- package/src/components/wt-search-bar/wt-search-bar.vue +1 -0
- package/src/components/wt-select/_multiselect.scss +2 -0
- package/src/components/wt-switcher/wt-switcher.vue +1 -1
- package/src/components/wt-table/wt-table.vue +1 -0
- package/src/components/wt-table-column-select/wt-table-column-select.vue +2 -0
- package/src/components/wt-tabs/wt-tabs.vue +1 -0
- package/src/components/wt-textarea/wt-textarea.vue +1 -0
- package/src/components/wt-time-input/wt-time-input.vue +2 -0
- package/src/components/wt-tooltip/wt-tooltip.vue +1 -0
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import axios from 'axios';
|
|
2
2
|
|
|
3
3
|
// 'X-Webitel-Access' ~ 'X-Access-Token'
|
|
4
|
-
const generateInstance = ({
|
|
4
|
+
const generateInstance = ({
|
|
5
|
+
interceptors,
|
|
6
|
+
baseURL,
|
|
7
|
+
} = {}) => {
|
|
5
8
|
const instance = axios.create({
|
|
6
|
-
baseURL
|
|
9
|
+
baseURL,
|
|
7
10
|
headers: {
|
|
8
11
|
'X-Webitel-Access': localStorage.getItem('access-token') || '',
|
|
9
12
|
},
|
|
@@ -197,11 +197,11 @@ export default {
|
|
|
197
197
|
</style>
|
|
198
198
|
|
|
199
199
|
<style lang="scss" scoped>
|
|
200
|
+
@import 'src/css/main.scss';
|
|
200
201
|
|
|
201
202
|
.wt-navigation-bar__menu-btn {
|
|
202
203
|
display: block;
|
|
203
204
|
width: fit-content;
|
|
204
|
-
width: -moz-fit-content;
|
|
205
205
|
}
|
|
206
206
|
|
|
207
207
|
.wt-navigation-bar__nav {
|
|
@@ -130,6 +130,8 @@ export default {
|
|
|
130
130
|
</script>
|
|
131
131
|
|
|
132
132
|
<style lang="scss" scoped>
|
|
133
|
+
@import 'src/css/main.scss';
|
|
134
|
+
|
|
133
135
|
$list-height: 400px;
|
|
134
136
|
$list-width-sm: calc(500px - var(--spacing-xl)); // all popup width - (paddings + overflow-padding)
|
|
135
137
|
$list-width-md: calc(800px - var(--spacing-xl)); // all popup width - (paddings + overflow-padding)
|