@fto-consult/expo-ui 2.35.0 → 2.35.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/package.json
CHANGED
|
@@ -1651,16 +1651,17 @@ export default class CommonDatagridComponent extends AppComponent {
|
|
|
1651
1651
|
})
|
|
1652
1652
|
}
|
|
1653
1653
|
return <Menu
|
|
1654
|
-
title = "Type d'affichage"
|
|
1654
|
+
title = {"Type d'affichage ["+activeType.label+"]"}
|
|
1655
1655
|
items = {m}
|
|
1656
1656
|
anchor = {(p)=>{
|
|
1657
1657
|
return <Pressable {...p} style={[theme.styles.row]}>
|
|
1658
1658
|
<Icon
|
|
1659
1659
|
{...p}
|
|
1660
1660
|
name = {activeType.icon}
|
|
1661
|
+
color = {theme.colors.primaryOnSurface}
|
|
1661
1662
|
title = {"Les données s'affichent actuellement en {0}. Cliquez pour modifier le type d'affichage".sprintf(activeType.label)}
|
|
1662
1663
|
/>
|
|
1663
|
-
{this.isDashboard() && <Label textBold>Type d'affichage</Label>||null}
|
|
1664
|
+
{this.isDashboard() && <Label textBold primaryOnSurface>{activeType.label||"Type d'affichage"}</Label>||null}
|
|
1664
1665
|
</Pressable>
|
|
1665
1666
|
}}
|
|
1666
1667
|
/>
|