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

@toddledev/core

Package Overview
Dependencies
Maintainers
0
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@toddledev/core - npm Package Compare versions

Comparing version

to
0.0.3-alpha.5

1

dist/formula/formula.d.ts

@@ -77,2 +77,3 @@ import type { Component, ComponentData } from '../component/component.types';

getCustomFormula: CustomFormulaHandler;
errors: Error[];
};

@@ -79,0 +80,0 @@ env: ToddleEnv | undefined;

12

dist/formula/formula.js

@@ -81,7 +81,3 @@ "use strict";

catch (e) {
if (typeof window !== 'undefined' &&
window.toddle.errors) {
const myWindow = window;
myWindow.toddle.errors.push(e);
}
ctx.toddle.errors.push(e);
if (ctx.env?.logErrors) {

@@ -109,7 +105,3 @@ console.error(e);

catch (e) {
if (typeof window !== 'undefined' &&
window.toddle.errors) {
const myWindow = window;
myWindow.toddle.errors.push(e);
}
ctx.toddle.errors.push(e);
if (ctx.env?.logErrors) {

@@ -116,0 +108,0 @@ console.error(e);

@@ -16,3 +16,3 @@ {

"main": "dist/index.js",
"version": "0.0.3-alpha.4"
"version": "0.0.3-alpha.5"
}

@@ -12,3 +12,2 @@ import type { Component, ComponentData } from '../component/component.types'

// Define the some objects types as union of ServerSide and ClientSide runtime types as applyFormula is used in both
declare const window: Window | undefined
declare const document: Document | undefined

@@ -110,2 +109,3 @@ type ShadowRoot = DocumentFragment

getCustomFormula: CustomFormulaHandler
errors: Error[]
}

@@ -229,9 +229,3 @@ env: ToddleEnv | undefined

} catch (e) {
if (
typeof window !== 'undefined' &&
(window as any).toddle.errors
) {
const myWindow = window as any
myWindow.toddle.errors.push(e as Error)
}
ctx.toddle.errors.push(e as Error)
if (ctx.env?.logErrors) {

@@ -260,9 +254,3 @@ console.error(e)

} catch (e) {
if (
typeof window !== 'undefined' &&
(window as any).toddle.errors
) {
const myWindow = window as any
myWindow.toddle.errors.push(e as Error)
}
ctx.toddle.errors.push(e as Error)
if (ctx.env?.logErrors) {

@@ -269,0 +257,0 @@ console.error(e)

Sorry, the diff of this file is not supported yet