@fluentui/react-proptypes
Advanced tools
Comparing version 0.43.0 to 0.44.0
@@ -421,3 +421,3 @@ "use strict"; | ||
exports.deprecate = deprecate; | ||
var accessibility = PropTypes.oneOfType([PropTypes.func, PropTypes.object]); | ||
var accessibility = PropTypes.func; | ||
exports.accessibility = accessibility; | ||
@@ -424,0 +424,0 @@ var size = PropTypes.oneOf(['smallest', 'smaller', 'small', 'medium', 'large', 'larger', 'largest']); |
@@ -76,4 +76,4 @@ import * as PropTypes from 'prop-types'; | ||
export declare const deprecate: (help: string, validator?: Function) => (props: Record<string, any>, propName: string, componentName: string, ...args: any[]) => Error; | ||
export declare const accessibility: PropTypes.Requireable<object>; | ||
export declare const size: PropTypes.Requireable<string>; | ||
export declare const accessibility: PropTypes.Requireable<(...args: any[]) => any>; | ||
export declare const size: PropTypes.Requireable<"small" | "smallest" | "smaller" | "medium" | "large" | "larger" | "largest">; | ||
export declare const align: PropTypes.Requireable<string>; | ||
@@ -80,0 +80,0 @@ export declare const animation: PropTypes.Requireable<any>; |
@@ -359,3 +359,3 @@ import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray"; | ||
}; | ||
export var accessibility = PropTypes.oneOfType([PropTypes.func, PropTypes.object]); | ||
export var accessibility = PropTypes.func; | ||
export var size = PropTypes.oneOf(['smallest', 'smaller', 'small', 'medium', 'large', 'larger', 'largest']); | ||
@@ -362,0 +362,0 @@ export var align = PropTypes.oneOf(['start', 'end', 'center', 'justify']); |
{ | ||
"name": "@fluentui/react-proptypes", | ||
"description": "Set of custom reusable PropTypes for React components, some of them are specific for Fluent UI.", | ||
"version": "0.43.0", | ||
"version": "0.44.0", | ||
"author": "Oleksandr Fediashov <olfedias@microsoft.com>", | ||
@@ -13,3 +13,3 @@ "bugs": "https://github.com/microsoft/fluent-ui-react/issues", | ||
"devDependencies": { | ||
"@fluentui/internal-tooling": "^0.43.0", | ||
"@fluentui/internal-tooling": "^0.44.0", | ||
"lerna-alias": "^3.0.3-0" | ||
@@ -30,7 +30,10 @@ }, | ||
"scripts": { | ||
"build": "gulp bundle:package:no-umd --package react-proptypes" | ||
"build": "gulp bundle:package:no-umd", | ||
"clean": "gulp bundle:package:clean", | ||
"test": "gulp test", | ||
"test:watch": "gulp test:watch" | ||
}, | ||
"sideEffects": false, | ||
"types": "dist/es/index.d.ts", | ||
"gitHead": "11ce526692385deea568b0c014828a783940a8b6" | ||
"gitHead": "39b6d1fbd11d7444d2808a8ff5d06ca2e997fe3b" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
45799