Socket
Socket
Sign inDemoInstall

@hig/components

Package Overview
Dependencies
Maintainers
3
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hig/components - npm Package Compare versions

Comparing version 2.4.0 to 2.5.0

build/menu.es.js

1

build/index.es.js

@@ -12,2 +12,3 @@ export { default as Accordion } from "@hig/accordion";

export { default as Label } from "@hig/label";
export { default as Menu } from "@hig/menu";
export { default as Modal } from "@hig/modal";

@@ -14,0 +15,0 @@ export { default as NotificationsFlyout } from "@hig/notifications-flyout";

@@ -18,2 +18,3 @@ 'use strict';

var label = _interopDefault(require('@hig/label'));
var menu = _interopDefault(require('@hig/menu'));
var modal = _interopDefault(require('@hig/modal'));

@@ -58,2 +59,3 @@ var notificationsFlyout = _interopDefault(require('@hig/notifications-flyout'));

exports.Label = label;
exports.Menu = menu;
exports.Modal = modal;

@@ -60,0 +62,0 @@ exports.NotificationsFlyout = notificationsFlyout;

2

build/slider.es.js

@@ -1,1 +0,1 @@

export { default } from "@hig/slider";
export { default, sliderTypes, AVAILABLE_SLIDER_TYPES } from "@hig/slider";

@@ -7,6 +7,9 @@ 'use strict';

var slider = _interopDefault(require('@hig/slider'));
var slider = require('@hig/slider');
var slider__default = _interopDefault(slider);
exports.default = slider;
exports.default = slider__default;
exports.sliderTypes = slider.sliderTypes;
exports.AVAILABLE_SLIDER_TYPES = slider.AVAILABLE_SLIDER_TYPES;

@@ -1,1 +0,1 @@

export { default } from "@hig/timestamp";
export { default, sequences, availableSequences } from "@hig/timestamp";

@@ -7,6 +7,9 @@ 'use strict';

var timestamp = _interopDefault(require('@hig/timestamp'));
var timestamp = require('@hig/timestamp');
var timestamp__default = _interopDefault(timestamp);
exports.default = timestamp;
exports.default = timestamp__default;
exports.sequences = timestamp.sequences;
exports.availableSequences = timestamp.availableSequences;

@@ -0,1 +1,8 @@

# [@hig/components-v2.5.0](https://github.com/Autodesk/hig/compare/@hig/components@2.4.0...@hig/components@2.5.0) (2021-01-15)
### Features
* add Menu component ([bb8c055](https://github.com/Autodesk/hig/commit/bb8c055))
# [@hig/components-v2.4.0](https://github.com/Autodesk/hig/compare/@hig/components@2.3.0...@hig/components@2.4.0) (2020-08-18)

@@ -2,0 +9,0 @@

{
"name": "@hig/components",
"version": "2.4.0",
"version": "2.5.0",
"description": "HIG Components",

@@ -22,37 +22,38 @@ "author": "Autodesk Inc.",

"@hig/accordion": "^1.1.0",
"@hig/avatar": "^1.1.0",
"@hig/avatar": "^1.2.0",
"@hig/banner": "^2.2.0",
"@hig/button": "^1.4.4",
"@hig/checkbox": "^2.0.9",
"@hig/dropdown": "^2.2.2",
"@hig/dropdown": "^2.4.0",
"@hig/flyout": "^1.2.1",
"@hig/icon-button": "^2.4.1",
"@hig/icon-button": "^2.5.0",
"@hig/icons": "^3.2.0",
"@hig/input": "^1.3.0",
"@hig/label": "^1.1.1",
"@hig/modal": "^2.2.1",
"@hig/notifications-flyout": "^2.0.6",
"@hig/notifications-toast": "^2.1.1",
"@hig/menu": "^1.0.0",
"@hig/modal": "^2.2.2",
"@hig/notifications-flyout": "^2.1.2",
"@hig/notifications-toast": "^2.2.0",
"@hig/numeric-input": "^1.0.0",
"@hig/profile-flyout": "^2.0.5",
"@hig/profile-flyout": "^2.1.0",
"@hig/progress-bar": "^1.1.1",
"@hig/progress-ring": "^1.1.0",
"@hig/project-account-switcher": "^2.0.5",
"@hig/radio-button": "^1.0.9",
"@hig/project-account-switcher": "^2.0.8",
"@hig/radio-button": "^1.1.0",
"@hig/rich-text": "^1.1.0",
"@hig/side-nav": "^2.2.0",
"@hig/side-nav": "^2.2.1",
"@hig/skeleton-item": "^1.1.1",
"@hig/slider": "^1.1.2",
"@hig/slider": "^1.2.0",
"@hig/spacer": "^1.0.8",
"@hig/surface": "^1.1.1",
"@hig/tabs": "^1.3.0",
"@hig/text-area": "^1.2.0",
"@hig/text-area": "^1.3.0",
"@hig/text-link": "^1.1.0",
"@hig/theme-context": "^3.0.0",
"@hig/theme-data": "^2.17.0",
"@hig/timestamp": "^1.2.0",
"@hig/theme-context": "^3.0.1",
"@hig/theme-data": "^2.19.2",
"@hig/timestamp": "^1.3.0",
"@hig/toggle": "^1.0.1",
"@hig/tooltip": "^1.0.6",
"@hig/top-nav": "^3.1.2",
"@hig/typography": "^1.0.4"
"@hig/top-nav": "^3.2.0",
"@hig/typography": "^1.2.0"
},

@@ -59,0 +60,0 @@ "peerDependencies": {

@@ -17,7 +17,6 @@ # Components

### Import all components and CSS
### Import all components
```jsx
import * as HIG from "@hig/components";
import "@hig/components/build/index.css";

@@ -31,3 +30,2 @@ <HIG.Button title="Click Me" />;

import { Button } from "@hig/components";
import "@hig/components/build/button.css";

@@ -41,5 +39,4 @@ <Button title="Click Me" />;

import Button, { types } from "@hig/components/build/button";
import "@hig/components/build/button.css";
<Button type={types.PRIMARY} title="Click Me" />;
```
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