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.
- package/dist/sprintify-ui.es.js +1 -0
- package/dist/types/src/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/dist/sprintify-ui.es.js
CHANGED
|
@@ -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
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 };
|