wip:milestone 0 fixes
Some checks failed
CI/CD Pipeline / unit-tests (push) Failing after 1m16s
CI/CD Pipeline / integration-tests (push) Failing after 2m32s
CI/CD Pipeline / lint (push) Successful in 5m22s
CI/CD Pipeline / e2e-tests (push) Has been skipped
CI/CD Pipeline / build (push) Has been skipped

This commit is contained in:
2026-03-15 12:35:42 +02:00
parent 6708cf28a7
commit cffdf8af86
61266 changed files with 4511646 additions and 1938 deletions

View File

@@ -0,0 +1,48 @@
export interface GridClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if `container={true}`. */
container: string;
/** Styles applied to the root element if `item={true}`. */
item: string;
/** Styles applied to the root element if `zeroMinWidth={true}`. */
zeroMinWidth: string;
/** Styles applied to the root element if `direction="column"`. */
'direction-xs-column': string;
/** Styles applied to the root element if `direction="column-reverse"`. */
'direction-xs-column-reverse': string;
/** Styles applied to the root element if `direction="row-reverse"`. */
'direction-xs-row-reverse': string;
/** Styles applied to the root element if `wrap="nowrap"`. */
'wrap-xs-nowrap': string;
/** Styles applied to the root element if `wrap="reverse"`. */
'wrap-xs-wrap-reverse': string;
'spacing-xs-1': string;
'spacing-xs-2': string;
'spacing-xs-3': string;
'spacing-xs-4': string;
'spacing-xs-5': string;
'spacing-xs-6': string;
'spacing-xs-7': string;
'spacing-xs-8': string;
'spacing-xs-9': string;
'spacing-xs-10': string;
'grid-xs-auto': string;
'grid-xs-true': string;
'grid-xs-1': string;
'grid-xs-2': string;
'grid-xs-3': string;
'grid-xs-4': string;
'grid-xs-5': string;
'grid-xs-6': string;
'grid-xs-7': string;
'grid-xs-8': string;
'grid-xs-9': string;
'grid-xs-10': string;
'grid-xs-11': string;
'grid-xs-12': string;
}
export type GridClassKey = keyof GridClasses;
export declare function getGridUtilityClass(slot: string): string;
declare const gridClasses: GridClasses;
export default gridClasses;