@turquoisehealth/pit-viper 2.73.0 → 2.73.1-dev.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turquoisehealth/pit-viper",
3
- "version": "2.73.0",
3
+ "version": "2.73.1-dev.0",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {
@@ -524,32 +524,28 @@ declare interface PvBreadcrumbsProps {
524
524
  options: PvBreadcrumbsOptions[];
525
525
  }
526
526
 
527
- export declare const PvButton: DefineComponent< {
528
- variant?: PvButtonVariant;
529
- disabled?: boolean;
530
- size?: PvButtonSize;
531
- loading?: boolean;
532
- label?: string;
533
- leftIcon?: string;
534
- rightIcon?: string;
535
- }, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
536
- variant?: PvButtonVariant;
537
- disabled?: boolean;
538
- size?: PvButtonSize;
539
- loading?: boolean;
540
- label?: string;
541
- leftIcon?: string;
542
- rightIcon?: string;
543
- }> & Readonly<{}>, {
527
+ export declare const PvButton: DefineComponent<PvButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvButtonProps> & Readonly<{}>, {
544
528
  size: PvButtonSize;
545
529
  variant: PvButtonVariant;
546
530
  disabled: boolean;
547
531
  loading: boolean;
532
+ inverse: boolean;
548
533
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
549
534
 
535
+ declare type PvButtonProps = {
536
+ variant?: PvButtonVariant;
537
+ disabled?: boolean;
538
+ size?: PvButtonSize;
539
+ loading?: boolean;
540
+ label?: string;
541
+ leftIcon?: string;
542
+ rightIcon?: string;
543
+ inverse?: boolean;
544
+ };
545
+
550
546
  declare type PvButtonSize = Extract<PvSize, "md" | "lg" | "xl">;
551
547
 
552
- declare type PvButtonVariant = Extract<PvVariants, "primary" | "secondary" | "ghost" | "destructive">;
548
+ declare type PvButtonVariant = Extract<PvVariants, "primary" | "secondary" | "ghost" | "destructive" | "tertiary">;
553
549
 
554
550
  export declare const PvCard: __VLS_WithTemplateSlots_14<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
555
551