Skip to content

Commit adb51cb

Browse files
committed
chore: wip
chore: wip
1 parent 94b090b commit adb51cb

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

storage/framework/browser-auto-imports.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,10 @@
442442
"withIndices": true,
443443
"word": true,
444444
"wordBoundary": true,
445-
"wordChar": true
445+
"wordChar": true,
446+
"dateFormat": true,
447+
"format": true,
448+
"now": true,
449+
"parse": true
446450
}
447451
}

storage/framework/core/vite-config/src/dashboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const dashboardConfig: ViteConfig = {
3939
VueRouter({
4040
extensions: ['.stx', '.vue', '.md'],
4141
dts: p.frameworkPath('types/dashboard-router.d.ts'),
42-
routesFolder: [p.resourcesPath('views/dashboard')],
42+
routesFolder: [p.resourcesPath('views/dashboard'), p.frameworkPath('defaults/views/dashboard')],
4343
logs: config.app.debug || false,
4444
}),
4545

storage/framework/types/browser-auto-imports.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ declare global {
6464
const customRandom: typeof import('../core/browser/src/utils/random')['customRandom']
6565
const customRef: typeof import('vue')['customRef']
6666
const customStorageEventName: typeof import('../core/browser/src/utils/vendors')['customStorageEventName']
67+
const dateFormat: typeof import('../core/datetime/dist/index.js')['dateFormat']
6768
const debounce: typeof import('../core/browser/src/utils/debounce')['debounce']
6869
const debouncedRef: typeof import('../core/browser/src/utils/vendors')['debouncedRef']
6970
const debouncedWatch: typeof import('../core/browser/src/utils/vendors')['debouncedWatch']
@@ -82,6 +83,7 @@ declare global {
8283
const exactly: typeof import('../core/browser/src/utils/regex')['exactly']
8384
const executeTransition: typeof import('../core/browser/src/utils/vendors')['executeTransition']
8485
const extendRef: typeof import('../core/browser/src/utils/vendors')['extendRef']
86+
const format: typeof import('../core/datetime/dist/index.js')['format']
8587
const formatTimeAgo: typeof import('../core/browser/src/utils/vendors')['formatTimeAgo']
8688
const getActiveHead: typeof import('@unhead/vue')['getActiveHead']
8789
const getActivePinia: typeof import('pinia')['getActivePinia']
@@ -125,6 +127,7 @@ declare global {
125127
const not: typeof import('../core/browser/src/utils/regex')['not']
126128
const notNullish: typeof import('../core/browser/src/utils/guards')['notNullish']
127129
const notUndefined: typeof import('../core/browser/src/utils/guards')['notUndefined']
130+
const now: typeof import('../core/datetime/dist/index.js')['now']
128131
const onActivated: typeof import('vue')['onActivated']
129132
const onBeforeMount: typeof import('vue')['onBeforeMount']
130133
const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
@@ -150,6 +153,7 @@ declare global {
150153
const onWatcherCleanup: typeof import('vue')['onWatcherCleanup']
151154
const oneOrMore: typeof import('../core/browser/src/utils/regex')['oneOrMore']
152155
const or: typeof import('../core/browser/src/utils/math')['or']
156+
const parse: typeof import('../core/datetime/dist/index.js')['parse']
153157
const pausableWatch: typeof import('../core/browser/src/utils/vendors')['pausableWatch']
154158
const preferredDark: typeof import('../../../resources/functions/dark')['preferredDark']
155159
const provide: typeof import('vue')['provide']
@@ -508,6 +512,7 @@ declare module 'vue' {
508512
readonly customRandom: UnwrapRef<typeof import('../core/browser/src/utils/random')['customRandom']>
509513
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
510514
readonly customStorageEventName: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['customStorageEventName']>
515+
readonly dateFormat: UnwrapRef<typeof import('../core/datetime/dist/index.js')['dateFormat']>
511516
readonly debounce: UnwrapRef<typeof import('../core/browser/src/utils/debounce')['debounce']>
512517
readonly debouncedRef: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['debouncedRef']>
513518
readonly debouncedWatch: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['debouncedWatch']>
@@ -526,6 +531,7 @@ declare module 'vue' {
526531
readonly exactly: UnwrapRef<typeof import('../core/browser/src/utils/regex')['exactly']>
527532
readonly executeTransition: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['executeTransition']>
528533
readonly extendRef: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['extendRef']>
534+
readonly format: UnwrapRef<typeof import('../core/datetime/dist/index.js')['format']>
529535
readonly formatTimeAgo: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['formatTimeAgo']>
530536
readonly getActiveHead: UnwrapRef<typeof import('@unhead/vue')['getActiveHead']>
531537
readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
@@ -569,6 +575,7 @@ declare module 'vue' {
569575
readonly not: UnwrapRef<typeof import('../core/browser/src/utils/regex')['not']>
570576
readonly notNullish: UnwrapRef<typeof import('../core/browser/src/utils/guards')['notNullish']>
571577
readonly notUndefined: UnwrapRef<typeof import('../core/browser/src/utils/guards')['notUndefined']>
578+
readonly now: UnwrapRef<typeof import('../core/datetime/dist/index.js')['now']>
572579
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
573580
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
574581
readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
@@ -594,6 +601,7 @@ declare module 'vue' {
594601
readonly onWatcherCleanup: UnwrapRef<typeof import('vue')['onWatcherCleanup']>
595602
readonly oneOrMore: UnwrapRef<typeof import('../core/browser/src/utils/regex')['oneOrMore']>
596603
readonly or: UnwrapRef<typeof import('../core/browser/src/utils/math')['or']>
604+
readonly parse: UnwrapRef<typeof import('../core/datetime/dist/index.js')['parse']>
597605
readonly pausableWatch: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['pausableWatch']>
598606
readonly preferredDark: UnwrapRef<typeof import('../../../resources/functions/dark')['preferredDark']>
599607
readonly provide: UnwrapRef<typeof import('vue')['provide']>

storage/framework/types/dashboard-router.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ declare module 'vue-router/auto-routes' {
4343
'/packages/': RouteRecordInfo<'/packages/', '/packages', Record<never, never>, Record<never, never>>,
4444
'/releases/': RouteRecordInfo<'/releases/', '/releases', Record<never, never>, Record<never, never>>,
4545
'/requests/': RouteRecordInfo<'/requests/', '/requests', Record<never, never>, Record<never, never>>,
46-
'/settings/[name]': RouteRecordInfo<'/settings/[name]', '/settings/:name', { name: ParamValue<true> }, { name: ParamValue<false> }>,
4746
'/settings/billing': RouteRecordInfo<'/settings/billing', '/settings/billing', Record<never, never>, Record<never, never>>,
4847
'/settings/mail': RouteRecordInfo<'/settings/mail', '/settings/mail', Record<never, never>, Record<never, never>>,
4948
'/teams/[id]': RouteRecordInfo<'/teams/[id]', '/teams/:id', { id: ParamValue<true> }, { id: ParamValue<false> }>,

0 commit comments

Comments
 (0)