@ledvance/ui-biz-bundle 1.1.22 → 1.1.23
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/modules/flags/FlagInfo.tsx +11 -13
package/package.json
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import I18n from "@ledvance/base/src/i18n";
|
|
2
|
-
import res from "@ledvance/base/src/res";
|
|
3
2
|
import { SceneNodeTransitionMode } from "@ledvance/ui-biz-bundle/src/modules/scene/SceneInfo";
|
|
4
3
|
|
|
5
4
|
type HSV = {
|
|
@@ -28,6 +27,17 @@ export interface FlagUiInfo extends FlagItemInfo{
|
|
|
28
27
|
}
|
|
29
28
|
|
|
30
29
|
export const defFlagList: FlagUiInfo[] = [
|
|
30
|
+
{
|
|
31
|
+
id: 231,
|
|
32
|
+
version: 0,
|
|
33
|
+
mode: SceneNodeTransitionMode.Jump,
|
|
34
|
+
speed: 70,
|
|
35
|
+
name: I18n.getLang('flag_leverkusen'),
|
|
36
|
+
whiteColors: [
|
|
37
|
+
{ brightness: 100, colorTemp: 0},
|
|
38
|
+
],
|
|
39
|
+
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 60, s: 100, v: 100}]
|
|
40
|
+
},
|
|
31
41
|
{
|
|
32
42
|
id: 255,
|
|
33
43
|
version: 0,
|
|
@@ -295,16 +305,4 @@ export const defFlagList: FlagUiInfo[] = [
|
|
|
295
305
|
],
|
|
296
306
|
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}]
|
|
297
307
|
},
|
|
298
|
-
{
|
|
299
|
-
id: 231,
|
|
300
|
-
version: 0,
|
|
301
|
-
mode: SceneNodeTransitionMode.Jump,
|
|
302
|
-
speed: 70,
|
|
303
|
-
name: I18n.getLang('flag_leverkusen'),
|
|
304
|
-
icon: res.leverkusen_icon,
|
|
305
|
-
whiteColors: [
|
|
306
|
-
{ brightness: 100, colorTemp: 0},
|
|
307
|
-
],
|
|
308
|
-
colors: [{h: 360, s: 100, v: 100}, {h: 0, s: 0, v: 100}, {h: 60, s: 100, v: 100}]
|
|
309
|
-
},
|
|
310
308
|
]
|