@e280/shiny 0.1.0-12 → 0.1.0-13
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/s/components/tabs/showcase.ts +95 -2
- package/s/components/tabs/style.css.ts +7 -4
- package/s/demo/views/exhibit/style.css.ts +1 -1
- package/s/demo/views/exhibit/view.ts +3 -1
- package/s/demo/views/showcase/style.css.ts +3 -0
- package/s/demo/views/showcase/view.ts +21 -21
- package/x/components/tabs/showcase.js +95 -2
- package/x/components/tabs/showcase.js.map +1 -1
- package/x/components/tabs/style.css.js +7 -4
- package/x/components/tabs/style.css.js.map +1 -1
- package/x/demo/demo.bundle.min.js +135 -68
- package/x/demo/demo.bundle.min.js.map +2 -2
- package/x/demo/views/exhibit/style.css.js +1 -1
- package/x/demo/views/exhibit/view.js +3 -1
- package/x/demo/views/exhibit/view.js.map +1 -1
- package/x/demo/views/showcase/style.css.js +3 -0
- package/x/demo/views/showcase/style.css.js.map +1 -1
- package/x/demo/views/showcase/view.js +4 -4
- package/x/demo/views/showcase/view.js.map +1 -1
- package/x/index.html +2 -2
- package/x/install/aura.bundle.min.js +7 -4
- package/x/install/aura.bundle.min.js.map +2 -2
- package/x/install/plain.bundle.min.js +7 -4
- package/x/install/plain.bundle.min.js.map +2 -2
- package/s/demo/views/demonstration/style.css.ts +0 -124
- package/s/demo/views/demonstration/view.ts +0 -57
- package/x/demo/views/demonstration/style.css.d.ts +0 -2
- package/x/demo/views/demonstration/style.css.js +0 -123
- package/x/demo/views/demonstration/style.css.js.map +0 -1
- package/x/demo/views/demonstration/view.d.ts +0 -12
- package/x/demo/views/demonstration/view.js +0 -44
- package/x/demo/views/demonstration/view.js.map +0 -1
|
@@ -315,16 +315,19 @@ button {
|
|
|
315
315
|
|
|
316
316
|
slot[part="tabs"] {
|
|
317
317
|
display: flex;
|
|
318
|
-
|
|
319
|
-
&::slotted(*) {
|
|
320
|
-
border-radius: 0.3em;
|
|
321
|
-
}
|
|
318
|
+
flex-wrap: wrap;
|
|
322
319
|
|
|
323
320
|
&::slotted([data-active]) {
|
|
324
321
|
opacity: 1;
|
|
325
322
|
color: currentColor;
|
|
326
323
|
text-decoration: underline;
|
|
327
324
|
}
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
:host([snug]) slot[part="tabs"] {
|
|
328
|
+
&::slotted(*) {
|
|
329
|
+
border-radius: 0.3em;
|
|
330
|
+
}
|
|
328
331
|
|
|
329
332
|
&::slotted(:not([data-last], [data-next-is-active])) {
|
|
330
333
|
border-right: none;
|