Skip to content

Commit

Permalink
review: list asset in NOTICE.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
ludovic35 committed Nov 13, 2024
1 parent eceed5b commit 3303a32
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 5 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- [Tool] GitHub Action to run SwiftLint for *main* and *develop* branches
- [DemoApp] Add Grid tokens screen in demo app ([#151](https://github.com/Orange-OpenSource/ouds-ios/issues/151))

- [Tool] GitHub Action to run SwiftLint for *main* and *develop* branches

### Fixed

Expand Down
3 changes: 3 additions & 0 deletions NOTICE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ Any use or displaying shall constitute an infringement under intellectual proper
./Showcase/Showcase/Resources/Assets.xcassets/ic_component_atom.imageset/ic_component_atom.svg
./Showcase/Showcase/Resources/Assets.xcassets/ic_info.imageset/ic_info.svg
./Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_empty_screen.imageset/il_empty_screen.svg
./Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_column_margin.imageset/il_tokens_grid_column_margin.png
./Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_max_width.imageset/il_tokens_grid_max_width.png
./Showcase/Showcase/Resources/Assets.xcassets/Illustrations/il_tokens_grid_min_width.imageset/il_tokens_grid_min_width.png
./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_border.imageset/ic_border.svg
./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_dimension.imageset/ic_dimension.svg
./Showcase/Showcase/Resources/Assets.xcassets/Tokens/ic_filter_effects.imageset/ic_filter_effects.svg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import Foundation
import OUDSTokensRaw
import OUDSTokensSemantic

// ଘ( ・ω・)_/゚・:*:・。☆
// [File to generate with the tokenator]
// WARNING: Not synchronized anymore with the Figjam / Figma by developers team
Expand Down
8 changes: 5 additions & 3 deletions OUDS/Core/OUDS/Sources/OUDSUserInterfaceSizeClass.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import SwiftUICore
import UIKit

// MARK: - Environment values

// swiftlint:disable type_name
private struct HorizontalUserInterfaceSizeClassContractEnvironmentKey: EnvironmentKey {

Expand Down Expand Up @@ -49,7 +50,8 @@ extension EnvironmentValues {
}

public enum OUDSUserInterfaceSizeClass: String, Sendable {
case extraCompact
case compact
case regular
case extraCompact = "Extra Compact"
case compact = "Compact"
case regular = "Regular"
}
// swiftlint:enable type_name

0 comments on commit 3303a32

Please sign in to comment.