We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb48f65 commit 7593b27Copy full SHA for 7593b27
1 file changed
Aztec/Classes/Constants/Metrics.swift
@@ -4,12 +4,12 @@ import Foundation
4
/// A collection of constants and metrics shared between the Aztec importer
5
/// and the editor.
6
///
7
-enum Metrics {
+public enum Metrics {
8
9
- static let defaultIndentation = CGFloat(12)
10
- static let maxIndentation = CGFloat(200)
11
- static let listTextIndentation = CGFloat(16)
12
- static let tabStepInterval = 8
13
- static let tabStepCount = 12
14
- static let paragraphSpacing = CGFloat(6)
+ public static var defaultIndentation = CGFloat(12)
+ public static var maxIndentation = CGFloat(200)
+ public static var listTextIndentation = CGFloat(16)
+ public static var tabStepInterval = 8
+ public static var tabStepCount = 12
+ public static var paragraphSpacing = CGFloat(6)
15
}
0 commit comments