@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.
Files changed (41) hide show
  1. package/README.md +27 -6
  2. package/dist/components/atoms/meta/LinkList.d.ts +12 -0
  3. package/dist/components/atoms/meta/LinkList.d.ts.map +1 -1
  4. package/dist/components/atoms/meta/MetaList.d.ts +12 -0
  5. package/dist/components/atoms/meta/MetaList.d.ts.map +1 -1
  6. package/dist/components/atoms/meta/Ogp.d.ts +15 -0
  7. package/dist/components/atoms/meta/Ogp.d.ts.map +1 -1
  8. package/dist/components/atoms/meta/Title.d.ts +4 -0
  9. package/dist/components/atoms/meta/Title.d.ts.map +1 -1
  10. package/dist/components/atoms/meta/XCard.d.ts +11 -1
  11. package/dist/components/atoms/meta/XCard.d.ts.map +1 -1
  12. package/dist/components/molecules/Head.d.ts +19 -0
  13. package/dist/components/molecules/Head.d.ts.map +1 -1
  14. package/dist/index.d.mts +5 -1
  15. package/dist/index.d.mts.map +1 -1
  16. package/dist/index.mjs +39 -9
  17. package/dist/index.mjs.map +1 -1
  18. package/dist/modules/createTick.d.mts +16 -0
  19. package/dist/modules/createTick.d.mts.map +1 -0
  20. package/dist/types/AccessorObject.d.mts +24 -0
  21. package/dist/types/AccessorObject.d.mts.map +1 -0
  22. package/docs/README.md +39 -0
  23. package/docs/functions/createTick.md +24 -0
  24. package/docs/globals.md +34 -0
  25. package/docs/interfaces/CreateTickParams.md +37 -0
  26. package/docs/interfaces/HeadProps.md +275 -0
  27. package/docs/interfaces/LinkListProps.md +69 -0
  28. package/docs/interfaces/MetaListProps.md +59 -0
  29. package/docs/interfaces/OgpProps.md +93 -0
  30. package/docs/interfaces/TitleProps.md +29 -0
  31. package/docs/interfaces/XCardProps.md +49 -0
  32. package/docs/type-aliases/AccessorObject.md +38 -0
  33. package/docs/type-aliases/Robots.md +9 -0
  34. package/docs/variables/Head.md +40 -0
  35. package/docs/variables/LinkList.md +33 -0
  36. package/docs/variables/MetaList.md +31 -0
  37. package/docs/variables/MetaProvider.md +9 -0
  38. package/docs/variables/Ogp.md +36 -0
  39. package/docs/variables/Title.md +25 -0
  40. package/docs/variables/XCard.md +31 -0
  41. 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,9 @@
1
+ [**@kurone-kito/web-toybox-solid**](../README.md)
2
+
3
+ ***
4
+
5
+ [@kurone-kito/web-toybox-solid](../globals.md) / MetaProvider
6
+
7
+ # Variable: MetaProvider
8
+
9
+ > `const` **MetaProvider**: `ParentComponent`
@@ -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.1",
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": "^4.41.0",
28
- "@kurone-kito/web-toybox": "^0.1.0-alpha.1"
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.20.0",
32
- "@kurone-kito/vite-lib-config": "^0.20.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.6.3",
36
- "@vitest/coverage-v8": "^3.2.4",
37
- "cpy-cli": "^5.0.0",
38
- "jsdom": "^26.1.0",
39
- "rimraf": "^6.0.1",
40
- "solid-js": "^1.9.7",
41
- "typedoc": "^0.28.7",
42
- "typedoc-plugin-markdown": "^4.7.0",
43
- "typescript": "~5.8.3",
44
- "vite": "^7.0.5",
45
- "vite-plugin-solid": "^2.11.7",
46
- "vitest": "^3.2.4"
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",