diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..8f7c656 --- /dev/null +++ b/Package.swift @@ -0,0 +1,21 @@ +// swift-tools-version: 6.3 +import PackageDescription + +let package = Package( + name: "DashUIKit", + defaultLocalization: "en", + platforms: [ + .iOS(.v14) + ], + products: [ + .library(name: "DashUIKit", targets: ["DashUIKit"]), + ], + targets: [ + .target( + name: "DashUIKit", + resources: [ + .process("Resources/Media.xcassets"), + ] + ), + ] +) diff --git a/Sources/DashUIKit/Foundation/BundleToken.swift b/Sources/DashUIKit/Foundation/BundleToken.swift new file mode 100644 index 0000000..fb7d777 --- /dev/null +++ b/Sources/DashUIKit/Foundation/BundleToken.swift @@ -0,0 +1,24 @@ +// +// Created by Roman Chornyi +// Copyright © 2026 Dash Core Group. All rights reserved. +// +// Licensed under the MIT License (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +import Foundation + +private final class BundleToken {} + +public extension Bundle { + static let dashUIKit = Bundle.module +} diff --git a/Sources/DashUIKit/Foundation/Color+DashUI.swift b/Sources/DashUIKit/Foundation/Color+DashUI.swift new file mode 100644 index 0000000..b81bc06 --- /dev/null +++ b/Sources/DashUIKit/Foundation/Color+DashUI.swift @@ -0,0 +1,315 @@ +// +// Created by Roman Chornyi +// Copyright © 2026 Dash Core Group. All rights reserved. +// +// Licensed under the MIT License (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +import SwiftUI +#if canImport(UIKit) +import UIKit +#endif + +@available(iOS 14, macOS 10.15, *) +public extension Color { + static var dash: DashColors.Type { DashColors.self } +} + +@available(iOS 14, macOS 10.15, *) +public enum DashColors { + + // MARK: Text + + public static var primaryText: Color { dashAsset("PrimaryText") } + public static var secondaryText: Color { dashAsset("SecondaryText") } + public static var tertiaryText: Color { dashAsset("TertiaryText") } + public static var whiteText: Color { dashAsset("WhiteText") } + public static var blueText: Color { dashAsset("BlueText") } + public static var successText: Color { dashAsset("SuccessText") } + public static var errorText: Color { dashAsset("ErrorText") } + + // MARK: Background + + public static var primaryBackground: Color { dashAsset("PrimaryBackground") } + public static var secondaryBackground: Color { dashAsset("SecondaryBackground") } + public static var tertiaryBackground: Color { dashAsset("TertiaryBackground") } + public static var blueBackground: Color { dashAsset("BlueBackground") } + + // MARK: Badge + + public static var badgeBackground1: Color { dashAsset("BadgeBackground1") } + public static var badgeBackground2: Color { dashAsset("BadgeBackground2") } + public static var badgeBackgroundCont1: Color { dashAsset("BadgeBackgroundCont1") } + public static var badgeBackgroundCont2: Color { dashAsset("BadgeBackgroundCont2") } + + // MARK: Bottom Nav + + public static var bottomNavBackground: Color { dashAsset("BottomNavBackground") } + + // MARK: Buttons + + public static var buttonFilledBlueBackground: Color { dashAsset("ButtonFilledBlueBackground") } + public static var buttonFilledBlueBackgroundDisabled: Color { dashAsset("ButtonFilledBlueBackgroundDisabled") } + public static var buttonFilledBlueContent: Color { dashAsset("ButtonFilledBlueContent") } + public static var buttonFilledBlueContentDisabled: Color { dashAsset("ButtonFilledBlueContentDisabled") } + + public static var buttonFilledOrangeBackground: Color { dashAsset("ButtonFilledOrangeBackground") } + public static var buttonFilledOrangeBackgroundDisabled: Color { dashAsset("ButtonFilledOrangeBackgroundDisabled") } + public static var buttonFilledOrangeContent: Color { dashAsset("ButtonFilledOrangeContent") } + public static var buttonFilledOrangeContentDisabled: Color { dashAsset("ButtonFilledOrangeContentDisabled") } + + public static var buttonFilledRedBackground: Color { dashAsset("ButtonFilledRedBackground") } + public static var buttonFilledRedBackgroundDisabled: Color { dashAsset("ButtonFilledRedBackgroundDisabled") } + public static var buttonFilledRedContent: Color { dashAsset("ButtonFilledRedContent") } + public static var buttonFilledRedContentDisabled: Color { dashAsset("ButtonFilledRedContentDisabled") } + + public static var buttonFilledWhiteBackground: Color { dashAsset("ButtonFilledWhiteBackground") } + public static var buttonFilledWhiteBackgroundDisabled: Color { dashAsset("ButtonFilledWhiteBackgroundDisabled") } + public static var buttonFilledWhiteContent: Color { dashAsset("ButtonFilledWhiteContent") } + public static var buttonFilledWhiteContentDisabled: Color { dashAsset("ButtonFilledWhiteContentDisabled") } + + public static var buttonPlainBlackContent: Color { dashAsset("ButtonPlainBlackContent") } + public static var buttonPlainBlackContentDisabled: Color { dashAsset("ButtonPlainBlackContentDisabled") } + + public static var buttonPlainBlueContent: Color { dashAsset("ButtonPlainBlueContent") } + public static var buttonPlainBlueContentDisabled: Color { dashAsset("ButtonPlainBlueContentDisabled") } + + public static var buttonPlainRedContent: Color { dashAsset("ButtonPlainRedContent") } + public static var buttonPlainRedContentDisabled: Color { dashAsset("ButtonPlainRedContentDisabled") } + + public static var buttonPlainWhiteContent: Color { dashAsset("ButtonPlainWhiteContent") } + public static var buttonPlainWhiteContentDisabled: Color { dashAsset("ButtonPlainWhiteContentDisabled") } + + public static var buttonStrokeGrayBackgroundDisabled: Color { dashAsset("ButtonStrokeGrayBackgroundDisabled") } + public static var buttonStrokeGrayContent: Color { dashAsset("ButtonStrokeGrayContent") } + public static var buttonStrokeGrayContentDisabled: Color { dashAsset("ButtonStrokeGrayContentDisabled") } + public static var buttonStrokeGrayStroke: Color { dashAsset("ButtonStrokeGrayStroke") } + + public static var buttonTintedBlueBackground: Color { dashAsset("ButtonTintedBlueBackground") } + public static var buttonTintedBlueBackgroundDisabled: Color { dashAsset("ButtonTintedBlueBackgroundDisabled") } + public static var buttonTintedBlueContent: Color { dashAsset("ButtonTintedBlueContent") } + public static var buttonTintedBlueContentDisabled: Color { dashAsset("ButtonTintedBlueContentDisabled") } + + public static var buttonTintedGrayBackground: Color { dashAsset("ButtonTintedGrayBackground") } + public static var buttonTintedGrayBackgroundDisabled: Color { dashAsset("ButtonTintedGrayBackgroundDisabled") } + public static var buttonTintedGrayContent: Color { dashAsset("ButtonTintedGrayContent") } + public static var buttonTintedGrayContentDisabled: Color { dashAsset("ButtonTintedGrayContentDisabled") } + + public static var buttonTintedWhiteBackground: Color { dashAsset("ButtonTintedWhiteBackground") } + public static var buttonTintedWhiteBackgroundDisabled: Color { dashAsset("ButtonTintedWhiteBackgroundDisabled") } + public static var buttonTintedWhiteContent: Color { dashAsset("ButtonTintedWhiteContent") } + public static var buttonTintedWhiteContentDisabled: Color { dashAsset("ButtonTintedWhiteContentDisabled") } + + // MARK: Grabber + + public static var grabberFill: Color { dashAsset("GrabberFill") } + + // MARK: List + + public static var listGiftCardNumberBackground: Color { dashAsset("ListGiftCardNumberBackground") } + + // MARK: Nav + + public static var navBackButton: Color { dashAsset("NavBackButton") } + + // MARK: Overlay + + public static var backgroundOverlay: Color { dashAsset("BackgroundOverlay") } + + // MARK: Search + + public static var searchBackground: Color { dashAsset("SearchBackground") } + public static var searchClearIcon: Color { dashAsset("SearchClearIcon") } + public static var searchIcon: Color { dashAsset("SearchIcon") } + public static var searchPlaceholder: Color { dashAsset("SearchPlaceholder") } + public static var searchTextEntered: Color { dashAsset("SearchTextEntered") } + + // MARK: Segment Control + + public static var segmentControlBackground: Color { dashAsset("SegmentControlBackground") } + public static var segmentControlBackgroundGroup: Color { dashAsset("SegmentControlBackgroundGroup") } + public static var segmentControlContNotSelected: Color { dashAsset("SegmentControlContNotSelected") } + public static var segmentControlContSelected: Color { dashAsset("SegmentControlContSelected") } + public static var segmentControlDivider: Color { dashAsset("SegmentControlDivider") } + + // MARK: Select + + public static var selectBackgroundSelected: Color { dashAsset("SelectBackgroundSelected") } + public static var selectStrokeDefault: Color { dashAsset("SelectStrokeDefault") } + public static var selectStrokeSelected: Color { dashAsset("SelectStrokeSelected") } + + // MARK: Shortcut Bar + + public static var shortcutBarBackground: Color { dashAsset("ShortcutBarBackground") } + + // MARK: Status Bar + + public static var statusBarElements: Color { dashAsset("StatusBarElements") } + + // MARK: Stepper + + public static var stepperBorder: Color { dashAsset("StepperBorder") } + public static var stepperBorderDisabled: Color { dashAsset("StepperBorderDisabled") } + public static var stepperElement: Color { dashAsset("StepperElement") } + public static var stepperElementDisabled: Color { dashAsset("StepperElementDisabled") } + + // MARK: Switch + + public static var switchThumbFill: Color { dashAsset("SwitchThumbFill") } + public static var switchTrackFillOff: Color { dashAsset("SwitchTrackFillOff") } + public static var switchTrackFillOffDisabled: Color { dashAsset("SwitchTrackFillOffDisabled") } + public static var switchTrackFillOn: Color { dashAsset("SwitchTrackFillOn") } + + // MARK: TextField + + public static var textFieldCryptoAddressBackground: Color { dashAsset("TextFieldCryptoAddressBackground") } + public static var textFieldCryptoAddressIcon: Color { dashAsset("TextFieldCryptoAddressIcon") } + + // MARK: Toast + + public static var toastBackground: Color { dashAsset("ToastBackground") } + public static var toastText: Color { dashAsset("ToastText") } + + // MARK: Toolbar + + public static var toolbarRoundBorder: Color { dashAsset("ToolbarRoundBorder") } + public static var toolbarRoundContent: Color { dashAsset("ToolbarRoundContent") } + + // MARK: Top Intro + + public static var topIntroButtonBackground: Color { dashAsset("TopIntroButtonBackground") } + public static var topIntroButtonContent: Color { dashAsset("TopIntroButtonContent") } + + // MARK: Tokens + + // MARK: Tokens / Blue + + public static var blue: Color { dashAsset("Blue") } + public static var blueAlpha5: Color { dashAsset("BlueAlpha5") } + public static var blueAlpha10: Color { dashAsset("BlueAlpha10") } + public static var blueAlpha20: Color { dashAsset("BlueAlpha20") } + public static var blueAlpha30: Color { dashAsset("BlueAlpha30") } + public static var blueAlpha40: Color { dashAsset("BlueAlpha40") } + public static var blueAlpha50: Color { dashAsset("BlueAlpha50") } + public static var blueAlpha90: Color { dashAsset("BlueAlpha90") } + + // MARK: Tokens / Gray + + public static var black: Color { dashAsset("Black") } + public static var black1000Alpha5: Color { dashAsset("Black1000Alpha5") } + public static var black1000Alpha8: Color { dashAsset("Black1000Alpha8") } + public static var black1000Alpha10: Color { dashAsset("Black1000Alpha10") } + public static var black1000Alpha15: Color { dashAsset("Black1000Alpha15") } + public static var black1000Alpha20: Color { dashAsset("Black1000Alpha20") } + public static var black1000Alpha30: Color { dashAsset("Black1000Alpha30") } + public static var black1000Alpha40: Color { dashAsset("Black1000Alpha40") } + public static var black1000Alpha50: Color { dashAsset("Black1000Alpha50") } + public static var black1000Alpha60: Color { dashAsset("Black1000Alpha60") } + public static var black1000Alpha70: Color { dashAsset("Black1000Alpha70") } + public static var black1000Alpha80: Color { dashAsset("Black1000Alpha80") } + public static var black1000Alpha90: Color { dashAsset("Black1000Alpha90") } + public static var black800: Color { dashAsset("Black800") } + public static var black900: Color { dashAsset("Black900") } + public static var gray50: Color { dashAsset("Gray50") } + public static var gray100: Color { dashAsset("Gray100") } + public static var gray200: Color { dashAsset("Gray200") } + public static var gray300: Color { dashAsset("Gray300") } + public static var gray300Alpha5: Color { dashAsset("Gray300Alpha5") } + public static var gray300Alpha10: Color { dashAsset("Gray300Alpha10") } + public static var gray300Alpha20: Color { dashAsset("Gray300Alpha20") } + public static var gray300Alpha30: Color { dashAsset("Gray300Alpha30") } + public static var gray300Alpha40: Color { dashAsset("Gray300Alpha40") } + public static var gray300Alpha50: Color { dashAsset("Gray300Alpha50") } + public static var gray300Alpha60: Color { dashAsset("Gray300Alpha60") } + public static var gray300Alpha70: Color { dashAsset("Gray300Alpha70") } + public static var gray300Alpha80: Color { dashAsset("Gray300Alpha80") } + public static var gray300Alpha90: Color { dashAsset("Gray300Alpha90") } + public static var gray400: Color { dashAsset("Gray400") } + public static var gray400Alpha10: Color { dashAsset("Gray400Alpha10") } + public static var gray400Alpha13: Color { dashAsset("Gray400Alpha13") } + public static var gray400Alpha25: Color { dashAsset("Gray400Alpha25") } + public static var gray500: Color { dashAsset("Gray500") } + + // MARK: Tokens / Green + + public static var green: Color { dashAsset("Green") } + public static var greenAlpha10: Color { dashAsset("GreenAlpha10") } + + // MARK: Tokens / Light Blue + + public static var lightBlue: Color { dashAsset("LightBlue") } + public static var lightBlueAlpha10: Color { dashAsset("LightBlueAlpha10") } + + // MARK: Tokens / Orange + + public static var orange: Color { dashAsset("Orange") } + public static var orangeAlpha10: Color { dashAsset("OrangeAlpha10") } + + // MARK: Tokens / Red + + public static var red: Color { dashAsset("Red") } + public static var redAlpha5: Color { dashAsset("RedAlpha5") } + public static var redAlpha10: Color { dashAsset("RedAlpha10") } + + // MARK: Tokens / White + + public static var white: Color { dashAsset("White") } + public static var whiteAlpha5: Color { dashAsset("WhiteAlpha5") } + public static var whiteAlpha10: Color { dashAsset("WhiteAlpha10") } + public static var whiteAlpha15: Color { dashAsset("WhiteAlpha15") } + public static var whiteAlpha20: Color { dashAsset("WhiteAlpha20") } + public static var whiteAlpha30: Color { dashAsset("WhiteAlpha30") } + public static var whiteAlpha40: Color { dashAsset("WhiteAlpha40") } + public static var whiteAlpha50: Color { dashAsset("WhiteAlpha50") } + public static var whiteAlpha60: Color { dashAsset("WhiteAlpha60") } + public static var whiteAlpha70: Color { dashAsset("WhiteAlpha70") } + public static var whiteAlpha80: Color { dashAsset("WhiteAlpha80") } + public static var whiteAlpha90: Color { dashAsset("WhiteAlpha90") } + + // MARK: Tokens / Yellow + + public static var yellow: Color { dashAsset("Yellow") } + public static var yellowAlpha10: Color { dashAsset("YellowAlpha10") } + + // MARK: Tokens / Custom + + public static var purple: Color { dashAsset("Purple") } + public static var topper: Color { dashAsset("Topper") } + public static var uphold: Color { dashAsset("Uphold") } + + // MARK: Shadow + + public static var shadow: Color { + #if canImport(UIKit) + Color( + UIColor { traitCollection in + switch traitCollection.userInterfaceStyle { + case .dark: + return .clear + default: + return UIColor(red: 0.72, green: 0.76, blue: 0.8, alpha: 0.1) + } + } + ) + #else + .clear + #endif + } +} + +@available(iOS 14, macOS 10.15, *) +private extension DashColors { + static func dashAsset(_ name: String) -> Color { + Color(name, bundle: .module) + } +} diff --git a/Sources/DashUIKit/Foundation/DashTextStyle.swift b/Sources/DashUIKit/Foundation/DashTextStyle.swift new file mode 100644 index 0000000..ee83a5b --- /dev/null +++ b/Sources/DashUIKit/Foundation/DashTextStyle.swift @@ -0,0 +1,107 @@ +// +// Created by Roman Chornyi +// Copyright © 2026 Dash Core Group. All rights reserved. +// +// Licensed under the MIT License (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +import SwiftUI + +/// A text style that bundles a `Font.dash.*` token with its documented design line +/// height, so both are applied together via `.dashFont(_:)`. +/// +/// `Font` alone cannot carry a line height (leading is applied by view modifiers, not +/// the font), so this pairs the font metrics with the spec line height. +@available(iOS 14, macOS 10.15, *) +public struct DashTextStyle: Sendable { + public let size: CGFloat + public let weight: Font.Weight + public let lineHeight: CGFloat + + public init(size: CGFloat, weight: Font.Weight, lineHeight: CGFloat) { + self.size = size + self.weight = weight + self.lineHeight = lineHeight + } + + /// The plain `Font` for this style (no line height applied). + public var font: Font { .system(size: size, weight: weight) } +} + +// MARK: - Tokens (mirror `DashFonts`, with the documented line heights) + +@available(iOS 14, macOS 10.15, *) +public extension DashTextStyle { + static let largeTitle = DashTextStyle(size: 34, weight: .bold, lineHeight: 41) + static let title1 = DashTextStyle(size: 28, weight: .bold, lineHeight: 34) + static let title2 = DashTextStyle(size: 22, weight: .bold, lineHeight: 28) + static let title3 = DashTextStyle(size: 20, weight: .bold, lineHeight: 25) + static let title3Medium = DashTextStyle(size: 20, weight: .medium, lineHeight: 25) + static let headline = DashTextStyle(size: 17, weight: .bold, lineHeight: 22) + static let body = DashTextStyle(size: 17, weight: .regular, lineHeight: 22) + static let callout = DashTextStyle(size: 16, weight: .regular, lineHeight: 21) + static let calloutMedium = DashTextStyle(size: 16, weight: .semibold, lineHeight: 21) + static let subhead = DashTextStyle(size: 15, weight: .regular, lineHeight: 20) + static let subheadMedium = DashTextStyle(size: 15, weight: .medium, lineHeight: 20) + static let footnote = DashTextStyle(size: 13, weight: .regular, lineHeight: 18) + static let footnoteMedium = DashTextStyle(size: 13, weight: .medium, lineHeight: 18) + static let caption1 = DashTextStyle(size: 12, weight: .regular, lineHeight: 16) + static let caption2 = DashTextStyle(size: 11, weight: .regular, lineHeight: 13) +} + +// MARK: - Convenience accessor (`Font.dash.style.footnote`) + +@available(iOS 14, macOS 10.15, *) +public extension Font { + /// Namespace for Dash text *styles* (font + line height), e.g. `Font.dashStyle.footnote`. + static var dashStyle: DashTextStyle.Type { DashTextStyle.self } +} + +// MARK: - View modifier + +@available(iOS 14, macOS 10.15, *) +public extension View { + /// Applies a Dash text style: sets the font **and** its documented line height in + /// one call. + /// + /// ```swift + /// Text(helpText).dashFont(.footnote) // .system(size: 13) + line height 18 + /// ``` + func dashFont(_ style: DashTextStyle) -> some View { + self + .font(style.font) + .dashLineHeight(size: style.size, lineHeight: style.lineHeight) + } +} + +#if DEBUG + +@available(iOS 17, macOS 14, *) +#Preview("dashFont") { + let sample = "Back up your wallet to keep your funds safe and recover it on a new device." + + return VStack(alignment: .leading, spacing: 24) { + Text(sample) + .font(Font.dash.footnote) // plain font, natural line height + .foregroundColor(Color.dash.primaryText) + .background(Color.dash.blueAlpha10) + + Text(sample) + .dashFont(.footnote) // font + line height 18, automatic + .foregroundColor(Color.dash.primaryText) + .background(Color.dash.blueAlpha10) + } + .padding() +} + +#endif diff --git a/Sources/DashUIKit/Foundation/Font+DashUI.swift b/Sources/DashUIKit/Foundation/Font+DashUI.swift new file mode 100644 index 0000000..77e6404 --- /dev/null +++ b/Sources/DashUIKit/Foundation/Font+DashUI.swift @@ -0,0 +1,73 @@ +// +// Created by Roman Chornyi +// Copyright © 2026 Dash Core Group. All rights reserved. +// +// Licensed under the MIT License (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +import SwiftUI + +@available(iOS 14, macOS 10.15, *) +public extension Font { + static var dash: DashFonts.Type { DashFonts.self } +} + +@available(iOS 14, macOS 10.15, *) +public enum DashFonts { + + /// Large Title: 34pt Bold (line height: 41pt) + public static let largeTitle: Font = DashTextStyle.largeTitle.font + + /// Title 1: 28pt Bold (line height: 34pt) + public static let title1: Font = DashTextStyle.title1.font + + /// Title 2: 22pt Bold (line height: 28pt) + public static let title2: Font = DashTextStyle.title2.font + + /// Title 3: 20pt Bold (line height: 25pt) + public static let title3: Font = DashTextStyle.title3.font + + /// Title 3 Medium: 20pt Medium (line height: 25pt) + public static let title3Medium: Font = DashTextStyle.title3Medium.font + + /// Headline: 17pt Bold (line height: 22pt) + public static let headline: Font = DashTextStyle.headline.font + + /// Body: 17pt Regular (line height: 22pt) + public static let body: Font = DashTextStyle.body.font + + /// Callout: 16pt Regular (line height: 21pt) + public static let callout: Font = DashTextStyle.callout.font + + /// Callout Medium: 16pt Semibold (line height: 21pt) + public static let calloutMedium: Font = DashTextStyle.calloutMedium.font + + /// Subhead Regular: 15pt Regular (line height: 20pt) + public static let subhead: Font = DashTextStyle.subhead.font + + /// Subhead Medium: 15pt Medium (line height: 20pt) + public static let subheadMedium: Font = DashTextStyle.subheadMedium.font + + /// Footnote Regular: 13pt Regular (line height: 18pt) + public static let footnote: Font = DashTextStyle.footnote.font + + /// Footnote Medium: 13pt Medium (line height: 18pt) + public static let footnoteMedium: Font = DashTextStyle.footnoteMedium.font + public static let footnoteMedium2: Font = DashTextStyle.footnoteMedium.font + + /// Caption 1: 12pt Regular (line height: 16pt) + public static let caption1: Font = DashTextStyle.caption1.font + + /// Caption 2: 11pt Regular (line height: 13pt) + public static let caption2: Font = DashTextStyle.caption2.font +} diff --git a/Sources/DashUIKit/Foundation/Image+DashUI.swift b/Sources/DashUIKit/Foundation/Image+DashUI.swift new file mode 100644 index 0000000..13706c1 --- /dev/null +++ b/Sources/DashUIKit/Foundation/Image+DashUI.swift @@ -0,0 +1,50 @@ +// +// Created by Roman Chornyi +// Copyright © 2026 Dash Core Group. All rights reserved. +// +// Licensed under the MIT License (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +import SwiftUI +#if canImport(UIKit) +import UIKit +#else +public typealias UIImage = Never +#endif + +@available(iOS 14, macOS 11, *) +public enum DashIconSource { + case system(_ name: String) + case custom(_ name: String, bundle: Bundle? = nil) + case uiImage(_ image: UIImage) +} + +@available(iOS 14, macOS 11, *) +public extension Image { + /// Resolves a Dash icon source into a plain `Image`. The caller applies all + /// styling (`.resizable()`, `.foregroundStyle()`, sizing, etc.). + init(dash source: DashIconSource) { + switch source { + case .system(let name): + self = Image(systemName: name) + case .custom(let name, let bundle): + self = Image(name, bundle: bundle) + case .uiImage(let image): + #if canImport(UIKit) + self = Image(uiImage: image) + #else + switch image {} + #endif + } + } +} diff --git a/Sources/DashUIKit/Foundation/LineHeight+DashUI.swift b/Sources/DashUIKit/Foundation/LineHeight+DashUI.swift new file mode 100644 index 0000000..94b7417 --- /dev/null +++ b/Sources/DashUIKit/Foundation/LineHeight+DashUI.swift @@ -0,0 +1,92 @@ +// +// Created by Roman Chornyi +// Copyright © 2026 Dash Core Group. All rights reserved. +// +// Licensed under the MIT License (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://opensource.org/licenses/MIT +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +import SwiftUI +#if canImport(UIKit) +import UIKit +#elseif canImport(AppKit) +import AppKit +#endif + +@available(iOS 14, macOS 10.15, *) +public extension View { + /// Applies a design line height to text rendered with a fixed-size system font. + /// + /// `Font.system(size:)` renders with the typeface's *natural* line height, which is + /// smaller than the Dynamic Type / Figma line height documented for each + /// `Font.dash.*` token (e.g. footnote is 13pt but the spec line height is 18pt). + /// This modifier adds the missing leading: + /// - `lineSpacing` opens the gap between wrapped lines, and + /// - vertical padding gives single lines the same extra height and keeps the text + /// vertically centered, matching the design. + /// + /// - Parameters: + /// - size: the font point size (the same value as the `Font.dash.*` token). + /// - lineHeight: the target line height from the design spec. + func dashLineHeight(size: CGFloat, lineHeight: CGFloat) -> some View { + let natural = Self.naturalLineHeight(forSize: size) + let delta = max(lineHeight - natural, 0) + return self + .lineSpacing(delta) + .padding(.vertical, delta / 2) + } + + /// Natural line height of the system font at `size`. For SF this is independent of + /// weight, so only the size is needed. + private static func naturalLineHeight(forSize size: CGFloat) -> CGFloat { + #if canImport(UIKit) + return UIFont.systemFont(ofSize: size).lineHeight + #elseif canImport(AppKit) + return NSFont.systemFont(ofSize: size).ascender - NSFont.systemFont(ofSize: size).descender + #else + return size * 1.2 + #endif + } +} + +#if DEBUG + +@available(iOS 17, macOS 14, *) +#Preview("Footnote line height") { + let sample = "Back up your wallet to keep your funds safe and recover it on a new device." + + return VStack(alignment: .leading, spacing: 24) { + VStack(alignment: .leading, spacing: 4) { + Text("Default (.system natural ≈ 15.5pt)") + .font(Font.dash.caption2) + .foregroundColor(Color.dash.secondaryText) + Text(sample) + .font(Font.dash.footnote) + .foregroundColor(Color.dash.primaryText) + .background(Color.dash.blueAlpha10) + } + + VStack(alignment: .leading, spacing: 4) { + Text("dashLineHeight(size: 13, lineHeight: 18)") + .font(Font.dash.caption2) + .foregroundColor(Color.dash.secondaryText) + Text(sample) + .font(Font.dash.footnote) + .foregroundColor(Color.dash.primaryText) + .dashLineHeight(size: 13, lineHeight: 18) + .background(Color.dash.blueAlpha10) + } + } + .padding() +} + +#endif diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/BlueBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/BlueBackground.colorset/Contents.json new file mode 100644 index 0000000..057c46b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/BlueBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/PrimaryBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/PrimaryBackground.colorset/Contents.json new file mode 100644 index 0000000..dd65800 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/PrimaryBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xF7", + "green" : "0xF5", + "red" : "0xF5" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x00", + "green" : "0x00", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/SecondaryBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/SecondaryBackground.colorset/Contents.json new file mode 100644 index 0000000..df29b28 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/SecondaryBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x24", + "green" : "0x1F", + "red" : "0x1E" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/TertiaryBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/TertiaryBackground.colorset/Contents.json new file mode 100644 index 0000000..07f315f --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Background/TertiaryBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xEE", + "green" : "0xED", + "red" : "0xEB" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xEE", + "green" : "0xED", + "red" : "0xEB" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/BadgeBackground1.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/BadgeBackground1.colorset/Contents.json new file mode 100644 index 0000000..52d24dc --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/BadgeBackground1.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0x8A", + "green" : "0xB5", + "red" : "0x3D" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0x8A", + "green" : "0xB5", + "red" : "0x3D" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/BadgeBackground2.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/BadgeBackground2.colorset/Contents.json new file mode 100644 index 0000000..e4a5f49 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/BadgeBackground2.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/BadgeBackgroundCont1.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/BadgeBackgroundCont1.colorset/Contents.json new file mode 100644 index 0000000..b5d7b87 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/BadgeBackgroundCont1.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x8A", + "green" : "0xB5", + "red" : "0x3D" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x8A", + "green" : "0xB5", + "red" : "0x3D" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/BadgeBackgroundCont2.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/BadgeBackgroundCont2.colorset/Contents.json new file mode 100644 index 0000000..057c46b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/BadgeBackgroundCont2.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Badge/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Bottom Nav/BottomNavBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Bottom Nav/BottomNavBackground.colorset/Contents.json new file mode 100644 index 0000000..2f5365d --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Bottom Nav/BottomNavBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x19", + "green" : "0x15", + "red" : "0x14" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Bottom Nav/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Bottom Nav/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Bottom Nav/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/ButtonFilledBlueBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/ButtonFilledBlueBackground.colorset/Contents.json new file mode 100644 index 0000000..057c46b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/ButtonFilledBlueBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/ButtonFilledBlueBackgroundDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/ButtonFilledBlueBackgroundDisabled.colorset/Contents.json new file mode 100644 index 0000000..a014ac3 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/ButtonFilledBlueBackgroundDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/ButtonFilledBlueContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/ButtonFilledBlueContent.colorset/Contents.json new file mode 100644 index 0000000..2536dc2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/ButtonFilledBlueContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/ButtonFilledBlueContentDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/ButtonFilledBlueContentDisabled.colorset/Contents.json new file mode 100644 index 0000000..8b0561a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/ButtonFilledBlueContentDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledBlue/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/ButtonFilledOrangeBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/ButtonFilledOrangeBackground.colorset/Contents.json new file mode 100644 index 0000000..3bf5fb8 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/ButtonFilledOrangeBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x68", + "green" : "0x91", + "red" : "0xF9" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x68", + "green" : "0x91", + "red" : "0xF9" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/ButtonFilledOrangeBackgroundDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/ButtonFilledOrangeBackgroundDisabled.colorset/Contents.json new file mode 100644 index 0000000..a014ac3 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/ButtonFilledOrangeBackgroundDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/ButtonFilledOrangeContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/ButtonFilledOrangeContent.colorset/Contents.json new file mode 100644 index 0000000..2536dc2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/ButtonFilledOrangeContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/ButtonFilledOrangeContentDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/ButtonFilledOrangeContentDisabled.colorset/Contents.json new file mode 100644 index 0000000..8b0561a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/ButtonFilledOrangeContentDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledOrange/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/ButtonFilledRedBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/ButtonFilledRedBackground.colorset/Contents.json new file mode 100644 index 0000000..260b464 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/ButtonFilledRedBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x42", + "green" : "0x38", + "red" : "0xEB" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x42", + "green" : "0x38", + "red" : "0xEB" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/ButtonFilledRedBackgroundDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/ButtonFilledRedBackgroundDisabled.colorset/Contents.json new file mode 100644 index 0000000..a014ac3 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/ButtonFilledRedBackgroundDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/ButtonFilledRedContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/ButtonFilledRedContent.colorset/Contents.json new file mode 100644 index 0000000..2536dc2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/ButtonFilledRedContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/ButtonFilledRedContentDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/ButtonFilledRedContentDisabled.colorset/Contents.json new file mode 100644 index 0000000..8b0561a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/ButtonFilledRedContentDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledRed/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/ButtonFilledWhiteBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/ButtonFilledWhiteBackground.colorset/Contents.json new file mode 100644 index 0000000..2536dc2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/ButtonFilledWhiteBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/ButtonFilledWhiteBackgroundDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/ButtonFilledWhiteBackgroundDisabled.colorset/Contents.json new file mode 100644 index 0000000..6482195 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/ButtonFilledWhiteBackgroundDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/ButtonFilledWhiteContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/ButtonFilledWhiteContent.colorset/Contents.json new file mode 100644 index 0000000..057c46b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/ButtonFilledWhiteContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/ButtonFilledWhiteContentDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/ButtonFilledWhiteContentDisabled.colorset/Contents.json new file mode 100644 index 0000000..c932a0a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/ButtonFilledWhiteContentDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/FilledWhite/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlack/ButtonPlainBlackContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlack/ButtonPlainBlackContent.colorset/Contents.json new file mode 100644 index 0000000..aac78fb --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlack/ButtonPlainBlackContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlack/ButtonPlainBlackContentDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlack/ButtonPlainBlackContentDisabled.colorset/Contents.json new file mode 100644 index 0000000..8b0561a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlack/ButtonPlainBlackContentDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlack/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlack/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlack/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlue/ButtonPlainBlueContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlue/ButtonPlainBlueContent.colorset/Contents.json new file mode 100644 index 0000000..057c46b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlue/ButtonPlainBlueContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlue/ButtonPlainBlueContentDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlue/ButtonPlainBlueContentDisabled.colorset/Contents.json new file mode 100644 index 0000000..07239ad --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlue/ButtonPlainBlueContentDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlue/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlue/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainBlue/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainRed/ButtonPlainRedContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainRed/ButtonPlainRedContent.colorset/Contents.json new file mode 100644 index 0000000..260b464 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainRed/ButtonPlainRedContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x42", + "green" : "0x38", + "red" : "0xEB" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x42", + "green" : "0x38", + "red" : "0xEB" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainRed/ButtonPlainRedContentDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainRed/ButtonPlainRedContentDisabled.colorset/Contents.json new file mode 100644 index 0000000..07239ad --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainRed/ButtonPlainRedContentDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainRed/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainRed/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainRed/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainWhite/ButtonPlainWhiteContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainWhite/ButtonPlainWhiteContent.colorset/Contents.json new file mode 100644 index 0000000..2536dc2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainWhite/ButtonPlainWhiteContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainWhite/ButtonPlainWhiteContentDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainWhite/ButtonPlainWhiteContentDisabled.colorset/Contents.json new file mode 100644 index 0000000..c932a0a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainWhite/ButtonPlainWhiteContentDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainWhite/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainWhite/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/PlainWhite/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/ButtonStrokeGrayBackgroundDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/ButtonStrokeGrayBackgroundDisabled.colorset/Contents.json new file mode 100644 index 0000000..3b527d3 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/ButtonStrokeGrayBackgroundDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.150", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.150", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/ButtonStrokeGrayContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/ButtonStrokeGrayContent.colorset/Contents.json new file mode 100644 index 0000000..2ba08d1 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/ButtonStrokeGrayContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x0D", + "green" : "0x0A", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x0D", + "green" : "0x0A", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/ButtonStrokeGrayContentDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/ButtonStrokeGrayContentDisabled.colorset/Contents.json new file mode 100644 index 0000000..07239ad --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/ButtonStrokeGrayContentDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/ButtonStrokeGrayStroke.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/ButtonStrokeGrayStroke.colorset/Contents.json new file mode 100644 index 0000000..c0d7424 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/ButtonStrokeGrayStroke.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.250", + "blue" : "0x8A", + "green" : "0x80", + "red" : "0x75" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.250", + "blue" : "0x8A", + "green" : "0x80", + "red" : "0x75" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/StrokeGray/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/ButtonTintedBlueBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/ButtonTintedBlueBackground.colorset/Contents.json new file mode 100644 index 0000000..61daab8 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/ButtonTintedBlueBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/ButtonTintedBlueBackgroundDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/ButtonTintedBlueBackgroundDisabled.colorset/Contents.json new file mode 100644 index 0000000..0636c3e --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/ButtonTintedBlueBackgroundDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/ButtonTintedBlueContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/ButtonTintedBlueContent.colorset/Contents.json new file mode 100644 index 0000000..057c46b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/ButtonTintedBlueContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/ButtonTintedBlueContentDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/ButtonTintedBlueContentDisabled.colorset/Contents.json new file mode 100644 index 0000000..07239ad --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/ButtonTintedBlueContentDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedBlue/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/ButtonTintedGrayBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/ButtonTintedGrayBackground.colorset/Contents.json new file mode 100644 index 0000000..6bec8bb --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/ButtonTintedGrayBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xBC", + "green" : "0xB6", + "red" : "0xB0" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/ButtonTintedGrayBackgroundDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/ButtonTintedGrayBackgroundDisabled.colorset/Contents.json new file mode 100644 index 0000000..b6e267a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/ButtonTintedGrayBackgroundDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/ButtonTintedGrayContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/ButtonTintedGrayContent.colorset/Contents.json new file mode 100644 index 0000000..aac78fb --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/ButtonTintedGrayContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/ButtonTintedGrayContentDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/ButtonTintedGrayContentDisabled.colorset/Contents.json new file mode 100644 index 0000000..f5086d1 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/ButtonTintedGrayContentDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedGray/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/ButtonTintedWhiteBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/ButtonTintedWhiteBackground.colorset/Contents.json new file mode 100644 index 0000000..b610bfc --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/ButtonTintedWhiteBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/ButtonTintedWhiteBackgroundDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/ButtonTintedWhiteBackgroundDisabled.colorset/Contents.json new file mode 100644 index 0000000..28b78ab --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/ButtonTintedWhiteBackgroundDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/ButtonTintedWhiteContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/ButtonTintedWhiteContent.colorset/Contents.json new file mode 100644 index 0000000..2536dc2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/ButtonTintedWhiteContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/ButtonTintedWhiteContentDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/ButtonTintedWhiteContentDisabled.colorset/Contents.json new file mode 100644 index 0000000..c932a0a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/ButtonTintedWhiteContentDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Buttons/Styles/TintedWhite/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Grabber/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Grabber/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Grabber/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Grabber/GrabberFill.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Grabber/GrabberFill.colorset/Contents.json new file mode 100644 index 0000000..3a5940d --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Grabber/GrabberFill.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xBC", + "green" : "0xB6", + "red" : "0xB0" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.300", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/List/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/List/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/List/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/List/ListGiftCardNumberBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/List/ListGiftCardNumberBackground.colorset/Contents.json new file mode 100644 index 0000000..416995b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/List/ListGiftCardNumberBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xF7", + "green" : "0xF6", + "red" : "0xF5" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Nav/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Nav/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Nav/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Nav/NavBackButton.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Nav/NavBackButton.colorset/Contents.json new file mode 100644 index 0000000..23b1605 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Nav/NavBackButton.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x19", + "green" : "0x15", + "red" : "0x14" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xF7", + "green" : "0xF6", + "red" : "0xF5" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Overlay/BackgroundOverlay.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Overlay/BackgroundOverlay.colorset/Contents.json new file mode 100644 index 0000000..8ba4f73 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Overlay/BackgroundOverlay.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Overlay/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Overlay/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Overlay/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchBackground.colorset/Contents.json new file mode 100644 index 0000000..a5d219a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0x8A", + "green" : "0x80", + "red" : "0x75" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xBC", + "green" : "0xB6", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchClearIcon.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchClearIcon.colorset/Contents.json new file mode 100644 index 0000000..f0f26b2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchClearIcon.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.300", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.200", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchIcon.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchIcon.colorset/Contents.json new file mode 100644 index 0000000..0d31104 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchIcon.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchPlaceholder.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchPlaceholder.colorset/Contents.json new file mode 100644 index 0000000..880c3c5 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchPlaceholder.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.300", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchTextEntered.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchTextEntered.colorset/Contents.json new file mode 100644 index 0000000..aac78fb --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Search/SearchTextEntered.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlBackground.colorset/Contents.json new file mode 100644 index 0000000..ff107ca --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.200", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlBackgroundGroup.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlBackgroundGroup.colorset/Contents.json new file mode 100644 index 0000000..070a90f --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlBackgroundGroup.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.200", + "blue" : "0xBC", + "green" : "0xB6", + "red" : "0xB0" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlContNotSelected.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlContNotSelected.colorset/Contents.json new file mode 100644 index 0000000..8b0561a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlContNotSelected.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlContSelected.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlContSelected.colorset/Contents.json new file mode 100644 index 0000000..aac78fb --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlContSelected.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlDivider.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlDivider.colorset/Contents.json new file mode 100644 index 0000000..315b538 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Segment Control/SegmentControlDivider.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Select/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Select/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Select/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Select/SelectBackgroundSelected.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Select/SelectBackgroundSelected.colorset/Contents.json new file mode 100644 index 0000000..a3466cf --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Select/SelectBackgroundSelected.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Select/SelectStrokeDefault.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Select/SelectStrokeDefault.colorset/Contents.json new file mode 100644 index 0000000..9d9f455 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Select/SelectStrokeDefault.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.300", + "blue" : "0xBC", + "green" : "0xB6", + "red" : "0xB0" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Select/SelectStrokeSelected.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Select/SelectStrokeSelected.colorset/Contents.json new file mode 100644 index 0000000..d5b7eca --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Select/SelectStrokeSelected.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Shortcut Bar/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Shortcut Bar/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Shortcut Bar/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Shortcut Bar/ShortcutBarBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Shortcut Bar/ShortcutBarBackground.colorset/Contents.json new file mode 100644 index 0000000..2f5365d --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Shortcut Bar/ShortcutBarBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x19", + "green" : "0x15", + "red" : "0x14" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Status Bar/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Status Bar/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Status Bar/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Status Bar/StatusBarElements.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Status Bar/StatusBarElements.colorset/Contents.json new file mode 100644 index 0000000..ff0f432 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Status Bar/StatusBarElements.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x19", + "green" : "0x15", + "red" : "0x14" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/StepperBorder.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/StepperBorder.colorset/Contents.json new file mode 100644 index 0000000..5f00d6d --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/StepperBorder.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.150", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/StepperBorderDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/StepperBorderDisabled.colorset/Contents.json new file mode 100644 index 0000000..a014ac3 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/StepperBorderDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/StepperElement.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/StepperElement.colorset/Contents.json new file mode 100644 index 0000000..ff0f432 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/StepperElement.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x19", + "green" : "0x15", + "red" : "0x14" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/StepperElementDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/StepperElementDisabled.colorset/Contents.json new file mode 100644 index 0000000..3a5940d --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Stepper/StepperElementDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xBC", + "green" : "0xB6", + "red" : "0xB0" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.300", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/SwitchThumbFill.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/SwitchThumbFill.colorset/Contents.json new file mode 100644 index 0000000..2536dc2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/SwitchThumbFill.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/SwitchTrackFillOff.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/SwitchTrackFillOff.colorset/Contents.json new file mode 100644 index 0000000..581f32b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/SwitchTrackFillOff.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xBC", + "green" : "0xB6", + "red" : "0xB0" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/SwitchTrackFillOffDisabled.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/SwitchTrackFillOffDisabled.colorset/Contents.json new file mode 100644 index 0000000..72aa2e3 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/SwitchTrackFillOffDisabled.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.200", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/SwitchTrackFillOn.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/SwitchTrackFillOn.colorset/Contents.json new file mode 100644 index 0000000..d5b7eca --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Switch/SwitchTrackFillOn.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/BlueText.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/BlueText.colorset/Contents.json new file mode 100644 index 0000000..057c46b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/BlueText.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/ErrorText.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/ErrorText.colorset/Contents.json new file mode 100644 index 0000000..260b464 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/ErrorText.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x42", + "green" : "0x38", + "red" : "0xEB" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x42", + "green" : "0x38", + "red" : "0xEB" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/PrimaryText.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/PrimaryText.colorset/Contents.json new file mode 100644 index 0000000..b9c4f48 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/PrimaryText.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x0D", + "green" : "0x0A", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.900", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/SecondaryText.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/SecondaryText.colorset/Contents.json new file mode 100644 index 0000000..eca6674 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/SecondaryText.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x66", + "green" : "0x5C", + "red" : "0x52" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.800", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/SuccessText.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/SuccessText.colorset/Contents.json new file mode 100644 index 0000000..b5d7b87 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/SuccessText.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x8A", + "green" : "0xB5", + "red" : "0x3D" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x8A", + "green" : "0xB5", + "red" : "0x3D" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/TertiaryText.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/TertiaryText.colorset/Contents.json new file mode 100644 index 0000000..6f06687 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/TertiaryText.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x8A", + "green" : "0x80", + "red" : "0x75" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.600", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/WhiteText.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/WhiteText.colorset/Contents.json new file mode 100644 index 0000000..2536dc2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Text/WhiteText.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/TextField/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/TextField/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/TextField/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/TextField/CryptoAddress/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/TextField/CryptoAddress/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/TextField/CryptoAddress/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/TextField/CryptoAddress/TextFieldCryptoAddressBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/TextField/CryptoAddress/TextFieldCryptoAddressBackground.colorset/Contents.json new file mode 100644 index 0000000..b618c30 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/TextField/CryptoAddress/TextFieldCryptoAddressBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xBC", + "green" : "0xB6", + "red" : "0xB0" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xBC", + "green" : "0xB6", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/TextField/CryptoAddress/TextFieldCryptoAddressIcon.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/TextField/CryptoAddress/TextFieldCryptoAddressIcon.colorset/Contents.json new file mode 100644 index 0000000..ff0f432 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/TextField/CryptoAddress/TextFieldCryptoAddressIcon.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x19", + "green" : "0x15", + "red" : "0x14" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toast/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toast/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toast/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toast/ToastBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toast/ToastBackground.colorset/Contents.json new file mode 100644 index 0000000..c6471fc --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toast/ToastBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.900", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xBC", + "green" : "0xB6", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toast/ToastText.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toast/ToastText.colorset/Contents.json new file mode 100644 index 0000000..2536dc2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toast/ToastText.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/Blue.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/Blue.colorset/Contents.json new file mode 100644 index 0000000..732624a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/Blue.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha10.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha10.colorset/Contents.json new file mode 100644 index 0000000..2f8fdd2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha10.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha20.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha20.colorset/Contents.json new file mode 100644 index 0000000..e7efcef --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha20.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.200", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha30.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha30.colorset/Contents.json new file mode 100644 index 0000000..1a9e4c2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha30.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.300", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha40.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha40.colorset/Contents.json new file mode 100644 index 0000000..172f01e --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha40.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha5.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha5.colorset/Contents.json new file mode 100644 index 0000000..7389f4f --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha5.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha50.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha50.colorset/Contents.json new file mode 100644 index 0000000..74866f8 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha50.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha90.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha90.colorset/Contents.json new file mode 100644 index 0000000..3cd7927 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/BlueAlpha90.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.900", + "blue" : "0xE4", + "green" : "0x8D", + "red" : "0x00" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Blue/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black.colorset/Contents.json new file mode 100644 index 0000000..261f2c7 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x0D", + "green" : "0x0A", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha10.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha10.colorset/Contents.json new file mode 100644 index 0000000..e0f3d97 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha10.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha15.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha15.colorset/Contents.json new file mode 100644 index 0000000..e74d8e6 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha15.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.150", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha20.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha20.colorset/Contents.json new file mode 100644 index 0000000..41ddad9 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha20.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.200", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha30.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha30.colorset/Contents.json new file mode 100644 index 0000000..e7760a0 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha30.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.300", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha40.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha40.colorset/Contents.json new file mode 100644 index 0000000..67e1abf --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha40.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha5.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha5.colorset/Contents.json new file mode 100644 index 0000000..2787dca --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha5.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0x0D", + "green" : "0x0A", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha50.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha50.colorset/Contents.json new file mode 100644 index 0000000..6ca6d98 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha50.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha60.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha60.colorset/Contents.json new file mode 100644 index 0000000..6d82921 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha60.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.600", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha70.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha70.colorset/Contents.json new file mode 100644 index 0000000..5b821e0 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha70.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.700", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha8.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha8.colorset/Contents.json new file mode 100644 index 0000000..2eec24f --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha8.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.080", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha80.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha80.colorset/Contents.json new file mode 100644 index 0000000..6994907 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha80.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.800", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha90.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha90.colorset/Contents.json new file mode 100644 index 0000000..28075d2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Black1000Alpha90.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.900", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black800.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black800.colorset/Contents.json new file mode 100644 index 0000000..547abad --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black800.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x24", + "green" : "0x1F", + "red" : "0x1F" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black900.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black900.colorset/Contents.json new file mode 100644 index 0000000..c67d42f --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Black900.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x1A", + "green" : "0x14", + "red" : "0x14" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray100.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray100.colorset/Contents.json new file mode 100644 index 0000000..f3264a6 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray100.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xED", + "green" : "0xED", + "red" : "0xEA" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray200.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray200.colorset/Contents.json new file mode 100644 index 0000000..05862e8 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray200.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xD6", + "green" : "0xCF", + "red" : "0xCF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300.colorset/Contents.json new file mode 100644 index 0000000..8128a7e --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xBD", + "green" : "0xB5", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha10.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha10.colorset/Contents.json new file mode 100644 index 0000000..3abc39f --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha10.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xBD", + "green" : "0xB5", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha20.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha20.colorset/Contents.json new file mode 100644 index 0000000..b5d133b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha20.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.200", + "blue" : "0xBD", + "green" : "0xB5", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha30.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha30.colorset/Contents.json new file mode 100644 index 0000000..927f3a4 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha30.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.300", + "blue" : "0xBD", + "green" : "0xB5", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha40.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha40.colorset/Contents.json new file mode 100644 index 0000000..ecad88b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha40.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0xBD", + "green" : "0xB5", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha5.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha5.colorset/Contents.json new file mode 100644 index 0000000..95171bd --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha5.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0xBD", + "green" : "0xB5", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha50.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha50.colorset/Contents.json new file mode 100644 index 0000000..2b39247 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha50.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0xBD", + "green" : "0xB5", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha60.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha60.colorset/Contents.json new file mode 100644 index 0000000..7f6223a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha60.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.600", + "blue" : "0xBD", + "green" : "0xB5", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha70.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha70.colorset/Contents.json new file mode 100644 index 0000000..955cecc --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha70.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.700", + "blue" : "0xBD", + "green" : "0xB5", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha80.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha80.colorset/Contents.json new file mode 100644 index 0000000..3e2270c --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha80.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.800", + "blue" : "0xBD", + "green" : "0xB5", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha90.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha90.colorset/Contents.json new file mode 100644 index 0000000..3e5904d --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray300/Gray300Alpha90.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.900", + "blue" : "0xBD", + "green" : "0xB5", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400.colorset/Contents.json new file mode 100644 index 0000000..a9eaf59 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x8A", + "green" : "0x7F", + "red" : "0x75" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400/Gray400Alpha10.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400/Gray400Alpha10.colorset/Contents.json new file mode 100644 index 0000000..7dcf4a1 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400/Gray400Alpha10.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0x8A", + "green" : "0x7F", + "red" : "0x75" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400/Gray400Alpha13.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400/Gray400Alpha13.colorset/Contents.json new file mode 100644 index 0000000..a86da7b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400/Gray400Alpha13.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.130", + "blue" : "0x8A", + "green" : "0x7F", + "red" : "0x75" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400/Gray400Alpha25.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400/Gray400Alpha25.colorset/Contents.json new file mode 100644 index 0000000..fd93694 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray400/Gray400Alpha25.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.250", + "blue" : "0x8A", + "green" : "0x7F", + "red" : "0x75" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray50.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray50.colorset/Contents.json new file mode 100644 index 0000000..b8f5432 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray50.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xF7", + "green" : "0xF5", + "red" : "0xF5" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray500.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray500.colorset/Contents.json new file mode 100644 index 0000000..c6c6a63 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Gray/Gray500.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x66", + "green" : "0x5C", + "red" : "0x52" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Green/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Green/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Green/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Green/Green.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Green/Green.colorset/Contents.json new file mode 100644 index 0000000..b5033fa --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Green/Green.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x8A", + "green" : "0xB5", + "red" : "0x3D" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Green/GreenAlpha10.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Green/GreenAlpha10.colorset/Contents.json new file mode 100644 index 0000000..87662b5 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Green/GreenAlpha10.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0x8A", + "green" : "0xB5", + "red" : "0x3D" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Light blue/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Light blue/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Light blue/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Light blue/LightBlue.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Light blue/LightBlue.colorset/Contents.json new file mode 100644 index 0000000..e6755bd --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Light blue/LightBlue.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xF5", + "green" : "0xC4", + "red" : "0x78" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Light blue/LightBlueAlpha10.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Light blue/LightBlueAlpha10.colorset/Contents.json new file mode 100644 index 0000000..3e8dd1a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Light blue/LightBlueAlpha10.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xF5", + "green" : "0xC4", + "red" : "0x78" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Orange/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Orange/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Orange/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Orange/Orange.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Orange/Orange.colorset/Contents.json new file mode 100644 index 0000000..a0a1b01 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Orange/Orange.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x69", + "green" : "0x91", + "red" : "0xFA" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Orange/OrangeAlpha10.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Orange/OrangeAlpha10.colorset/Contents.json new file mode 100644 index 0000000..9ab417d --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Orange/OrangeAlpha10.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0x69", + "green" : "0x91", + "red" : "0xFA" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Red/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Red/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Red/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Red/Red.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Red/Red.colorset/Contents.json new file mode 100644 index 0000000..def74c9 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Red/Red.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x42", + "green" : "0x38", + "red" : "0xEB" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Red/RedAlpha10.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Red/RedAlpha10.colorset/Contents.json new file mode 100644 index 0000000..352ed4f --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Red/RedAlpha10.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0x42", + "green" : "0x38", + "red" : "0xEB" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Red/RedAlpha5.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Red/RedAlpha5.colorset/Contents.json new file mode 100644 index 0000000..8a9b7c8 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Red/RedAlpha5.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0x42", + "green" : "0x38", + "red" : "0xEB" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/White.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/White.colorset/Contents.json new file mode 100644 index 0000000..fafa476 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/White.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha10.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha10.colorset/Contents.json new file mode 100644 index 0000000..404b507 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha10.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha15.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha15.colorset/Contents.json new file mode 100644 index 0000000..19657b9 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha15.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.150", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha20.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha20.colorset/Contents.json new file mode 100644 index 0000000..7121dd8 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha20.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.200", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha30.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha30.colorset/Contents.json new file mode 100644 index 0000000..d19b839 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha30.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.300", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha40.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha40.colorset/Contents.json new file mode 100644 index 0000000..efdf7c5 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha40.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.400", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha5.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha5.colorset/Contents.json new file mode 100644 index 0000000..683044c --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha5.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.050", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha50.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha50.colorset/Contents.json new file mode 100644 index 0000000..dae0ce9 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha50.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.500", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha60.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha60.colorset/Contents.json new file mode 100644 index 0000000..089f20b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha60.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.600", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha70.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha70.colorset/Contents.json new file mode 100644 index 0000000..82645fc --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha70.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.700", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha80.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha80.colorset/Contents.json new file mode 100644 index 0000000..ead18a8 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha80.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.800", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha90.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha90.colorset/Contents.json new file mode 100644 index 0000000..cb0693e --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/White/WhiteAlpha90.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.900", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Yellow/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Yellow/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Yellow/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Yellow/Yellow.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Yellow/Yellow.colorset/Contents.json new file mode 100644 index 0000000..35f52c5 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Yellow/Yellow.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x42", + "green" : "0xBF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Yellow/YellowAlpha10.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Yellow/YellowAlpha10.colorset/Contents.json new file mode 100644 index 0000000..e914f3a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/Yellow/YellowAlpha10.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0x42", + "green" : "0xBF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/custom/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/custom/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/custom/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/custom/Purple.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/custom/Purple.colorset/Contents.json new file mode 100644 index 0000000..08f8d7d --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/custom/Purple.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xD6", + "green" : "0x57", + "red" : "0x59" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/custom/Topper.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/custom/Topper.colorset/Contents.json new file mode 100644 index 0000000..88dd322 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/custom/Topper.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x91", + "green" : "0xF2", + "red" : "0xBC" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/custom/Uphold.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/custom/Uphold.colorset/Contents.json new file mode 100644 index 0000000..876d98a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Tokens/custom/Uphold.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x69", + "green" : "0xCC", + "red" : "0x4A" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toolbar/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toolbar/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toolbar/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toolbar/ToolbarRoundBorder.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toolbar/ToolbarRoundBorder.colorset/Contents.json new file mode 100644 index 0000000..76f3b99 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toolbar/ToolbarRoundBorder.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.300", + "blue" : "0xBC", + "green" : "0xB6", + "red" : "0xB0" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.150", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toolbar/ToolbarRoundContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toolbar/ToolbarRoundContent.colorset/Contents.json new file mode 100644 index 0000000..aac78fb --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Toolbar/ToolbarRoundContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x0D", + "green" : "0x0B", + "red" : "0x0A" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Top Intro/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Top Intro/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Top Intro/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Top Intro/TopIntroButtonBackground.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Top Intro/TopIntroButtonBackground.colorset/Contents.json new file mode 100644 index 0000000..f063c6b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Top Intro/TopIntroButtonBackground.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.200", + "blue" : "0xBC", + "green" : "0xB6", + "red" : "0xB0" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "0.100", + "blue" : "0xBC", + "green" : "0xB6", + "red" : "0xB0" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Colors/Top Intro/TopIntroButtonContent.colorset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Top Intro/TopIntroButtonContent.colorset/Contents.json new file mode 100644 index 0000000..ff0f432 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Colors/Top Intro/TopIntroButtonContent.colorset/Contents.json @@ -0,0 +1,38 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0x19", + "green" : "0x15", + "red" : "0x14" + } + }, + "idiom" : "universal" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "color" : { + "color-space" : "srgb", + "components" : { + "alpha" : "1.000", + "blue" : "0xFF", + "green" : "0xFF", + "red" : "0xFF" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/copy-outline.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/copy-outline.imageset/Contents.json new file mode 100644 index 0000000..9204d47 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/copy-outline.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "copy-outline.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "copy-outline@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "copy-outline@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/copy-outline.imageset/copy-outline.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/copy-outline.imageset/copy-outline.png new file mode 100644 index 0000000..9de5f5a Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/copy-outline.imageset/copy-outline.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/copy-outline.imageset/copy-outline@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/copy-outline.imageset/copy-outline@2x.png new file mode 100644 index 0000000..620b64a Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/copy-outline.imageset/copy-outline@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/copy-outline.imageset/copy-outline@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/copy-outline.imageset/copy-outline@3x.png new file mode 100644 index 0000000..95bcdcb Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Icons/copy-outline.imageset/copy-outline@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/crowdnode.warning.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/crowdnode.warning.imageset/Contents.json new file mode 100644 index 0000000..add95d7 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/crowdnode.warning.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "crowdnode.warning.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "crowdnode.warning@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "crowdnode.warning@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/crowdnode.warning.imageset/crowdnode.warning.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/crowdnode.warning.imageset/crowdnode.warning.png new file mode 100644 index 0000000..0e6b40b Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/crowdnode.warning.imageset/crowdnode.warning.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/crowdnode.warning.imageset/crowdnode.warning@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/crowdnode.warning.imageset/crowdnode.warning@2x.png new file mode 100644 index 0000000..14d6ef5 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/crowdnode.warning.imageset/crowdnode.warning@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/crowdnode.warning.imageset/crowdnode.warning@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/crowdnode.warning.imageset/crowdnode.warning@3x.png new file mode 100644 index 0000000..bd76cb0 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/crowdnode.warning.imageset/crowdnode.warning@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/illustration-dash-dex.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/illustration-dash-dex.imageset/Contents.json new file mode 100644 index 0000000..2e51e42 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/illustration-dash-dex.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "illustration-dash-dex.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "illustration-dash-dex@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "illustration-dash-dex@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/illustration-dash-dex.imageset/illustration-dash-dex.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/illustration-dash-dex.imageset/illustration-dash-dex.png new file mode 100644 index 0000000..fe33e0f Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/illustration-dash-dex.imageset/illustration-dash-dex.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/illustration-dash-dex.imageset/illustration-dash-dex@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/illustration-dash-dex.imageset/illustration-dash-dex@2x.png new file mode 100644 index 0000000..1924c1a Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/illustration-dash-dex.imageset/illustration-dash-dex@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/illustration-dash-dex.imageset/illustration-dash-dex@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/illustration-dash-dex.imageset/illustration-dash-dex@3x.png new file mode 100644 index 0000000..2edea76 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Illustrations/illustration-dash-dex.imageset/illustration-dash-dex@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/app-review.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/app-review.imageset/Contents.json new file mode 100644 index 0000000..dc4c3f7 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/app-review.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "app-review.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "app-review@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "app-review@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/app-review.imageset/app-review.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/app-review.imageset/app-review.png new file mode 100644 index 0000000..5e6f555 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/app-review.imageset/app-review.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/app-review.imageset/app-review@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/app-review.imageset/app-review@2x.png new file mode 100644 index 0000000..3e49f30 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/app-review.imageset/app-review@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/app-review.imageset/app-review@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/app-review.imageset/app-review@3x.png new file mode 100644 index 0000000..d6504ec Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/app-review.imageset/app-review@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/Contents.json new file mode 100644 index 0000000..93a0477 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/Contents.json @@ -0,0 +1,56 @@ +{ + "images" : [ + { + "filename" : "info-rect.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "info-rect-dark.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "info-rect@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "info-rect-dark@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "info-rect@3x.png", + "idiom" : "universal", + "scale" : "3x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "info-rect-dark@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect-dark.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect-dark.png new file mode 100644 index 0000000..f3b3c16 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect-dark.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect-dark@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect-dark@2x.png new file mode 100644 index 0000000..7bafcda Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect-dark@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect-dark@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect-dark@3x.png new file mode 100644 index 0000000..af8ba0e Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect-dark@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect.png new file mode 100644 index 0000000..b7a19ca Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect@2x.png new file mode 100644 index 0000000..c7aa970 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect@3x.png new file mode 100644 index 0000000..9ae7e6d Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-info-rect.imageset/info-rect@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-receive.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-receive.imageset/Contents.json new file mode 100644 index 0000000..9345b39 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-receive.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "receive.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "receive@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "receive@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-receive.imageset/receive.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-receive.imageset/receive.png new file mode 100644 index 0000000..7025787 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-receive.imageset/receive.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-receive.imageset/receive@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-receive.imageset/receive@2x.png new file mode 100644 index 0000000..994b38e Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-receive.imageset/receive@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-receive.imageset/receive@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-receive.imageset/receive@3x.png new file mode 100644 index 0000000..c9910ce Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-receive.imageset/receive@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-send.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-send.imageset/Contents.json new file mode 100644 index 0000000..ce6922c --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-send.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "send.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "send@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "send@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-send.imageset/send.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-send.imageset/send.png new file mode 100644 index 0000000..f7f5c77 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-send.imageset/send.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-send.imageset/send@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-send.imageset/send@2x.png new file mode 100644 index 0000000..11709c3 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-send.imageset/send@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-send.imageset/send@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-send.imageset/send@3x.png new file mode 100644 index 0000000..8319c4d Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/menu-send.imageset/send@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/support.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/support.imageset/Contents.json new file mode 100644 index 0000000..b8688d6 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/support.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "support.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "support@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "support@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/support.imageset/support.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/support.imageset/support.png new file mode 100644 index 0000000..80f7050 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/support.imageset/support.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/support.imageset/support@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/support.imageset/support@2x.png new file mode 100644 index 0000000..677e3cf Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/support.imageset/support@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/support.imageset/support@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/support.imageset/support@3x.png new file mode 100644 index 0000000..f50930d Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Menu/support.imageset/support@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-back.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-back.imageset/Contents.json new file mode 100644 index 0000000..043b59c --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-back.imageset/Contents.json @@ -0,0 +1,26 @@ +{ + "images" : [ + { + "filename" : "navigationbar-back@1x.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "navigationbar-back@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "navigationbar-back@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "template-rendering-intent" : "template" + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-back.imageset/navigationbar-back@1x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-back.imageset/navigationbar-back@1x.png new file mode 100644 index 0000000..f982683 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-back.imageset/navigationbar-back@1x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-back.imageset/navigationbar-back@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-back.imageset/navigationbar-back@2x.png new file mode 100644 index 0000000..031065d Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-back.imageset/navigationbar-back@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-back.imageset/navigationbar-back@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-back.imageset/navigationbar-back@3x.png new file mode 100644 index 0000000..3b5987b Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-back.imageset/navigationbar-back@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-close.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-close.imageset/Contents.json new file mode 100644 index 0000000..9927bcb --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-close.imageset/Contents.json @@ -0,0 +1,27 @@ +{ + "images" : [ + { + "filename" : "navigationbar-close@1x.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "navigationbar-close@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "navigationbar-close@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "localizable" : true, + "template-rendering-intent" : "template" + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-close.imageset/navigationbar-close@1x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-close.imageset/navigationbar-close@1x.png new file mode 100644 index 0000000..9926297 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-close.imageset/navigationbar-close@1x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-close.imageset/navigationbar-close@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-close.imageset/navigationbar-close@2x.png new file mode 100644 index 0000000..eb5afcd Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-close.imageset/navigationbar-close@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-close.imageset/navigationbar-close@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-close.imageset/navigationbar-close@3x.png new file mode 100644 index 0000000..469d34f Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-close.imageset/navigationbar-close@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-info.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-info.imageset/Contents.json new file mode 100644 index 0000000..328805f --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-info.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "control-info.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "control-info@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "control-info@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-info.imageset/control-info.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-info.imageset/control-info.png new file mode 100644 index 0000000..cc2aeb1 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-info.imageset/control-info.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-info.imageset/control-info@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-info.imageset/control-info@2x.png new file mode 100644 index 0000000..4d6aacd Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-info.imageset/control-info@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-info.imageset/control-info@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-info.imageset/control-info@3x.png new file mode 100644 index 0000000..0bfb1e8 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-info.imageset/control-info@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-plus.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-plus.imageset/Contents.json new file mode 100644 index 0000000..5205881 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-plus.imageset/Contents.json @@ -0,0 +1,27 @@ +{ + "images" : [ + { + "filename" : "navigationbar-plus@1x.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "navigationbar-plus@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "navigationbar-plus@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "localizable" : true, + "template-rendering-intent" : "template" + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-plus.imageset/navigationbar-plus@1x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-plus.imageset/navigationbar-plus@1x.png new file mode 100644 index 0000000..9ef0c5c Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-plus.imageset/navigationbar-plus@1x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-plus.imageset/navigationbar-plus@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-plus.imageset/navigationbar-plus@2x.png new file mode 100644 index 0000000..a4ad7a8 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-plus.imageset/navigationbar-plus@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-plus.imageset/navigationbar-plus@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-plus.imageset/navigationbar-plus@3x.png new file mode 100644 index 0000000..9f464cb Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Navigation bar/navigationbar-plus.imageset/navigationbar-plus@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-clear.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-clear.imageset/Contents.json new file mode 100644 index 0000000..1c06247 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-clear.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "xmark@x1.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "xmark@x2.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "xmark@x3.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-clear.imageset/xmark@x1.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-clear.imageset/xmark@x1.png new file mode 100644 index 0000000..d88ff9e Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-clear.imageset/xmark@x1.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-clear.imageset/xmark@x2.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-clear.imageset/xmark@x2.png new file mode 100644 index 0000000..7b818db Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-clear.imageset/xmark@x2.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-clear.imageset/xmark@x3.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-clear.imageset/xmark@x3.png new file mode 100644 index 0000000..13b8cb3 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-clear.imageset/xmark@x3.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-qr.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-qr.imageset/Contents.json new file mode 100644 index 0000000..3965fc8 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-qr.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "qr@x1.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "qr@x2.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "qr@x3.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-qr.imageset/qr@x1.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-qr.imageset/qr@x1.png new file mode 100644 index 0000000..6a7ff89 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-qr.imageset/qr@x1.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-qr.imageset/qr@x2.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-qr.imageset/qr@x2.png new file mode 100644 index 0000000..e6fd181 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-qr.imageset/qr@x2.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-qr.imageset/qr@x3.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-qr.imageset/qr@x3.png new file mode 100644 index 0000000..4554023 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Other/text-field-qr.imageset/qr@x3.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square.imageset/Contents.json new file mode 100644 index 0000000..c75803a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "icon_checkbox_square.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "icon_checkbox_square@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "icon_checkbox_square@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square.imageset/icon_checkbox_square.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square.imageset/icon_checkbox_square.png new file mode 100644 index 0000000..8b18f2e Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square.imageset/icon_checkbox_square.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square.imageset/icon_checkbox_square@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square.imageset/icon_checkbox_square@2x.png new file mode 100644 index 0000000..78cba99 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square.imageset/icon_checkbox_square@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square.imageset/icon_checkbox_square@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square.imageset/icon_checkbox_square@3x.png new file mode 100644 index 0000000..930b0fe Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square.imageset/icon_checkbox_square@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square_checked.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square_checked.imageset/Contents.json new file mode 100644 index 0000000..9f0d17a --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square_checked.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "icon_checkbox_square_checked.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "icon_checkbox_square_checked@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "icon_checkbox_square_checked@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square_checked.imageset/icon_checkbox_square_checked.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square_checked.imageset/icon_checkbox_square_checked.png new file mode 100644 index 0000000..74bb988 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square_checked.imageset/icon_checkbox_square_checked.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square_checked.imageset/icon_checkbox_square_checked@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square_checked.imageset/icon_checkbox_square_checked@2x.png new file mode 100644 index 0000000..defc878 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square_checked.imageset/icon_checkbox_square_checked@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square_checked.imageset/icon_checkbox_square_checked@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square_checked.imageset/icon_checkbox_square_checked@3x.png new file mode 100644 index 0000000..baee5f2 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/RadioButton/icon_checkbox_square_checked.imageset/icon_checkbox_square_checked@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/Contents.json new file mode 100644 index 0000000..453a981 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/Contents.json @@ -0,0 +1,59 @@ +{ + "images" : [ + { + "filename" : "magnifyingglass.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "magnifyingglass-dark.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "magnifyingglass@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "magnifyingglass-dark@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "magnifyingglass@3x.png", + "idiom" : "universal", + "scale" : "3x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "magnifyingglass-dark@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "template-rendering-intent" : "original" + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass-dark.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass-dark.png new file mode 100644 index 0000000..2a9c93c Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass-dark.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass-dark@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass-dark@2x.png new file mode 100644 index 0000000..8dc4437 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass-dark@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass-dark@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass-dark@3x.png new file mode 100644 index 0000000..017b188 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass-dark@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass.png new file mode 100644 index 0000000..3c2585a Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass@2x.png new file mode 100644 index 0000000..753520e Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass@3x.png new file mode 100644 index 0000000..c68a244 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-magnifyingglass-icon.imageset/magnifyingglass@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/Contents.json new file mode 100644 index 0000000..92ebd69 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/Contents.json @@ -0,0 +1,59 @@ +{ + "images" : [ + { + "filename" : "xmark-icon.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "xmark-icon-dark.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "xmark-icon@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "xmark-icon-dark@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "xmark-icon@3x.png", + "idiom" : "universal", + "scale" : "3x" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "filename" : "xmark-icon-dark@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "template-rendering-intent" : "original" + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon-dark.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon-dark.png new file mode 100644 index 0000000..ba9c29e Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon-dark.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon-dark@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon-dark@2x.png new file mode 100644 index 0000000..7d893fd Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon-dark@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon-dark@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon-dark@3x.png new file mode 100644 index 0000000..83faa49 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon-dark@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon.png new file mode 100644 index 0000000..d1a678a Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon@2x.png new file mode 100644 index 0000000..1016534 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon@3x.png new file mode 100644 index 0000000..f92f6bf Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/SearchBar/searchbar-xmark-icon.imageset/xmark-icon@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/warning_triangle.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/warning_triangle.imageset/Contents.json new file mode 100644 index 0000000..96c182b --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/warning_triangle.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "warning_triangle.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "warning_triangle@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "warning_triangle@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/warning_triangle.imageset/warning_triangle.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/warning_triangle.imageset/warning_triangle.png new file mode 100644 index 0000000..76b9fde Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/warning_triangle.imageset/warning_triangle.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/warning_triangle.imageset/warning_triangle@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/warning_triangle.imageset/warning_triangle@2x.png new file mode 100644 index 0000000..30c78b3 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/warning_triangle.imageset/warning_triangle@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/warning_triangle.imageset/warning_triangle@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/warning_triangle.imageset/warning_triangle@3x.png new file mode 100644 index 0000000..0241ec2 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/System message/warning_triangle.imageset/warning_triangle@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-copied.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-copied.imageset/Contents.json new file mode 100644 index 0000000..6818296 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-copied.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "toast-coppied.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "toast-coppied@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "toast-coppied@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-copied.imageset/toast-coppied.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-copied.imageset/toast-coppied.png new file mode 100644 index 0000000..1cd115d Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-copied.imageset/toast-coppied.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-copied.imageset/toast-coppied@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-copied.imageset/toast-coppied@2x.png new file mode 100644 index 0000000..8d31e90 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-copied.imageset/toast-coppied@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-copied.imageset/toast-coppied@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-copied.imageset/toast-coppied@3x.png new file mode 100644 index 0000000..3759826 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-copied.imageset/toast-coppied@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-error.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-error.imageset/Contents.json new file mode 100644 index 0000000..5a336e4 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-error.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "toast-error.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "toast-error@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "toast-error@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-error.imageset/toast-error.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-error.imageset/toast-error.png new file mode 100644 index 0000000..2f2d29a Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-error.imageset/toast-error.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-error.imageset/toast-error@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-error.imageset/toast-error@2x.png new file mode 100644 index 0000000..137f833 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-error.imageset/toast-error@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-error.imageset/toast-error@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-error.imageset/toast-error@3x.png new file mode 100644 index 0000000..e655e31 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-error.imageset/toast-error@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-info.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-info.imageset/Contents.json new file mode 100644 index 0000000..67826e2 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-info.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "toast-info.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "toast-info@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "toast-info@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-info.imageset/toast-info.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-info.imageset/toast-info.png new file mode 100644 index 0000000..a467be7 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-info.imageset/toast-info.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-info.imageset/toast-info@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-info.imageset/toast-info@2x.png new file mode 100644 index 0000000..2c25965 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-info.imageset/toast-info@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-info.imageset/toast-info@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-info.imageset/toast-info@3x.png new file mode 100644 index 0000000..b4f9598 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-info.imageset/toast-info@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-success.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-success.imageset/Contents.json new file mode 100644 index 0000000..83be86d --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-success.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "toast-success.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "toast-success@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "toast-success@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-success.imageset/toast-success.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-success.imageset/toast-success.png new file mode 100644 index 0000000..f4914b9 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-success.imageset/toast-success.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-success.imageset/toast-success@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-success.imageset/toast-success@2x.png new file mode 100644 index 0000000..37c9565 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-success.imageset/toast-success@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-success.imageset/toast-success@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-success.imageset/toast-success@3x.png new file mode 100644 index 0000000..a9a3a87 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-success.imageset/toast-success@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-warning.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-warning.imageset/Contents.json new file mode 100644 index 0000000..c217ab9 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-warning.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "toast-warning.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "toast-warning@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "toast-warning@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-warning.imageset/toast-warning.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-warning.imageset/toast-warning.png new file mode 100644 index 0000000..9f7a062 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-warning.imageset/toast-warning.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-warning.imageset/toast-warning@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-warning.imageset/toast-warning@2x.png new file mode 100644 index 0000000..7cbfdc3 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-warning.imageset/toast-warning@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-warning.imageset/toast-warning@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-warning.imageset/toast-warning@3x.png new file mode 100644 index 0000000..5d221fb Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/Toast/toast-warning.imageset/toast-warning@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/checkmark.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/checkmark.imageset/Contents.json new file mode 100644 index 0000000..41a2ff5 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/checkmark.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "checkmark@x1.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "checkmark@x2.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "checkmark@x3.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/checkmark.imageset/checkmark@x1.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/checkmark.imageset/checkmark@x1.png new file mode 100644 index 0000000..cbe33bf Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/checkmark.imageset/checkmark@x1.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/checkmark.imageset/checkmark@x2.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/checkmark.imageset/checkmark@x2.png new file mode 100644 index 0000000..b889a58 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/checkmark.imageset/checkmark@x2.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/checkmark.imageset/checkmark@x3.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/checkmark.imageset/checkmark@x3.png new file mode 100644 index 0000000..b86f9a1 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/checkmark.imageset/checkmark@x3.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/chevron-down-currency-select.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/chevron-down-currency-select.imageset/Contents.json new file mode 100644 index 0000000..2e250d0 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/chevron-down-currency-select.imageset/Contents.json @@ -0,0 +1,26 @@ +{ + "images" : [ + { + "filename" : "chevron-down-currency-select@x1.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "chevron-down-currency-select@x2.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "chevron-down-currency-select@x3.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "template-rendering-intent" : "template" + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/chevron-down-currency-select.imageset/chevron-down-currency-select@x1.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/chevron-down-currency-select.imageset/chevron-down-currency-select@x1.png new file mode 100644 index 0000000..7de6369 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/chevron-down-currency-select.imageset/chevron-down-currency-select@x1.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/chevron-down-currency-select.imageset/chevron-down-currency-select@x2.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/chevron-down-currency-select.imageset/chevron-down-currency-select@x2.png new file mode 100644 index 0000000..eb4bdf2 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/chevron-down-currency-select.imageset/chevron-down-currency-select@x2.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/chevron-down-currency-select.imageset/chevron-down-currency-select@x3.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/chevron-down-currency-select.imageset/chevron-down-currency-select@x3.png new file mode 100644 index 0000000..0a9060a Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/chevron-down-currency-select.imageset/chevron-down-currency-select@x3.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/enter-amount-dash.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/enter-amount-dash.imageset/Contents.json new file mode 100644 index 0000000..4826d14 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/enter-amount-dash.imageset/Contents.json @@ -0,0 +1,26 @@ +{ + "images" : [ + { + "filename" : "enter-amount-dash@1x.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "enter-amount-dash@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "enter-amount-dash@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "template-rendering-intent" : "template" + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/enter-amount-dash.imageset/enter-amount-dash@1x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/enter-amount-dash.imageset/enter-amount-dash@1x.png new file mode 100644 index 0000000..f7ccbfb Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/enter-amount-dash.imageset/enter-amount-dash@1x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/enter-amount-dash.imageset/enter-amount-dash@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/enter-amount-dash.imageset/enter-amount-dash@2x.png new file mode 100644 index 0000000..f1f07d4 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/enter-amount-dash.imageset/enter-amount-dash@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/enter-amount-dash.imageset/enter-amount-dash@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/enter-amount-dash.imageset/enter-amount-dash@3x.png new file mode 100644 index 0000000..5ace29b Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/enter-amount-dash.imageset/enter-amount-dash@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/icon_dash_currency.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/icon_dash_currency.imageset/Contents.json new file mode 100644 index 0000000..1b62c93 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/icon_dash_currency.imageset/Contents.json @@ -0,0 +1,26 @@ +{ + "images" : [ + { + "filename" : "icon_dash_currency.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "icon_dash_currency@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "icon_dash_currency@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "template-rendering-intent" : "template" + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/icon_dash_currency.imageset/icon_dash_currency.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/icon_dash_currency.imageset/icon_dash_currency.png new file mode 100644 index 0000000..6f9cde2 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/icon_dash_currency.imageset/icon_dash_currency.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/icon_dash_currency.imageset/icon_dash_currency@2x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/icon_dash_currency.imageset/icon_dash_currency@2x.png new file mode 100644 index 0000000..4af01f6 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/icon_dash_currency.imageset/icon_dash_currency@2x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/icon_dash_currency.imageset/icon_dash_currency@3x.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/icon_dash_currency.imageset/icon_dash_currency@3x.png new file mode 100644 index 0000000..dff5040 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/icon_dash_currency.imageset/icon_dash_currency@3x.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/illustration-xmark.imageset/Contents.json b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/illustration-xmark.imageset/Contents.json new file mode 100644 index 0000000..1c06247 --- /dev/null +++ b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/illustration-xmark.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "xmark@x1.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "xmark@x2.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "xmark@x3.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/illustration-xmark.imageset/xmark@x1.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/illustration-xmark.imageset/xmark@x1.png new file mode 100644 index 0000000..cbf77dc Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/illustration-xmark.imageset/xmark@x1.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/illustration-xmark.imageset/xmark@x2.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/illustration-xmark.imageset/xmark@x2.png new file mode 100644 index 0000000..3e62cb9 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/illustration-xmark.imageset/xmark@x2.png differ diff --git a/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/illustration-xmark.imageset/xmark@x3.png b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/illustration-xmark.imageset/xmark@x3.png new file mode 100644 index 0000000..958a4c0 Binary files /dev/null and b/Sources/DashUIKit/Resources/Media.xcassets/Icons & Illustrations/illustration-xmark.imageset/xmark@x3.png differ