@holoviz/panel 1.3.4 → 1.3.5-a.1
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/dist/bundled/fastbasetemplate/fast.css +5 -1
- package/dist/bundled/notificationarea/panel/1.3.5-a.1/dist/bundled/font-awesome/css/all.min.css +2 -0
- package/dist/bundled/panel/1.3.5-a.1/dist/bundled/bootstrap5/css/bootstrap.min.css +2 -0
- package/dist/bundled/panel/1.3.5-a.1/dist/bundled/bootstrap5/js/bootstrap.bundle.min.js +2 -0
- package/dist/bundled/panel/1.3.5-a.1/dist/bundled/font-awesome/css/all.min.css +2 -0
- package/dist/bundled/panel/1.3.5-a.1/dist/bundled/jquery/jquery.slim.min.js +2 -0
- package/dist/bundled/plotlyplot/panel/1.3.5-a.1/dist/bundled/jquery/jquery.slim.min.js +2 -0
- package/dist/bundled/theme/fast.css +98 -22
- package/dist/wheels/{bokeh-3.3.1-py3-none-any.whl → bokeh-3.3.2-py3-none-any.whl} +0 -0
- package/dist/wheels/{panel-1.3.4-py3-none-any.whl → panel-1.3.5a1-py3-none-any.whl} +0 -0
- package/package.json +2 -2
- package/dist/bundled/notificationarea/panel/1.3.4/dist/bundled/font-awesome/css/all.min.css +0 -2
- package/dist/bundled/panel/1.3.4/dist/bundled/bootstrap5/css/bootstrap.min.css +0 -2
- package/dist/bundled/panel/1.3.4/dist/bundled/bootstrap5/js/bootstrap.bundle.min.js +0 -2
- package/dist/bundled/panel/1.3.4/dist/bundled/font-awesome/css/all.min.css +0 -2
- package/dist/bundled/panel/1.3.4/dist/bundled/jquery/jquery.slim.min.js +0 -2
- package/dist/bundled/plotlyplot/panel/1.3.4/dist/bundled/jquery/jquery.slim.min.js +0 -2
|
@@ -146,7 +146,7 @@ img.app-logo {
|
|
|
146
146
|
transform-origin: center left;
|
|
147
147
|
height: calc(100vh - 76px);
|
|
148
148
|
overflow-y: auto;
|
|
149
|
-
padding: 15px 10px 5px
|
|
149
|
+
padding: 15px 10px 5px 5px;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
#sidebar.hidden {
|
|
@@ -214,6 +214,10 @@ img.app-logo {
|
|
|
214
214
|
margin-block-end: 0;
|
|
215
215
|
}
|
|
216
216
|
|
|
217
|
+
div.pn-wrapper {
|
|
218
|
+
height: 100%;
|
|
219
|
+
}
|
|
220
|
+
|
|
217
221
|
.pn-modal-close {
|
|
218
222
|
position: absolute;
|
|
219
223
|
right: 10%;
|
|
@@ -16,6 +16,16 @@
|
|
|
16
16
|
--switch-size: 12px;
|
|
17
17
|
--container-background: var(--panel-surface-color);
|
|
18
18
|
color: var(--neutral-foreground-rest);
|
|
19
|
+
|
|
20
|
+
--panel-primary-color: var(--accent-foreground-rest);
|
|
21
|
+
--panel-on-primary-color: var(--foreground-on-accent-rest);
|
|
22
|
+
}
|
|
23
|
+
/* Anchor */
|
|
24
|
+
a {
|
|
25
|
+
color: var(--accent-fill-rest);
|
|
26
|
+
}
|
|
27
|
+
a:hover {
|
|
28
|
+
color: var(--accent-fill-hover);
|
|
19
29
|
}
|
|
20
30
|
|
|
21
31
|
/* Track */
|
|
@@ -472,7 +482,32 @@ input[type='file']:active {
|
|
|
472
482
|
(var(--base-height-multiplier) + var(--density)) * var(--design-unit) * 1px
|
|
473
483
|
);
|
|
474
484
|
}
|
|
485
|
+
.bk-btn-default:focus,
|
|
486
|
+
.bk-btn-default:active,
|
|
487
|
+
.bk-btn-primary:focus,
|
|
488
|
+
.bk-btn-primary:active,
|
|
489
|
+
.bk-btn-success:focus,
|
|
490
|
+
.bk-btn-success:active,
|
|
491
|
+
.bk-btn-warning:focus,
|
|
492
|
+
.bk-btn-warning:active,
|
|
493
|
+
.bk-btn-danger:focus,
|
|
494
|
+
.bk-btn-danger:active,
|
|
495
|
+
.bk-btn-light:focus,
|
|
496
|
+
.bk-btn-light:active {
|
|
497
|
+
outline: none;
|
|
498
|
+
}
|
|
499
|
+
.bk-btn:active {
|
|
500
|
+
transform: none;
|
|
501
|
+
}
|
|
475
502
|
|
|
503
|
+
:host(.solid) .bk-btn-group .bk-btn.bk-btn-default.bk-active,
|
|
504
|
+
:host(.solid) .bk-btn-group .bk-btn.bk-btn-primary.bk-active,
|
|
505
|
+
.bk-btn:active,
|
|
506
|
+
::file-selector-button:active,
|
|
507
|
+
.bk-active.bk-btn,
|
|
508
|
+
.bk-active::file-selector-button {
|
|
509
|
+
box-shadow: none;
|
|
510
|
+
}
|
|
476
511
|
.bk-btn a {
|
|
477
512
|
text-decoration: none;
|
|
478
513
|
color: inherit;
|
|
@@ -491,51 +526,88 @@ input[type='file']:active {
|
|
|
491
526
|
|
|
492
527
|
:host(.solid) .bk-btn.bk-btn-default:hover {
|
|
493
528
|
background-color: var(--neutral-fill-hover);
|
|
529
|
+
color: var(--neutral-foreground-hover);
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
:host(.solid) .bk-btn.bk-btn-default:active,
|
|
533
|
+
:host(.solid) .bk-btn.bk-btn-default.bk-active {
|
|
534
|
+
background-color: var(--neutral-fill-active);
|
|
535
|
+
color: var(--neutral-foreground-active);
|
|
494
536
|
}
|
|
495
537
|
|
|
496
538
|
:host(.outline) .bk-btn.bk-btn-default {
|
|
497
539
|
background-color: transparent;
|
|
498
|
-
border: 1px solid var(--neutral-
|
|
540
|
+
border: 1px solid var(--neutral-stroke-rest);
|
|
499
541
|
color: var(--neutral-fill-strong-rest);
|
|
500
542
|
}
|
|
501
543
|
|
|
502
544
|
:host(.outline) .bk-btn.bk-btn-default:hover {
|
|
503
|
-
|
|
504
|
-
color: var(--neutral-
|
|
545
|
+
border-color: var(--neutral-stroke-hover);
|
|
546
|
+
color: var(--neutral-fill-strong-hover);
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
:host(.outline) .bk-btn.bk-btn-default:active {
|
|
550
|
+
border-color: var(--neutral-stroke-active);
|
|
551
|
+
color: var(--neutral-fill-strong-active);
|
|
505
552
|
}
|
|
506
553
|
|
|
507
554
|
:host(.outline) .bk-btn.bk-btn-default.bk-active {
|
|
508
|
-
color: var(--foreground-
|
|
509
|
-
box-shadow:
|
|
555
|
+
color: var(--neutral-foreground-rest);
|
|
556
|
+
box-shadow: none;
|
|
510
557
|
}
|
|
511
558
|
|
|
512
559
|
:host(.outline) .bk-btn-group .bk-btn-default.bk-active {
|
|
513
560
|
background-color: var(--neutral-fill-active);
|
|
514
|
-
color: var(--foreground-
|
|
561
|
+
color: var(--neutral-foreground-rest);
|
|
515
562
|
}
|
|
516
563
|
|
|
517
|
-
:host(.
|
|
564
|
+
:host(.outline) .bk-btn-group .bk-btn-primary.bk-active,
|
|
565
|
+
:host(.solid) .bk-btn.bk-btn-primary,
|
|
566
|
+
:host(.solid) .bk-btn.bk-btn-primary[disabled],
|
|
567
|
+
:host(.solid) .bk-btn.bk-btn-primary[disabled]:hover {
|
|
518
568
|
background-color: var(--accent-fill-rest);
|
|
569
|
+
border-color: var(--accent-fill-rest);
|
|
570
|
+
color: var(--foreground-on-accent-rest);
|
|
519
571
|
}
|
|
520
|
-
|
|
521
|
-
:
|
|
572
|
+
:host(.solid) .bk-btn.bk-btn-primary:hover {
|
|
573
|
+
background-color: var(--accent-fill-hover);
|
|
574
|
+
border-color: var(--accent-fill-hover);
|
|
575
|
+
color: var(--foreground-on-accent-hover);
|
|
576
|
+
}
|
|
577
|
+
:host(.solid) .bk-btn.bk-btn-primary.bk-active,
|
|
578
|
+
:host(.solid) .bk-btn.bk-btn-primary:active,
|
|
579
|
+
:host(.solid) .bk-btn.bk-btn-primary.bk-active[disabled],
|
|
580
|
+
:host(.solid) .bk-btn.bk-btn-primary.bk-active[disabled]:hover {
|
|
522
581
|
background-color: var(--accent-fill-active);
|
|
523
|
-
|
|
582
|
+
border-color: var(--accent-fill-active);
|
|
583
|
+
color: var(--foreground-on-accent-active);
|
|
524
584
|
}
|
|
525
|
-
|
|
526
|
-
:host(.
|
|
527
|
-
background-color:
|
|
528
|
-
color: var(--
|
|
585
|
+
:host(.outline) .bk-btn-group .bk-btn-primary.bk-active:hover,
|
|
586
|
+
:host(.solid) .bk-btn.bk-btn-primary.bk-active:hover {
|
|
587
|
+
background-color: var(--accent-fill-hover);
|
|
588
|
+
color: var(--foreground-on-accent-hover);
|
|
529
589
|
}
|
|
530
|
-
|
|
531
|
-
:host(.
|
|
532
|
-
:host(.
|
|
533
|
-
|
|
590
|
+
:host(.solid) .bk-btn.bk-btn-primary[disabled],
|
|
591
|
+
:host(.solid) .bk-btn.bk-btn-primary[disabled]:hover,
|
|
592
|
+
:host(.solid) .bk-btn.bk-btn-primary[disabled]:focus,
|
|
593
|
+
:host(.solid) .bk-btn.bk-btn-primary[disabled].bk-active {
|
|
594
|
+
pointer-events: none !important;
|
|
595
|
+
cursor: not-allowed;
|
|
596
|
+
opacity: var(--disabled-opacity);
|
|
534
597
|
}
|
|
535
|
-
|
|
536
|
-
:host(.outline) .bk-btn
|
|
537
|
-
|
|
538
|
-
color: var(--foreground-
|
|
598
|
+
:host(.outline) .bk-btn.bk-btn-primary.bk-active:hover,
|
|
599
|
+
:host(.outline) .bk-btn.bk-btn-primary:hover {
|
|
600
|
+
border-color: var(--accent-fill-hover);
|
|
601
|
+
color: var(--neutral-foreground-hover);
|
|
602
|
+
}
|
|
603
|
+
:host(.outline) .bk-btn.bk-btn-primary.bk-active,
|
|
604
|
+
:host(.outline) .bk-btn.bk-btn-primary:active {
|
|
605
|
+
border-color: var(--accent-fill-active);
|
|
606
|
+
color: var(--neutral-foreground-active);
|
|
607
|
+
}
|
|
608
|
+
:host(.outline) .bk-btn.bk-btn-primary {
|
|
609
|
+
border-color: var(--accent-fill-rest);
|
|
610
|
+
color: var(--neutral-foreground-rest);
|
|
539
611
|
}
|
|
540
612
|
|
|
541
613
|
:host(.outline) .bk-btn-success.bk-active,
|
|
@@ -589,6 +661,10 @@ input[type='file']:active {
|
|
|
589
661
|
select:not([type='file']).bk-input {
|
|
590
662
|
margin: 0;
|
|
591
663
|
}
|
|
664
|
+
select:not([multiple]).bk-input,
|
|
665
|
+
select:not([size]).bk-input {
|
|
666
|
+
background-image: url('data:image/svg+xml;utf8,<svg version="1.1" viewBox="0 0 25 20" xmlns="http://www.w3.org/2000/svg"><path d="M 0,0 25,0 12.5,20 Z" fill="darkgrey"/></svg>');
|
|
667
|
+
}
|
|
592
668
|
|
|
593
669
|
/* Checkbox/Radio */
|
|
594
670
|
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@holoviz/panel",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.5-a.1",
|
|
4
4
|
"description": "The powerful data exploration & web app framework for Python.",
|
|
5
5
|
"license": "BSD-3-Clause",
|
|
6
6
|
"repository": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"url": "https://github.com/holoviz/panel.git"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@bokeh/bokehjs": "~3.3.
|
|
11
|
+
"@bokeh/bokehjs": "~3.3.2",
|
|
12
12
|
"@luma.gl/constants": "^8.0.3",
|
|
13
13
|
"@types/debounce": "^1.2.0",
|
|
14
14
|
"@types/gl-matrix": "^2.4.5",
|