windmill-components 1.493.7 → 1.493.9

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.
Files changed (1) hide show
  1. package/package.json +9 -2
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "windmill-components",
3
- "version": "1.493.7",
3
+ "version": "1.493.9",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build",
7
7
  "preview": "vite preview",
8
- "postinstall": "node scripts/untar_ui_builder.js && node scripts/patch_files.js",
9
8
  "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --threshold warning",
10
9
  "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
11
10
  "lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
@@ -375,6 +374,11 @@
375
374
  "./tailwindUtils": {
376
375
  "types": "./package/components/apps/editor/componentsPanel/tailwindUtils.d.ts",
377
376
  "default": "./package/components/apps/editor/componentsPanel/tailwindUtils.js"
377
+ },
378
+ "./components/custom_ui": {
379
+ "types": "./package/components/custom_ui.d.ts",
380
+ "svelte": "./package/components/custom_ui.js",
381
+ "default": "./package/components/custom_ui.js"
378
382
  }
379
383
  },
380
384
  "files": [
@@ -514,6 +518,9 @@
514
518
  ],
515
519
  "tailwindUtils": [
516
520
  "./package/components/apps/editor/componentsPanel/tailwindUtils.d.ts"
521
+ ],
522
+ "components/custom_ui": [
523
+ "./package/components/custom_ui.d.ts"
517
524
  ]
518
525
  }
519
526
  },