@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
@@ -1,6 +1,10 @@
1
1
  {
2
2
  "name": "@kestra-io/ui-libs",
3
- "version": "0.0.265",
3
+ "version": "0.0.268",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/kestra-io/ui-libs"
7
+ },
4
8
  "type": "module",
5
9
  "files": [
6
10
  "dist",
@@ -94,7 +94,7 @@
94
94
  right: 0.35rem;
95
95
  top: 0.25rem;
96
96
  color: var(--bs-gray-600);
97
- font-size: calc($font-size-base * .75);
97
+ font-size: $font-size-xs;
98
98
  }
99
99
 
100
100
  :deep(pre) {
@@ -107,13 +107,20 @@ $gray-300-alt: #9797A6 !default;
107
107
 
108
108
  $purple-50: #E0E0FF !default;
109
109
 
110
- // fonts
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
- $font-size-xs: $font-size-base * 0.75 !default;
115
- $font-size-md: $font-size-base * 1;
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
- 'io.kestra.plugin.jdbc.sqlserver.Query',
1708
- 'io.kestra.plugin.core.log.Log'
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
  });