@bookklik/senangstart-css 0.1.4 → 0.1.8
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/.github/workflows/deploy-docs.yml +7 -1
- package/dist/senangstart-css.js +1436 -14
- package/dist/senangstart-css.min.js +1159 -10
- package/docs/.vitepress/config.js +624 -18
- package/docs/.vitepress/theme/custom.css +0 -1
- package/docs/SYNTAX-REFERENCE.md +1555 -0
- package/docs/guide/preflight.md +139 -0
- package/docs/index.md +8 -20
- package/docs/ms/guide/preflight.md +139 -0
- package/docs/ms/index.md +8 -20
- package/docs/ms/reference/colors.md +45 -45
- package/docs/ms/reference/layout/align-content.md +35 -0
- package/docs/ms/reference/layout/align-items.md +33 -0
- package/docs/ms/reference/layout/align-self.md +34 -0
- package/docs/ms/reference/layout/aspect-ratio.md +40 -0
- package/docs/ms/reference/layout/border-collapse.md +30 -0
- package/docs/ms/reference/layout/border-spacing.md +39 -0
- package/docs/ms/reference/layout/box-sizing.md +30 -0
- package/docs/ms/reference/layout/caption-side.md +30 -0
- package/docs/ms/reference/layout/columns.md +30 -0
- package/docs/ms/reference/layout/container.md +29 -0
- package/docs/ms/reference/layout/display.md +60 -0
- package/docs/ms/reference/layout/flex-basis.md +38 -0
- package/docs/ms/reference/layout/flex-direction.md +33 -0
- package/docs/ms/reference/layout/flex-items.md +32 -0
- package/docs/ms/reference/layout/flex-wrap.md +31 -0
- package/docs/ms/reference/layout/flex.md +40 -0
- package/docs/ms/reference/layout/float-clear.md +32 -0
- package/docs/ms/reference/layout/grid-auto-flow.md +33 -0
- package/docs/ms/reference/layout/grid-auto-sizing.md +32 -0
- package/docs/ms/reference/layout/grid-column-span.md +31 -0
- package/docs/ms/reference/layout/grid-columns.md +32 -0
- package/docs/ms/reference/layout/grid-row-span.md +30 -0
- package/docs/ms/reference/layout/grid-rows.md +31 -0
- package/docs/ms/reference/layout/inset.md +44 -0
- package/docs/ms/reference/layout/isolation.md +30 -0
- package/docs/ms/reference/layout/justify-content.md +36 -0
- package/docs/ms/reference/layout/justify-items.md +32 -0
- package/docs/ms/reference/layout/justify-self.md +33 -0
- package/docs/ms/reference/layout/object-fit.md +33 -0
- package/docs/ms/reference/layout/object-position.md +45 -0
- package/docs/ms/reference/layout/order.md +32 -0
- package/docs/ms/reference/layout/overflow.md +34 -0
- package/docs/ms/reference/layout/overscroll.md +31 -0
- package/docs/ms/reference/layout/place-content.md +35 -0
- package/docs/ms/reference/layout/place-items.md +32 -0
- package/docs/ms/reference/layout/place-self.md +33 -0
- package/docs/ms/reference/layout/position.md +34 -0
- package/docs/ms/reference/layout/shorthand-alignment.md +34 -0
- package/docs/ms/reference/layout/table-layout.md +30 -0
- package/docs/ms/reference/layout/visibility.md +30 -0
- package/docs/ms/reference/layout/z-index.md +33 -0
- package/docs/ms/reference/layout.md +53 -95
- package/docs/ms/reference/space/arbitrary-values.md +32 -0
- package/docs/ms/reference/space/gap.md +44 -0
- package/docs/ms/reference/space/height.md +44 -0
- package/docs/ms/reference/space/margin.md +49 -0
- package/docs/ms/reference/space/padding.md +49 -0
- package/docs/ms/reference/space/scale-reference.md +43 -0
- package/docs/ms/reference/space/sizing.md +27 -0
- package/docs/ms/reference/space/width.md +45 -0
- package/docs/ms/reference/space.md +15 -99
- package/docs/ms/reference/spacing.md +22 -8
- package/docs/ms/reference/visual/accent-color.md +31 -0
- package/docs/ms/reference/visual/animation-builtin.md +41 -0
- package/docs/ms/reference/visual/animation-delay.md +41 -0
- package/docs/ms/reference/visual/animation-direction.md +32 -0
- package/docs/ms/reference/visual/animation-duration.md +43 -0
- package/docs/ms/reference/visual/animation-fill.md +32 -0
- package/docs/ms/reference/visual/animation-iteration.md +30 -0
- package/docs/ms/reference/visual/animation-play.md +30 -0
- package/docs/ms/reference/visual/appearance.md +30 -0
- package/docs/ms/reference/visual/backdrop-blur.md +43 -0
- package/docs/ms/reference/visual/backdrop-brightness.md +41 -0
- package/docs/ms/reference/visual/backdrop-contrast.md +41 -0
- package/docs/ms/reference/visual/backdrop-grayscale.md +39 -0
- package/docs/ms/reference/visual/backdrop-hue-rotate.md +39 -0
- package/docs/ms/reference/visual/backdrop-invert.md +39 -0
- package/docs/ms/reference/visual/backdrop-opacity.md +39 -0
- package/docs/ms/reference/visual/backdrop-saturate.md +41 -0
- package/docs/ms/reference/visual/backdrop-sepia.md +39 -0
- package/docs/ms/reference/visual/background-attachment.md +31 -0
- package/docs/ms/reference/visual/background-blend-mode.md +34 -0
- package/docs/ms/reference/visual/background-clip.md +32 -0
- package/docs/ms/reference/visual/background-color.md +33 -0
- package/docs/ms/reference/visual/background-image.md +41 -0
- package/docs/ms/reference/visual/background-origin.md +31 -0
- package/docs/ms/reference/visual/background-position.md +45 -0
- package/docs/ms/reference/visual/background-repeat.md +34 -0
- package/docs/ms/reference/visual/background-size.md +39 -0
- package/docs/ms/reference/visual/background.md +13 -0
- package/docs/ms/reference/visual/blend-modes.md +34 -0
- package/docs/ms/reference/visual/border-radius.md +34 -0
- package/docs/ms/reference/visual/border-style.md +33 -0
- package/docs/ms/reference/visual/border-width.md +44 -0
- package/docs/ms/reference/visual/border.md +43 -0
- package/docs/ms/reference/visual/box-shadow.md +33 -0
- package/docs/ms/reference/visual/caret-color.md +31 -0
- package/docs/ms/reference/visual/color-scheme.md +31 -0
- package/docs/ms/reference/visual/cursor.md +37 -0
- package/docs/ms/reference/visual/field-sizing.md +30 -0
- package/docs/ms/reference/visual/fill.md +38 -0
- package/docs/ms/reference/visual/filter-blur.md +43 -0
- package/docs/ms/reference/visual/filter-brightness.md +41 -0
- package/docs/ms/reference/visual/filter-contrast.md +41 -0
- package/docs/ms/reference/visual/filter-drop-shadow.md +42 -0
- package/docs/ms/reference/visual/filter-grayscale.md +39 -0
- package/docs/ms/reference/visual/filter-hue-rotate.md +39 -0
- package/docs/ms/reference/visual/filter-invert.md +39 -0
- package/docs/ms/reference/visual/filter-saturate.md +41 -0
- package/docs/ms/reference/visual/filter-sepia.md +39 -0
- package/docs/ms/reference/visual/font-family.md +31 -0
- package/docs/ms/reference/visual/font-smoothing.md +30 -0
- package/docs/ms/reference/visual/font-style.md +30 -0
- package/docs/ms/reference/visual/font-variant-numeric.md +35 -0
- package/docs/ms/reference/visual/font-weight.md +31 -0
- package/docs/ms/reference/visual/forced-color-adjust.md +30 -0
- package/docs/ms/reference/visual/hyphens.md +31 -0
- package/docs/ms/reference/visual/letter-spacing.md +42 -0
- package/docs/ms/reference/visual/line-clamp.md +40 -0
- package/docs/ms/reference/visual/line-height.md +42 -0
- package/docs/ms/reference/visual/list-style.md +34 -0
- package/docs/ms/reference/visual/mask.md +39 -0
- package/docs/ms/reference/visual/opacity.md +33 -0
- package/docs/ms/reference/visual/outline.md +31 -0
- package/docs/ms/reference/visual/pointer-events.md +30 -0
- package/docs/ms/reference/visual/resize.md +32 -0
- package/docs/ms/reference/visual/scroll-behavior.md +30 -0
- package/docs/ms/reference/visual/scroll-margin.md +41 -0
- package/docs/ms/reference/visual/scroll-padding.md +41 -0
- package/docs/ms/reference/visual/scroll-snap-align.md +32 -0
- package/docs/ms/reference/visual/scroll-snap-stop.md +30 -0
- package/docs/ms/reference/visual/scroll-snap-type.md +34 -0
- package/docs/ms/reference/visual/state-prefixes.md +37 -0
- package/docs/ms/reference/visual/stroke-width.md +39 -0
- package/docs/ms/reference/visual/stroke.md +38 -0
- package/docs/ms/reference/visual/text-alignment.md +32 -0
- package/docs/ms/reference/visual/text-color.md +41 -0
- package/docs/ms/reference/visual/text-decoration.md +32 -0
- package/docs/ms/reference/visual/text-indent.md +37 -0
- package/docs/ms/reference/visual/text-overflow.md +31 -0
- package/docs/ms/reference/visual/text-shadow.md +40 -0
- package/docs/ms/reference/visual/text-size.md +32 -0
- package/docs/ms/reference/visual/text-transform.md +32 -0
- package/docs/ms/reference/visual/text-wrap.md +32 -0
- package/docs/ms/reference/visual/touch-action.md +36 -0
- package/docs/ms/reference/visual/transform-backface.md +30 -0
- package/docs/ms/reference/visual/transform-origin.md +45 -0
- package/docs/ms/reference/visual/transform-perspective-origin.md +45 -0
- package/docs/ms/reference/visual/transform-perspective.md +43 -0
- package/docs/ms/reference/visual/transform-rotate.md +40 -0
- package/docs/ms/reference/visual/transform-scale.md +43 -0
- package/docs/ms/reference/visual/transform-skew.md +40 -0
- package/docs/ms/reference/visual/transform-style.md +30 -0
- package/docs/ms/reference/visual/transform-translate.md +39 -0
- package/docs/ms/reference/visual/transition-delay.md +41 -0
- package/docs/ms/reference/visual/transition-duration.md +43 -0
- package/docs/ms/reference/visual/transition-property.md +34 -0
- package/docs/ms/reference/visual/transition-timing.md +40 -0
- package/docs/ms/reference/visual/typography-keywords.md +81 -0
- package/docs/ms/reference/visual/user-select.md +32 -0
- package/docs/ms/reference/visual/vertical-align.md +36 -0
- package/docs/ms/reference/visual/whitespace.md +34 -0
- package/docs/ms/reference/visual/will-change.md +33 -0
- package/docs/ms/reference/visual/word-break.md +32 -0
- package/docs/ms/reference/visual.md +145 -148
- package/docs/public/assets/senangstart-css.min.js +1545 -0
- package/docs/reference/layout/align-content.md +35 -0
- package/docs/reference/layout/align-items.md +33 -0
- package/docs/reference/layout/align-self.md +34 -0
- package/docs/reference/layout/aspect-ratio.md +40 -0
- package/docs/reference/layout/border-collapse.md +30 -0
- package/docs/reference/layout/border-spacing.md +39 -0
- package/docs/reference/layout/box-sizing.md +30 -0
- package/docs/reference/layout/caption-side.md +30 -0
- package/docs/reference/layout/columns.md +30 -0
- package/docs/reference/layout/container.md +29 -0
- package/docs/reference/layout/display.md +60 -0
- package/docs/reference/layout/flex-basis.md +38 -0
- package/docs/reference/layout/flex-direction.md +33 -0
- package/docs/reference/layout/flex-items.md +32 -0
- package/docs/reference/layout/flex-wrap.md +31 -0
- package/docs/reference/layout/flex.md +40 -0
- package/docs/reference/layout/float-clear.md +32 -0
- package/docs/reference/layout/grid-auto-flow.md +33 -0
- package/docs/reference/layout/grid-auto-sizing.md +32 -0
- package/docs/reference/layout/grid-column-span.md +31 -0
- package/docs/reference/layout/grid-columns.md +32 -0
- package/docs/reference/layout/grid-row-span.md +30 -0
- package/docs/reference/layout/grid-rows.md +31 -0
- package/docs/reference/layout/inset.md +44 -0
- package/docs/reference/layout/isolation.md +30 -0
- package/docs/reference/layout/justify-content.md +36 -0
- package/docs/reference/layout/justify-items.md +32 -0
- package/docs/reference/layout/justify-self.md +33 -0
- package/docs/reference/layout/object-fit.md +33 -0
- package/docs/reference/layout/object-position.md +45 -0
- package/docs/reference/layout/order.md +32 -0
- package/docs/reference/layout/overflow.md +34 -0
- package/docs/reference/layout/overscroll.md +31 -0
- package/docs/reference/layout/place-content.md +35 -0
- package/docs/reference/layout/place-items.md +32 -0
- package/docs/reference/layout/place-self.md +33 -0
- package/docs/reference/layout/position.md +34 -0
- package/docs/reference/layout/shorthand-alignment.md +34 -0
- package/docs/reference/layout/table-layout.md +30 -0
- package/docs/reference/layout/visibility.md +30 -0
- package/docs/reference/layout/z-index.md +33 -0
- package/docs/reference/layout.md +60 -102
- package/docs/reference/space/arbitrary-values.md +39 -0
- package/docs/reference/space/gap.md +44 -0
- package/docs/reference/space/height.md +44 -0
- package/docs/reference/space/margin.md +49 -0
- package/docs/reference/space/padding.md +49 -0
- package/docs/reference/space/scale-reference.md +43 -0
- package/docs/reference/space/width.md +45 -0
- package/docs/reference/space.md +14 -98
- package/docs/reference/spacing.md +22 -8
- package/docs/reference/visual/accent-color.md +31 -0
- package/docs/reference/visual/animation-builtin.md +41 -0
- package/docs/reference/visual/animation-delay.md +41 -0
- package/docs/reference/visual/animation-direction.md +32 -0
- package/docs/reference/visual/animation-duration.md +43 -0
- package/docs/reference/visual/animation-fill.md +32 -0
- package/docs/reference/visual/animation-iteration.md +30 -0
- package/docs/reference/visual/animation-play.md +30 -0
- package/docs/reference/visual/appearance.md +30 -0
- package/docs/reference/visual/backdrop-blur.md +43 -0
- package/docs/reference/visual/backdrop-brightness.md +41 -0
- package/docs/reference/visual/backdrop-contrast.md +41 -0
- package/docs/reference/visual/backdrop-grayscale.md +39 -0
- package/docs/reference/visual/backdrop-hue-rotate.md +39 -0
- package/docs/reference/visual/backdrop-invert.md +39 -0
- package/docs/reference/visual/backdrop-opacity.md +39 -0
- package/docs/reference/visual/backdrop-saturate.md +41 -0
- package/docs/reference/visual/backdrop-sepia.md +39 -0
- package/docs/reference/visual/background-attachment.md +31 -0
- package/docs/reference/visual/background-blend-mode.md +34 -0
- package/docs/reference/visual/background-clip.md +32 -0
- package/docs/reference/visual/background-color.md +33 -0
- package/docs/reference/visual/background-image.md +41 -0
- package/docs/reference/visual/background-origin.md +31 -0
- package/docs/reference/visual/background-position.md +45 -0
- package/docs/reference/visual/background-repeat.md +34 -0
- package/docs/reference/visual/background-size.md +39 -0
- package/docs/reference/visual/blend-modes.md +34 -0
- package/docs/reference/visual/border-radius.md +34 -0
- package/docs/reference/visual/border-style.md +33 -0
- package/docs/reference/visual/border-width.md +44 -0
- package/docs/reference/visual/border.md +43 -0
- package/docs/reference/visual/box-shadow.md +33 -0
- package/docs/reference/visual/caret-color.md +31 -0
- package/docs/reference/visual/color-scheme.md +31 -0
- package/docs/reference/visual/cursor.md +37 -0
- package/docs/reference/visual/field-sizing.md +30 -0
- package/docs/reference/visual/fill.md +38 -0
- package/docs/reference/visual/filter-blur.md +43 -0
- package/docs/reference/visual/filter-brightness.md +41 -0
- package/docs/reference/visual/filter-contrast.md +41 -0
- package/docs/reference/visual/filter-drop-shadow.md +42 -0
- package/docs/reference/visual/filter-grayscale.md +39 -0
- package/docs/reference/visual/filter-hue-rotate.md +39 -0
- package/docs/reference/visual/filter-invert.md +39 -0
- package/docs/reference/visual/filter-saturate.md +41 -0
- package/docs/reference/visual/filter-sepia.md +39 -0
- package/docs/reference/visual/font-family.md +31 -0
- package/docs/reference/visual/font-smoothing.md +30 -0
- package/docs/reference/visual/font-style.md +30 -0
- package/docs/reference/visual/font-variant-numeric.md +35 -0
- package/docs/reference/visual/font-weight.md +31 -0
- package/docs/reference/visual/forced-color-adjust.md +30 -0
- package/docs/reference/visual/hyphens.md +31 -0
- package/docs/reference/visual/letter-spacing.md +42 -0
- package/docs/reference/visual/line-clamp.md +40 -0
- package/docs/reference/visual/line-height.md +42 -0
- package/docs/reference/visual/list-style.md +34 -0
- package/docs/reference/visual/mask.md +39 -0
- package/docs/reference/visual/opacity.md +33 -0
- package/docs/reference/visual/outline.md +31 -0
- package/docs/reference/visual/pointer-events.md +30 -0
- package/docs/reference/visual/resize.md +32 -0
- package/docs/reference/visual/scroll-behavior.md +30 -0
- package/docs/reference/visual/scroll-margin.md +41 -0
- package/docs/reference/visual/scroll-padding.md +41 -0
- package/docs/reference/visual/scroll-snap-align.md +32 -0
- package/docs/reference/visual/scroll-snap-stop.md +30 -0
- package/docs/reference/visual/scroll-snap-type.md +34 -0
- package/docs/reference/visual/state-prefixes.md +37 -0
- package/docs/reference/visual/stroke-width.md +39 -0
- package/docs/reference/visual/stroke.md +38 -0
- package/docs/reference/visual/text-alignment.md +32 -0
- package/docs/reference/visual/text-color.md +41 -0
- package/docs/reference/visual/text-decoration.md +32 -0
- package/docs/reference/visual/text-indent.md +37 -0
- package/docs/reference/visual/text-overflow.md +31 -0
- package/docs/reference/visual/text-shadow.md +40 -0
- package/docs/reference/visual/text-size.md +32 -0
- package/docs/reference/visual/text-transform.md +32 -0
- package/docs/reference/visual/text-wrap.md +32 -0
- package/docs/reference/visual/touch-action.md +36 -0
- package/docs/reference/visual/transform-backface.md +30 -0
- package/docs/reference/visual/transform-origin.md +45 -0
- package/docs/reference/visual/transform-perspective-origin.md +45 -0
- package/docs/reference/visual/transform-perspective.md +43 -0
- package/docs/reference/visual/transform-rotate.md +40 -0
- package/docs/reference/visual/transform-scale.md +43 -0
- package/docs/reference/visual/transform-skew.md +40 -0
- package/docs/reference/visual/transform-style.md +30 -0
- package/docs/reference/visual/transform-translate.md +39 -0
- package/docs/reference/visual/transition-delay.md +41 -0
- package/docs/reference/visual/transition-duration.md +43 -0
- package/docs/reference/visual/transition-property.md +34 -0
- package/docs/reference/visual/transition-timing.md +40 -0
- package/docs/reference/visual/typography-keywords.md +81 -0
- package/docs/reference/visual/user-select.md +32 -0
- package/docs/reference/visual/vertical-align.md +36 -0
- package/docs/reference/visual/whitespace.md +34 -0
- package/docs/reference/visual/will-change.md +33 -0
- package/docs/reference/visual/word-break.md +32 -0
- package/docs/reference/visual.md +151 -154
- package/docs/syntax-reference.json +1973 -0
- package/package.json +12 -4
- package/playground/index.html +78 -0
- package/playground/jit-test.html +384 -0
- package/scripts/extract-syntax.js +152 -0
- package/scripts/generate-docs.js +352 -0
- package/src/cdn/jit.js +1436 -14
- package/src/cli/commands/build.js +5 -0
- package/src/cli/index.js +2 -0
- package/src/compiler/generators/css.js +1537 -25
- package/src/compiler/generators/preflight.js +379 -0
- package/src/config/defaults.js +19 -1
- package/src/definitions/index.js +153 -0
- package/src/definitions/layout-alignment.js +257 -0
- package/src/definitions/layout-flex.js +209 -0
- package/src/definitions/layout-grid.js +150 -0
- package/src/definitions/layout-positioning.js +89 -0
- package/src/definitions/layout-table.js +98 -0
- package/src/definitions/layout-utilities.js +262 -0
- package/src/definitions/layout.js +195 -0
- package/src/definitions/space.js +164 -0
- package/src/definitions/visual-backgrounds.js +423 -0
- package/src/definitions/visual-borders.js +111 -0
- package/src/definitions/visual-filters.js +204 -0
- package/src/definitions/visual-interactivity.js +292 -0
- package/src/definitions/visual-svg.js +80 -0
- package/src/definitions/visual-transform3d.js +159 -0
- package/src/definitions/visual-transforms.js +142 -0
- package/src/definitions/visual-transitions.js +277 -0
- package/src/definitions/visual-typography.js +386 -0
- package/src/definitions/visual.js +542 -0
- package/tests/helpers/test-utils.js +144 -0
- package/tests/integration/compiler.test.js +247 -0
- package/tests/sync/docs-sync.test.js +364 -0
- package/tests/unit/compiler/generators/css.test.js +719 -0
- package/tests/unit/compiler/parser.test.js +244 -0
- package/tests/unit/compiler/tokenizer.test.js +305 -0
- package/tests/unit/config/defaults.test.js +168 -0
- package/docs/.vitepress/cache/deps/_metadata.json +0 -31
- package/docs/.vitepress/cache/deps/chunk-LE5NDSFD.js +0 -12824
- package/docs/.vitepress/cache/deps/chunk-LE5NDSFD.js.map +0 -7
- package/docs/.vitepress/cache/deps/package.json +0 -3
- package/docs/.vitepress/cache/deps/vitepress___@vue_devtools-api.js +0 -4505
- package/docs/.vitepress/cache/deps/vitepress___@vue_devtools-api.js.map +0 -7
- package/docs/.vitepress/cache/deps/vitepress___@vueuse_core.js +0 -9731
- package/docs/.vitepress/cache/deps/vitepress___@vueuse_core.js.map +0 -7
- package/docs/.vitepress/cache/deps/vue.js +0 -347
- package/docs/.vitepress/cache/deps/vue.js.map +0 -7
- package/docs/.vitepress/dist/404.html +0 -22
- package/docs/.vitepress/dist/assets/app.DBXoyO4w.js +0 -1
- package/docs/.vitepress/dist/assets/chunks/framework.I305HrzY.js +0 -19
- package/docs/.vitepress/dist/assets/chunks/theme.CaXH1t3X.js +0 -1
- package/docs/.vitepress/dist/assets/examples_cards.md.BCzaqSD6.js +0 -84
- package/docs/.vitepress/dist/assets/examples_cards.md.BCzaqSD6.lean.js +0 -1
- package/docs/.vitepress/dist/assets/examples_forms.md.DOjr9LrG.js +0 -169
- package/docs/.vitepress/dist/assets/examples_forms.md.DOjr9LrG.lean.js +0 -1
- package/docs/.vitepress/dist/assets/examples_hero.md.CAorji-Y.js +0 -118
- package/docs/.vitepress/dist/assets/examples_hero.md.CAorji-Y.lean.js +0 -1
- package/docs/.vitepress/dist/assets/examples_index.md.BjUNsTob.js +0 -52
- package/docs/.vitepress/dist/assets/examples_index.md.BjUNsTob.lean.js +0 -1
- package/docs/.vitepress/dist/assets/examples_navigation.md.DvL-Yv_5.js +0 -106
- package/docs/.vitepress/dist/assets/examples_navigation.md.DvL-Yv_5.lean.js +0 -1
- package/docs/.vitepress/dist/assets/guide_cdn.md.Bbb7-icp.js +0 -30
- package/docs/.vitepress/dist/assets/guide_cdn.md.Bbb7-icp.lean.js +0 -1
- package/docs/.vitepress/dist/assets/guide_cli.md.yLsOZ7NL.js +0 -44
- package/docs/.vitepress/dist/assets/guide_cli.md.yLsOZ7NL.lean.js +0 -1
- package/docs/.vitepress/dist/assets/guide_configuration.md.DN4FfKw4.js +0 -79
- package/docs/.vitepress/dist/assets/guide_configuration.md.DN4FfKw4.lean.js +0 -1
- package/docs/.vitepress/dist/assets/guide_dark-mode.md.D6UJvQtM.js +0 -69
- package/docs/.vitepress/dist/assets/guide_dark-mode.md.D6UJvQtM.lean.js +0 -1
- package/docs/.vitepress/dist/assets/guide_getting-started.md.K5nA8wXY.js +0 -47
- package/docs/.vitepress/dist/assets/guide_getting-started.md.K5nA8wXY.lean.js +0 -1
- package/docs/.vitepress/dist/assets/guide_index.md.B0lRU150.js +0 -3
- package/docs/.vitepress/dist/assets/guide_index.md.B0lRU150.lean.js +0 -1
- package/docs/.vitepress/dist/assets/guide_natural-scale.md.vvauT7U1.js +0 -22
- package/docs/.vitepress/dist/assets/guide_natural-scale.md.vvauT7U1.lean.js +0 -1
- package/docs/.vitepress/dist/assets/guide_philosophy.md.mOb9kp32.js +0 -7
- package/docs/.vitepress/dist/assets/guide_philosophy.md.mOb9kp32.lean.js +0 -1
- package/docs/.vitepress/dist/assets/guide_responsive.md.C7cF-4cR.js +0 -57
- package/docs/.vitepress/dist/assets/guide_responsive.md.C7cF-4cR.lean.js +0 -1
- package/docs/.vitepress/dist/assets/guide_states.md.CwtGEGHB.js +0 -77
- package/docs/.vitepress/dist/assets/guide_states.md.CwtGEGHB.lean.js +0 -1
- package/docs/.vitepress/dist/assets/guide_tri-attribute.md.CpjJLEMP.js +0 -45
- package/docs/.vitepress/dist/assets/guide_tri-attribute.md.CpjJLEMP.lean.js +0 -1
- package/docs/.vitepress/dist/assets/index.md.mYp6_S5X.js +0 -7
- package/docs/.vitepress/dist/assets/index.md.mYp6_S5X.lean.js +0 -1
- package/docs/.vitepress/dist/assets/inter-italic-cyrillic-ext.r48I6akx.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-italic-cyrillic.By2_1cv3.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-italic-greek-ext.1u6EdAuj.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-italic-greek.DJ8dCoTZ.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-italic-latin-ext.CN1xVJS-.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-italic-latin.C2AdPX0b.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-italic-vietnamese.BSbpV94h.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-cyrillic-ext.BBPuwvHQ.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-cyrillic.C5lxZ8CY.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-greek-ext.CqjqNYQ-.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-greek.BBVDIX6e.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-latin-ext.4ZJIpNVo.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-latin.Di8DUHzh.woff2 +0 -0
- package/docs/.vitepress/dist/assets/inter-roman-vietnamese.BjW4sHH5.woff2 +0 -0
- package/docs/.vitepress/dist/assets/ms_examples_cards.md.CaE5JNAs.js +0 -84
- package/docs/.vitepress/dist/assets/ms_examples_cards.md.CaE5JNAs.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_examples_forms.md.VvDzMzxF.js +0 -169
- package/docs/.vitepress/dist/assets/ms_examples_forms.md.VvDzMzxF.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_examples_hero.md.DC4c3kKW.js +0 -118
- package/docs/.vitepress/dist/assets/ms_examples_hero.md.DC4c3kKW.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_examples_index.md.C13ShcjA.js +0 -52
- package/docs/.vitepress/dist/assets/ms_examples_index.md.C13ShcjA.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_examples_navigation.md.BPtVjKbk.js +0 -106
- package/docs/.vitepress/dist/assets/ms_examples_navigation.md.BPtVjKbk.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_guide_cdn.md.tZFpEjTS.js +0 -30
- package/docs/.vitepress/dist/assets/ms_guide_cdn.md.tZFpEjTS.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_guide_cli.md.DBjxv3-o.js +0 -44
- package/docs/.vitepress/dist/assets/ms_guide_cli.md.DBjxv3-o.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_guide_configuration.md.CyYNqREm.js +0 -79
- package/docs/.vitepress/dist/assets/ms_guide_configuration.md.CyYNqREm.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_guide_dark-mode.md.DWDWvzzv.js +0 -69
- package/docs/.vitepress/dist/assets/ms_guide_dark-mode.md.DWDWvzzv.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_guide_getting-started.md.WoQwRhlY.js +0 -47
- package/docs/.vitepress/dist/assets/ms_guide_getting-started.md.WoQwRhlY.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_guide_index.md.pHpXZMmU.js +0 -3
- package/docs/.vitepress/dist/assets/ms_guide_index.md.pHpXZMmU.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_guide_natural-scale.md.BiUfU-TH.js +0 -22
- package/docs/.vitepress/dist/assets/ms_guide_natural-scale.md.BiUfU-TH.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_guide_philosophy.md.hf3SG2Ts.js +0 -7
- package/docs/.vitepress/dist/assets/ms_guide_philosophy.md.hf3SG2Ts.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_guide_responsive.md.C4yS3zzM.js +0 -57
- package/docs/.vitepress/dist/assets/ms_guide_responsive.md.C4yS3zzM.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_guide_states.md.DkDEjPdC.js +0 -77
- package/docs/.vitepress/dist/assets/ms_guide_states.md.DkDEjPdC.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_guide_tri-attribute.md.C3Es_V5J.js +0 -45
- package/docs/.vitepress/dist/assets/ms_guide_tri-attribute.md.C3Es_V5J.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_index.md.Bmo9il08.js +0 -7
- package/docs/.vitepress/dist/assets/ms_index.md.Bmo9il08.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_reference_breakpoints.md.DR7i_--b.js +0 -48
- package/docs/.vitepress/dist/assets/ms_reference_breakpoints.md.DR7i_--b.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_reference_colors.md.06ZYiMcJ.js +0 -17
- package/docs/.vitepress/dist/assets/ms_reference_colors.md.06ZYiMcJ.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_reference_layout.md.NGL6A5SR.js +0 -13
- package/docs/.vitepress/dist/assets/ms_reference_layout.md.NGL6A5SR.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_reference_space.md.BG5YQ-09.js +0 -24
- package/docs/.vitepress/dist/assets/ms_reference_space.md.BG5YQ-09.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_reference_spacing.md.XmXLLPOZ.js +0 -32
- package/docs/.vitepress/dist/assets/ms_reference_spacing.md.XmXLLPOZ.lean.js +0 -1
- package/docs/.vitepress/dist/assets/ms_reference_visual.md.BVOlkEqc.js +0 -22
- package/docs/.vitepress/dist/assets/ms_reference_visual.md.BVOlkEqc.lean.js +0 -1
- package/docs/.vitepress/dist/assets/reference_breakpoints.md.BRbG8Fzi.js +0 -48
- package/docs/.vitepress/dist/assets/reference_breakpoints.md.BRbG8Fzi.lean.js +0 -1
- package/docs/.vitepress/dist/assets/reference_colors.md.C7j7dSO1.js +0 -17
- package/docs/.vitepress/dist/assets/reference_colors.md.C7j7dSO1.lean.js +0 -1
- package/docs/.vitepress/dist/assets/reference_layout.md.BWJ5NxSp.js +0 -13
- package/docs/.vitepress/dist/assets/reference_layout.md.BWJ5NxSp.lean.js +0 -1
- package/docs/.vitepress/dist/assets/reference_space.md.DCsqfTWb.js +0 -24
- package/docs/.vitepress/dist/assets/reference_space.md.DCsqfTWb.lean.js +0 -1
- package/docs/.vitepress/dist/assets/reference_spacing.md.BInFD8gd.js +0 -32
- package/docs/.vitepress/dist/assets/reference_spacing.md.BInFD8gd.lean.js +0 -1
- package/docs/.vitepress/dist/assets/reference_visual.md.BRK7S9T1.js +0 -22
- package/docs/.vitepress/dist/assets/reference_visual.md.BRK7S9T1.lean.js +0 -1
- package/docs/.vitepress/dist/assets/style.D82StYDI.css +0 -1
- package/docs/.vitepress/dist/examples/cards.html +0 -108
- package/docs/.vitepress/dist/examples/forms.html +0 -193
- package/docs/.vitepress/dist/examples/hero.html +0 -142
- package/docs/.vitepress/dist/examples/index.html +0 -76
- package/docs/.vitepress/dist/examples/navigation.html +0 -130
- package/docs/.vitepress/dist/guide/cdn.html +0 -54
- package/docs/.vitepress/dist/guide/cli.html +0 -68
- package/docs/.vitepress/dist/guide/configuration.html +0 -103
- package/docs/.vitepress/dist/guide/dark-mode.html +0 -93
- package/docs/.vitepress/dist/guide/getting-started.html +0 -71
- package/docs/.vitepress/dist/guide/index.html +0 -27
- package/docs/.vitepress/dist/guide/natural-scale.html +0 -46
- package/docs/.vitepress/dist/guide/philosophy.html +0 -31
- package/docs/.vitepress/dist/guide/responsive.html +0 -81
- package/docs/.vitepress/dist/guide/states.html +0 -101
- package/docs/.vitepress/dist/guide/tri-attribute.html +0 -69
- package/docs/.vitepress/dist/hashmap.json +0 -1
- package/docs/.vitepress/dist/index.html +0 -31
- package/docs/.vitepress/dist/ms/examples/cards.html +0 -108
- package/docs/.vitepress/dist/ms/examples/forms.html +0 -193
- package/docs/.vitepress/dist/ms/examples/hero.html +0 -142
- package/docs/.vitepress/dist/ms/examples/index.html +0 -76
- package/docs/.vitepress/dist/ms/examples/navigation.html +0 -130
- package/docs/.vitepress/dist/ms/guide/cdn.html +0 -54
- package/docs/.vitepress/dist/ms/guide/cli.html +0 -68
- package/docs/.vitepress/dist/ms/guide/configuration.html +0 -103
- package/docs/.vitepress/dist/ms/guide/dark-mode.html +0 -93
- package/docs/.vitepress/dist/ms/guide/getting-started.html +0 -71
- package/docs/.vitepress/dist/ms/guide/index.html +0 -27
- package/docs/.vitepress/dist/ms/guide/natural-scale.html +0 -46
- package/docs/.vitepress/dist/ms/guide/philosophy.html +0 -31
- package/docs/.vitepress/dist/ms/guide/responsive.html +0 -81
- package/docs/.vitepress/dist/ms/guide/states.html +0 -101
- package/docs/.vitepress/dist/ms/guide/tri-attribute.html +0 -69
- package/docs/.vitepress/dist/ms/index.html +0 -31
- package/docs/.vitepress/dist/ms/reference/breakpoints.html +0 -72
- package/docs/.vitepress/dist/ms/reference/colors.html +0 -41
- package/docs/.vitepress/dist/ms/reference/layout.html +0 -37
- package/docs/.vitepress/dist/ms/reference/space.html +0 -48
- package/docs/.vitepress/dist/ms/reference/spacing.html +0 -56
- package/docs/.vitepress/dist/ms/reference/visual.html +0 -46
- package/docs/.vitepress/dist/reference/breakpoints.html +0 -72
- package/docs/.vitepress/dist/reference/colors.html +0 -41
- package/docs/.vitepress/dist/reference/layout.html +0 -37
- package/docs/.vitepress/dist/reference/space.html +0 -48
- package/docs/.vitepress/dist/reference/spacing.html +0 -56
- package/docs/.vitepress/dist/reference/visual.html +0 -46
- package/docs/.vitepress/dist/vp-icons.css +0 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Field Sizing
|
|
2
|
+
|
|
3
|
+
Control form field sizing
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="field-sizing:[value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `fixed` | `field-sizing: fixed` | Fixed size |
|
|
15
|
+
| `content` | `field-sizing: content` | Size to content |
|
|
16
|
+
|
|
17
|
+
## Examples
|
|
18
|
+
|
|
19
|
+
```html
|
|
20
|
+
<textarea visual="field-sizing:content">Auto-grow textarea</textarea>
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Responsive
|
|
24
|
+
|
|
25
|
+
```html
|
|
26
|
+
<!-- Responsive example -->
|
|
27
|
+
<div visual="mob:... tab:... lap:...">
|
|
28
|
+
Responsive content
|
|
29
|
+
</div>
|
|
30
|
+
```
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Fill
|
|
2
|
+
|
|
3
|
+
Set SVG fill color
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="fill:[color]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `none` | `fill: none` | No fill |
|
|
15
|
+
| `current` | `fill: currentColor` | Current color |
|
|
16
|
+
|
|
17
|
+
## Examples
|
|
18
|
+
|
|
19
|
+
```html
|
|
20
|
+
<svg visual="fill:primary">...</svg>
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Arbitrary Values
|
|
24
|
+
|
|
25
|
+
Supports custom values using bracket syntax:
|
|
26
|
+
|
|
27
|
+
```html
|
|
28
|
+
<div visual="fill:[custom-value]">Custom</div>
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Responsive
|
|
32
|
+
|
|
33
|
+
```html
|
|
34
|
+
<!-- Responsive example -->
|
|
35
|
+
<div visual="mob:... tab:... lap:...">
|
|
36
|
+
Responsive content
|
|
37
|
+
</div>
|
|
38
|
+
```
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Filter Blur
|
|
2
|
+
|
|
3
|
+
Apply blur filter
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="blur:[value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `none` | `filter: blur(0)` | No blur |
|
|
15
|
+
| `tiny` | `filter: blur(2px)` | Tiny blur |
|
|
16
|
+
| `small` | `filter: blur(4px)` | Small blur |
|
|
17
|
+
| `medium` | `filter: blur(8px)` | Medium blur |
|
|
18
|
+
| `big` | `filter: blur(12px)` | Large blur |
|
|
19
|
+
| `giant` | `filter: blur(24px)` | Giant blur |
|
|
20
|
+
| `vast` | `filter: blur(48px)` | Vast blur |
|
|
21
|
+
|
|
22
|
+
## Examples
|
|
23
|
+
|
|
24
|
+
```html
|
|
25
|
+
<div visual="blur:medium">Blurred element</div>
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Arbitrary Values
|
|
29
|
+
|
|
30
|
+
Supports custom values using bracket syntax:
|
|
31
|
+
|
|
32
|
+
```html
|
|
33
|
+
<div visual="filter:[custom-value]">Custom</div>
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Responsive
|
|
37
|
+
|
|
38
|
+
```html
|
|
39
|
+
<!-- Responsive example -->
|
|
40
|
+
<div visual="mob:... tab:... lap:...">
|
|
41
|
+
Responsive content
|
|
42
|
+
</div>
|
|
43
|
+
```
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Filter Brightness
|
|
2
|
+
|
|
3
|
+
Adjust brightness
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="brightness:[value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `dim` | `filter: brightness(0.5)` | 50% brightness |
|
|
15
|
+
| `dark` | `filter: brightness(0.75)` | 75% brightness |
|
|
16
|
+
| `normal` | `filter: brightness(1)` | Normal brightness |
|
|
17
|
+
| `bright` | `filter: brightness(1.25)` | 125% brightness |
|
|
18
|
+
| `vivid` | `filter: brightness(1.5)` | 150% brightness |
|
|
19
|
+
|
|
20
|
+
## Examples
|
|
21
|
+
|
|
22
|
+
```html
|
|
23
|
+
<img visual="brightness:bright">Brighter image</img>
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Arbitrary Values
|
|
27
|
+
|
|
28
|
+
Supports custom values using bracket syntax:
|
|
29
|
+
|
|
30
|
+
```html
|
|
31
|
+
<div visual="filter:[custom-value]">Custom</div>
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Responsive
|
|
35
|
+
|
|
36
|
+
```html
|
|
37
|
+
<!-- Responsive example -->
|
|
38
|
+
<div visual="mob:... tab:... lap:...">
|
|
39
|
+
Responsive content
|
|
40
|
+
</div>
|
|
41
|
+
```
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Filter Contrast
|
|
2
|
+
|
|
3
|
+
Adjust contrast
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="contrast:[value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `low` | `filter: contrast(0.5)` | Low contrast |
|
|
15
|
+
| `reduced` | `filter: contrast(0.75)` | Reduced contrast |
|
|
16
|
+
| `normal` | `filter: contrast(1)` | Normal contrast |
|
|
17
|
+
| `high` | `filter: contrast(1.25)` | High contrast |
|
|
18
|
+
| `max` | `filter: contrast(1.5)` | Maximum contrast |
|
|
19
|
+
|
|
20
|
+
## Examples
|
|
21
|
+
|
|
22
|
+
```html
|
|
23
|
+
<img visual="contrast:high">High contrast</img>
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Arbitrary Values
|
|
27
|
+
|
|
28
|
+
Supports custom values using bracket syntax:
|
|
29
|
+
|
|
30
|
+
```html
|
|
31
|
+
<div visual="filter:[custom-value]">Custom</div>
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Responsive
|
|
35
|
+
|
|
36
|
+
```html
|
|
37
|
+
<!-- Responsive example -->
|
|
38
|
+
<div visual="mob:... tab:... lap:...">
|
|
39
|
+
Responsive content
|
|
40
|
+
</div>
|
|
41
|
+
```
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Filter Drop Shadow
|
|
2
|
+
|
|
3
|
+
Add drop shadow
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="drop-shadow:[value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `none` | `filter: drop-shadow(none)` | No shadow |
|
|
15
|
+
| `tiny` | `filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05))` | Tiny shadow |
|
|
16
|
+
| `small` | `filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1))` | Small shadow |
|
|
17
|
+
| `medium` | `filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07))` | Medium shadow |
|
|
18
|
+
| `big` | `filter: drop-shadow(0 10px 8px rgba(0,0,0,0.04))` | Large shadow |
|
|
19
|
+
| `giant` | `filter: drop-shadow(0 20px 13px rgba(0,0,0,0.03))` | Giant shadow |
|
|
20
|
+
|
|
21
|
+
## Examples
|
|
22
|
+
|
|
23
|
+
```html
|
|
24
|
+
<img visual="drop-shadow:medium">Shadow on image</img>
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Arbitrary Values
|
|
28
|
+
|
|
29
|
+
Supports custom values using bracket syntax:
|
|
30
|
+
|
|
31
|
+
```html
|
|
32
|
+
<div visual="filter:[custom-value]">Custom</div>
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Responsive
|
|
36
|
+
|
|
37
|
+
```html
|
|
38
|
+
<!-- Responsive example -->
|
|
39
|
+
<div visual="mob:... tab:... lap:...">
|
|
40
|
+
Responsive content
|
|
41
|
+
</div>
|
|
42
|
+
```
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Filter Grayscale
|
|
2
|
+
|
|
3
|
+
Apply grayscale filter
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="grayscale:[value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `none` | `filter: grayscale(0%)` | No grayscale |
|
|
15
|
+
| `partial` | `filter: grayscale(50%)` | 50% grayscale |
|
|
16
|
+
| `full` | `filter: grayscale(100%)` | Full grayscale |
|
|
17
|
+
|
|
18
|
+
## Examples
|
|
19
|
+
|
|
20
|
+
```html
|
|
21
|
+
<img visual="grayscale:full">Black and white</img>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Arbitrary Values
|
|
25
|
+
|
|
26
|
+
Supports custom values using bracket syntax:
|
|
27
|
+
|
|
28
|
+
```html
|
|
29
|
+
<div visual="filter:[custom-value]">Custom</div>
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Responsive
|
|
33
|
+
|
|
34
|
+
```html
|
|
35
|
+
<!-- Responsive example -->
|
|
36
|
+
<div visual="mob:... tab:... lap:...">
|
|
37
|
+
Responsive content
|
|
38
|
+
</div>
|
|
39
|
+
```
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Filter Hue Rotate
|
|
2
|
+
|
|
3
|
+
Rotate hue colors
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="hue-rotate:[degrees]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `0` | `filter: hue-rotate(0deg)` | No rotation |
|
|
15
|
+
| `90` | `filter: hue-rotate(90deg)` | 90° rotation |
|
|
16
|
+
| `180` | `filter: hue-rotate(180deg)` | 180° rotation |
|
|
17
|
+
|
|
18
|
+
## Examples
|
|
19
|
+
|
|
20
|
+
```html
|
|
21
|
+
<img visual="hue-rotate:90">Shifted hue</img>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Arbitrary Values
|
|
25
|
+
|
|
26
|
+
Supports custom values using bracket syntax:
|
|
27
|
+
|
|
28
|
+
```html
|
|
29
|
+
<div visual="filter:[custom-value]">Custom</div>
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Responsive
|
|
33
|
+
|
|
34
|
+
```html
|
|
35
|
+
<!-- Responsive example -->
|
|
36
|
+
<div visual="mob:... tab:... lap:...">
|
|
37
|
+
Responsive content
|
|
38
|
+
</div>
|
|
39
|
+
```
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Filter Invert
|
|
2
|
+
|
|
3
|
+
Invert colors
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="invert:[value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `none` | `filter: invert(0%)` | No inversion |
|
|
15
|
+
| `partial` | `filter: invert(50%)` | 50% inversion |
|
|
16
|
+
| `full` | `filter: invert(100%)` | Full inversion |
|
|
17
|
+
|
|
18
|
+
## Examples
|
|
19
|
+
|
|
20
|
+
```html
|
|
21
|
+
<img visual="invert:full">Inverted colors</img>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Arbitrary Values
|
|
25
|
+
|
|
26
|
+
Supports custom values using bracket syntax:
|
|
27
|
+
|
|
28
|
+
```html
|
|
29
|
+
<div visual="filter:[custom-value]">Custom</div>
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Responsive
|
|
33
|
+
|
|
34
|
+
```html
|
|
35
|
+
<!-- Responsive example -->
|
|
36
|
+
<div visual="mob:... tab:... lap:...">
|
|
37
|
+
Responsive content
|
|
38
|
+
</div>
|
|
39
|
+
```
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Filter Saturate
|
|
2
|
+
|
|
3
|
+
Adjust saturation
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="saturate:[value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `none` | `filter: saturate(0)` | Desaturated |
|
|
15
|
+
| `low` | `filter: saturate(0.5)` | Low saturation |
|
|
16
|
+
| `normal` | `filter: saturate(1)` | Normal saturation |
|
|
17
|
+
| `high` | `filter: saturate(1.5)` | High saturation |
|
|
18
|
+
| `vivid` | `filter: saturate(2)` | Very saturated |
|
|
19
|
+
|
|
20
|
+
## Examples
|
|
21
|
+
|
|
22
|
+
```html
|
|
23
|
+
<img visual="saturate:vivid">Vivid colors</img>
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Arbitrary Values
|
|
27
|
+
|
|
28
|
+
Supports custom values using bracket syntax:
|
|
29
|
+
|
|
30
|
+
```html
|
|
31
|
+
<div visual="filter:[custom-value]">Custom</div>
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Responsive
|
|
35
|
+
|
|
36
|
+
```html
|
|
37
|
+
<!-- Responsive example -->
|
|
38
|
+
<div visual="mob:... tab:... lap:...">
|
|
39
|
+
Responsive content
|
|
40
|
+
</div>
|
|
41
|
+
```
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Filter Sepia
|
|
2
|
+
|
|
3
|
+
Apply sepia filter
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="sepia:[value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `none` | `filter: sepia(0%)` | No sepia |
|
|
15
|
+
| `partial` | `filter: sepia(50%)` | 50% sepia |
|
|
16
|
+
| `full` | `filter: sepia(100%)` | Full sepia |
|
|
17
|
+
|
|
18
|
+
## Examples
|
|
19
|
+
|
|
20
|
+
```html
|
|
21
|
+
<img visual="sepia:full">Vintage look</img>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Arbitrary Values
|
|
25
|
+
|
|
26
|
+
Supports custom values using bracket syntax:
|
|
27
|
+
|
|
28
|
+
```html
|
|
29
|
+
<div visual="filter:[custom-value]">Custom</div>
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Responsive
|
|
33
|
+
|
|
34
|
+
```html
|
|
35
|
+
<!-- Responsive example -->
|
|
36
|
+
<div visual="mob:... tab:... lap:...">
|
|
37
|
+
Responsive content
|
|
38
|
+
</div>
|
|
39
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Font Family
|
|
2
|
+
|
|
3
|
+
Set font family
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="font:[family]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `sans` | `font-family: ui-sans-serif, system-ui, sans-serif` | Sans-serif |
|
|
15
|
+
| `serif` | `font-family: ui-serif, Georgia, serif` | Serif |
|
|
16
|
+
| `mono` | `font-family: ui-monospace, monospace` | Monospace |
|
|
17
|
+
|
|
18
|
+
## Examples
|
|
19
|
+
|
|
20
|
+
```html
|
|
21
|
+
<div visual="font:mono">Monospace text</div>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Responsive
|
|
25
|
+
|
|
26
|
+
```html
|
|
27
|
+
<!-- Responsive example -->
|
|
28
|
+
<div visual="mob:... tab:... lap:...">
|
|
29
|
+
Responsive content
|
|
30
|
+
</div>
|
|
31
|
+
```
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Font Smoothing
|
|
2
|
+
|
|
3
|
+
Control font smoothing
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="[smoothing-value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `antialiased` | `-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale` | Antialiased |
|
|
15
|
+
| `subpixel-antialiased` | `-webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto` | Subpixel antialiased |
|
|
16
|
+
|
|
17
|
+
## Examples
|
|
18
|
+
|
|
19
|
+
```html
|
|
20
|
+
<body visual="antialiased">Smooth fonts</body>
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Responsive
|
|
24
|
+
|
|
25
|
+
```html
|
|
26
|
+
<!-- Responsive example -->
|
|
27
|
+
<div visual="mob:... tab:... lap:...">
|
|
28
|
+
Responsive content
|
|
29
|
+
</div>
|
|
30
|
+
```
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Font Style
|
|
2
|
+
|
|
3
|
+
Set font style
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="[style-value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `italic` | `font-style: italic` | Italic text |
|
|
15
|
+
| `not-italic` | `font-style: normal` | Normal style |
|
|
16
|
+
|
|
17
|
+
## Examples
|
|
18
|
+
|
|
19
|
+
```html
|
|
20
|
+
<em visual="not-italic">Normal style emphasis</em>
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Responsive
|
|
24
|
+
|
|
25
|
+
```html
|
|
26
|
+
<!-- Responsive example -->
|
|
27
|
+
<div visual="mob:... tab:... lap:...">
|
|
28
|
+
Responsive content
|
|
29
|
+
</div>
|
|
30
|
+
```
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Font Variant Numeric
|
|
2
|
+
|
|
3
|
+
Control numeric font variants
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="[variant-value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `normal-nums` | `font-variant-numeric: normal` | Normal numbers |
|
|
15
|
+
| `ordinal` | `font-variant-numeric: ordinal` | Ordinal markers |
|
|
16
|
+
| `slashed-zero` | `font-variant-numeric: slashed-zero` | Slashed zero |
|
|
17
|
+
| `lining-nums` | `font-variant-numeric: lining-nums` | Lining numbers |
|
|
18
|
+
| `oldstyle-nums` | `font-variant-numeric: oldstyle-nums` | Oldstyle numbers |
|
|
19
|
+
| `proportional-nums` | `font-variant-numeric: proportional-nums` | Proportional numbers |
|
|
20
|
+
| `tabular-nums` | `font-variant-numeric: tabular-nums` | Tabular numbers |
|
|
21
|
+
|
|
22
|
+
## Examples
|
|
23
|
+
|
|
24
|
+
```html
|
|
25
|
+
<span visual="tabular-nums">123,456.00</span>
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Responsive
|
|
29
|
+
|
|
30
|
+
```html
|
|
31
|
+
<!-- Responsive example -->
|
|
32
|
+
<div visual="mob:... tab:... lap:...">
|
|
33
|
+
Responsive content
|
|
34
|
+
</div>
|
|
35
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Font Weight
|
|
2
|
+
|
|
3
|
+
Set font weight
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="font:[weight]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `normal` | `font-weight: var(--fw-normal)` | Normal weight |
|
|
15
|
+
| `medium` | `font-weight: var(--fw-medium)` | Medium weight |
|
|
16
|
+
| `bold` | `font-weight: var(--fw-bold)` | Bold weight |
|
|
17
|
+
|
|
18
|
+
## Examples
|
|
19
|
+
|
|
20
|
+
```html
|
|
21
|
+
<div visual="font:bold">Bold text</div>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Responsive
|
|
25
|
+
|
|
26
|
+
```html
|
|
27
|
+
<!-- Responsive example -->
|
|
28
|
+
<div visual="mob:... tab:... lap:...">
|
|
29
|
+
Responsive content
|
|
30
|
+
</div>
|
|
31
|
+
```
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Forced Color Adjust
|
|
2
|
+
|
|
3
|
+
Control forced colors mode behavior
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="forced-color:[value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `auto` | `forced-color-adjust: auto` | Auto adjust |
|
|
15
|
+
| `none` | `forced-color-adjust: none` | No adjustment |
|
|
16
|
+
|
|
17
|
+
## Examples
|
|
18
|
+
|
|
19
|
+
```html
|
|
20
|
+
<div visual="forced-color:none">Preserve colors in high contrast</div>
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Responsive
|
|
24
|
+
|
|
25
|
+
```html
|
|
26
|
+
<!-- Responsive example -->
|
|
27
|
+
<div visual="mob:... tab:... lap:...">
|
|
28
|
+
Responsive content
|
|
29
|
+
</div>
|
|
30
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Hyphens
|
|
2
|
+
|
|
3
|
+
Control hyphenation
|
|
4
|
+
|
|
5
|
+
## Syntax
|
|
6
|
+
```
|
|
7
|
+
visual="hyphens:[value]"
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Values
|
|
11
|
+
|
|
12
|
+
| Value | CSS Output | Description |
|
|
13
|
+
|-------|------------|-------------|
|
|
14
|
+
| `none` | `hyphens: none` | No hyphens |
|
|
15
|
+
| `manual` | `hyphens: manual` | Manual hyphens |
|
|
16
|
+
| `auto` | `hyphens: auto` | Auto hyphens |
|
|
17
|
+
|
|
18
|
+
## Examples
|
|
19
|
+
|
|
20
|
+
```html
|
|
21
|
+
<p visual="hyphens:auto">Automatic hyphenation</p>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Responsive
|
|
25
|
+
|
|
26
|
+
```html
|
|
27
|
+
<!-- Responsive example -->
|
|
28
|
+
<div visual="mob:... tab:... lap:...">
|
|
29
|
+
Responsive content
|
|
30
|
+
</div>
|
|
31
|
+
```
|