Socket
Socket
Sign inDemoInstall

@fluentui/utilities

Package Overview
Dependencies
Maintainers
11
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluentui/utilities - npm Package Compare versions

Comparing version 8.0.0-beta.10 to 8.0.0-beta.11

13

CHANGELOG.md
# Change Log - @fluentui/utilities
This log was last generated on Thu, 28 Jan 2021 12:20:50 GMT and should not be manually modified.
This log was last generated on Thu, 11 Feb 2021 00:54:36 GMT and should not be manually modified.
<!-- Start content -->
## [8.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.11)
Thu, 11 Feb 2021 00:54:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.10..@fluentui/utilities_v8.0.0-beta.11)
### Changes
- fix merge to correctly handle array value. ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com)
## [8.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.10)
Thu, 28 Jan 2021 12:20:50 GMT
Thu, 28 Jan 2021 12:25:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.9..@fluentui/utilities_v8.0.0-beta.10)

@@ -11,0 +20,0 @@

2

lib-amd/merge.js

@@ -35,3 +35,3 @@ define(["require", "exports"], function (require, exports) {

var value = source[name_1];
if (typeof value === 'object' && value !== null) {
if (typeof value === 'object' && value !== null && !Array.isArray(value)) {
var isCircularReference = circularReferences.indexOf(value) > -1;

@@ -38,0 +38,0 @@ target[name_1] = (isCircularReference

define(["require", "exports", "@fluentui/set-version"], function (require, exports, set_version_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
set_version_1.setVersion('@fluentui/utilities', '8.0.0-beta.10');
set_version_1.setVersion('@fluentui/utilities', '8.0.0-beta.11');
});
//# sourceMappingURL=version.js.map

@@ -34,3 +34,3 @@ "use strict";

var value = source[name_1];
if (typeof value === 'object' && value !== null) {
if (typeof value === 'object' && value !== null && !Array.isArray(value)) {
var isCircularReference = circularReferences.indexOf(value) > -1;

@@ -37,0 +37,0 @@ target[name_1] = (isCircularReference

@@ -6,3 +6,3 @@ "use strict";

var set_version_1 = require("@fluentui/set-version");
set_version_1.setVersion('@fluentui/utilities', '8.0.0-beta.10');
set_version_1.setVersion('@fluentui/utilities', '8.0.0-beta.11');
//# sourceMappingURL=version.js.map

@@ -31,3 +31,3 @@ /**

var value = source[name_1];
if (typeof value === 'object' && value !== null) {
if (typeof value === 'object' && value !== null && !Array.isArray(value)) {
var isCircularReference = circularReferences.indexOf(value) > -1;

@@ -34,0 +34,0 @@ target[name_1] = (isCircularReference

// Do not modify this file; it is generated as part of publish.
// The checked in version is a placeholder only and will not be updated.
import { setVersion } from '@fluentui/set-version';
setVersion('@fluentui/utilities', '8.0.0-beta.10');
setVersion('@fluentui/utilities', '8.0.0-beta.11');
//# sourceMappingURL=version.js.map
{
"name": "@fluentui/utilities",
"version": "8.0.0-beta.10",
"version": "8.0.0-beta.11",
"description": "Fluent UI React utilities for building components.",

@@ -5,0 +5,0 @@ "main": "lib-commonjs/index.js",

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

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