quirk-ui 0.0.427 → 0.0.428

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/core.d.ts CHANGED
@@ -880,7 +880,7 @@ export declare type NavGroup = {
880
880
  title: string;
881
881
  primaryItems?: NavItem[];
882
882
  secondaryItems?: NavItem[];
883
- spotlight?: any;
883
+ spotlight?: Spotlight;
884
884
  };
885
885
 
886
886
  export declare type NavItem = {
@@ -1111,6 +1111,13 @@ declare type SpinnerProps = {
1111
1111
  className?: string;
1112
1112
  };
1113
1113
 
1114
+ declare type Spotlight = {
1115
+ title?: any[];
1116
+ description?: any[];
1117
+ imageUrl?: string;
1118
+ callToAction: any;
1119
+ };
1120
+
1114
1121
  export declare function Stack({ direction, gap, align, justify, wrap, as, className, children, ...restProps }: StackProps): JSX.Element;
1115
1122
 
1116
1123
  declare type StackProps = {
package/dist/main.d.ts CHANGED
@@ -1275,7 +1275,7 @@ export declare type NavGroup = {
1275
1275
  title: string;
1276
1276
  primaryItems?: NavItem[];
1277
1277
  secondaryItems?: NavItem[];
1278
- spotlight?: any;
1278
+ spotlight?: Spotlight;
1279
1279
  };
1280
1280
 
1281
1281
  export declare interface NavigationData {
@@ -1655,6 +1655,13 @@ declare type SpinnerProps = {
1655
1655
  className?: string;
1656
1656
  };
1657
1657
 
1658
+ declare type Spotlight = {
1659
+ title?: any[];
1660
+ description?: any[];
1661
+ imageUrl?: string;
1662
+ callToAction: any;
1663
+ };
1664
+
1658
1665
  export declare function SpotlightCard({ spotlight }: SpotlightCardProps): JSX.Element;
1659
1666
 
1660
1667
  declare interface SpotlightCardProps {
package/dist/next.d.ts CHANGED
@@ -401,7 +401,7 @@ declare type NavGroup = {
401
401
  title: string;
402
402
  primaryItems?: NavItem[];
403
403
  secondaryItems?: NavItem[];
404
- spotlight?: any;
404
+ spotlight?: Spotlight;
405
405
  };
406
406
 
407
407
  export declare interface NavigationData {
@@ -566,6 +566,13 @@ export declare interface SiteSettings {
566
566
  defaultFooter?: NavigationData;
567
567
  }
568
568
 
569
+ declare type Spotlight = {
570
+ title?: any[];
571
+ description?: any[];
572
+ imageUrl?: string;
573
+ callToAction: any;
574
+ };
575
+
569
576
  export declare function SpotlightCard({ spotlight }: SpotlightCardProps): JSX.Element;
570
577
 
571
578
  declare interface SpotlightCardProps {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "quirk-ui",
3
3
  "private": false,
4
- "version": "0.0.427",
4
+ "version": "0.0.428",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": {