@webitel/ui-sdk 3.2.126 → 3.2.127
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.common.js +606 -384
- package/dist/ui-sdk.common.js.map +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.umd.js +608 -386
- package/dist/ui-sdk.umd.js.map +1 -1
- package/dist/ui-sdk.umd.min.js +1 -1
- package/dist/ui-sdk.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/wt-app-header/wt-app-header.vue +4 -1
- package/src/components/wt-avatar/wt-avatar.vue +4 -1
- package/src/components/wt-badge/wt-badge.vue +4 -1
- package/src/components/wt-button/wt-button.vue +4 -1
- package/src/components/wt-button-select/wt-button-select.vue +5 -1
- package/src/components/wt-checkbox/wt-checkbox.vue +4 -1
- package/src/components/wt-chip/wt-chip.vue +1 -1
- package/src/components/wt-context-menu/wt-context-menu.vue +4 -1
- package/src/components/wt-datepicker/wt-datepicker.vue +4 -1
- package/src/components/wt-divider/wt-divider.vue +4 -1
- package/src/components/wt-headline/wt-headline.vue +4 -1
- package/src/components/wt-headline-nav/wt-headline-nav.vue +4 -1
- package/src/components/wt-icon/wt-icon.vue +3 -1
- package/src/components/wt-indicator/wt-indicator.vue +4 -1
- package/src/components/wt-input/wt-input.vue +4 -1
- package/src/components/wt-input-info/wt-input-info.vue +4 -1
- package/src/components/wt-label/wt-label.vue +4 -1
- package/src/components/wt-load-bar/wt-load-bar.vue +4 -1
- package/src/components/wt-loader/wt-loader.vue +4 -1
- package/src/components/wt-navigation-bar/wt-navigation-bar.vue +4 -1
- package/src/components/wt-notification/wt-notification.vue +4 -1
- package/src/components/wt-notifications-bar/wt-notifications-bar.vue +4 -1
- package/src/components/wt-page-wrapper/wt-page-wrapper.vue +4 -1
- package/src/components/wt-pagination/wt-pagination.vue +4 -1
- package/src/components/wt-popup/wt-popup.vue +4 -1
- package/src/components/wt-progress-bar/wt-progress-bar.vue +4 -1
- package/src/components/wt-rounded-action/wt-rounded-action.vue +4 -1
- package/src/components/wt-search-bar/wt-search-bar.vue +4 -1
- package/src/components/wt-select/wt-select.vue +4 -1
- package/src/components/wt-slider/wt-slider.vue +4 -1
- package/src/components/wt-status-select/wt-status-select.vue +4 -1
- package/src/components/wt-switcher/wt-switcher.vue +4 -1
- package/src/components/wt-table/wt-table.vue +4 -1
- package/src/components/wt-table-actions/wt-table-actions.vue +4 -1
- package/src/components/wt-tabs/wt-tabs.vue +4 -1
- package/src/components/wt-tags-input/wt-tags-input.vue +3 -1
- package/src/components/wt-textarea/wt-textarea.vue +4 -1
- package/src/components/wt-timepicker/wt-timepicker.vue +4 -1
- package/src/components/wt-tooltip/wt-tooltip.vue +4 -1
package/package.json
CHANGED
|
@@ -102,8 +102,11 @@ const badgeColorVar = computed(() => {
|
|
|
102
102
|
});
|
|
103
103
|
</script>
|
|
104
104
|
|
|
105
|
-
<style lang="scss"
|
|
105
|
+
<style lang="scss">
|
|
106
106
|
@import './variables.scss';
|
|
107
|
+
</style>
|
|
108
|
+
|
|
109
|
+
<style lang="scss" scoped>
|
|
107
110
|
|
|
108
111
|
%wt-avatar-typo-sm {
|
|
109
112
|
font-size: 12px;
|
|
@@ -131,8 +131,11 @@ const datepicker = ref(null); // template ref
|
|
|
131
131
|
const isDateTime = props.mode === 'datetime';
|
|
132
132
|
</script>
|
|
133
133
|
|
|
134
|
-
<style lang="scss"
|
|
134
|
+
<style lang="scss">
|
|
135
135
|
@import './variables.scss';
|
|
136
|
+
</style>
|
|
137
|
+
|
|
138
|
+
<style lang="scss" scoped>
|
|
136
139
|
|
|
137
140
|
.wt-datepicker :deep(.dp__main) {
|
|
138
141
|
.dp__input_icon {
|
|
@@ -66,9 +66,12 @@ export default {
|
|
|
66
66
|
};
|
|
67
67
|
</script>
|
|
68
68
|
|
|
69
|
+
<style lang="scss">
|
|
70
|
+
@import './variables.scss';
|
|
71
|
+
</style>
|
|
72
|
+
|
|
69
73
|
<!--not scoped to change .icon colors-->
|
|
70
74
|
<style lang="scss" scoped>
|
|
71
|
-
@import './variables.scss';
|
|
72
75
|
|
|
73
76
|
.wt-button.wt-rounded-action {
|
|
74
77
|
min-width: auto;
|
|
@@ -140,9 +140,12 @@ export default {
|
|
|
140
140
|
};
|
|
141
141
|
</script>
|
|
142
142
|
|
|
143
|
-
<style lang="scss"
|
|
143
|
+
<style lang="scss">
|
|
144
144
|
@import './variables.scss';
|
|
145
145
|
@import './multiselect.scss';
|
|
146
|
+
</style>
|
|
147
|
+
|
|
148
|
+
<style lang="scss" scoped>
|
|
146
149
|
|
|
147
150
|
.wt-select {
|
|
148
151
|
width: 100%;
|
|
@@ -94,8 +94,11 @@ export default {
|
|
|
94
94
|
};
|
|
95
95
|
</script>
|
|
96
96
|
|
|
97
|
-
<style lang="scss"
|
|
97
|
+
<style lang="scss">
|
|
98
98
|
@import './variables.scss';
|
|
99
|
+
</style>
|
|
100
|
+
|
|
101
|
+
<style lang="scss" scoped>
|
|
99
102
|
|
|
100
103
|
.wt-status-select.wt-select ::v-deep {
|
|
101
104
|
box-shadow: var(--elevation-5);
|
|
@@ -155,10 +155,12 @@ export default {
|
|
|
155
155
|
};
|
|
156
156
|
</script>
|
|
157
157
|
|
|
158
|
-
<style lang="scss"
|
|
158
|
+
<style lang="scss">
|
|
159
159
|
@import './variables.scss';
|
|
160
160
|
@import '../wt-select/multiselect.scss';
|
|
161
|
+
</style>
|
|
161
162
|
|
|
163
|
+
<style lang="scss" scoped>
|
|
162
164
|
.wt-tags-input {
|
|
163
165
|
width: 100%;
|
|
164
166
|
}
|