@uniformdev/design-system 19.8.0 → 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
 
@@ -586,11 +586,10 @@ var inlineLabel = (fontWeight) => css2`
586
586
  padding-left: var(--spacing-lg);
587
587
 
588
588
  > a {
589
- color: var(--brand-secondary-3);
590
- text-decoration: underline;
589
+ color: var(--primary-action-default);
591
590
 
592
591
  &:hover {
593
- text-decoration: none;
592
+ color: var(--primary-action-hover);
594
593
  }
595
594
  }
596
595
  `;
@@ -13363,6 +13362,11 @@ var ScrollableListInner = css48`
13363
13362
  max-height: 24rem;
13364
13363
  overflow-y: auto;
13365
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;
13366
13370
 
13367
13371
  > * {
13368
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
 
@@ -804,11 +804,10 @@ var inlineLabel = (fontWeight) => import_react4.css`
804
804
  padding-left: var(--spacing-lg);
805
805
 
806
806
  > a {
807
- color: var(--brand-secondary-3);
808
- text-decoration: underline;
807
+ color: var(--primary-action-default);
809
808
 
810
809
  &:hover {
811
- text-decoration: none;
810
+ color: var(--primary-action-hover);
812
811
  }
813
812
  }
814
813
  `;
@@ -13577,6 +13576,11 @@ var ScrollableListInner = import_react61.css`
13577
13576
  max-height: 24rem;
13578
13577
  overflow-y: auto;
13579
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;
13580
13584
 
13581
13585
  > * {
13582
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.8.0",
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",
@@ -18,11 +18,11 @@
18
18
  "document": "api-extractor run --local"
19
19
  },
20
20
  "devDependencies": {
21
- "@emotion/jest": "11.10.8",
21
+ "@emotion/jest": "11.11.0",
22
22
  "@storybook/addon-docs": "6.5.16",
23
23
  "@storybook/client-api": "6.5.16",
24
24
  "@storybook/react": "6.5.16",
25
- "@types/react": "18.2.5",
25
+ "@types/react": "18.2.6",
26
26
  "autoprefixer": "10.4.14",
27
27
  "hygen": "6.2.11",
28
28
  "postcss": "8.4.23",
@@ -31,7 +31,7 @@
31
31
  "tsup": "6.7.0"
32
32
  },
33
33
  "dependencies": {
34
- "@emotion/react": "11.10.8",
34
+ "@emotion/react": "11.11.0",
35
35
  "@monaco-editor/react": "4.5.1",
36
36
  "lottie-react": "^2.3.1",
37
37
  "monaco-editor": "0.38.0",
@@ -39,10 +39,10 @@
39
39
  "react-hotkeys-hook": "4.4.0",
40
40
  "react-icons": "4.8.0",
41
41
  "react-paginate": "8.1.5",
42
- "react-select": "5.7.2",
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": "70eb9277bbfaee5f9245e1b26b4e77caede22944"
57
+ "gitHead": "149f942da715ed802545850283f9b99291829a04"
58
58
  }