@momentum-design/components 0.100.2 → 0.101.1
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/browser/index.js +10 -13
- package/dist/browser/index.js.map +2 -2
- package/dist/components/accordion/accordion.component.d.ts +2 -0
- package/dist/components/accordion/accordion.component.js +2 -0
- package/dist/components/accordionbutton/accordionbutton.component.d.ts +2 -0
- package/dist/components/accordionbutton/accordionbutton.component.js +2 -0
- package/dist/components/accordiongroup/accordiongroup.component.d.ts +2 -0
- package/dist/components/accordiongroup/accordiongroup.component.js +2 -0
- package/dist/components/input/input.styles.js +1 -2
- package/dist/components/popover/popover.styles.js +7 -9
- package/dist/components/tablist/tablist.styles.js +3 -3
- package/dist/custom-elements.json +374 -374
- package/dist/react/accordion/index.d.ts +2 -0
- package/dist/react/accordion/index.js +2 -0
- package/dist/react/accordionbutton/index.d.ts +2 -0
- package/dist/react/accordionbutton/index.js +2 -0
- package/dist/react/accordiongroup/index.d.ts +2 -0
- package/dist/react/accordiongroup/index.js +2 -0
- package/dist/react/index.d.ts +3 -3
- package/dist/react/index.js +3 -3
- package/package.json +1 -1
package/dist/browser/index.js
CHANGED
@@ -2098,15 +2098,13 @@
|
|
2098
2098
|
color: var(--mdc-popover-inverted-text-color);
|
2099
2099
|
}
|
2100
2100
|
|
2101
|
-
:host([color='contrast']) {
|
2102
|
-
|
2103
|
-
|
2104
|
-
|
2105
|
-
}
|
2101
|
+
:host([color='contrast']) .popover-arrow {
|
2102
|
+
background-color: var(--mdc-popover-inverted-background-color);
|
2103
|
+
border-color: var(--mdc-popover-inverted-border-color);
|
2104
|
+
}
|
2106
2105
|
|
2107
|
-
|
2108
|
-
|
2109
|
-
}
|
2106
|
+
:host([color='contrast']) .popover-close {
|
2107
|
+
color: var(--mdc-popover-inverted-text-color);
|
2110
2108
|
}
|
2111
2109
|
|
2112
2110
|
:host::part(popover-content) {
|
@@ -3037,7 +3035,6 @@
|
|
3037
3035
|
--mdc-input-success-border-color: var(--mds-color-theme-text-success-normal);
|
3038
3036
|
--mdc-input-primary-border-color: var(--mds-color-theme-text-accent-normal);
|
3039
3037
|
}
|
3040
|
-
|
3041
3038
|
:host,
|
3042
3039
|
.input-container,
|
3043
3040
|
.input-section,
|
@@ -3104,7 +3101,7 @@
|
|
3104
3101
|
|
3105
3102
|
.prefix-text {
|
3106
3103
|
color: var(--mdc-input-support-text-color);
|
3107
|
-
white-space: nowrap;
|
3104
|
+
white-space: nowrap; /* restrict prefix text to be in one line */
|
3108
3105
|
}
|
3109
3106
|
|
3110
3107
|
:host(:not([disabled])) .input-container:hover {
|
@@ -5386,10 +5383,10 @@
|
|
5386
5383
|
width: var(--mdc-tablist-width);
|
5387
5384
|
display: flex;
|
5388
5385
|
align-items: center;
|
5386
|
+
}
|
5389
5387
|
|
5390
|
-
|
5391
|
-
|
5392
|
-
}
|
5388
|
+
:host ::slotted(mdc-tab) {
|
5389
|
+
width: initial;
|
5393
5390
|
}
|
5394
5391
|
|
5395
5392
|
:host .container {
|