aq-fe-framework 0.1.313 → 0.1.315
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/{chunk-JIPPFPV6.mjs → chunk-BSQT2XIP.mjs} +1 -1
- package/dist/{chunk-TWAQUUQZ.mjs → chunk-FUHOV7NB.mjs} +35 -6
- package/dist/{chunk-QPPD4PQX.mjs → chunk-VECMRDKG.mjs} +1 -0
- package/dist/{chunk-QPNYGFTI.mjs → chunk-YJ32RSH2.mjs} +7 -2
- package/dist/components/index.mjs +4 -4
- package/dist/core/index.mjs +2 -2
- package/dist/hooks/index.d.mts +2 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/modules-features/index.d.mts +33 -81
- package/dist/modules-features/index.mjs +584 -897
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.mjs +1 -1
- package/package.json +1 -1
package/dist/utils/index.d.mts
CHANGED
@@ -51,7 +51,7 @@ declare function utils_reactQuery_updateListItemInQuery<T>({ queryClient, queryK
|
|
51
51
|
|
52
52
|
declare const utils_time_convertTimeStringToSeconds: (time: string) => number;
|
53
53
|
declare const utils_time_getCurrentTimeString: () => string;
|
54
|
-
declare function utils_time_extractHourMinute(isoString
|
54
|
+
declare function utils_time_extractHourMinute(isoString?: string): string;
|
55
55
|
|
56
56
|
declare function U0MyValidateEmpty(message?: string): (value: unknown) => React.ReactNode;
|
57
57
|
declare function U0MyValidateEmail(value?: string): "Email không đúng định dạng" | null;
|
package/dist/utils/index.mjs
CHANGED