rbro-tat-uds 1.5.46 → 1.5.47

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.
@@ -0,0 +1,9 @@
1
+ import { default as React, CSSProperties, HTMLAttributes } from 'react';
2
+ export interface ButtonLinkProps extends HTMLAttributes<HTMLAnchorElement> {
3
+ size?: "default" | "small" | "medium" | "large";
4
+ asChild?: boolean;
5
+ intent?: "accent" | "info" | "danger";
6
+ decoration?: CSSProperties["textDecoration"];
7
+ }
8
+ declare const ButtonLink: React.FC<ButtonLinkProps>;
9
+ export default ButtonLink;
@@ -0,0 +1 @@
1
+ export { default as ButtonLink } from './ButtonLink';
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ export interface CardCreditProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ type?: "standard" | "emag" | "platinum" | "signature";
4
+ selected?: boolean;
5
+ disabled?: boolean;
6
+ }
7
+ declare const CardCredit: React.FC<CardCreditProps>;
8
+ export default CardCredit;
@@ -0,0 +1 @@
1
+ export { default as CardCredit } from './CardCredit';
@@ -62,3 +62,5 @@ export * from './PropunereAsigurariCalatorie';
62
62
  export * from './InPageTab';
63
63
  export * from './CityPicker';
64
64
  export * from './RatesCalculator';
65
+ export * from './CardCredit';
66
+ export * from './ButtonLink';