@ledvance/base 1.3.67 → 1.3.68
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 +1 -1
- package/src/composeLayout.tsx +1 -3
package/package.json
CHANGED
package/src/composeLayout.tsx
CHANGED
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
NativeProps,
|
|
11
11
|
setGroupDevices,
|
|
12
12
|
setGroupNativeProps,
|
|
13
|
-
setNativeProps,
|
|
13
|
+
setNativeProps,
|
|
14
14
|
setSystemTimeFormat,
|
|
15
15
|
setTimeZone,
|
|
16
16
|
UAGroupInfo,
|
|
@@ -26,7 +26,6 @@ interface Props {
|
|
|
26
26
|
ldvDevInfo: LdvDevInfo
|
|
27
27
|
uaGroupInfo: UAGroupInfoProps
|
|
28
28
|
colorScheme?: string
|
|
29
|
-
newPalette?: boolean
|
|
30
29
|
}
|
|
31
30
|
|
|
32
31
|
interface LdvDevInfo extends DeviceInfo {
|
|
@@ -132,7 +131,6 @@ const composeLayout = (component: React.ComponentType) => {
|
|
|
132
131
|
dispatch(setTimeZone(timeZone))
|
|
133
132
|
})
|
|
134
133
|
|
|
135
|
-
dispatch(setNewPalette(!!props.newPalette || true))
|
|
136
134
|
}
|
|
137
135
|
|
|
138
136
|
initReduxDeviceNativeProps(ldvDevInfo: LdvDevInfo) {
|