Socket
Socket
Sign inDemoInstall

@fluentui/react-file-type-icons

Package Overview
Dependencies
Maintainers
12
Versions
146
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluentui/react-file-type-icons - npm Package Compare versions

Comparing version 8.3.2 to 8.4.0

44

CHANGELOG.json

@@ -5,6 +5,48 @@ {

{
"date": "Thu, 02 Sep 2021 07:32:36 GMT",
"date": "Mon, 27 Sep 2021 07:33:33 GMT",
"tag": "@fluentui/react-file-type-icons_v8.4.0",
"version": "8.4.0",
"comments": {
"minor": [
{
"author": "chhoorn@microsoft.com",
"package": "@fluentui/react-file-type-icons",
"comment": "Add forms icon to react-file-type-icons",
"commit": "16bc6ece02c11f68d9e7d4bf1e5547b6a2123135"
},
{
"author": "chhoorn@microsoft.com",
"package": "@fluentui/react-file-type-icons",
"comment": "Add sway icon",
"commit": "16bc6ece02c11f68d9e7d4bf1e5547b6a2123135"
}
]
}
},
{
"date": "Mon, 20 Sep 2021 07:36:26 GMT",
"tag": "@fluentui/react-file-type-icons_v8.3.2",
"version": "8.3.2",
"comments": {
"none": [
{
"author": "lingfangao@hotmail.com",
"package": "@fluentui/react-file-type-icons",
"comment": "chore: use versioon eslint-plugin and react-conformance in dev dependencies",
"commit": "b8a304770f77c0353553a152dad34421070400a6"
},
{
"author": "lingfangao@hotmail.com",
"package": "@fluentui/react-file-type-icons",
"commit": "b8a304770f77c0353553a152dad34421070400a6",
"comment": "Bump @fluentui/react-file-type-icons to v8.3.2"
}
]
}
},
{
"date": "Thu, 02 Sep 2021 07:36:46 GMT",
"tag": "@fluentui/react-file-type-icons_v8.3.2",
"version": "8.3.2",
"comments": {
"patch": [

@@ -11,0 +53,0 @@ {

# Change Log - @fluentui/react-file-type-icons
This log was last generated on Thu, 02 Sep 2021 07:32:36 GMT and should not be manually modified.
This log was last generated on Mon, 27 Sep 2021 07:33:33 GMT and should not be manually modified.
<!-- Start content -->
## [8.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-file-type-icons_v8.4.0)
Mon, 27 Sep 2021 07:33:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-file-type-icons_v8.3.2..@fluentui/react-file-type-icons_v8.4.0)
### Minor changes
- Add forms icon to react-file-type-icons ([PR #19843](https://github.com/microsoft/fluentui/pull/19843) by chhoorn@microsoft.com)
- Add sway icon ([PR #19843](https://github.com/microsoft/fluentui/pull/19843) by chhoorn@microsoft.com)
## [8.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-file-type-icons_v8.3.2)
Thu, 02 Sep 2021 07:32:36 GMT
Thu, 02 Sep 2021 07:36:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-file-type-icons_v8.3.1..@fluentui/react-file-type-icons_v8.3.2)

@@ -11,0 +21,0 @@

6

lib-amd/FileIconType.d.ts

@@ -20,4 +20,6 @@ /**

linkedFolder = 12,
list = 13
list = 13,
form = 14,
sway = 15
}
export declare type FileIconTypeInput = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13;
export declare type FileIconTypeInput = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15;

@@ -26,4 +26,6 @@ /**

FileIconType[FileIconType["list"] = 13] = "list";
FileIconType[FileIconType["form"] = 14] = "form";
FileIconType[FileIconType["sway"] = 15] = "sway";
})(FileIconType = exports.FileIconType || (exports.FileIconType = {}));
});
//# sourceMappingURL=FileIconType.js.map

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

},
form: {},
genericfile: {},

@@ -287,0 +288,0 @@ html: {

@@ -19,2 +19,4 @@ define(["require", "exports", "./FileTypeIconMap", "./FileIconType"], function (require, exports, FileTypeIconMap_1, FileIconType_1) {

var LINKED_FOLDER = 'linkedfolder';
var FORM = 'form';
var SWAY = 'sway';
exports.DEFAULT_ICON_SIZE = 16;

@@ -98,2 +100,8 @@ /**

break;
case FileIconType_1.FileIconType.form:
iconBaseName = FORM;
break;
case FileIconType_1.FileIconType.sway:
iconBaseName = SWAY;
break;
}

@@ -100,0 +108,0 @@ }

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/react-file-type-icons', '8.3.2');
set_version_1.setVersion('@fluentui/react-file-type-icons', '8.4.0');
});
//# sourceMappingURL=version.js.map

@@ -20,4 +20,6 @@ /**

linkedFolder = 12,
list = 13
list = 13,
form = 14,
sway = 15
}
export declare type FileIconTypeInput = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13;
export declare type FileIconTypeInput = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15;

@@ -25,3 +25,5 @@ "use strict";

FileIconType[FileIconType["list"] = 13] = "list";
FileIconType[FileIconType["form"] = 14] = "form";
FileIconType[FileIconType["sway"] = 15] = "sway";
})(FileIconType = exports.FileIconType || (exports.FileIconType = {}));
//# sourceMappingURL=FileIconType.js.map

@@ -284,2 +284,3 @@ "use strict";

},
form: {},
genericfile: {},

@@ -286,0 +287,0 @@ html: {

@@ -20,2 +20,4 @@ "use strict";

var LINKED_FOLDER = 'linkedfolder';
var FORM = 'form';
var SWAY = 'sway';
exports.DEFAULT_ICON_SIZE = 16;

@@ -99,2 +101,8 @@ /**

break;
case FileIconType_1.FileIconType.form:
iconBaseName = FORM;
break;
case FileIconType_1.FileIconType.sway:
iconBaseName = SWAY;
break;
}

@@ -101,0 +109,0 @@ }

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

var set_version_1 = require("@fluentui/set-version");
set_version_1.setVersion('@fluentui/react-file-type-icons', '8.3.2');
set_version_1.setVersion('@fluentui/react-file-type-icons', '8.4.0');
//# sourceMappingURL=version.js.map

@@ -20,4 +20,6 @@ /**

linkedFolder = 12,
list = 13
list = 13,
form = 14,
sway = 15
}
export declare type FileIconTypeInput = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13;
export declare type FileIconTypeInput = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15;

@@ -22,3 +22,5 @@ /**

FileIconType[FileIconType["list"] = 13] = "list";
FileIconType[FileIconType["form"] = 14] = "form";
FileIconType[FileIconType["sway"] = 15] = "sway";
})(FileIconType || (FileIconType = {}));
//# sourceMappingURL=FileIconType.js.map

@@ -281,2 +281,3 @@ /**

},
form: {},
genericfile: {},

@@ -283,0 +284,0 @@ html: {

@@ -17,2 +17,4 @@ import { FileTypeIconMap } from './FileTypeIconMap';

var LINKED_FOLDER = 'linkedfolder';
var FORM = 'form';
var SWAY = 'sway';
export var DEFAULT_ICON_SIZE = 16;

@@ -95,2 +97,8 @@ /**

break;
case FileIconType.form:
iconBaseName = FORM;
break;
case FileIconType.sway:
iconBaseName = SWAY;
break;
}

@@ -97,0 +105,0 @@ }

// 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/react-file-type-icons', '8.3.2');
setVersion('@fluentui/react-file-type-icons', '8.4.0');
//# sourceMappingURL=version.js.map
{
"name": "@fluentui/react-file-type-icons",
"version": "8.3.2",
"version": "8.4.0",
"description": "Fluent UI React file type icon set.",

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

"devDependencies": {
"@fluentui/eslint-plugin": "^1.4.1",
"@fluentui/eslint-plugin": "*",
"@types/react": "16.9.42",

@@ -28,0 +28,0 @@ "@fluentui/scripts": "^1.0.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

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