@spaced-out/ui-design-system 0.1.71 → 0.1.72

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.
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "eslint.validate": ["javascript", "javascriptreact"],
3
3
  "editor.codeActionsOnSave": {
4
- "source.fixAll.eslint": true
5
- },
6
- "marquee.widgets.npm-stats.packageNames": ["@spaced-out/ui-design-system"]
4
+ "source.fixAll.eslint": "explicit"
5
+ }
7
6
  }
package/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.72](https://github.com/spaced-out/ui-design-system/compare/v0.1.71...v0.1.72) (2023-12-15)
6
+
7
+
8
+ ### Features
9
+
10
+ * 🏒 sticky footer grid support ([10df1a2](https://github.com/spaced-out/ui-design-system/commit/10df1a2d4a85e83340a7617ae17194b9beaaed9c))
11
+ * 🏓 sticky column in data tables ([e3fe6bd](https://github.com/spaced-out/ui-design-system/commit/e3fe6bdf803239c8dfb16a23488b653e9b290253))
12
+ * 🆕 tablist layout ([6033743](https://github.com/spaced-out/ui-design-system/commit/6033743c0ded569adc38711746a9a165f6858049))
13
+
5
14
  ### [0.1.71](https://github.com/spaced-out/ui-design-system/compare/v0.1.70...v0.1.71) (2023-12-13)
6
15
 
7
16
 
@@ -128,11 +128,18 @@
128
128
  z-index: calc(elevationCard / 2);
129
129
  }
130
130
 
131
- .stickyHeaderCell {
132
- background: colorBackgroundPrimary;
131
+ .stickyHeaderCell::after,
132
+ .stickyCell::after {
133
+ content: '';
134
+ position: absolute;
135
+ right: calc(borderWidthPrimary * -1);
136
+ top: spaceNone;
137
+ width: calc(size2 / 2);
138
+ height: sizeFluid;
139
+ background: colorBorderSecondary;
133
140
  }
134
141
 
135
- .stickyCell {
142
+ .stickyHeaderCell {
136
143
  background: colorBackgroundPrimary;
137
144
  }
138
145
 
@@ -3,9 +3,12 @@
3
3
  ) from 'variables/_border.css';
4
4
 
5
5
  @value (
6
- colorBorderPrimary
6
+ colorBorderPrimary,
7
+ colorBorderSecondary
7
8
  ) from 'variables/_color.css';
8
9
 
10
+ /* Primary Start */
11
+
9
12
  .borderPrimary {
10
13
  border: borderWidthPrimary solid colorBorderPrimary;
11
14
  }
@@ -25,3 +28,29 @@
25
28
  .borderRightPrimary {
26
29
  border-right: borderWidthPrimary solid colorBorderPrimary;
27
30
  }
31
+
32
+ /* Primary End */
33
+
34
+ /* Secondary Start */
35
+
36
+ .borderSecondary {
37
+ border: borderWidthPrimary solid colorBorderSecondary;
38
+ }
39
+
40
+ .borderTopSecondary {
41
+ border-top: borderWidthPrimary solid colorBorderSecondary;
42
+ }
43
+
44
+ .borderBottomSecondary {
45
+ border-bottom: borderWidthPrimary solid colorBorderSecondary;
46
+ }
47
+
48
+ .borderLeftSecondary {
49
+ border-left: borderWidthPrimary solid colorBorderSecondary;
50
+ }
51
+
52
+ .borderRightSecondary {
53
+ border-right: borderWidthPrimary solid colorBorderSecondary;
54
+ }
55
+
56
+ /* Secondary End */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaced-out/ui-design-system",
3
- "version": "0.1.71",
3
+ "version": "0.1.72",
4
4
  "main": "index.js",
5
5
  "description": "Sense UI components library",
6
6
  "author": {