Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-schedule

Package Overview
Dependencies
Maintainers
3
Versions
234
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-schedule - npm Package Compare versions

Comparing version 21.2.10 to 22.1.34

styles/material3-dark.css

1

.eslintrc.json

@@ -40,2 +40,3 @@ {

"security/detect-new-buffer":"error",
"security/detect-bidi-characters":"error",
"@typescript-eslint/no-inferrable-types": "off",

@@ -42,0 +43,0 @@ "@typescript-eslint/ban-types": ["warn", {

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 21.2.10
* version : 22.1.34
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.

@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license.

{
"_from": "@syncfusion/ej2-schedule@*",
"_id": "@syncfusion/ej2-schedule@21.2.9",
"_id": "@syncfusion/ej2-schedule@21.4.0",
"_inBundle": false,
"_integrity": "sha512-w0xxAq2mqnZo3rKNxml0d2qPUTG89tD6ahom2fkOKLliJ3U+7xlIYzoHYvDenIzGYUgtqEVctIxrNQYJDAg+Qw==",
"_integrity": "sha512-EZAbpScHUedLn/uzkEFqw32MbJvnJZEH0HdWSwd5aamBAKQfk/bVvdFk/KFx+cNb6uRO/ME+NwpDrsVNYIdcGA==",
"_location": "/@syncfusion/ej2-schedule",

@@ -26,4 +26,4 @@ "_phantomChildren": {},

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-21.2.9.tgz",
"_shasum": "337678dc579849fe4bf8c97031aee088ca111724",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-schedule/-/ej2-schedule-21.4.0.tgz",
"_shasum": "4b5dfc8fd8a5960fc918df9a8bd2ff69c5933424",
"_spec": "@syncfusion/ej2-schedule@*",

@@ -39,12 +39,12 @@ "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~21.2.9",
"@syncfusion/ej2-buttons": "~21.2.10",
"@syncfusion/ej2-calendars": "~21.2.10",
"@syncfusion/ej2-data": "~21.2.9",
"@syncfusion/ej2-dropdowns": "~21.2.10",
"@syncfusion/ej2-excel-export": "~21.2.8",
"@syncfusion/ej2-inputs": "~21.2.9",
"@syncfusion/ej2-lists": "~21.2.9",
"@syncfusion/ej2-navigations": "~21.2.9",
"@syncfusion/ej2-popups": "~21.2.10"
"@syncfusion/ej2-base": "~22.1.34",
"@syncfusion/ej2-buttons": "~22.1.34",
"@syncfusion/ej2-calendars": "~22.1.34",
"@syncfusion/ej2-data": "~22.1.34",
"@syncfusion/ej2-dropdowns": "~22.1.34",
"@syncfusion/ej2-excel-export": "~22.1.34",
"@syncfusion/ej2-inputs": "~22.1.34",
"@syncfusion/ej2-lists": "~22.1.34",
"@syncfusion/ej2-navigations": "~22.1.34",
"@syncfusion/ej2-popups": "~22.1.34"
},

@@ -78,4 +78,4 @@ "deprecated": false,

"typings": "index.d.ts",
"version": "21.2.10",
"version": "22.1.34",
"sideEffects": false
}
import { Component, Property, NotifyPropertyChanges, INotifyPropertyChanged, Event, Browser, detach } from '@syncfusion/ej2-base';import { EmitType, getDefaultDateObject, getValue, cldrData, L10n, isNullOrUndefined, removeClass, addClass } from '@syncfusion/ej2-base';import { DropDownList, ChangeEventArgs } from '@syncfusion/ej2-dropdowns';import { NumericTextBox } from '@syncfusion/ej2-inputs';import { DatePicker, ChangedEventArgs } from '@syncfusion/ej2-calendars';import { Button, RadioButton } from '@syncfusion/ej2-buttons';import { EventHandler, MouseEventArgs, classList } from '@syncfusion/ej2-base';import { EJ2Instance } from '../schedule/base/interface';import { RecRule, extractObjectFromRule, generate, generateSummary, getRecurrenceStringFromDate, getCalendarUtil } from './date-generator';import { CalendarUtil, CalendarType } from '../common/calendar-util';import { capitalizeFirstWord } from '../schedule/base/util';
import {RepeatType,RecurrenceEditorChangeEventArgs} from "./recurrence-editor";
import {RepeatType,EndType,RecurrenceEditorChangeEventArgs} from "./recurrence-editor";
import {ComponentModel} from '@syncfusion/ej2-base';

@@ -18,2 +18,9 @@

/**
* Sets the type of recurrence end for the recurrence pattern on the editor.
*
* @default ['never', 'until', 'count']
*/
endTypes?: EndType[];
/**
* Sets the first day of the week.

@@ -20,0 +27,0 @@ *

@@ -25,2 +25,8 @@ import { Component, INotifyPropertyChanged } from '@syncfusion/ej2-base';

/**
* Sets the type of recurrence end for the recurrence pattern on the editor.
*
* @default ['never', 'until', 'count']
*/
endTypes: EndType[];
/**
* Sets the first day of the week.

@@ -218,1 +224,12 @@ *

export declare type RepeatType = 'none' | 'daily' | 'weekly' | 'monthly' | 'yearly';
/**
* Defines the available types of recurrence end for the recurrence editor.
* ```props
* The following options are available:
*
* never :- Denotes that the recurrence has no end date and continues indefinitely.
* until :- Denotes that the recurrence ends on a specified date.
* count :- Denotes that the recurrence ends after a specified number of occurrences.
* ```
*/
export declare type EndType = 'never' | 'until' | 'count';

@@ -235,3 +235,3 @@ var __extends = (this && this.__extends) || (function () {

if (!isNullOrUndefined(this.repeatType.value)) {
this.startState(this.repeatType.value.toString().toUpperCase(), NEVER, this.startDate);
this.startState(this.repeatType.value.toString().toUpperCase(), this.endTypes[0], this.startDate);
this.updateForm(this.repeatType.value.toString());

@@ -625,7 +625,6 @@ }

RecurrenceEditor.prototype.getEndData = function () {
var endData = [NEVER, UNTIL, COUNT];
// eslint-disable-next-line @typescript-eslint/no-this-alias
var self = this;
var dataSource = [];
endData.forEach(function (data) {
this.endTypes.forEach(function (data) {
dataSource.push({ text: self.localeObj.getConstant(data), value: data });

@@ -930,3 +929,3 @@ });

RecurrenceEditor.prototype.resetFields = function () {
this.startState(NONE, NEVER, this.startDate);
this.startState(NONE, this.endTypes[0], this.startDate);
this.setDefaultValue();

@@ -1116,2 +1115,3 @@ };

case 'firstDayOfWeek':
case 'endTypes':
this.refresh();

@@ -1129,2 +1129,5 @@ break;

__decorate([
Property(['never', 'until', 'count'])
], RecurrenceEditor.prototype, "endTypes", void 0);
__decorate([
Property(0)

@@ -1131,0 +1134,0 @@ ], RecurrenceEditor.prototype, "firstDayOfWeek", void 0);

@@ -609,2 +609,3 @@ /* eslint-disable @typescript-eslint/no-explicit-any */

}
e.preventDefault();
this.selectCells(isMultiple, targetCell);

@@ -657,2 +658,3 @@ }

}
e.preventDefault();
this.selectCells(isMultiple, targetCell);

@@ -659,0 +661,0 @@ }

@@ -328,4 +328,5 @@ import { Component, ModuleDeclaration, Property, Event, Animation, Collection, append } from '@syncfusion/ej2-base';import { EventHandler, EmitType, Browser, Internationalization, getDefaultDateObject, cldrData, L10n } from '@syncfusion/ej2-base';import { getValue, compile, extend, isNullOrUndefined, NotifyPropertyChanges, INotifyPropertyChanged, Complex } from '@syncfusion/ej2-base';import { getElement, removeClass, addClass, classList, remove, SanitizeHtmlHelper } from '@syncfusion/ej2-base';import { createSpinner, hideSpinner, showSpinner } from '@syncfusion/ej2-popups';import { HeaderRenderer } from '../renderer/header-renderer';import { Scroll } from '../actions/scroll';import { ScheduleTouch } from '../actions/touch';import { KeyboardInteraction } from '../actions/keyboard';import { Data } from '../actions/data';import { View, CurrentAction, ReturnType, WeekRule } from '../base/type';import { EventBase } from '../event-renderer/event-base';import { InlineEdit } from '../event-renderer/inline-edit';import { QuickPopups } from '../popups/quick-popups';import { EventTooltip } from '../popups/event-tooltip';import { EventWindow } from '../popups/event-window';import { Render } from '../renderer/renderer';import { Day } from '../renderer/day';import { Week } from '../renderer/week';import { WorkWeek } from '../renderer/work-week';import { Month } from '../renderer/month';import { Year } from '../renderer/year';import { Agenda } from '../renderer/agenda';import { MonthAgenda } from '../renderer/month-agenda';import { TimelineViews } from '../renderer/timeline-view';import { TimelineMonth } from '../renderer/timeline-month';import { TimelineYear } from '../renderer/timeline-year';import { WorkHours } from '../models/work-hours';import { TimeScale } from '../models/time-scale';import { QuickInfoTemplates } from '../models/quick-info-templates';import { HeaderRows } from '../models/header-rows';import { Crud } from '../actions/crud';import { Resize } from '../actions/resize';import { DragAndDrop } from '../actions/drag';import { VirtualScroll } from '../actions/virtual-scroll';import { WorkCellInteraction } from '../actions/work-cells';import { WorkHoursModel, ViewsModel, EventSettingsModel, GroupModel, ResourcesModel, TimeScaleModel } from '../models/models';import { QuickInfoTemplatesModel, HeaderRowsModel } from '../models/models';import { EventSettings } from '../models/event-settings';import { Group } from '../models/group';import { Resources } from '../models/resources';import { ICalendarExport } from '../exports/calendar-export';import { ICalendarImport } from '../exports/calendar-import';import { ExcelExport } from '../exports/excel-export';import { Print } from '../exports/print';import { IRenderer, ActionEventArgs, NavigatingEventArgs, CellClickEventArgs, RenderCellEventArgs, ScrollCss, TimezoneFields } from '../base/interface';import { EventClickArgs, EventRenderedArgs, PopupOpenEventArgs, UIStateArgs, DragEventArgs, ResizeEventArgs } from '../base/interface';import { EventFieldsMapping, TdData, ResourceDetails, ResizeEdges, StateArgs, ExportOptions, SelectEventArgs } from '../base/interface';import { ViewsData, PopupCloseEventArgs, HoverEventArgs, MoreEventsClickArgs, CallbackFunction } from '../base/interface';import { CalendarUtil, Gregorian, Islamic, CalendarType } from '../../common/calendar-util';import { ResourceBase } from '../base/resource';import { Timezone, timezoneData } from '../timezone/timezone';import { RecurrenceEditor } from '../../recurrence-editor/recurrence-editor';import * as events from '../base/constant';import * as cls from '../base/css-constant';import * as util from '../base/util';

* @default null
* @aspType string
*/
dateHeaderTemplate?: string;
dateHeaderTemplate?: string | Function;

@@ -336,4 +337,5 @@ /**

* @default null
* @aspType string
*/
dateRangeTemplate?: string;
dateRangeTemplate?: string | Function;

@@ -347,4 +349,5 @@ /**

* @default null
* @aspType string
*/
cellHeaderTemplate?: string;
cellHeaderTemplate?: string | Function;

@@ -358,4 +361,5 @@ /**

* @default null
* @aspType string
*/
dayHeaderTemplate?: string;
dayHeaderTemplate?: string | Function;

@@ -369,4 +373,5 @@ /**

* @default null
* @aspType string
*/
monthHeaderTemplate?: string;
monthHeaderTemplate?: string | Function;

@@ -386,4 +391,5 @@ /**

* @default null
* @aspType string
*/
cellTemplate?: string;
cellTemplate?: string | Function;

@@ -489,4 +495,5 @@ /**

* @default null
* @aspType string
*/
editorTemplate?: string;
editorTemplate?: string | Function;

@@ -576,4 +583,5 @@ /**

* @default null
* @aspType string
*/
resourceHeaderTemplate?: string;
resourceHeaderTemplate?: string | Function;

@@ -589,4 +597,5 @@ /**

* @default null
* @aspType string
*/
headerIndentTemplate?: string;
headerIndentTemplate?: string | Function;

@@ -593,0 +602,0 @@ /**

@@ -14,4 +14,5 @@ import { Property, ChildProperty, Complex } from '@syncfusion/ej2-base';import { Query, DataManager } from '@syncfusion/ej2-data';import { SortComparerFunction } from '../base/interface';import { SpannedEventPlacement } from '../base/type';import { Field } from './fields';import { FieldModel } from './fields-model';

* @default null
* @aspType string
*/
template?: string;
template?: string | Function;

@@ -77,4 +78,5 @@ /**

* @default null
* @aspType string
*/
tooltipTemplate?: string;
tooltipTemplate?: string | Function;

@@ -81,0 +83,0 @@ /**

@@ -16,4 +16,5 @@ import { ChildProperty } from '@syncfusion/ej2-base';

* @default null
* @aspType string
*/
template: string;
template: string | Function;
/**

@@ -72,4 +73,5 @@ * With this property, the event data will be bound to Schedule.

* @default null
* @aspType string
*/
tooltipTemplate: string;
tooltipTemplate: string | Function;
/**

@@ -76,0 +78,0 @@ * Defines the resource name, to decides the color of which particular resource level is to be applied on appointments, when

@@ -54,4 +54,5 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';

* @default null
* @aspType string
*/
headerTooltipTemplate?: string;
headerTooltipTemplate?: string | Function;

@@ -58,0 +59,0 @@ /**

@@ -47,4 +47,5 @@ import { ChildProperty } from '@syncfusion/ej2-base';

* @default null
* @aspType string
*/
headerTooltipTemplate: string;
headerTooltipTemplate: string | Function;
/**

@@ -51,0 +52,0 @@ * Decides whether to show/hide the non-working days. It is set to `false` by default and when set to `true`, it hides the non-working days.

@@ -26,5 +26,6 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';import { HeaderRowType } from '../base/type';

* @default null
* @aspType string
*/
template?: string;
template?: string | Function;
}

@@ -24,4 +24,5 @@ import { ChildProperty } from '@syncfusion/ej2-base';

* @default null
* @aspType string
*/
template: string;
template: string | Function;
}

@@ -23,4 +23,5 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';import { TemplateType } from '../base/type';

* @default null
* @aspType string
*/
header?: string;
header?: string | Function;

@@ -31,4 +32,5 @@ /**

* @default null
* @aspType string
*/
content?: string;
content?: string | Function;

@@ -39,5 +41,6 @@ /**

* @default null
* @aspType string
*/
footer?: string;
footer?: string | Function;
}

