intelliwaketssveltekitv25 1.0.42 → 1.0.45

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/Functions.js CHANGED
@@ -183,6 +183,8 @@ export const DoIDsMatch = (a, b) => IsEqual(a, b) || IsEqual(a?.id, b?.id);
183
183
  */
184
184
  export function autoFocus(el) {
185
185
  tick().then(() => {
186
+ if (!el)
187
+ console.error('autoFocus el not available');
186
188
  el?.focus();
187
189
  });
188
190
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelliwaketssveltekitv25",
3
- "version": "1.0.42",
3
+ "version": "1.0.45",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./dist/index.d.ts",
@@ -14,12 +14,12 @@
14
14
  "!dist/**/*.spec.*"
15
15
  ],
16
16
  "peerDependencies": {
17
- "@solidbasisventures/intelliwaketsfoundation": "^5.13.13",
17
+ "@solidbasisventures/intelliwaketsfoundation": "^5.13.14",
18
18
  "@sveltejs/kit": "^2.49.2",
19
19
  "svelte": "^5.45.8"
20
20
  },
21
21
  "devDependencies": {
22
- "@solidbasisventures/intelliwaketsfoundation": "^5.13.13",
22
+ "@solidbasisventures/intelliwaketsfoundation": "^5.13.14",
23
23
  "@sveltejs/kit": "^2.49.0",
24
24
  "svelte": "^5.45.2",
25
25
  "@chromatic-com/storybook": "^3.2.6",
@@ -83,7 +83,7 @@
83
83
  "lint": "prettier --check . && eslint .",
84
84
  "format": "prettier --write .",
85
85
  "Install-IntelliWake": "pnpm install && pnpm update -P @solidbasisventures/intelliwaketsfoundation",
86
- "Publish": "pnpm version patch && git push --tags && pnpm svelte-package && tailwindcss -i src/app.css -o ./dist/app.css --minify && git push && pnpm publish",
86
+ "Publish": "pnpm version patch && git push --tags && git push && pnpm publish",
87
87
  "Version-Minor-Advance": "pnpm version minor"
88
88
  }
89
89
  }