@tmlmobilidade/ui 20251003.1053.54-staging.0 → 20251003.1758.39
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/index.css +19 -8
- package/dist/index.css.map +1 -1
- package/dist/src/components/inputs/CoordinatesInput/index.js +1 -1
- package/dist/src/components/layout/AppWrapperNotificationCentralItemContent/index.js +25 -15
- package/dist/src/components/layout/AppWrapperNotificationCentralItemContent/index.js.map +1 -1
- package/dist/src/components/layout/AppWrapperNotificationCentralItemContent/styles.module.css.js +1 -1
- package/dist/src/components/layout/AppWrapperNotificationCentralReadList/index.js +1 -1
- package/dist/src/components/layout/AppWrapperNotificationCentralReadList/index.js.map +1 -1
- package/dist/src/components/layout/AppWrapperNotificationCentralUnreadList/index.js +2 -2
- package/dist/src/components/layout/AppWrapperNotificationCentralUnreadList/index.js.map +1 -1
- package/dist/src/components/map/view/MapViewToolbar/index.js +1 -1
- package/dist/src/components/upload/FileUpload/index.js +1 -1
- package/dist/src/contexts/Notifications.context.js +12 -34
- package/dist/src/contexts/Notifications.context.js.map +1 -1
- package/dist/src/providers/AppProvider/index.js +1 -2
- package/dist/src/providers/AppProvider/index.js.map +1 -1
- package/dist/styles-no-reset.css +19 -8
- package/dist/styles.css +19 -8
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -1943,6 +1943,18 @@
|
|
1943
1943
|
background-color: var(--color-system-background-50);
|
1944
1944
|
}
|
1945
1945
|
|
1946
|
+
/* Left side: two stacked rows */
|
1947
|
+
.styles-module_notificationLeftTop__PEOTD {
|
1948
|
+
grid-row: 1;
|
1949
|
+
grid-column: 1;
|
1950
|
+
}
|
1951
|
+
|
1952
|
+
.styles-module_notificationLeftBottom__TlEwW {
|
1953
|
+
grid-row: 2;
|
1954
|
+
grid-column: 1;
|
1955
|
+
align-self: start;
|
1956
|
+
}
|
1957
|
+
|
1946
1958
|
/* Right side: spans both rows */
|
1947
1959
|
.styles-module_notificationRight__3tOSY {
|
1948
1960
|
display: grid;
|
@@ -1954,6 +1966,12 @@
|
|
1954
1966
|
align-items: center;
|
1955
1967
|
}
|
1956
1968
|
|
1969
|
+
.styles-module_notificationRightDelete__awWqb {
|
1970
|
+
display: flex;
|
1971
|
+
align-items: center;
|
1972
|
+
justify-content: end;
|
1973
|
+
}
|
1974
|
+
|
1957
1975
|
.styles-module_notificationRightImage__SjiQh {
|
1958
1976
|
display: flex;
|
1959
1977
|
align-items: center;
|
@@ -1963,8 +1981,6 @@
|
|
1963
1981
|
/* * */
|
1964
1982
|
/* Notification Title */
|
1965
1983
|
.styles-module_notificationTitle__atOaL{
|
1966
|
-
grid-row: 1;
|
1967
|
-
grid-column: 1;
|
1968
1984
|
font-size: 14px;
|
1969
1985
|
font-weight: bold;
|
1970
1986
|
}
|
@@ -1972,9 +1988,6 @@
|
|
1972
1988
|
/* * */
|
1973
1989
|
/* Notification Body */
|
1974
1990
|
.styles-module_notificationBody__zJz0o{
|
1975
|
-
grid-row: 2;
|
1976
|
-
grid-column: 1;
|
1977
|
-
align-self: start;
|
1978
1991
|
font-size: 14px;
|
1979
1992
|
font-weight: normal;
|
1980
1993
|
}
|
@@ -1983,9 +1996,7 @@
|
|
1983
1996
|
/* Notification Delete Icon */
|
1984
1997
|
.styles-module_notificationDeleteIcon__zy-o4 {
|
1985
1998
|
z-index: 998;
|
1986
|
-
|
1987
|
-
align-items: center;
|
1988
|
-
justify-content: end;
|
1999
|
+
justify-content: end;
|
1989
2000
|
color: var(--color-system-icon);
|
1990
2001
|
cursor: pointer;
|
1991
2002
|
}
|