@useloops/design-system 1.3.4 → 1.3.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.ts CHANGED
@@ -531,6 +531,7 @@ interface PlanTierCardProps {
531
531
  ctaLink?: string;
532
532
  ctaTarget?: string;
533
533
  ctaText: string;
534
+ ctaVariation?: 'primary' | 'secondary' | 'outlined';
534
535
  currencySymbol: string;
535
536
  currentPlan?: boolean;
536
537
  features?: string[];
@@ -728,6 +729,7 @@ interface BaseField {
728
729
  label?: string;
729
730
  labelProps?: InputLabelProps;
730
731
  helperText?: string;
732
+ hidden?: boolean;
731
733
  helpTextProps?: InputLabelHelpProps;
732
734
  validation?: any;
733
735
  valueTransformer?: (valueToTransform: string) => string;