@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 +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +15 -18
- package/pv-components/dist/vue/base/pv-components-base.js +20 -20
- package/pv-components/dist/vue/base/pv-components-base.mjs +1225 -1220
- 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 +20841 -20865
- 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 +6706 -6727
- 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
|
@@ -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
|
|