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

@schedule-x/resize

Package Overview
Dependencies
Maintainers
0
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@schedule-x/resize - npm Package Compare versions

Comparing version 1.46.5 to 1.46.6

15

dist/core.cjs.d.ts

@@ -330,8 +330,19 @@ import { Signal } from "@preact/signals";

}
type RecursivePartial<T> = {
[P in keyof T]?: T[P] extends (infer U)[] ? RecursivePartial<U>[] : T[P] extends object | undefined ? RecursivePartial<T[P]> : T[P];
};
interface PluginBase {
name: string;
// TODO v2: change to `beforeRender`
beforeInit?($app: CalendarAppSingleton): void;
/**
* use a recursive partial on the $app interface, in order to not break any third party plugins
* when we add new properties to the $app interface
* */
beforeInit?($app: RecursivePartial<CalendarAppSingleton>): void;
// TODO v2: change to `onRender` and remove $app parameter
init?($app: CalendarAppSingleton): void;
/**
* use a recursive partial on the $app interface, in order to not break any third party plugins
* when we add new properties to the $app interface
* */
init?($app: RecursivePartial<CalendarAppSingleton>): void;
destroy?(): void;

@@ -338,0 +349,0 @@ }

@@ -330,8 +330,19 @@ import { Signal } from "@preact/signals";

}
type RecursivePartial<T> = {
[P in keyof T]?: T[P] extends (infer U)[] ? RecursivePartial<U>[] : T[P] extends object | undefined ? RecursivePartial<T[P]> : T[P];
};
interface PluginBase {
name: string;
// TODO v2: change to `beforeRender`
beforeInit?($app: CalendarAppSingleton): void;
/**
* use a recursive partial on the $app interface, in order to not break any third party plugins
* when we add new properties to the $app interface
* */
beforeInit?($app: RecursivePartial<CalendarAppSingleton>): void;
// TODO v2: change to `onRender` and remove $app parameter
init?($app: CalendarAppSingleton): void;
/**
* use a recursive partial on the $app interface, in order to not break any third party plugins
* when we add new properties to the $app interface
* */
init?($app: RecursivePartial<CalendarAppSingleton>): void;
destroy?(): void;

@@ -338,0 +349,0 @@ }

@@ -330,8 +330,19 @@ import { Signal } from "@preact/signals";

}
type RecursivePartial<T> = {
[P in keyof T]?: T[P] extends (infer U)[] ? RecursivePartial<U>[] : T[P] extends object | undefined ? RecursivePartial<T[P]> : T[P];
};
interface PluginBase {
name: string;
// TODO v2: change to `beforeRender`
beforeInit?($app: CalendarAppSingleton): void;
/**
* use a recursive partial on the $app interface, in order to not break any third party plugins
* when we add new properties to the $app interface
* */
beforeInit?($app: RecursivePartial<CalendarAppSingleton>): void;
// TODO v2: change to `onRender` and remove $app parameter
init?($app: CalendarAppSingleton): void;
/**
* use a recursive partial on the $app interface, in order to not break any third party plugins
* when we add new properties to the $app interface
* */
init?($app: RecursivePartial<CalendarAppSingleton>): void;
destroy?(): void;

@@ -338,0 +349,0 @@ }

4

package.json
{
"name": "@schedule-x/resize",
"version": "1.46.5",
"version": "1.46.6",
"description": "Resize events in the Schedule-X calendar",

@@ -29,3 +29,3 @@ "author": {

"homepage": "https://schedule-x.dev",
"gitHead": "a6d558b007f37f644b8812ea693dbe6dc55305f0"
"gitHead": "f35c0d86451edc0708328c9401c77a81aeed4b8a"
}
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