sveltekit-ui 1.1.6 → 1.1.8

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.
@@ -22,8 +22,8 @@
22
22
  {/if}
23
23
  <TextInput manager={manager?.column_id_text_input_manager} />
24
24
  <p
25
- style="font-size: 1.2rem; {column_id_text_input_manager?.val &&
26
- !/^[a-z0-9]+(?:_[a-z0-9]+)*$/.test(column_id_text_input_manager.val)
25
+ style="font-size: 1.2rem; {manager?.column_id_text_input_manager?.val &&
26
+ !/^[a-z0-9]+(?:_[a-z0-9]+)*$/.test(manager?.column_id_text_input_manager.val)
27
27
  ? 'color: var(--warning-t);'
28
28
  : ''}"
29
29
  >
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sveltekit-ui",
3
- "version": "1.1.6",
3
+ "version": "1.1.8",
4
4
  "description": "A SvelteKit UI component library for building modern web applications",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -19,7 +19,7 @@
19
19
  "dependencies": {
20
20
  "context-filter-polyfill": "^0.3.23",
21
21
  "qr-code-styling": "^1.9.2",
22
- "svelte": "^5.43.8"
22
+ "svelte": "^5.43.11"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "@sveltejs/kit": "^2.22.2"
@@ -22,8 +22,8 @@
22
22
  {/if}
23
23
  <TextInput manager={manager?.column_id_text_input_manager} />
24
24
  <p
25
- style="font-size: 1.2rem; {column_id_text_input_manager?.val &&
26
- !/^[a-z0-9]+(?:_[a-z0-9]+)*$/.test(column_id_text_input_manager.val)
25
+ style="font-size: 1.2rem; {manager?.column_id_text_input_manager?.val &&
26
+ !/^[a-z0-9]+(?:_[a-z0-9]+)*$/.test(manager?.column_id_text_input_manager.val)
27
27
  ? 'color: var(--warning-t);'
28
28
  : ''}"
29
29
  >