@@ -21,4 +21,5 @@ import { ChildProperty } from '@syncfusion/ej2-base';

* @default null
* @aspType string
*/
header: string;
header: string | Function;
/**

@@ -28,4 +29,5 @@ * Template option to customize the content area of the quick popup.

* @default null
* @aspType string
*/
content: string;
content: string | Function;
/**

@@ -35,4 +37,5 @@ * Template option to customize the footer section of quick popup.

* @default null
* @aspType string
*/
footer: string;
footer: string | Function;
}

@@ -37,4 +37,5 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';

* @default null
* @aspType string
*/
minorSlotTemplate?: string;
minorSlotTemplate?: string | Function;

@@ -47,5 +48,6 @@ /**

* @default null
* @aspType string
*/
majorSlotTemplate?: string;
majorSlotTemplate?: string | Function;
}

@@ -32,4 +32,5 @@ import { ChildProperty } from '@syncfusion/ej2-base';

* @default null
* @aspType string
*/
minorSlotTemplate: string;
minorSlotTemplate: string | Function;
/**

@@ -41,4 +42,5 @@ * The template option to be applied for major time slot. Here, the

* @default null
* @aspType string
*/
majorSlotTemplate: string;
majorSlotTemplate: string | Function;
}

@@ -83,4 +83,5 @@ import { Property, ChildProperty, Complex, Collection } from '@syncfusion/ej2-base';import { View, Orientation } from '../base/type';import { TimeScale } from '../models/time-scale';import { TimeScaleModel, GroupModel, HeaderRowsModel } from '../models/models';import { Group } from '../models/group';import { HeaderRows } from './header-rows';

