Socket
Socket
Sign inDemoInstall

@schedule-x/calendar

Package Overview
Dependencies
Maintainers
0
Versions
125
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@schedule-x/calendar - npm Package Compare versions

Comparing version 1.46.5 to 1.46.6

15

dist/core.cjs.d.ts

@@ -206,8 +206,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;

@@ -214,0 +225,0 @@ }

@@ -206,8 +206,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;

@@ -214,0 +225,0 @@ }

@@ -206,8 +206,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;

@@ -214,0 +225,0 @@ }

4

package.json
{
"name": "@schedule-x/calendar",
"version": "1.46.5",
"version": "1.46.6",
"description": "Schedule-X calendar component",

@@ -40,3 +40,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