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

gd-sprest-react

Package Overview
Dependencies
Maintainers
1
Versions
309
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gd-sprest-react - npm Package Compare versions

Comparing version 2.8.6 to 2.8.7

build/components/types/basePanel.d.ts

2

build/components/basePanel.d.ts
/// <reference types="react" />
import * as React from "react";
import { IBasePanelProps, IBasePanelState } from ".";
import { IBasePanelProps, IBasePanelState } from "./types";
/**

@@ -5,0 +5,0 @@ * Base Panel

@@ -14,3 +14,3 @@ /// <reference types="react" />

*/
constructor(props: Fields.IBaseFieldProps);
constructor(props: Fields.Types.IBaseFieldProps);
/**

@@ -17,0 +17,0 @@ * Get the field information

export { BasePanel as Panel } from "./basePanel";
export * from "./basePanel.def";
export * from "./field";
export * from "./itemForm";
export * from "./itemForm.def";
export * from "./peoplePicker";
export * from "./peoplePicker.def";
import * as Types from "./types";
export { Types };

@@ -11,2 +11,4 @@ "use strict";

__export(require("./peoplePicker"));
var Types = require("./types");
exports.Types = Types;
//# sourceMappingURL=index.js.map
/// <reference types="react" />
import * as React from "react";
import { Types } from "gd-sprest";
import { IItemFormProps, IItemFormState } from "./types";
import { Fields } from "..";
import { IItemFormProps, IItemFormState } from ".";
/**

@@ -7,0 +7,0 @@ * Item Form

/// <reference types="react" />
import * as React from "react";
import { IPersonaProps } from "office-ui-fabric-react";
import { ISPPeoplePickerProps, ISPPeoplePickerState } from ".";
import { ISPPeoplePickerProps, ISPPeoplePickerState } from "./types";
/**

@@ -6,0 +6,0 @@ * SharePoint People Picker

/// <reference types="react" />
import * as React from "react";
import { Types } from "gd-sprest";
import { IBaseField, IBaseFieldProps, IBaseFieldState } from ".";
import { IBaseField, IBaseFieldProps, IBaseFieldState } from "./types";
/**

@@ -6,0 +6,0 @@ * Base Field

/// <reference types="react" />
import * as React from "react";
import { IFieldAttachment, IFieldAttachmentsProps, IFieldAttachmentsState } from ".";
import { IFieldAttachment, IFieldAttachmentsProps, IFieldAttachmentsState } from "./types";
import "../../sass/fieldAttachments.scss";

@@ -5,0 +5,0 @@ /**

@@ -1,2 +0,3 @@

import { BaseField, IFieldBoolean, IFieldBooleanProps, IFieldBooleanState } from ".";
import { IFieldBoolean, IFieldBooleanProps, IFieldBooleanState } from "./types";
import { BaseField } from ".";
/**

@@ -3,0 +4,0 @@ * Boolean field

import { IDropdownOption } from "office-ui-fabric-react";
import { BaseField, IFieldChoice, IFieldChoiceProps, IFieldChoiceState } from ".";
import { IFieldChoice, IFieldChoiceProps, IFieldChoiceState } from "./types";
import { BaseField } from ".";
/**

@@ -4,0 +5,0 @@ * Choice field

@@ -1,2 +0,3 @@

import { BaseField, IFieldDateTime, IFieldDateTimeProps, IFieldDateTimeState } from ".";
import { IFieldDateTime, IFieldDateTimeProps, IFieldDateTimeState } from "./types";
import { BaseField } from ".";
/**

@@ -3,0 +4,0 @@ * Date Time field

import { IDropdownOption } from "office-ui-fabric-react";
import { BaseField, IFieldLookup, IFieldLookupProps, IFieldLookupState } from ".";
import { IFieldLookup, IFieldLookupProps, IFieldLookupState } from "./types";
import { BaseField } from ".";
/**

@@ -4,0 +5,0 @@ * Lookup Field

import { IDropdownOption } from "office-ui-fabric-react";
import { BaseField, IFieldManagedMetadata, IFieldManagedMetadataProps, IFieldManagedMetadataState } from ".";
import { IFieldManagedMetadata, IFieldManagedMetadataProps, IFieldManagedMetadataState } from "./types";
import { BaseField } from ".";
/**

@@ -4,0 +5,0 @@ * Managed Metadata Field

@@ -1,2 +0,3 @@

import { BaseField, IFieldNumberProps, IFieldNumberState } from ".";
import { IFieldNumberProps, IFieldNumberState } from "./types";
import { BaseField } from ".";
/**

@@ -3,0 +4,0 @@ * Number Field Types

@@ -1,2 +0,3 @@

import { BaseField, IFieldTextProps, IFieldTextState } from ".";
import { IFieldTextProps, IFieldTextState } from "./types";
import { BaseField } from ".";
/**

@@ -3,0 +4,0 @@ * Text Field

@@ -1,2 +0,3 @@

import { BaseField, IFieldUrlProps, IFieldUrlState } from ".";
import { IFieldUrlProps, IFieldUrlState } from "./types";
import { BaseField } from ".";
/**

@@ -3,0 +4,0 @@ * URL Field

@@ -1,2 +0,3 @@

import { BaseField, IFieldUserProps, IFieldUserState } from ".";
import { IFieldUserProps, IFieldUserState } from "./types";
import { BaseField } from ".";
/**

@@ -3,0 +4,0 @@ * User Field

export * from "./baseField";
export * from "./baseField.def";
export * from "./fieldAttachments";
export * from "./fieldAttachments.def";
export * from "./fieldBoolean";
export * from "./fieldBoolean.def";
export * from "./fieldChoice";
export * from "./fieldChoice.def";
export * from "./fieldDateTime";
export * from "./fieldDateTime.def";
export * from "./fieldLookup";
export * from "./fieldLookup.def";
export * from "./fieldManagedMetadata";
export * from "./fieldManagedMetadata.def";
export * from "./fieldNumber";
export * from "./fieldNumber.def";
export * from "./fieldText";
export * from "./fieldText.def";
export * from "./fieldUrl";
export * from "./fieldUrl.def";
export * from "./fieldUser";
export * from "./fieldUser.def";
import * as Types from "./types";
export { Types };

@@ -17,2 +17,4 @@ "use strict";

__export(require("./fieldUser"));
var Types = require("./types");
exports.Types = Types;
//# sourceMappingURL=index.js.map

@@ -7,2 +7,3 @@ import "core-js/es6/map";

import * as WebParts from "./webparts";
export { Components, Fields, WebParts };
import * as Types from "./types";
export { Components, Fields, Types, WebParts };

@@ -12,2 +12,4 @@ "use strict";

exports.WebParts = WebParts;
var Types = require("./types");
exports.Types = Types;
//# sourceMappingURL=index.js.map
export * from "./wp";
export * from "./wp.def";
export * from "./wpList";
export * from "./wpList.def";
export * from "./wpSearch";
export * from "./wpSearch.def";
export * from "./wpTabs";
export * from "./wpTabs.def";
export * from "./wpCfg";
export * from "./wpCfg.def";
export * from "./wpListCfg";
export * from "./wpListCfg.def";
export * from "./wpFieldCfg";
export * from "./wpFieldCfg.def";
export * from "./wpSearchCfg";
export * from "./wpSearchCfg.def";
import * as Types from "./types";
export { Types };

@@ -16,2 +16,4 @@ "use strict";

__export(require("./wpSearchCfg"));
var Types = require("./types");
exports.Types = Types;
//# sourceMappingURL=index.js.map

@@ -1,2 +0,2 @@

import { IFabricWebPartProps } from ".";
import { IFabricWebPartProps } from "./types";
/**

@@ -3,0 +3,0 @@ * Fabric Web Part

@@ -5,3 +5,3 @@ /// <reference types="react" />

import { Panel } from '../components';
import { IWebPartCfgPanel, IWebPartCfgProps, IWebPartCfgState } from ".";
import { IWebPartCfgPanel, IWebPartCfgProps, IWebPartCfgState } from "./types";
/**

@@ -8,0 +8,0 @@ * Web Part Configuration Panel

/// <reference types="react" />
import { Label, TagPicker, ITag } from "office-ui-fabric-react";
import { WebPartListCfg, IWebPartFieldCfgPanel, IWebPartFieldCfgProps, IWebPartFieldCfgState } from ".";
import { IWebPartFieldCfgPanel, IWebPartFieldCfgProps, IWebPartFieldCfgState } from "./types";
import { WebPartListCfg } from ".";
/**

@@ -5,0 +6,0 @@ * WebPart Field Configuration Panel

/// <reference types="react" />
import * as React from "react";
import { Types } from "gd-sprest";
import { IWebPartListItem, IWebPartListProps, IWebPartListState } from ".";
import { IWebPartListItem, IWebPartListProps, IWebPartListState } from "./types";
/**

@@ -6,0 +6,0 @@ * WebPart List

@@ -5,3 +5,4 @@ /// <reference types="react" />

import { Dropdown, IDropdownOption, PrimaryButton, TextField } from "office-ui-fabric-react";
import { WebPartCfgPanel, IWebPartListCfgPanel, IWebPartListCfg, IWebPartListCfgProps, IWebPartListCfgState } from ".";
import { IWebPartListCfgPanel, IWebPartListCfg, IWebPartListCfgProps, IWebPartListCfgState } from "./types";
import { WebPartCfgPanel } from ".";
/**

@@ -8,0 +9,0 @@ * WebPart List Configuration Panel

/// <reference types="react" />
import { WebPartList, IWebPartSearchProps, IWebPartSearchState } from ".";
import { IWebPartSearchProps, IWebPartSearchState } from "./types";
import { WebPartList } from ".";
/**

@@ -4,0 +5,0 @@ * WebPart Search

/// <reference types="react" />
import { ITag } from "office-ui-fabric-react";
import { WebPartFieldCfg, IWebPartSearchCfgProps, IWebPartSearchCfgState } from ".";
import { IWebPartSearchCfgProps, IWebPartSearchCfgState } from "./types";
import { WebPartFieldCfg } from ".";
/**

@@ -5,0 +6,0 @@ * WebPart Search Configuration Panel

/// <reference types="react" />
import * as React from "react";
import { IWebPartTabsProps, IWebPartTabsState } from ".";
import { IWebPartTabsProps, IWebPartTabsState } from "./types";
/**

@@ -5,0 +5,0 @@ * WebPart Tabs

{
"name": "gd-sprest-react",
"version": "2.8.6",
"version": "2.8.7",
"description": "SharePoint react components.",

@@ -5,0 +5,0 @@ "main": "build/index.js",

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