Private
Public Access
1
0

feat: Fluent UI Outlook Lite + connections mockup

This commit is contained in:
2026-04-14 18:52:25 +00:00
parent 1199eff6c3
commit dfa4010406
34820 changed files with 1003813 additions and 205 deletions

24
node_modules/@griffel/react/src/RendererContext.d.ts generated vendored Normal file
View File

@@ -0,0 +1,24 @@
import type { GriffelRenderer } from '@griffel/core';
import * as React from 'react';
export interface RendererProviderProps {
/** An instance of Griffel renderer. */
renderer: GriffelRenderer;
/**
* Document used to insert CSS variables to head
*/
targetDocument?: Document;
/**
* Content wrapped by the RendererProvider
*/
children: React.ReactNode;
}
/**
* @public
*/
export declare const RendererProvider: React.FC<RendererProviderProps>;
/**
* Returns an instance of current makeStyles() renderer.
*
* @private Exported as "useRenderer_unstable" use it on own risk. Can be changed or removed without a notice.
*/
export declare function useRenderer(): GriffelRenderer;

View File

@@ -0,0 +1,19 @@
import * as React from 'react';
export interface TextDirectionProviderProps {
/** Indicates the directionality of the element's text. */
dir: 'ltr' | 'rtl';
/**
* Content wrapped by the TextDirectionProvider.
*/
children: React.ReactNode;
}
/**
* @public
*/
export declare const TextDirectionProvider: React.FC<TextDirectionProviderProps>;
/**
* Returns current directionality of the element's text.
*
* @private
*/
export declare function useTextDirection(): "ltr" | "rtl";

7
node_modules/@griffel/react/src/__css.d.ts generated vendored Normal file
View File

@@ -0,0 +1,7 @@
import type { CSSClassesMapBySlot } from '@griffel/core';
/**
* A version of makeStyles() that accepts build output as an input and skips all runtime transforms & DOM insertion.
*
* @internal
*/
export declare function __css<Slots extends string>(classesMapBySlot: CSSClassesMapBySlot<Slots>): () => Record<Slots, string>;

6
node_modules/@griffel/react/src/__resetCSS.d.ts generated vendored Normal file
View File

@@ -0,0 +1,6 @@
/**
* A version of makeResetStyles() that accepts build output as an input and skips all runtime transforms & DOM insertion.
*
* @internal
*/
export declare function __resetCSS(ltrClassName: string, rtlClassName: string | null): () => string;

7
node_modules/@griffel/react/src/__resetStyles.d.ts generated vendored Normal file
View File

@@ -0,0 +1,7 @@
import type { CSSRulesByBucket } from '@griffel/core';
/**
* A version of makeResetStyles() that accepts build output as an input and skips all runtime transforms.
*
* @internal
*/
export declare function __resetStyles(ltrClassName: string, rtlClassName: string | null, cssRules: CSSRulesByBucket | string[]): () => string;

6
node_modules/@griffel/react/src/__staticCSS.d.ts generated vendored Normal file
View File

@@ -0,0 +1,6 @@
/**
* A version of makeStaticStyles() that accepts build output as an input and skips all runtime transforms & DOM insertion.
*
* @internal
*/
export declare function __staticCSS(): () => void;

7
node_modules/@griffel/react/src/__staticStyles.d.ts generated vendored Normal file
View File

@@ -0,0 +1,7 @@
import type { CSSRulesByBucket } from '@griffel/core';
/**
* A version of makeStaticStyles() that accepts build output as an input and skips all runtime transforms.
*
* @internal
*/
export declare function __staticStyles(cssRules: CSSRulesByBucket): () => void;

7
node_modules/@griffel/react/src/__styles.d.ts generated vendored Normal file
View File

@@ -0,0 +1,7 @@
import type { CSSClassesMapBySlot, CSSRulesByBucket } from '@griffel/core';
/**
* A version of makeStyles() that accepts build output as an input and skips all runtime transforms.
*
* @internal
*/
export declare function __styles<Slots extends string>(classesMapBySlot: CSSClassesMapBySlot<Slots>, cssRules: CSSRulesByBucket): () => Record<Slots, string>;

14
node_modules/@griffel/react/src/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
export { RESET, shorthands, mergeClasses, createDOMRenderer } from '@griffel/core';
export type { GriffelStyle, GriffelResetStyle, CreateDOMRendererOptions, GriffelRenderer } from '@griffel/core';
export { makeStyles } from './makeStyles';
export { makeResetStyles } from './makeResetStyles';
export { makeStaticStyles } from './makeStaticStyles';
export { renderToStyleElements } from './renderToStyleElements';
export { RendererProvider, useRenderer as useRenderer_unstable } from './RendererContext';
export { TextDirectionProvider } from './TextDirectionContext';
export { __css } from './__css';
export { __styles } from './__styles';
export { __resetCSS } from './__resetCSS';
export { __resetStyles } from './__resetStyles';
export { __staticCSS } from './__staticCSS';
export { __staticStyles } from './__staticStyles';

View File

@@ -0,0 +1,2 @@
import type { GriffelInsertionFactory } from '@griffel/core';
export declare const insertionFactory: GriffelInsertionFactory;

2
node_modules/@griffel/react/src/makeResetStyles.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import type { GriffelResetStyle } from '@griffel/core';
export declare function makeResetStyles(styles: GriffelResetStyle): () => string;

View File

@@ -0,0 +1,2 @@
import type { GriffelStaticStyles } from '@griffel/core';
export declare function makeStaticStyles(styles: GriffelStaticStyles | GriffelStaticStyles[]): () => void;

2
node_modules/@griffel/react/src/makeStyles.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
import type { GriffelStyle } from '@griffel/core';
export declare function makeStyles<Slots extends string | number>(stylesBySlots: Record<Slots, GriffelStyle>): () => Record<Slots, string>;

View File

@@ -0,0 +1,8 @@
import * as React from 'react';
import type { GriffelRenderer } from '@griffel/core';
/**
* This method returns a list of <style> React elements with the rendered CSS. This is useful for Server-Side rendering.
*
* @public
*/
export declare function renderToStyleElements(renderer: GriffelRenderer): React.ReactElement[];

View File

@@ -0,0 +1,2 @@
import * as React from 'react';
export declare const useInsertionEffect: typeof React.useInsertionEffect | undefined;

4
node_modules/@griffel/react/src/utils/canUseDOM.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
/**
* Verifies if an application can use DOM.
*/
export declare function canUseDOM(): boolean;

View File

@@ -0,0 +1 @@
export declare function isInsideComponent(): boolean;