* @default null
* @aspType string
*/
cellHeaderTemplate?: string;
cellHeaderTemplate?: string | Function;

@@ -93,4 +94,5 @@ /**

* @default null
* @aspType string
*/
dateHeaderTemplate?: string;
dateHeaderTemplate?: string | Function;

@@ -101,4 +103,5 @@ /**

* @default null
* @aspType string
*/
dateRangeTemplate?: string;
dateRangeTemplate?: string | Function;

@@ -111,4 +114,5 @@ /**

* @default null
* @aspType string
*/
cellTemplate?: string;
cellTemplate?: string | Function;

@@ -121,4 +125,5 @@ /**

* @default null
* @aspType string
*/
dayHeaderTemplate?: string;
dayHeaderTemplate?: string | Function;

@@ -131,4 +136,5 @@ /**

* @default null
* @aspType string
*/
monthHeaderTemplate?: string;
monthHeaderTemplate?: string | Function;

@@ -142,4 +148,5 @@ /**

* @default null
* @aspType string
*/
eventTemplate?: string;
eventTemplate?: string | Function;

@@ -222,4 +229,5 @@ /**

* @default null
* @aspType string
*/
resourceHeaderTemplate?: string;
resourceHeaderTemplate?: string | Function;

@@ -232,4 +240,5 @@ /**

* @default null
* @aspType string
*/
headerIndentTemplate?: string;
headerIndentTemplate?: string | Function;

