Skip to content

Commit d98b0c8

Browse files
author
Kamell Perry
committed
[core]: updated urls
1 parent ae22f50 commit d98b0c8

File tree

47 files changed

+61
-61
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+61
-61
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<p align="center">
1818
SvelteUI is an all inclusive Svelte library - Components, Actions, Utilities, Animations <br /> What more could you ask for ¯\_(ツ)_
1919
<br />
20-
<a href="https://svelteui-docs.vercel.app/"><strong>Explore the docs »</strong></a>
20+
<a href="https://svelteuidev.github.io/svelteui/"><strong>Explore the docs »</strong></a>
2121
<br />
2222
<a href="https://github.com/svelteuidev/svelteui/issues">Report Bug</a>
2323
·
@@ -31,7 +31,7 @@
3131

3232
## **About The Project**
3333

34-
[Read the Changelog](https://svelteui-docs.vercel.app/docs/changelog)
34+
[Read the Changelog](https://svelteuidev.github.io/svelteui/docs/changelog)
3535

3636
### Features
3737

@@ -44,18 +44,18 @@
4444

4545
### Undocumented Components & Functions
4646

47-
The [docs](https://svelteui-docs.vercel.app/) are still under construction. Some of the library's exported components & functions are still undocumented. [Here](https://github.com/svelteuidev/svelteui/issues/15) is where you can keep track of the progress.
47+
The [docs](https://svelteuidev.github.io/svelteui/) are still under construction. Some of the library's exported components & functions are still undocumented. [Here](https://github.com/svelteuidev/svelteui/issues/15) is where you can keep track of the progress.
4848

4949
> Please keep in mind that any undocumented component could potentially receive breaking API changes or be heavily updated before being finalized.
5050
5151
<br />
5252

5353
## Packages
5454

55-
- [`@svelteui/core`](https://svelteui-docs.vercel.app/docs/core/button) – core components library with 8+ components
56-
- [`@svelteui/actions`](https://svelteui-docs.vercel.app/docs/actions/use-click-outside) – library of useful actions
57-
- [`@svelteui/motion`](https://svelteui-docs.vercel.app/docs/motion/typewriter) – library of transitions to utilize on dom elements
58-
- [`@svelteui/utilities`](https://svelteui-docs.vercel.app/docs/utilities/os) – library of helpful utility functions
55+
- [`@svelteui/core`](https://svelteuidev.github.io/svelteui/docs/core/button) – core components library with 8+ components
56+
- [`@svelteui/actions`](https://svelteuidev.github.io/svelteui/docs/actions/use-click-outside) – library of useful actions
57+
- [`@svelteui/motion`](https://svelteuidev.github.io/svelteui/docs/motion/typewriter) – library of transitions to utilize on dom elements
58+
- [`@svelteui/utilities`](https://svelteuidev.github.io/svelteui/docs/utilities/os) – library of helpful utility functions
5959
- `@svelteui/prism` – code highlight component built with prism (coming in 0.6.0 release)
6060

6161
<br />
@@ -74,7 +74,7 @@ I want to build a friendly community that is happy to help those who need it. He
7474
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
7575

7676
- If you have a suggestion that would make this project better, submit an issue
77-
- If you would like to directly contribute, read the [contribution guide](https://svelteui-docs.vercel.app/docs/contribute) then submit a PR
77+
- If you would like to directly contribute, read the [contribution guide](https://svelteuidev.github.io/svelteui/docs/contribute) then submit a PR
7878

7979
<br />
8080

packages/svelteui-actions/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
## Documentation
99

10-
[See full documentation on svelteui website](https://svelteui-docs.vercel.app/)
10+
[See full documentation on svelteui website](https://svelteuidev.github.io/svelteui/)
1111

1212
## Installation
1313

@@ -21,10 +21,10 @@ npm i @svelteuidev/actions
2121

2222
## Included Actions
2323

24-
- [use-click-outside](https://svelteui-docs.vercel.app/docs/actions/use-click-outside) – Triggers a callback when a user clicks outside of a given element.
25-
- [use-clipboard](https://svelteui-docs.vercel.app/docs/actions/use-clipboard) - Copies text to the clipboard when dom element is clicked
26-
- [use-css-variable](https://svelteui-docs.vercel.app/docs/actions/use-css-variable) - Update css properties on the fly whenever some of their values change.
27-
- [use-focus](https://svelteui-docs.vercel.app/docs/actions/use-focus) - Calls focus on a node once mounted into the dom
24+
- [use-click-outside](https://svelteuidev.github.io/svelteui/docs/actions/use-click-outside) – Triggers a callback when a user clicks outside of a given element.
25+
- [use-clipboard](https://svelteuidev.github.io/svelteui/docs/actions/use-clipboard) - Copies text to the clipboard when dom element is clicked
26+
- [use-css-variable](https://svelteuidev.github.io/svelteui/docs/actions/use-css-variable) - Update css properties on the fly whenever some of their values change.
27+
- [use-focus](https://svelteuidev.github.io/svelteui/docs/actions/use-focus) - Calls focus on a node once mounted into the dom
2828

2929
## License
3030

packages/svelteui-actions/src/lib/dist/use-click-outside/use-click-outside.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import type { Action } from '../types/ActionTypes';
2626
* </div>
2727
* ```
2828
* @param params - Object that contains two properties {enabled: boolean, callback: (any) => unknown}
29-
* @see https://svelteui-docs.vercel.app/docs/actions/use-click-outside
29+
* @see https://svelteuidev.github.io/svelteui/docs/actions/use-click-outside
3030
*/
3131
export function clickoutside(
3232
node: HTMLElement,

packages/svelteui-actions/src/lib/dist/use-clipboard/use-clipboard.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type { Action } from '../types/ActionTypes';
77
* <button use:clipboard={'This text will be copied'}>Copy Me</button>
88
* ```
99
* @param text - The text that you want to be copied when the DOM element is clicked
10-
* @see https://svelteui-docs.vercel.app/docs/actions/use-clipboard
10+
* @see https://svelteuidev.github.io/svelteui/docs/actions/use-clipboard
1111
*/
1212
export function clipboard(node: HTMLElement, text: string): ReturnType<Action> {
1313
const click = async () => {

packages/svelteui-actions/src/lib/dist/use-css-variable/use-css-variable.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import type { Action, UnknownKeyString } from '../types/ActionTypes';
2828
* </style>
2929
* ```
3030
* @param props - A reactive object with properties that should be treated as css custom properties.
31-
* @see https://svelteui-docs.vercel.app/docs/actions/use-css-variable
31+
* @see https://svelteuidev.github.io/svelteui/docs/actions/use-css-variable
3232
*/
3333
export function cssvariable(
3434
node: HTMLElement,

packages/svelteui-actions/src/lib/dist/use-download/use-download.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { Action } from '../types/ActionTypes';
88
* <button use:download={{ blob: new Blob([]), filename: "text.txt" }} on:usedownload={() => { console.log('download');}}>Download</button>
99
* ```
1010
* @param params - Object that contains two properties {blob: Blob, filename: string}
11-
* @see https://svelteui-docs.vercel.app/docs/actions/use-download
11+
* @see https://svelteuidev.github.io/svelteui/docs/actions/use-download
1212
*/
1313
export function download(
1414
node: HTMLElement,

packages/svelteui-actions/src/lib/dist/use-focus/use-focus.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { Action, FocusableElement } from '../types/ActionTypes';
66
* ```tsx
77
* <button use:clipboard={'This text will be copied'}>Copy Me</button>
88
* ```
9-
* @see https://svelteui-docs.vercel.app/docs/actions/use-focus
9+
* @see https://svelteuidev.github.io/svelteui/docs/actions/use-focus
1010
*/
1111
export function focus(node: FocusableElement): ReturnType<Action> {
1212
node.focus();

packages/svelteui-actions/src/lib/dist/use-lazy/use-lazy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function observer() {
2727
* <img use:lazy={{src:"/my-image"}} alt="My Image">
2828
* ```
2929
* @param attributes - an object whose properties are the attributes to be applied, and the values are the attr values
30-
* @see https://svelteui-docs.vercel.app/docs/actions/use-lazy
30+
* @see https://svelteuidev.github.io/svelteui/docs/actions/use-lazy
3131
*/
3232
export function lazy(node: HTMLElement, attributes: Record<string, number | string>): ReturnType<Action> {
3333
nodeAttributesMap.set(node, attributes);

packages/svelteui-actions/src/lib/dist/use-long-press/use-long-press.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import type { Action } from '../types';
99
* </button>
1010
* ```
1111
* @param duration - The duration until the longpress event is dispatched
12-
* @see https://svelteui-docs.vercel.app/docs/actions/use-longpress
12+
* @see https://svelteuidev.github.io/svelteui/docs/actions/use-longpress
1313
*/
1414
export function longpress(node: HTMLElement, duration: number): ReturnType<Action> {
1515
let timer: number;

packages/svelteui-actions/src/lib/dist/use-persistent-tab/use-persistent-tab.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type { Action } from '../types';
77
* <button use:persistenttab={true}>Keep tab open</button>
88
* ```
99
* @param enabled - Determines whether the action should execute or not.
10-
* @see https://svelteui-docs.vercel.app/docs/actions/use-persistenttab
10+
* @see https://svelteuidev.github.io/svelteui/docs/actions/use-persistenttab
1111
*/
1212
export function persistenttab(node: HTMLElement, enabled: boolean): ReturnType<Action> {
1313
function handler(e: BeforeUnloadEvent) {

packages/svelteui-actions/src/lib/dist/use-portal/use-portal.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ type Target = HTMLElement | string;
88
* Usage: <div use:portal={'css selector'}> or <div use:portal={document.body}>
99
*
1010
* @param target- DOM element or CSS selector to be appended to
11-
* @see https://svelteui-docs.vercel.app/docs/actions/use-portal
11+
* @see https://svelteuidev.github.io/svelteui/docs/actions/use-portal
1212
*/
1313
export function portal(node: HTMLElement, target: Target = 'body'): ReturnType<Action> {
1414
let targetNode;

packages/svelteui-core/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## Documentation
1010

11-
[See full documentation on svelteui website](https://svelteui-docs.vercel.app/)
11+
[See full documentation on svelteui website](https://svelteuidev.github.io/svelteui/)
1212

1313
## Installation
1414

packages/svelteui-core/src/lib/components/ActionIcon/ActionIcon.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
111111
Icon button to indicate secondary action.
112112
113-
@see https://svelteui-docs.vercel.app/docs/core/action-icon
113+
@see https://svelteuidev.github.io/svelteui/docs/core/action-icon
114114
@example
115115
```tsx
116116
<ActionIcon>Click</ActionIcon> // standard ActionIcon

packages/svelteui-core/src/lib/components/ActionIcon/CloseButton/CloseButton.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
5050
CloseButton is a premade ActionIcon with close icon
5151
52-
@see https://svelteui-docs.vercel.app/docs/core/action-icon
52+
@see https://svelteuidev.github.io/svelteui/docs/core/action-icon
5353
@example
5454
```tsx
5555
<CloseButton /> // standard CloseButton

packages/svelteui-core/src/lib/components/Badge/Badge.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
6262
Display badge, pill or tag
6363
64-
@see https://svelteui-docs.vercel.app/docs/core/badge
64+
@see https://svelteuidev.github.io/svelteui/docs/core/badge
6565
@example
6666
```svelte
6767
<Badge>Badge</Badge>

packages/svelteui-core/src/lib/components/Box/Box.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
3636
Add inline styles to any element or component with sx.
3737
38-
@see https://svelteui-docs.vercel.app/docs/core/box
38+
@see https://svelteuidev.github.io/svelteui/docs/core/box
3939
@example
4040
```svelte
4141
<Box css={{backgroundColor: '$blue600'}}>example</Box>

packages/svelteui-core/src/lib/components/Button/Button.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
@component
134134
A user can perform an immediate action by pressing a button. It's frequently used to start an action, but it can also be used to link to other pages.
135135
136-
@see https://svelteui-docs.vercel.app/docs/core/button
136+
@see https://svelteuidev.github.io/svelteui/docs/core/button
137137
@example
138138
```tsx
139139
<Button>Click</Button> // standard button

packages/svelteui-core/src/lib/components/Center/Center.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
Centers content vertically and horizontally.
2424
25-
@see https://svelteui-docs.vercel.app/docs/core/center
25+
@see https://svelteuidev.github.io/svelteui/docs/core/center
2626
@example
2727
```svelte
2828
<Center override={{ width: 400, height: 200, bg: '$blue100' }}>

packages/svelteui-core/src/lib/components/Checkbox/Checkbox.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@
159159
160160
A checkbox input component using the theme styles with support for a label and indeterminate state.
161161
162-
@see https://svelteui-docs.vercel.app/docs/core/checkbox
162+
@see https://svelteuidev.github.io/svelteui/docs/core/checkbox
163163
@example
164164
```svelte
165165
<Checkbox />

packages/svelteui-core/src/lib/components/Checkbox/CheckboxGroup/CheckboxGroup.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
A checkbox group component using the theme styles and builds a set of checkboxes according to
4444
the items passed.
4545
46-
@see https://svelteui-docs.vercel.app/docs/core/checkbox
46+
@see https://svelteuidev.github.io/svelteui/docs/core/checkbox
4747
@example
4848
```svelte
4949
<CheckboxGroup bind:value items={items} />

packages/svelteui-core/src/lib/components/Code/Code.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
@component
105105
Inline or block code without syntax highlighting
106106
107-
@see https://svelteui-docs.vercel.app/docs/core/code
107+
@see https://svelteuidev.github.io/svelteui/docs/core/code
108108
@example
109109
```tsx
110110
<Code color='green' size='lg' variant='bars' /> // standard code component

packages/svelteui-core/src/lib/components/Container/Container.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
3838
Center content horizontally with predefined max-width
3939
40-
@see https://svelteui-docs.vercel.app/docs/core/container
40+
@see https://svelteuidev.github.io/svelteui/docs/core/container
4141
@example
4242
```svelte
4343
<Container>

packages/svelteui-core/src/lib/components/Fragment/Fragment.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
@component
2121
Fragments let you group a list of children without adding extra nodes to the DOM.
2222
23-
@see https://svelteui-docs.vercel.app/docs/core/fragment
23+
@see https://svelteuidev.github.io/svelteui/docs/core/fragment
2424
@example
2525
```svelte
2626
<Fragment>

packages/svelteui-core/src/lib/components/Group/Group.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
7474
Compose elements and components in a vertical flex container.
7575
76-
@see https://svelteui-docs.vercel.app/docs/core/group
76+
@see https://svelteuidev.github.io/svelteui/docs/core/group
7777
@example
7878
```svelte
7979
<Group children={3} grow>

packages/svelteui-core/src/lib/components/Image/BackgroundImage/BackgroundImage.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
3535
BackgroundImage component can be used to add any content on image. It is useful for hero headers and other similar sections
3636
37-
@see https://svelteui-docs.vercel.app/docs/core/image
37+
@see https://svelteuidev.github.io/svelteui/docs/core/image
3838
@example
3939
```svelte
4040
<script>

packages/svelteui-core/src/lib/components/Image/Image.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
9595
Dynamic Image component with optional placeholder for loading and error state
9696
97-
@see https://svelteui-docs.vercel.app/docs/core/image
97+
@see https://svelteuidev.github.io/svelteui/docs/core/image
9898
@example
9999
```tsx
100100
<Image src="https://images.unsplash.com/photo-1561046259-7d5b6e929ba0"/> // standard image

packages/svelteui-core/src/lib/components/Input/Input.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@
279279
280280
Base component to create custom inputs
281281
282-
@see https://svelteui-docs.vercel.app/docs/core/input
282+
@see https://svelteuidev.github.io/svelteui/docs/core/input
283283
@example
284284
```svelte
285285
<Input

packages/svelteui-core/src/lib/components/Loader/Loader.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
@component
2727
The Loader component creates a loading icon. There are three different Loaders with the circle as the default.
2828
29-
@see https://svelteui-docs.vercel.app/docs/core/loader
29+
@see https://svelteuidev.github.io/svelteui/docs/core/loader
3030
@example
3131
```tsx
3232
<Loader color='green' size='lg' variant='bars' />

packages/svelteui-core/src/lib/components/NativeSelect/NativeSelect.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
9191
Capture user feedback limited to large set of options
9292
93-
@see https://svelteui-docs.vercel.app/docs/core/native-select
93+
@see https://svelteuidev.github.io/svelteui/docs/core/native-select
9494
@example
9595
```svelte
9696
<NativeSelect

packages/svelteui-core/src/lib/components/Overlay/Overlay.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
4141
Overlays given element with div element with any color and opacity
4242
43-
@see https://svelteui-docs.vercel.app/docs/core/overlay
43+
@see https://svelteuidev.github.io/svelteui/docs/core/overlay
4444
@example
4545
```svelte
4646
<Box sx={{ height: 100, position: 'relative' }}>

packages/svelteui-core/src/lib/components/SimpleGrid/SimpleGrid.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
5151
Responsive grid where each item takes equal amount of space
5252
53-
@see https://svelteui-docs.vercel.app/docs/core/input
53+
@see https://svelteuidev.github.io/svelteui/docs/core/input
5454
@example
5555
```svelte
5656
<SimpleGrid cols={3}>

packages/svelteui-core/src/lib/components/Space/Space.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
2828
Add horizontal or vertical spacing from theme.
2929
30-
@see https://svelteui-docs.vercel.app/docs/core/space
30+
@see https://svelteuidev.github.io/svelteui/docs/core/space
3131
@example
3232
```svelte
3333
<Group children={3} grow>

packages/svelteui-core/src/lib/components/Stack/Stack.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
4040
Compose elements and components in a vertical flex container.
4141
42-
@see https://svelteui-docs.vercel.app/docs/core/stack
42+
@see https://svelteuidev.github.io/svelteui/docs/core/stack
4343
@example
4444
```svelte
4545
<Stack align="flex-end" justify="space-between" override={{ height: 300 }}>

packages/svelteui-core/src/lib/components/Switch/Switch.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
131131
A user can use this component to enable/disable something, normally used for boolean values or for binary actions.
132132
133-
@see https://svelteui-docs.vercel.app/docs/core/switch
133+
@see https://svelteuidev.github.io/svelteui/docs/core/switch
134134
@example
135135
```tsx
136136
<Switch/> // standard switch

packages/svelteui-core/src/lib/components/Text/Text.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
110110
Display text and links with theme styles.
111111
112-
@see https://svelteui-docs.vercel.app/docs/core/text
112+
@see https://svelteuidev.github.io/svelteui/docs/core/text
113113
@example
114114
```tsx
115115
<Text size='lg'>This is a text</Text> // standard text component

packages/svelteui-core/src/lib/components/ThemeIcon/ThemeIcon.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
4545
Render icon inside element with theme colors
4646
47-
@see https://svelteui-docs.vercel.app/docs/core/theme-icon
47+
@see https://svelteuidev.github.io/svelteui/docs/core/theme-icon
4848
@example
4949
```svelte
5050
<ThemeIcon>

packages/svelteui-core/src/lib/components/Title/Title.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
4848
Display text that uses title styling and title HTML tags.
4949
50-
@see https://svelteui-docs.vercel.app/docs/core/title
50+
@see https://svelteuidev.github.io/svelteui/docs/core/title
5151
@example
5252
```tsx
5353
<Title>This is a title</Title> // standard title component

packages/svelteui-dates/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Documentation
88

9-
[See full documentation on svelteui website](https://svelteui-docs.vercel.app/)
9+
[See full documentation on svelteui website](https://svelteuidev.github.io/svelteui/)
1010

1111
## Installation
1212

0 commit comments

Comments
 (0)