@holoviz/panel 1.2.0-a.2 → 1.2.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/dist/bundled/notificationarea/panel/1.2.0/dist/bundled/font-awesome/css/all.min.css +2 -0
- package/dist/bundled/panel/1.2.0/dist/bundled/bootstrap5/css/bootstrap.min.css +2 -0
- package/dist/bundled/panel/1.2.0/dist/bundled/bootstrap5/js/bootstrap.bundle.min.js +2 -0
- package/dist/bundled/panel/1.2.0/dist/bundled/font-awesome/css/all.min.css +2 -0
- package/dist/bundled/panel/1.2.0/dist/bundled/jquery/jquery.slim.min.js +2 -0
- package/dist/bundled/plotlyplot/panel/1.2.0/dist/bundled/jquery/jquery.slim.min.js +2 -0
- package/dist/bundled/theme/material.css +1 -1
- package/dist/bundled/theme/native.css +4 -0
- package/dist/css/button.css +5 -1
- package/dist/dts/styles/button.css.d.ts +1 -1
- package/dist/lib/styles/button.css.d.ts +1 -1
- package/dist/lib/styles/button.css.js +2 -2
- package/dist/wheels/{panel-1.2.0a2-py3-none-any.whl → panel-1.2.0-py3-none-any.whl} +0 -0
- package/package.json +1 -1
- package/dist/bundled/notificationarea/panel/1.2.0-a.2/dist/bundled/font-awesome/css/all.min.css +0 -2
- package/dist/bundled/panel/1.2.0-a.2/dist/bundled/bootstrap5/css/bootstrap.min.css +0 -2
- package/dist/bundled/panel/1.2.0-a.2/dist/bundled/bootstrap5/js/bootstrap.bundle.min.js +0 -2
- package/dist/bundled/panel/1.2.0-a.2/dist/bundled/font-awesome/css/all.min.css +0 -2
- package/dist/bundled/panel/1.2.0-a.2/dist/bundled/jquery/jquery.slim.min.js +0 -2
- package/dist/bundled/plotlyplot/panel/1.2.0-a.2/dist/bundled/jquery/jquery.slim.min.js +0 -2
package/dist/css/button.css
CHANGED
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
);
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
+
.bk-btn-group > .bk-btn {
|
|
19
|
+
line-height: var(--line-height);
|
|
20
|
+
}
|
|
21
|
+
|
|
18
22
|
.bk-btn:active {
|
|
19
23
|
transform: scale(0.98);
|
|
20
24
|
}
|
|
@@ -24,7 +28,7 @@
|
|
|
24
28
|
}
|
|
25
29
|
|
|
26
30
|
:host(.solid) .bk-btn {
|
|
27
|
-
border:
|
|
31
|
+
border: 1.2px solid rgba(0, 0, 0, 0);
|
|
28
32
|
}
|
|
29
33
|
|
|
30
34
|
:host(.solid) .bk-btn.bk-btn-default {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
export const btn_group = "bk-btn-group"
|
|
1
2
|
export const btn = "bk-btn"
|
|
2
3
|
export const btn_default = "bk-btn-default"
|
|
3
|
-
export const btn_group = "bk-btn-group"
|
|
4
4
|
export const active = "bk-active"
|
|
5
5
|
export const btn_primary = "bk-btn-primary"
|
|
6
6
|
export const btn_success = "bk-btn-success"
|
|
@@ -16,4 +16,4 @@ export default `:host{--primary-color:var(--design-primary-color, var(--panel-pr
|
|
|
16
16
|
);--surface-color:var(--design-surface-color, var(--panel-surface-color));--surface-text-color:var(
|
|
17
17
|
--design-surface-text-color,
|
|
18
18
|
var(--panel-on-surface-color)
|
|
19
|
-
);}.bk-btn:active{transform:scale(0.98);}:host(.outline) .bk-btn{background-color:transparent;}:host(.solid) .bk-btn{border:
|
|
19
|
+
);}.bk-btn-group > .bk-btn{line-height:var(--line-height);}.bk-btn:active{transform:scale(0.98);}:host(.outline) .bk-btn{background-color:transparent;}:host(.solid) .bk-btn{border:1.2px solid rgba(0, 0, 0, 0);}:host(.solid) .bk-btn.bk-btn-default{background-color:var(--surface-color);color:var(--surface-text-color);}:host(.outline) .bk-btn.bk-btn-default{border:1px solid var(--surface-color);color:var(--background-text-color);}:host(.solid) .bk-btn-group .bk-btn.bk-btn-default.bk-active{box-shadow:inset 0px 3px 5px rgb(0 0 0 / 50%);}:host(.outline) .bk-btn.bk-btn-default.bk-active{box-shadow:inset 0px 3px 5px rgb(0 0 0 / 50%);color:var(--background-text-color);}:host(.outline) .bk-btn-group .bk-btn-default.bk-active{background-color:var(--surface-color);color:var(--surface-text-color);}:host(.solid) .bk-btn.bk-btn-primary{background-color:var(--primary-color);}:host(.solid) .bk-btn.bk-btn-primary.bk-active{background-color:var(--primary-color);box-shadow:inset 0px 3px 5px rgb(0 0 0 / 25%);}:host(.outline) .bk-btn-primary{background-color:transparent;color:var(--background-text-color);}:host(.outline) .bk-btn-primary.bk-active,:host(.outline) .bk-btn-primary:hover{color:var(--background-text-color);}:host(.outline) .bk-btn-group .bk-btn-primary.bk-active{background-color:var(--primary-color);color:var(--button-primary-text-color);}:host(.outline) .bk-btn-success{color:var(--success-bg-color);}:host(.outline) .bk-btn-success.bk-active,:host(.outline) .bk-btn-success:hover{color:var(--background-text-color);}:host(.outline) .bk-btn-group .bk-btn-success.bk-active{background-color:var(--success-bg-color);color:var(--background-text-color);}:host(.outline) .bk-btn-warning{color:var(--warning-bg-color);}:host(.outline) .bk-btn-warning.bk-active,:host(.outline) .bk-btn-warning:hover{color:var(--background-text-color);}:host(.outline) .bk-btn-group .bk-btn-warning.bk-active{background-color:var(--warning-bg-color);color:var(--background-text-color);}:host(.outline) .bk-btn-danger{color:var(--danger-bg-color);}:host(.outline) .bk-btn-danger.bk-active,:host(.outline) .bk-btn-danger:hover{color:var(--background-text-color);}:host(.outline) .bk-btn-group .bk-btn-danger.bk-active{background-color:var(--danger-bg-color);color:var(--background-text-color);}:host(.outline) .bk-btn-light{border-color:var(--light-bg-color);color:var(--background-text-color);}:host(.outline) .bk-btn-light.bk-active,:host(.outline) .bk-btn-light:hover{background-color:var(--light-bg-color);color:black;}:host(.outline) .bk-btn-group .bk-btn-light.bk-active{background-color:var(--light-bg-color);color:black;}`
|
|
Binary file
|
package/package.json
CHANGED