Socket
Socket
Sign inDemoInstall

@instructure/ui-layout

Package Overview
Dependencies
Maintainers
26
Versions
940
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@instructure/ui-layout - npm Package Compare versions

Comparing version 6.27.0 to 6.27.1

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [6.27.1](https://github.com/instructure/instructure-ui/compare/v6.27.0...v6.27.1) (2021-05-17)
**Note:** Version bump only for package @instructure/ui-layout
# [6.27.0](https://github.com/instructure/instructure-ui/compare/v6.26.0...v6.27.0) (2020-06-24)

@@ -8,0 +16,0 @@

45

package.json
{
"name": "@instructure/ui-layout",
"version": "6.27.0",
"version": "6.27.1",
"description": "A UI component library made by Instructure Inc.",

@@ -25,25 +25,25 @@ "author": "Instructure, Inc. Engineering and Product Design",

"devDependencies": {
"@instructure/ui-babel-preset": "^6.27.0",
"@instructure/ui-test-locator": "^6.27.0",
"@instructure/ui-test-utils": "^6.27.0"
"@instructure/ui-babel-preset": "^6.27.1",
"@instructure/ui-test-locator": "^6.27.1",
"@instructure/ui-test-utils": "^6.27.1"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"@instructure/console": "^6.27.0",
"@instructure/debounce": "^6.27.0",
"@instructure/ui-a11y-content": "^6.27.0",
"@instructure/ui-color-utils": "^6.27.0",
"@instructure/ui-dialog": "^6.27.0",
"@instructure/ui-dom-utils": "^6.27.0",
"@instructure/ui-i18n": "^6.27.0",
"@instructure/ui-motion": "^6.27.0",
"@instructure/ui-portal": "^6.27.0",
"@instructure/ui-position": "^6.27.0",
"@instructure/ui-prop-types": "^6.27.0",
"@instructure/ui-react-utils": "^6.27.0",
"@instructure/ui-testable": "^6.27.0",
"@instructure/ui-themeable": "^6.27.0",
"@instructure/ui-utils": "^6.27.0",
"@instructure/ui-view": "^6.27.0",
"@instructure/uid": "^6.27.0",
"@instructure/console": "^6.27.1",
"@instructure/debounce": "^6.27.1",
"@instructure/ui-a11y-content": "^6.27.1",
"@instructure/ui-color-utils": "^6.27.1",
"@instructure/ui-dialog": "^6.27.1",
"@instructure/ui-dom-utils": "^6.27.1",
"@instructure/ui-i18n": "^6.27.1",
"@instructure/ui-motion": "^6.27.1",
"@instructure/ui-portal": "^6.27.1",
"@instructure/ui-position": "^6.27.1",
"@instructure/ui-prop-types": "^6.27.1",
"@instructure/ui-react-utils": "^6.27.1",
"@instructure/ui-testable": "^6.27.1",
"@instructure/ui-themeable": "^6.27.1",
"@instructure/ui-utils": "^6.27.1",
"@instructure/ui-view": "^6.27.1",
"@instructure/uid": "^6.27.1",
"classnames": "^2",

@@ -58,4 +58,3 @@ "prop-types": "^15"

},
"sideEffects": false,
"gitHead": "db8a94accd5cf132e6a72ccb0abd577df1e32006"
"sideEffects": false
}
import * as React from 'react';
export interface DrawerLayoutProps {
/**
* Exactly one of each of the following child types: `DrawerLayout.Content`, `DrawerLayout.Tray`
*/
children?: any;
/**
* Min width for the `<DrawerLayout.Content />`
*/
minWidth?: string;
/**
* Function called when the `<DrawerLayout.Content />` is resized and hits the `minWidth` breakpoint
* Called with a boolean value, `true` if the tray is now overlaying the content or `false` if
* it is side by side
*/
onOverlayTrayChange?: (...args: any[])=>any;
}
export class DrawerLayout extends React.Component<DrawerLayoutProps, any> {
render(): JSX.Element;
}
export type ContextViewHeight = string | number;

@@ -82,27 +107,2 @@

export interface DrawerLayoutProps {
/**
* Exactly one of each of the following child types: `DrawerLayout.Content`, `DrawerLayout.Tray`
*/
children?: any;
/**
* Min width for the `<DrawerLayout.Content />`
*/
minWidth?: string;
/**
* Function called when the `<DrawerLayout.Content />` is resized and hits the `minWidth` breakpoint
* Called with a boolean value, `true` if the tray is now overlaying the content or `false` if
* it is side by side
*/
onOverlayTrayChange?: (...args: any[])=>any;
}
export class DrawerLayout extends React.Component<DrawerLayoutProps, any> {
render(): JSX.Element;
}
export type FlexDirection = "row" | "column" | "row-reverse" | "column-reverse";

@@ -109,0 +109,0 @@

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