@theguild/components 8.0.0-alpha-20241205183825-34b46e8fd44fadd3c8310a8bf1824a0dfddc197f → 8.0.0-alpha-20241205184750-a8780d2890166760d50c651e6609e2f43d441c5d

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.
@@ -1,4 +1,4 @@
1
- import { FC, SVGProps, HTMLProps } from 'react';
1
+ import { FC, SVGProps, HTMLProps, ReactElement } from 'react';
2
2
 
3
3
  type ProductType = 'HIVE' | 'HIVE_GATEWAY' | 'CONDUCTOR' | 'YOGA' | 'ENVELOP' | 'INSPECTOR' | 'CODEGEN' | 'MESH' | 'TOOLS' | 'MODULES' | 'ESLINT' | 'CONFIG' | 'SCALARS' | 'SOFA' | 'STITCHING' | 'ANGULAR' | 'WHATSAPP' | 'KITQL' | 'SSE' | 'WS' | 'FETS' | 'HELTIN' | 'NEXTRA' | 'STELLATE';
4
4
  interface ProductInfo {
@@ -12,6 +12,14 @@ declare const PRODUCTS: Record<ProductType, ProductInfo>;
12
12
  declare const FOUR_MAIN_PRODUCTS: ProductInfo[];
13
13
  declare const SIX_HIGHLIGHTED_PRODUCTS: ProductInfo[];
14
14
  /** List of products displayed in hamburger menu. */
15
- declare const PRODUCTS_MENU_LIST: any;
15
+ declare const PRODUCTS_MENU_LIST: {
16
+ [k: string]: {
17
+ type: "separator";
18
+ title: ReactElement;
19
+ } | {
20
+ href: string;
21
+ title: ReactElement;
22
+ };
23
+ };
16
24
 
17
25
  export { FOUR_MAIN_PRODUCTS, PRODUCTS, PRODUCTS_MENU_LIST, type ProductInfo, type ProductType, SIX_HIGHLIGHTED_PRODUCTS };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theguild/components",
3
- "version": "8.0.0-alpha-20241205183825-34b46e8fd44fadd3c8310a8bf1824a0dfddc197f",
3
+ "version": "8.0.0-alpha-20241205184750-a8780d2890166760d50c651e6609e2f43d441c5d",
4
4
  "repository": {
5
5
  "url": "https://github.com/the-guild-org/docs",
6
6
  "directory": "packages/components"