This commit is contained in:
Iliyan Angelov
2025-09-14 23:24:25 +03:00
commit c67067a2a4
71311 changed files with 6800714 additions and 0 deletions

1
frontend/node_modules/postcss-nesting/dist/index.cjs generated vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,6 @@
import type { PluginCreator } from 'postcss';
declare type pluginOptions = {
noIsPseudoSelector?: boolean;
};
declare const creator: PluginCreator<pluginOptions>;
export default creator;

1
frontend/node_modules/postcss-nesting/dist/index.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,3 @@
import type { AtRule } from 'postcss';
export default function transformAtruleWithinAtrule(node: AtRule, parent: AtRule): void;
export declare function isAtruleWithinAtrule(node: AtRule, parent: AtRule): boolean;

View File

@@ -0,0 +1,5 @@
import { options } from './options.js';
import { walkFunc } from './walk-func.js';
import type { AtRule, Rule } from 'postcss';
export default function atruleWithinRule(node: AtRule, parent: Rule, walk: walkFunc, opts: options): void;
export declare function isAtruleWithinRule(node: AtRule): boolean;

View File

@@ -0,0 +1,2 @@
import type { ChildNode, Container } from 'postcss';
export default function cleanupParent(parent: Container<ChildNode>): void;

View File

@@ -0,0 +1,4 @@
import type { AtRule, Node, Rule } from 'postcss';
export declare function isAtRule(node?: Node): node is AtRule;
export declare function isNestRule(node?: Node): node is AtRule;
export declare function isRule(node?: Node): node is Rule;

View File

@@ -0,0 +1 @@
export declare function comma(string: string): string[];

View File

@@ -0,0 +1 @@
export default function mergeParams(fromParams: string, toParams: string): string;

View File

@@ -0,0 +1 @@
export declare function combinationsWithSizeN(set: Array<string>, n: number): Array<Array<string>>;

View File

@@ -0,0 +1,2 @@
import type { Container, Node } from 'postcss-selector-parser';
export declare function sortCompoundSelectorsInsideComplexSelector(node: Container<string, Node>): void;

View File

@@ -0,0 +1,2 @@
import { options } from '../options';
export default function mergeSelectors(fromSelectors: Array<string>, toSelectors: Array<string>, opts: options): any[];

View File

@@ -0,0 +1 @@
export declare function nodesAreEquallySpecific(nodes: Array<string>): boolean;

View File

@@ -0,0 +1,5 @@
import type { AtRule, Rule } from 'postcss';
import { walkFunc } from './walk-func.js';
import { options } from './options.js';
export default function transformNestRuleWithinRule(node: AtRule, parent: Rule, walk: walkFunc, opts: options): void;
export declare function isValidNestRuleWithinRule(node: AtRule): boolean;

View File

@@ -0,0 +1,3 @@
export declare type options = {
noIsPseudoSelector: boolean;
};

View File

@@ -0,0 +1,4 @@
import type { Rule } from 'postcss';
import { options } from './options.js';
export default function transformRuleWithinRule(node: Rule, parent: Rule, opts: options): void;
export declare function isValidRuleWithinRule(node: Rule): boolean;

View File

@@ -0,0 +1,2 @@
import type { ChildNode, Container } from 'postcss';
export default function shiftNodesBeforeParent(node: ChildNode, parent: Container<ChildNode>): void;

View File

@@ -0,0 +1,2 @@
declare const _default: string[];
export default _default;

View File

@@ -0,0 +1,4 @@
import type { Container } from 'postcss';
export declare type walkFunc = (node: Container, opts: {
noIsPseudoSelector: boolean;
}) => void;

View File

@@ -0,0 +1,3 @@
import type { Container } from 'postcss';
import { options } from './options.js';
export default function walk(node: Container, opts: options): void;