@uniformdev/design-system 19.9.2-alpha.3 → 19.10.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/dist/esm/index.js CHANGED
@@ -36,7 +36,7 @@ var Theme = ({ disableReset = false }) => {
36
36
 
37
37
  /* secondary colours */
38
38
  --brand-secondary-1: #1f2b34; /* carbon */
39
- --brand-secondary-2: #ecf1f1; /* silver */
39
+ --brand-secondary-2: var(--gray-50);
40
40
  --brand-secondary-3: var(--purple-rain-500);
41
41
  --brand-secondary-5: #d9534f; /* brick red */
42
42
 
@@ -13362,6 +13362,11 @@ var ScrollableListInner = css48`
13362
13362
  max-height: 24rem;
13363
13363
  overflow-y: auto;
13364
13364
  padding: var(--spacing-sm);
13365
+ /*
13366
+ position: relative prevents an overflow bug where components inside the
13367
+ scrollable list still take up space outside of it in some browsers
13368
+ */
13369
+ position: relative;
13365
13370
 
13366
13371
  > * {
13367
13372
  margin-block: 0 var(--spacing-sm);
package/dist/index.js CHANGED
@@ -254,7 +254,7 @@ var Theme = ({ disableReset = false }) => {
254
254
 
255
255
  /* secondary colours */
256
256
  --brand-secondary-1: #1f2b34; /* carbon */
257
- --brand-secondary-2: #ecf1f1; /* silver */
257
+ --brand-secondary-2: var(--gray-50);
258
258
  --brand-secondary-3: var(--purple-rain-500);
259
259
  --brand-secondary-5: #d9534f; /* brick red */
260
260
 
@@ -13576,6 +13576,11 @@ var ScrollableListInner = import_react61.css`
13576
13576
  max-height: 24rem;
13577
13577
  overflow-y: auto;
13578
13578
  padding: var(--spacing-sm);
13579
+ /*
13580
+ position: relative prevents an overflow bug where components inside the
13581
+ scrollable list still take up space outside of it in some browsers
13582
+ */
13583
+ position: relative;
13579
13584
 
13580
13585
  > * {
13581
13586
  margin-block: 0 var(--spacing-sm);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/design-system",
3
- "version": "19.9.2-alpha.3+547c8b11d",
3
+ "version": "19.10.0",
4
4
  "description": "Uniform design system components",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -42,7 +42,7 @@
42
42
  "react-select": "5.7.3",
43
43
  "react-use": "17.4.0",
44
44
  "reakit": "1.3.11",
45
- "zod-to-json-schema": "3.21.0"
45
+ "zod-to-json-schema": "3.21.1"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "react": ">=17 || 17 || 18",
@@ -54,5 +54,5 @@
54
54
  "publishConfig": {
55
55
  "access": "public"
56
56
  },
57
- "gitHead": "547c8b11d4655b34250c2fbe3f016c9bc12c3905"
57
+ "gitHead": "149f942da715ed802545850283f9b99291829a04"
58
58
  }