@propelinc/citrus-ui 1.0.2 → 1.0.3

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": "@propelinc/citrus-ui",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/propelinc/citrus-ui"
@@ -25,9 +25,12 @@
25
25
  "lodash": "4.17.23",
26
26
  "maska": "^2.1.11",
27
27
  "scroll-into-view-if-needed": "^3.1.0",
28
- "vue": "3.5.18",
29
28
  "@propelinc/shared-utils": "0.0.0"
30
29
  },
30
+ "peerDependencies": {
31
+ "vue": "^3.5.0",
32
+ "vue-router": "^4.0.0"
33
+ },
31
34
  "devDependencies": {
32
35
  "@chromatic-com/storybook": "3.2.7",
33
36
  "@storybook/addon-a11y": "8.6.15",
@@ -49,6 +52,7 @@
49
52
  "vite": "6.4.1",
50
53
  "vite-plugin-dts": "^4.0.0",
51
54
  "vitest": "3.1.4",
55
+ "vue": "3.5.18",
52
56
  "vue-router": "4.5.1",
53
57
  "vue-tsc": "3.1.0",
54
58
  "@propelinc/test-utils": "0.0.1"
@@ -8,7 +8,4 @@ const CitrusTheme = Object.entries(Colors).reduce<Theme>((theme, [colorName, hex
8
8
  return theme;
9
9
  }, {});
10
10
 
11
- // NOTE(mohan): Jest tests don't properly import scss files, leading to
12
- // undefined values. Clear them since we don't need these things to be defined
13
- // in unit tests anyways.
14
- export default process.env.NODE_ENV === 'test' ? {} : CitrusTheme;
11
+ export default CitrusTheme;