@turquoisehealth/pit-viper 2.57.1 → 2.59.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/_site/assets/css/pit-viper-v2-scoped.css +29 -22
- package/_site/assets/css/pit-viper-v2.css +31 -23
- package/_site/assets/css/pit-viper.css +31 -23
- package/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +87 -0
- package/pv-components/dist/vue/base/pv-components-base.js +19 -19
- package/pv-components/dist/vue/base/pv-components-base.mjs +2153 -1988
- package/pv-components/dist/vue/base/pv-components-base.umd.js +19 -19
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +9 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +52 -52
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +20993 -20936
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +52 -52
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +8 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +39 -39
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +5805 -5791
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +38 -38
- package/pv-components/dist/web/pv-components.iife.js +24 -24
|
@@ -3226,20 +3226,20 @@
|
|
|
3226
3226
|
transition-timing-function: ease-in;
|
|
3227
3227
|
transition-property: border-color, box-shadow, color;
|
|
3228
3228
|
}
|
|
3229
|
-
.pv-v2 .pv-card:is(a, button):hover, .pv-v2 .pv-card:is(a, button):focus-visible,
|
|
3230
|
-
.pv-v2 .pv-card:has(.pv-overlay-link):hover,
|
|
3231
|
-
.pv-v2 .pv-card:has(.pv-overlay-link):focus-visible {
|
|
3229
|
+
.pv-v2 .pv-card:is(a, button):hover:not(:has(button:hover, a:hover, [role=button]:hover)), .pv-v2 .pv-card:is(a, button):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)),
|
|
3230
|
+
.pv-v2 .pv-card:has(.pv-overlay-link):hover:not(:has(button:hover, a:hover, [role=button]:hover)),
|
|
3231
|
+
.pv-v2 .pv-card:has(.pv-overlay-link):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)) {
|
|
3232
3232
|
background-color: var(--card-hover-background-color, #E8F2F4);
|
|
3233
3233
|
color: var(--card-hover-text-color, unset);
|
|
3234
3234
|
text-decoration: none;
|
|
3235
3235
|
}
|
|
3236
|
-
.pv-v2 .pv-card:is(a, button):hover .pv-text-subdued, .pv-v2 .pv-card:is(a, button):focus-visible .pv-text-subdued,
|
|
3237
|
-
.pv-v2 .pv-card:has(.pv-overlay-link):hover .pv-text-subdued,
|
|
3238
|
-
.pv-v2 .pv-card:has(.pv-overlay-link):focus-visible .pv-text-subdued {
|
|
3236
|
+
.pv-v2 .pv-card:is(a, button):hover:not(:has(button:hover, a:hover, [role=button]:hover)) .pv-text-subdued, .pv-v2 .pv-card:is(a, button):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)) .pv-text-subdued,
|
|
3237
|
+
.pv-v2 .pv-card:has(.pv-overlay-link):hover:not(:has(button:hover, a:hover, [role=button]:hover)) .pv-text-subdued,
|
|
3238
|
+
.pv-v2 .pv-card:has(.pv-overlay-link):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)) .pv-text-subdued {
|
|
3239
3239
|
color: var(--card-hover-text-color, unset);
|
|
3240
3240
|
}
|
|
3241
|
-
.pv-v2 .pv-card:is(a, button):active,
|
|
3242
|
-
.pv-v2 .pv-card:has(.pv-overlay-link):active {
|
|
3241
|
+
.pv-v2 .pv-card:is(a, button):active:not(:has(button:active, a:active, [role=button]:active)),
|
|
3242
|
+
.pv-v2 .pv-card:has(.pv-overlay-link):active:not(:has(button:active, a:active, [role=button]:active)) {
|
|
3243
3243
|
background-color: var(--card-pressed-background-color, #C7D8DB);
|
|
3244
3244
|
}
|
|
3245
3245
|
.pv-v2 .pv-card:is(button) {
|
|
@@ -3247,6 +3247,10 @@
|
|
|
3247
3247
|
background-color: #FFFFFF;
|
|
3248
3248
|
cursor: pointer;
|
|
3249
3249
|
}
|
|
3250
|
+
.pv-v2 .pv-card-secondary,
|
|
3251
|
+
.pv-v2 .pv-card-secondary:is(button) {
|
|
3252
|
+
background-color: var(--card-secondary-background-color, #F7F8F8);
|
|
3253
|
+
}
|
|
3250
3254
|
.pv-v2 .pv-card-select {
|
|
3251
3255
|
--unselected: "Apply to Table";
|
|
3252
3256
|
--selected: "Applied";
|
|
@@ -3462,7 +3466,7 @@
|
|
|
3462
3466
|
}
|
|
3463
3467
|
.pv-v2 .pv-rating meter {
|
|
3464
3468
|
aspect-ratio: 220/40;
|
|
3465
|
-
position:
|
|
3469
|
+
position: absolute;
|
|
3466
3470
|
width: auto;
|
|
3467
3471
|
height: var(--height);
|
|
3468
3472
|
background: none;
|
|
@@ -3958,26 +3962,29 @@
|
|
|
3958
3962
|
}
|
|
3959
3963
|
.pv-v2 [class*=pv-spinner] {
|
|
3960
3964
|
--size: 2rem;
|
|
3961
|
-
display: inline-block;
|
|
3962
3965
|
width: var(--size);
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
.pv-v2 .pv-spinner-light {
|
|
3971
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' clip-rule='evenodd' viewBox='0 0 24 24'%3E%3Cg transform='rotate(90 12 12)'%3E%3CclipPath id='a'%3E%3Cpath d='M24 12a12 12 0 1 1-24 0 12 12 0 0 1 24 0ZM2.74 12a9.26 9.26 0 1 0 18.52 0 9.26 9.26 0 0 0-18.52 0Z' clip-rule='nonzero'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Cuse xlink:href='%23b' width='24' height='24' transform='rotate(-90 12 12)'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAA7EAAAOxAGVKw4bAAABb0lEQVRIia2V203EMBBFj/PgIUQB9EIVFLRdUgMFgLTsJo752Bl0M3FgE7B05cSx75kZO0kqpRyAtqIuqJe+D2Ou6NF0wMSyJRt3FVOck4DmB7UdkCsLs01Q8yLP14yrGTggGihkYp5BhNRKvApQEzWIWfxmPgMUm7wW5VQxXzsQC8Ao0dTq3dhCD0QB8XT52Pe+REDt1CRb2AtAzXvgphY9kByQKhAtS2Mmk81101tTL4DZyVKAQ0abOJr8PemtTK2Z3ps8+i6YJ89gEIDKoxlMAA9m/mi6q0SuHijAW5JeN/TDxp+BJwO1MieuvVyUUl7sWo9oCcrACXgDXtnQPINo6puc7fkJeDfApuab7KbeZ9MInIGjAU57AEOI2gGjRH8EPll+GK/OIJp7aRxwZn5kdwO0NF4eB/mn4t8Ag4Dynugd4Iszc4De1/4JmwAKGUO/2xwub2DMYKr0a//lqzOIJVLj3eaeQYw0Gv8J8AX7zMcj8g3mzgAAAABJRU5ErkJggg==' id='b' width='24' height='24'/%3E%3C/defs%3E%3C/svg%3E");
|
|
3966
|
+
height: var(--size);
|
|
3967
|
+
border-radius: 50%;
|
|
3968
|
+
background: conic-gradient(white, rgba(54, 197, 186, 0.3), #36C5BA);
|
|
3969
|
+
-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px));
|
|
3970
|
+
mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px));
|
|
3971
|
+
animation: rotation 1s linear infinite;
|
|
3972
|
+
display: inline-block;
|
|
3972
3973
|
}
|
|
3973
|
-
@keyframes
|
|
3974
|
-
|
|
3974
|
+
@keyframes rotation {
|
|
3975
|
+
0% {
|
|
3975
3976
|
transform: rotate(0deg);
|
|
3976
3977
|
}
|
|
3977
|
-
|
|
3978
|
+
100% {
|
|
3978
3979
|
transform: rotate(360deg);
|
|
3979
3980
|
}
|
|
3980
3981
|
}
|
|
3982
|
+
.pv-v2 .pv-spinner-dark {
|
|
3983
|
+
background: conic-gradient(white, rgba(18, 19, 19, 0.3), #121313);
|
|
3984
|
+
}
|
|
3985
|
+
.pv-v2 .pv-spinner-light {
|
|
3986
|
+
background: conic-gradient(black, rgba(255, 255, 255, 0.3), #FFFFFF);
|
|
3987
|
+
}
|
|
3981
3988
|
.pv-v2 .pv-layout-primary,
|
|
3982
3989
|
.pv-v2 .pv-layout-primary[data-collapsed] {
|
|
3983
3990
|
font-family: var(--layout-primary-sidebar-font-family, Inter, sans-serif);
|
|
@@ -3492,20 +3492,20 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
3492
3492
|
transition-timing-function: ease-in;
|
|
3493
3493
|
transition-property: border-color, box-shadow, color;
|
|
3494
3494
|
}
|
|
3495
|
-
.pv-card:is(a, button):hover, .pv-card:is(a, button):focus-visible,
|
|
3496
|
-
.pv-card:has(.pv-overlay-link):hover,
|
|
3497
|
-
.pv-card:has(.pv-overlay-link):focus-visible {
|
|
3495
|
+
.pv-card:is(a, button):hover:not(:has(button:hover, a:hover, [role=button]:hover)), .pv-card:is(a, button):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)),
|
|
3496
|
+
.pv-card:has(.pv-overlay-link):hover:not(:has(button:hover, a:hover, [role=button]:hover)),
|
|
3497
|
+
.pv-card:has(.pv-overlay-link):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)) {
|
|
3498
3498
|
background-color: var(--card-hover-background-color, #E8F2F4);
|
|
3499
3499
|
color: var(--card-hover-text-color, unset);
|
|
3500
3500
|
text-decoration: none;
|
|
3501
3501
|
}
|
|
3502
|
-
.pv-card:is(a, button):hover .pv-text-subdued, .pv-card:is(a, button):focus-visible .pv-text-subdued,
|
|
3503
|
-
.pv-card:has(.pv-overlay-link):hover .pv-text-subdued,
|
|
3504
|
-
.pv-card:has(.pv-overlay-link):focus-visible .pv-text-subdued {
|
|
3502
|
+
.pv-card:is(a, button):hover:not(:has(button:hover, a:hover, [role=button]:hover)) .pv-text-subdued, .pv-card:is(a, button):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)) .pv-text-subdued,
|
|
3503
|
+
.pv-card:has(.pv-overlay-link):hover:not(:has(button:hover, a:hover, [role=button]:hover)) .pv-text-subdued,
|
|
3504
|
+
.pv-card:has(.pv-overlay-link):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)) .pv-text-subdued {
|
|
3505
3505
|
color: var(--card-hover-text-color, unset);
|
|
3506
3506
|
}
|
|
3507
|
-
.pv-card:is(a, button):active,
|
|
3508
|
-
.pv-card:has(.pv-overlay-link):active {
|
|
3507
|
+
.pv-card:is(a, button):active:not(:has(button:active, a:active, [role=button]:active)),
|
|
3508
|
+
.pv-card:has(.pv-overlay-link):active:not(:has(button:active, a:active, [role=button]:active)) {
|
|
3509
3509
|
background-color: var(--card-pressed-background-color, #C7D8DB);
|
|
3510
3510
|
}
|
|
3511
3511
|
|
|
@@ -3515,6 +3515,11 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
3515
3515
|
cursor: pointer;
|
|
3516
3516
|
}
|
|
3517
3517
|
|
|
3518
|
+
.pv-card-secondary,
|
|
3519
|
+
.pv-card-secondary:is(button) {
|
|
3520
|
+
background-color: var(--card-secondary-background-color, #F7F8F8);
|
|
3521
|
+
}
|
|
3522
|
+
|
|
3518
3523
|
.pv-card-select {
|
|
3519
3524
|
--unselected: "Apply to Table";
|
|
3520
3525
|
--selected: "Applied";
|
|
@@ -3745,7 +3750,7 @@ div.pv-drawer[open] {
|
|
|
3745
3750
|
|
|
3746
3751
|
.pv-rating meter {
|
|
3747
3752
|
aspect-ratio: 220/40;
|
|
3748
|
-
position:
|
|
3753
|
+
position: absolute;
|
|
3749
3754
|
width: auto;
|
|
3750
3755
|
height: var(--height);
|
|
3751
3756
|
background: none;
|
|
@@ -4294,29 +4299,32 @@ pv-data-grid.ag-theme-pv {
|
|
|
4294
4299
|
|
|
4295
4300
|
[class*=pv-spinner] {
|
|
4296
4301
|
--size: 2rem;
|
|
4297
|
-
display: inline-block;
|
|
4298
4302
|
width: var(--size);
|
|
4299
|
-
|
|
4300
|
-
|
|
4301
|
-
|
|
4303
|
+
height: var(--size);
|
|
4304
|
+
border-radius: 50%;
|
|
4305
|
+
background: conic-gradient(white, rgba(54, 197, 186, 0.3), #36C5BA);
|
|
4306
|
+
-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px));
|
|
4307
|
+
mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px));
|
|
4308
|
+
animation: rotation 1s linear infinite;
|
|
4309
|
+
display: inline-block;
|
|
4310
|
+
}
|
|
4311
|
+
@keyframes rotation {
|
|
4312
|
+
0% {
|
|
4313
|
+
transform: rotate(0deg);
|
|
4314
|
+
}
|
|
4315
|
+
100% {
|
|
4316
|
+
transform: rotate(360deg);
|
|
4317
|
+
}
|
|
4302
4318
|
}
|
|
4303
4319
|
|
|
4304
4320
|
.pv-spinner-dark {
|
|
4305
|
-
background
|
|
4321
|
+
background: conic-gradient(white, rgba(18, 19, 19, 0.3), #121313);
|
|
4306
4322
|
}
|
|
4307
4323
|
|
|
4308
4324
|
.pv-spinner-light {
|
|
4309
|
-
background
|
|
4325
|
+
background: conic-gradient(black, rgba(255, 255, 255, 0.3), #FFFFFF);
|
|
4310
4326
|
}
|
|
4311
4327
|
|
|
4312
|
-
@keyframes spinner {
|
|
4313
|
-
from {
|
|
4314
|
-
transform: rotate(0deg);
|
|
4315
|
-
}
|
|
4316
|
-
to {
|
|
4317
|
-
transform: rotate(360deg);
|
|
4318
|
-
}
|
|
4319
|
-
}
|
|
4320
4328
|
.pv-layout-primary,
|
|
4321
4329
|
.pv-layout-primary[data-collapsed] {
|
|
4322
4330
|
font-family: var(--layout-primary-sidebar-font-family, Inter, sans-serif);
|
|
@@ -3497,20 +3497,20 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
3497
3497
|
transition-timing-function: ease-in;
|
|
3498
3498
|
transition-property: border-color, box-shadow, color;
|
|
3499
3499
|
}
|
|
3500
|
-
.pv-card:is(a, button):hover, .pv-card:is(a, button):focus-visible,
|
|
3501
|
-
.pv-card:has(.pv-overlay-link):hover,
|
|
3502
|
-
.pv-card:has(.pv-overlay-link):focus-visible {
|
|
3500
|
+
.pv-card:is(a, button):hover:not(:has(button:hover, a:hover, [role=button]:hover)), .pv-card:is(a, button):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)),
|
|
3501
|
+
.pv-card:has(.pv-overlay-link):hover:not(:has(button:hover, a:hover, [role=button]:hover)),
|
|
3502
|
+
.pv-card:has(.pv-overlay-link):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)) {
|
|
3503
3503
|
background-color: var(--card-hover-background-color, #FFFFFF);
|
|
3504
3504
|
color: var(--card-hover-text-color, #176F6F);
|
|
3505
3505
|
text-decoration: none;
|
|
3506
3506
|
}
|
|
3507
|
-
.pv-card:is(a, button):hover .pv-text-subdued, .pv-card:is(a, button):focus-visible .pv-text-subdued,
|
|
3508
|
-
.pv-card:has(.pv-overlay-link):hover .pv-text-subdued,
|
|
3509
|
-
.pv-card:has(.pv-overlay-link):focus-visible .pv-text-subdued {
|
|
3507
|
+
.pv-card:is(a, button):hover:not(:has(button:hover, a:hover, [role=button]:hover)) .pv-text-subdued, .pv-card:is(a, button):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)) .pv-text-subdued,
|
|
3508
|
+
.pv-card:has(.pv-overlay-link):hover:not(:has(button:hover, a:hover, [role=button]:hover)) .pv-text-subdued,
|
|
3509
|
+
.pv-card:has(.pv-overlay-link):focus-visible:not(:has(button:focus-visible, a:focus-visible, [role=button]:focus-visible)) .pv-text-subdued {
|
|
3510
3510
|
color: var(--card-hover-text-color, #176F6F);
|
|
3511
3511
|
}
|
|
3512
|
-
.pv-card:is(a, button):active,
|
|
3513
|
-
.pv-card:has(.pv-overlay-link):active {
|
|
3512
|
+
.pv-card:is(a, button):active:not(:has(button:active, a:active, [role=button]:active)),
|
|
3513
|
+
.pv-card:has(.pv-overlay-link):active:not(:has(button:active, a:active, [role=button]:active)) {
|
|
3514
3514
|
background-color: var(--card-pressed-background-color, #FFFFFF);
|
|
3515
3515
|
}
|
|
3516
3516
|
|
|
@@ -3520,6 +3520,11 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
|
|
|
3520
3520
|
cursor: pointer;
|
|
3521
3521
|
}
|
|
3522
3522
|
|
|
3523
|
+
.pv-card-secondary,
|
|
3524
|
+
.pv-card-secondary:is(button) {
|
|
3525
|
+
background-color: var(--card-secondary-background-color, #F8F8FA);
|
|
3526
|
+
}
|
|
3527
|
+
|
|
3523
3528
|
.pv-card-select {
|
|
3524
3529
|
--unselected: "Apply to Table";
|
|
3525
3530
|
--selected: "Applied";
|
|
@@ -3750,7 +3755,7 @@ div.pv-drawer[open] {
|
|
|
3750
3755
|
|
|
3751
3756
|
.pv-rating meter {
|
|
3752
3757
|
aspect-ratio: 220/40;
|
|
3753
|
-
position:
|
|
3758
|
+
position: absolute;
|
|
3754
3759
|
width: auto;
|
|
3755
3760
|
height: var(--height);
|
|
3756
3761
|
background: none;
|
|
@@ -4299,29 +4304,32 @@ pv-data-grid.ag-theme-pv {
|
|
|
4299
4304
|
|
|
4300
4305
|
[class*=pv-spinner] {
|
|
4301
4306
|
--size: 2rem;
|
|
4302
|
-
display: inline-block;
|
|
4303
4307
|
width: var(--size);
|
|
4304
|
-
|
|
4305
|
-
|
|
4306
|
-
|
|
4308
|
+
height: var(--size);
|
|
4309
|
+
border-radius: 50%;
|
|
4310
|
+
background: conic-gradient(white, rgba(54, 197, 186, 0.3), #36C5BA);
|
|
4311
|
+
-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px));
|
|
4312
|
+
mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black calc(100% - 3px));
|
|
4313
|
+
animation: rotation 1s linear infinite;
|
|
4314
|
+
display: inline-block;
|
|
4315
|
+
}
|
|
4316
|
+
@keyframes rotation {
|
|
4317
|
+
0% {
|
|
4318
|
+
transform: rotate(0deg);
|
|
4319
|
+
}
|
|
4320
|
+
100% {
|
|
4321
|
+
transform: rotate(360deg);
|
|
4322
|
+
}
|
|
4307
4323
|
}
|
|
4308
4324
|
|
|
4309
4325
|
.pv-spinner-dark {
|
|
4310
|
-
background
|
|
4326
|
+
background: conic-gradient(white, rgba(18, 19, 19, 0.3), #121313);
|
|
4311
4327
|
}
|
|
4312
4328
|
|
|
4313
4329
|
.pv-spinner-light {
|
|
4314
|
-
background
|
|
4330
|
+
background: conic-gradient(black, rgba(255, 255, 255, 0.3), #FFFFFF);
|
|
4315
4331
|
}
|
|
4316
4332
|
|
|
4317
|
-
@keyframes spinner {
|
|
4318
|
-
from {
|
|
4319
|
-
transform: rotate(0deg);
|
|
4320
|
-
}
|
|
4321
|
-
to {
|
|
4322
|
-
transform: rotate(360deg);
|
|
4323
|
-
}
|
|
4324
|
-
}
|
|
4325
4333
|
.pv-layout-primary,
|
|
4326
4334
|
.pv-layout-primary[data-collapsed] {
|
|
4327
4335
|
font-family: var(--layout-primary-sidebar-font-family, HK Grotesk, sans-serif);
|
package/package.json
CHANGED
|
@@ -73,8 +73,12 @@ type: PvInputType;
|
|
|
73
73
|
id: string;
|
|
74
74
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
75
75
|
|
|
76
|
+
declare const __VLS_component_8: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
77
|
+
|
|
76
78
|
declare type __VLS_Props = PvSearchInputProps;
|
|
77
79
|
|
|
80
|
+
declare type __VLS_Props_10 = PvSwitchProps;
|
|
81
|
+
|
|
78
82
|
declare type __VLS_Props_2 = PvDatePickerProps;
|
|
79
83
|
|
|
80
84
|
declare type __VLS_Props_3 = PvTabsProps;
|
|
@@ -95,6 +99,10 @@ declare type __VLS_PublicProps = {
|
|
|
95
99
|
modelValue: string;
|
|
96
100
|
} & __VLS_Props;
|
|
97
101
|
|
|
102
|
+
declare type __VLS_PublicProps_10 = {
|
|
103
|
+
modelValue: boolean;
|
|
104
|
+
} & __VLS_Props_10;
|
|
105
|
+
|
|
98
106
|
declare type __VLS_PublicProps_2 = {
|
|
99
107
|
modelValue: Date;
|
|
100
108
|
} & __VLS_Props_2;
|
|
@@ -196,6 +204,15 @@ declare function __VLS_template_7(): {
|
|
|
196
204
|
rootEl: any;
|
|
197
205
|
};
|
|
198
206
|
|
|
207
|
+
declare function __VLS_template_8(): {
|
|
208
|
+
attrs: Partial<{}>;
|
|
209
|
+
slots: {
|
|
210
|
+
default?(_: {}): any;
|
|
211
|
+
};
|
|
212
|
+
refs: {};
|
|
213
|
+
rootEl: any;
|
|
214
|
+
};
|
|
215
|
+
|
|
199
216
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
200
217
|
|
|
201
218
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
@@ -210,6 +227,8 @@ declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
|
|
|
210
227
|
|
|
211
228
|
declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
|
|
212
229
|
|
|
230
|
+
declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
|
|
231
|
+
|
|
213
232
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
214
233
|
new (): {
|
|
215
234
|
$slots: S;
|
|
@@ -234,6 +253,12 @@ declare type __VLS_WithTemplateSlots_12<T, S> = T & {
|
|
|
234
253
|
};
|
|
235
254
|
};
|
|
236
255
|
|
|
256
|
+
declare type __VLS_WithTemplateSlots_13<T, S> = T & {
|
|
257
|
+
new (): {
|
|
258
|
+
$slots: S;
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
|
|
237
262
|
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
238
263
|
new (): {
|
|
239
264
|
$slots: S;
|
|
@@ -838,6 +863,28 @@ declare const PvInputVariants: readonly ["h1", "h2", "h3", "h4", "text-md", "tex
|
|
|
838
863
|
|
|
839
864
|
declare type PvInputVariants = (typeof PvInputVariants)[number];
|
|
840
865
|
|
|
866
|
+
export declare const PvInsightCard: DefineComponent<PvInsightCardProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
867
|
+
click: () => any;
|
|
868
|
+
"icon-click": () => any;
|
|
869
|
+
}, string, PublicProps, Readonly<PvInsightCardProps> & Readonly<{
|
|
870
|
+
onClick?: (() => any) | undefined;
|
|
871
|
+
"onIcon-click"?: (() => any) | undefined;
|
|
872
|
+
}>, {
|
|
873
|
+
icon: string;
|
|
874
|
+
interactive: boolean;
|
|
875
|
+
showButton: boolean;
|
|
876
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
877
|
+
|
|
878
|
+
declare interface PvInsightCardProps {
|
|
879
|
+
icon: string;
|
|
880
|
+
insight: string;
|
|
881
|
+
upperLabel?: string;
|
|
882
|
+
title?: string;
|
|
883
|
+
description?: string;
|
|
884
|
+
showButton?: boolean;
|
|
885
|
+
interactive?: boolean;
|
|
886
|
+
}
|
|
887
|
+
|
|
841
888
|
export declare const PvModal: __VLS_WithTemplateSlots_3<DefineComponent< {
|
|
842
889
|
modelValue: boolean;
|
|
843
890
|
} & ModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -1281,6 +1328,25 @@ declare interface PvPopoverProps {
|
|
|
1281
1328
|
isSortable?: boolean;
|
|
1282
1329
|
}
|
|
1283
1330
|
|
|
1331
|
+
export declare const PvRating: DefineComponent<PvRatingProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvRatingProps> & Readonly<{}>, {
|
|
1332
|
+
size: PvRatingSize;
|
|
1333
|
+
variant: PvRatingVariant;
|
|
1334
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1335
|
+
|
|
1336
|
+
declare interface PvRatingProps {
|
|
1337
|
+
variant?: PvRatingVariant;
|
|
1338
|
+
value: number;
|
|
1339
|
+
size?: PvRatingSize;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
declare type PvRatingSize = (typeof PvRatingSizes)[number];
|
|
1343
|
+
|
|
1344
|
+
declare const PvRatingSizes: readonly [12, 16, 20, 24, 32, 64];
|
|
1345
|
+
|
|
1346
|
+
declare type PvRatingVariant = (typeof PvRatingVariants)[number];
|
|
1347
|
+
|
|
1348
|
+
declare const PvRatingVariants: string[];
|
|
1349
|
+
|
|
1284
1350
|
export declare const PvReleaseBadge: DefineComponent<PvBadgeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvBadgeProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1285
1351
|
|
|
1286
1352
|
export declare const PvSearchInput: DefineComponent<__VLS_PublicProps, {
|
|
@@ -1661,6 +1727,25 @@ declare interface PvSuggestionTag_2 {
|
|
|
1661
1727
|
rounded?: boolean;
|
|
1662
1728
|
}
|
|
1663
1729
|
|
|
1730
|
+
export declare const PvSwitch: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1731
|
+
"update:modelValue": (value: boolean) => any;
|
|
1732
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
|
|
1733
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1734
|
+
}>, {
|
|
1735
|
+
size: PvSwitchSize;
|
|
1736
|
+
disabled: boolean;
|
|
1737
|
+
id: string;
|
|
1738
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
1739
|
+
|
|
1740
|
+
declare interface PvSwitchProps {
|
|
1741
|
+
size?: PvSwitchSize;
|
|
1742
|
+
label?: string;
|
|
1743
|
+
disabled?: boolean;
|
|
1744
|
+
id?: string;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
declare type PvSwitchSize = Extract<PvSize, "md" | "lg">;
|
|
1748
|
+
|
|
1664
1749
|
export declare const PvTabList: DefineComponent<PvTabListBaseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1665
1750
|
"update:modelValue": (...args: any[]) => void;
|
|
1666
1751
|
}, string, PublicProps, Readonly<PvTabListBaseProps> & Readonly<{
|
|
@@ -1777,6 +1862,8 @@ declare const PvVariants: readonly ["primary", "secondary", "tertiary", "ghost",
|
|
|
1777
1862
|
|
|
1778
1863
|
declare type PvVariants = (typeof PvVariants)[number];
|
|
1779
1864
|
|
|
1865
|
+
export declare const PvWidget: __VLS_WithTemplateSlots_13<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
1866
|
+
|
|
1780
1867
|
export declare interface Tab {
|
|
1781
1868
|
counter?: number;
|
|
1782
1869
|
label: string;
|