@x-wave/blog 1.0.2 → 1.0.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@x-wave/blog",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -20,7 +20,7 @@
20
20
  "types": "./types/index.d.ts"
21
21
  },
22
22
  "./styles": {
23
- "import": "./styles/main.scss"
23
+ "import": "./styles/index.css"
24
24
  }
25
25
  },
26
26
  "scripts": {
@@ -0,0 +1,217 @@
1
+ /*
2
+ Main styles entry point - imports all required stylesheets*/
3
+ .xw-blog-root {
4
+ width: 100%;
5
+ height: 100%;
6
+ line-height: 1.5;
7
+ -webkit-font-smoothing: antialiased;
8
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
9
+ background-color: var(--xw-background);
10
+ color: var(--xw-foreground);
11
+ }
12
+ .xw-blog-root *,
13
+ .xw-blog-root *::before,
14
+ .xw-blog-root *::after {
15
+ box-sizing: border-box;
16
+ }
17
+ .xw-blog-root img,
18
+ .xw-blog-root picture,
19
+ .xw-blog-root video,
20
+ .xw-blog-root canvas,
21
+ .xw-blog-root svg {
22
+ display: block;
23
+ max-width: 100%;
24
+ }
25
+ .xw-blog-root p,
26
+ .xw-blog-root h1,
27
+ .xw-blog-root h2,
28
+ .xw-blog-root h3,
29
+ .xw-blog-root h4,
30
+ .xw-blog-root h5,
31
+ .xw-blog-root h6 {
32
+ overflow-wrap: break-word;
33
+ }
34
+ .xw-blog-root h1 {
35
+ font-size: 1.875rem;
36
+ font-weight: 600;
37
+ line-height: 1.2;
38
+ letter-spacing: -0.025em;
39
+ margin-bottom: 1.5rem;
40
+ }
41
+ .xw-blog-root h2 {
42
+ font-size: 1.5rem;
43
+ font-weight: 500;
44
+ line-height: 1.3;
45
+ letter-spacing: -0.02em;
46
+ margin-bottom: 1rem;
47
+ margin-top: 2.5rem;
48
+ }
49
+ .xw-blog-root h3 {
50
+ font-size: 1.25rem;
51
+ font-weight: 500;
52
+ line-height: 1.4;
53
+ letter-spacing: -0.015em;
54
+ margin-bottom: 0.75rem;
55
+ margin-top: 2rem;
56
+ }
57
+ .xw-blog-root h4 {
58
+ font-size: 1.125rem;
59
+ font-weight: 500;
60
+ line-height: 1.4;
61
+ letter-spacing: -0.01em;
62
+ margin-bottom: 0.5rem;
63
+ margin-top: 1.5rem;
64
+ }
65
+ .xw-blog-root h5 {
66
+ font-size: 1rem;
67
+ font-weight: 500;
68
+ line-height: 1.5;
69
+ margin-bottom: 0.5rem;
70
+ margin-top: 1.25rem;
71
+ }
72
+ .xw-blog-root h6 {
73
+ font-size: 0.875rem;
74
+ font-weight: 500;
75
+ line-height: 1.5;
76
+ margin-bottom: 0.5rem;
77
+ margin-top: 1rem;
78
+ }
79
+ .xw-blog-root p {
80
+ font-size: 1rem;
81
+ line-height: 1.65;
82
+ margin-bottom: 1rem;
83
+ }
84
+ .xw-blog-root code {
85
+ font-family: ui-monospace, "SFMono-Regular", "Consolas", "Liberation Mono", "Menlo", monospace;
86
+ font-size: 0.875rem;
87
+ background-color: var(--xw-muted);
88
+ padding: 0.1875rem 0.4375rem;
89
+ border-radius: 0.25rem;
90
+ font-weight: 500;
91
+ }
92
+ .xw-blog-root pre {
93
+ font-family: ui-monospace, "SFMono-Regular", "Consolas", "Liberation Mono", "Menlo", monospace;
94
+ background-color: var(--xw-muted);
95
+ padding: 1.25rem;
96
+ border-radius: 0.75rem;
97
+ overflow-x: auto;
98
+ margin: 1.5rem 0;
99
+ border: 1px solid var(--xw-border);
100
+ }
101
+ .xw-blog-root pre code {
102
+ background-color: transparent;
103
+ padding: 0;
104
+ font-weight: 400;
105
+ }
106
+ .xw-blog-root :focus-visible {
107
+ outline: 2px solid var(--xw-ring);
108
+ outline-offset: 2px;
109
+ }
110
+ .xw-blog-root ::selection {
111
+ background-color: var(--xw-accent);
112
+ color: var(--xw-accent-foreground);
113
+ }
114
+ .xw-blog-root .sr-only {
115
+ position: absolute !important;
116
+ width: 1px !important;
117
+ height: 1px !important;
118
+ padding: 0 !important;
119
+ margin: -1px !important;
120
+ overflow: hidden !important;
121
+ clip: rect(0, 0, 0, 0) !important;
122
+ white-space: nowrap !important;
123
+ border: 0 !important;
124
+ }
125
+ .xw-blog-root .text-muted {
126
+ color: var(--xw-muted-foreground);
127
+ }
128
+ .xw-blog-root .text-destructive {
129
+ color: var(--xw-destructive);
130
+ }
131
+ .xw-blog-root .bg-muted {
132
+ background-color: var(--xw-muted);
133
+ }
134
+ .xw-blog-root .border {
135
+ border: 1px solid var(--xw-border);
136
+ }
137
+ .xw-blog-root .rounded {
138
+ border-radius: 0.5rem;
139
+ }
140
+ .xw-blog-root .shadow {
141
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
142
+ }
143
+
144
+ :root {
145
+ --xw-radius: 0.625rem;
146
+ --xw-background: oklch(1 0 0);
147
+ --xw-foreground: oklch(0.145 0 0);
148
+ --xw-card: oklch(1 0 0);
149
+ --xw-card-foreground: oklch(0.145 0 0);
150
+ --xw-popover: oklch(1 0 0);
151
+ --xw-popover-foreground: oklch(0.145 0 0);
152
+ --xw-primary: oklch(0.205 0 0);
153
+ --xw-primary-foreground: oklch(0.985 0 0);
154
+ --xw-secondary: oklch(0.97 0 0);
155
+ --xw-secondary-foreground: oklch(0.205 0 0);
156
+ --xw-muted: oklch(0.97 0 0);
157
+ --xw-muted-foreground: oklch(0.556 0 0);
158
+ --xw-accent: oklch(0.97 0 0);
159
+ --xw-accent-foreground: oklch(0.205 0 0);
160
+ --xw-destructive: oklch(0.577 0.245 27.325);
161
+ --xw-border: oklch(0.922 0 0);
162
+ --xw-input: oklch(0.922 0 0);
163
+ --xw-ring: oklch(0.708 0 0);
164
+ --xw-link: rgb(211, 48, 121);
165
+ --xw-chart-1: oklch(0.646 0.222 41.116);
166
+ --xw-chart-2: oklch(0.6 0.118 184.704);
167
+ --xw-chart-3: oklch(0.398 0.07 227.392);
168
+ --xw-chart-4: oklch(0.828 0.189 84.429);
169
+ --xw-chart-5: oklch(0.769 0.188 70.08);
170
+ --xw-sidebar: oklch(0.97 0 0);
171
+ --xw-sidebar-foreground: oklch(0.145 0 0);
172
+ --xw-sidebar-primary: oklch(0.205 0 0);
173
+ --xw-sidebar-primary-foreground: oklch(0.985 0 0);
174
+ --xw-sidebar-accent: oklch(0.97 0 0);
175
+ --xw-sidebar-accent-foreground: oklch(0.205 0 0);
176
+ --xw-sidebar-border: oklch(0.922 0 0);
177
+ --xw-sidebar-ring: oklch(0.708 0 0);
178
+ }
179
+
180
+ /*
181
+ Dark mode
182
+ */
183
+ .dark {
184
+ --xw-background: oklch(0.145 0 0);
185
+ --xw-foreground: oklch(0.985 0 0);
186
+ --xw-card: oklch(0.205 0 0);
187
+ --xw-card-foreground: oklch(0.985 0 0);
188
+ --xw-popover: oklch(0.205 0 0);
189
+ --xw-popover-foreground: oklch(0.985 0 0);
190
+ --xw-primary: oklch(0.922 0 0);
191
+ --xw-primary-foreground: oklch(0.205 0 0);
192
+ --xw-secondary: oklch(0.269 0 0);
193
+ --xw-secondary-foreground: oklch(0.985 0 0);
194
+ --xw-muted: oklch(0.269 0 0);
195
+ --xw-muted-foreground: oklch(0.708 0 0);
196
+ --xw-accent: oklch(0.269 0 0);
197
+ --xw-accent-foreground: oklch(0.985 0 0);
198
+ --xw-destructive: oklch(0.704 0.191 22.216);
199
+ --xw-border: oklch(1 0 0 / 10%);
200
+ --xw-input: oklch(1 0 0 / 15%);
201
+ --xw-ring: oklch(0.556 0 0);
202
+ --xw-link: rgb(211, 48, 121);
203
+ --xw-chart-1: oklch(0.488 0.243 264.376);
204
+ --xw-chart-2: oklch(0.696 0.17 162.48);
205
+ --xw-chart-3: oklch(0.769 0.188 70.08);
206
+ --xw-chart-4: oklch(0.627 0.265 303.9);
207
+ --xw-chart-5: oklch(0.645 0.246 16.439);
208
+ --xw-sidebar: oklch(0.205 0 0);
209
+ --xw-sidebar-foreground: oklch(0.985 0 0);
210
+ --xw-sidebar-primary: oklch(0.488 0.243 264.376);
211
+ --xw-sidebar-primary-foreground: oklch(0.985 0 0);
212
+ --xw-sidebar-accent: oklch(0.269 0 0);
213
+ --xw-sidebar-accent-foreground: oklch(0.985 0 0);
214
+ --xw-sidebar-border: oklch(1 0 0 / 10%);
215
+ --xw-sidebar-ring: oklch(0.556 0 0);
216
+ }
217
+ ._tabContainer_zk6h4_1{display:inline-flex;background-color:var(--xw-card);border:1px solid var(--xw-border);border-radius:.5rem;margin-bottom:2rem;overflow:hidden}._tab_zk6h4_1{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._tab_zk6h4_1:focus-visible{outline:2px solid var(--xw-ring);outline-offset:2px}._tab_zk6h4_1:disabled{pointer-events:none;opacity:.5}._tab_zk6h4_1{padding:.5rem 1rem;font-size:.87rem;font-weight:500;background-color:transparent;border:none;border-radius:0;color:var(--xw-muted-foreground);cursor:pointer;white-space:nowrap}._tab_zk6h4_1:not(:last-child){border-right:1px solid var(--xw-border)}._tab_zk6h4_1._active_zk6h4_45{background-color:var(--xw-accent);color:var(--xw-accent-foreground)}._tab_zk6h4_1:hover:not(._active_zk6h4_45){background-color:var(--xw-muted);color:var(--xw-foreground)}._tab_zk6h4_1:focus-visible{outline:2px solid var(--xw-accent);outline-offset:-2px}._tableOfContents_11q9u_1{position:sticky;top:5rem;align-self:flex-start;height:fit-content;max-height:calc(100vh - 8rem);overflow-y:auto;padding:2rem 0 2rem 1.5rem;margin-left:2rem;background:transparent;border-left:1px solid var(--xw-border);flex-shrink:0}@media(max-width:1024px){._tableOfContents_11q9u_1{display:none}}._header_11q9u_20{margin-bottom:1rem}._title_11q9u_24{font-size:.75rem;font-weight:500;color:var(--xw-muted-foreground);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.5rem}._nav_11q9u_33 ul{margin:0;padding:0;list-style:none}._list_11q9u_39{display:flex;flex-direction:column;gap:.125rem;margin:0}._link_11q9u_46{display:block;width:100%;padding:.25rem 0;text-align:left;background:none;border:none;cursor:pointer;font-size:.875rem;line-height:1.4;color:var(--xw-muted-foreground);text-decoration:none;border-radius:.25rem;transition:all .15s cubic-bezier(.4,0,.2,1);position:relative;font-family:inherit}._link_11q9u_46:hover{color:var(--xw-foreground)}._link_11q9u_46:focus{outline:none;color:var(--xw-foreground)}._link_11q9u_46._active_11q9u_70{color:var(--xw-primary);font-weight:500}._link_11q9u_46._active_11q9u_70:before{content:"";position:absolute;left:-1.5rem;top:50%;transform:translateY(-50%);width:1px;height:1rem;background-color:var(--xw-primary);border-radius:.5px}._level1_11q9u_86{font-weight:500;padding-left:0;margin-bottom:.125rem}._level2_11q9u_92{padding-left:.5rem;margin-bottom:.0625rem}._level3_11q9u_97{padding-left:1rem;font-size:.8125rem;margin-bottom:.0625rem}._level4_11q9u_103{padding-left:1.5rem;font-size:.8125rem;margin-bottom:.0625rem}._level5_11q9u_109{padding-left:2rem;font-size:.75rem;margin-bottom:.0625rem}._level6_11q9u_115{padding-left:2.5rem;font-size:.75rem;margin-bottom:.0625rem}._tableOfContents_11q9u_1::-webkit-scrollbar{width:4px}._tableOfContents_11q9u_1::-webkit-scrollbar-track{background:transparent}._tableOfContents_11q9u_1::-webkit-scrollbar-thumb{background:var(--xw-border);border-radius:2px}._tableOfContents_11q9u_1::-webkit-scrollbar-thumb:hover{background:var(--xw-muted-foreground)}._overlay_1e1d4_1{position:fixed;top:0;left:0;right:0;bottom:0;background:#00000080;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:2000;display:flex;align-items:flex-start;justify-content:center;padding-top:10vh;animation:_fadeIn_1e1d4_1 .2s ease;height:100vh}@keyframes _fadeIn_1e1d4_1{0%{opacity:0}to{opacity:1}}._modal_1e1d4_26{width:90%;max-width:600px;background:var(--xw-card);border:1px solid var(--xw-border);border-radius:.75rem;box-shadow:0 20px 60px #0000004d;animation:_slideIn_1e1d4_1 .2s ease;max-height:80vh;display:flex;flex-direction:column;overflow:hidden}@keyframes _slideIn_1e1d4_1{0%{transform:translateY(-20px);opacity:0}to{transform:translateY(0);opacity:1}}._header_1e1d4_50{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid var(--xw-border)}._title_1e1d4_58{font-size:1.125rem;font-weight:600;color:var(--xw-foreground);margin:0}._closeButton_1e1d4_65{background:none;border:none;color:var(--xw-muted-foreground);cursor:pointer;padding:.25rem;display:flex;align-items:center;justify-content:center;border-radius:.25rem;transition:all .2s ease}._closeButton_1e1d4_65 svg{width:1.25rem;height:1.25rem}._closeButton_1e1d4_65:hover{background:var(--xw-secondary);color:var(--xw-foreground)}._results_1e1d4_86{flex:1;overflow-y:auto;padding:.5rem;min-height:200px;max-height:400px}._resultsList_1e1d4_94{list-style:none;padding:0;margin:0}._resultItem_1e1d4_100{display:flex;flex-direction:column;align-items:flex-start;gap:.25rem;width:100%;padding:.75rem 1rem;background:none;border:none;border-radius:.5rem;cursor:pointer;text-align:left;transition:all .15s ease;color:var(--xw-foreground)}._resultItem_1e1d4_100:hover{background:var(--xw-secondary)}._resultTitle_1e1d4_119{font-weight:500;font-size:.95rem}._resultSlug_1e1d4_124{font-size:.8rem;color:var(--xw-muted-foreground);opacity:.8}._noResults_1e1d4_130{padding:3rem 1rem;text-align:center;color:var(--xw-muted-foreground);font-size:.9rem}._tags_11t8a_1{display:flex;align-items:center;gap:.75rem;margin:2rem 0 1rem;padding:1rem 0 0;border-top:1px solid var(--xw-border)}._tags_11t8a_1._compact_11t8a_9{margin:2rem 0 1rem;padding:1rem 0 0;border-top:1px solid var(--xw-border)}._tagLabel_11t8a_15{display:flex;align-items:center;gap:.5rem;color:var(--xw-muted-foreground);font-size:.875rem;font-weight:500;white-space:nowrap}._tagIcon_11t8a_25{width:1.125rem;height:1.125rem}._tagList_11t8a_30{display:flex;flex-wrap:wrap;gap:.5rem}._tag_11t8a_1{display:inline-flex;align-items:center;padding:.25rem .75rem;background:none;border:1px solid var(--xw-border);border-radius:.75rem;color:var(--xw-muted-foreground);font-size:.8rem;font-weight:400;cursor:pointer;transition:all .2s ease}._tag_11t8a_1:hover{color:var(--xw-foreground);border-color:var(--xw-ring)}._contentPage_1nxj5_1{flex:1;max-width:48rem;margin:0;padding:0 0 2rem}@media(max-width:767px){._contentPage_1nxj5_1{padding:1.5rem;max-width:none}}@media(max-width:1024px){._contentPage_1nxj5_1{max-width:none;padding:2rem}}._metadata_1nxj5_20{display:flex;gap:1rem;align-items:center;padding:.5rem 0 1rem;color:var(--xw-muted-foreground);font-size:.875rem;border-bottom:1px solid var(--xw-border);margin-bottom:1rem}._metadata_1nxj5_20 ._author_1nxj5_30,._metadata_1nxj5_20 ._date_1nxj5_31{display:flex;align-items:center;gap:.5rem}._metadata_1nxj5_20 ._author_1nxj5_30{font-weight:500;color:var(--xw-foreground)}@media(max-width:767px){._metadata_1nxj5_20{flex-direction:column;align-items:flex-start;gap:.25rem}}._loadingContainer_1nxj5_48,._errorContainer_1nxj5_49{display:flex;align-items:center;justify-content:center;height:16rem}._loadingContainer_1nxj5_48{flex-direction:column;align-items:flex-start;gap:1.5rem;padding:2rem 0}@keyframes _shimmer_1nxj5_1{0%{background-position:-1000px 0}to{background-position:1000px 0}}._skeletonTitle_1nxj5_71{width:60%;height:2.5rem;background:linear-gradient(90deg,var(--xw-muted) 0%,color-mix(in oklch,var(--xw-muted) 50%,white) 50%,var(--xw-muted) 100%);background-size:1000px 100%;animation:_shimmer_1nxj5_1 2s infinite linear;border-radius:.5rem}._skeletonParagraph_1nxj5_80{width:100%;height:1rem;background:linear-gradient(90deg,var(--xw-muted) 0%,color-mix(in oklch,var(--xw-muted) 50%,white) 50%,var(--xw-muted) 100%);background-size:1000px 100%;animation:_shimmer_1nxj5_1 2s infinite linear;border-radius:.25rem;margin-bottom:.5rem}._skeletonParagraph_1nxj5_80:not(:last-child){margin-bottom:1rem}._skeletonParagraphShort_1nxj5_93{width:70%;height:1rem;background:linear-gradient(90deg,var(--xw-muted) 0%,color-mix(in oklch,var(--xw-muted) 50%,white) 50%,var(--xw-muted) 100%);background-size:1000px 100%;animation:_shimmer_1nxj5_1 2s infinite linear;border-radius:.25rem}._loadingText_1nxj5_102{color:var(--xw-muted-foreground);font-size:1rem}._errorText_1nxj5_107{color:var(--xw-destructive);font-size:1rem}._mdxContent_1nxj5_112{max-width:none}._mdxContent_1nxj5_112 h1{font-size:1.875rem;font-weight:600;letter-spacing:-.025em;margin-bottom:1.5rem;border-bottom:1px solid var(--xw-border);padding-bottom:.75rem;line-height:1.2;scroll-margin-top:5rem}._mdxContent_1nxj5_112 h1._withMetadata_1nxj5_125{border-bottom:none;padding-bottom:0;margin-bottom:.5rem}._mdxContent_1nxj5_112 h1 a{color:inherit;text-decoration:none;border:none;position:relative}._mdxContent_1nxj5_112 h1 a:hover{color:inherit;border:none}._mdxContent_1nxj5_112 h1 a:hover:before{content:"#";position:absolute;left:-1.5rem;color:var(--xw-link);opacity:.7;font-weight:400}._mdxContent_1nxj5_112 h2{font-size:1.5rem;font-weight:500;letter-spacing:-.02em;margin-bottom:1rem;margin-top:2.5rem;border-bottom:1px solid var(--xw-border);padding-bottom:.5rem;line-height:1.3;scroll-margin-top:5rem}._mdxContent_1nxj5_112 h2 a{color:inherit;text-decoration:none;border:none;position:relative}._mdxContent_1nxj5_112 h2 a:hover{color:inherit;border:none}._mdxContent_1nxj5_112 h2 a:hover:before{content:"#";position:absolute;left:-1.5rem;color:var(--xw-link);opacity:.7;font-weight:400}._mdxContent_1nxj5_112 h3{font-size:1.25rem;font-weight:500;letter-spacing:-.015em;margin-bottom:.75rem;margin-top:2rem;line-height:1.4;scroll-margin-top:5rem}._mdxContent_1nxj5_112 h3 a{color:inherit;text-decoration:none;border:none;position:relative}._mdxContent_1nxj5_112 h3 a:hover{color:inherit;border:none}._mdxContent_1nxj5_112 h3 a:hover:before{content:"#";position:absolute;left:-1.5rem;color:var(--xw-link);opacity:.7;font-weight:400}._mdxContent_1nxj5_112 h4{font-size:1.125rem;font-weight:500;letter-spacing:-.01em;margin-bottom:.5rem;margin-top:1.5rem;line-height:1.4;scroll-margin-top:5rem}._mdxContent_1nxj5_112 h4 a{color:inherit;text-decoration:none;border:none;position:relative}._mdxContent_1nxj5_112 h4 a:hover{color:inherit;border:none}._mdxContent_1nxj5_112 h4 a:hover:before{content:"#";position:absolute;left:-1.5rem;color:var(--xw-link);opacity:.7;font-weight:400}._mdxContent_1nxj5_112 h5{font-size:1rem;font-weight:500;margin-bottom:.5rem;margin-top:1.25rem;line-height:1.5}._mdxContent_1nxj5_112 h6{font-size:.875rem;font-weight:500;margin-bottom:.5rem;margin-top:1rem;line-height:1.5}._mdxContent_1nxj5_112 p{font-size:1rem;line-height:1.65;margin-bottom:1rem;color:var(--xw-foreground)}._mdxContent_1nxj5_112 ul,._mdxContent_1nxj5_112 ol{margin-bottom:1rem;padding-left:1.5rem}._mdxContent_1nxj5_112 ul li,._mdxContent_1nxj5_112 ol li{font-size:1rem;line-height:1.65;margin-bottom:.375rem}._mdxContent_1nxj5_112 ul ul,._mdxContent_1nxj5_112 ul ol,._mdxContent_1nxj5_112 ol ul,._mdxContent_1nxj5_112 ol ol{margin-top:.375rem;margin-bottom:.375rem}._mdxContent_1nxj5_112 ul{list-style-type:disc}._mdxContent_1nxj5_112 ol{list-style-type:decimal}._mdxContent_1nxj5_112 code{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:.875rem;background-color:var(--xw-muted);padding:.1875rem .4375rem;border-radius:.25rem;color:var(--xw-foreground);font-weight:500}._mdxContent_1nxj5_112 pre{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;background-color:var(--xw-muted);padding:1.25rem;border-radius:.75rem;overflow-x:auto;margin:1.5rem 0;position:relative;border:1px solid var(--xw-border)}._mdxContent_1nxj5_112 pre code{background-color:transparent;padding:0;color:inherit;font-weight:400}._mdxContent_1nxj5_112 ._codeBlock_1nxj5_300{position:relative;margin-bottom:1.5rem}._mdxContent_1nxj5_112 ._codeLanguage_1nxj5_304{position:absolute;top:.5rem;right:.5rem;font-size:.75rem;color:var(--xw-muted-foreground);background-color:var(--xw-background);padding:.25rem .5rem;border-radius:.25rem;border:1px solid var(--xw-border)}._mdxContent_1nxj5_112 blockquote{border-left:3px solid var(--xw-accent);padding-left:1rem;font-style:italic;color:var(--xw-muted-foreground);margin-bottom:1rem;margin-top:1rem}._mdxContent_1nxj5_112 blockquote p{margin-bottom:.5rem}._mdxContent_1nxj5_112 blockquote p:last-child{margin-bottom:0}._mdxContent_1nxj5_112 a{color:var(--xw-link);text-decoration:none;transition:color .15s cubic-bezier(.4,0,.2,1);border-bottom:1px solid transparent}._mdxContent_1nxj5_112 a:hover{color:color-mix(in oklch,var(--xw-link) 80%,transparent);border-bottom-color:currentColor}._mdxContent_1nxj5_112 strong{font-weight:600}._mdxContent_1nxj5_112 em{font-style:italic}._mdxContent_1nxj5_112 table{width:100%;border-collapse:collapse;margin:1.5rem 0;font-size:.95rem}._mdxContent_1nxj5_112 table th,._mdxContent_1nxj5_112 table td{padding:.75rem 1rem;text-align:left;border-bottom:1px solid var(--xw-border);line-height:1.4}._mdxContent_1nxj5_112 table th{font-weight:500;background-color:var(--xw-muted);font-size:.875rem;letter-spacing:.025em}._mdxContent_1nxj5_112 table tbody tr:hover{background-color:color-mix(in oklch,var(--xw-muted) 50%,transparent)}._mdxContent_1nxj5_112 img{max-width:100%;height:auto;border-radius:.5rem;margin:1.5rem 0;border:1px solid var(--xw-border)}._mdxContent_1nxj5_112 hr{border:none;border-top:1px solid var(--xw-border);margin:2rem 0}._searchButton_1k9sl_1{display:flex;align-items:center;gap:.5rem;padding:.5rem .75rem;border-radius:.375rem;background:none;border:none;color:var(--xw-muted-foreground);cursor:pointer;transition:all .2s ease;font-size:.875rem}._searchButton_1k9sl_1:hover{border-color:var(--xw-input)}._searchButton_1k9sl_1 ._searchIcon_1k9sl_17{width:1rem;height:1rem;opacity:.6}@media(max-width:768px){._searchButton_1k9sl_1 ._searchHint_1k9sl_23{display:none}}._searchButton_1k9sl_1 ._kbd_1k9sl_27{display:none;padding:.125rem .375rem;background:var(--xw-card);border:1px solid var(--xw-border);border-radius:.25rem;font-size:.75rem;font-family:monospace}@media(min-width:768px){._searchButton_1k9sl_1 ._kbd_1k9sl_27{display:block}}._searchOverlay_1k9sl_42{position:fixed;top:0;left:0;right:0;bottom:0;background:#00000080;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:2000;display:flex;align-items:flex-start;justify-content:center;padding-top:10vh;animation:_fadeIn_1k9sl_1 .2s ease;height:100vh}@keyframes _fadeIn_1k9sl_1{0%{opacity:0}to{opacity:1}}._searchModal_1k9sl_67{width:90%;max-width:600px;background:var(--xw-card);border:1px solid var(--xw-border);border-radius:.75rem;box-shadow:0 20px 60px #0000004d;animation:_slideIn_1k9sl_1 .2s ease;max-height:80vh;display:flex;flex-direction:column;overflow:hidden}@keyframes _slideIn_1k9sl_1{0%{transform:translateY(-20px);opacity:0}to{transform:translateY(0);opacity:1}}._searchHeader_1k9sl_91{display:flex;align-items:center;gap:.75rem;padding:1rem 1.25rem;border-bottom:1px solid var(--xw-border)}._searchHeader_1k9sl_91 ._searchIcon_1k9sl_17{width:1.25rem;height:1.25rem;opacity:.5;flex-shrink:0}._searchInput_1k9sl_105{flex:1;border:none;background:transparent;color:var(--xw-foreground);font-size:1rem;outline:none}._searchInput_1k9sl_105:focus{border:none;outline:none;box-shadow:none}._searchInput_1k9sl_105::placeholder{color:var(--xw-muted-foreground);opacity:.6}._closeButton_1k9sl_123{background:none;border:none;color:var(--xw-muted-foreground);cursor:pointer;padding:.25rem;display:flex;align-items:center;justify-content:center;border-radius:.25rem;transition:all .2s ease}._closeButton_1k9sl_123 svg{width:1.25rem;height:1.25rem}._closeButton_1k9sl_123:hover{background:var(--xw-secondary);color:var(--xw-foreground)}._searchResults_1k9sl_144{flex:1;overflow-y:auto;padding:.5rem;min-height:200px;max-height:400px}._resultsList_1k9sl_152{list-style:none;padding:0;margin:0}._resultItem_1k9sl_158{display:flex;flex-direction:column;align-items:flex-start;gap:.25rem;width:100%;padding:.75rem 1rem;background:none;border:none;border-radius:.5rem;cursor:pointer;text-align:left;transition:all .15s ease;color:var(--xw-foreground)}._resultItem_1k9sl_158:hover,._resultItem_1k9sl_158._selected_1k9sl_173{background:var(--xw-secondary)}._resultItem_1k9sl_158 ._resultTitle_1k9sl_176{font-weight:500;font-size:.95rem}._resultItem_1k9sl_158 ._resultSlug_1k9sl_180{font-size:.8rem;color:var(--xw-muted-foreground);opacity:.8}._noResults_1k9sl_186{padding:3rem 1rem;text-align:center;color:var(--xw-muted-foreground);font-size:.9rem}._searchHints_1k9sl_193{display:flex;align-items:center;gap:1.5rem;padding:.75rem 1.25rem;border-top:1px solid var(--xw-border);background:var(--xw-secondary);font-size:.8rem;color:var(--xw-muted-foreground)}@media(max-width:768px){._searchHints_1k9sl_193{flex-direction:column;align-items:flex-start;gap:.5rem}}._searchHints_1k9sl_193 ._hint_1k9sl_210{display:flex;align-items:center;gap:.5rem}._searchHints_1k9sl_193 ._hint_1k9sl_210 kbd{padding:.125rem .375rem;background:var(--xw-card);border:1px solid var(--xw-border);border-radius:.25rem;font-size:.75rem;font-family:monospace;min-width:1.5rem;text-align:center}._header_jrobc_1{position:sticky;top:0;z-index:1020;background-color:#fffc;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);height:3.5rem;padding-left:16rem}.dark ._header_jrobc_1{background-color:#2020201a}@supports not (backdrop-filter: blur(12px)){._header_jrobc_1{background-color:var(--xw-background)}}@media(max-width:767px){._header_jrobc_1{padding:0}}._container_jrobc_24{width:100%;max-width:1400px;margin:0 auto;padding:0 1.5rem}@media(max-width:767px){._container_jrobc_24{padding:0 1rem}}._content_jrobc_36{display:flex;align-items:center;justify-content:space-between;height:3.5rem}._leftSection_jrobc_43{display:flex;align-items:center;gap:1rem}._mobileMenuButton_jrobc_49{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._mobileMenuButton_jrobc_49:focus-visible{outline:2px solid var(--xw-ring);outline-offset:2px}._mobileMenuButton_jrobc_49:disabled{pointer-events:none;opacity:.5}._mobileMenuButton_jrobc_49{padding:.5rem;background-color:transparent;color:var(--xw-muted-foreground);border-radius:.5rem;display:none}._mobileMenuButton_jrobc_49:hover{background-color:var(--xw-muted);color:var(--xw-foreground)}@media(max-width:767px){._mobileMenuButton_jrobc_49{display:flex}}._burgerIcon_jrobc_87{width:1.25rem;height:1.25rem}._logo_jrobc_92,._nav_jrobc_98{display:flex;align-items:center;gap:.5rem}@media(max-width:767px){._nav_jrobc_98{gap:.25rem}}._navLink_jrobc_109{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border-radius:.5rem;font-size:.875rem;font-weight:500;color:var(--xw-muted-foreground);text-decoration:none;transition:all .15s cubic-bezier(.4,0,.2,1)}._navLink_jrobc_109:hover{color:var(--xw-foreground)}._navLink_jrobc_109:focus{outline:none}._githubIcon_jrobc_128{width:1rem;height:1rem;flex-shrink:0;transition:transform .15s cubic-bezier(.4,0,.2,1)}._externalIcon_jrobc_135{width:1rem;height:1rem;flex-shrink:0}._supportDropdown_jrobc_141,._themeDropdown_jrobc_145{position:relative}._themeButton_jrobc_149{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem;border-radius:.5rem;font-size:.875rem;font-weight:500;color:var(--xw-muted-foreground);background:none;border:none;cursor:pointer;transition:all .15s cubic-bezier(.4,0,.2,1)}._themeButton_jrobc_149:hover{color:var(--xw-foreground);background-color:var(--xw-muted)}._themeButton_jrobc_149:focus{outline:none}._themeIcon_jrobc_171{width:1.125rem;height:1.125rem;flex-shrink:0}._supportButton_jrobc_177{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border-radius:.5rem;font-size:.875rem;font-weight:500;color:var(--xw-muted-foreground);background:none;border:none;cursor:pointer;transition:all .15s cubic-bezier(.4,0,.2,1)}._supportButton_jrobc_177:hover{color:var(--xw-foreground)}._supportButton_jrobc_177:focus{outline:none}._caretIcon_jrobc_198{width:.875rem;height:.875rem;flex-shrink:0;transition:transform .15s cubic-bezier(.4,0,.2,1)}button[aria-expanded=true] ._caretIcon_jrobc_198{transform:rotate(180deg)}._dropdownMenu_jrobc_208{position:absolute;top:calc(100% + .25rem);right:0;min-width:10rem;background-color:var(--xw-popover);border:1px solid var(--xw-border);border-radius:.5rem;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;z-index:1000;overflow:hidden}._dropdownItem_jrobc_221{display:flex;align-items:center;gap:.5rem;width:100%;padding:.5rem 1rem;font-size:.875rem;color:var(--xw-popover-foreground);text-decoration:none;background:none;border:none;cursor:pointer;text-align:left;transition:background-color .15s cubic-bezier(.4,0,.2,1)}._dropdownItem_jrobc_221:hover{background-color:var(--xw-muted)}._dropdownItem_jrobc_221:focus{outline:none;background-color:var(--xw-muted)}._dropdownIcon_jrobc_244{width:1rem;height:1rem;flex-shrink:0}@media(max-width:767px){._logoText_jrobc_251{font-size:1rem}._navLink_jrobc_109{padding:.25rem .5rem;font-size:.8rem;gap:.25rem}._githubIcon_jrobc_128{width:.875rem;height:.875rem}}._backdrop_1a7pu_1{position:fixed;top:0;left:0;right:0;bottom:0;background-color:#00000080;z-index:1040;opacity:0;visibility:hidden;transition:all .15s cubic-bezier(.4,0,.2,1)}._backdrop_1a7pu_1._open_1a7pu_13{opacity:1;visibility:visible}._mobileMenu_1a7pu_18{position:fixed;top:0;left:0;width:320px;height:100vh;background-color:var(--xw-background);border-right:1px solid var(--xw-border);z-index:1050;transform:translate(-100%);transition:transform .15s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;overflow:hidden}._mobileMenu_1a7pu_18._open_1a7pu_13{transform:translate(0)}._header_1a7pu_37{display:flex;align-items:center;justify-content:space-between;padding:1.5rem;border-bottom:1px solid var(--xw-border);flex-shrink:0}._brand_1a7pu_46{flex:1;display:flex;align-items:center;gap:.5rem}._cloudIcon_1a7pu_53{width:1.5rem;height:1.5rem;flex-shrink:0}._cloudIcon_1a7pu_53 .accent{fill:#d33079}._title_1a7pu_62{font-size:1.125rem;font-weight:600;color:var(--xw-foreground);margin:0}._closeButton_1a7pu_69{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._closeButton_1a7pu_69:focus-visible{outline:2px solid var(--xw-ring);outline-offset:2px}._closeButton_1a7pu_69:disabled{pointer-events:none;opacity:.5}._closeButton_1a7pu_69{padding:.5rem;background-color:transparent;color:var(--xw-muted-foreground);border-radius:.5rem}._closeButton_1a7pu_69:hover{background-color:var(--xw-muted);color:var(--xw-foreground)}._closeIcon_1a7pu_101{width:1.25rem;height:1.25rem}._languageSection_1a7pu_106{padding:1.5rem;border-bottom:1px solid var(--xw-border);flex-shrink:0}._languageSelect_1a7pu_112{position:relative;width:100%}._languageButton_1a7pu_117{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._languageButton_1a7pu_117:focus-visible{outline:2px solid var(--xw-ring);outline-offset:2px}._languageButton_1a7pu_117:disabled{pointer-events:none;opacity:.5}._languageButton_1a7pu_117{display:flex;align-items:center;justify-content:space-between;width:100%;padding:.5rem 1rem;background-color:var(--xw-background);border:1px solid var(--xw-border);color:var(--xw-foreground);gap:.5rem}._languageButton_1a7pu_117:hover,._languageButton_1a7pu_117[aria-expanded=true]{background-color:var(--xw-muted)}._icon_1a7pu_156{width:1rem;height:1rem;flex-shrink:0}._chevron_1a7pu_162{width:1rem;height:1rem;transition:transform .15s cubic-bezier(.4,0,.2,1);margin-left:auto}._languageButton_1a7pu_117[aria-expanded=true] ._chevron_1a7pu_162{transform:rotate(180deg)}._languageDropdown_1a7pu_172{position:absolute;top:100%;left:0;right:0;background-color:var(--xw-popover);border:1px solid var(--xw-border);border-radius:.5rem;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;z-index:1000;margin-top:.25rem}._languageOption_1a7pu_185{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._languageOption_1a7pu_185:focus-visible{outline:2px solid var(--xw-ring);outline-offset:2px}._languageOption_1a7pu_185:disabled{pointer-events:none;opacity:.5}._languageOption_1a7pu_185{width:100%;padding:.5rem 1rem;background-color:transparent;color:var(--xw-foreground);text-align:left;justify-content:flex-start;border-radius:0}._languageOption_1a7pu_185:first-child{border-top-left-radius:.5rem;border-top-right-radius:.5rem}._languageOption_1a7pu_185:last-child{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}._languageOption_1a7pu_185:hover{background-color:var(--xw-muted)}._languageOption_1a7pu_185._selected_1a7pu_226{background-color:var(--xw-accent);color:var(--xw-accent-foreground)}._scrollArea_1a7pu_231{flex:1;overflow-y:auto;padding:1.5rem 0}._navigation_1a7pu_237{padding:0 1.5rem}._section_1a7pu_241{margin-bottom:1rem}._sectionButton_1a7pu_245{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._sectionButton_1a7pu_245:focus-visible{outline:2px solid var(--xw-ring);outline-offset:2px}._sectionButton_1a7pu_245:disabled{pointer-events:none;opacity:.5}._sectionButton_1a7pu_245{display:flex;align-items:center;justify-content:space-between;width:100%;padding:.5rem 1rem;background-color:transparent;color:var(--xw-foreground);font-weight:600;gap:.5rem;border-radius:.5rem}._sectionButton_1a7pu_245:hover{background-color:var(--xw-muted)}._sectionButton_1a7pu_245 ._icon_1a7pu_156{transition:transform .15s cubic-bezier(.4,0,.2,1);margin-left:auto}._sectionButton_1a7pu_245._expanded_1a7pu_285 ._icon_1a7pu_156{transform:rotate(90deg)}._sectionItems_1a7pu_289{margin-top:.5rem;margin-left:1rem;display:flex;flex-direction:column;gap:.25rem}._navItem_1a7pu_297{display:block;padding:.5rem 1rem;border-radius:.5rem;color:var(--xw-muted-foreground);text-decoration:none;transition:all .15s cubic-bezier(.4,0,.2,1);font-size:.875rem}._navItem_1a7pu_297:hover{background-color:var(--xw-muted);color:var(--xw-foreground)}._navItem_1a7pu_297._active_1a7pu_310{background-color:var(--xw-accent);color:var(--xw-accent-foreground);font-weight:500}._navItemContent_1a7pu_316{display:flex;align-items:center;gap:.5rem}._navItemTitle_1a7pu_322{flex:1}@media(min-width:1024px){._mobileMenu_1a7pu_18,._backdrop_1a7pu_1{display:none}}._sidebar_1tdxt_1{position:fixed;top:0;left:0;width:16rem;height:100vh;background-color:var(--xw-sidebar);overflow-y:auto;z-index:1020}@media(max-width:767px){._sidebar_1tdxt_1{display:none}}._header_1tdxt_17{position:sticky;top:0;z-index:1020;padding:1rem;background-color:var(--xw-sidebar);display:flex;flex-direction:column;gap:.5rem;padding-bottom:0}._brand_1tdxt_29{display:flex;align-items:center;gap:.5rem}._cloudIcon_1tdxt_35{width:1.5rem;height:1.5rem;flex-shrink:0}._cloudIcon_1tdxt_35 .accent{fill:#d33079}._title_1tdxt_44{font-size:1rem;font-weight:600;line-height:1.5;margin:0;letter-spacing:-.02em;color:var(--xw-foreground)}._languageSelect_1tdxt_55{position:relative;margin-top:.25rem;width:100%}._languageButton_1tdxt_61{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._languageButton_1tdxt_61:focus-visible{outline:2px solid var(--xw-ring);outline-offset:2px}._languageButton_1tdxt_61:disabled{pointer-events:none;opacity:.5}._languageButton_1tdxt_61{display:flex;align-items:center;justify-content:space-between;padding:.25rem .5rem;width:100%;gap:.25rem;font-size:.8rem;background:transparent;border:1px solid var(--xw-border);border-radius:.25rem;color:var(--xw-muted-foreground)}._languageButton_1tdxt_61:hover{background-color:var(--xw-muted);color:var(--xw-foreground)}._languageButton_1tdxt_61 ._icon_1tdxt_99{width:.875rem;height:.875rem;flex-shrink:0}._languageButton_1tdxt_61 ._chevron_1tdxt_104{width:.875rem;height:.875rem;flex-shrink:0;transition:transform .15s cubic-bezier(.4,0,.2,1)}._languageButton_1tdxt_61[aria-expanded=true] ._chevron_1tdxt_104{transform:rotate(180deg)}._languageDropdown_1tdxt_114{position:absolute;top:100%;left:0;right:0;margin-top:.25rem;background-color:var(--xw-popover);border:1px solid var(--xw-border);border-radius:.5rem;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;z-index:1000;overflow:hidden}._languageOption_1tdxt_128{display:block;width:100%;padding:.25rem .5rem;text-align:left;background:none;border:none;color:var(--xw-popover-foreground);font-size:.85rem;cursor:pointer;transition:background-color .15s cubic-bezier(.4,0,.2,1)}._languageOption_1tdxt_128:hover{background-color:var(--xw-muted)}._languageOption_1tdxt_128:focus{outline:none;background-color:var(--xw-muted)}._languageOption_1tdxt_128._selected_1tdxt_147{background-color:var(--xw-muted);color:var(--xw-foreground)}._scrollArea_1tdxt_152{height:calc(100vh - 120px);padding:1rem .5rem 1rem 1rem;overflow-y:auto}._navigation_1tdxt_158{display:flex;flex-direction:column;gap:.125rem}._section_1tdxt_164{display:flex;flex-direction:column;gap:0}._sectionButton_1tdxt_170{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._sectionButton_1tdxt_170:focus-visible{outline:2px solid var(--xw-ring);outline-offset:2px}._sectionButton_1tdxt_170:disabled{pointer-events:none;opacity:.5}._sectionButton_1tdxt_170{display:flex;align-items:center;justify-content:space-between;width:100%;padding:.25rem .5rem;font-weight:500;font-size:.85rem;color:var(--xw-muted-foreground);background:transparent;text-align:left;letter-spacing:-.01em;border:none}._sectionButton_1tdxt_170:hover{color:var(--xw-foreground)}._sectionButton_1tdxt_170 ._icon_1tdxt_99{width:.875rem;height:.875rem;transition:transform .15s cubic-bezier(.4,0,.2,1)}._sectionButton_1tdxt_170._expanded_1tdxt_213 ._icon_1tdxt_99{transform:rotate(90deg)}._sectionItems_1tdxt_217{margin-top:.25rem;padding-left:1rem;display:flex;flex-direction:column;gap:.125rem}._navItem_1tdxt_225{display:block;width:100%;padding:.25rem .5rem;border-radius:.25rem;font-size:.85rem;color:var(--xw-muted-foreground);text-decoration:none;transition:color .15s cubic-bezier(.4,0,.2,1)}._navItem_1tdxt_225:hover{color:var(--xw-foreground)}._navItem_1tdxt_225._active_1tdxt_238{color:var(--xw-foreground);font-weight:500}._navItemContent_1tdxt_243{display:flex;align-items:center;justify-content:space-between;width:100%}._sidebar_1tdxt_1::-webkit-scrollbar{width:6px}._sidebar_1tdxt_1::-webkit-scrollbar-track{background:transparent}._sidebar_1tdxt_1::-webkit-scrollbar-thumb{background:var(--xw-muted-foreground);border-radius:9999px;opacity:.3}._sidebar_1tdxt_1::-webkit-scrollbar-thumb:hover{opacity:.6}._app_1v4z4_1{min-height:100vh;background-color:var(--xw-background);color:var(--xw-foreground);display:flex;flex-direction:column}._layout_1v4z4_9{display:flex;flex:1;min-height:calc(100vh - 3.5rem)}._main_1v4z4_15{flex:1;display:flex;flex-direction:column;margin-left:16rem}@media(max-width:767px){._main_1v4z4_15{margin-left:0}}._contentWrapper_1v4z4_27{display:flex;flex:1;position:relative;width:100%;max-width:80rem;margin:0 auto;padding:2rem}@media(max-width:1024px){._contentWrapper_1v4z4_27{padding:1.5rem}}@media(max-width:767px){._contentWrapper_1v4z4_27{padding:1rem}}
package/index.css DELETED
@@ -1 +0,0 @@
1
- ._tabContainer_yggpc_1{display:inline-flex;background-color:var(--card);border:1px solid var(--border);border-radius:.5rem;margin-bottom:2rem;overflow:hidden}._tab_yggpc_1{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._tab_yggpc_1:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._tab_yggpc_1:disabled{pointer-events:none;opacity:.5}._tab_yggpc_1{padding:.5rem 1rem;font-size:.87rem;font-weight:500;background-color:transparent;border:none;border-radius:0;color:var(--muted-foreground);cursor:pointer;white-space:nowrap}._tab_yggpc_1:not(:last-child){border-right:1px solid var(--border)}._tab_yggpc_1._active_yggpc_45{background-color:var(--accent);color:var(--accent-foreground)}._tab_yggpc_1:hover:not(._active_yggpc_45){background-color:var(--muted);color:var(--foreground)}._tab_yggpc_1:focus-visible{outline:2px solid var(--accent);outline-offset:-2px}._tableOfContents_vn5e4_1{position:sticky;top:5rem;align-self:flex-start;height:fit-content;max-height:calc(100vh - 8rem);overflow-y:auto;padding:2rem 0 2rem 1.5rem;margin-left:2rem;background:transparent;border-left:1px solid var(--border);flex-shrink:0}@media(max-width:1024px){._tableOfContents_vn5e4_1{display:none}}._header_vn5e4_20{margin-bottom:1rem}._title_vn5e4_24{font-size:.75rem;font-weight:500;color:var(--muted-foreground);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.5rem}._nav_vn5e4_33 ul{margin:0;padding:0;list-style:none}._list_vn5e4_39{display:flex;flex-direction:column;gap:.125rem;margin:0}._link_vn5e4_46{display:block;width:100%;padding:.25rem 0;text-align:left;background:none;border:none;cursor:pointer;font-size:.875rem;line-height:1.4;color:var(--muted-foreground);text-decoration:none;border-radius:.25rem;transition:all .15s cubic-bezier(.4,0,.2,1);position:relative;font-family:inherit}._link_vn5e4_46:hover{color:var(--foreground)}._link_vn5e4_46:focus{outline:none;color:var(--foreground)}._link_vn5e4_46._active_vn5e4_70{color:var(--primary);font-weight:500}._link_vn5e4_46._active_vn5e4_70:before{content:"";position:absolute;left:-1.5rem;top:50%;transform:translateY(-50%);width:1px;height:1rem;background-color:var(--primary);border-radius:.5px}._level1_vn5e4_86{font-weight:500;padding-left:0;margin-bottom:.125rem}._level2_vn5e4_92{padding-left:.5rem;margin-bottom:.0625rem}._level3_vn5e4_97{padding-left:1rem;font-size:.8125rem;margin-bottom:.0625rem}._level4_vn5e4_103{padding-left:1.5rem;font-size:.8125rem;margin-bottom:.0625rem}._level5_vn5e4_109{padding-left:2rem;font-size:.75rem;margin-bottom:.0625rem}._level6_vn5e4_115{padding-left:2.5rem;font-size:.75rem;margin-bottom:.0625rem}._tableOfContents_vn5e4_1::-webkit-scrollbar{width:4px}._tableOfContents_vn5e4_1::-webkit-scrollbar-track{background:transparent}._tableOfContents_vn5e4_1::-webkit-scrollbar-thumb{background:var(--border);border-radius:2px}._tableOfContents_vn5e4_1::-webkit-scrollbar-thumb:hover{background:var(--muted-foreground)}._overlay_s7p1r_1{position:fixed;top:0;left:0;right:0;bottom:0;background:#00000080;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:2000;display:flex;align-items:flex-start;justify-content:center;padding-top:10vh;animation:_fadeIn_s7p1r_1 .2s ease;height:100vh}@keyframes _fadeIn_s7p1r_1{0%{opacity:0}to{opacity:1}}._modal_s7p1r_26{width:90%;max-width:600px;background:var(--card);border:1px solid var(--border);border-radius:.75rem;box-shadow:0 20px 60px #0000004d;animation:_slideIn_s7p1r_1 .2s ease;max-height:80vh;display:flex;flex-direction:column;overflow:hidden}@keyframes _slideIn_s7p1r_1{0%{transform:translateY(-20px);opacity:0}to{transform:translateY(0);opacity:1}}._header_s7p1r_50{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid var(--border)}._title_s7p1r_58{font-size:1.125rem;font-weight:600;color:var(--foreground);margin:0}._closeButton_s7p1r_65{background:none;border:none;color:var(--muted-foreground);cursor:pointer;padding:.25rem;display:flex;align-items:center;justify-content:center;border-radius:.25rem;transition:all .2s ease}._closeButton_s7p1r_65 svg{width:1.25rem;height:1.25rem}._closeButton_s7p1r_65:hover{background:var(--secondary);color:var(--foreground)}._results_s7p1r_86{flex:1;overflow-y:auto;padding:.5rem;min-height:200px;max-height:400px}._resultsList_s7p1r_94{list-style:none;padding:0;margin:0}._resultItem_s7p1r_100{display:flex;flex-direction:column;align-items:flex-start;gap:.25rem;width:100%;padding:.75rem 1rem;background:none;border:none;border-radius:.5rem;cursor:pointer;text-align:left;transition:all .15s ease;color:var(--foreground)}._resultItem_s7p1r_100:hover{background:var(--secondary)}._resultTitle_s7p1r_119{font-weight:500;font-size:.95rem}._resultSlug_s7p1r_124{font-size:.8rem;color:var(--muted-foreground);opacity:.8}._noResults_s7p1r_130{padding:3rem 1rem;text-align:center;color:var(--muted-foreground);font-size:.9rem}._tags_8uc6s_1{display:flex;align-items:center;gap:.75rem;margin:2rem 0 1rem;padding:1rem 0 0;border-top:1px solid var(--border)}._tags_8uc6s_1._compact_8uc6s_9{margin:2rem 0 1rem;padding:1rem 0 0;border-top:1px solid var(--border)}._tagLabel_8uc6s_15{display:flex;align-items:center;gap:.5rem;color:var(--muted-foreground);font-size:.875rem;font-weight:500;white-space:nowrap}._tagIcon_8uc6s_25{width:1.125rem;height:1.125rem}._tagList_8uc6s_30{display:flex;flex-wrap:wrap;gap:.5rem}._tag_8uc6s_1{display:inline-flex;align-items:center;padding:.25rem .75rem;background:none;border:1px solid var(--border);border-radius:.75rem;color:var(--muted-foreground);font-size:.8rem;font-weight:400;cursor:pointer;transition:all .2s ease}._tag_8uc6s_1:hover{color:var(--foreground);border-color:var(--ring)}._contentPage_godc9_1{flex:1;max-width:48rem;margin:0;padding:0 0 2rem}@media(max-width:767px){._contentPage_godc9_1{padding:1.5rem;max-width:none}}@media(max-width:1024px){._contentPage_godc9_1{max-width:none;padding:2rem}}._metadata_godc9_20{display:flex;gap:1rem;align-items:center;padding:.5rem 0 1rem;color:var(--muted-foreground);font-size:.875rem;border-bottom:1px solid var(--border);margin-bottom:1rem}._metadata_godc9_20 ._author_godc9_30,._metadata_godc9_20 ._date_godc9_31{display:flex;align-items:center;gap:.5rem}._metadata_godc9_20 ._author_godc9_30{font-weight:500;color:var(--foreground)}@media(max-width:767px){._metadata_godc9_20{flex-direction:column;align-items:flex-start;gap:.25rem}}._loadingContainer_godc9_48,._errorContainer_godc9_49{display:flex;align-items:center;justify-content:center;height:16rem}._loadingContainer_godc9_48{flex-direction:column;align-items:flex-start;gap:1.5rem;padding:2rem 0}@keyframes _shimmer_godc9_1{0%{background-position:-1000px 0}to{background-position:1000px 0}}._skeletonTitle_godc9_71{width:60%;height:2.5rem;background:linear-gradient(90deg,var(--muted) 0%,color-mix(in oklch,var(--muted) 50%,white) 50%,var(--muted) 100%);background-size:1000px 100%;animation:_shimmer_godc9_1 2s infinite linear;border-radius:.5rem}._skeletonParagraph_godc9_80{width:100%;height:1rem;background:linear-gradient(90deg,var(--muted) 0%,color-mix(in oklch,var(--muted) 50%,white) 50%,var(--muted) 100%);background-size:1000px 100%;animation:_shimmer_godc9_1 2s infinite linear;border-radius:.25rem;margin-bottom:.5rem}._skeletonParagraph_godc9_80:not(:last-child){margin-bottom:1rem}._skeletonParagraphShort_godc9_93{width:70%;height:1rem;background:linear-gradient(90deg,var(--muted) 0%,color-mix(in oklch,var(--muted) 50%,white) 50%,var(--muted) 100%);background-size:1000px 100%;animation:_shimmer_godc9_1 2s infinite linear;border-radius:.25rem}._loadingText_godc9_102{color:var(--muted-foreground);font-size:1rem}._errorText_godc9_107{color:var(--destructive);font-size:1rem}._mdxContent_godc9_112{max-width:none}._mdxContent_godc9_112 h1{font-size:1.875rem;font-weight:600;letter-spacing:-.025em;margin-bottom:1.5rem;border-bottom:1px solid var(--border);padding-bottom:.75rem;line-height:1.2;scroll-margin-top:5rem}._mdxContent_godc9_112 h1._withMetadata_godc9_125{border-bottom:none;padding-bottom:0;margin-bottom:.5rem}._mdxContent_godc9_112 h1 a{color:inherit;text-decoration:none;border:none;position:relative}._mdxContent_godc9_112 h1 a:hover{color:inherit;border:none}._mdxContent_godc9_112 h1 a:hover:before{content:"#";position:absolute;left:-1.5rem;color:var(--link);opacity:.7;font-weight:400}._mdxContent_godc9_112 h2{font-size:1.5rem;font-weight:500;letter-spacing:-.02em;margin-bottom:1rem;margin-top:2.5rem;border-bottom:1px solid var(--border);padding-bottom:.5rem;line-height:1.3;scroll-margin-top:5rem}._mdxContent_godc9_112 h2 a{color:inherit;text-decoration:none;border:none;position:relative}._mdxContent_godc9_112 h2 a:hover{color:inherit;border:none}._mdxContent_godc9_112 h2 a:hover:before{content:"#";position:absolute;left:-1.5rem;color:var(--link);opacity:.7;font-weight:400}._mdxContent_godc9_112 h3{font-size:1.25rem;font-weight:500;letter-spacing:-.015em;margin-bottom:.75rem;margin-top:2rem;line-height:1.4;scroll-margin-top:5rem}._mdxContent_godc9_112 h3 a{color:inherit;text-decoration:none;border:none;position:relative}._mdxContent_godc9_112 h3 a:hover{color:inherit;border:none}._mdxContent_godc9_112 h3 a:hover:before{content:"#";position:absolute;left:-1.5rem;color:var(--link);opacity:.7;font-weight:400}._mdxContent_godc9_112 h4{font-size:1.125rem;font-weight:500;letter-spacing:-.01em;margin-bottom:.5rem;margin-top:1.5rem;line-height:1.4;scroll-margin-top:5rem}._mdxContent_godc9_112 h4 a{color:inherit;text-decoration:none;border:none;position:relative}._mdxContent_godc9_112 h4 a:hover{color:inherit;border:none}._mdxContent_godc9_112 h4 a:hover:before{content:"#";position:absolute;left:-1.5rem;color:var(--link);opacity:.7;font-weight:400}._mdxContent_godc9_112 h5{font-size:1rem;font-weight:500;margin-bottom:.5rem;margin-top:1.25rem;line-height:1.5}._mdxContent_godc9_112 h6{font-size:.875rem;font-weight:500;margin-bottom:.5rem;margin-top:1rem;line-height:1.5}._mdxContent_godc9_112 p{font-size:1rem;line-height:1.65;margin-bottom:1rem;color:var(--foreground)}._mdxContent_godc9_112 ul,._mdxContent_godc9_112 ol{margin-bottom:1rem;padding-left:1.5rem}._mdxContent_godc9_112 ul li,._mdxContent_godc9_112 ol li{font-size:1rem;line-height:1.65;margin-bottom:.375rem}._mdxContent_godc9_112 ul ul,._mdxContent_godc9_112 ul ol,._mdxContent_godc9_112 ol ul,._mdxContent_godc9_112 ol ol{margin-top:.375rem;margin-bottom:.375rem}._mdxContent_godc9_112 ul{list-style-type:disc}._mdxContent_godc9_112 ol{list-style-type:decimal}._mdxContent_godc9_112 code{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:.875rem;background-color:var(--muted);padding:.1875rem .4375rem;border-radius:.25rem;color:var(--foreground);font-weight:500}._mdxContent_godc9_112 pre{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;background-color:var(--muted);padding:1.25rem;border-radius:.75rem;overflow-x:auto;margin:1.5rem 0;position:relative;border:1px solid var(--border)}._mdxContent_godc9_112 pre code{background-color:transparent;padding:0;color:inherit;font-weight:400}._mdxContent_godc9_112 ._codeBlock_godc9_300{position:relative;margin-bottom:1.5rem}._mdxContent_godc9_112 ._codeLanguage_godc9_304{position:absolute;top:.5rem;right:.5rem;font-size:.75rem;color:var(--muted-foreground);background-color:var(--background);padding:.25rem .5rem;border-radius:.25rem;border:1px solid var(--border)}._mdxContent_godc9_112 blockquote{border-left:3px solid var(--accent);padding-left:1rem;font-style:italic;color:var(--muted-foreground);margin-bottom:1rem;margin-top:1rem}._mdxContent_godc9_112 blockquote p{margin-bottom:.5rem}._mdxContent_godc9_112 blockquote p:last-child{margin-bottom:0}._mdxContent_godc9_112 a{color:var(--link);text-decoration:none;transition:color .15s cubic-bezier(.4,0,.2,1);border-bottom:1px solid transparent}._mdxContent_godc9_112 a:hover{color:color-mix(in oklch,var(--link) 80%,transparent);border-bottom-color:currentColor}._mdxContent_godc9_112 strong{font-weight:600}._mdxContent_godc9_112 em{font-style:italic}._mdxContent_godc9_112 table{width:100%;border-collapse:collapse;margin:1.5rem 0;font-size:.95rem}._mdxContent_godc9_112 table th,._mdxContent_godc9_112 table td{padding:.75rem 1rem;text-align:left;border-bottom:1px solid var(--border);line-height:1.4}._mdxContent_godc9_112 table th{font-weight:500;background-color:var(--muted);font-size:.875rem;letter-spacing:.025em}._mdxContent_godc9_112 table tbody tr:hover{background-color:color-mix(in oklch,var(--muted) 50%,transparent)}._mdxContent_godc9_112 img{max-width:100%;height:auto;border-radius:.5rem;margin:1.5rem 0;border:1px solid var(--border)}._mdxContent_godc9_112 hr{border:none;border-top:1px solid var(--border);margin:2rem 0}._searchButton_royne_1{display:flex;align-items:center;gap:.5rem;padding:.5rem .75rem;border-radius:.375rem;background:none;border:none;color:var(--muted-foreground);cursor:pointer;transition:all .2s ease;font-size:.875rem}._searchButton_royne_1:hover{border-color:var(--input)}._searchButton_royne_1 ._searchIcon_royne_17{width:1rem;height:1rem;opacity:.6}@media(max-width:768px){._searchButton_royne_1 ._searchHint_royne_23{display:none}}._searchButton_royne_1 ._kbd_royne_27{display:none;padding:.125rem .375rem;background:var(--card);border:1px solid var(--border);border-radius:.25rem;font-size:.75rem;font-family:monospace}@media(min-width:768px){._searchButton_royne_1 ._kbd_royne_27{display:block}}._searchOverlay_royne_42{position:fixed;top:0;left:0;right:0;bottom:0;background:#00000080;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:2000;display:flex;align-items:flex-start;justify-content:center;padding-top:10vh;animation:_fadeIn_royne_1 .2s ease;height:100vh}@keyframes _fadeIn_royne_1{0%{opacity:0}to{opacity:1}}._searchModal_royne_67{width:90%;max-width:600px;background:var(--card);border:1px solid var(--border);border-radius:.75rem;box-shadow:0 20px 60px #0000004d;animation:_slideIn_royne_1 .2s ease;max-height:80vh;display:flex;flex-direction:column;overflow:hidden}@keyframes _slideIn_royne_1{0%{transform:translateY(-20px);opacity:0}to{transform:translateY(0);opacity:1}}._searchHeader_royne_91{display:flex;align-items:center;gap:.75rem;padding:1rem 1.25rem;border-bottom:1px solid var(--border)}._searchHeader_royne_91 ._searchIcon_royne_17{width:1.25rem;height:1.25rem;opacity:.5;flex-shrink:0}._searchInput_royne_105{flex:1;border:none;background:transparent;color:var(--foreground);font-size:1rem;outline:none}._searchInput_royne_105:focus{border:none;outline:none;box-shadow:none}._searchInput_royne_105::placeholder{color:var(--muted-foreground);opacity:.6}._closeButton_royne_123{background:none;border:none;color:var(--muted-foreground);cursor:pointer;padding:.25rem;display:flex;align-items:center;justify-content:center;border-radius:.25rem;transition:all .2s ease}._closeButton_royne_123 svg{width:1.25rem;height:1.25rem}._closeButton_royne_123:hover{background:var(--secondary);color:var(--foreground)}._searchResults_royne_144{flex:1;overflow-y:auto;padding:.5rem;min-height:200px;max-height:400px}._resultsList_royne_152{list-style:none;padding:0;margin:0}._resultItem_royne_158{display:flex;flex-direction:column;align-items:flex-start;gap:.25rem;width:100%;padding:.75rem 1rem;background:none;border:none;border-radius:.5rem;cursor:pointer;text-align:left;transition:all .15s ease;color:var(--foreground)}._resultItem_royne_158:hover,._resultItem_royne_158._selected_royne_173{background:var(--secondary)}._resultItem_royne_158 ._resultTitle_royne_176{font-weight:500;font-size:.95rem}._resultItem_royne_158 ._resultSlug_royne_180{font-size:.8rem;color:var(--muted-foreground);opacity:.8}._noResults_royne_186{padding:3rem 1rem;text-align:center;color:var(--muted-foreground);font-size:.9rem}._searchHints_royne_193{display:flex;align-items:center;gap:1.5rem;padding:.75rem 1.25rem;border-top:1px solid var(--border);background:var(--secondary);font-size:.8rem;color:var(--muted-foreground)}@media(max-width:768px){._searchHints_royne_193{flex-direction:column;align-items:flex-start;gap:.5rem}}._searchHints_royne_193 ._hint_royne_210{display:flex;align-items:center;gap:.5rem}._searchHints_royne_193 ._hint_royne_210 kbd{padding:.125rem .375rem;background:var(--card);border:1px solid var(--border);border-radius:.25rem;font-size:.75rem;font-family:monospace;min-width:1.5rem;text-align:center}._header_15xr7_1{position:sticky;top:0;z-index:1020;background-color:#fffc;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);height:3.5rem;padding-left:16rem}.dark ._header_15xr7_1{background-color:#2020201a}@supports not (backdrop-filter: blur(12px)){._header_15xr7_1{background-color:var(--background)}}@media(max-width:767px){._header_15xr7_1{padding:0}}._container_15xr7_24{width:100%;max-width:1400px;margin:0 auto;padding:0 1.5rem}@media(max-width:767px){._container_15xr7_24{padding:0 1rem}}._content_15xr7_36{display:flex;align-items:center;justify-content:space-between;height:3.5rem}._leftSection_15xr7_43{display:flex;align-items:center;gap:1rem}._mobileMenuButton_15xr7_49{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._mobileMenuButton_15xr7_49:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._mobileMenuButton_15xr7_49:disabled{pointer-events:none;opacity:.5}._mobileMenuButton_15xr7_49{padding:.5rem;background-color:transparent;color:var(--muted-foreground);border-radius:.5rem;display:none}._mobileMenuButton_15xr7_49:hover{background-color:var(--muted);color:var(--foreground)}@media(max-width:767px){._mobileMenuButton_15xr7_49{display:flex}}._burgerIcon_15xr7_87{width:1.25rem;height:1.25rem}._logo_15xr7_92,._nav_15xr7_98{display:flex;align-items:center;gap:.5rem}@media(max-width:767px){._nav_15xr7_98{gap:.25rem}}._navLink_15xr7_109{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border-radius:.5rem;font-size:.875rem;font-weight:500;color:var(--muted-foreground);text-decoration:none;transition:all .15s cubic-bezier(.4,0,.2,1)}._navLink_15xr7_109:hover{color:var(--foreground)}._navLink_15xr7_109:focus{outline:none}._githubIcon_15xr7_128{width:1rem;height:1rem;flex-shrink:0;transition:transform .15s cubic-bezier(.4,0,.2,1)}._externalIcon_15xr7_135{width:1rem;height:1rem;flex-shrink:0}._supportDropdown_15xr7_141,._themeDropdown_15xr7_145{position:relative}._themeButton_15xr7_149{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem;border-radius:.5rem;font-size:.875rem;font-weight:500;color:var(--muted-foreground);background:none;border:none;cursor:pointer;transition:all .15s cubic-bezier(.4,0,.2,1)}._themeButton_15xr7_149:hover{color:var(--foreground);background-color:var(--muted)}._themeButton_15xr7_149:focus{outline:none}._themeIcon_15xr7_171{width:1.125rem;height:1.125rem;flex-shrink:0}._supportButton_15xr7_177{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border-radius:.5rem;font-size:.875rem;font-weight:500;color:var(--muted-foreground);background:none;border:none;cursor:pointer;transition:all .15s cubic-bezier(.4,0,.2,1)}._supportButton_15xr7_177:hover{color:var(--foreground)}._supportButton_15xr7_177:focus{outline:none}._caretIcon_15xr7_198{width:.875rem;height:.875rem;flex-shrink:0;transition:transform .15s cubic-bezier(.4,0,.2,1)}button[aria-expanded=true] ._caretIcon_15xr7_198{transform:rotate(180deg)}._dropdownMenu_15xr7_208{position:absolute;top:calc(100% + .25rem);right:0;min-width:10rem;background-color:var(--popover);border:1px solid var(--border);border-radius:.5rem;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;z-index:1000;overflow:hidden}._dropdownItem_15xr7_221{display:flex;align-items:center;gap:.5rem;width:100%;padding:.5rem 1rem;font-size:.875rem;color:var(--popover-foreground);text-decoration:none;background:none;border:none;cursor:pointer;text-align:left;transition:background-color .15s cubic-bezier(.4,0,.2,1)}._dropdownItem_15xr7_221:hover{background-color:var(--muted)}._dropdownItem_15xr7_221:focus{outline:none;background-color:var(--muted)}._dropdownIcon_15xr7_244{width:1rem;height:1rem;flex-shrink:0}@media(max-width:767px){._logoText_15xr7_251{font-size:1rem}._navLink_15xr7_109{padding:.25rem .5rem;font-size:.8rem;gap:.25rem}._githubIcon_15xr7_128{width:.875rem;height:.875rem}}._backdrop_17kcj_1{position:fixed;top:0;left:0;right:0;bottom:0;background-color:#00000080;z-index:1040;opacity:0;visibility:hidden;transition:all .15s cubic-bezier(.4,0,.2,1)}._backdrop_17kcj_1._open_17kcj_13{opacity:1;visibility:visible}._mobileMenu_17kcj_18{position:fixed;top:0;left:0;width:320px;height:100vh;background-color:var(--background);border-right:1px solid var(--border);z-index:1050;transform:translate(-100%);transition:transform .15s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;overflow:hidden}._mobileMenu_17kcj_18._open_17kcj_13{transform:translate(0)}._header_17kcj_37{display:flex;align-items:center;justify-content:space-between;padding:1.5rem;border-bottom:1px solid var(--border);flex-shrink:0}._brand_17kcj_46{flex:1;display:flex;align-items:center;gap:.5rem}._cloudIcon_17kcj_53{width:1.5rem;height:1.5rem;flex-shrink:0}._cloudIcon_17kcj_53 .accent{fill:#d33079}._title_17kcj_62{font-size:1.125rem;font-weight:600;color:var(--foreground);margin:0}._closeButton_17kcj_69{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._closeButton_17kcj_69:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._closeButton_17kcj_69:disabled{pointer-events:none;opacity:.5}._closeButton_17kcj_69{padding:.5rem;background-color:transparent;color:var(--muted-foreground);border-radius:.5rem}._closeButton_17kcj_69:hover{background-color:var(--muted);color:var(--foreground)}._closeIcon_17kcj_101{width:1.25rem;height:1.25rem}._languageSection_17kcj_106{padding:1.5rem;border-bottom:1px solid var(--border);flex-shrink:0}._languageSelect_17kcj_112{position:relative;width:100%}._languageButton_17kcj_117{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._languageButton_17kcj_117:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._languageButton_17kcj_117:disabled{pointer-events:none;opacity:.5}._languageButton_17kcj_117{display:flex;align-items:center;justify-content:space-between;width:100%;padding:.5rem 1rem;background-color:var(--background);border:1px solid var(--border);color:var(--foreground);gap:.5rem}._languageButton_17kcj_117:hover,._languageButton_17kcj_117[aria-expanded=true]{background-color:var(--muted)}._icon_17kcj_156{width:1rem;height:1rem;flex-shrink:0}._chevron_17kcj_162{width:1rem;height:1rem;transition:transform .15s cubic-bezier(.4,0,.2,1);margin-left:auto}._languageButton_17kcj_117[aria-expanded=true] ._chevron_17kcj_162{transform:rotate(180deg)}._languageDropdown_17kcj_172{position:absolute;top:100%;left:0;right:0;background-color:var(--popover);border:1px solid var(--border);border-radius:.5rem;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;z-index:1000;margin-top:.25rem}._languageOption_17kcj_185{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._languageOption_17kcj_185:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._languageOption_17kcj_185:disabled{pointer-events:none;opacity:.5}._languageOption_17kcj_185{width:100%;padding:.5rem 1rem;background-color:transparent;color:var(--foreground);text-align:left;justify-content:flex-start;border-radius:0}._languageOption_17kcj_185:first-child{border-top-left-radius:.5rem;border-top-right-radius:.5rem}._languageOption_17kcj_185:last-child{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}._languageOption_17kcj_185:hover{background-color:var(--muted)}._languageOption_17kcj_185._selected_17kcj_226{background-color:var(--accent);color:var(--accent-foreground)}._scrollArea_17kcj_231{flex:1;overflow-y:auto;padding:1.5rem 0}._navigation_17kcj_237{padding:0 1.5rem}._section_17kcj_241{margin-bottom:1rem}._sectionButton_17kcj_245{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._sectionButton_17kcj_245:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._sectionButton_17kcj_245:disabled{pointer-events:none;opacity:.5}._sectionButton_17kcj_245{display:flex;align-items:center;justify-content:space-between;width:100%;padding:.5rem 1rem;background-color:transparent;color:var(--foreground);font-weight:600;gap:.5rem;border-radius:.5rem}._sectionButton_17kcj_245:hover{background-color:var(--muted)}._sectionButton_17kcj_245 ._icon_17kcj_156{transition:transform .15s cubic-bezier(.4,0,.2,1);margin-left:auto}._sectionButton_17kcj_245._expanded_17kcj_285 ._icon_17kcj_156{transform:rotate(90deg)}._sectionItems_17kcj_289{margin-top:.5rem;margin-left:1rem;display:flex;flex-direction:column;gap:.25rem}._navItem_17kcj_297{display:block;padding:.5rem 1rem;border-radius:.5rem;color:var(--muted-foreground);text-decoration:none;transition:all .15s cubic-bezier(.4,0,.2,1);font-size:.875rem}._navItem_17kcj_297:hover{background-color:var(--muted);color:var(--foreground)}._navItem_17kcj_297._active_17kcj_310{background-color:var(--accent);color:var(--accent-foreground);font-weight:500}._navItemContent_17kcj_316{display:flex;align-items:center;gap:.5rem}._navItemTitle_17kcj_322{flex:1}@media(min-width:1024px){._mobileMenu_17kcj_18,._backdrop_17kcj_1{display:none}}._sidebar_1pfbz_1{position:fixed;top:0;left:0;width:16rem;height:100vh;background-color:var(--sidebar);overflow-y:auto;z-index:1020}@media(max-width:767px){._sidebar_1pfbz_1{display:none}}._header_1pfbz_17{position:sticky;top:0;z-index:1020;padding:1rem;background-color:var(--sidebar);display:flex;flex-direction:column;gap:.5rem;padding-bottom:0}._brand_1pfbz_29{display:flex;align-items:center;gap:.5rem}._cloudIcon_1pfbz_35{width:1.5rem;height:1.5rem;flex-shrink:0}._cloudIcon_1pfbz_35 .accent{fill:#d33079}._title_1pfbz_44{font-size:1rem;font-weight:600;color:var(--foreground);margin:0;letter-spacing:-.02em}._languageSelect_1pfbz_52{position:relative;margin-top:.25rem;width:100%}._languageButton_1pfbz_58{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._languageButton_1pfbz_58:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._languageButton_1pfbz_58:disabled{pointer-events:none;opacity:.5}._languageButton_1pfbz_58{display:flex;align-items:center;justify-content:space-between;padding:.25rem .5rem;width:100%;gap:.25rem;font-size:.8rem;background:transparent;border:1px solid var(--border);border-radius:.25rem;color:var(--muted-foreground)}._languageButton_1pfbz_58:hover{background-color:var(--muted);color:var(--foreground)}._languageButton_1pfbz_58 ._icon_1pfbz_96{width:.875rem;height:.875rem;flex-shrink:0}._languageButton_1pfbz_58 ._chevron_1pfbz_101{width:.875rem;height:.875rem;flex-shrink:0;transition:transform .15s cubic-bezier(.4,0,.2,1)}._languageButton_1pfbz_58[aria-expanded=true] ._chevron_1pfbz_101{transform:rotate(180deg)}._languageDropdown_1pfbz_111{position:absolute;top:100%;left:0;right:0;margin-top:.25rem;background-color:var(--popover);border:1px solid var(--border);border-radius:.5rem;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;z-index:1000;overflow:hidden}._languageOption_1pfbz_125{display:block;width:100%;padding:.25rem .5rem;text-align:left;background:none;border:none;color:var(--popover-foreground);font-size:.85rem;cursor:pointer;transition:background-color .15s cubic-bezier(.4,0,.2,1)}._languageOption_1pfbz_125:hover{background-color:var(--muted)}._languageOption_1pfbz_125:focus{outline:none;background-color:var(--muted)}._languageOption_1pfbz_125._selected_1pfbz_144{background-color:var(--muted);color:var(--foreground)}._scrollArea_1pfbz_149{height:calc(100vh - 120px);padding:1rem .5rem 1rem 1rem;overflow-y:auto}._navigation_1pfbz_155{display:flex;flex-direction:column;gap:.125rem}._section_1pfbz_161{display:flex;flex-direction:column;gap:0}._sectionButton_1pfbz_167{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._sectionButton_1pfbz_167:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._sectionButton_1pfbz_167:disabled{pointer-events:none;opacity:.5}._sectionButton_1pfbz_167{display:flex;align-items:center;justify-content:space-between;width:100%;padding:.25rem .5rem;font-weight:500;font-size:.85rem;color:var(--muted-foreground);background:transparent;text-align:left;letter-spacing:-.01em;border:none}._sectionButton_1pfbz_167:hover{color:var(--foreground)}._sectionButton_1pfbz_167 ._icon_1pfbz_96{width:.875rem;height:.875rem;transition:transform .15s cubic-bezier(.4,0,.2,1)}._sectionButton_1pfbz_167._expanded_1pfbz_210 ._icon_1pfbz_96{transform:rotate(90deg)}._sectionItems_1pfbz_214{margin-top:.25rem;padding-left:1rem;display:flex;flex-direction:column;gap:.125rem}._navItem_1pfbz_222{display:block;width:100%;padding:.25rem .5rem;border-radius:.25rem;font-size:.85rem;color:var(--muted-foreground);text-decoration:none;transition:color .15s cubic-bezier(.4,0,.2,1)}._navItem_1pfbz_222:hover{color:var(--foreground)}._navItem_1pfbz_222._active_1pfbz_235{color:var(--foreground);font-weight:500}._navItemContent_1pfbz_240{display:flex;align-items:center;justify-content:space-between;width:100%}._sidebar_1pfbz_1::-webkit-scrollbar{width:6px}._sidebar_1pfbz_1::-webkit-scrollbar-track{background:transparent}._sidebar_1pfbz_1::-webkit-scrollbar-thumb{background:var(--muted-foreground);border-radius:9999px;opacity:.3}._sidebar_1pfbz_1::-webkit-scrollbar-thumb:hover{opacity:.6}._app_1vinw_1{min-height:100vh;background-color:var(--background);color:var(--foreground);display:flex;flex-direction:column}._layout_1vinw_9{display:flex;flex:1;min-height:calc(100vh - 3.5rem)}._main_1vinw_15{flex:1;display:flex;flex-direction:column;margin-left:16rem}@media(max-width:767px){._main_1vinw_15{margin-left:0}}._contentWrapper_1vinw_27{display:flex;flex:1;position:relative;width:100%;max-width:80rem;margin:0 auto;padding:2rem}@media(max-width:1024px){._contentWrapper_1vinw_27{padding:1.5rem}}@media(max-width:767px){._contentWrapper_1vinw_27{padding:1rem}}
@@ -1,60 +0,0 @@
1
- // Color Variables - Using CSS custom properties for theme support
2
- $color-background: var(--background);
3
- $color-foreground: var(--foreground);
4
- $color-primary: var(--primary);
5
- $color-card: var(--card);
6
- $color-card-foreground: var(--card-foreground);
7
- $color-popover: var(--popover);
8
- $color-popover-foreground: var(--popover-foreground);
9
- $color-muted: var(--muted);
10
- $color-muted-foreground: var(--muted-foreground);
11
- $color-accent: var(--accent);
12
- $color-accent-foreground: var(--accent-foreground);
13
- $color-destructive: var(--destructive);
14
- $color-border: var(--border);
15
- $color-input: var(--input);
16
- $color-ring: var(--ring);
17
- $color-secondary: var(--secondary);
18
- $color-secondary-foreground: var(--secondary-foreground);
19
- $color-link: var(--link);
20
- $color-sidebar: var(--sidebar);
21
- $color-sidebar-foreground: var(--sidebar-foreground);
22
-
23
- // Border Radius
24
- $radius-base: 0.5rem;
25
- $radius-sm: calc($radius-base * 0.5);
26
- $radius-md: $radius-base;
27
- $radius-lg: calc($radius-base * 1.5);
28
- $radius-full: 9999px;
29
-
30
- // Typography
31
- $font-family-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
32
- $font-family-mono: ui-monospace, 'SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', monospace;
33
-
34
- // Spacing
35
- $spacing-xs: 0.25rem;
36
- $spacing-sm: 0.5rem;
37
- $spacing-md: 1rem;
38
- $spacing-lg: 1.5rem;
39
- $spacing-xl: 2rem;
40
-
41
- // Breakpoints
42
- $breakpoint-md: 768px;
43
- $breakpoint-lg: 1024px;
44
- $breakpoint-xl: 1280px;
45
-
46
- // Z-index
47
- $z-index-dropdown: 1000;
48
- $z-index-sticky: 1020;
49
- $z-index-mobile-menu-backdrop: 1040;
50
- $z-index-mobile-menu: 1050;
51
- $z-index-search-overlay: 2000;
52
- $z-index-search-modal: 2200;
53
-
54
- // Shadows
55
- $shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
56
- $shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
57
- $shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
58
-
59
- // Transitions
60
- $transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
@@ -1,189 +0,0 @@
1
- @use './variables' as *;
2
-
3
- // Global styles
4
- *,
5
- *::before,
6
- *::after {
7
- box-sizing: border-box;
8
- }
9
-
10
- * {
11
- margin: 0;
12
- padding: 0;
13
- }
14
-
15
- html,
16
- body {
17
- height: 100%;
18
- }
19
-
20
- body {
21
- line-height: 1.5;
22
- -webkit-font-smoothing: antialiased;
23
- font-family: $font-family-sans;
24
- background-color: $color-background;
25
- color: $color-foreground;
26
- }
27
-
28
- img,
29
- picture,
30
- video,
31
- canvas,
32
- svg {
33
- display: block;
34
- max-width: 100%;
35
- }
36
-
37
- input,
38
- button,
39
- textarea,
40
- select {
41
- font: inherit;
42
- }
43
-
44
- p,
45
- h1,
46
- h2,
47
- h3,
48
- h4,
49
- h5,
50
- h6 {
51
- overflow-wrap: break-word;
52
- }
53
-
54
- #root {
55
- isolation: isolate;
56
- height: 100%;
57
- }
58
-
59
- // Typography
60
- h1 {
61
- font-size: 1.875rem;
62
- font-weight: 600;
63
- line-height: 1.2;
64
- letter-spacing: -0.025em;
65
- margin-bottom: 1.5rem;
66
- }
67
-
68
- h2 {
69
- font-size: 1.5rem;
70
- font-weight: 500;
71
- line-height: 1.3;
72
- letter-spacing: -0.02em;
73
- margin-bottom: 1rem;
74
- margin-top: 2.5rem;
75
- }
76
-
77
- h3 {
78
- font-size: 1.25rem;
79
- font-weight: 500;
80
- line-height: 1.4;
81
- letter-spacing: -0.015em;
82
- margin-bottom: 0.75rem;
83
- margin-top: 2rem;
84
- }
85
-
86
- h4 {
87
- font-size: 1.125rem;
88
- font-weight: 500;
89
- line-height: 1.4;
90
- letter-spacing: -0.01em;
91
- margin-bottom: 0.5rem;
92
- margin-top: 1.5rem;
93
- }
94
-
95
- h5 {
96
- font-size: 1rem;
97
- font-weight: 500;
98
- line-height: 1.5;
99
- margin-bottom: 0.5rem;
100
- margin-top: 1.25rem;
101
- }
102
-
103
- h6 {
104
- font-size: 0.875rem;
105
- font-weight: 500;
106
- line-height: 1.5;
107
- margin-bottom: 0.5rem;
108
- margin-top: 1rem;
109
- }
110
-
111
- p {
112
- font-size: 1rem;
113
- line-height: 1.65;
114
- margin-bottom: 1rem;
115
- }
116
-
117
- code {
118
- font-family: $font-family-mono;
119
- font-size: 0.875rem;
120
- background-color: $color-muted;
121
- padding: 0.1875rem 0.4375rem;
122
- border-radius: $radius-sm;
123
- font-weight: 500;
124
- }
125
-
126
- pre {
127
- font-family: $font-family-mono;
128
- background-color: $color-muted;
129
- padding: 1.25rem;
130
- border-radius: $radius-lg;
131
- overflow-x: auto;
132
- margin: 1.5rem 0;
133
- border: 1px solid $color-border;
134
-
135
- code {
136
- background-color: transparent;
137
- padding: 0;
138
- font-weight: 400;
139
- }
140
- }
141
-
142
- // Focus styles
143
- :focus-visible {
144
- outline: 2px solid $color-ring;
145
- outline-offset: 2px;
146
- }
147
-
148
- // Selection styles
149
- ::selection {
150
- background-color: $color-accent;
151
- color: $color-accent-foreground;
152
- }
153
-
154
- // Utility classes
155
- .sr-only {
156
- position: absolute !important;
157
- width: 1px !important;
158
- height: 1px !important;
159
- padding: 0 !important;
160
- margin: -1px !important;
161
- overflow: hidden !important;
162
- clip: rect(0, 0, 0, 0) !important;
163
- white-space: nowrap !important;
164
- border: 0 !important;
165
- }
166
-
167
- .text-muted {
168
- color: $color-muted-foreground;
169
- }
170
-
171
- .text-destructive {
172
- color: $color-destructive;
173
- }
174
-
175
- .bg-muted {
176
- background-color: $color-muted;
177
- }
178
-
179
- .border {
180
- border: 1px solid $color-border;
181
- }
182
-
183
- .rounded {
184
- border-radius: $radius-md;
185
- }
186
-
187
- .shadow {
188
- box-shadow: $shadow-md;
189
- }