@kestra-io/ui-libs 0.0.265 → 0.0.268
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/scss/_variables.scss
CHANGED
|
@@ -107,13 +107,20 @@ $gray-300-alt: #9797A6 !default;
|
|
|
107
107
|
|
|
108
108
|
$purple-50: #E0E0FF !default;
|
|
109
109
|
|
|
110
|
-
//
|
|
111
|
-
$font-size-base: 1rem !default;
|
|
110
|
+
// font family
|
|
112
111
|
$font-family-sans-serif: "Public Sans", sans-serif;
|
|
113
112
|
$font-family-monospace: "Source Code Pro", monospace;
|
|
114
|
-
|
|
115
|
-
|
|
113
|
+
|
|
114
|
+
// font sizes
|
|
115
|
+
$font-size-base: 1rem;
|
|
116
|
+
$font-size-xs: $font-size-base * 0.75;
|
|
117
|
+
$font-size-sm: $font-size-base * 0.875;
|
|
118
|
+
$font-size-md : $font-size-base * 1;
|
|
119
|
+
$font-size-lg: $font-size-base * 1.25;
|
|
116
120
|
$font-size-xl: $font-size-base * 1.375;
|
|
121
|
+
$font-size-2xl : $font-size-base * 2.188;
|
|
122
|
+
$font-size-3xl : $font-size-base * 3;
|
|
123
|
+
$font-size-4xl : $font-size-base * 3.75;
|
|
117
124
|
|
|
118
125
|
// border
|
|
119
126
|
$block-border: 1px solid $black-3;
|
|
@@ -1704,8 +1704,8 @@ describe("getTypeAtPosition", () => {
|
|
|
1704
1704
|
lineNumber:9,
|
|
1705
1705
|
column: 15
|
|
1706
1706
|
}, [
|
|
1707
|
-
|
|
1708
|
-
|
|
1707
|
+
"io.kestra.plugin.jdbc.sqlserver.Query",
|
|
1708
|
+
"io.kestra.plugin.core.log.Log"
|
|
1709
1709
|
]); // line 9, column 15 corresponds to io.kestra.plugin.jdbc.sqlserver.Query
|
|
1710
1710
|
expect(result).toBe("io.kestra.plugin.jdbc.sqlserver.Query");
|
|
1711
1711
|
});
|