@transferwise/components 0.0.0-experimental-c654bc3 → 0.0.0-experimental-fe9143f
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/build/main.css +7 -5
- package/build/styles/dimmer/Dimmer.css +0 -3
- package/build/styles/drawer/Drawer.css +3 -0
- package/build/styles/main.css +7 -5
- package/build/styles/modal/Modal.css +4 -2
- package/package.json +1 -1
- package/src/dimmer/Dimmer.css +0 -3
- package/src/dimmer/Dimmer.less +0 -4
- package/src/drawer/Drawer.css +3 -0
- package/src/drawer/Drawer.less +4 -0
- package/src/main.css +7 -5
- package/src/modal/Modal.css +4 -2
- package/src/modal/Modal.less +5 -1
- package/src/modal/Modal.story.tsx +4 -2
package/build/main.css
CHANGED
|
@@ -1801,9 +1801,6 @@ button.np-option {
|
|
|
1801
1801
|
.dimmer.dimmer--exit.dimmer--exit-fade > * {
|
|
1802
1802
|
opacity: 0;
|
|
1803
1803
|
}
|
|
1804
|
-
.dimmer .np-theme-personal {
|
|
1805
|
-
background: transparent;
|
|
1806
|
-
}
|
|
1807
1804
|
.dimmer-content-positioner {
|
|
1808
1805
|
min-height: 100%;
|
|
1809
1806
|
pointer-events: none;
|
|
@@ -1887,6 +1884,9 @@ button.np-option {
|
|
|
1887
1884
|
overflow-y: auto;
|
|
1888
1885
|
flex: 1;
|
|
1889
1886
|
}
|
|
1887
|
+
.np-drawer .np-drawer-content .np-theme-personal {
|
|
1888
|
+
background-color: transparent;
|
|
1889
|
+
}
|
|
1890
1890
|
.np-drawer .np-drawer-footer,
|
|
1891
1891
|
.np-drawer .np-drawer-content {
|
|
1892
1892
|
padding: 16px;
|
|
@@ -3200,9 +3200,11 @@ a {
|
|
|
3200
3200
|
min-height: var(--size-32);
|
|
3201
3201
|
padding-bottom: 4px !important;
|
|
3202
3202
|
}
|
|
3203
|
+
.tw-modal .tw-modal-content .np-theme-personal {
|
|
3204
|
+
background-color: transparent;
|
|
3205
|
+
}
|
|
3203
3206
|
.tw-modal table,
|
|
3204
|
-
.tw-modal .table
|
|
3205
|
-
.tw-modal .np-theme-personal {
|
|
3207
|
+
.tw-modal .table {
|
|
3206
3208
|
background-color: transparent;
|
|
3207
3209
|
}
|
|
3208
3210
|
@media (min-width: 576px) {
|
package/build/styles/main.css
CHANGED
|
@@ -1801,9 +1801,6 @@ button.np-option {
|
|
|
1801
1801
|
.dimmer.dimmer--exit.dimmer--exit-fade > * {
|
|
1802
1802
|
opacity: 0;
|
|
1803
1803
|
}
|
|
1804
|
-
.dimmer .np-theme-personal {
|
|
1805
|
-
background: transparent;
|
|
1806
|
-
}
|
|
1807
1804
|
.dimmer-content-positioner {
|
|
1808
1805
|
min-height: 100%;
|
|
1809
1806
|
pointer-events: none;
|
|
@@ -1887,6 +1884,9 @@ button.np-option {
|
|
|
1887
1884
|
overflow-y: auto;
|
|
1888
1885
|
flex: 1;
|
|
1889
1886
|
}
|
|
1887
|
+
.np-drawer .np-drawer-content .np-theme-personal {
|
|
1888
|
+
background-color: transparent;
|
|
1889
|
+
}
|
|
1890
1890
|
.np-drawer .np-drawer-footer,
|
|
1891
1891
|
.np-drawer .np-drawer-content {
|
|
1892
1892
|
padding: 16px;
|
|
@@ -3200,9 +3200,11 @@ a {
|
|
|
3200
3200
|
min-height: var(--size-32);
|
|
3201
3201
|
padding-bottom: 4px !important;
|
|
3202
3202
|
}
|
|
3203
|
+
.tw-modal .tw-modal-content .np-theme-personal {
|
|
3204
|
+
background-color: transparent;
|
|
3205
|
+
}
|
|
3203
3206
|
.tw-modal table,
|
|
3204
|
-
.tw-modal .table
|
|
3205
|
-
.tw-modal .np-theme-personal {
|
|
3207
|
+
.tw-modal .table {
|
|
3206
3208
|
background-color: transparent;
|
|
3207
3209
|
}
|
|
3208
3210
|
@media (min-width: 576px) {
|
|
@@ -82,9 +82,11 @@
|
|
|
82
82
|
min-height: var(--size-32);
|
|
83
83
|
padding-bottom: 4px !important;
|
|
84
84
|
}
|
|
85
|
+
.tw-modal .tw-modal-content .np-theme-personal {
|
|
86
|
+
background-color: transparent;
|
|
87
|
+
}
|
|
85
88
|
.tw-modal table,
|
|
86
|
-
.tw-modal .table
|
|
87
|
-
.tw-modal .np-theme-personal {
|
|
89
|
+
.tw-modal .table {
|
|
88
90
|
background-color: transparent;
|
|
89
91
|
}
|
|
90
92
|
@media (min-width: 576px) {
|
package/package.json
CHANGED
package/src/dimmer/Dimmer.css
CHANGED
package/src/dimmer/Dimmer.less
CHANGED
package/src/drawer/Drawer.css
CHANGED
package/src/drawer/Drawer.less
CHANGED
package/src/main.css
CHANGED
|
@@ -1801,9 +1801,6 @@ button.np-option {
|
|
|
1801
1801
|
.dimmer.dimmer--exit.dimmer--exit-fade > * {
|
|
1802
1802
|
opacity: 0;
|
|
1803
1803
|
}
|
|
1804
|
-
.dimmer .np-theme-personal {
|
|
1805
|
-
background: transparent;
|
|
1806
|
-
}
|
|
1807
1804
|
.dimmer-content-positioner {
|
|
1808
1805
|
min-height: 100%;
|
|
1809
1806
|
pointer-events: none;
|
|
@@ -1887,6 +1884,9 @@ button.np-option {
|
|
|
1887
1884
|
overflow-y: auto;
|
|
1888
1885
|
flex: 1;
|
|
1889
1886
|
}
|
|
1887
|
+
.np-drawer .np-drawer-content .np-theme-personal {
|
|
1888
|
+
background-color: transparent;
|
|
1889
|
+
}
|
|
1890
1890
|
.np-drawer .np-drawer-footer,
|
|
1891
1891
|
.np-drawer .np-drawer-content {
|
|
1892
1892
|
padding: 16px;
|
|
@@ -3200,9 +3200,11 @@ a {
|
|
|
3200
3200
|
min-height: var(--size-32);
|
|
3201
3201
|
padding-bottom: 4px !important;
|
|
3202
3202
|
}
|
|
3203
|
+
.tw-modal .tw-modal-content .np-theme-personal {
|
|
3204
|
+
background-color: transparent;
|
|
3205
|
+
}
|
|
3203
3206
|
.tw-modal table,
|
|
3204
|
-
.tw-modal .table
|
|
3205
|
-
.tw-modal .np-theme-personal {
|
|
3207
|
+
.tw-modal .table {
|
|
3206
3208
|
background-color: transparent;
|
|
3207
3209
|
}
|
|
3208
3210
|
@media (min-width: 576px) {
|
package/src/modal/Modal.css
CHANGED
|
@@ -82,9 +82,11 @@
|
|
|
82
82
|
min-height: var(--size-32);
|
|
83
83
|
padding-bottom: 4px !important;
|
|
84
84
|
}
|
|
85
|
+
.tw-modal .tw-modal-content .np-theme-personal {
|
|
86
|
+
background-color: transparent;
|
|
87
|
+
}
|
|
85
88
|
.tw-modal table,
|
|
86
|
-
.tw-modal .table
|
|
87
|
-
.tw-modal .np-theme-personal {
|
|
89
|
+
.tw-modal .table {
|
|
88
90
|
background-color: transparent;
|
|
89
91
|
}
|
|
90
92
|
@media (min-width: 576px) {
|
package/src/modal/Modal.less
CHANGED
|
@@ -98,7 +98,7 @@ export const WithoutTitle: Story = {
|
|
|
98
98
|
|
|
99
99
|
export const WithoutTitleMobile: Story = storyConfig(WithoutTitle, { variants: ['mobile'] });
|
|
100
100
|
|
|
101
|
-
export const
|
|
101
|
+
export const WithThemeProviderInContent: Story = {
|
|
102
102
|
args: {
|
|
103
103
|
title: lorem10,
|
|
104
104
|
body: lorem100,
|
|
@@ -111,4 +111,6 @@ export const WithThemeProviderInContentProps: Story = {
|
|
|
111
111
|
),
|
|
112
112
|
};
|
|
113
113
|
|
|
114
|
-
export const
|
|
114
|
+
export const WithThemeProviderInContentMobile: Story = storyConfig(WithThemeProviderInContent, {
|
|
115
|
+
variants: ['mobile'],
|
|
116
|
+
});
|