@sunggang/ui-lib 0.1.84 → 0.1.86

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/index.esm.css CHANGED
@@ -896,6 +896,9 @@ video {
896
896
  .w-\[280px\] {
897
897
  width: 280px;
898
898
  }
899
+ .w-\[290px\] {
900
+ width: 290px;
901
+ }
899
902
  .w-\[300px\] {
900
903
  width: 300px;
901
904
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunggang/ui-lib",
3
- "version": "0.1.84",
3
+ "version": "0.1.86",
4
4
  "dependencies": {
5
5
  "@iconify/react": "^4.1.1",
6
6
  "@mdx-js/react": "^3.0.1",
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ export type StackCardsProps = {
3
+ direction?: 'x' | 'y';
4
+ cardRatio?: string;
5
+ cardOffset?: number;
6
+ cardStyle?: React.CSSProperties;
7
+ children: React.ReactNode;
8
+ cards: any;
9
+ renderInfo: (item: any) => React.ReactNode;
10
+ };
11
+ declare const StackCards: React.FC<StackCardsProps>;
12
+ export default StackCards;