@turquoisehealth/pit-viper 2.73.0 → 2.74.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.74.0",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {
@@ -171,6 +171,7 @@ declare type __VLS_PublicProps_9 = {
171
171
  declare function __VLS_template(): {
172
172
  attrs: Partial<{}>;
173
173
  slots: {
174
+ left?(_: {}): any;
174
175
  action?(_: {}): any;
175
176
  };
176
177
  refs: {};
@@ -524,32 +525,28 @@ declare interface PvBreadcrumbsProps {
524
525
  options: PvBreadcrumbsOptions[];
525
526
  }
526
527
 
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<{}>, {
528
+ export declare const PvButton: DefineComponent<PvButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvButtonProps> & Readonly<{}>, {
544
529
  size: PvButtonSize;
545
530
  variant: PvButtonVariant;
546
531
  disabled: boolean;
547
532
  loading: boolean;
533
+ inverse: boolean;
548
534
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
549
535
 
536
+ declare type PvButtonProps = {
537
+ variant?: PvButtonVariant;
538
+ disabled?: boolean;
539
+ size?: PvButtonSize;
540
+ loading?: boolean;
541
+ label?: string;
542
+ leftIcon?: string;
543
+ rightIcon?: string;
544
+ inverse?: boolean;
545
+ };
546
+
550
547
  declare type PvButtonSize = Extract<PvSize, "md" | "lg" | "xl">;
551
548
 
552
- declare type PvButtonVariant = Extract<PvVariants, "primary" | "secondary" | "ghost" | "destructive">;
549
+ declare type PvButtonVariant = Extract<PvVariants, "primary" | "secondary" | "ghost" | "destructive" | "tertiary">;
553
550
 
554
551
  export declare const PvCard: __VLS_WithTemplateSlots_14<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
555
552