New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

maker-ui

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

maker-ui - npm Package Compare versions

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

8

package.json
{
"name": "maker-ui",
"description": "The fastest way to build themeable, responsive layouts in React",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.11",
"license": "MIT",

@@ -22,5 +22,5 @@ "author": "Mike Darche <mike@newcreative.io>",

"dependencies": {
"@maker-ui/css": "1.0.0-beta.10",
"@maker-ui/layout": "1.0.0-beta.10",
"@maker-ui/primitives": "1.0.0-beta.10",
"@maker-ui/css": "1.0.0-beta.11",
"@maker-ui/layout": "1.0.0-beta.11",
"@maker-ui/primitives": "1.0.0-beta.11",
"tslib": "^2.0.0"

@@ -27,0 +27,0 @@ },

@@ -18,4 +18,2 @@ # Maker UI

https://maker-ui.com
## Templating Features

@@ -29,3 +27,3 @@

- Automatic skiplink and keyboard focus management
- Conditial or multi-layout support
- Conditional or multi-layout support
- Unlimited color modes

@@ -51,3 +49,3 @@ - Error boundaries, logging support, and custom error reporting hooks

// basic layout component usage
import React from 'react'
import * as React from 'react';
import {

@@ -62,6 +60,6 @@ Layout,

Footer,
} from 'maker-ui'
} from 'maker-ui';
import { options, menu } from './config'
import Logo from './Logo'
import { options, menu } from './config'; // your custom configurations
import Logo from './Logo'; // your logo component

@@ -80,5 +78,5 @@ const MyLayout = props => (

</Layout>
)
);
export default MyLayout
export default MyLayout;
```

@@ -91,14 +89,14 @@

```jsx
import { Div } from 'maker-ui'
import { Div } from 'maker-ui';
const MyPage = props => (
<Div
breakpoints={['768px', '960px',]}
breakpoints={['768px', '960px']}
css={{ color: ['red', 'blue', 'green']}}
/>
...
)
);
```
This example would set the Div's default color to `red` and generate `min-width` media queries so the color is `blue` at `768px` and `green` at `960px`. Never write a media query again!
This example would set the div's default color to `red` and generate `min-width` media queries so the color is `blue` at `768px` and `green` at `960px`. Never write a media query again!

@@ -119,32 +117,6 @@ ## Maker Components

- CookieNotice
- Toast and ToastProvider
- TableOfContents
## Documentation
- [MakerUI Options](https://maker-ui.com/docs/options)
- [Layout Components](https://maker-ui.com/docs/layout)
- [Adding Content](https://maker-ui.com/docs/adding-content)
- [Hooks API](https://maker-ui.com/docs/hooks)
- [Tutorials](https://maker-ui.com/tutorials)
## Upcoming Packages/Modules
- Components
- Search (Algolia)
- SmartTable
- SmartGrid
- Subscribe Form
- Share buttons
- Mega dropdown menus
- Speech Synthesis
- PricingTable
- ParallaxBox
- Subheader
- i18n Provider
- Pre-built themes
- Ecommerce & payment templates
- Authentication templates
## License
The MIT License (MIT)
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