@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.
Files changed (33) hide show
  1. package/package.json +1 -1
  2. package/s/components/tabs/showcase.ts +95 -2
  3. package/s/components/tabs/style.css.ts +7 -4
  4. package/s/demo/views/exhibit/style.css.ts +1 -1
  5. package/s/demo/views/exhibit/view.ts +3 -1
  6. package/s/demo/views/showcase/style.css.ts +3 -0
  7. package/s/demo/views/showcase/view.ts +21 -21
  8. package/x/components/tabs/showcase.js +95 -2
  9. package/x/components/tabs/showcase.js.map +1 -1
  10. package/x/components/tabs/style.css.js +7 -4
  11. package/x/components/tabs/style.css.js.map +1 -1
  12. package/x/demo/demo.bundle.min.js +135 -68
  13. package/x/demo/demo.bundle.min.js.map +2 -2
  14. package/x/demo/views/exhibit/style.css.js +1 -1
  15. package/x/demo/views/exhibit/view.js +3 -1
  16. package/x/demo/views/exhibit/view.js.map +1 -1
  17. package/x/demo/views/showcase/style.css.js +3 -0
  18. package/x/demo/views/showcase/style.css.js.map +1 -1
  19. package/x/demo/views/showcase/view.js +4 -4
  20. package/x/demo/views/showcase/view.js.map +1 -1
  21. package/x/index.html +2 -2
  22. package/x/install/aura.bundle.min.js +7 -4
  23. package/x/install/aura.bundle.min.js.map +2 -2
  24. package/x/install/plain.bundle.min.js +7 -4
  25. package/x/install/plain.bundle.min.js.map +2 -2
  26. package/s/demo/views/demonstration/style.css.ts +0 -124
  27. package/s/demo/views/demonstration/view.ts +0 -57
  28. package/x/demo/views/demonstration/style.css.d.ts +0 -2
  29. package/x/demo/views/demonstration/style.css.js +0 -123
  30. package/x/demo/views/demonstration/style.css.js.map +0 -1
  31. package/x/demo/views/demonstration/view.d.ts +0 -12
  32. package/x/demo/views/demonstration/view.js +0 -44
  33. 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;