@kurone-kito/web-toybox-solid 0.1.0-alpha.1 → 0.1.0-alpha.11
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/README.md +27 -6
- package/dist/components/atoms/meta/LinkList.d.ts +12 -0
- package/dist/components/atoms/meta/LinkList.d.ts.map +1 -1
- package/dist/components/atoms/meta/MetaList.d.ts +12 -0
- package/dist/components/atoms/meta/MetaList.d.ts.map +1 -1
- package/dist/components/atoms/meta/Ogp.d.ts +15 -0
- package/dist/components/atoms/meta/Ogp.d.ts.map +1 -1
- package/dist/components/atoms/meta/Title.d.ts +4 -0
- package/dist/components/atoms/meta/Title.d.ts.map +1 -1
- package/dist/components/atoms/meta/XCard.d.ts +11 -1
- package/dist/components/atoms/meta/XCard.d.ts.map +1 -1
- package/dist/components/molecules/Head.d.ts +19 -0
- package/dist/components/molecules/Head.d.ts.map +1 -1
- package/dist/index.d.mts +5 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +39 -9
- package/dist/index.mjs.map +1 -1
- package/dist/modules/createTick.d.mts +16 -0
- package/dist/modules/createTick.d.mts.map +1 -0
- package/dist/types/AccessorObject.d.mts +24 -0
- package/dist/types/AccessorObject.d.mts.map +1 -0
- package/docs/README.md +39 -0
- package/docs/functions/createTick.md +24 -0
- package/docs/globals.md +34 -0
- package/docs/interfaces/CreateTickParams.md +37 -0
- package/docs/interfaces/HeadProps.md +275 -0
- package/docs/interfaces/LinkListProps.md +69 -0
- package/docs/interfaces/MetaListProps.md +59 -0
- package/docs/interfaces/OgpProps.md +93 -0
- package/docs/interfaces/TitleProps.md +29 -0
- package/docs/interfaces/XCardProps.md +49 -0
- package/docs/type-aliases/AccessorObject.md +38 -0
- package/docs/type-aliases/Robots.md +9 -0
- package/docs/variables/Head.md +40 -0
- package/docs/variables/LinkList.md +33 -0
- package/docs/variables/MetaList.md +31 -0
- package/docs/variables/MetaProvider.md +9 -0
- package/docs/variables/Ogp.md +36 -0
- package/docs/variables/Title.md +25 -0
- package/docs/variables/XCard.md +31 -0
- package/package.json +19 -18
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[**@kurone-kito/web-toybox-solid**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@kurone-kito/web-toybox-solid](../globals.md) / LinkList
|
|
6
|
+
|
|
7
|
+
# Variable: LinkList
|
|
8
|
+
|
|
9
|
+
> `const` **LinkList**: `Component`\<[`LinkListProps`](../interfaces/LinkListProps.md)\>
|
|
10
|
+
|
|
11
|
+
The link list component.
|
|
12
|
+
|
|
13
|
+
## Param
|
|
14
|
+
|
|
15
|
+
The component properties.
|
|
16
|
+
|
|
17
|
+
## Returns
|
|
18
|
+
|
|
19
|
+
The component.
|
|
20
|
+
|
|
21
|
+
## Example
|
|
22
|
+
|
|
23
|
+
```tsx
|
|
24
|
+
<LinkList
|
|
25
|
+
authorUrl="https://example.com/author"
|
|
26
|
+
faviconType="image/png"
|
|
27
|
+
faviconUrl="https://example.com/favicon.png"
|
|
28
|
+
licenseUrl="https://example.com/license"
|
|
29
|
+
next="https://example.com/next"
|
|
30
|
+
preloadImages={['https://example.com/image1.png', 'https://example.com/image2.png']}
|
|
31
|
+
prev="https://example.com/prev"
|
|
32
|
+
/>
|
|
33
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[**@kurone-kito/web-toybox-solid**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@kurone-kito/web-toybox-solid](../globals.md) / MetaList
|
|
6
|
+
|
|
7
|
+
# Variable: MetaList
|
|
8
|
+
|
|
9
|
+
> `const` **MetaList**: `Component`\<[`MetaListProps`](../interfaces/MetaListProps.md)\>
|
|
10
|
+
|
|
11
|
+
The meta list component.
|
|
12
|
+
|
|
13
|
+
## Param
|
|
14
|
+
|
|
15
|
+
The component properties.
|
|
16
|
+
|
|
17
|
+
## Returns
|
|
18
|
+
|
|
19
|
+
The component.
|
|
20
|
+
|
|
21
|
+
## Example
|
|
22
|
+
|
|
23
|
+
```tsx
|
|
24
|
+
<MetaList
|
|
25
|
+
author="John Doe"
|
|
26
|
+
colorDark="#000000"
|
|
27
|
+
colorLight="#FFFFFF"
|
|
28
|
+
description="This is a sample description."
|
|
29
|
+
keywords="sample, meta, tags"
|
|
30
|
+
/>
|
|
31
|
+
```
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
[**@kurone-kito/web-toybox-solid**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@kurone-kito/web-toybox-solid](../globals.md) / Ogp
|
|
6
|
+
|
|
7
|
+
# Variable: Ogp
|
|
8
|
+
|
|
9
|
+
> `const` **Ogp**: `Component`\<[`OgpProps`](../interfaces/OgpProps.md)\>
|
|
10
|
+
|
|
11
|
+
The OGP component.
|
|
12
|
+
|
|
13
|
+
## Param
|
|
14
|
+
|
|
15
|
+
The component properties.
|
|
16
|
+
|
|
17
|
+
## Returns
|
|
18
|
+
|
|
19
|
+
The component.
|
|
20
|
+
|
|
21
|
+
## Example
|
|
22
|
+
|
|
23
|
+
```tsx
|
|
24
|
+
<Ogp
|
|
25
|
+
description="This is a sample page."
|
|
26
|
+
images={['https://example.com/image1.png', 'https://example.com/image2.png']}
|
|
27
|
+
imageAlt="Sample Image"
|
|
28
|
+
imageHeight={630}
|
|
29
|
+
imageType="image/png"
|
|
30
|
+
imageWidth={1200}
|
|
31
|
+
language="en_US"
|
|
32
|
+
siteName="Example Site"
|
|
33
|
+
title="Sample Page"
|
|
34
|
+
url="https://example.com/sample-page"
|
|
35
|
+
/>
|
|
36
|
+
```
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[**@kurone-kito/web-toybox-solid**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@kurone-kito/web-toybox-solid](../globals.md) / Title
|
|
6
|
+
|
|
7
|
+
# Variable: Title
|
|
8
|
+
|
|
9
|
+
> `const` **Title**: `Component`\<[`TitleProps`](../interfaces/TitleProps.md)\>
|
|
10
|
+
|
|
11
|
+
The title component.
|
|
12
|
+
|
|
13
|
+
## Param
|
|
14
|
+
|
|
15
|
+
The component properties.
|
|
16
|
+
|
|
17
|
+
## Returns
|
|
18
|
+
|
|
19
|
+
The component.
|
|
20
|
+
|
|
21
|
+
## Example
|
|
22
|
+
|
|
23
|
+
```tsx
|
|
24
|
+
<Title siteName="Example Site" title="Sample Page" />
|
|
25
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[**@kurone-kito/web-toybox-solid**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@kurone-kito/web-toybox-solid](../globals.md) / XCard
|
|
6
|
+
|
|
7
|
+
# Variable: XCard
|
|
8
|
+
|
|
9
|
+
> `const` **XCard**: `Component`\<[`XCardProps`](../interfaces/XCardProps.md)\>
|
|
10
|
+
|
|
11
|
+
The 𝕏 card component.
|
|
12
|
+
|
|
13
|
+
## Param
|
|
14
|
+
|
|
15
|
+
The component properties.
|
|
16
|
+
|
|
17
|
+
## Returns
|
|
18
|
+
|
|
19
|
+
The component.
|
|
20
|
+
|
|
21
|
+
## Example
|
|
22
|
+
|
|
23
|
+
```tsx
|
|
24
|
+
<XCard
|
|
25
|
+
author="Jane Doe"
|
|
26
|
+
description="This is a sample description."
|
|
27
|
+
image="https://example.com/image.png"
|
|
28
|
+
siteName="Example Site"
|
|
29
|
+
title="Sample Page"
|
|
30
|
+
/>
|
|
31
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kurone-kito/web-toybox-solid",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.11",
|
|
4
4
|
"description": "Common functions and component library for Solid.js web applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"components",
|
|
@@ -21,29 +21,30 @@
|
|
|
21
21
|
"exports": "./dist/index.mjs",
|
|
22
22
|
"types": "./dist/index.d.mts",
|
|
23
23
|
"files": [
|
|
24
|
-
"dist"
|
|
24
|
+
"dist",
|
|
25
|
+
"docs"
|
|
25
26
|
],
|
|
26
27
|
"dependencies": {
|
|
27
|
-
"type-fest": "^
|
|
28
|
-
"@kurone-kito/web-toybox": "^0.1.0-alpha.
|
|
28
|
+
"type-fest": "^5.3.1",
|
|
29
|
+
"@kurone-kito/web-toybox": "^0.1.0-alpha.11"
|
|
29
30
|
},
|
|
30
31
|
"devDependencies": {
|
|
31
|
-
"@kurone-kito/typescript-config": "^0.
|
|
32
|
-
"@kurone-kito/vite-lib-config": "^0.
|
|
32
|
+
"@kurone-kito/typescript-config": "^0.22.0-alpha.4",
|
|
33
|
+
"@kurone-kito/vite-lib-config": "^0.22.0-alpha.4",
|
|
33
34
|
"@solidjs/meta": "^0.29.4",
|
|
34
35
|
"@solidjs/testing-library": "^0.8.10",
|
|
35
|
-
"@testing-library/jest-dom": "^6.
|
|
36
|
-
"@vitest/coverage-v8": "^
|
|
37
|
-
"cpy-cli": "^
|
|
38
|
-
"jsdom": "^
|
|
39
|
-
"rimraf": "^6.
|
|
40
|
-
"solid-js": "^1.9.
|
|
41
|
-
"typedoc": "^0.28.
|
|
42
|
-
"typedoc-plugin-markdown": "^4.
|
|
43
|
-
"typescript": "~5.
|
|
44
|
-
"vite": "^7.0
|
|
45
|
-
"vite-plugin-solid": "^2.11.
|
|
46
|
-
"vitest": "^
|
|
36
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
37
|
+
"@vitest/coverage-v8": "^4.0.16",
|
|
38
|
+
"cpy-cli": "^6.0.0",
|
|
39
|
+
"jsdom": "^27.3.0",
|
|
40
|
+
"rimraf": "^6.1.2",
|
|
41
|
+
"solid-js": "^1.9.10",
|
|
42
|
+
"typedoc": "^0.28.15",
|
|
43
|
+
"typedoc-plugin-markdown": "^4.9.0",
|
|
44
|
+
"typescript": "~5.9.3",
|
|
45
|
+
"vite": "^7.3.0",
|
|
46
|
+
"vite-plugin-solid": "^2.11.10",
|
|
47
|
+
"vitest": "^4.0.16"
|
|
47
48
|
},
|
|
48
49
|
"peerDependencies": {
|
|
49
50
|
"@solidjs/meta": ">=0.29.x",
|