@@ -236,0 +245,0 @@ /**

@@ -76,4 +76,5 @@ import { ChildProperty } from '@syncfusion/ej2-base';

* @default null
* @aspType string
*/
cellHeaderTemplate: string;
cellHeaderTemplate: string | Function;
/**

@@ -85,4 +86,5 @@ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the

* @default null
* @aspType string
*/
dateHeaderTemplate: string;
dateHeaderTemplate: string | Function;
/**

@@ -92,4 +94,5 @@ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the header date range.

* @default null
* @aspType string
*/
dateRangeTemplate: string;
dateRangeTemplate: string | Function;
/**

@@ -101,4 +104,5 @@ * The template option which is used to render the customized work cells on the Schedule. Here, the

* @default null
* @aspType string
*/
cellTemplate: string;
cellTemplate: string | Function;
/**

@@ -110,4 +114,5 @@ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the

* @default null
* @aspType string
*/
dayHeaderTemplate: string;
dayHeaderTemplate: string | Function;
/**

@@ -119,4 +124,5 @@ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the

* @default null
* @aspType string
*/
monthHeaderTemplate: string;
monthHeaderTemplate: string | Function;
/**

@@ -129,4 +135,5 @@ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto

* @default null
* @aspType string
*/
eventTemplate: string;
eventTemplate: string | Function;
/**

@@ -200,4 +207,5 @@ * When set to `false`, it hides the weekend days of a week from the Schedule.

* @default null
* @aspType string
*/
resourceHeaderTemplate: string;
resourceHeaderTemplate: string | Function;
/**

@@ -209,4 +217,5 @@ * The template option which is used to render the customized header indent cell on the schedule. Here, the

* @default null
* @aspType string
*/
headerIndentTemplate: string;
headerIndentTemplate: string | Function;
/**

@@ -213,0 +222,0 @@ * By default, Schedule follows the time-format as per the default culture assigned to it.

/* eslint-disable @typescript-eslint/no-explicit-any */
import { isNullOrUndefined, append, createElement, addClass } from '@syncfusion/ej2-base';
import { isNullOrUndefined, append, createElement, addClass, initializeCSPTemplate } from '@syncfusion/ej2-base';
import { Tooltip } from '@syncfusion/ej2-popups';

