Socket
Socket
Sign inDemoInstall

@desk-framework/frame-test

Package Overview
Dependencies
2
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.0-dev.27 to 4.0.0-dev.28

6

dist/renderer/UIContainerRenderer.js

@@ -8,3 +8,3 @@ import { RenderContext, UICell, UIColumn, UIRow, UIScrollContainer, app, } from "@desk-framework/frame-core";

super(observed);
this.observeProperties("layout");
this.observeProperties("padding", "layout");
if (observed instanceof UIRow) {

@@ -35,2 +35,3 @@ this.observeProperties("height", "align");

switch (property) {
case "padding":
case "layout":

@@ -99,2 +100,5 @@ case "align": // for rows and columns

}
if (container.padding !== null) {
layout = { ...layout, padding: container.padding };
}
// apply styles

@@ -101,0 +105,0 @@ element.styleClass = BaseStyle;

4

package.json
{
"name": "@desk-framework/frame-test",
"version": "4.0.0-dev.27",
"version": "4.0.0-dev.28",
"publishConfig": {

@@ -32,3 +32,3 @@ "tag": "next"

"peerDependencies": {
"@desk-framework/frame-core": "4.0.0-dev.27"
"@desk-framework/frame-core": "4.0.0-dev.28"
},

@@ -35,0 +35,0 @@ "devDependencies": {

@@ -21,3 +21,3 @@ import {

super(observed);
this.observeProperties("layout");
this.observeProperties("padding", "layout");
if (observed instanceof UIRow) {

@@ -49,2 +49,3 @@ this.observeProperties("height" as any, "align" as any);

switch (property) {
case "padding":
case "layout":

@@ -119,2 +120,5 @@ case "align": // for rows and columns

}
if (container.padding !== null) {
layout = { ...layout, padding: container.padding };
}

@@ -121,0 +125,0 @@ // apply styles

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc