@saooti/octopus-sdk 41.9.2 → 41.9.3
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/CHANGELOG.md
CHANGED
package/index.ts
CHANGED
|
@@ -136,6 +136,7 @@ export { useOrgaComputed } from "./src/components/composable/useOrgaComputed.ts"
|
|
|
136
136
|
export { useSeoTitleUrl } from "./src/components/composable/route/useSeoTitleUrl.ts";
|
|
137
137
|
export { useSeasonsManagement } from "./src/components/composable/useSeasonsManagement.ts";
|
|
138
138
|
export { useTranslation } from "./src/components/composable/useTranslation.ts";
|
|
139
|
+
export { useDayjs } from "./src/components/composable/useDayjs.ts";
|
|
139
140
|
|
|
140
141
|
//helper
|
|
141
142
|
import domHelper from "./src/helper/domHelper.ts";
|
package/package.json
CHANGED
|
@@ -10,6 +10,9 @@ import "dayjs/locale/sl";
|
|
|
10
10
|
import duration from "dayjs/plugin/duration";
|
|
11
11
|
dayjs.extend(duration);
|
|
12
12
|
|
|
13
|
+
import localizedFormat from "dayjs/plugin/localizedFormat";
|
|
14
|
+
dayjs.extend(localizedFormat);
|
|
15
|
+
|
|
13
16
|
export const useDayjs = () => {
|
|
14
17
|
const { locale } = useI18n();
|
|
15
18
|
|