Skip to content

Commit

Permalink
Extract API
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 6, 2024
1 parent 82d2af6 commit 758da49
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions docs/review/api/alfa-style.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@

import type { Applicative } from '@siteimprove/alfa-applicative';
import { Array as Array_2 } from '@siteimprove/alfa-array';
import { BgSize } from './property/mask-size.js';
import { Box } from '@siteimprove/alfa-css';
import { Color } from '@siteimprove/alfa-css';
import { Component } from '@siteimprove/alfa-css/dist/value/position/component.js';
import { CompositingOperator } from './property/mask-composite.js';
import { Computed } from './property/line-height.js';
import { Contain } from '@siteimprove/alfa-css';
import { Context } from '@siteimprove/alfa-selector';
Expand All @@ -18,7 +20,6 @@ import { Device } from '@siteimprove/alfa-device';
import { Element } from '@siteimprove/alfa-dom';
import { Equatable } from '@siteimprove/alfa-equatable';
import type { Functor } from '@siteimprove/alfa-functor';
import { Gradient } from '@siteimprove/alfa-css';
import { Image } from '@siteimprove/alfa-css';
import { Integer } from '@siteimprove/alfa-css';
import { Iterable as Iterable_2 } from '@siteimprove/alfa-iterable';
Expand All @@ -30,6 +31,8 @@ import { LengthPercentage } from '@siteimprove/alfa-css';
import { List } from '@siteimprove/alfa-css';
import { Map as Map_2 } from '@siteimprove/alfa-map';
import type { Mapper } from '@siteimprove/alfa-mapper';
import { MaskingMode } from './property/mask-mode.js';
import { MaskReference } from './property/mask-image.js';
import type { Monad } from '@siteimprove/alfa-monad';
import { Node } from '@siteimprove/alfa-dom';
import { Number as Number_2 } from '@siteimprove/alfa-css';
Expand All @@ -43,6 +46,7 @@ import { Perspective } from '@siteimprove/alfa-css';
import { Position } from '@siteimprove/alfa-css';
import { Predicate } from '@siteimprove/alfa-predicate';
import { Rectangle } from '@siteimprove/alfa-css';
import { RepeatStyle } from './property/mask-repeat.js';
import type { Resolvable } from '@siteimprove/alfa-css';
import { Rotate } from '@siteimprove/alfa-css';
import { Scale } from '@siteimprove/alfa-css';
Expand Down Expand Up @@ -228,13 +232,13 @@ export namespace Longhands {
readonly "margin-right": Longhand<Percentage | Length | Keyword<"auto">, Length | Percentage | Keyword<"auto">>;
readonly "margin-top": Longhand<Percentage | Length | Keyword<"auto">, Length | Percentage | Keyword<"auto">>;
readonly "mask-clip": Longhand<List<Box.CoordBox | Keyword<"no-clip">>, List<Box.CoordBox | Keyword<"no-clip">>>;
readonly "mask-composite": Longhand<List<Keyword<"add"> | Keyword<"subtract"> | Keyword<"intersect"> | Keyword<"exclude">>, List<Keyword<"add"> | Keyword<"subtract"> | Keyword<"intersect"> | Keyword<"exclude">>>;
readonly "mask-image": Longhand<List<Keyword<"none"> | URL | Image<Gradient | URL>>, List<Keyword<"none"> | URL | Image<Gradient | URL>>>;
readonly "mask-mode": Longhand<List<Keyword<"alpha"> | Keyword<"luminance"> | Keyword<"match-source">>, List<Keyword<"alpha"> | Keyword<"luminance"> | Keyword<"match-source">>>;
readonly "mask-composite": Longhand<List<CompositingOperator>, List<CompositingOperator>>;
readonly "mask-image": Longhand<List<MaskReference>, List<MaskReference>>;
readonly "mask-mode": Longhand<List<MaskingMode>, List<MaskingMode>>;
readonly "mask-origin": Longhand<List<Box.CoordBox>, List<Box.CoordBox>>;
readonly "mask-position": Longhand<List<Position<Keywords.Horizontal, Keywords.Vertical, Component<Keywords.Horizontal>, Component<Keywords.Vertical>>>, List<Position.PartiallyResolved<Keywords.Horizontal, Keywords.Vertical>>>;
readonly "mask-repeat": Longhand<List<Keyword<"repeat-x"> | Keyword<"repeat-y"> | List<Keyword<"repeat"> | Keyword<"space"> | Keyword<"round"> | Keyword<"no-repeat">>>, List<Keyword<"repeat-x"> | Keyword<"repeat-y"> | List<Keyword<"repeat"> | Keyword<"space"> | Keyword<"round"> | Keyword<"no-repeat">>>>;
readonly "mask-size": Longhand<List<Keyword<"cover"> | Keyword<"contain"> | List<LengthPercentage | Keyword<"auto">>>, List<Keyword<"cover"> | Keyword<"contain"> | List<LengthPercentage | Keyword<"auto">>>>;
readonly "mask-repeat": Longhand<List<RepeatStyle>, List<RepeatStyle>>;
readonly "mask-size": Longhand<List<BgSize>, List<BgSize>>;
readonly "min-height": Longhand<Percentage | Length | Keyword<"auto"> | Keyword<"fit-content"> | Keyword<"max-content"> | Keyword<"min-content">, Length | Percentage | Keyword<"auto"> | Keyword<"fit-content"> | Keyword<"max-content"> | Keyword<"min-content">>;
readonly "min-width": Longhand<Percentage | Length | Keyword<"auto"> | Keyword<"fit-content"> | Keyword<"max-content"> | Keyword<"min-content">, Length | Percentage | Keyword<"auto"> | Keyword<"fit-content"> | Keyword<"max-content"> | Keyword<"min-content">>;
readonly "mix-blend-mode": Longhand<Keyword.ToKeywords<"screen" | "color" | "hue" | "saturation" | "normal" | "multiply" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "luminosity" | "plus-darker" | "plus-lighter">, Keyword.ToKeywords<"screen" | "color" | "hue" | "saturation" | "normal" | "multiply" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "luminosity" | "plus-darker" | "plus-lighter">>;
Expand Down

0 comments on commit 758da49

Please sign in to comment.