@marigold/theme-docs 3.0.7 → 3.1.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/styles.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.5 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  @layer theme, base, components, utilities;
4
4
  @layer theme {
@@ -153,7 +153,7 @@
153
153
  --color-bg-disabled: var(--color-secondary-100);
154
154
  --color-bg-underlay: var(--color-secondary-500);
155
155
  --color-bg-surface: var(--color-secondary-50);
156
- --color-bg-surface-raised: var(--color-secondary-50);
156
+ --color-bg-surface-raised: var(--color-white);
157
157
  --color-bg-surface-lowered: var(--color-secondary-100);
158
158
  --color-bg-surface-overlay: var(--color-white);
159
159
  --color-bg-success: var(--color-lime-50);
@@ -436,6 +436,10 @@
436
436
  --tw-border-spacing-y: calc(var(--spacing) * 0);
437
437
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
438
438
  }
439
+ .translate-y-0\.5 {
440
+ --tw-translate-y: calc(var(--spacing) * 0.5);
441
+ translate: var(--tw-translate-x) var(--tw-translate-y);
442
+ }
439
443
  .cursor-pointer {
440
444
  cursor: pointer;
441
445
  }
@@ -463,6 +467,9 @@
463
467
  .items-center {
464
468
  align-items: center;
465
469
  }
470
+ .justify-center {
471
+ justify-content: center;
472
+ }
466
473
  .justify-start {
467
474
  justify-content: flex-start;
468
475
  }
@@ -501,6 +508,9 @@
501
508
  .overflow-y-auto {
502
509
  overflow-y: auto;
503
510
  }
511
+ .rounded {
512
+ border-radius: 0.25rem;
513
+ }
504
514
  .rounded-2xl {
505
515
  border-radius: var(--radius-2xl);
506
516
  }
@@ -542,6 +552,10 @@
542
552
  border-bottom-style: var(--tw-border-style);
543
553
  border-bottom-width: 2px;
544
554
  }
555
+ .border-none {
556
+ --tw-border-style: none;
557
+ border-style: none;
558
+ }
545
559
  .border-amber-50 {
546
560
  border-color: var(--color-amber-50);
547
561
  }
@@ -1371,6 +1385,9 @@
1371
1385
  .text-nowrap {
1372
1386
  text-wrap: nowrap;
1373
1387
  }
1388
+ .whitespace-nowrap {
1389
+ white-space: nowrap;
1390
+ }
1374
1391
  .text-amber-50 {
1375
1392
  color: var(--color-amber-50);
1376
1393
  }
@@ -1849,7 +1866,7 @@
1849
1866
  }
1850
1867
  }
1851
1868
  .shadow-bg-surface-raised {
1852
- --tw-shadow-color: #f8fafc;
1869
+ --tw-shadow-color: #ffffff;
1853
1870
  @supports (color: color-mix(in lab, red, red)) {
1854
1871
  --tw-shadow-color: color-mix(in oklab, var(--color-bg-surface-raised) var(--tw-shadow-alpha), transparent);
1855
1872
  }
@@ -2380,6 +2397,11 @@
2380
2397
  -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
2381
2398
  backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
2382
2399
  }
2400
+ .transition-\[color\,box-shadow\] {
2401
+ transition-property: color,box-shadow;
2402
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2403
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2404
+ }
2383
2405
  .transition-all {
2384
2406
  transition-property: all;
2385
2407
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@@ -2399,6 +2421,10 @@
2399
2421
  --tw-ease: var(--ease-in);
2400
2422
  transition-timing-function: var(--ease-in);
2401
2423
  }
2424
+ .outline-none {
2425
+ --tw-outline-style: none;
2426
+ outline-style: none;
2427
+ }
2402
2428
  .\[grid-template-areas\:\"icon_title_title\"\"none_content_content\"\] {
2403
2429
  grid-template-areas: "icon title title""none content content";
2404
2430
  }
@@ -2788,6 +2814,38 @@
2788
2814
  line-height: var(--leading-relaxed);
2789
2815
  }
2790
2816
  }
2817
+ .\[\&_svg\]\:size-4 {
2818
+ & svg {
2819
+ width: calc(var(--spacing) * 4);
2820
+ height: calc(var(--spacing) * 4);
2821
+ }
2822
+ }
2823
+ .\[\&_svg\]\:opacity-60 {
2824
+ & svg {
2825
+ opacity: 60%;
2826
+ }
2827
+ }
2828
+ .\[\&_svg\]\:transition-opacity {
2829
+ & svg {
2830
+ transition-property: opacity;
2831
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2832
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2833
+ }
2834
+ }
2835
+ .hover\:\[\&_svg\]\:opacity-100 {
2836
+ &:where([data-rac])[data-hovered] {
2837
+ & svg {
2838
+ opacity: 100%;
2839
+ }
2840
+ }
2841
+ @media (hover: hover) {
2842
+ &:where(:not([data-rac])):hover {
2843
+ & svg {
2844
+ opacity: 100%;
2845
+ }
2846
+ }
2847
+ }
2848
+ }
2791
2849
  }
