@gem-sdk/core 2.0.0-staging.828 → 2.0.0-staging.847
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/dist/types/index.d.ts
CHANGED
|
@@ -35257,9 +35257,9 @@ type ArticlesQueryVariables = Exact$1<{
|
|
|
35257
35257
|
where?: InputMaybe$1<ArticleWhereInput$1>;
|
|
35258
35258
|
}>;
|
|
35259
35259
|
type ArticlesQueryResponse = {
|
|
35260
|
-
articles?: Maybe$1<
|
|
35261
|
-
edges: Array<
|
|
35262
|
-
node?: Maybe$1<
|
|
35260
|
+
articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
|
|
35261
|
+
edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
|
|
35262
|
+
node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
|
|
35263
35263
|
tags?: Maybe$1<Array<Maybe$1<Pick<Tag$1, 'name'>>>>;
|
|
35264
35264
|
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
35265
35265
|
blogs?: Maybe$1<{
|
|
@@ -35268,12 +35268,12 @@ type ArticlesQueryResponse = {
|
|
|
35268
35268
|
}>;
|
|
35269
35269
|
}>;
|
|
35270
35270
|
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
35271
|
-
}
|
|
35272
|
-
}
|
|
35271
|
+
}>;
|
|
35272
|
+
}>;
|
|
35273
35273
|
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
35274
|
-
}
|
|
35274
|
+
}>;
|
|
35275
35275
|
};
|
|
35276
|
-
declare const ArticlesDocument = "\n query articles($after: Cursor, $before: Cursor, $first: Int, $last: Int, $orderBy: ArticleOrder, $where: ArticleWhereInput) {\n articles(\n after: $after\n before: $before\n first: $first\n last: $last\n orderBy: $orderBy\n where: $where\n ) {\n edges {\n cursor\n node {\n id\n title\n handle\n description\n templateSuffix\n titleMeta\n descriptionMeta\n baseID\n platform\n tags {\n name\n }\n content {\n excerptHtml\n }\n isSample\n platformCreatedAt\n platformUpdatedAt\n publishedAt\n author\n blogs {\n edges {\n node {\n title\n handle\n }\n }\n }\n media {\n alt\n width\n src\n height\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}\n ";
|
|
35276
|
+
declare const ArticlesDocument = "\n query articles($after: Cursor, $before: Cursor, $first: Int, $last: Int, $orderBy: ArticleOrder, $where: ArticleWhereInput) {\n articles(\n after: $after\n before: $before\n first: $first\n last: $last\n orderBy: $orderBy\n where: $where\n ) {\n edges {\n cursor\n node {\n id\n title\n handle\n description\n templateSuffix\n titleMeta\n descriptionMeta\n baseID\n platform\n tags {\n name\n }\n content {\n excerptHtml\n html\n }\n isSample\n platformCreatedAt\n platformUpdatedAt\n publishedAt\n author\n blogs {\n edges {\n node {\n title\n handle\n }\n }\n }\n media {\n alt\n width\n src\n height\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}\n ";
|
|
35277
35277
|
|
|
35278
35278
|
type BlogsQueryVariables = Exact$1<{
|
|
35279
35279
|
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
@@ -36043,6 +36043,7 @@ type OptionValueControlType<T> = {
|
|
|
36043
36043
|
[K in keyof T]-?: Mapped$7<K, T[K]>;
|
|
36044
36044
|
}[keyof T];
|
|
36045
36045
|
|
|
36046
|
+
type TooltipPosition = 'top' | 'left' | 'right' | 'bottom' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end';
|
|
36046
36047
|
type Option$5<T> = {
|
|
36047
36048
|
value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
|
|
36048
36049
|
label?: string | number;
|
|
@@ -36080,6 +36081,7 @@ type Mapped$6<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36080
36081
|
itemPerRow?: number;
|
|
36081
36082
|
itemSpacing?: 'large' | 'small';
|
|
36082
36083
|
enableTooltip?: boolean;
|
|
36084
|
+
tooltipPosition?: TooltipPosition;
|
|
36083
36085
|
} : {
|
|
36084
36086
|
id: K;
|
|
36085
36087
|
label: string;
|
|
@@ -36107,6 +36109,7 @@ type Mapped$6<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
36107
36109
|
}[];
|
|
36108
36110
|
enableTooltip?: boolean;
|
|
36109
36111
|
default?: T;
|
|
36112
|
+
tooltipPosition?: TooltipPosition;
|
|
36110
36113
|
};
|
|
36111
36114
|
type OptionIllustrationControlType<T> = {
|
|
36112
36115
|
[K in keyof T]-?: Mapped$6<K, T[K]>;
|