@orianatech/pire 0.12.0 → 0.13.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/components/data/LinkList.d.cts +10 -1
- package/dist/components/data/LinkList.d.ts +10 -1
- package/dist/components/data/LinkList.d.ts.map +1 -1
- package/dist/components/feedback/Dialog.d.ts.map +1 -1
- package/dist/components/forms/ComboBox.d.cts +10 -1
- package/dist/components/forms/ComboBox.d.ts +10 -1
- package/dist/components/forms/ComboBox.d.ts.map +1 -1
- package/dist/components/forms/Select.d.cts +7 -1
- package/dist/components/forms/Select.d.ts +7 -1
- package/dist/components/forms/Select.d.ts.map +1 -1
- package/dist/components.css +20 -0
- package/dist/i18n/messages.d.cts +3 -0
- package/dist/i18n/messages.d.ts +3 -0
- package/dist/i18n/messages.d.ts.map +1 -1
- package/dist/index.cjs +131 -111
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +148 -128
- package/dist/index.js.map +1 -1
- package/dist/tokens/base.css +10 -8
- package/package.json +1 -1
package/dist/tokens/base.css
CHANGED
|
@@ -11,11 +11,13 @@ a:hover{color:var(--text-link-hover)}
|
|
|
11
11
|
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,[tabindex]:focus-visible{outline:var(--focus-w) solid var(--focus-color);outline-offset:var(--focus-offset)}
|
|
12
12
|
code,kbd,samp{font:var(--type-code)}
|
|
13
13
|
table{border-collapse:collapse}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
.
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
.pire-sr-only
|
|
14
|
+
/* Element resets only — no classes, no keyframes.
|
|
15
|
+
|
|
16
|
+
This is the one part of the stylesheet a consumer can legitimately skip: the element-level
|
|
17
|
+
rules above collide with Tailwind Preflight, so a product migrating gradually has to leave it
|
|
18
|
+
out while the two coexist. Anything the component code or components.css references must
|
|
19
|
+
therefore live in components.css, or skipping the resets silently breaks a component.
|
|
20
|
+
|
|
21
|
+
That is not hypothetical. Through 0.11.0 this file also held `.pire-sr-only`, `.pire-numeric`,
|
|
22
|
+
`.pire-eyebrow` and the toast/dialog/fade keyframes, so skipping it dropped a class ChartFrame
|
|
23
|
+
needs — and every chart rendered its screen-reader data table in full view. */
|