File tree Expand file tree Collapse file tree 4 files changed +12
-8
lines changed
components/table/src/functions Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ onMounted(() => {
63
63
/>
64
64
<div class =" ml-4 text-lg font-semibold leading-7" >
65
65
<a
66
- href =" https://stacks.ow3 .org/components"
66
+ href =" https://stacksjs .org/components"
67
67
class =" text-gray-900 underline dark:text-white"
68
68
>
69
69
UI Engine
@@ -87,7 +87,7 @@ onMounted(() => {
87
87
/>
88
88
<div class =" ml-4 text-lg font-semibold leading-7" >
89
89
<a
90
- href =" https://stacks.ow3 .org/functions"
90
+ href =" https://stacksjs .org/functions"
91
91
class =" text-gray-900 underline dark:text-white"
92
92
>
93
93
FX Engine
@@ -110,7 +110,7 @@ onMounted(() => {
110
110
/>
111
111
<div class =" ml-4 text-lg text-gray-900 font-semibold leading-7 dark:text-white" >
112
112
<a
113
- href =" https://stacks.ow3 .org/pages"
113
+ href =" https://stacksjs .org/pages"
114
114
class =" text-gray-900 underline dark:text-white"
115
115
>
116
116
Stacks Engine
@@ -145,7 +145,7 @@ onMounted(() => {
145
145
/>
146
146
<div class =" ml-4 text-lg font-semibold leading-7" >
147
147
<a
148
- href =" https://stacks.ow3 .org/"
148
+ href =" https://stacksjs .org/"
149
149
class =" text-gray-900 underline dark:text-white"
150
150
>
151
151
Modern DX
Original file line number Diff line number Diff line change 2
2
3
3
You may use functions to share on npm or have them run on a server behind one of your ` ../routes ` .
4
4
5
- Learn more about Stacks functions, check out the [ documentation] ( https://stacks.ow3org .com ) .
5
+ Learn more about Stacks functions, check out the [ documentation] ( https://stacksjsorg .com ) .
6
6
7
7
> ** Note**
8
8
> If your project does not require any routes, you can remove this folder._
Original file line number Diff line number Diff line change @@ -728,8 +728,12 @@ export function langPath(path?: string): string {
728
728
* @param options.relative - If true, returns the path relative to the current working directory.
729
729
* @returns The absolute or relative path to the specified file or directory within the `layouts` directory.
730
730
*/
731
- export function layoutsPath ( path ?: string , options ?: { relative ?: boolean } ) : string {
732
- const absolutePath = resourcesPath ( `layouts/${ path || '' } ` )
731
+ export function layoutsPath ( path ?: string , options ?: { relative ?: boolean , defaults ?: boolean } ) : string {
732
+ let absolutePath
733
+ if ( options ?. defaults )
734
+ absolutePath = frameworkPath ( `defaults/layouts/${ path || '' } ` )
735
+ else
736
+ absolutePath = resourcesPath ( `layouts/${ path || '' } ` )
733
737
734
738
if ( options ?. relative )
735
739
return relative ( process . cwd ( ) , absolutePath )
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ export interface UiOptions {
149
149
* are displayed utilizing a technique called "icons in pure css."
150
150
* Learn more here https://antfu.me/posts/icons-in-pure-css.
151
151
*
152
- * @see https://stacks.ow3 .org/config/icons — list of available icon sets
152
+ * @see https://stacksjs .org/config/icons — list of available icon sets
153
153
* @todo implement this into Vite build flow
154
154
* @example
155
155
* ```ts
You can’t perform that action at this time.
0 commit comments