@oxide/design-system 2.6.1--canary.aec2db0.0 → 2.6.1--canary.bcc4581.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/asciidoc.css +19 -21
- package/dist/{chunk-QHCGMVN7.js → chunk-YRJL4JLL.js} +430 -550
- package/dist/chunk-YRJL4JLL.js.map +1 -0
- package/dist/components/src/index.js +4 -4
- package/dist/components/src/index.js.map +1 -1
- package/dist/icons/index.d.ts +0 -12
- package/dist/icons/react/index.d.ts +165 -189
- package/dist/icons/react/index.js +1 -9
- package/icons/sprite.svg +1 -1
- package/icons/svg/cpu-16.svg +1 -1
- package/icons/svg/loader-12.svg +1 -1
- package/icons/svg/new-window-16.svg +1 -1
- package/package.json +3 -1
- package/styles/dist/blue.css +162 -643
- package/styles/dist/green.css +162 -641
- package/styles/dist/main.css +631 -855
- package/styles/dist/purple.css +162 -643
- package/styles/dist/red.css +162 -643
- package/styles/dist/tailwind.css +51 -0
- package/styles/dist/yellow.css +162 -641
- package/dist/chunk-QHCGMVN7.js.map +0 -1
- package/icons/svg/sparkle-16.svg +0 -1
- package/icons/svg/submit-16.svg +0 -1
- package/icons/svg/webhooks-16.svg +0 -1
- package/icons/svg/webhooks-24.svg +0 -1
- package/styles/dist/tailwind-tokens.ts +0 -2988
package/dist/asciidoc.css
CHANGED
|
@@ -6,24 +6,27 @@
|
|
|
6
6
|
* Copyright Oxide Computer Company
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
@
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}
|
|
9
|
+
@utility text-mono-code {
|
|
10
|
+
@apply text-[0.825em] !normal-case;
|
|
11
|
+
font-feature-settings: 'calt' 0;
|
|
12
|
+
letter-spacing: 0;
|
|
13
|
+
}
|
|
15
14
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
15
|
+
@utility accent-link {
|
|
16
|
+
@apply text-accent-secondary hover:text-accent;
|
|
17
|
+
text-decoration: underline;
|
|
18
|
+
text-decoration-color: color-mix(in srgb, currentColor 60%, transparent);
|
|
19
|
+
}
|
|
21
20
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
21
|
+
@utility link-with-underline {
|
|
22
|
+
@apply text-default hover:text-raise;
|
|
23
|
+
text-decoration: underline;
|
|
24
|
+
text-decoration-color: color-mix(in srgb, currentColor 60%, transparent);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@utility inline-code {
|
|
28
|
+
@apply text-secondary;
|
|
29
|
+
@apply ml-[1px] mr-[1px] rounded border px-[4px] py-[1px] align-[1px] text-[0.825em] bg-raise border-secondary;
|
|
27
30
|
}
|
|
28
31
|
|
|
29
32
|
@layer components {
|
|
@@ -288,11 +291,6 @@
|
|
|
288
291
|
@apply normal-case text-default;
|
|
289
292
|
}
|
|
290
293
|
|
|
291
|
-
.inline-code {
|
|
292
|
-
@apply text-secondary;
|
|
293
|
-
@apply ml-[1px] mr-[1px] rounded border px-[4px] py-[1px] align-[1px] text-[0.825em] bg-raise border-secondary;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
294
|
p code,
|
|
297
295
|
h1 code,
|
|
298
296
|
h2 code,
|