mediacube-ui 0.1.279 → 0.1.280
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/CHANGELOG.md +2 -0
- package/package.json +1 -1
- package/src/elements/McAvatar/McAvatar.vue +0 -1
- package/src/elements/McBadge/McBadge.vue +1 -1
- package/src/elements/McButton/McButton.vue +2 -1
- package/src/elements/McDatePicker/McDatePicker.vue +1 -1
- package/src/elements/McField/McFieldRadio/McFieldRadioButton/McFieldRadioButton.vue +0 -1
- package/src/elements/McField/McFieldSelect/McFieldSelect.vue +1 -1
- package/src/elements/McField/McFieldText/McFieldText.vue +0 -1
- package/src/elements/McField/McFieldToggle/McFieldToggle.vue +0 -1
- package/src/elements/McNotification/McNotification.vue +0 -1
- package/src/elements/McTitle/McTitle.vue +1 -0
- package/src/elements/McTooltip/McTooltip.vue +2 -1
- package/src/patterns/McChat/McChatComment/McChatComment.vue +0 -1
- package/src/patterns/McChat/McChatForm/McChatForm.vue +0 -1
- package/src/patterns/McCollapse/McCollapse.vue +0 -1
- package/src/patterns/McDropdown/McDropdownPanel/McDropdownPanel.vue +1 -1
- package/src/patterns/McFakeScroll/McFakeScroll.vue +0 -1
- package/src/patterns/McFilter/McFilterTags/McFilterTags.vue +0 -1
- package/src/patterns/McModal/McModal.vue +0 -1
- package/src/patterns/McSideBar/McSideBarButton/McSideBarButton.vue +0 -1
- package/src/patterns/McTable/McTable/McTable.vue +2 -1
- package/src/styles/toast.scss +2 -3
- package/src/templates/layouts/McRoot/McRoot.vue +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.280](https://github.com/MediaCubeCo/mcui/compare/v0.1.279...v0.1.280) (2024-05-31)
|
|
6
|
+
|
|
5
7
|
### [0.1.279](https://github.com/MediaCubeCo/mcui/compare/v0.1.278...v0.1.279) (2024-05-31)
|
|
6
8
|
|
|
7
9
|
### [0.1.278](https://github.com/MediaCubeCo/mcui/compare/v0.1.277...v0.1.278) (2024-05-31)
|
package/package.json
CHANGED
|
@@ -95,8 +95,8 @@ export default {
|
|
|
95
95
|
|
|
96
96
|
<style lang="scss">
|
|
97
97
|
@import '../../styles/mixins';
|
|
98
|
-
@import '../../tokens/border-radius';
|
|
99
98
|
@import '../../tokens/font-families';
|
|
99
|
+
@import '../../tokens/letter-spacings';
|
|
100
100
|
.mc-badge {
|
|
101
101
|
$block-name: &;
|
|
102
102
|
--mc-badge-color: #{$color-white};
|
|
@@ -408,10 +408,11 @@ export default {
|
|
|
408
408
|
|
|
409
409
|
<style lang="scss">
|
|
410
410
|
@import '../../styles/mixins';
|
|
411
|
-
@import '../../tokens/border-radius';
|
|
412
411
|
@import '../../tokens/durations';
|
|
413
412
|
@import '../../tokens/opacities';
|
|
414
413
|
@import '../../tokens/font-families';
|
|
414
|
+
@import '../../tokens/letter-spacings';
|
|
415
|
+
@import '../../tokens/animations';
|
|
415
416
|
.mc-button {
|
|
416
417
|
$block-name: &;
|
|
417
418
|
@include reset();
|
|
@@ -581,8 +581,8 @@ export default {
|
|
|
581
581
|
<style lang="scss">
|
|
582
582
|
@import '~vue2-datepicker/scss/index.scss';
|
|
583
583
|
@import '../../styles/mixins';
|
|
584
|
-
@import '../../tokens/border-radius';
|
|
585
584
|
@import '../../tokens/font-families';
|
|
585
|
+
@import '../../tokens/box-shadows';
|
|
586
586
|
.mc-date-picker {
|
|
587
587
|
$block-name: &;
|
|
588
588
|
|
|
@@ -613,9 +613,9 @@ export default {
|
|
|
613
613
|
|
|
614
614
|
<style lang="scss">
|
|
615
615
|
@import '../../../styles/mixins';
|
|
616
|
-
@import '../../../tokens/border-radius';
|
|
617
616
|
@import '../../../tokens/durations';
|
|
618
617
|
@import '../../../tokens/font-families';
|
|
618
|
+
@import '../../../tokens/box-shadows';
|
|
619
619
|
.mc-field-select {
|
|
620
620
|
$block-name: &;
|
|
621
621
|
--mc-field-select-color: initial;
|
|
@@ -138,9 +138,10 @@ export default {
|
|
|
138
138
|
|
|
139
139
|
<style lang="scss">
|
|
140
140
|
@import '../../styles/mixins';
|
|
141
|
-
@import '../../tokens/border-radius';
|
|
142
141
|
@import '../../tokens/durations';
|
|
143
142
|
@import '../../tokens/font-families';
|
|
143
|
+
@import '../../tokens/box-shadows';
|
|
144
|
+
@import '../../tokens/spacings';
|
|
144
145
|
.mc-tooltip-target {
|
|
145
146
|
display: inline-flex;
|
|
146
147
|
}
|
|
@@ -286,7 +286,6 @@ export default {
|
|
|
286
286
|
<style lang="scss">
|
|
287
287
|
@import '../../styles/mixins';
|
|
288
288
|
@import '../../tokens/z-indexes';
|
|
289
|
-
@import '../../tokens/border-radius';
|
|
290
289
|
@import '../../tokens/durations';
|
|
291
290
|
@import '../../tokens/font-families';
|
|
292
291
|
.v--modal-block-scroll {
|
|
@@ -588,8 +588,9 @@ export default {
|
|
|
588
588
|
|
|
589
589
|
<style lang="scss">
|
|
590
590
|
@import '../../../styles/mixins';
|
|
591
|
-
@import '../../../tokens/border-radius';
|
|
592
591
|
@import '../../../tokens/font-families';
|
|
592
|
+
@import '../../../tokens/animations';
|
|
593
|
+
|
|
593
594
|
@import '~vxe-table/styles/variable.scss';
|
|
594
595
|
|
|
595
596
|
//override variables:
|
package/src/styles/toast.scss
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
.toasted-container {
|
|
2
2
|
$toasted-container-name: &;
|
|
3
|
-
@import '
|
|
4
|
-
@import '
|
|
5
|
-
@import '/src/tokens/border-radius';
|
|
3
|
+
@import './mixins';
|
|
4
|
+
@import '../tokens/z-indexes';
|
|
6
5
|
z-index: $z-index-toasted !important;
|
|
7
6
|
.toasted {
|
|
8
7
|
&.mc-toast {
|