@liberfi.io/ui-tokens 3.0.5 → 3.0.6

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/index.d.mts CHANGED
@@ -39,15 +39,10 @@ interface PulseListHeaderProps {
39
39
  declare function PulseListHeader({ title, isPaused, extra, className, }: PulseListHeaderProps): react_jsx_runtime.JSX.Element;
40
40
 
41
41
  interface PulseListItemProps {
42
- /** token data */
43
42
  token: Token;
44
- /** custom render for item action (e.g. instant buy button) */
45
43
  renderAction?: (token: Token) => ReactNode;
46
- /** whether this is the last item */
47
44
  isLast?: boolean;
48
- /** callback when selecting a token */
49
45
  onSelectToken?: (token: Token) => void;
50
- /** custom class name */
51
46
  className?: string;
52
47
  }
53
48
  declare function PulseListItem({ token, renderAction, isLast, onSelectToken, className, }: PulseListItemProps): react_jsx_runtime.JSX.Element;
package/dist/index.d.ts CHANGED
@@ -39,15 +39,10 @@ interface PulseListHeaderProps {
39
39
  declare function PulseListHeader({ title, isPaused, extra, className, }: PulseListHeaderProps): react_jsx_runtime.JSX.Element;
40
40
 
41
41
  interface PulseListItemProps {
42
- /** token data */
43
42
  token: Token;
44
- /** custom render for item action (e.g. instant buy button) */
45
43
  renderAction?: (token: Token) => ReactNode;
46
- /** whether this is the last item */
47
44
  isLast?: boolean;
48
- /** callback when selecting a token */
49
45
  onSelectToken?: (token: Token) => void;
50
- /** custom class name */
51
46
  className?: string;
52
47
  }
53
48
  declare function PulseListItem({ token, renderAction, isLast, onSelectToken, className, }: PulseListItemProps): react_jsx_runtime.JSX.Element;