dhre-ui-kit 0.0.177 → 0.0.179
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/lib/index.d.ts +1 -0
- package/lib/index.js +4 -2
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +4 -2
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -251,12 +251,12 @@ const theme = {
|
|
|
251
251
|
dark: "#404040"
|
|
252
252
|
},
|
|
253
253
|
[Theme.BORDER_SEPRATOR]: {
|
|
254
|
-
light: "#
|
|
254
|
+
light: "#F5F5F5",
|
|
255
255
|
dark: "#404040"
|
|
256
256
|
},
|
|
257
257
|
[Theme.BORDER_SEPERATOR_HEADER]: {
|
|
258
258
|
light: "#E1E1E1",
|
|
259
|
-
dark: "#
|
|
259
|
+
dark: "#373737"
|
|
260
260
|
},
|
|
261
261
|
[Theme.WARNING]: {
|
|
262
262
|
light: "#B65E01",
|
|
@@ -4516,6 +4516,7 @@ const PropertyDetails = ({
|
|
|
4516
4516
|
propertyNumber,
|
|
4517
4517
|
hintIcon,
|
|
4518
4518
|
btnIcon,
|
|
4519
|
+
containerStyle,
|
|
4519
4520
|
onRightIconPress
|
|
4520
4521
|
}) => {
|
|
4521
4522
|
const { theme } = useTheme();
|
|
@@ -4524,6 +4525,7 @@ const PropertyDetails = ({
|
|
|
4524
4525
|
{
|
|
4525
4526
|
style: {
|
|
4526
4527
|
...styles.container,
|
|
4528
|
+
...containerStyle,
|
|
4527
4529
|
backgroundColor: theme.SURFACE_SECONDARY,
|
|
4528
4530
|
borderColor: theme.BORDER_SEPERATOR_HEADER
|
|
4529
4531
|
}
|