sprintify-ui 0.0.134 → 0.0.135

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.
@@ -23379,6 +23379,7 @@ export {
23379
23379
  Bd as toHumanList,
23380
23380
  Xr as useClickOutside,
23381
23381
  Li as useDialogsStore,
23382
+ vt as useField,
23382
23383
  Ln as useNotificationsStore,
23383
23384
  ss as useSystemAlertStore
23384
23385
  };
@@ -5,6 +5,7 @@ import { useDialogsStore } from './stores/dialogs';
5
5
  import { useNotificationsStore } from './stores/notifications';
6
6
  import { useSystemAlertStore } from './stores/systemAlerts';
7
7
  import { useClickOutside } from './composables/clickOutside';
8
+ import { useField } from './composables/field';
8
9
  declare const messages: {
9
10
  en: {
10
11
  sui: {
@@ -300,3 +301,4 @@ export { useDialogsStore };
300
301
  export { useNotificationsStore };
301
302
  export { useSystemAlertStore };
302
303
  export { useClickOutside };
304
+ export { useField };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.0.134",
3
+ "version": "0.0.135",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
package/src/index.ts CHANGED
@@ -9,6 +9,7 @@ import { useDialogsStore } from './stores/dialogs';
9
9
  import { useNotificationsStore } from './stores/notifications';
10
10
  import { useSystemAlertStore } from './stores/systemAlerts';
11
11
  import { useClickOutside } from './composables/clickOutside';
12
+ import { useField } from './composables/field';
12
13
 
13
14
  const messages = { en, fr };
14
15
 
@@ -93,3 +94,4 @@ export { useDialogsStore };
93
94
  export { useNotificationsStore };
94
95
  export { useSystemAlertStore };
95
96
  export { useClickOutside };
97
+ export { useField };