Bump @justinribeiro/lite-youtube from 0.9.0 to 0.9.1 in /build/javascript (#273)
* Commit updated Javascript packages * Bump preact from 10.5.4 to 10.5.5 in /build/javascript (#265) * Trying a new github workflow to install javascript packages * Bump tailwindcss from 1.9.2 to 1.9.4 in /build/javascript (#266) Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 1.9.2 to 1.9.4. - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v1.9.2...v1.9.4) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Commit updated Javascript packages * Bump preact from 10.5.4 to 10.5.5 in /build/javascript Bumps [preact](https://github.com/preactjs/preact) from 10.5.4 to 10.5.5. - [Release notes](https://github.com/preactjs/preact/releases) - [Commits](https://github.com/preactjs/preact/compare/10.5.4...10.5.5) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Owncast <owncast@owncast.online> * Bump @justinribeiro/lite-youtube in /build/javascript Bumps [@justinribeiro/lite-youtube](https://github.com/justinribeiro/lite-youtube) from 0.9.0 to 0.9.1. - [Release notes](https://github.com/justinribeiro/lite-youtube/releases) - [Commits](https://github.com/justinribeiro/lite-youtube/commits) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Owncast <owncast@owncast.online> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com>
This commit is contained in:
172
build/javascript/node_modules/postcss-value-parser/lib/index.d.ts
generated
vendored
Normal file
172
build/javascript/node_modules/postcss-value-parser/lib/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,172 @@
|
||||
declare namespace postcssValueParser {
|
||||
interface BaseNode {
|
||||
/**
|
||||
* The offset inside the CSS value at which the node starts
|
||||
*/
|
||||
sourceIndex: number;
|
||||
|
||||
/**
|
||||
* The node's characteristic value
|
||||
*/
|
||||
value: string;
|
||||
}
|
||||
|
||||
interface ClosableNode {
|
||||
/**
|
||||
* Whether the parsed CSS value ended before the node was properly closed
|
||||
*/
|
||||
unclosed?: true;
|
||||
}
|
||||
|
||||
interface AdjacentAwareNode {
|
||||
/**
|
||||
* The token at the start of the node
|
||||
*/
|
||||
before: string;
|
||||
|
||||
/**
|
||||
* The token at the end of the node
|
||||
*/
|
||||
after: string;
|
||||
}
|
||||
|
||||
interface CommentNode extends BaseNode, ClosableNode {
|
||||
type: "comment";
|
||||
}
|
||||
|
||||
interface DivNode extends BaseNode, AdjacentAwareNode {
|
||||
type: "div";
|
||||
}
|
||||
|
||||
interface FunctionNode extends BaseNode, ClosableNode, AdjacentAwareNode {
|
||||
type: "function";
|
||||
|
||||
/**
|
||||
* Nodes inside the function
|
||||
*/
|
||||
nodes: Node[];
|
||||
}
|
||||
|
||||
interface SpaceNode extends BaseNode {
|
||||
type: "space";
|
||||
}
|
||||
|
||||
interface StringNode extends BaseNode, ClosableNode {
|
||||
type: "string";
|
||||
|
||||
/**
|
||||
* The quote type delimiting the string
|
||||
*/
|
||||
quote: '"' | "'";
|
||||
}
|
||||
|
||||
interface UnicodeRangeNode extends BaseNode {
|
||||
type: "unicode-range";
|
||||
}
|
||||
|
||||
interface WordNode extends BaseNode {
|
||||
type: "word";
|
||||
}
|
||||
|
||||
/**
|
||||
* Any node parsed from a CSS value
|
||||
*/
|
||||
type Node =
|
||||
| CommentNode
|
||||
| DivNode
|
||||
| FunctionNode
|
||||
| SpaceNode
|
||||
| StringNode
|
||||
| UnicodeRangeNode
|
||||
| WordNode;
|
||||
|
||||
interface CustomStringifierCallback {
|
||||
/**
|
||||
* @param node The node to stringify
|
||||
* @returns The serialized CSS representation of the node
|
||||
*/
|
||||
(nodes: Node): string | undefined;
|
||||
}
|
||||
|
||||
interface WalkCallback {
|
||||
/**
|
||||
* @param node The currently visited node
|
||||
* @param index The index of the node in the series of parsed nodes
|
||||
* @param nodes The series of parsed nodes
|
||||
* @returns Returning `false` will prevent traversal of descendant nodes (only applies if `bubble` was set to `true` in the `walk()` call)
|
||||
*/
|
||||
(node: Node, index: number, nodes: Node[]): void | boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* A CSS dimension, decomposed into its numeric and unit parts
|
||||
*/
|
||||
interface Dimension {
|
||||
number: string;
|
||||
unit: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* A wrapper around a parsed CSS value that allows for inspecting and walking nodes
|
||||
*/
|
||||
interface ParsedValue {
|
||||
/**
|
||||
* The series of parsed nodes
|
||||
*/
|
||||
nodes: Node[];
|
||||
|
||||
/**
|
||||
* Walk all parsed nodes, applying a callback
|
||||
*
|
||||
* @param callback A visitor callback that will be executed for each node
|
||||
* @param bubble When set to `true`, walking will be done inside-out instead of outside-in
|
||||
*/
|
||||
walk(callback: WalkCallback, bubble?: boolean): this;
|
||||
}
|
||||
|
||||
interface ValueParser {
|
||||
/**
|
||||
* Decompose a CSS dimension into its numeric and unit part
|
||||
*
|
||||
* @param value The dimension to decompose
|
||||
* @returns An object representing `number` and `unit` part of the dimension or `false` if the decomposing fails
|
||||
*/
|
||||
unit(value: string): Dimension | false;
|
||||
|
||||
/**
|
||||
* Serialize a series of nodes into a CSS value
|
||||
*
|
||||
* @param nodes The nodes to stringify
|
||||
* @param custom A custom stringifier callback
|
||||
* @returns The generated CSS value
|
||||
*/
|
||||
stringify(nodes: Node | Node[], custom?: CustomStringifierCallback): string;
|
||||
|
||||
/**
|
||||
* Walk a series of nodes, applying a callback
|
||||
*
|
||||
* @param nodes The nodes to walk
|
||||
* @param callback A visitor callback that will be executed for each node
|
||||
* @param bubble When set to `true`, walking will be done inside-out instead of outside-in
|
||||
*/
|
||||
walk(nodes: Node[], callback: WalkCallback, bubble?: boolean): void;
|
||||
|
||||
/**
|
||||
* Parse a CSS value into a series of nodes to operate on
|
||||
*
|
||||
* @param value The value to parse
|
||||
*/
|
||||
new (value: string): ParsedValue;
|
||||
|
||||
/**
|
||||
* Parse a CSS value into a series of nodes to operate on
|
||||
*
|
||||
* @param value The value to parse
|
||||
*/
|
||||
(value: string): ParsedValue;
|
||||
}
|
||||
}
|
||||
|
||||
declare const postcssValueParser: postcssValueParser.ValueParser;
|
||||
|
||||
export = postcssValueParser;
|
||||
Reference in New Issue
Block a user