Add new analytics parameters pathSuffix
Some checks failed
openium/resgen.swift/pipeline/head There was a failure building this commit

This commit is contained in:
2026-01-21 11:39:46 +01:00
parent 7bbb702861
commit b9aac55a76
20 changed files with 216 additions and 70 deletions

View File

@@ -6,16 +6,16 @@ extension ColorYolo {
/// Color red is #FF0000 (light) or #FF0000 (dark)"
public var red: Color {
Color("red")
Color("red", bundle: Bundle.main)
}
/// Color green_alpha_50 is #A000FF00 (light) or #A000FF00 (dark)"
public var green_alpha_50: Color {
Color("green_alpha_50")
Color("green_alpha_50", bundle: Bundle.main)
}
/// Color blue_light_dark is #0000FF (light) or #0000AA (dark)"
public var blue_light_dark: Color {
Color("blue_light_dark")
Color("blue_light_dark", bundle: Bundle.main)
}
}

View File

@@ -6,16 +6,16 @@ extension UIColorYolo {
/// Color red is #FF0000 (light) or #FF0000 (dark)"
@objc public var red: UIColor {
UIColor(named: "red")!
UIColor(named: "red", in: Bundle.main, compatibleWith: nil)!
}
/// Color green_alpha_50 is #A000FF00 (light) or #A000FF00 (dark)"
@objc public var green_alpha_50: UIColor {
UIColor(named: "green_alpha_50")!
UIColor(named: "green_alpha_50", in: Bundle.main, compatibleWith: nil)!
}
/// Color blue_light_dark is #0000FF (light) or #0000AA (dark)"
@objc public var blue_light_dark: UIColor {
UIColor(named: "blue_light_dark")!
UIColor(named: "blue_light_dark", in: Bundle.main, compatibleWith: nil)!
}
}