Socket
Socket
Sign inDemoInstall

@fluentui/react-make-styles

Package Overview
Dependencies
Maintainers
13
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 0.0.0-nightlyd3bf09bf8120211201.1 to 0.0.0-nightlydd0f007b3f20220119.1

19

CHANGELOG.md
# Change Log - @fluentui/react-make-styles
This log was last generated on Wed, 01 Dec 2021 04:25:38 GMT and should not be manually modified.
This log was last generated on Wed, 19 Jan 2022 04:16:37 GMT and should not be manually modified.
<!-- Start content -->
## [0.0.0-nightlyd3bf09bf8120211201.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-make-styles_v0.0.0-nightlyd3bf09bf8120211201.1)
## [0.0.0-nightlydd0f007b3f20220119.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-make-styles_v0.0.0-nightlydd0f007b3f20220119.1)
Wed, 01 Dec 2021 04:25:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-make-styles_v9.0.0-beta.4..@fluentui/react-make-styles_v0.0.0-nightlyd3bf09bf8120211201.1)
Wed, 19 Jan 2022 04:16:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-make-styles_v9.0.0-beta.4..@fluentui/react-make-styles_v0.0.0-nightlydd0f007b3f20220119.1)
### Changes
- Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/40bec5fdab524f928e775fb2ed002822255eb2a7) by email not defined)
- Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/6044506cc626a9a155e0df40645426ddcc080c55) by email not defined)
- Re-export shorthand functions for styles ([PR #20628](https://github.com/microsoft/fluentui/pull/20628) by olfedias@microsoft.com)
- re-export base makeStyles types ([PR #20786](https://github.com/microsoft/fluentui/pull/20786) by olfedias@microsoft.com)
- Bump @fluentui/react-shared-contexts to v0.0.0-nightlyd3bf09bf8120211201.1 ([commit](https://github.com/microsoft/fluentui/commit/40bec5fdab524f928e775fb2ed002822255eb2a7) by beachball)
- Bump @fluentui/make-styles to v0.0.0-nightlyd3bf09bf8120211201.1 ([commit](https://github.com/microsoft/fluentui/commit/40bec5fdab524f928e775fb2ed002822255eb2a7) by beachball)
- Bump @fluentui/react-theme to v0.0.0-nightlyd3bf09bf8120211201.1 ([commit](https://github.com/microsoft/fluentui/commit/40bec5fdab524f928e775fb2ed002822255eb2a7) by beachball)
- Bump @fluentui/react-utilities to v0.0.0-nightlyd3bf09bf8120211201.1 ([commit](https://github.com/microsoft/fluentui/commit/40bec5fdab524f928e775fb2ed002822255eb2a7) by beachball)
- BREAKING: remove functions support from makeStyles() ([PR #21239](https://github.com/microsoft/fluentui/pull/21239) by Humberto.Morimoto@microsoft.com)
- Bump @fluentui/react-shared-contexts to v0.0.0-nightlydd0f007b3f20220119.1 ([commit](https://github.com/microsoft/fluentui/commit/6044506cc626a9a155e0df40645426ddcc080c55) by beachball)
- Bump @fluentui/make-styles to v0.0.0-nightlydd0f007b3f20220119.1 ([commit](https://github.com/microsoft/fluentui/commit/6044506cc626a9a155e0df40645426ddcc080c55) by beachball)
- Bump @fluentui/react-theme to v0.0.0-nightlydd0f007b3f20220119.1 ([commit](https://github.com/microsoft/fluentui/commit/6044506cc626a9a155e0df40645426ddcc080c55) by beachball)
- Bump @fluentui/react-utilities to v0.0.0-nightlydd0f007b3f20220119.1 ([commit](https://github.com/microsoft/fluentui/commit/6044506cc626a9a155e0df40645426ddcc080c55) by beachball)

@@ -22,0 +23,0 @@ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-make-styles_v9.0.0-beta.4)

@@ -7,8 +7,5 @@ import { createDOMRenderer } from '@fluentui/make-styles';

import { MakeStylesStyle } from '@fluentui/make-styles';
import { MakeStylesStyleFunctionRule } from '@fluentui/make-styles';
import { MakeStylesStyleRule } from '@fluentui/make-styles';
import { mergeClasses } from '@fluentui/make-styles';
import * as React_2 from 'react';
import { shorthands } from '@fluentui/make-styles';
import type { Theme } from '@fluentui/react-theme';

@@ -26,10 +23,6 @@ /**

export declare function makeStyles<Slots extends string | number>(stylesBySlots: Record<Slots, MakeStylesStyleRule<Theme>>): () => Record<Slots, string>;
export declare function makeStyles<Slots extends string | number>(stylesBySlots: Record<Slots, MakeStylesStyle>): () => Record<Slots, string>;
export { MakeStylesStyle }
export { MakeStylesStyleFunctionRule }
export { MakeStylesStyleRule }
export { mergeClasses }

@@ -36,0 +29,0 @@

export { shorthands, mergeClasses, createDOMRenderer } from '@fluentui/make-styles';
export type { MakeStylesStyle, MakeStylesStyleRule, MakeStylesStyleFunctionRule } from '@fluentui/make-styles';
export type { MakeStylesStyle } from '@fluentui/make-styles';
export { makeStyles } from './makeStyles';

@@ -4,0 +4,0 @@ export { makeStaticStyles } from './makeStaticStyles';

@@ -1,3 +0,2 @@

import type { MakeStylesStyleRule } from '@fluentui/make-styles';
import type { Theme } from '@fluentui/react-theme';
export declare function makeStyles<Slots extends string | number>(stylesBySlots: Record<Slots, MakeStylesStyleRule<Theme>>): () => Record<Slots, string>;
import type { MakeStylesStyle } from '@fluentui/make-styles';
export declare function makeStyles<Slots extends string | number>(stylesBySlots: Record<Slots, MakeStylesStyle>): () => Record<Slots, string>;
export { shorthands, mergeClasses, createDOMRenderer } from '@fluentui/make-styles';
export type { MakeStylesStyle, MakeStylesStyleRule, MakeStylesStyleFunctionRule } from '@fluentui/make-styles';
export type { MakeStylesStyle } from '@fluentui/make-styles';
export { makeStyles } from './makeStyles';

@@ -4,0 +4,0 @@ export { makeStaticStyles } from './makeStaticStyles';

@@ -1,3 +0,2 @@

import type { MakeStylesStyleRule } from '@fluentui/make-styles';
import type { Theme } from '@fluentui/react-theme';
export declare function makeStyles<Slots extends string | number>(stylesBySlots: Record<Slots, MakeStylesStyleRule<Theme>>): () => Record<Slots, string>;
import type { MakeStylesStyle } from '@fluentui/make-styles';
export declare function makeStyles<Slots extends string | number>(stylesBySlots: Record<Slots, MakeStylesStyle>): () => Record<Slots, string>;
{
"name": "@fluentui/react-make-styles",
"version": "0.0.0-nightlyd3bf09bf8120211201.1",
"version": "0.0.0-nightlydd0f007b3f20220119.1",
"description": "React bindings for @fluentui/make-styles",

@@ -21,7 +21,7 @@ "main": "lib-commonjs/index.js",

"lint": "just-scripts lint",
"test": "jest",
"test": "jest --passWithNoTests",
"start": "yarn storybook",
"docs": "api-extractor run --config=config/api-extractor.local.json --local",
"build:local": "tsc -p ./tsconfig.lib.json --module esnext --emitDeclarationOnly && node ../../scripts/typescript/normalize-import --output ./dist/packages/react-make-styles/src && yarn docs",
"storybook": "start-storybook",
"storybook": "node ../../scripts/storybook/runner",
"type-check": "tsc -b tsconfig.json"

@@ -38,6 +38,6 @@ },

"dependencies": {
"@fluentui/react-shared-contexts": "0.0.0-nightlyd3bf09bf8120211201.1",
"@fluentui/make-styles": "0.0.0-nightlyd3bf09bf8120211201.1",
"@fluentui/react-theme": "0.0.0-nightlyd3bf09bf8120211201.1",
"@fluentui/react-utilities": "0.0.0-nightlyd3bf09bf8120211201.1",
"@fluentui/react-shared-contexts": "0.0.0-nightlydd0f007b3f20220119.1",
"@fluentui/make-styles": "0.0.0-nightlydd0f007b3f20220119.1",
"@fluentui/react-theme": "0.0.0-nightlydd0f007b3f20220119.1",
"@fluentui/react-utilities": "0.0.0-nightlydd0f007b3f20220119.1",
"tslib": "^2.1.0"

@@ -44,0 +44,0 @@ },

Sorry, the diff of this file is too big to display

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