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

26
node_modules/@griffel/react/makeStyles.esm.js generated vendored Normal file
View File

@@ -0,0 +1,26 @@
"use client";
import { makeStyles as makeStyles$1 } from '@griffel/core';
import { insertionFactory } from './insertionFactory.esm.js';
import { useRenderer } from './RendererContext.esm.js';
import { useTextDirection } from './TextDirectionContext.esm.js';
import { isInsideComponent } from './utils/isInsideComponent.esm.js';
function makeStyles(stylesBySlots) {
const getStyles = makeStyles$1(stylesBySlots, insertionFactory);
if (process.env.NODE_ENV !== 'production') {
if (isInsideComponent()) {
throw new Error(["makeStyles(): this function cannot be called in component's scope.", 'All makeStyles() calls should be top level i.e. in a root scope of a file.'].join(' '));
}
}
return function useClasses() {
const dir = useTextDirection();
const renderer = useRenderer();
return getStyles({
dir,
renderer
});
};
}
export { makeStyles };
//# sourceMappingURL=makeStyles.esm.js.map