@@ -119,7 +119,10 @@ import * as cls from '../base/css-constant';

(startTime + ' - ' + endTime);
var content = '<div><div class="e-subject">' + tooltipSubject + '</div>' +
var content_1 = '<div><div class="e-subject">' + tooltipSubject + '</div>' +
'<div class="e-location">' + tooltipLocation + '</div>' +
'<div class="e-details">' + tooltipDetails + '</div>' +
'<div class="e-all-day">' + tooltipTime + '</div></div>';
this.setContent(content);
var contentTemp = function () {
return content_1;
};
this.setContent(initializeCSPTemplate(contentTemp));
}

@@ -126,0 +129,0 @@ this.parent.renderTemplates();

@@ -164,3 +164,4 @@ var __extends = (this && this.__extends) || (function () {

var end = (endHour.getHours() === 0) ? 24 : endHour.getHours();
diffInMinutes = diffInMinutes + ((currentDateIndex[0]) * (((end - startHour.getHours()) * 60) + (endHour.getMinutes() - startHour.getMinutes())));
diffInMinutes = diffInMinutes + ((currentDateIndex[0]) * (((end - startHour.getHours()) * 60) +
(endHour.getMinutes() - startHour.getMinutes())));
}

@@ -167,0 +168,0 @@ }

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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