Skip to content

Commit 2b17011

Browse files
committed
chore: wip
1 parent aa13d8c commit 2b17011

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

resources/components/HelloWorld.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ onMounted(() => {
6363
/>
6464
<div class="ml-4 text-lg font-semibold leading-7">
6565
<a
66-
href="https://stacks.ow3.org/components"
66+
href="https://stacksjs.org/components"
6767
class="text-gray-900 underline dark:text-white"
6868
>
6969
UI Engine
@@ -87,7 +87,7 @@ onMounted(() => {
8787
/>
8888
<div class="ml-4 text-lg font-semibold leading-7">
8989
<a
90-
href="https://stacks.ow3.org/functions"
90+
href="https://stacksjs.org/functions"
9191
class="text-gray-900 underline dark:text-white"
9292
>
9393
FX Engine
@@ -110,7 +110,7 @@ onMounted(() => {
110110
/>
111111
<div class="ml-4 text-lg text-gray-900 font-semibold leading-7 dark:text-white">
112112
<a
113-
href="https://stacks.ow3.org/pages"
113+
href="https://stacksjs.org/pages"
114114
class="text-gray-900 underline dark:text-white"
115115
>
116116
Stacks Engine
@@ -145,7 +145,7 @@ onMounted(() => {
145145
/>
146146
<div class="ml-4 text-lg font-semibold leading-7">
147147
<a
148-
href="https://stacks.ow3.org/"
148+
href="https://stacksjs.org/"
149149
class="text-gray-900 underline dark:text-white"
150150
>
151151
Modern DX

storage/framework/core/components/table/src/functions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
You may use functions to share on npm or have them run on a server behind one of your `../routes`.
44

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).
66

77
> **Note**
88
> If your project does not require any routes, you can remove this folder._

storage/framework/core/path/src/index.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -728,8 +728,12 @@ export function langPath(path?: string): string {
728728
* @param options.relative - If true, returns the path relative to the current working directory.
729729
* @returns The absolute or relative path to the specified file or directory within the `layouts` directory.
730730
*/
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 || ''}`)
733737

734738
if (options?.relative)
735739
return relative(process.cwd(), absolutePath)

storage/framework/core/types/src/ui.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export interface UiOptions {
149149
* are displayed utilizing a technique called "icons in pure css."
150150
* Learn more here https://antfu.me/posts/icons-in-pure-css.
151151
*
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
153153
* @todo implement this into Vite build flow
154154
* @example
155155
* ```ts

0 commit comments

Comments
 (0)