Build Information
Successful build of swift-w3c-css, reference 0.3.0 (fc9760), with Swift 6.3 for Linux on 23 Apr 2026 19:23:37 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:194:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
192 | let end = bez.controlPoints[3]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
196 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:194:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
192 | let end = bez.controlPoints[3]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
196 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:195:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
196 | }
197 | default:
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:195:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
196 | }
197 | default:
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:201:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
199 | // For now, just draw to end point
200 | if let end = bez.controlPoints.last {
201 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
202 | }
203 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:201:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
199 | // For now, just draw to end point
200 | if let end = bez.controlPoints.last {
201 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
202 | }
203 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:209:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
207 | // (Full arc support would require SVG arc command conversion)
208 | let end = arc.endPoint
209 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
210 |
211 | case .ellipticalArc(let arc):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:209:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
207 | // (Full arc support would require SVG arc command conversion)
208 | let end = arc.endPoint
209 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
210 |
211 | case .ellipticalArc(let arc):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:214:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
212 | // Approximate with line to endpoint
213 | let end = arc.endPoint
214 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
215 | }
216 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:214:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
212 | // Approximate with line to endpoint
213 | let end = arc.endPoint
214 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
215 | }
216 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[657/672] Compiling W3C_CSS_Shared CSS.Context.swift
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:37:33: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
35 | /// Example output: `"circle(50px at 100px 100px)"`
36 | public var clipPath: String? {
37 | guard circle.radius._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
38 | return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
39 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:38:57: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
36 | public var clipPath: String? {
37 | guard circle.radius._rawValue >= 0 else { return nil }
38 | return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
39 | }
40 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:38:105: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
36 | public var clipPath: String? {
37 | guard circle.radius._rawValue >= 0 else { return nil }
38 | return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
39 | }
40 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:38:150: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
36 | public var clipPath: String? {
37 | guard circle.radius._rawValue >= 0 else { return nil }
38 | return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
39 | }
40 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:64:35: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
62 | /// This assumes a reference box and computes insets accordingly.
63 | public func inset(referenceWidth: Double, referenceHeight: Double) -> String? {
64 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
65 |
66 | let top = rectangle.lly._rawValue
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:64:68: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
62 | /// This assumes a reference box and computes insets accordingly.
63 | public func inset(referenceWidth: Double, referenceHeight: Double) -> String? {
64 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
65 |
66 | let top = rectangle.lly._rawValue
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:66:37: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
64 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
65 |
66 | let top = rectangle.lly._rawValue
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
67 | let left = rectangle.llx._rawValue
68 | let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:67:38: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
65 |
66 | let top = rectangle.lly._rawValue
67 | let left = rectangle.llx._rawValue
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
68 | let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
69 | let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:68:59: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
66 | let top = rectangle.lly._rawValue
67 | let left = rectangle.llx._rawValue
68 | let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
69 | let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
70 |
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:68:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
66 | let top = rectangle.lly._rawValue
67 | let left = rectangle.llx._rawValue
68 | let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
69 | let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
70 |
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:69:57: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
67 | let left = rectangle.llx._rawValue
68 | let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
69 | let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
70 |
71 | return "inset(\(formatNumber(top))px \(formatNumber(right))px \(formatNumber(bottom))px \(formatNumber(left))px)"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:69:85: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
67 | let left = rectangle.llx._rawValue
68 | let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
69 | let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
70 |
71 | return "inset(\(formatNumber(top))px \(formatNumber(right))px \(formatNumber(bottom))px \(formatNumber(left))px)"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:80:35: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
78 | /// Example output: `"xywh(10px 20px 200px 100px)"`
79 | public var xywh: String? {
80 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
81 | return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
82 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:80:68: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
78 | /// Example output: `"xywh(10px 20px 200px 100px)"`
79 | public var xywh: String? {
80 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
81 | return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
82 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
79 | public var xywh: String? {
80 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
81 | return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
82 | }
83 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:98: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
79 | public var xywh: String? {
80 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
81 | return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
82 | }
83 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:143: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
79 | public var xywh: String? {
80 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
81 | return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
82 | }
83 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:189: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
79 | public var xywh: String? {
80 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
81 | return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
82 | }
83 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:106:37: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
104 | /// Example output: `"ellipse(100px 50px at 200px 150px)"`
105 | public var clipPath: String? {
106 | guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
107 | return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
108 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:106:71: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
104 | /// Example output: `"ellipse(100px 50px at 200px 150px)"`
105 | public var clipPath: String? {
106 | guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
107 | return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
108 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:62: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 | public var clipPath: String? {
106 | guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 | return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
108 | }
109 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:109: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 | public var clipPath: String? {
106 | guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 | return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
108 | }
109 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:158: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 | public var clipPath: String? {
106 | guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 | return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
108 | }
109 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:204: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 | public var clipPath: String? {
106 | guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 | return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
108 | }
109 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:131:42: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
129 | public var clipPath: String {
130 | let pointsStr = polygon.vertices.map { vertex in
131 | "\(formatNumber(vertex.x._rawValue))px \(formatNumber(vertex.y._rawValue))px"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
132 | }.joined(separator: ", ")
133 | return "polygon(\(pointsStr))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:131:80: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
129 | public var clipPath: String {
130 | let pointsStr = polygon.vertices.map { vertex in
131 | "\(formatNumber(vertex.x._rawValue))px \(formatNumber(vertex.y._rawValue))px"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
132 | }.joined(separator: ", ")
133 | return "polygon(\(pointsStr))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:166:60: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
164 | d += " M"
165 | }
166 | d += " \(formatNumber(subpath.startPoint.x._rawValue)) \(formatNumber(subpath.startPoint.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
167 |
168 | // Add segments
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:166:108: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
164 | d += " M"
165 | }
166 | d += " \(formatNumber(subpath.startPoint.x._rawValue)) \(formatNumber(subpath.startPoint.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
167 |
168 | // Add segments
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:172:59: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
170 | switch segment {
171 | case .line(let seg):
172 | d += " L \(formatNumber(seg.end.x._rawValue)) \(formatNumber(seg.end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
173 |
174 | case .bezier(let bez):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:172:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
170 | switch segment {
171 | case .line(let seg):
172 | d += " L \(formatNumber(seg.end.x._rawValue)) \(formatNumber(seg.end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
173 |
174 | case .bezier(let bez):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:179:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
177 | case 2: // Linear (should use line instead, but handle it)
178 | if let end = bez.controlPoints.last {
179 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
180 | }
181 | case 3: // Quadratic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:179:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
177 | case 2: // Linear (should use line instead, but handle it)
178 | if let end = bez.controlPoints.last {
179 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
180 | }
181 | case 3: // Quadratic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:185:62: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
183 | let cp = bez.controlPoints[1]
184 | let end = bez.controlPoints[2]
185 | d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
186 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
187 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:185:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
183 | let cp = bez.controlPoints[1]
184 | let end = bez.controlPoints[2]
185 | d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
186 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
187 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:186:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
184 | let end = bez.controlPoints[2]
185 | d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
186 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
187 | }
188 | case 4: // Cubic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:186:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
184 | let end = bez.controlPoints[2]
185 | d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
186 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
187 | }
188 | case 4: // Cubic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:193:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
191 | let cp2 = bez.controlPoints[2]
192 | let end = bez.controlPoints[3]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:193:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
191 | let cp2 = bez.controlPoints[2]
192 | let end = bez.controlPoints[3]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:194:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
192 | let end = bez.controlPoints[3]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
196 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:194:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
192 | let end = bez.controlPoints[3]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
196 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:195:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
196 | }
197 | default:
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:195:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
196 | }
197 | default:
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:201:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
199 | // For now, just draw to end point
200 | if let end = bez.controlPoints.last {
201 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
202 | }
203 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:201:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
199 | // For now, just draw to end point
200 | if let end = bez.controlPoints.last {
201 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
202 | }
203 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:209:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
207 | // (Full arc support would require SVG arc command conversion)
208 | let end = arc.endPoint
209 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
210 |
211 | case .ellipticalArc(let arc):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:209:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
207 | // (Full arc support would require SVG arc command conversion)
208 | let end = arc.endPoint
209 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
210 |
211 | case .ellipticalArc(let arc):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:214:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
212 | // Approximate with line to endpoint
213 | let end = arc.endPoint
214 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
215 | }
216 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:214:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
212 | // Approximate with line to endpoint
213 | let end = arc.endPoint
214 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
215 | }
216 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[658/672] Compiling W3C_CSS_Shared CSSOM.swift
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:37:33: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
35 | /// Example output: `"circle(50px at 100px 100px)"`
36 | public var clipPath: String? {
37 | guard circle.radius._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
38 | return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
39 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:38:57: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
36 | public var clipPath: String? {
37 | guard circle.radius._rawValue >= 0 else { return nil }
38 | return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
39 | }
40 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:38:105: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
36 | public var clipPath: String? {
37 | guard circle.radius._rawValue >= 0 else { return nil }
38 | return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
39 | }
40 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:38:150: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
36 | public var clipPath: String? {
37 | guard circle.radius._rawValue >= 0 else { return nil }
38 | return "circle(\(formatNumber(circle.radius._rawValue))px at \(formatNumber(circle.center.x._rawValue))px \(formatNumber(circle.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
39 | }
40 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:64:35: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
62 | /// This assumes a reference box and computes insets accordingly.
63 | public func inset(referenceWidth: Double, referenceHeight: Double) -> String? {
64 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
65 |
66 | let top = rectangle.lly._rawValue
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:64:68: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
62 | /// This assumes a reference box and computes insets accordingly.
63 | public func inset(referenceWidth: Double, referenceHeight: Double) -> String? {
64 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
65 |
66 | let top = rectangle.lly._rawValue
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:66:37: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
64 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
65 |
66 | let top = rectangle.lly._rawValue
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
67 | let left = rectangle.llx._rawValue
68 | let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:67:38: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
65 |
66 | let top = rectangle.lly._rawValue
67 | let left = rectangle.llx._rawValue
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
68 | let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
69 | let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:68:59: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
66 | let top = rectangle.lly._rawValue
67 | let left = rectangle.llx._rawValue
68 | let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
69 | let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
70 |
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:68:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
66 | let top = rectangle.lly._rawValue
67 | let left = rectangle.llx._rawValue
68 | let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
69 | let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
70 |
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:69:57: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
67 | let left = rectangle.llx._rawValue
68 | let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
69 | let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
70 |
71 | return "inset(\(formatNumber(top))px \(formatNumber(right))px \(formatNumber(bottom))px \(formatNumber(left))px)"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:69:85: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
67 | let left = rectangle.llx._rawValue
68 | let bottom = referenceHeight - (rectangle.lly._rawValue + rectangle.height._rawValue)
69 | let right = referenceWidth - (rectangle.llx._rawValue + rectangle.width._rawValue)
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
70 |
71 | return "inset(\(formatNumber(top))px \(formatNumber(right))px \(formatNumber(bottom))px \(formatNumber(left))px)"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:80:35: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
78 | /// Example output: `"xywh(10px 20px 200px 100px)"`
79 | public var xywh: String? {
80 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
81 | return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
82 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:80:68: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
78 | /// Example output: `"xywh(10px 20px 200px 100px)"`
79 | public var xywh: String? {
80 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
81 | return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
82 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
79 | public var xywh: String? {
80 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
81 | return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
82 | }
83 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:98: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
79 | public var xywh: String? {
80 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
81 | return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
82 | }
83 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:143: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
79 | public var xywh: String? {
80 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
81 | return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
82 | }
83 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:81:189: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
79 | public var xywh: String? {
80 | guard rectangle.width._rawValue >= 0, rectangle.height._rawValue >= 0 else { return nil }
81 | return "xywh(\(formatNumber(rectangle.llx._rawValue))px \(formatNumber(rectangle.lly._rawValue))px \(formatNumber(rectangle.width._rawValue))px \(formatNumber(rectangle.height._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
82 | }
83 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:106:37: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
104 | /// Example output: `"ellipse(100px 50px at 200px 150px)"`
105 | public var clipPath: String? {
106 | guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
107 | return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
108 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:106:71: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
104 | /// Example output: `"ellipse(100px 50px at 200px 150px)"`
105 | public var clipPath: String? {
106 | guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
107 | return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
108 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:62: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 | public var clipPath: String? {
106 | guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 | return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
108 | }
109 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:109: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 | public var clipPath: String? {
106 | guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 | return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
108 | }
109 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:158: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 | public var clipPath: String? {
106 | guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 | return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
108 | }
109 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:107:204: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
105 | public var clipPath: String? {
106 | guard ellipse.semiMajor._rawValue >= 0, ellipse.semiMinor._rawValue >= 0 else { return nil }
107 | return "ellipse(\(formatNumber(ellipse.semiMajor._rawValue))px \(formatNumber(ellipse.semiMinor._rawValue))px at \(formatNumber(ellipse.center.x._rawValue))px \(formatNumber(ellipse.center.y._rawValue))px)"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
108 | }
109 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:131:42: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
129 | public var clipPath: String {
130 | let pointsStr = polygon.vertices.map { vertex in
131 | "\(formatNumber(vertex.x._rawValue))px \(formatNumber(vertex.y._rawValue))px"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
132 | }.joined(separator: ", ")
133 | return "polygon(\(pointsStr))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:131:80: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
129 | public var clipPath: String {
130 | let pointsStr = polygon.vertices.map { vertex in
131 | "\(formatNumber(vertex.x._rawValue))px \(formatNumber(vertex.y._rawValue))px"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
132 | }.joined(separator: ", ")
133 | return "polygon(\(pointsStr))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:166:60: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
164 | d += " M"
165 | }
166 | d += " \(formatNumber(subpath.startPoint.x._rawValue)) \(formatNumber(subpath.startPoint.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
167 |
168 | // Add segments
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:166:108: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
164 | d += " M"
165 | }
166 | d += " \(formatNumber(subpath.startPoint.x._rawValue)) \(formatNumber(subpath.startPoint.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
167 |
168 | // Add segments
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:172:59: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
170 | switch segment {
171 | case .line(let seg):
172 | d += " L \(formatNumber(seg.end.x._rawValue)) \(formatNumber(seg.end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
173 |
174 | case .bezier(let bez):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:172:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
170 | switch segment {
171 | case .line(let seg):
172 | d += " L \(formatNumber(seg.end.x._rawValue)) \(formatNumber(seg.end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
173 |
174 | case .bezier(let bez):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:179:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
177 | case 2: // Linear (should use line instead, but handle it)
178 | if let end = bez.controlPoints.last {
179 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
180 | }
181 | case 3: // Quadratic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:179:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
177 | case 2: // Linear (should use line instead, but handle it)
178 | if let end = bez.controlPoints.last {
179 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
180 | }
181 | case 3: // Quadratic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:185:62: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
183 | let cp = bez.controlPoints[1]
184 | let end = bez.controlPoints[2]
185 | d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
186 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
187 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:185:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
183 | let cp = bez.controlPoints[1]
184 | let end = bez.controlPoints[2]
185 | d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
186 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
187 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:186:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
184 | let end = bez.controlPoints[2]
185 | d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
186 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
187 | }
188 | case 4: // Cubic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:186:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
184 | let end = bez.controlPoints[2]
185 | d += " Q \(formatNumber(cp.x._rawValue)) \(formatNumber(cp.y._rawValue))"
186 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
187 | }
188 | case 4: // Cubic
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:193:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
191 | let cp2 = bez.controlPoints[2]
192 | let end = bez.controlPoints[3]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:193:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
191 | let cp2 = bez.controlPoints[2]
192 | let end = bez.controlPoints[3]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:194:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
192 | let end = bez.controlPoints[3]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
196 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:194:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
192 | let end = bez.controlPoints[3]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
196 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:195:61: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
196 | }
197 | default:
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:195:94: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
193 | d += " C \(formatNumber(cp1.x._rawValue)) \(formatNumber(cp1.y._rawValue))"
194 | d += " \(formatNumber(cp2.x._rawValue)) \(formatNumber(cp2.y._rawValue))"
195 | d += " \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
196 | }
197 | default:
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:201:63: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
199 | // For now, just draw to end point
200 | if let end = bez.controlPoints.last {
201 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
202 | }
203 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:201:96: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
199 | // For now, just draw to end point
200 | if let end = bez.controlPoints.last {
201 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
202 | }
203 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:209:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
207 | // (Full arc support would require SVG arc command conversion)
208 | let end = arc.endPoint
209 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
210 |
211 | case .ellipticalArc(let arc):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:209:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
207 | // (Full arc support would require SVG arc command conversion)
208 | let end = arc.endPoint
209 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
210 |
211 | case .ellipticalArc(let arc):
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:214:55: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
212 | // Approximate with line to endpoint
213 | let end = arc.endPoint
214 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
215 | }
216 | }
/host/spi-builder-workspace/Sources/W3C CSS Shared/CSS.Context.swift:214:88: warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
212 | // Approximate with line to endpoint
213 | let end = arc.endPoint
214 | d += " L \(formatNumber(end.x._rawValue)) \(formatNumber(end.y._rawValue))"
| |- warning: '_rawValue' is deprecated: Use 'rawValue' instead. '_rawValue' will be removed in a future version. [#DeprecatedDeclaration]
| `- note: use 'rawValue' instead
215 | }
216 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[660/739] Compiling W3C_CSS_PseudoClasses Empty.swift
[661/739] Compiling W3C_CSS_PseudoClasses Enabled.swift
[662/740] Compiling W3C_CSS_PseudoClasses CSSPseudoClass.swift
[663/740] Compiling W3C_CSS_PseudoClasses Active.swift
[664/741] Compiling W3C_CSS_PseudoClasses AnyLink.swift
[665/741] Compiling W3C_CSS_PseudoClasses Blank.swift
[666/753] Compiling W3C_CSS_Variables exports.swift
[667/753] Emitting module W3C_CSS_Variables
[668/754] Emitting module W3C_CSS_Conditional
[669/754] Compiling W3C_CSS_Conditional exports.swift
[672/759] Compiling W3C_CSS_Selectors & nesting.swift
[673/759] Emitting module W3C_CSS_Selectors
[674/759] Emitting module W3C_CSS_PseudoElements
[676/759] Compiling W3C_CSS_PseudoClasses Checked.swift
[677/759] Compiling W3C_CSS_PseudoClasses Default.swift
[678/759] Compiling W3C_CSS_Selectors Universal.swift
[679/759] Compiling W3C_CSS_Selectors Type.swift
[680/759] Compiling W3C_CSS_WritingModes WritingMode.swift
[681/759] Compiling W3C_CSS_Selectors ID.swift
[683/759] Compiling W3C_CSS_PseudoClasses FirstChild.swift
[684/759] Compiling W3C_CSS_PseudoClasses FirstOfType.swift
[688/759] Emitting module W3C_CSS_WritingModes
[689/759] Compiling W3C_CSS_WritingModes Direction.swift
[690/759] Compiling W3C_CSS_Selectors Combinators.swift
[691/759] Compiling W3C_CSS_Selectors Attribute.swift
[692/759] Compiling W3C_CSS_Selectors Class.swift
[693/759] Compiling W3C_CSS_PseudoClasses Dir.swift
[694/759] Compiling W3C_CSS_PseudoClasses Disabled.swift
[696/759] Compiling W3C_CSS_PseudoClasses Focus.swift
[697/759] Compiling W3C_CSS_PseudoClasses FocusVisible.swift
[698/759] Compiling W3C_CSS_PseudoClasses FocusWithin.swift
[699/760] Compiling W3C_CSS_PseudoClasses Has.swift
[700/760] Compiling W3C_CSS_PseudoClasses Hover.swift
[701/760] Compiling W3C_CSS_PseudoClasses InRange.swift
[702/760] Compiling W3C_CSS_PseudoClasses Indeterminate.swift
[703/760] Compiling W3C_CSS_PseudoClasses Invalid.swift
[704/760] Compiling W3C_CSS_PseudoClasses Is.swift
[705/760] Compiling W3C_CSS_Compositing BlendMode.swift
[708/764] Emitting module W3C_CSS_PseudoClasses
[709/764] Emitting module W3C_CSS_Compositing
[710/769] Compiling W3C_CSS_Compositing MixBlendMode.swift
[711/769] Compiling W3C_CSS_Compositing Isolation.swift
[712/770] Compiling W3C_CSS_PseudoClasses ReadOnly.swift
[713/770] Compiling W3C_CSS_PseudoClasses ReadWrite.swift
[714/770] Compiling W3C_CSS_PseudoClasses Required.swift
[715/770] Compiling W3C_CSS_PseudoClasses Root.swift
[716/770] Compiling W3C_CSS_PseudoClasses Scope.swift
[717/770] Compiling W3C_CSS_PseudoClasses Target.swift
[718/770] Compiling W3C_CSS_PseudoClasses NthOfType.swift
[719/770] Compiling W3C_CSS_PseudoClasses OnlyChild.swift
[720/770] Compiling W3C_CSS_PseudoClasses OnlyOfType.swift
[721/770] Compiling W3C_CSS_PseudoClasses Optional.swift
[722/770] Compiling W3C_CSS_PseudoClasses OutOfRange.swift
[723/770] Compiling W3C_CSS_PseudoClasses PlaceholderShown.swift
[734/770] Compiling W3C_CSS_PseudoElements spelling-error.swift
[735/770] Compiling W3C_CSS_PseudoElements target-text.swift
[736/770] Compiling W3C_CSS_PseudoElements webkit-input-placeholder.swift
[749/770] Compiling W3C_CSS_PseudoClasses Link.swift
[750/770] Compiling W3C_CSS_PseudoClasses LocalLink.swift
[751/770] Compiling W3C_CSS_PseudoClasses Not.swift
[752/770] Compiling W3C_CSS_PseudoClasses NthChild.swift
[753/770] Compiling W3C_CSS_PseudoClasses NthLastChild.swift
[754/770] Compiling W3C_CSS_PseudoClasses NthLastOfType.swift
[762/770] Emitting module RFC_4648
[765/772] Compiling W3C_CSS_PseudoClasses TargetWithin.swift
[766/772] Compiling W3C_CSS_PseudoClasses Valid.swift
[767/772] Compiling W3C_CSS_PseudoClasses Visited.swift
[768/772] Compiling W3C_CSS_PseudoClasses Where.swift
[769/772] Compiling W3C_CSS_PseudoClasses Pseudo-classes.swift
[775/809] Compiling W3C_CSS_Values FilterFunction.swift
[776/809] Compiling W3C_CSS_Values Flex.swift
[777/809] Compiling W3C_CSS_Values Frequency.swift
[778/809] Compiling W3C_CSS_Values FrequencyPercentage.swift
[779/809] Compiling W3C_CSS_Values Functions.swift
[780/813] Emitting module W3C_CSS_Values
/host/spi-builder-workspace/Sources/W3C CSS Values/Percentage.swift:44:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
42 | public static let full = Percentage(100)
43 |
44 | subscript<T>(dynamicMember keyPath: KeyPath<Double, T>) -> T {
| `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
45 | value[keyPath: keyPath]
46 | }
[781/813] Compiling W3C_CSS_Values NamedColor.swift
/host/spi-builder-workspace/Sources/W3C CSS Values/Percentage.swift:44:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
42 | public static let full = Percentage(100)
43 |
44 | subscript<T>(dynamicMember keyPath: KeyPath<Double, T>) -> T {
| `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
45 | value[keyPath: keyPath]
46 | }
[782/813] Compiling W3C_CSS_Values Number.swift
/host/spi-builder-workspace/Sources/W3C CSS Values/Percentage.swift:44:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
42 | public static let full = Percentage(100)
43 |
44 | subscript<T>(dynamicMember keyPath: KeyPath<Double, T>) -> T {
| `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
45 | value[keyPath: keyPath]
46 | }
[783/813] Compiling W3C_CSS_Values NumberConvertible.swift
/host/spi-builder-workspace/Sources/W3C CSS Values/Percentage.swift:44:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
42 | public static let full = Percentage(100)
43 |
44 | subscript<T>(dynamicMember keyPath: KeyPath<Double, T>) -> T {
| `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
45 | value[keyPath: keyPath]
46 | }
[784/813] Compiling W3C_CSS_Values NumberPercentage.swift
/host/spi-builder-workspace/Sources/W3C CSS Values/Percentage.swift:44:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
42 | public static let full = Percentage(100)
43 |
44 | subscript<T>(dynamicMember keyPath: KeyPath<Double, T>) -> T {
| `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
45 | value[keyPath: keyPath]
46 | }
[785/813] Compiling W3C_CSS_Values Percentage.swift
/host/spi-builder-workspace/Sources/W3C CSS Values/Percentage.swift:44:5: warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
42 | public static let full = Percentage(100)
43 |
44 | subscript<T>(dynamicMember keyPath: KeyPath<Double, T>) -> T {
| `- warning: '@dynamicMemberLookup' requires 'subscript(dynamicMember:)' to be as accessible as its enclosing type; this will be an error in a future Swift language mode
45 | value[keyPath: keyPath]
46 | }
[786/813] Compiling W3C_CSS_Values AlphaValue.swift
[787/813] Compiling W3C_CSS_Values Angle.swift
[788/813] Compiling W3C_CSS_Values AngleConvertible.swift
[789/813] Compiling W3C_CSS_Values AnglePercentage.swift
[790/813] Compiling W3C_CSS_Values BasicShape.swift
[791/813] Compiling W3C_CSS_Values CalcKeyword.swift
[792/813] Compiling W3C_CSS_Values CalcSum.swift
[793/813] Compiling W3C_CSS_Values Color.swift
[794/813] Compiling W3C_CSS_Values ColorInterpolationMethod.swift
[795/813] Compiling W3C_CSS_Values Dimension.swift
[796/813] Compiling W3C_CSS_Values LengthPercentage.swift
[797/813] Compiling W3C_CSS_Values LengthPercentageConvertible.swift
[798/813] Compiling W3C_CSS_Values LineStyle.swift
[799/813] Compiling W3C_CSS_Values LineStyleConvertible.swift
[800/813] Compiling W3C_CSS_Values NamedColor+sRGB.swift
[801/813] Compiling W3C_CSS_Values PercentageConvertible.swift
[802/813] Compiling W3C_CSS_Values Position.swift
[803/813] Compiling W3C_CSS_Values Ratio.swift
[804/813] Compiling W3C_CSS_Values Resolution.swift
[805/813] Compiling W3C_CSS_Values HexColor.swift
[806/813] Compiling W3C_CSS_Values Hue.swift
[807/813] Compiling W3C_CSS_Values Integer.swift
[808/813] Compiling W3C_CSS_Values Length.swift
[809/813] Compiling W3C_CSS_Values LengthConvertible.swift
[810/813] Compiling W3C_CSS_Values Size.swift
[811/813] Compiling W3C_CSS_Values SystemColor.swift
[812/813] Compiling W3C_CSS_Values Time.swift
[813/813] Compiling W3C_CSS_Values TimePercentage.swift
[815/913] Compiling W3C_CSS_Logical MinInlineSize.swift
[816/913] Compiling W3C_CSS_Syntax AtRule.swift
[817/913] Compiling W3C_CSS_Syntax UnicodeRange Property.swift
[818/913] Compiling W3C_CSS_Display DisplayOutside.swift
[819/913] Emitting module W3C_CSS_Syntax
[820/913] Compiling W3C_CSS_Display DisplayListitem.swift
[821/913] Compiling W3C_CSS_Transforms TransformBox.swift
[822/914] Compiling W3C_CSS_Display DisplayLegacy.swift
[823/914] Compiling W3C_CSS_Display DisplayInside.swift
[824/914] Compiling W3C_CSS_Display DisplayBox.swift
[825/914] Compiling W3C_CSS_Display DisplayInternal.swift
[826/914] Compiling W3C_CSS_Logical MinBlockSize.swift
[827/914] Emitting module W3C_CSS_Display
[828/914] Compiling W3C_CSS_Transforms TransformOrigin.swift
[829/914] Compiling W3C_CSS_Transforms TransformStyle.swift
[830/914] Compiling W3C_CSS_Display Display.swift
[831/915] Compiling W3C_CSS_Alignment PlaceSelf.swift
[832/916] Compiling W3C_CSS_BoxModel MinHeight.swift
[833/916] Compiling W3C_CSS_BoxModel MinWidth.swift
[834/916] Compiling W3C_CSS_Alignment PlaceItems.swift
[835/916] Compiling W3C_CSS_Logical MaxInlineSize.swift
[837/916] Compiling W3C_CSS_Logical BlockSize.swift
[838/916] Emitting module W3C_CSS_Logical
[839/916] Compiling W3C_CSS_Logical InlineSize.swift
[840/916] Compiling W3C_CSS_Logical MaxBlockSize.swift
[841/917] Compiling W3C_CSS_Syntax Scope.swift
[843/917] Compiling W3C_CSS_BoxModel PaddingBlockEnd.swift
[844/917] Compiling W3C_CSS_BoxModel MaxWidth.swift
[845/917] Compiling W3C_CSS_BoxModel Padding.swift
[846/917] Compiling W3C_CSS_BoxModel PaddingBlock.swift
[847/918] Compiling W3C_CSS_BoxModel BoxSizing.swift
[848/918] Compiling W3C_CSS_BoxModel Height.swift
[849/918] Emitting module W3C_CSS_Alignment
[850/918] Compiling W3C_CSS_BoxModel OverflowX.swift
[851/918] Compiling W3C_CSS_BoxModel OverflowY.swift
[852/918] Compiling W3C_CSS_Syntax Namespace.swift
[853/918] Compiling W3C_CSS_Syntax Property.swift
[854/918] Compiling W3C_CSS_Transforms Transform.swift
[859/918] Compiling W3C_CSS_BoxModel Overflow.swift
[860/918] Compiling W3C_CSS_BoxModel OverflowAnchor.swift
[861/918] Compiling W3C_CSS_BoxModel Margin.swift
[862/918] Compiling W3C_CSS_BoxModel MarginBlock.swift
[865/918] Emitting module W3C_CSS_Transforms
[872/918] Compiling W3C_CSS_Syntax CharSet.swift
[873/918] Compiling W3C_CSS_Syntax Import.swift
[874/919] Compiling W3C_CSS_Transforms TransformFunction.swift
[875/919] Compiling W3C_CSS_Transforms Translate.swift
[877/919] Compiling W3C_CSS_Alignment VerticalAlign.swift
[878/920] Emitting module W3C_CSS_Easing
[879/920] Compiling W3C_CSS_Easing EasingFunction.swift
[880/920] Emitting module W3C_CSS_Grid
[885/921] Emitting module W3C_CSS_BoxModel
[886/925] Compiling W3C_CSS_BoxModel MarginBlockStart.swift
[887/925] Compiling W3C_CSS_BoxModel MarginBottom.swift
[888/925] Compiling W3C_CSS_BoxModel MarginInline.swift
[889/925] Compiling W3C_CSS_BoxModel MarginInlineEnd.swift
[890/925] Compiling W3C_CSS_BoxModel MarginInlineStart.swift
[891/926] Compiling W3C_CSS_BoxModel PaddingBlockStart.swift
[892/926] Compiling W3C_CSS_BoxModel PaddingBottom.swift
[893/926] Compiling W3C_CSS_BoxModel PaddingInline.swift
[894/926] Compiling W3C_CSS_BoxModel PaddingInlineEnd.swift
[895/926] Compiling W3C_CSS_BoxModel PaddingInlineStart.swift
[896/926] Compiling W3C_CSS_BoxModel OverflowBlock.swift
[897/926] Compiling W3C_CSS_BoxModel OverflowClipMargin.swift
[898/926] Compiling W3C_CSS_BoxModel OverflowInline.swift
[899/926] Compiling W3C_CSS_BoxModel OverflowType.swift
[900/926] Compiling W3C_CSS_BoxModel OverflowWrap.swift
[901/928] Compiling W3C_CSS_BoxModel MarginLeft.swift
[902/928] Compiling W3C_CSS_BoxModel MarginRight.swift
[903/928] Compiling W3C_CSS_BoxModel MarginTop.swift
[904/928] Compiling W3C_CSS_BoxModel MarginTrim.swift
[905/928] Compiling W3C_CSS_BoxModel MaxHeight.swift
[907/968] Compiling W3C_CSS_Grid GridTemplateRows.swift
[909/972] Compiling W3C_CSS_Positioning InsetBlock.swift
[910/972] Compiling W3C_CSS_Positioning InsetBlockEnd.swift
[911/972] Compiling W3C_CSS_Positioning InsetBlockStart.swift
[912/972] Compiling W3C_CSS_Positioning InsetInline.swift
[913/972] Compiling W3C_CSS_Positioning PositionTryOrder.swift
[914/972] Compiling W3C_CSS_Flexbox Flex.swift
[915/972] Compiling W3C_CSS_Flexbox FlexBasis.swift
[916/972] Compiling W3C_CSS_Flexbox FlexDirection.swift
[917/972] Compiling W3C_CSS_Flexbox FlexFlow.swift
[918/972] Compiling W3C_CSS_Positioning Inset.swift
[919/972] Compiling W3C_CSS_Positioning PositionVisibility.swift
[920/972] Compiling W3C_CSS_Positioning Right.swift
[921/972] Compiling W3C_CSS_Positioning InsetInlineEnd.swift
[922/972] Compiling W3C_CSS_Positioning InsetInlineStart.swift
[923/972] Compiling W3C_CSS_Positioning Left.swift
[924/972] Compiling W3C_CSS_Paged Orphans.swift
[925/972] Compiling W3C_CSS_Flexbox Order.swift
[926/990] Compiling W3C_CSS_MediaQueries Import+Media.swift
[927/990] Compiling W3C_CSS_Color Appearance.swift
[928/990] Compiling W3C_CSS_Color Color+Validation.swift
[929/990] Compiling W3C_CSS_Color Color.swift
[930/993] Compiling W3C_CSS_Paged Widows.swift
[931/993] Compiling W3C_CSS_Paged PageBreakInside.swift
[932/993] Compiling W3C_CSS_Flexbox FlexGrow.swift
[933/993] Compiling W3C_CSS_Flexbox FlexShrink.swift
[936/993] Compiling W3C_CSS_Paged PageBreakBefore.swift
[937/993] Compiling W3C_CSS_Paged PageBreakAfter.swift
[938/993] Emitting module W3C_CSS_Paged
[939/993] Emitting module W3C_CSS_Flexbox
[940/993] Compiling W3C_CSS_Positioning Overlay.swift
[941/993] Compiling W3C_CSS_Positioning Position.swift
[942/993] Compiling W3C_CSS_Positioning PositionAnchor.swift
[944/993] Compiling W3C_CSS_Color ColorConvertible.swift
[945/993] Compiling W3C_CSS_Flexbox RowGap.swift
[946/993] Compiling W3C_CSS_Flexbox FlexWrap.swift
[947/993] Compiling W3C_CSS_Flexbox Gap.swift
[948/994] Compiling W3C_CSS_Cascade Supports.swift
[949/994] Emitting module W3C_CSS_CounterStyles
[950/994] Compiling W3C_CSS_CounterStyles CounterStyle.swift
[951/994] Compiling W3C_CSS_Paged PageBreak.swift
[952/994] Emitting module W3C_CSS_Positioning
[953/994] Compiling W3C_CSS_Color ColorScheme.swift
[954/994] Compiling W3C_CSS_Color FloodOpacity.swift
[955/994] Compiling W3C_CSS_Color LightingColor.swift
[957/994] Compiling W3C_CSS_Cascade Layer.swift
[958/994] Emitting module W3C_CSS_Cascade
[959/994] Compiling W3C_CSS_BoxModel PaddingLeft.swift
[960/994] Compiling W3C_CSS_BoxModel PaddingRight.swift
[961/994] Compiling W3C_CSS_BoxModel PaddingTop.swift
[962/994] Compiling W3C_CSS_BoxModel Width.swift
[967/995] Compiling W3C_CSS_Color Opacity.swift
[970/996] Compiling W3C_CSS_Color ColorInterpolation.swift
[971/996] Compiling W3C_CSS_Color ColorInterpolationFilters.swift
[972/996] Compiling W3C_CSS_MediaQueries Media.swift
[973/996] Emitting module W3C_CSS_MediaQueries
[974/996] Compiling W3C_CSS_Color ColorProfile.swift
[976/996] Compiling W3C_CSS_Color ColorValidation.swift
[977/996] Compiling W3C_CSS_Color FloodColor.swift
[978/996] Compiling W3C_CSS_Paged Page.swift
[983/998] Emitting module W3C_CSS_Color
[990/1000] Compiling W3C_CSS_Positioning Top.swift
[991/1000] Compiling W3C_CSS_Positioning ZIndex.swift
[992/1000] Compiling W3C_CSS_Positioning Zoom.swift
[993/1000] Compiling W3C_CSS_Color SystemColor.swift
[999/1001] Compiling W3C_CSS_Positioning PositionArea.swift
[1000/1001] Compiling W3C_CSS_Positioning PositionTry.swift
[1001/1001] Compiling W3C_CSS_Positioning PositionTryFallbacks.swift
[1003/1133] Compiling W3C_CSS_TextDecoration TextDecorationSkipInk.swift
[1004/1133] Compiling W3C_CSS_TextDecoration TextDecorationSkip.swift
[1005/1133] Compiling W3C_CSS_TextDecoration TextDecorationStyle.swift
[1006/1133] Compiling W3C_CSS_TextDecoration TextDecorationThickness.swift
[1007/1133] Compiling W3C_CSS_TextDecoration TextDecorationColor.swift
[1008/1133] Compiling W3C_CSS_TextDecoration TextDecorationLine.swift
[1009/1133] Compiling W3C_CSS_Transitions TransitionTimingFunction.swift
[1010/1133] Compiling W3C_CSS_Transitions TransitionProperty.swift
[1011/1133] Compiling W3C_CSS_Transitions TransitionBehavior.swift
[1012/1133] Compiling W3C_CSS_Transitions TransitionDuration.swift
[1013/1133] Compiling W3C_CSS_Transitions TransitionDelay.swift
[1014/1133] Compiling W3C_CSS_Filters Filter.swift
[1015/1134] Emitting module W3C_CSS_Transitions
[1016/1134] Compiling W3C_CSS_Transitions StartingStyle.swift
[1017/1134] Compiling W3C_CSS_Transitions Transition.swift
[1018/1134] Compiling W3C_CSS_Filters BackdropFilter.swift
[1019/1134] Emitting module W3C_CSS_Filters
[1020/1134] Emitting module W3C_CSS_Scroll
[1021/1139] Emitting module W3C_CSS_TextDecoration
[1022/1139] Compiling W3C_CSS_TextDecoration TextDecoration.swift
[1023/1139] Compiling W3C_CSS_Text TextAlignLast.swift
[1024/1139] Compiling W3C_CSS_Text TextAnchor.swift
[1025/1139] Compiling W3C_CSS_Text TextKashidaSpace.swift
[1026/1139] Compiling W3C_CSS_Text TextOrientation.swift
[1029/1144] Compiling W3C_CSS_Text LineHeightStep.swift
[1030/1144] Compiling W3C_CSS_Text MathDepth.swift
[1031/1144] Compiling W3C_CSS_Text MathShift.swift
[1032/1144] Compiling W3C_CSS_Text MathStyle.swift
[1033/1144] Compiling W3C_CSS_Text TextBoxEdge.swift
[1034/1144] Compiling W3C_CSS_Text TextBoxTrim.swift
[1035/1144] Compiling W3C_CSS_Images StrokeWidth.swift
[1036/1144] Compiling W3C_CSS_Images VectorEffect.swift
[1041/1144] Compiling W3C_CSS_Text PunctuationWrap.swift
[1043/1144] Compiling W3C_CSS_Text RubyAlign.swift
[1044/1144] Compiling W3C_CSS_Text RubyPosition.swift
[1045/1144] Compiling W3C_CSS_Text TabSize.swift
[1046/1144] Compiling W3C_CSS_Text TextAlign.swift
[1049/1144] Compiling W3C_CSS_Text TextOverflow.swift
[1050/1144] Compiling W3C_CSS_Text TextRendering.swift
[1051/1144] Compiling W3C_CSS_Text TextShadow.swift
[1052/1144] Compiling W3C_CSS_Text TextSizeAdjust.swift
[1053/1144] Compiling W3C_CSS_Text TextAutospace.swift
[1054/1144] Compiling W3C_CSS_Text TextBox.swift
[1057/1150] Compiling W3C_CSS_Text LetterSpacing.swift
[1058/1150] Compiling W3C_CSS_Text LetterSpacingEastAsian.swift
[1059/1150] Compiling W3C_CSS_Text LineBreak.swift
[1060/1150] Compiling W3C_CSS_Text LineClamp.swift
[1061/1150] Compiling W3C_CSS_Text LineHeight.swift
[1062/1150] Compiling W3C_CSS_Text HangingPunctuation.swift
[1063/1150] Compiling W3C_CSS_Text HyphenateCharacter.swift
[1064/1150] Compiling W3C_CSS_Text HyphenateLimitChars.swift
[1065/1150] Compiling W3C_CSS_Text Hyphens.swift
[1066/1150] Compiling W3C_CSS_Text InitialLetter.swift
[1088/1150] Compiling W3C_CSS_Transitions ViewTransition.swift
[1090/1151] Compiling W3C_CSS_Text TextSpacing.swift
[1091/1151] Compiling W3C_CSS_Text TextSpacingTrim.swift
[1092/1151] Compiling W3C_CSS_Text TextTransform.swift
[1093/1151] Compiling W3C_CSS_Text TextUnderlineOffset.swift
[1094/1151] Compiling W3C_CSS_Text TextUnderlinePosition.swift
[1095/1151] Compiling W3C_CSS_Text TextWrap.swift
[1102/1151] Emitting module W3C_CSS_Text
[1103/1151] Compiling W3C_CSS_Images X.swift
[1104/1151] Compiling W3C_CSS_Images Y.swift
[1105/1151] Compiling W3C_CSS_Scroll ScrollbarGutter.swift
[1106/1151] Compiling W3C_CSS_Scroll ScrollbarWidth.swift
[1107/1151] Compiling W3C_CSS_Text TextIndent.swift
[1108/1151] Compiling W3C_CSS_Text TextJustify.swift
[1136/1152] Compiling W3C_CSS_Text TextWrapMode.swift
[1137/1152] Compiling W3C_CSS_Text TextWrapStyle.swift
[1138/1152] Compiling W3C_CSS_Text WhiteSpace.swift
[1139/1152] Compiling W3C_CSS_Text WhiteSpaceCollapse.swift
[1140/1152] Compiling W3C_CSS_Text WordBreak.swift
[1141/1152] Compiling W3C_CSS_Text WordSpacing.swift
[1152/1153] Emitting module W3C_CSS_Images
[1155/1280] Compiling W3C_CSS_Lists ListStylePosition.swift
[1156/1280] Compiling W3C_CSS_Lists ListStyleType.swift
[1157/1280] Compiling W3C_CSS_Lists ListStyleImage.swift
[1158/1280] Compiling W3C_CSS_Lists ListStyle.swift
[1159/1280] Emitting module W3C_CSS_Lists
[1160/1280] Compiling W3C_CSS_Backgrounds BorderBlockEndStyle.swift
[1161/1280] Compiling W3C_CSS_Backgrounds BorderBlockEndWidth.swift
[1162/1280] Compiling W3C_CSS_Backgrounds BorderBlockStart.swift
[1163/1280] Compiling W3C_CSS_Backgrounds BorderBlockStartColor.swift
[1164/1284] Compiling W3C_CSS_Lists CounterSet.swift
[1165/1284] Compiling W3C_CSS_Lists CounterReset.swift
[1166/1284] Compiling W3C_CSS_Lists CounterIncrement.swift
[1168/1285] Compiling W3C_CSS_Backgrounds BorderBlockStartStyle.swift
[1169/1285] Compiling W3C_CSS_Backgrounds BorderBlockStartWidth.swift
[1170/1285] Compiling W3C_CSS_Backgrounds BorderBlockStyle.swift
[1171/1285] Compiling W3C_CSS_Backgrounds BorderBlockWidth.swift
[1172/1285] Compiling W3C_CSS_Backgrounds BackgroundPositionY.swift
[1173/1285] Compiling W3C_CSS_Backgrounds BackgroundRepeat.swift
[1174/1285] Compiling W3C_CSS_Backgrounds BackgroundSize.swift
[1178/1288] Compiling W3C_CSS_Backgrounds BorderBlock.swift
[1179/1288] Compiling W3C_CSS_Backgrounds BorderBlockColor.swift
[1180/1288] Compiling W3C_CSS_Backgrounds BorderBlockEnd.swift
[1181/1288] Compiling W3C_CSS_Backgrounds BorderBlockEndColor.swift
[1182/1288] Emitting module W3C_CSS_Fonts
[1183/1299] Emitting module W3C_CSS_Masking
[1187/1299] Compiling W3C_CSS_Backgrounds Border.swift
[1190/1299] Compiling W3C_CSS_Containment ContainIntrinsicBlockSize.swift
[1191/1299] Compiling W3C_CSS_Containment ContainIntrinsicHeight.swift
[1192/1299] Compiling W3C_CSS_Containment ContainIntrinsicInlineSize.swift
[1194/1299] Compiling W3C_CSS_Backgrounds BackgroundOrigin.swift
[1195/1299] Compiling W3C_CSS_Backgrounds BackgroundPosition.swift
[1196/1299] Compiling W3C_CSS_Backgrounds BackgroundPositionX.swift
[1201/1299] Compiling W3C_CSS_Fonts FontVariationSettings.swift
[1202/1299] Compiling W3C_CSS_Fonts FontWeight.swift
[1203/1299] Compiling W3C_CSS_Fonts GenericFamily.swift
[1204/1299] Compiling W3C_CSS_Fonts RelativeSize.swift
[1205/1299] Compiling W3C_CSS_Backgrounds BorderBottom.swift
[1206/1299] Compiling W3C_CSS_Backgrounds BorderBottomColor.swift
[1207/1299] Compiling W3C_CSS_Backgrounds BorderBottomLeftRadius.swift
[1208/1299] Compiling W3C_CSS_Backgrounds BorderBottomRightRadius.swift
[1209/1299] Emitting module W3C_CSS_Containment
[1210/1299] Compiling W3C_CSS_Containment ContainIntrinsicSize.swift
[1211/1299] Compiling W3C_CSS_Containment ContainIntrinsicWidth.swift
[1214/1300] Compiling W3C_CSS_Containment Contain.swift
[1216/1300] Compiling W3C_CSS_Containment Container.swift
[1217/1300] Compiling W3C_CSS_Containment ContainerName.swift
[1218/1300] Compiling W3C_CSS_Containment Content.swift
[1219/1300] Compiling W3C_CSS_Containment ContainerType.swift
[1220/1300] Compiling W3C_CSS_Masking ShapeImageThreshold.swift
[1221/1300] Compiling W3C_CSS_Masking ShapeMargin.swift
[1222/1300] Compiling W3C_CSS_Masking ShapeOutside.swift
[1223/1300] Compiling W3C_CSS_Backgrounds BorderInlineStart.swift
[1224/1300] Compiling W3C_CSS_Backgrounds BorderInlineStartColor.swift
[1225/1300] Compiling W3C_CSS_Backgrounds BorderInlineStartStyle.swift
[1226/1300] Compiling W3C_CSS_Backgrounds BorderInlineStartWidth.swift
[1227/1300] Compiling W3C_CSS_Backgrounds BorderInlineStyle.swift
[1228/1300] Compiling W3C_CSS_Backgrounds BorderInlineWidth.swift
[1229/1300] Compiling W3C_CSS_Backgrounds BorderLeft.swift
[1230/1300] Compiling W3C_CSS_Backgrounds BorderLeftColor.swift
[1231/1300] Compiling W3C_CSS_Backgrounds BorderLeftStyle.swift
[1232/1309] Emitting module W3C_CSS_Backgrounds
[1242/1309] Compiling W3C_CSS_Backgrounds BorderImageSlice.swift
[1243/1309] Compiling W3C_CSS_Backgrounds BorderImageSource.swift
[1244/1309] Compiling W3C_CSS_Backgrounds BorderImageWidth.swift
[1245/1309] Compiling W3C_CSS_Backgrounds BorderInline.swift
[1246/1309] Compiling W3C_CSS_Backgrounds BorderInlineColor.swift
[1247/1309] Compiling W3C_CSS_Backgrounds BorderInlineEnd.swift
[1248/1309] Compiling W3C_CSS_Backgrounds BorderInlineEndColor.swift
[1249/1309] Compiling W3C_CSS_Backgrounds BorderInlineEndStyle.swift
[1250/1309] Compiling W3C_CSS_Backgrounds BorderInlineEndWidth.swift
[1251/1309] Compiling W3C_CSS_Containment ContentVisibility.swift
[1269/1311] Compiling W3C_CSS_Backgrounds BorderLeftWidth.swift
[1270/1311] Compiling W3C_CSS_Backgrounds BorderRadius.swift
[1271/1311] Compiling W3C_CSS_Backgrounds BorderRight.swift
[1272/1311] Compiling W3C_CSS_Backgrounds BorderRightColor.swift
[1273/1311] Compiling W3C_CSS_Backgrounds BorderRightStyle.swift
[1274/1311] Compiling W3C_CSS_Backgrounds BorderRightWidth.swift
[1275/1311] Compiling W3C_CSS_Backgrounds BorderSpacing.swift
[1276/1311] Compiling W3C_CSS_Backgrounds BorderStartEndRadius.swift
[1277/1311] Compiling W3C_CSS_Backgrounds BorderStartStartRadius.swift
[1295/1314] Compiling W3C_CSS_Typography exports.swift
[1296/1314] Emitting module W3C_CSS_Typography
[1302/1340] Compiling W3C_CSS_Backgrounds BorderEndEndRadius.swift
[1303/1340] Compiling W3C_CSS_Backgrounds BorderEndStartRadius.swift
[1304/1340] Compiling W3C_CSS_Backgrounds BorderImage.swift
[1305/1340] Compiling W3C_CSS_Backgrounds BorderImageOutset.swift
[1306/1340] Compiling W3C_CSS_Backgrounds BorderImageRepeat.swift
[1307/1340] Emitting module W3C_CSS_Animations
[1308/1340] Compiling W3C_CSS_Animations TimelineScope.swift
[1309/1340] Compiling W3C_CSS_Animations ViewTimeline.swift
[1310/1340] Compiling W3C_CSS_Animations ViewTimelineAxis.swift
[1311/1340] Compiling W3C_CSS_Backgrounds BorderStyle.swift
[1312/1340] Compiling W3C_CSS_Backgrounds BorderTop.swift
[1313/1340] Compiling W3C_CSS_Backgrounds BorderTopColor.swift
[1314/1340] Compiling W3C_CSS_Backgrounds BorderTopLeftRadius.swift
[1315/1340] Compiling W3C_CSS_Backgrounds BorderTopRightRadius.swift
[1316/1340] Compiling W3C_CSS_Backgrounds BorderTopStyle.swift
[1317/1340] Compiling W3C_CSS_Backgrounds BorderTopWidth.swift
[1318/1340] Compiling W3C_CSS_Backgrounds BorderWidth.swift
[1319/1340] Compiling W3C_CSS_Backgrounds BoxShadow.swift
[1321/1344] Compiling W3C_CSS_Animations AnimationDuration.swift
[1322/1344] Compiling W3C_CSS_Animations AnimationFillMode.swift
[1323/1344] Compiling W3C_CSS_Animations AnimationIterationCount.swift
[1324/1344] Compiling W3C_CSS_Animations AnimationName.swift
[1325/1344] Compiling W3C_CSS_Animations AnimationPlayState.swift
[1326/1344] Compiling W3C_CSS_Animations AnimationRange.swift
[1327/1344] Compiling W3C_CSS_Animations AnimationRangeEnd.swift
[1328/1344] Compiling W3C_CSS_Animations AnimationRangeStart.swift
[1329/1396] Compiling W3C_CSS_UI AccentColor.swift
[1330/1396] Compiling W3C_CSS_UI CaptionSide.swift
[1331/1396] Compiling W3C_CSS_UI CaretColor.swift
[1332/1396] Compiling W3C_CSS_UI Cursor.swift
[1333/1404] Compiling W3C_CSS_UI MozFloatEdge.swift
[1334/1404] Compiling W3C_CSS_UI MozForceBrokenImageIcon.swift
[1335/1404] Compiling W3C_CSS_UI MozImageRegion.swift
[1336/1404] Compiling W3C_CSS_UI WebkitBorderBefore.swift
[1337/1404] Compiling W3C_CSS_UI WebkitBoxReflect.swift
[1338/1404] Compiling W3C_CSS_UI WebkitMaskBoxImage.swift
[1339/1404] Compiling W3C_CSS_UI PointerEvents.swift
[1340/1404] Compiling W3C_CSS_UI PrintColorAdjust.swift
[1341/1404] Compiling W3C_CSS_UI Resize.swift
[1342/1404] Compiling W3C_CSS_Visual exports.swift
[1343/1404] Compiling W3C_CSS_UI MozUserInput.swift
[1344/1404] Compiling W3C_CSS_UI Outline.swift
[1345/1404] Compiling W3C_CSS_UI OutlineColor.swift
[1346/1405] Compiling W3C_CSS_Multicolumn ColumnWidth.swift
[1347/1405] Compiling W3C_CSS_Multicolumn ColumnSpan.swift
[1349/1406] Compiling W3C_CSS_Visual WillChange.swift
[1350/1406] Compiling W3C_CSS_Visual ImageRendering.swift
[1355/1406] Emitting module W3C_CSS_Multicolumn
[1358/1406] Compiling W3C_CSS_UI EmptyCells.swift
[1359/1406] Compiling W3C_CSS_UI FieldSizing.swift
[1360/1406] Compiling W3C_CSS_UI OutlineStyle.swift
[1361/1406] Compiling W3C_CSS_UI OutlineWidth.swift
[1362/1406] Compiling W3C_CSS_Visual Visibility.swift
[1363/1406] Compiling W3C_CSS_Visual AspectRatio.swift
[1364/1406] Emitting module W3C_CSS_Visual
[1365/1408] Compiling W3C_CSS_Visual ObjectFit.swift
[1366/1408] Compiling W3C_CSS_Visual ObjectPosition.swift
[1368/1409] Compiling W3C_CSS_Multicolumn Columns.swift
[1374/1410] Compiling W3C_CSS_UI ForcedColorAdjust.swift
[1375/1410] Compiling W3C_CSS_UI ImeMode.swift
[1376/1410] Compiling W3C_CSS_UI InterpolateSize.swift
[1380/1415] Compiling W3C_CSS_Animation exports.swift
[1381/1415] Emitting module W3C_CSS_Animation
[1389/1415] Emitting module W3C_CSS_UI
[1390/1415] Compiling W3C_CSS_UI WebkitMaskPositionY.swift
[1391/1415] Compiling W3C_CSS_UI WebkitMaskRepeatX.swift
[1392/1415] Compiling W3C_CSS_UI WebkitMaskRepeatY.swift
[1393/1415] Compiling W3C_CSS_UI WebkitTapHighlightColor.swift
[1394/1415] Compiling W3C_CSS_UI WebkitTextFillColor.swift
[1395/1415] Compiling W3C_CSS_UI SpeakAs.swift
[1396/1415] Compiling W3C_CSS_UI TableLayout.swift
[1397/1415] Compiling W3C_CSS_UI TouchAction.swift
[1398/1415] Compiling W3C_CSS_UI UserModify.swift
[1399/1415] Compiling W3C_CSS_UI UserSelect.swift
[1401/1418] Compiling W3C_CSS_Layout exports.swift
[1402/1418] Emitting module W3C_CSS_Layout
[1403/1419] Compiling W3C_CSS_UI MozOrient.swift
[1404/1419] Compiling W3C_CSS_UI MozUserFocus.swift
[1408/1419] Compiling W3C_CSS_UI OutlineOffset.swift
[1412/1419] Compiling W3C_CSS_UI WebkitMaskComposite.swift
[1413/1419] Compiling W3C_CSS_UI WebkitMaskPositionX.swift
[1415/1419] Compiling W3C_CSS_UI WebkitTextSecurity.swift
[1416/1419] Compiling W3C_CSS_UI WebkitTextStroke.swift
[1417/1419] Compiling W3C_CSS_UI WebkitTextStrokeColor.swift
[1418/1419] Compiling W3C_CSS_UI WebkitTextStrokeWidth.swift
[1419/1419] Compiling W3C_CSS_UI WebkitTouchCallout.swift
[1421/1422] Compiling W3C_CSS exports.swift
[1422/1422] Emitting module W3C_CSS
Build complete! (215.23s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-cssom",
"requirement" : {
"range" : [
{
"lower_bound" : "0.1.2",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-standards/swift-cssom"
},
{
"identity" : "swift-standards",
"requirement" : {
"range" : [
{
"lower_bound" : "0.16.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-standards/swift-standards"
},
{
"identity" : "swift-ieee-754",
"requirement" : {
"range" : [
{
"lower_bound" : "0.3.3",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-standards/swift-ieee-754"
},
{
"identity" : "swift-iec-61966",
"requirement" : {
"range" : [
{
"lower_bound" : "0.1.3",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-standards/swift-iec-61966"
},
{
"identity" : "swift-incits-4-1986",
"requirement" : {
"range" : [
{
"lower_bound" : "0.6.5",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-standards/swift-incits-4-1986"
},
{
"identity" : "swift-rfc-4648",
"requirement" : {
"range" : [
{
"lower_bound" : "0.5.3",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-standards/swift-rfc-4648"
}
],
"manifest_display_name" : "swift-w3c-css",
"name" : "swift-w3c-css",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "26.0"
},
{
"name" : "ios",
"version" : "26.0"
},
{
"name" : "tvos",
"version" : "26.0"
},
{
"name" : "watchos",
"version" : "26.0"
},
{
"name" : "maccatalyst",
"version" : "26.0"
}
],
"products" : [
{
"name" : "W3C CSS Shared",
"targets" : [
"W3C CSS Shared"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Values",
"targets" : [
"W3C CSS Values"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Color",
"targets" : [
"W3C CSS Color"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Syntax",
"targets" : [
"W3C CSS Syntax"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Cascade",
"targets" : [
"W3C CSS Cascade"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Selectors",
"targets" : [
"W3C CSS Selectors"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Variables",
"targets" : [
"W3C CSS Variables"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Display",
"targets" : [
"W3C CSS Display"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Flexbox",
"targets" : [
"W3C CSS Flexbox"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Grid",
"targets" : [
"W3C CSS Grid"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Positioning",
"targets" : [
"W3C CSS Positioning"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Multicolumn",
"targets" : [
"W3C CSS Multicolumn"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS BoxModel",
"targets" : [
"W3C CSS BoxModel"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Text",
"targets" : [
"W3C CSS Text"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Fonts",
"targets" : [
"W3C CSS Fonts"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS TextDecoration",
"targets" : [
"W3C CSS TextDecoration"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS WritingModes",
"targets" : [
"W3C CSS WritingModes"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Backgrounds",
"targets" : [
"W3C CSS Backgrounds"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Images",
"targets" : [
"W3C CSS Images"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Transforms",
"targets" : [
"W3C CSS Transforms"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Filters",
"targets" : [
"W3C CSS Filters"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Masking",
"targets" : [
"W3C CSS Masking"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Compositing",
"targets" : [
"W3C CSS Compositing"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Animations",
"targets" : [
"W3C CSS Animations"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Transitions",
"targets" : [
"W3C CSS Transitions"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Easing",
"targets" : [
"W3C CSS Easing"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Conditional",
"targets" : [
"W3C CSS Conditional"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS MediaQueries",
"targets" : [
"W3C CSS MediaQueries"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS UI",
"targets" : [
"W3C CSS UI"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS PseudoElements",
"targets" : [
"W3C CSS PseudoElements"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS PseudoClasses",
"targets" : [
"W3C CSS PseudoClasses"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Containment",
"targets" : [
"W3C CSS Containment"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Scroll",
"targets" : [
"W3C CSS Scroll"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Logical",
"targets" : [
"W3C CSS Logical"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Alignment",
"targets" : [
"W3C CSS Alignment"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Lists",
"targets" : [
"W3C CSS Lists"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS CounterStyles",
"targets" : [
"W3C CSS CounterStyles"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Paged",
"targets" : [
"W3C CSS Paged"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Layout",
"targets" : [
"W3C CSS Layout"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Typography",
"targets" : [
"W3C CSS Typography"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Visual",
"targets" : [
"W3C CSS Visual"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS Animation",
"targets" : [
"W3C CSS Animation"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "W3C CSS",
"targets" : [
"W3C CSS"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"6"
],
"targets" : [
{
"c99name" : "W3C_CSS_WritingModes_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS WritingModes Tests",
"path" : "Tests/W3C CSS WritingModes Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS WritingModes"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_WritingModes",
"module_type" : "SwiftTarget",
"name" : "W3C CSS WritingModes",
"path" : "Sources/W3C CSS WritingModes",
"product_memberships" : [
"W3C CSS WritingModes",
"W3C CSS Typography",
"W3C CSS"
],
"sources" : [
"Direction.swift",
"WritingMode.swift"
],
"target_dependencies" : [
"W3C CSS Shared"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Visual",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Visual",
"path" : "Sources/W3C CSS Visual",
"product_memberships" : [
"W3C CSS Visual",
"W3C CSS"
],
"sources" : [
"AspectRatio.swift",
"ImageRendering.swift",
"ObjectFit.swift",
"ObjectPosition.swift",
"Visibility.swift",
"WillChange.swift",
"exports.swift"
],
"target_dependencies" : [
"W3C CSS Backgrounds",
"W3C CSS Images",
"W3C CSS Transforms",
"W3C CSS Filters",
"W3C CSS Masking",
"W3C CSS Compositing",
"W3C CSS Positioning"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Variables_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Variables Tests",
"path" : "Tests/W3C CSS Variables Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Variables"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Variables",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Variables",
"path" : "Sources/W3C CSS Variables",
"product_memberships" : [
"W3C CSS Variables",
"W3C CSS"
],
"sources" : [
"exports.swift"
],
"target_dependencies" : [
"W3C CSS Shared"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Values_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Values Tests",
"path" : "Tests/W3C CSS Values Tests",
"sources" : [
"Angle Tests.swift",
"AnglePercentage Tests.swift",
"BasicShape Tests.swift",
"CalcKeyword Tests.swift",
"CalcSum Tests.swift",
"Flex Tests.swift",
"Frequency Tests.swift",
"FrequencyPercentage Tests.swift",
"Integer Tests.swift",
"Length Tests.swift",
"LengthPercentage Tests.swift",
"Number Tests.swift",
"NumberPercentage Tests.swift",
"Percentage Tests.swift",
"Position Tests.swift",
"Ratio Tests.swift",
"Resolution Tests.swift",
"Support/PerformanceTests.swift",
"Time Tests.swift",
"TimePercentage Tests.swift"
],
"target_dependencies" : [
"W3C CSS Values"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Values",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Values",
"path" : "Sources/W3C CSS Values",
"product_dependencies" : [
"IEEE 754",
"IEC 61966",
"RFC 4648"
],
"product_memberships" : [
"W3C CSS Values",
"W3C CSS Color",
"W3C CSS Syntax",
"W3C CSS Cascade",
"W3C CSS Display",
"W3C CSS Flexbox",
"W3C CSS Grid",
"W3C CSS Positioning",
"W3C CSS Multicolumn",
"W3C CSS BoxModel",
"W3C CSS Text",
"W3C CSS Fonts",
"W3C CSS TextDecoration",
"W3C CSS Backgrounds",
"W3C CSS Images",
"W3C CSS Transforms",
"W3C CSS Filters",
"W3C CSS Masking",
"W3C CSS Animations",
"W3C CSS Transitions",
"W3C CSS Easing",
"W3C CSS MediaQueries",
"W3C CSS UI",
"W3C CSS Containment",
"W3C CSS Scroll",
"W3C CSS Logical",
"W3C CSS Alignment",
"W3C CSS Lists",
"W3C CSS CounterStyles",
"W3C CSS Paged",
"W3C CSS Layout",
"W3C CSS Typography",
"W3C CSS Visual",
"W3C CSS Animation",
"W3C CSS"
],
"sources" : [
"AlphaValue.swift",
"Angle.swift",
"AngleConvertible.swift",
"AnglePercentage.swift",
"BasicShape.swift",
"CalcKeyword.swift",
"CalcSum.swift",
"Color.swift",
"ColorInterpolationMethod.swift",
"Dimension.swift",
"FilterFunction.swift",
"Flex.swift",
"Frequency.swift",
"FrequencyPercentage.swift",
"Functions.swift",
"HexColor.swift",
"Hue.swift",
"Integer.swift",
"Length.swift",
"LengthConvertible.swift",
"LengthPercentage.swift",
"LengthPercentageConvertible.swift",
"LineStyle.swift",
"LineStyleConvertible.swift",
"NamedColor+sRGB.swift",
"NamedColor.swift",
"Number.swift",
"NumberConvertible.swift",
"NumberPercentage.swift",
"Percentage.swift",
"PercentageConvertible.swift",
"Position.swift",
"Ratio.swift",
"Resolution.swift",
"Size.swift",
"SystemColor.swift",
"Time.swift",
"TimePercentage.swift"
],
"target_dependencies" : [
"W3C CSS Shared"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_UI_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS UI Tests",
"path" : "Tests/W3C CSS UI Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS UI"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_UI",
"module_type" : "SwiftTarget",
"name" : "W3C CSS UI",
"path" : "Sources/W3C CSS UI",
"product_memberships" : [
"W3C CSS UI",
"W3C CSS"
],
"sources" : [
"AccentColor.swift",
"CaptionSide.swift",
"CaretColor.swift",
"Cursor.swift",
"EmptyCells.swift",
"FieldSizing.swift",
"ForcedColorAdjust.swift",
"ImeMode.swift",
"InterpolateSize.swift",
"MozFloatEdge.swift",
"MozForceBrokenImageIcon.swift",
"MozImageRegion.swift",
"MozOrient.swift",
"MozUserFocus.swift",
"MozUserInput.swift",
"Outline.swift",
"OutlineColor.swift",
"OutlineOffset.swift",
"OutlineStyle.swift",
"OutlineWidth.swift",
"PointerEvents.swift",
"PrintColorAdjust.swift",
"Resize.swift",
"SpeakAs.swift",
"TableLayout.swift",
"TouchAction.swift",
"UserModify.swift",
"UserSelect.swift",
"WebkitBorderBefore.swift",
"WebkitBoxReflect.swift",
"WebkitMaskBoxImage.swift",
"WebkitMaskComposite.swift",
"WebkitMaskPositionX.swift",
"WebkitMaskPositionY.swift",
"WebkitMaskRepeatX.swift",
"WebkitMaskRepeatY.swift",
"WebkitTapHighlightColor.swift",
"WebkitTextFillColor.swift",
"WebkitTextSecurity.swift",
"WebkitTextStroke.swift",
"WebkitTextStrokeColor.swift",
"WebkitTextStrokeWidth.swift",
"WebkitTouchCallout.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Color",
"W3C CSS Backgrounds"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Typography",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Typography",
"path" : "Sources/W3C CSS Typography",
"product_memberships" : [
"W3C CSS Typography",
"W3C CSS"
],
"sources" : [
"exports.swift"
],
"target_dependencies" : [
"W3C CSS Text",
"W3C CSS Fonts",
"W3C CSS TextDecoration",
"W3C CSS WritingModes"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Transitions_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Transitions Tests",
"path" : "Tests/W3C CSS Transitions Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Transitions"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Transitions",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Transitions",
"path" : "Sources/W3C CSS Transitions",
"product_memberships" : [
"W3C CSS Transitions",
"W3C CSS Animation",
"W3C CSS"
],
"sources" : [
"StartingStyle.swift",
"Transition.swift",
"TransitionBehavior.swift",
"TransitionDelay.swift",
"TransitionDuration.swift",
"TransitionProperty.swift",
"TransitionTimingFunction.swift",
"ViewTransition.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Easing",
"W3C CSS Color",
"W3C CSS Syntax"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Transforms_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Transforms Tests",
"path" : "Tests/W3C CSS Transforms Tests",
"sources" : [
"Support/PerformanceTests.swift",
"TransformFunction Tests.swift"
],
"target_dependencies" : [
"W3C CSS Transforms"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Transforms",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Transforms",
"path" : "Sources/W3C CSS Transforms",
"product_memberships" : [
"W3C CSS Transforms",
"W3C CSS Visual",
"W3C CSS"
],
"sources" : [
"Perspective.swift",
"PerspectiveOrigin.swift",
"Rotate.swift",
"Scale.swift",
"Transform.swift",
"TransformBox.swift",
"TransformFunction.swift",
"TransformOrigin.swift",
"TransformStyle.swift",
"Translate.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_TextDecoration_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS TextDecoration Tests",
"path" : "Tests/W3C CSS TextDecoration Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS TextDecoration"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_TextDecoration",
"module_type" : "SwiftTarget",
"name" : "W3C CSS TextDecoration",
"path" : "Sources/W3C CSS TextDecoration",
"product_memberships" : [
"W3C CSS TextDecoration",
"W3C CSS Typography",
"W3C CSS"
],
"sources" : [
"TextDecoration.swift",
"TextDecorationColor.swift",
"TextDecorationLine.swift",
"TextDecorationSkip.swift",
"TextDecorationSkipInk.swift",
"TextDecorationStyle.swift",
"TextDecorationThickness.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Color"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Text_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Text Tests",
"path" : "Tests/W3C CSS Text Tests",
"sources" : [
"Support/PerformanceTests.swift",
"TextEdge Tests.swift"
],
"target_dependencies" : [
"W3C CSS Text"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Text",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Text",
"path" : "Sources/W3C CSS Text",
"product_memberships" : [
"W3C CSS Text",
"W3C CSS Fonts",
"W3C CSS Typography",
"W3C CSS"
],
"sources" : [
"HangingPunctuation.swift",
"HyphenateCharacter.swift",
"HyphenateLimitChars.swift",
"Hyphens.swift",
"InitialLetter.swift",
"LetterSpacing.swift",
"LetterSpacingEastAsian.swift",
"LineBreak.swift",
"LineClamp.swift",
"LineHeight.swift",
"LineHeightStep.swift",
"MathDepth.swift",
"MathShift.swift",
"MathStyle.swift",
"PunctuationWrap.swift",
"RubyAlign.swift",
"RubyPosition.swift",
"TabSize.swift",
"TextAlign.swift",
"TextAlignLast.swift",
"TextAnchor.swift",
"TextAutospace.swift",
"TextBox.swift",
"TextBoxEdge.swift",
"TextBoxTrim.swift",
"TextCombineUpright.swift",
"TextEdge.swift",
"TextEmphasis.swift",
"TextEmphasisColor.swift",
"TextEmphasisPosition.swift",
"TextEmphasisStyle.swift",
"TextIndent.swift",
"TextJustify.swift",
"TextKashidaSpace.swift",
"TextOrientation.swift",
"TextOverflow.swift",
"TextRendering.swift",
"TextShadow.swift",
"TextSizeAdjust.swift",
"TextSpacing.swift",
"TextSpacingTrim.swift",
"TextTransform.swift",
"TextUnderlineOffset.swift",
"TextUnderlinePosition.swift",
"TextWrap.swift",
"TextWrapMode.swift",
"TextWrapStyle.swift",
"WhiteSpace.swift",
"WhiteSpaceCollapse.swift",
"WordBreak.swift",
"WordSpacing.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Color"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Syntax_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Syntax Tests",
"path" : "Tests/W3C CSS Syntax Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Syntax"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Syntax",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Syntax",
"path" : "Sources/W3C CSS Syntax",
"product_memberships" : [
"W3C CSS Color",
"W3C CSS Syntax",
"W3C CSS Cascade",
"W3C CSS Positioning",
"W3C CSS Multicolumn",
"W3C CSS Text",
"W3C CSS Fonts",
"W3C CSS TextDecoration",
"W3C CSS Backgrounds",
"W3C CSS Images",
"W3C CSS Filters",
"W3C CSS Masking",
"W3C CSS Animations",
"W3C CSS Transitions",
"W3C CSS MediaQueries",
"W3C CSS UI",
"W3C CSS Containment",
"W3C CSS Scroll",
"W3C CSS Lists",
"W3C CSS CounterStyles",
"W3C CSS Paged",
"W3C CSS Layout",
"W3C CSS Typography",
"W3C CSS Visual",
"W3C CSS Animation",
"W3C CSS"
],
"sources" : [
"AtRule.swift",
"CharSet.swift",
"Import.swift",
"Namespace.swift",
"Property.swift",
"Scope.swift",
"UnicodeRange Property.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Shared_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Shared Tests",
"path" : "Tests/W3C CSS Shared Tests",
"sources" : [
"BoxEdge Tests.swift",
"Global Tests.swift",
"Overflow Tests.swift",
"Support/PerformanceTests.swift",
"Types Tests.swift"
],
"target_dependencies" : [
"W3C CSS Shared"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Shared",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Shared",
"path" : "Sources/W3C CSS Shared",
"product_dependencies" : [
"W3C CSSOM",
"INCITS 4 1986",
"Formatting",
"Geometry"
],
"product_memberships" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Color",
"W3C CSS Syntax",
"W3C CSS Cascade",
"W3C CSS Selectors",
"W3C CSS Variables",
"W3C CSS Display",
"W3C CSS Flexbox",
"W3C CSS Grid",
"W3C CSS Positioning",
"W3C CSS Multicolumn",
"W3C CSS BoxModel",
"W3C CSS Text",
"W3C CSS Fonts",
"W3C CSS TextDecoration",
"W3C CSS WritingModes",
"W3C CSS Backgrounds",
"W3C CSS Images",
"W3C CSS Transforms",
"W3C CSS Filters",
"W3C CSS Masking",
"W3C CSS Compositing",
"W3C CSS Animations",
"W3C CSS Transitions",
"W3C CSS Easing",
"W3C CSS Conditional",
"W3C CSS MediaQueries",
"W3C CSS UI",
"W3C CSS PseudoElements",
"W3C CSS PseudoClasses",
"W3C CSS Containment",
"W3C CSS Scroll",
"W3C CSS Logical",
"W3C CSS Alignment",
"W3C CSS Lists",
"W3C CSS CounterStyles",
"W3C CSS Paged",
"W3C CSS Layout",
"W3C CSS Typography",
"W3C CSS Visual",
"W3C CSS Animation",
"W3C CSS"
],
"sources" : [
"AbsoluteSize.swift",
"All.swift",
"BackfaceVisibility.swift",
"BaselinePosition.swift",
"BlendMode.swift",
"BoxDecorationBreak.swift",
"BoxEdge.swift",
"CSS.Context.swift",
"CSSOM.swift",
"GenericFamily.swift",
"Global.swift",
"GlobalConvertible.swift",
"Overflow.swift",
"OverflowPosition.swift",
"Property.swift",
"Quotes.swift",
"RelativeSize.swift",
"SelfPosition.swift",
"UnicodeBidi.swift",
"W3C_CSS.Space.swift",
"WithGlobal.swift",
"exports.swift"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Selectors_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Selectors Tests",
"path" : "Tests/W3C CSS Selectors Tests",
"sources" : [
"Combinator Tests.swift",
"Selector Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Selectors"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Selectors",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Selectors",
"path" : "Sources/W3C CSS Selectors",
"product_memberships" : [
"W3C CSS Cascade",
"W3C CSS Selectors",
"W3C CSS"
],
"sources" : [
"& nesting.swift",
"Attribute.swift",
"Class.swift",
"Combinators.swift",
"ID.swift",
"Type.swift",
"Universal.swift"
],
"target_dependencies" : [
"W3C CSS Shared"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Scroll_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Scroll Tests",
"path" : "Tests/W3C CSS Scroll Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Scroll"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Scroll",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Scroll",
"path" : "Sources/W3C CSS Scroll",
"product_memberships" : [
"W3C CSS Scroll",
"W3C CSS"
],
"sources" : [
"OverscrollBehavior.swift",
"OverscrollBehaviorBlock.swift",
"OverscrollBehaviorInline.swift",
"OverscrollBehaviorX.swift",
"OverscrollBehaviorY.swift",
"ScrollBehavior.swift",
"ScrollMargin.swift",
"ScrollMarginBlock.swift",
"ScrollMarginBlockEnd.swift",
"ScrollMarginBlockStart.swift",
"ScrollMarginBottom.swift",
"ScrollMarginInline.swift",
"ScrollMarginInlineEnd.swift",
"ScrollMarginInlineStart.swift",
"ScrollMarginLeft.swift",
"ScrollMarginRight.swift",
"ScrollMarginTop.swift",
"ScrollPadding.swift",
"ScrollPaddingBlock.swift",
"ScrollPaddingBlockEnd.swift",
"ScrollPaddingBlockStart.swift",
"ScrollPaddingBottom.swift",
"ScrollPaddingInline.swift",
"ScrollPaddingInlineEnd.swift",
"ScrollPaddingInlineStart.swift",
"ScrollPaddingLeft.swift",
"ScrollPaddingRight.swift",
"ScrollPaddingTop.swift",
"ScrollSnapAlign.swift",
"ScrollSnapStop.swift",
"ScrollSnapType.swift",
"ScrollTimeline.swift",
"ScrollTimelineAxis.swift",
"ScrollTimelineName.swift",
"ScrollbarColor.swift",
"ScrollbarGutter.swift",
"ScrollbarWidth.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Color"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_PseudoElements_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS PseudoElements Tests",
"path" : "Tests/W3C CSS PseudoElements Tests",
"sources" : [
"PseudoElement Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS PseudoElements"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_PseudoElements",
"module_type" : "SwiftTarget",
"name" : "W3C CSS PseudoElements",
"path" : "Sources/W3C CSS PseudoElements",
"product_memberships" : [
"W3C CSS PseudoElements",
"W3C CSS"
],
"sources" : [
"AnyPseudoElement.swift",
"CSSPseudoElement.swift",
"Pseudo Elements/after.swift",
"Pseudo Elements/backdrop.swift",
"Pseudo Elements/before.swift",
"Pseudo Elements/checkmark.swift",
"Pseudo Elements/column.swift",
"Pseudo Elements/cue.swift",
"Pseudo Elements/details-content.swift",
"Pseudo Elements/file-selector-button.swift",
"Pseudo Elements/first-letter.swift",
"Pseudo Elements/first-line.swift",
"Pseudo Elements/grammar-error.swift",
"Pseudo Elements/highlight.swift",
"Pseudo Elements/marker.swift",
"Pseudo Elements/moz-placeholder.swift",
"Pseudo Elements/ms-input-placeholder.swift",
"Pseudo Elements/part.swift",
"Pseudo Elements/placeholder.swift",
"Pseudo Elements/selection.swift",
"Pseudo Elements/slotted.swift",
"Pseudo Elements/spelling-error.swift",
"Pseudo Elements/target-text.swift",
"Pseudo Elements/webkit-input-placeholder.swift"
],
"target_dependencies" : [
"W3C CSS Shared"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_PseudoClasses_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS PseudoClasses Tests",
"path" : "Tests/W3C CSS PseudoClasses Tests",
"sources" : [
"PseudoClass Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS PseudoClasses"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_PseudoClasses",
"module_type" : "SwiftTarget",
"name" : "W3C CSS PseudoClasses",
"path" : "Sources/W3C CSS PseudoClasses",
"product_memberships" : [
"W3C CSS PseudoClasses",
"W3C CSS"
],
"sources" : [
"CSSPseudoClass.swift",
"Pseudo Classes/Active.swift",
"Pseudo Classes/AnyLink.swift",
"Pseudo Classes/Blank.swift",
"Pseudo Classes/Checked.swift",
"Pseudo Classes/Default.swift",
"Pseudo Classes/Dir.swift",
"Pseudo Classes/Disabled.swift",
"Pseudo Classes/Empty.swift",
"Pseudo Classes/Enabled.swift",
"Pseudo Classes/FirstChild.swift",
"Pseudo Classes/FirstOfType.swift",
"Pseudo Classes/Focus.swift",
"Pseudo Classes/FocusVisible.swift",
"Pseudo Classes/FocusWithin.swift",
"Pseudo Classes/Has.swift",
"Pseudo Classes/Hover.swift",
"Pseudo Classes/InRange.swift",
"Pseudo Classes/Indeterminate.swift",
"Pseudo Classes/Invalid.swift",
"Pseudo Classes/Is.swift",
"Pseudo Classes/Lang.swift",
"Pseudo Classes/LastChild.swift",
"Pseudo Classes/LastOfType.swift",
"Pseudo Classes/Link.swift",
"Pseudo Classes/LocalLink.swift",
"Pseudo Classes/Not.swift",
"Pseudo Classes/NthChild.swift",
"Pseudo Classes/NthLastChild.swift",
"Pseudo Classes/NthLastOfType.swift",
"Pseudo Classes/NthOfType.swift",
"Pseudo Classes/OnlyChild.swift",
"Pseudo Classes/OnlyOfType.swift",
"Pseudo Classes/Optional.swift",
"Pseudo Classes/OutOfRange.swift",
"Pseudo Classes/PlaceholderShown.swift",
"Pseudo Classes/ReadOnly.swift",
"Pseudo Classes/ReadWrite.swift",
"Pseudo Classes/Required.swift",
"Pseudo Classes/Root.swift",
"Pseudo Classes/Scope.swift",
"Pseudo Classes/Target.swift",
"Pseudo Classes/TargetWithin.swift",
"Pseudo Classes/Valid.swift",
"Pseudo Classes/Visited.swift",
"Pseudo Classes/Where.swift",
"Pseudo-classes.swift"
],
"target_dependencies" : [
"W3C CSS Shared"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Positioning_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Positioning Tests",
"path" : "Tests/W3C CSS Positioning Tests",
"sources" : [
"PositionArea Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Positioning"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Positioning",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Positioning",
"path" : "Sources/W3C CSS Positioning",
"product_memberships" : [
"W3C CSS Positioning",
"W3C CSS Masking",
"W3C CSS Animations",
"W3C CSS Layout",
"W3C CSS Visual",
"W3C CSS Animation",
"W3C CSS"
],
"sources" : [
"AnchorName.swift",
"Bottom.swift",
"Clear.swift",
"Float.swift",
"Inset.swift",
"InsetBlock.swift",
"InsetBlockEnd.swift",
"InsetBlockStart.swift",
"InsetInline.swift",
"InsetInlineEnd.swift",
"InsetInlineStart.swift",
"Left.swift",
"Overlay.swift",
"Position.swift",
"PositionAnchor.swift",
"PositionArea.swift",
"PositionTry.swift",
"PositionTryFallbacks.swift",
"PositionTryOrder.swift",
"PositionVisibility.swift",
"Right.swift",
"Top.swift",
"ZIndex.swift",
"Zoom.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Syntax"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Paged_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Paged Tests",
"path" : "Tests/W3C CSS Paged Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Paged"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Paged",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Paged",
"path" : "Sources/W3C CSS Paged",
"product_memberships" : [
"W3C CSS Paged",
"W3C CSS"
],
"sources" : [
"Orphans.swift",
"Page.swift",
"PageBreak.swift",
"PageBreakAfter.swift",
"PageBreakBefore.swift",
"PageBreakInside.swift",
"Widows.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Syntax"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Multicolumn_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Multicolumn Tests",
"path" : "Tests/W3C CSS Multicolumn Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Multicolumn"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Multicolumn",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Multicolumn",
"path" : "Sources/W3C CSS Multicolumn",
"product_memberships" : [
"W3C CSS Multicolumn",
"W3C CSS Layout",
"W3C CSS"
],
"sources" : [
"BreakAfter.swift",
"BreakBefore.swift",
"BreakInside.swift",
"ColumnCount.swift",
"ColumnFill.swift",
"ColumnGap.swift",
"ColumnRule.swift",
"ColumnRuleColor.swift",
"ColumnRuleStyle.swift",
"ColumnRuleWidth.swift",
"ColumnSpan.swift",
"ColumnWidth.swift",
"Columns.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Color",
"W3C CSS Backgrounds"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_MediaQueries_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS MediaQueries Tests",
"path" : "Tests/W3C CSS MediaQueries Tests",
"sources" : [
"Media Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS MediaQueries"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_MediaQueries",
"module_type" : "SwiftTarget",
"name" : "W3C CSS MediaQueries",
"path" : "Sources/W3C CSS MediaQueries",
"product_memberships" : [
"W3C CSS MediaQueries",
"W3C CSS"
],
"sources" : [
"Import+Media.swift",
"Media.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Syntax"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Masking_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Masking Tests",
"path" : "Tests/W3C CSS Masking Tests",
"sources" : [
"Shape Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Masking"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Masking",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Masking",
"path" : "Sources/W3C CSS Masking",
"product_memberships" : [
"W3C CSS Masking",
"W3C CSS Animations",
"W3C CSS Visual",
"W3C CSS Animation",
"W3C CSS"
],
"sources" : [
"Clip.swift",
"ClipPath.swift",
"ClipRule.swift",
"Mask.swift",
"MaskBorder.swift",
"MaskBorderMode.swift",
"MaskBorderOutset.swift",
"MaskBorderRepeat.swift",
"MaskBorderSlice.swift",
"MaskBorderSource.swift",
"MaskBorderWidth.swift",
"MaskClip.swift",
"MaskComposite.swift",
"MaskImage.swift",
"MaskMode.swift",
"MaskOrigin.swift",
"MaskPosition.swift",
"MaskRepeat.swift",
"MaskSize.swift",
"MaskType.swift",
"Shape.swift",
"ShapeImageThreshold.swift",
"ShapeMargin.swift",
"ShapeOutside.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Images",
"W3C CSS Positioning"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Logical_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Logical Tests",
"path" : "Tests/W3C CSS Logical Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Logical"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Logical",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Logical",
"path" : "Sources/W3C CSS Logical",
"product_memberships" : [
"W3C CSS Logical",
"W3C CSS"
],
"sources" : [
"BlockSize.swift",
"InlineSize.swift",
"MaxBlockSize.swift",
"MaxInlineSize.swift",
"MinBlockSize.swift",
"MinInlineSize.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Lists_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Lists Tests",
"path" : "Tests/W3C CSS Lists Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Lists"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Lists",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Lists",
"path" : "Sources/W3C CSS Lists",
"product_memberships" : [
"W3C CSS Containment",
"W3C CSS Lists",
"W3C CSS"
],
"sources" : [
"CounterIncrement.swift",
"CounterReset.swift",
"CounterSet.swift",
"ListStyle.swift",
"ListStyleImage.swift",
"ListStylePosition.swift",
"ListStyleType.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS CounterStyles",
"W3C CSS Images"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Layout",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Layout",
"path" : "Sources/W3C CSS Layout",
"product_memberships" : [
"W3C CSS Layout",
"W3C CSS"
],
"sources" : [
"exports.swift"
],
"target_dependencies" : [
"W3C CSS Display",
"W3C CSS Flexbox",
"W3C CSS Grid",
"W3C CSS Positioning",
"W3C CSS Multicolumn",
"W3C CSS BoxModel",
"W3C CSS Alignment"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Images_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Images Tests",
"path" : "Tests/W3C CSS Images Tests",
"sources" : [
"Gradient Tests.swift",
"Image Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Images"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Images",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Images",
"path" : "Sources/W3C CSS Images",
"product_memberships" : [
"W3C CSS Multicolumn",
"W3C CSS Backgrounds",
"W3C CSS Images",
"W3C CSS Masking",
"W3C CSS Animations",
"W3C CSS UI",
"W3C CSS Containment",
"W3C CSS Lists",
"W3C CSS Layout",
"W3C CSS Visual",
"W3C CSS Animation",
"W3C CSS"
],
"sources" : [
"Cx.swift",
"Cy.swift",
"D.swift",
"DashedIdent.swift",
"DominantBaseline.swift",
"Fill.swift",
"FillOpacity.swift",
"FillRule.swift",
"FilterFunction.swift",
"Gradient.swift",
"Image.swift",
"ImageOrientation.swift",
"ImageResolution.swift",
"Marker.swift",
"MarkerEnd.swift",
"MarkerMid.swift",
"MarkerStart.swift",
"PaintOrder.swift",
"R.swift",
"Rx.swift",
"Ry.swift",
"ShapeRendering.swift",
"StopColor.swift",
"StopOpacity.swift",
"Stroke.swift",
"StrokeDasharray.swift",
"StrokeDashoffset.swift",
"StrokeLinecap.swift",
"StrokeLinejoin.swift",
"StrokeMiterlimit.swift",
"StrokeOpacity.swift",
"StrokeWidth.swift",
"VectorEffect.swift",
"X.swift",
"Y.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Color"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Grid_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Grid Tests",
"path" : "Tests/W3C CSS Grid Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Grid"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Grid",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Grid",
"path" : "Sources/W3C CSS Grid",
"product_memberships" : [
"W3C CSS Grid",
"W3C CSS Layout",
"W3C CSS"
],
"sources" : [
"Grid.swift",
"GridArea.swift",
"GridAutoColumns.swift",
"GridAutoFlow.swift",
"GridAutoRows.swift",
"GridColumn.swift",
"GridColumnEnd.swift",
"GridColumnStart.swift",
"GridRow.swift",
"GridRowEnd.swift",
"GridRowStart.swift",
"GridTemplate.swift",
"GridTemplateAreas.swift",
"GridTemplateColumns.swift",
"GridTemplateRows.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Fonts_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Fonts Tests",
"path" : "Tests/W3C CSS Fonts Tests",
"sources" : [
"AbsoluteSize Tests.swift",
"GenericFamily Tests.swift",
"RelativeSize Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Fonts"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Fonts",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Fonts",
"path" : "Sources/W3C CSS Fonts",
"product_memberships" : [
"W3C CSS Fonts",
"W3C CSS Typography",
"W3C CSS"
],
"sources" : [
"AbsoluteSize.swift",
"Font.swift",
"FontFace.swift",
"FontFamily.swift",
"FontFeatureSettings.swift",
"FontFeatureValues.swift",
"FontKerning.swift",
"FontLanguageOverride.swift",
"FontOpticalSizing.swift",
"FontPalette.swift",
"FontPaletteValues.swift",
"FontSize.swift",
"FontSizeAdjust.swift",
"FontSmooth.swift",
"FontStretch.swift",
"FontStyle.swift",
"FontSynthesis.swift",
"FontSynthesisPosition.swift",
"FontSynthesisSmallCaps.swift",
"FontSynthesisStyle.swift",
"FontSynthesisWeight.swift",
"FontVariant.swift",
"FontVariantAlternates.swift",
"FontVariantCaps.swift",
"FontVariantEastAsian.swift",
"FontVariantEmoji.swift",
"FontVariantLigatures.swift",
"FontVariantNumeric.swift",
"FontVariantPosition.swift",
"FontVariationSettings.swift",
"FontWeight.swift",
"GenericFamily.swift",
"RelativeSize.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Syntax",
"W3C CSS Text"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Flexbox_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Flexbox Tests",
"path" : "Tests/W3C CSS Flexbox Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Flexbox"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Flexbox",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Flexbox",
"path" : "Sources/W3C CSS Flexbox",
"product_memberships" : [
"W3C CSS Flexbox",
"W3C CSS Layout",
"W3C CSS"
],
"sources" : [
"Flex.swift",
"FlexBasis.swift",
"FlexDirection.swift",
"FlexFlow.swift",
"FlexGrow.swift",
"FlexShrink.swift",
"FlexWrap.swift",
"Gap.swift",
"Order.swift",
"RowGap.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Alignment"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Filters_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Filters Tests",
"path" : "Tests/W3C CSS Filters Tests",
"sources" : [
"FilterFunction Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Filters"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Filters",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Filters",
"path" : "Sources/W3C CSS Filters",
"product_memberships" : [
"W3C CSS Filters",
"W3C CSS Visual",
"W3C CSS"
],
"sources" : [
"BackdropFilter.swift",
"Filter.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Color"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Easing_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Easing Tests",
"path" : "Tests/W3C CSS Easing Tests",
"sources" : [
"EasingFunction Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Easing"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Easing",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Easing",
"path" : "Sources/W3C CSS Easing",
"product_memberships" : [
"W3C CSS Animations",
"W3C CSS Transitions",
"W3C CSS Easing",
"W3C CSS Animation",
"W3C CSS"
],
"sources" : [
"EasingFunction.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Display_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Display Tests",
"path" : "Tests/W3C CSS Display Tests",
"sources" : [
"DisplayBox Tests.swift",
"DisplayInside Tests.swift",
"DisplayInternal Tests.swift",
"DisplayLegacy Tests.swift",
"DisplayListitem Tests.swift",
"DisplayOutside Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Display"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Display",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Display",
"path" : "Sources/W3C CSS Display",
"product_memberships" : [
"W3C CSS Display",
"W3C CSS Layout",
"W3C CSS"
],
"sources" : [
"Display.swift",
"DisplayBox.swift",
"DisplayInside.swift",
"DisplayInternal.swift",
"DisplayLegacy.swift",
"DisplayListitem.swift",
"DisplayOutside.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_CounterStyles_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS CounterStyles Tests",
"path" : "Tests/W3C CSS CounterStyles Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS CounterStyles"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_CounterStyles",
"module_type" : "SwiftTarget",
"name" : "W3C CSS CounterStyles",
"path" : "Sources/W3C CSS CounterStyles",
"product_memberships" : [
"W3C CSS Containment",
"W3C CSS Lists",
"W3C CSS CounterStyles",
"W3C CSS"
],
"sources" : [
"CounterStyle.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Syntax"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Containment_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Containment Tests",
"path" : "Tests/W3C CSS Containment Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Containment"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Containment",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Containment",
"path" : "Sources/W3C CSS Containment",
"product_memberships" : [
"W3C CSS Containment",
"W3C CSS"
],
"sources" : [
"Contain.swift",
"ContainIntrinsicBlockSize.swift",
"ContainIntrinsicHeight.swift",
"ContainIntrinsicInlineSize.swift",
"ContainIntrinsicSize.swift",
"ContainIntrinsicWidth.swift",
"Container.swift",
"ContainerName.swift",
"ContainerType.swift",
"Content.swift",
"ContentVisibility.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Lists"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Conditional_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Conditional Tests",
"path" : "Tests/W3C CSS Conditional Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Conditional"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Conditional",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Conditional",
"path" : "Sources/W3C CSS Conditional",
"product_memberships" : [
"W3C CSS Conditional",
"W3C CSS"
],
"sources" : [
"exports.swift"
],
"target_dependencies" : [
"W3C CSS Shared"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Compositing_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Compositing Tests",
"path" : "Tests/W3C CSS Compositing Tests",
"sources" : [
"BlendMode Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Compositing"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Compositing",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Compositing",
"path" : "Sources/W3C CSS Compositing",
"product_memberships" : [
"W3C CSS Compositing",
"W3C CSS Visual",
"W3C CSS"
],
"sources" : [
"BlendMode.swift",
"Isolation.swift",
"MixBlendMode.swift"
],
"target_dependencies" : [
"W3C CSS Shared"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Color_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Color Tests",
"path" : "Tests/W3C CSS Color Tests",
"sources" : [
"AlphaValue Tests.swift",
"Color Tests.swift",
"ColorInterpolationMethod Tests.swift",
"HexColor Tests.swift",
"Hue Tests.swift",
"NamedColor Tests.swift",
"Support/PerformanceTests.swift",
"SystemColor Tests.swift"
],
"target_dependencies" : [
"W3C CSS Color"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Color",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Color",
"path" : "Sources/W3C CSS Color",
"product_memberships" : [
"W3C CSS Color",
"W3C CSS Multicolumn",
"W3C CSS Text",
"W3C CSS Fonts",
"W3C CSS TextDecoration",
"W3C CSS Backgrounds",
"W3C CSS Images",
"W3C CSS Filters",
"W3C CSS Masking",
"W3C CSS Animations",
"W3C CSS Transitions",
"W3C CSS UI",
"W3C CSS Containment",
"W3C CSS Scroll",
"W3C CSS Lists",
"W3C CSS Layout",
"W3C CSS Typography",
"W3C CSS Visual",
"W3C CSS Animation",
"W3C CSS"
],
"sources" : [
"Appearance.swift",
"Color+Validation.swift",
"Color.swift",
"ColorConvertible.swift",
"ColorInterpolation.swift",
"ColorInterpolationFilters.swift",
"ColorProfile.swift",
"ColorScheme.swift",
"ColorValidation.swift",
"FloodColor.swift",
"FloodOpacity.swift",
"LightingColor.swift",
"Opacity.swift",
"SystemColor.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Syntax"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Cascade_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Cascade Tests",
"path" : "Tests/W3C CSS Cascade Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Cascade"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Cascade",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Cascade",
"path" : "Sources/W3C CSS Cascade",
"product_memberships" : [
"W3C CSS Cascade",
"W3C CSS"
],
"sources" : [
"Layer.swift",
"Supports.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Syntax",
"W3C CSS Selectors"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_BoxModel_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS BoxModel Tests",
"path" : "Tests/W3C CSS BoxModel Tests",
"sources" : [
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS BoxModel"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_BoxModel",
"module_type" : "SwiftTarget",
"name" : "W3C CSS BoxModel",
"path" : "Sources/W3C CSS BoxModel",
"product_memberships" : [
"W3C CSS BoxModel",
"W3C CSS Layout",
"W3C CSS"
],
"sources" : [
"BoxSizing.swift",
"Height.swift",
"Margin.swift",
"MarginBlock.swift",
"MarginBlockEnd.swift",
"MarginBlockStart.swift",
"MarginBottom.swift",
"MarginInline.swift",
"MarginInlineEnd.swift",
"MarginInlineStart.swift",
"MarginLeft.swift",
"MarginRight.swift",
"MarginTop.swift",
"MarginTrim.swift",
"MaxHeight.swift",
"MaxWidth.swift",
"MinHeight.swift",
"MinWidth.swift",
"Overflow.swift",
"OverflowAnchor.swift",
"OverflowBlock.swift",
"OverflowClipMargin.swift",
"OverflowInline.swift",
"OverflowType.swift",
"OverflowWrap.swift",
"OverflowX.swift",
"OverflowY.swift",
"Padding.swift",
"PaddingBlock.swift",
"PaddingBlockEnd.swift",
"PaddingBlockStart.swift",
"PaddingBottom.swift",
"PaddingInline.swift",
"PaddingInlineEnd.swift",
"PaddingInlineStart.swift",
"PaddingLeft.swift",
"PaddingRight.swift",
"PaddingTop.swift",
"Width.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Backgrounds_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Backgrounds Tests",
"path" : "Tests/W3C CSS Backgrounds Tests",
"sources" : [
"LineStyle Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Backgrounds"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Backgrounds",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Backgrounds",
"path" : "Sources/W3C CSS Backgrounds",
"product_memberships" : [
"W3C CSS Multicolumn",
"W3C CSS Backgrounds",
"W3C CSS UI",
"W3C CSS Layout",
"W3C CSS Visual",
"W3C CSS"
],
"sources" : [
"Background.swift",
"BackgroundAttachment.swift",
"BackgroundBlendMode.swift",
"BackgroundClip.swift",
"BackgroundColor.swift",
"BackgroundImage.swift",
"BackgroundOrigin.swift",
"BackgroundPosition.swift",
"BackgroundPositionX.swift",
"BackgroundPositionY.swift",
"BackgroundRepeat.swift",
"BackgroundSize.swift",
"Border.swift",
"BorderBlock.swift",
"BorderBlockColor.swift",
"BorderBlockEnd.swift",
"BorderBlockEndColor.swift",
"BorderBlockEndStyle.swift",
"BorderBlockEndWidth.swift",
"BorderBlockStart.swift",
"BorderBlockStartColor.swift",
"BorderBlockStartStyle.swift",
"BorderBlockStartWidth.swift",
"BorderBlockStyle.swift",
"BorderBlockWidth.swift",
"BorderBottom.swift",
"BorderBottomColor.swift",
"BorderBottomLeftRadius.swift",
"BorderBottomRightRadius.swift",
"BorderBottomStyle.swift",
"BorderBottomWidth.swift",
"BorderCollapse.swift",
"BorderColor.swift",
"BorderEndEndRadius.swift",
"BorderEndStartRadius.swift",
"BorderImage.swift",
"BorderImageOutset.swift",
"BorderImageRepeat.swift",
"BorderImageSlice.swift",
"BorderImageSource.swift",
"BorderImageWidth.swift",
"BorderInline.swift",
"BorderInlineColor.swift",
"BorderInlineEnd.swift",
"BorderInlineEndColor.swift",
"BorderInlineEndStyle.swift",
"BorderInlineEndWidth.swift",
"BorderInlineStart.swift",
"BorderInlineStartColor.swift",
"BorderInlineStartStyle.swift",
"BorderInlineStartWidth.swift",
"BorderInlineStyle.swift",
"BorderInlineWidth.swift",
"BorderLeft.swift",
"BorderLeftColor.swift",
"BorderLeftStyle.swift",
"BorderLeftWidth.swift",
"BorderRadius.swift",
"BorderRight.swift",
"BorderRightColor.swift",
"BorderRightStyle.swift",
"BorderRightWidth.swift",
"BorderSpacing.swift",
"BorderStartEndRadius.swift",
"BorderStartStartRadius.swift",
"BorderStyle.swift",
"BorderTop.swift",
"BorderTopColor.swift",
"BorderTopLeftRadius.swift",
"BorderTopRightRadius.swift",
"BorderTopStyle.swift",
"BorderTopWidth.swift",
"BorderWidth.swift",
"BoxShadow.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Color",
"W3C CSS Images"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Animations_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Animations Tests",
"path" : "Tests/W3C CSS Animations Tests",
"sources" : [
"AnimationComposition Tests.swift",
"AnimationDelay Tests.swift",
"AnimationDirection Tests.swift",
"AnimationDuration Tests.swift",
"AnimationFillMode Tests.swift",
"AnimationIterationCount Tests.swift",
"AnimationName Tests.swift",
"AnimationPlayState Tests.swift",
"AnimationRange Tests.swift",
"AnimationRangeEnd Tests.swift",
"AnimationRangeStart Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Animations"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Animations",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Animations",
"path" : "Sources/W3C CSS Animations",
"product_memberships" : [
"W3C CSS Animations",
"W3C CSS Animation",
"W3C CSS"
],
"sources" : [
"Animation.swift",
"AnimationComposition.swift",
"AnimationDelay.swift",
"AnimationDirection.swift",
"AnimationDuration.swift",
"AnimationFillMode.swift",
"AnimationIterationCount.swift",
"AnimationName.swift",
"AnimationPlayState.swift",
"AnimationRange.swift",
"AnimationRangeEnd.swift",
"AnimationRangeStart.swift",
"AnimationTimeline.swift",
"AnimationTimingFunction.swift",
"Keyframes.swift",
"Offset.swift",
"OffsetAnchor.swift",
"OffsetDistance.swift",
"OffsetPath.swift",
"OffsetPosition.swift",
"OffsetRotate.swift",
"TimelineScope.swift",
"ViewTimeline.swift",
"ViewTimelineAxis.swift",
"ViewTimelineInset.swift",
"ViewTimelineName.swift",
"ViewTransitionName.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Easing",
"W3C CSS Masking",
"W3C CSS Positioning"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Animation",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Animation",
"path" : "Sources/W3C CSS Animation",
"product_memberships" : [
"W3C CSS Animation",
"W3C CSS"
],
"sources" : [
"exports.swift"
],
"target_dependencies" : [
"W3C CSS Animations",
"W3C CSS Transitions",
"W3C CSS Easing",
"W3C CSS Positioning"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS_Alignment_Tests",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Alignment Tests",
"path" : "Tests/W3C CSS Alignment Tests",
"sources" : [
"AlignContent Tests.swift",
"AlignItems Tests.swift",
"AlignSelf Tests.swift",
"AlignmentBaseline Tests.swift",
"BaselinePosition Tests.swift",
"ContentDistribution Tests.swift",
"ContentPosition Tests.swift",
"OverflowPosition Tests.swift",
"SelfPosition Tests.swift",
"Support/PerformanceTests.swift"
],
"target_dependencies" : [
"W3C CSS Alignment"
],
"type" : "test"
},
{
"c99name" : "W3C_CSS_Alignment",
"module_type" : "SwiftTarget",
"name" : "W3C CSS Alignment",
"path" : "Sources/W3C CSS Alignment",
"product_memberships" : [
"W3C CSS Flexbox",
"W3C CSS Alignment",
"W3C CSS Layout",
"W3C CSS"
],
"sources" : [
"AlignContent.swift",
"AlignItems.swift",
"AlignSelf.swift",
"AlignmentBaseline.swift",
"ContentDistribution.swift",
"ContentPosition.swift",
"JustifyContent.swift",
"JustifyItems.swift",
"JustifySelf.swift",
"PlaceContent.swift",
"PlaceItems.swift",
"PlaceSelf.swift",
"VerticalAlign.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values"
],
"type" : "library"
},
{
"c99name" : "W3C_CSS",
"module_type" : "SwiftTarget",
"name" : "W3C CSS",
"path" : "Sources/W3C CSS",
"product_memberships" : [
"W3C CSS"
],
"sources" : [
"exports.swift"
],
"target_dependencies" : [
"W3C CSS Shared",
"W3C CSS Values",
"W3C CSS Color",
"W3C CSS Syntax",
"W3C CSS Cascade",
"W3C CSS Selectors",
"W3C CSS Variables",
"W3C CSS Layout",
"W3C CSS Typography",
"W3C CSS Visual",
"W3C CSS Animation",
"W3C CSS Conditional",
"W3C CSS MediaQueries",
"W3C CSS UI",
"W3C CSS PseudoElements",
"W3C CSS PseudoClasses",
"W3C CSS Containment",
"W3C CSS Scroll",
"W3C CSS Logical",
"W3C CSS Lists",
"W3C CSS CounterStyles",
"W3C CSS Paged"
],
"type" : "library"
}
],
"tools_version" : "6.2"
}
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Done.