Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@smui/layout-grid

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@smui/layout-grid - npm Package Compare versions

Comparing version 5.0.0-beta.0 to 5.0.0-beta.1

9

ambient.d.ts

@@ -1,7 +0,2 @@

declare namespace svelte.JSX {
interface HTMLAttributes<T> {}
}
declare module '*.svelte' {
export { SvelteComponentDev as default } from 'svelte/internal';
}
/// <reference types="svelte" />
/// <reference types="svelte2tsx/svelte-jsx" />

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

/// <reference types="svelte2tsx/svelte-jsx" />
import type Component from './Cell.svelte';

@@ -9,3 +10,3 @@ export declare class CellComponentDev extends Component {

*/
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, keyof Component['$$prop_def']> & Component['$$prop_def'];
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, 'use' | 'class' | 'align' | 'order' | 'span' | 'spanDevices'> & Component['$$prop_def'];
}

@@ -12,5 +12,5 @@ import type Component from './Cell.svelte';

Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>,
keyof Component['$$prop_def']
'use' | 'class' | 'align' | 'order' | 'span' | 'spanDevices'
> &
Component['$$prop_def'];
}

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

# [5.0.0-beta.1](https://github.com/hperrin/svelte-material-ui/compare/v5.0.0-beta.0...v5.0.0-beta.1) (2021-09-14)
### Bug Fixes
* correctly provide html attributes ([048a11d](https://github.com/hperrin/svelte-material-ui/commit/048a11d0d84707a90a0ccde794b7c31155b71ca9))
* some type issues and simpler ambient declarations ([44e2cea](https://github.com/hperrin/svelte-material-ui/commit/44e2cea7764733c97e629fa3d2498516cd0756b1))
# [5.0.0-beta.0](https://github.com/hperrin/svelte-material-ui/compare/v4.2.0...v5.0.0-beta.0) (2021-09-14)

@@ -8,0 +20,0 @@

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

/// <reference types="svelte2tsx/svelte-jsx" />
import type Component from './InnerGrid.svelte';

@@ -9,3 +10,3 @@ export declare class InnerGridComponentDev extends Component {

*/
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, keyof Component['$$prop_def']> & Component['$$prop_def'];
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, 'use' | 'class'> & Component['$$prop_def'];
}

@@ -12,5 +12,5 @@ import type Component from './InnerGrid.svelte';

Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>,
keyof Component['$$prop_def']
'use' | 'class'
> &
Component['$$prop_def'];
}

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

/// <reference types="svelte2tsx/svelte-jsx" />
import type Component from './LayoutGrid.svelte';

@@ -10,5 +11,5 @@ import type { InnerGridComponentDev } from './InnerGrid.types';

*/
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, keyof Component['$$prop_def']> & {
$$prop_def: Omit<Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>, 'use' | 'class' | 'fixedColumnWidth' | 'align'> & {
[k in keyof InnerGridComponentDev['$$prop_def'] as `innerGrid\$${k}`]?: InnerGridComponentDev['$$prop_def'][k];
} & Component['$$prop_def'];
}

@@ -13,3 +13,3 @@ import type Component from './LayoutGrid.svelte';

Partial<svelte.JSX.HTMLAttributes<HTMLDivElement>>,
keyof Component['$$prop_def']
'use' | 'class' | 'fixedColumnWidth' | 'align'
> &

@@ -16,0 +16,0 @@ {

{
"name": "@smui/layout-grid",
"version": "5.0.0-beta.0",
"version": "5.0.0-beta.1",
"description": "Svelte Material UI - Layout Grid",

@@ -21,2 +21,3 @@ "type": "module",

"build:sass": "sass --no-source-map -I node_modules -I ../../node_modules _style.scss bare.css",
"clean": "git status --ignored -u --porcelain . | grep -v node_modules/ | grep -e '^!! ' | sed 's/^!! packages\\/[a-z-]*\\///g' | tr '\\n' ' ' | xargs rm",
"prepare": "npm run build",

@@ -39,3 +40,4 @@ "test": "echo \"Error: no test specified\" && exit 1"

"@material/layout-grid": "^11.0.0",
"@smui/common": "^5.0.0-beta.0"
"@smui/common": "^5.0.0-beta.1",
"svelte2tsx": "^0.4.6"
},

@@ -48,3 +50,3 @@ "devDependencies": {

},
"gitHead": "64f517242b78ff75df7865fc80f16d1a5c39bcaf"
"gitHead": "d3dd658904e6955c1e0b3d57a849fb645d93e8a1"
}

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