@yourdash/uikit 0.1.15 → 0.1.16

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 (2) hide show
  1. package/dist/index.d.ts +6 -8
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -33,13 +33,6 @@ export declare interface IToastAction {
33
33
  onClick: () => void;
34
34
  }
35
35
 
36
- declare interface IUKLayoutProps {
37
- primarySidebar?: default_2.ReactNode;
38
- secondarySidebar?: default_2.ReactNode;
39
- header?: default_2.ReactNode;
40
- footer?: default_2.ReactNode;
41
- }
42
-
43
36
  export declare const OnInView: FC<{
44
37
  className?: string;
45
38
  onEnterView?: (direction: "up" | "down" | "left" | "right") => void;
@@ -487,7 +480,12 @@ export declare const UKInfiniteScroll: default_2.FC<{
487
480
  resetState?: string;
488
481
  }>;
489
482
 
490
- export declare const UKLayout: default_2.FC<default_2.PropsWithChildren<IUKLayoutProps>>;
483
+ export declare const UKLayout: default_2.FC<default_2.PropsWithChildren<{
484
+ primarySidebar?: default_2.ReactNode;
485
+ secondarySidebar?: default_2.ReactNode;
486
+ header?: default_2.ReactNode;
487
+ footer?: default_2.ReactNode;
488
+ }>>;
491
489
 
492
490
  export declare const UKLink: FC<{
493
491
  text: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yourdash/uikit",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "The YourDash ReactJS UI library",
5
5
  "scripts": {
6
6
  "dev-compile": "vite build --watch",