@birdapi/velinstyle 0.6.1 → 0.8.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/README.de.md +337 -316
- package/README.md +33 -12
- package/cli/blueprint.js +8 -0
- package/cli/blueprints/bottom-nav-mobile.html +17 -0
- package/cli/blueprints/cookie-consent.html +9 -0
- package/cli/blueprints/empty-state.html +5 -0
- package/cli/blueprints/filter-bar.html +15 -0
- package/cli/blueprints/notification-center.html +13 -0
- package/cli/blueprints/onboarding.html +23 -0
- package/cli/blueprints/pricing-table.html +20 -0
- package/cli/blueprints/settings-panel.html +20 -0
- package/cli/index.js +119 -3
- package/cli/layout-audit.js +325 -0
- package/cli/scaffold-recipes.json +70 -0
- package/cli/scaffold.js +155 -0
- package/cli/scanner.js +114 -0
- package/components/focus-manager.js +106 -80
- package/components/index.js +20 -1
- package/components/sanitize.js +29 -3
- package/components/shadow-a11y-styles.js +18 -0
- package/components/velin-accordion.js +112 -98
- package/components/velin-announcer.js +35 -0
- package/components/velin-bottom-nav.js +89 -0
- package/components/velin-carousel.js +40 -5
- package/components/velin-collapse.js +95 -65
- package/components/velin-combobox.js +149 -0
- package/components/velin-command.js +127 -0
- package/components/velin-counter.js +152 -0
- package/components/velin-drawer.js +6 -3
- package/components/velin-dropdown.js +33 -2
- package/components/velin-flip.js +220 -0
- package/components/velin-icon.js +43 -9
- package/components/velin-live-dot.js +85 -0
- package/components/velin-menubar.js +83 -0
- package/components/velin-modal.js +3 -1
- package/components/velin-popover.js +61 -21
- package/components/velin-rating.js +91 -0
- package/components/velin-reveal.js +80 -0
- package/components/velin-segmented-control.js +108 -0
- package/components/velin-sheet.js +107 -0
- package/components/velin-sparkline.js +207 -0
- package/components/velin-theme-toggle.js +277 -60
- package/components/velin-tooltip-wc.js +26 -2
- package/dist/velinstyle-components.iife.js +1849 -120
- package/dist/velinstyle-components.js +1871 -120
- package/dist/velinstyle-components.min.js +434 -91
- package/dist/velinstyle.css +640 -44
- package/dist/velinstyle.min.css +1 -1
- package/package.json +7 -3
- package/src/a11y/focus-not-obscured.css +21 -0
- package/src/a11y/forced-colors.css +86 -38
- package/src/a11y/high-contrast-aaa.css +37 -0
- package/src/a11y/preferences.css +106 -85
- package/src/a11y/security.css +119 -104
- package/src/a11y/target-size.css +32 -0
- package/src/base/reset.css +12 -1
- package/src/base/root.css +4 -4
- package/src/components/nav.css +152 -151
- package/src/tokens/motion.css +7 -0
- package/src/utilities/animation.css +97 -1
- package/src/utilities/chart-animation.css +101 -0
- package/src/utilities/filter-effects.css +103 -0
- package/src/utilities/safe-area.css +39 -0
- package/src/velinstyle.css +9 -1
package/src/velinstyle.css
CHANGED
|
@@ -26,7 +26,9 @@
|
|
|
26
26
|
@import "a11y/forced-colors.css";
|
|
27
27
|
@import "a11y/skeleton.css";
|
|
28
28
|
@import "a11y/preferences.css";
|
|
29
|
-
@import "a11y/
|
|
29
|
+
@import "a11y/focus-not-obscured.css";
|
|
30
|
+
@import "a11y/target-size.css";
|
|
31
|
+
@import "a11y/high-contrast-aaa.css";
|
|
30
32
|
|
|
31
33
|
/* Layout */
|
|
32
34
|
@import "layout/breakpoints.css";
|
|
@@ -71,9 +73,12 @@
|
|
|
71
73
|
@import "utilities/border.css";
|
|
72
74
|
@import "utilities/position.css";
|
|
73
75
|
@import "utilities/animation.css";
|
|
76
|
+
@import "utilities/filter-effects.css";
|
|
77
|
+
@import "utilities/chart-animation.css";
|
|
74
78
|
@import "utilities/gradient.css";
|
|
75
79
|
@import "utilities/print.css";
|
|
76
80
|
@import "utilities/responsive.css";
|
|
81
|
+
@import "utilities/safe-area.css";
|
|
77
82
|
@import "utilities/divide.css";
|
|
78
83
|
@import "utilities/scroll.css";
|
|
79
84
|
@import "utilities/color-mix.css";
|
|
@@ -87,3 +92,6 @@
|
|
|
87
92
|
|
|
88
93
|
/* Helpers */
|
|
89
94
|
@import "helpers/helpers.css";
|
|
95
|
+
|
|
96
|
+
/* Security (separate layer from a11y) */
|
|
97
|
+
@import "a11y/security.css";
|