@turquoisehealth/pit-viper 2.72.1-dev.8 → 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 +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +14 -18
- package/pv-components/dist/vue/base/pv-components-base.js +20 -20
- package/pv-components/dist/vue/base/pv-components-base.mjs +1063 -1059
- package/pv-components/dist/vue/base/pv-components-base.umd.js +20 -20
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +0 -4
- package/pv-components/dist/vue/charts/pv-components-charts.js +54 -54
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +20855 -20879
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +57 -57
- package/pv-components/dist/vue/tables/pv-components-tables.js +41 -41
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +6695 -6716
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +40 -40
- package/pv-components/dist/web/pv-components.iife.js +23 -23
package/package.json
CHANGED
|
@@ -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
|
|