File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ " @solid-primitives/graphql " : patch
3+ " @solid-primitives/share " : patch
4+ ---
5+
6+ @solid-primitives/graphql : Fix a build issue occurring during the bundling process.
7+ @solid-primitives/share : Fix a typo for Facebook Messenger
Original file line number Diff line number Diff line change 1- import * as gql_doc from "@graphql-typed-document-node/core" ;
1+ import type * as gql_doc from "@graphql-typed-document-node/core" ;
22export type Maybe < T > = T | null ;
33export type InputMaybe < T > = Maybe < T > ;
44export type Exact < T extends { [ key : string ] : unknown } > = { [ K in keyof T ] : T [ K ] } ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export const HACKERNEWS: Network = "https://news.ycombinator.com/submitlink?u=@u
2525export const INSTAPAPER : Network = "http://www.instapaper.com/edit?url=@u&title=@t&description=@d" ;
2626export const LINE : Network = "http://line.me/R/msg/text/?@t%0D%0A@u%0D%0A@d" ;
2727export const LINKEDIN : Network = "https://www.linkedin.com/sharing/share-offsite/?url=@u" ;
28- export const MESSANGER : Network = "fb-messenger://share/?link=@u" ;
28+ export const MESSENGER : Network = "fb-messenger://share/?link=@u" ;
2929/** @deprecated Use MESSENGER instead - this will be removed in a future version */
3030export const MESSANGER : Network = MESSENGER ;
3131export const ODNOKLASSNIKI : Network =
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import "./app.scss";
66import Header from "./components/Header/Header.js" ;
77import SolidBlocksHeaderClusterDefs from "./components/Icons/SolidBlocksHeaderClusterDefs.js" ;
88import Footer from "./components/Footer/Footer.js" ;
9- import { MetaProvider } from "@solidjs/meta" ;
9+ import { MetaProvider , Title } from "@solidjs/meta" ;
1010import { Router } from "@solidjs/router" ;
1111import { FileRoutes } from "@solidjs/start/router" ;
1212import DocumentHydrationHelper from "./primitives/DocumentHydrationHelper.jsx" ;
@@ -31,7 +31,7 @@ function RootContent(props: ParentProps) {
3131 return (
3232 < html lang = "en" data-html >
3333 < head >
34- < title > Solid Primitives</ title >
34+ < Title > Solid Primitives</ Title >
3535 < meta charset = "utf-8" />
3636 < meta name = "viewport" content = "width=device-width, initial-scale=1" />
3737 < meta name = "og:url" content = { SITE_URL } />
You can’t perform that action at this time.
0 commit comments