Skip to content

Commit c6556d5

Browse files
authored
release/50.0.0-alpha.3 (#1115)
* Feature: Added new CSS Variables for colors, spacing, and typography
1 parent f053b8e commit c6556d5

File tree

6 files changed

+10
-12
lines changed

6 files changed

+10
-12
lines changed

projects/swimlane/ngx-ui/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## HEAD (unreleased)
44

5+
## 50.0.0-alpha.3 (2025-07-14)
6+
57
- Feature: Added new CSS Variables for colors, spacing, and typography
68

79
## 50.0.0-alpha.2 (2025-07-11)

projects/swimlane/ngx-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swimlane/ngx-ui",
3-
"version": "50.0.0-alpha.2",
3+
"version": "50.0.0-alpha.3",
44
"engines": {
55
"node": ">=18.0.0"
66
},

projects/swimlane/ngx-ui/src/lib/styles/colors/_vars.scss

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/* Primitives / Color - Swimlane Default */
22
:root {
3-
43
// Blue
54
--blue-100: rgb(224, 239, 255);
65
--blue-200: rgb(173, 212, 255);
@@ -44,7 +43,7 @@
4443
--orange-700: rgb(173, 109, 0);
4544
--orange-800: rgb(122, 77, 0);
4645
--orange-900: rgb(71, 45, 0);
47-
46+
4847
// Base
4948
--white: rgb(255, 255, 255);
5049
--black: rgb(0, 0, 0);
@@ -98,4 +97,4 @@
9897

9998
// Error
10099
--color-error: var(—red-500);
101-
}
100+
}

projects/swimlane/ngx-ui/src/lib/styles/layouts/_vars.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
:root {
2-
32
// Spacing Gaps
43
--spacing-0: 0px;
54
--spacing-2: 2px;
@@ -21,4 +20,4 @@
2120
--radius-6: 6px;
2221
--radius-8: 8px;
2322
--radius-1000: 1000px;
24-
}
23+
}

projects/swimlane/ngx-ui/src/lib/styles/typography/_vars.scss

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
--font-size-xxs: 0.625em; /* 10px */
44
--font-size-xs: 0.75em; /* 12px */
55
--font-size-s: 0.875em; /* 14px */
6-
--font-size-m: 1em; /* 16px */
6+
--font-size-m: 1em; /* 16px */
77
--font-size-l: 1.125em; /* 18px */
88
--font-size-xl: 1.25em; /* 20px */
99
--font-size-2xl: 1.5em; /* 24px */
@@ -12,15 +12,13 @@
1212
--font-size-5xl: 2.25em; /* 36px */
1313
--font-size-6xl: 3em; /* 48px */
1414

15-
1615
--font-line-height-100: 1.1;
1716
--font-line-height-200: 1.42;
1817
--font-line-height-300: 20px;
1918
--font-line-height-400: 40px;
2019

21-
2220
--font-weight-light: 300;
2321
--font-weight-regular: 400;
24-
--font-weight-semibold: 600;
22+
--font-weight-semibold: 600;
2523
--font-weight-bold: 700;
26-
}
24+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@forward 'colors/_vars';
22
@forward 'layouts/_vars';
3-
@forward 'typography/_vars';
3+
@forward 'typography/_vars';

0 commit comments

Comments
 (0)