@tmlmobilidade/ui 20250915.1142.45 → 20250915.1329.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/index.css +2 -0
- package/dist/index.css.map +1 -1
- package/dist/src/components/filters/FiltersBar/index.js +21 -0
- package/dist/src/components/filters/FiltersBar/index.js.map +1 -1
- package/dist/src/components/inputs/CoordinatesInput/index.js +13 -0
- package/dist/src/components/inputs/CoordinatesInput/index.js.map +1 -1
- package/dist/src/components/layout/AppWrapper/index.js +17 -1
- package/dist/src/components/layout/AppWrapper/index.js.map +1 -1
- package/dist/src/components/map/view/MapViewToolbar/index.js +13 -2
- package/dist/src/components/map/view/MapViewToolbar/index.js.map +1 -1
- package/dist/src/components/upload/FileUpload/index.js +14 -2
- package/dist/src/components/upload/FileUpload/index.js.map +1 -1
- package/dist/src/contexts/Theme.context.js +15 -3
- package/dist/src/contexts/Theme.context.js.map +1 -1
- package/dist/src/hooks/use-user-organization.js +70 -0
- package/dist/src/hooks/use-user-organization.js.map +1 -0
- package/dist/styles-no-reset.css +2 -0
- package/dist/styles.css +2 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -1716,8 +1716,10 @@
|
|
1716
1716
|
z-index: 100;
|
1717
1717
|
display: flex;
|
1718
1718
|
align-items: center;
|
1719
|
+
justify-content: center;
|
1719
1720
|
width: 100%;
|
1720
1721
|
height: 100%;
|
1722
|
+
padding: 10px;
|
1721
1723
|
margin: 0;
|
1722
1724
|
background-color: var(--color-system-background-100);
|
1723
1725
|
border-right: 1px solid var(--color-system-border-100);
|