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

View File

@@ -0,0 +1,52 @@
"use client";
'use strict';
var React = require('react');
function _interopNamespaceCompat(e) {
if (e && typeof e === 'object' && 'default' in e) return e;
var n = Object.create(null);
if (e) {
Object.keys(e).forEach(function (k) {
if (k !== 'default') {
var d = Object.getOwnPropertyDescriptor(e, k);
Object.defineProperty(n, k, d.get ? d : {
enumerable: true,
get: function () { return e[k]; }
});
}
});
}
n.default = e;
return Object.freeze(n);
}
var React__namespace = /*#__PURE__*/_interopNamespaceCompat(React);
/**
* @private
*/
const TextDirectionContext = /*#__PURE__*/React__namespace.createContext('ltr');
/**
* @public
*/
const TextDirectionProvider = ({
children,
dir
}) => {
return /*#__PURE__*/React__namespace.createElement(TextDirectionContext.Provider, {
value: dir
}, children);
};
/**
* Returns current directionality of the element's text.
*
* @private
*/
function useTextDirection() {
return React__namespace.useContext(TextDirectionContext);
}
exports.TextDirectionProvider = TextDirectionProvider;
exports.useTextDirection = useTextDirection;
//# sourceMappingURL=TextDirectionContext.cjs.js.map