rebuild hrm
This commit is contained in:
30
node_modules/lightningcss/node/ast.js.flow
generated
vendored
30
node_modules/lightningcss/node/ast.js.flow
generated
vendored
@@ -62,6 +62,10 @@ export type Rule<D = Declaration, M = MediaQuery> =
|
||||
type: "nesting",
|
||||
value: NestingRule<D, M>,
|
||||
|}
|
||||
| {|
|
||||
type: "nested-declarations",
|
||||
value: NestedDeclarationsRule<D>,
|
||||
|}
|
||||
| {|
|
||||
type: "viewport",
|
||||
value: ViewportRule<D>,
|
||||
@@ -7224,6 +7228,12 @@ export type PseudoElement =
|
||||
| {|
|
||||
kind: "first-letter",
|
||||
|}
|
||||
| {|
|
||||
kind: "details-content",
|
||||
|}
|
||||
| {|
|
||||
kind: "target-text",
|
||||
|}
|
||||
| {|
|
||||
kind: "selection",
|
||||
vendorPrefix: VendorPrefix,
|
||||
@@ -7842,9 +7852,13 @@ export type ContainerSizeFeatureId =
|
||||
*/
|
||||
export type StyleQuery<D = Declaration> =
|
||||
| {|
|
||||
type: "feature",
|
||||
type: "declaration",
|
||||
value: D,
|
||||
|}
|
||||
| {|
|
||||
type: "property",
|
||||
value: PropertyId,
|
||||
|}
|
||||
| {|
|
||||
type: "not",
|
||||
value: StyleQuery<D>,
|
||||
@@ -10121,6 +10135,20 @@ export interface NestingRule<D = Declaration, M = MediaQuery> {
|
||||
*/
|
||||
style: StyleRule<D, M>;
|
||||
}
|
||||
/**
|
||||
* A [nested declarations](https://drafts.csswg.org/css-nesting/#nested-declarations-rule) rule.
|
||||
*/
|
||||
export interface NestedDeclarationsRule<D = Declaration> {
|
||||
/**
|
||||
* The style rule that defines the selector and declarations for the `@nest` rule.
|
||||
*/
|
||||
declarations: DeclarationBlock<D>;
|
||||
|
||||
/**
|
||||
* The location of the rule in the source file.
|
||||
*/
|
||||
loc: Location2;
|
||||
}
|
||||
/**
|
||||
* A [@viewport](https://drafts.csswg.org/css-device-adapt/#atviewport-rule) rule.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user