2792
2850
  @layer base {
2793
2851
  *,
@@ -2808,6 +2866,21 @@
2808
2866
  inherits: false;
2809
2867
  initial-value: 0;
2810
2868
  }
2869
+ @property --tw-translate-x {
2870
+ syntax: "*";
2871
+ inherits: false;
2872
+ initial-value: 0;
2873
+ }
2874
+ @property --tw-translate-y {
2875
+ syntax: "*";
2876
+ inherits: false;
2877
+ initial-value: 0;
2878
+ }
2879
+ @property --tw-translate-z {
2880
+ syntax: "*";
2881
+ inherits: false;
2882
+ initial-value: 0;
2883
+ }
2811
2884
  @property --tw-border-style {
2812
2885
  syntax: "*";
2813
2886
  inherits: false;
@@ -2993,21 +3066,6 @@
2993
3066
  initial-value: "";
2994
3067
  inherits: false;
2995
3068
  }
2996
- @property --tw-translate-x {
2997
- syntax: "*";
2998
- inherits: false;
2999
- initial-value: 0;
3000
- }
3001
- @property --tw-translate-y {
3002
- syntax: "*";
3003
- inherits: false;
3004
- initial-value: 0;
3005
- }
3006
- @property --tw-translate-z {
3007
- syntax: "*";
3008
- inherits: false;
3009
- initial-value: 0;
3010
- }
3011
3069
  @property --tw-divide-y-reverse {
3012
3070
  syntax: "*";
3013
3071
  inherits: false;
@@ -3018,6 +3076,9 @@
3018
3076
  *, ::before, ::after, ::backdrop {
3019
3077
  --tw-border-spacing-x: 0;
3020
3078
  --tw-border-spacing-y: 0;
3079
+ --tw-translate-x: 0;
3080
+ --tw-translate-y: 0;
3081
+ --tw-translate-z: 0;
3021
3082
  --tw-border-style: solid;
3022
3083
  --tw-leading: initial;
3023
3084
  --tw-font-weight: initial;
@@ -3061,9 +3122,6 @@
3061
3122
  --tw-backdrop-sepia: initial;
3062
3123
  --tw-ease: initial;
3063
3124
  --tw-content: "";
3064
- --tw-translate-x: 0;
3065
- --tw-translate-y: 0;
3066
- --tw-translate-z: 0;
3067
3125
  --tw-divide-y-reverse: 0;
3068
3126
  }
3069
3127
  }
package/dist/theme.css CHANGED
@@ -151,7 +151,7 @@
151
151
  --color-bg-underlay: var(--color-secondary-500);
152
152
 
153
153
  --color-bg-surface: var(--color-secondary-50);
154
- --color-bg-surface-raised: var(--color-secondary-50);
154
+ --color-bg-surface-raised: var(--color-white);
155
155
  --color-bg-surface-lowered: var(--color-secondary-100);
156
156
  --color-bg-surface-overlay: var(--color-white);
157
157
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marigold/theme-docs",
3
- "version": "3.0.7",
3
+ "version": "3.1.1",
4
4
  "description": "Marigold Docs Theme",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -41,17 +41,17 @@
41
41
  "directory": "themes/theme-docs"
42
42
  },
43
43
  "devDependencies": {
44
- "@tailwindcss/postcss": "4.1.5",
44
+ "@tailwindcss/postcss": "4.1.11",
45
45
  "cssnano": "7.0.7",
46
46
  "postcss-cli": "11.0.1",
47
47
  "postcss-prefix-selector": "2.1.1",
48
- "tailwindcss": "4.1.5",
48
+ "tailwindcss": "4.1.11",
49
49
  "tsup": "8.4.0",
50
50
  "@marigold/tsconfig": "0.4.0"
51
51
  },
52
52
  "dependencies": {
53
- "@marigold/components": "12.0.5",
54
- "@marigold/system": "12.0.5",
53
+ "@marigold/components": "14.0.0",
54
+ "@marigold/system": "14.0.0",
55
55
  "@marigold/theme-plugins": "1.0.1"
56
56
  },
57
57
  "scripts": {