first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
@@ -0,0 +1 @@
export type { IAnimationStyles, IAnimationVariables } from '@fluentui/theme';
@@ -0,0 +1,5 @@
define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
});
//# sourceMappingURL=IAnimationStyles.js.map
@@ -0,0 +1 @@
{"version":3,"file":"IAnimationStyles.js","sourceRoot":"../src/","sources":["interfaces/IAnimationStyles.ts"],"names":[],"mappings":"","sourcesContent":["export type { IAnimationStyles, IAnimationVariables } from '@fluentui/theme';\n"]}
@@ -0,0 +1,47 @@
import type { IRawStyle } from '@fluentui/merge-styles';
export interface IGetFocusStylesOptions {
/**
* The number of pixels to inset the border.
* @defaultvalue 0
*/
inset?: number;
/**
* The width of the border in pixels.
* @defaultvalue 1
*/
width?: number;
/**
* The positioning applied to the container.
* Must be 'relative' or 'absolute' so that the focus border can live around it.
* @defaultvalue 'relative'
*/
position?: 'relative' | 'absolute';
/**
* Style for high contrast mode.
*/
highContrastStyle?: IRawStyle;
/**
* Color of the border.
* @defaultvalue theme.palette.white
*/
borderColor?: string;
/**
* Color of the outline.
* @defaultvalue theme.palette.neutralSecondary
*/
outlineColor?: string;
/**
* If the styles should apply on `:focus` pseudo element.
* @defaultvalue true
*/
isFocusedOnly?: boolean;
/**
* If the style should include a rounded border.
*/
borderRadius?: string | number | undefined;
/**
* If default pointer events should be overridden.
* @defaultvalue undefined
*/
pointerEvents?: IRawStyle['pointerEvents'];
}
@@ -0,0 +1,5 @@
define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
});
//# sourceMappingURL=IGetFocusStyles.js.map
@@ -0,0 +1 @@
{"version":3,"file":"IGetFocusStyles.js","sourceRoot":"../src/","sources":["interfaces/IGetFocusStyles.ts"],"names":[],"mappings":"","sourcesContent":["import type { IRawStyle } from '@fluentui/merge-styles';\n\nexport interface IGetFocusStylesOptions {\n /**\n * The number of pixels to inset the border.\n * @defaultvalue 0\n */\n inset?: number;\n\n /**\n * The width of the border in pixels.\n * @defaultvalue 1\n */\n width?: number;\n\n /**\n * The positioning applied to the container.\n * Must be 'relative' or 'absolute' so that the focus border can live around it.\n * @defaultvalue 'relative'\n */\n position?: 'relative' | 'absolute';\n\n /**\n * Style for high contrast mode.\n */\n highContrastStyle?: IRawStyle;\n\n /**\n * Color of the border.\n * @defaultvalue theme.palette.white\n */\n borderColor?: string;\n\n /**\n * Color of the outline.\n * @defaultvalue theme.palette.neutralSecondary\n */\n outlineColor?: string;\n\n /**\n * If the styles should apply on `:focus` pseudo element.\n * @defaultvalue true\n */\n isFocusedOnly?: boolean;\n\n /**\n * If the style should include a rounded border.\n */\n borderRadius?: string | number | undefined;\n\n /**\n * If default pointer events should be overridden.\n * @defaultvalue undefined\n */\n pointerEvents?: IRawStyle['pointerEvents'];\n}\n"]}
+3
View File
@@ -0,0 +1,3 @@
export type { IAnimationStyles, IAnimationVariables } from './IAnimationStyles';
export type { IGetFocusStylesOptions } from './IGetFocusStyles';
export type { IEffects, IFontStyles, IPalette, ISemanticColors, ISemanticTextColors, ISpacing, ITheme, IPartialTheme, IScheme, ISchemeNames, } from '@fluentui/theme';
+5
View File
@@ -0,0 +1,5 @@
define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
});
//# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"../src/","sources":["interfaces/index.ts"],"names":[],"mappings":"","sourcesContent":["export type { IAnimationStyles, IAnimationVariables } from './IAnimationStyles';\nexport type { IGetFocusStylesOptions } from './IGetFocusStyles';\nexport type {\n IEffects,\n IFontStyles,\n IPalette,\n ISemanticColors,\n ISemanticTextColors,\n ISpacing,\n ITheme,\n IPartialTheme,\n IScheme,\n ISchemeNames,\n} from '@fluentui/theme';\n"]}