@platforma-sdk/ui-vue 1.33.2 → 1.33.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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @platforma-sdk/ui-vue
2
2
 
3
+ ## 1.33.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 84656a6: Get rid of .cjs and .umd in ui packages
8
+ - Updated dependencies [84656a6]
9
+ - @milaboratories/uikit@2.2.78
10
+
3
11
  ## 1.33.2
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@platforma-sdk/ui-vue",
3
- "version": "1.33.2",
3
+ "version": "1.33.3",
4
4
  "type": "module",
5
- "main": "dist/lib.umd.cjs",
5
+ "main": "dist/lib.js",
6
6
  "module": "dist/lib.js",
7
7
  "types": "dist/src/lib.d.ts",
8
8
  "styles": "dist/style.css",
@@ -24,8 +24,8 @@
24
24
  "canonicalize": "~2.1.0",
25
25
  "lru-cache": "^11.1.0",
26
26
  "vue": "^3.5.13",
27
+ "@milaboratories/uikit": "^2.2.78",
27
28
  "@milaboratories/biowasm-tools": "^1.1.0",
28
- "@milaboratories/uikit": "^2.2.77",
29
29
  "@platforma-sdk/model": "^1.33.2"
30
30
  },
31
31
  "devDependencies": {
package/vite.config.ts CHANGED
@@ -15,6 +15,7 @@ export default defineConfig({
15
15
  name: 'SdkVueLib',
16
16
  // the proper extensions will be added
17
17
  fileName: 'lib',
18
+ formats: ['es'],
18
19
  },
19
20
  rollupOptions: {
20
21
  plugins: [sourcemaps()],