@speckle/ui-components 2.26.1 → 2.26.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@speckle/ui-components",
3
3
  "description": "Speckle theme UI components built with Vue 3 & Tailwind",
4
- "version": "2.26.1",
4
+ "version": "2.26.3",
5
5
  "scripts": {
6
6
  "dev:vite": "vite",
7
7
  "dev": "yarn storybook",
@@ -48,7 +48,7 @@
48
48
  "dependencies": {
49
49
  "@headlessui/vue": "npm:@speckle/headlessui-vue@1.7.23-alpha.0",
50
50
  "@heroicons/vue": "^2.0.12",
51
- "@speckle/shared": "^2.26.1",
51
+ "@speckle/shared": "^2.26.3",
52
52
  "@storybook/test": "^8.1.10",
53
53
  "@vueuse/core": "^9.13.0",
54
54
  "lodash": "^4.0.0",
@@ -63,7 +63,7 @@
63
63
  "@babel/preset-env": "^7.21.5",
64
64
  "@babel/preset-react": "^7.18.6",
65
65
  "@rollup/plugin-typescript": "^11.1.0",
66
- "@speckle/tailwind-theme": "^2.26.1",
66
+ "@speckle/tailwind-theme": "^2.26.3",
67
67
  "@storybook/addon-essentials": "^8.1.10",
68
68
  "@storybook/addon-interactions": "^8.1.10",
69
69
  "@storybook/addon-links": "^8.1.10",
@@ -78,7 +78,6 @@
78
78
  "@typescript-eslint/parser": "^7.12.0",
79
79
  "@vitejs/plugin-vue": "^5.2.1",
80
80
  "autoprefixer": "^10.4.14",
81
- "browserify-zlib": "^0.2.0",
82
81
  "concurrently": "^8.0.1",
83
82
  "eslint": "^9.4.0",
84
83
  "eslint-config-prettier": "^9.1.0",
@@ -88,13 +87,12 @@
88
87
  "postcss": "^8.4.31",
89
88
  "postcss-nesting": "^10.2.0",
90
89
  "prettier": "^2.7.1",
91
- "rollup-plugin-node-builtins": "^2.1.2",
92
90
  "storybook": "^8.1.10",
93
91
  "tailwindcss": "^3.3.2",
94
92
  "type-fest": "^2.13.1",
95
93
  "typescript": "^5.0.4",
96
94
  "vee-validate": "4.7.0",
97
- "vite": "^4.5.2",
95
+ "vite": "^4.5.14",
98
96
  "vite-plugin-dts": "^4.5.4",
99
97
  "vue": "^3.5.13",
100
98
  "vue-tsc": "^2.2.2",
package/vite.config.ts CHANGED
@@ -3,9 +3,6 @@ import vue from '@vitejs/plugin-vue'
3
3
  import dts from 'vite-plugin-dts'
4
4
  import pkg from './package.json'
5
5
  import { resolve } from 'path'
6
- import { createRequire } from 'node:module'
7
-
8
- const require = createRequire(import.meta.url)
9
6
 
10
7
  // https://vitejs.dev/config/
11
8
  export default defineConfig({
@@ -42,11 +39,6 @@ export default defineConfig({
42
39
 
43
40
  resolve: {
44
41
  alias: {
45
- // We need browser polyfills for crypto & zlib cause they seem to be bundled for the web
46
- // for some reason when running storybook. Doesn't appear that these
47
- // actually appear in any client-side bundles tho!
48
- crypto: require.resolve('rollup-plugin-node-builtins'),
49
- zlib: require.resolve('browserify-zlib'),
50
42
  '~~/src': resolve(__dirname, './src')
51
43
  }
52
44
  }