Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@fluentui/react-make-styles

Package Overview
Dependencies
Maintainers
12
Versions
160
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluentui/react-make-styles - npm Package Compare versions

Comparing version 9.0.0-alpha.16 to 9.0.0-alpha.17

lib-amd/useAx.d.ts

31

CHANGELOG.json

@@ -5,3 +5,32 @@ {

{
"date": "Tue, 30 Mar 2021 07:30:40 GMT",
"date": "Wed, 31 Mar 2021 00:47:26 GMT",
"tag": "@fluentui/react-make-styles_v9.0.0-alpha.17",
"version": "9.0.0-alpha.17",
"comments": {
"prerelease": [
{
"comment": "BREAKING: ax() was renamed to useAx()",
"author": "olfedias@microsoft.com",
"commit": "a20aadf2a8998d47d995a70b636f74cb7f26f48f",
"package": "@fluentui/react-make-styles"
}
],
"patch": [
{
"comment": "Bump @fluentui/eslint-plugin to v1.1.0",
"author": "elcraig@microsoft.com",
"commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
"package": "@fluentui/react-make-styles"
},
{
"comment": "Bump @fluentui/scripts to v1.0.0",
"author": "elcraig@microsoft.com",
"commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
"package": "@fluentui/react-make-styles"
}
]
}
},
{
"date": "Tue, 30 Mar 2021 07:34:45 GMT",
"tag": "@fluentui/react-make-styles_v9.0.0-alpha.16",

@@ -8,0 +37,0 @@ "version": "9.0.0-alpha.16",

# Change Log - @fluentui/react-make-styles
This log was last generated on Tue, 30 Mar 2021 07:30:40 GMT and should not be manually modified.
This log was last generated on Wed, 31 Mar 2021 00:47:26 GMT and should not be manually modified.
<!-- Start content -->
## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-make-styles_v9.0.0-alpha.17)
Wed, 31 Mar 2021 00:47:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-make-styles_v9.0.0-alpha.16..@fluentui/react-make-styles_v9.0.0-alpha.17)
### Patches
- Bump @fluentui/eslint-plugin to v1.1.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
- Bump @fluentui/scripts to v1.0.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
### Changes
- BREAKING: ax() was renamed to useAx() ([PR #17549](https://github.com/microsoft/fluentui/pull/17549) by olfedias@microsoft.com)
## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-make-styles_v9.0.0-alpha.16)
Tue, 30 Mar 2021 07:30:40 GMT
Tue, 30 Mar 2021 07:34:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-make-styles_v9.0.0-alpha.15..@fluentui/react-make-styles_v9.0.0-alpha.16)

@@ -11,0 +25,0 @@

3

lib-amd/index.d.ts

@@ -1,3 +0,4 @@

export { ax, createDOMRenderer } from '@fluentui/make-styles';
export { createDOMRenderer } from '@fluentui/make-styles';
export { makeStyles } from './makeStyles';
export { makeStaticStyles } from './makeStaticStyles';
export { useAx, useAx as ax, } from './useAx';

@@ -1,9 +0,11 @@

define(["require", "exports", "@fluentui/make-styles", "./makeStyles", "./makeStaticStyles"], function (require, exports, make_styles_1, makeStyles_1, makeStaticStyles_1) {
define(["require", "exports", "@fluentui/make-styles", "./makeStyles", "./makeStaticStyles", "./useAx"], function (require, exports, make_styles_1, makeStyles_1, makeStaticStyles_1, useAx_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ax = make_styles_1.ax;
exports.createDOMRenderer = make_styles_1.createDOMRenderer;
exports.makeStyles = makeStyles_1.makeStyles;
exports.makeStaticStyles = makeStaticStyles_1.makeStaticStyles;
exports.useAx = useAx_1.useAx;
// TODO: this export will be removed in a follow up PR
exports.ax = useAx_1.useAx;
});
//# sourceMappingURL=index.js.map

@@ -17,5 +17,5 @@ define(["require", "exports", "@fluentui/make-styles", "@fluentui/react-provider", "@fluentui/react-theme-provider", "react"], function (require, exports, make_styles_1, react_provider_1, react_theme_provider_1, React) {

var options = {
dir: dir,
tokens: theme,
renderer: renderer,
rtl: dir === 'rtl',
};

@@ -22,0 +22,0 @@ return getStyles(options);

@@ -1,3 +0,4 @@

export { ax, createDOMRenderer } from '@fluentui/make-styles';
export { createDOMRenderer } from '@fluentui/make-styles';
export { makeStyles } from './makeStyles';
export { makeStaticStyles } from './makeStaticStyles';
export { useAx, useAx as ax, } from './useAx';
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var make_styles_1 = require("@fluentui/make-styles");
exports.ax = make_styles_1.ax;
exports.createDOMRenderer = make_styles_1.createDOMRenderer;

@@ -10,2 +9,6 @@ var makeStyles_1 = require("./makeStyles");

exports.makeStaticStyles = makeStaticStyles_1.makeStaticStyles;
var useAx_1 = require("./useAx");
exports.useAx = useAx_1.useAx;
// TODO: this export will be removed in a follow up PR
exports.ax = useAx_1.useAx;
//# sourceMappingURL=index.js.map

@@ -22,5 +22,5 @@ "use strict";

var options = {
dir: dir,
tokens: theme,
renderer: renderer,
rtl: dir === 'rtl',
};

@@ -27,0 +27,0 @@ return getStyles(options);

@@ -1,3 +0,4 @@

export { ax, createDOMRenderer } from '@fluentui/make-styles';
export { createDOMRenderer } from '@fluentui/make-styles';
export { makeStyles } from './makeStyles';
export { makeStaticStyles } from './makeStaticStyles';
export { useAx, useAx as ax, } from './useAx';

@@ -1,4 +0,7 @@

export { ax, createDOMRenderer } from '@fluentui/make-styles';
export { createDOMRenderer } from '@fluentui/make-styles';
export { makeStyles } from './makeStyles';
export { makeStaticStyles } from './makeStaticStyles';
export { useAx,
// TODO: this export will be removed in a follow up PR
useAx as ax, } from './useAx';
//# sourceMappingURL=index.js.map

@@ -20,5 +20,5 @@ import { createDOMRenderer, makeStyles as vanillaMakeStyles, } from '@fluentui/make-styles';

var options = {
dir: dir,
tokens: theme,
renderer: renderer,
rtl: dir === 'rtl',
};

@@ -25,0 +25,0 @@ return getStyles(options);

{
"name": "@fluentui/react-make-styles",
"version": "9.0.0-alpha.16",
"version": "9.0.0-alpha.17",
"description": "React bindings for @fluentui/make-styles",

@@ -23,3 +23,3 @@ "main": "lib-commonjs/index.js",

"devDependencies": {
"@fluentui/eslint-plugin": "^1.0.1",
"@fluentui/eslint-plugin": "^1.1.0",
"@fluentui/scripts": "^1.0.0",

@@ -33,6 +33,6 @@ "@types/react": "16.9.42",

"dependencies": {
"@fluentui/make-styles": "^9.0.0-alpha.7",
"@fluentui/react-provider": "^9.0.0-alpha.16",
"@fluentui/react-theme": "^9.0.0-alpha.6",
"@fluentui/react-theme-provider": "^9.0.0-alpha.16",
"@fluentui/make-styles": "^9.0.0-alpha.8",
"@fluentui/react-provider": "^9.0.0-alpha.17",
"@fluentui/react-theme": "^9.0.0-alpha.7",
"@fluentui/react-theme-provider": "^9.0.0-alpha.17",
"tslib": "^1.10.0"

@@ -39,0 +39,0 @@ },

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc