@jsenv/navi 0.29.107 → 0.29.108
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/jsenv_navi.js +637 -64
- package/dist/jsenv_navi.js.map +65 -37
- package/dist/jsenv_navi_side_effects.js +11 -0
- package/dist/jsenv_navi_side_effects.js.map +2 -2
- package/docs/form_changed.md +2 -1
- package/docs/navigation.md +9 -1
- package/docs/testid.md +20 -2
- package/package.json +1 -1
|
@@ -464,6 +464,17 @@ const css = /* css */`
|
|
|
464
464
|
/* Read by Button, and by whatever is drawn as one (a picker under
|
|
465
465
|
variant="button"), so the two keep the same surface. */
|
|
466
466
|
--navi-button-background-color: light-dark(#f3f4f6, #2d3748);
|
|
467
|
+
|
|
468
|
+
/* What a callout says about its message, as a color — and what draws
|
|
469
|
+
as one outside the callout too (the icon a picker in callout mode
|
|
470
|
+
presses, see CalloutStatusIcon). */
|
|
471
|
+
--navi-callout-success-color: #4caf50;
|
|
472
|
+
--navi-callout-info-color: #2196f3;
|
|
473
|
+
--navi-callout-warning-color: #ff9800;
|
|
474
|
+
--navi-callout-error-color: #f44336;
|
|
475
|
+
/* No status: the message is an aside, said without an icon and framed
|
|
476
|
+
like a control rather than like a warning. */
|
|
477
|
+
--navi-callout-neutral-color: var(--navi-control-border-color);
|
|
467
478
|
/* For list item we need slightly more padding to be able to see radio/checkbox outline */
|
|
468
479
|
--navi-list-item-padding-x-default: 4px;
|
|
469
480
|
--navi-list-item-padding-y-default: 1px;
|