@drivy/cobalt 1.4.5 → 1.5.0

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,6 @@
1
1
  {
2
2
  "name": "@drivy/cobalt",
3
- "version": "1.4.5",
3
+ "version": "1.5.0",
4
4
  "description": "Opinionated design system for Drivy's projects.",
5
5
  "main": "src/index.js",
6
6
  "types": "types/src/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "url": "https://github.com/TimPetricola"
20
20
  },
21
21
  "dependencies": {
22
- "@ark-ui/react": "5.5.0",
22
+ "@ark-ui/react": "5.9.2",
23
23
  "@juggle/resize-observer": "3.4.0",
24
24
  "@lottiefiles/react-lottie-player": "3.5.4",
25
25
  "@tippyjs/react": "4.2.6",
@@ -28,7 +28,7 @@
28
28
  "lodash.throttle": "4.1.1",
29
29
  "media-typer": "1.1.0",
30
30
  "nanoid": "5.1.5",
31
- "postcss": "8.5.3",
31
+ "postcss": "8.5.4",
32
32
  "tailwindcss": "3.4.17",
33
33
  "tippy.js": "6.3.7"
34
34
  },
@@ -88,7 +88,7 @@
88
88
  "rollup-plugin-copy": "3.5.0",
89
89
  "rollup-plugin-svgo": "2.0.0",
90
90
  "rollup-plugin-typescript2": "0.36.0",
91
- "sass": "1.89.0",
91
+ "sass": "1.89.1",
92
92
  "sass-loader": "13.3.3",
93
93
  "sharp-cli": "5.1.0",
94
94
  "storybook": "7.6.20",
@@ -12,6 +12,7 @@
12
12
  .cobalt-layout-page-title,
13
13
  .cobalt-layout-section-title {
14
14
  min-width: calc(100% - 2 * var(--cobalt-layout-x-spacing));
15
+ display: inline flow-root; // This is to avoid margin collapse between sections
15
16
  }
16
17
 
17
18
  .cobalt-layout--hasHeaderLink {
@@ -77,6 +78,7 @@ div.cobalt-layout-stack {
77
78
  table.cobalt-layout-stack {
78
79
  @apply c-border c-border-base c-border-separate c-rounded-xl c-border-spacing-none;
79
80
  margin: var(--cobalt-layout-y-spacing) var(--cobalt-layout-x-spacing);
81
+ display: inline-table; // This is to avoid margin collapse between sections
80
82
 
81
83
  .cobalt-layout-stack__item:first-of-type th,
82
84
  tbody:not(thead ~ tbody) .cobalt-layout-stack__item:first-of-type td {