Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@progress/kendo-react-upload

Package Overview
Dependencies
Maintainers
1
Versions
1096
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@progress/kendo-react-upload - npm Package Compare versions

Comparing version 3.3.0-dev.201906251221 to 3.3.0-dev.201906270638

2

dist/es/interfaces/UploadAdditionalData.d.ts
/**
* Represents the additional data that is sent as key-value pair.
* Represents the additional data that is sent as a key-value pair.
*/

@@ -4,0 +4,0 @@ export interface UploadAdditionalData {

@@ -18,3 +18,3 @@ import { UploadHttpHeaders } from './UploadHttpHeaders';

* Configures whether credentials (cookies, headers) will be sent for cross-site requests.
* The default values is `true`. Setting `withCredentials` has no effect on same-site requests.
* Defaults to `true`. Setting `withCredentials` has no effect on same-site requests.
* To add credentials to the request, use the `saveHeaders` or `removeHeaders` property.

@@ -33,3 +33,3 @@ */

/**
* Sets the [`request method`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods) of the upload request.
* Sets the [`request`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods) method of the upload request.
* Defaults to `POST`.

@@ -40,9 +40,8 @@ */

* Sets the URL of the endpoint for the upload request.
* The request [`FormData`](https://developer.mozilla.org/en-US/docs/Web/API/FormData) key is named after
* the `saveField` property.
* It contains the list of files that will be uploaded.
* The requested [`FormData`](https://developer.mozilla.org/en-US/docs/Web/API/FormData) key is named after
* the `saveField` property and contains the list of files that will be uploaded.
*/
saveUrl?: string;
/**
* Sets the expected [`response type`](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/responseType)
* Sets the expected [response type](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/responseType)
* of the server.

@@ -64,3 +63,3 @@ * Used to parse the response appropriately.

/**
* Sets the [`request method`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods) of the `remove` request.
* Sets the [request method](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods) of the `remove` request.
* Defaults to `POST`.

@@ -67,0 +66,0 @@ */

@@ -7,3 +7,4 @@ import { UploadFileStatus } from './UploadFileStatus';

/**
* The unique identifier of the group (batch) with one or more files. Should be set for initial list of files.
* The unique identifier of the group (batch) with one or more files.
* Has to be set for the initial list of files.
*/

@@ -24,3 +25,3 @@ uid: string;

/**
* A list containing the validation errors (if any).
* A list which contains the validation errors (if any).
*/

@@ -30,4 +31,4 @@ validationErrors?: Array<string>;

* The current state of the file&mdash;`Failed`, `Selected`, `Uploaded`, or `Uploading`.
* `Initial` is a special value for `FileState`.
* It is automatically applied to initial files without you having to explicitly set their state.
* `Initial` is a special value for `FileState` and is
* automatically applied to initial files without you having to explicitly set their state.
*/

@@ -40,5 +41,5 @@ status: UploadFileStatus;

/**
* Get raw file instance.
* Gets the raw file instance.
*/
getRawFile?: () => File;
}

@@ -6,3 +6,3 @@ /**

/**
* The file upload process has failed.
* Indicates that the file upload process has failed.
*/

@@ -9,0 +9,0 @@ UploadFailed = 0,

@@ -7,3 +7,3 @@ /**

/**
* The file upload process has failed.
* Indicates that the file upload process has failed.
*/

@@ -10,0 +10,0 @@ UploadFileStatus[UploadFileStatus["UploadFailed"] = 0] = "UploadFailed";

@@ -13,5 +13,5 @@ import { BaseUploadEvent } from './BaseUploadEvent';

/**
* The list of affected files.
* The list of the affected files.
*/
affectedFiles: Array<UploadFileInfo>;
}

@@ -14,9 +14,9 @@ import { BaseUploadEvent } from './BaseUploadEvent';

/**
* The list of affected files.
* The list of the affected files.
*/
affectedFiles: Array<UploadFileInfo>;
/**
* The server response, if available.
* The server response (if available).
*/
response?: UploadResponse;
}

@@ -14,9 +14,9 @@ import { BaseUploadEvent } from './BaseUploadEvent';

/**
* The list of affected files.
* The list of the affected files.
*/
affectedFiles: Array<UploadFileInfo>;
/**
* The server response, if available.
* The server response (if available).
*/
response?: UploadResponse;
}

@@ -18,3 +18,3 @@ /**

/**
* The headers that the server responded with
* The headers with which the server responded.
*/

@@ -21,0 +21,0 @@ headers: any;

/**
* Represents the additional data that is sent as key-value pair.
* Represents the additional data that is sent as a key-value pair.
*/

@@ -4,0 +4,0 @@ export interface UploadAdditionalData {

@@ -18,3 +18,3 @@ import { UploadHttpHeaders } from './UploadHttpHeaders';

* Configures whether credentials (cookies, headers) will be sent for cross-site requests.
* The default values is `true`. Setting `withCredentials` has no effect on same-site requests.
* Defaults to `true`. Setting `withCredentials` has no effect on same-site requests.
* To add credentials to the request, use the `saveHeaders` or `removeHeaders` property.

@@ -33,3 +33,3 @@ */

/**
* Sets the [`request method`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods) of the upload request.
* Sets the [`request`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods) method of the upload request.
* Defaults to `POST`.

@@ -40,9 +40,8 @@ */

* Sets the URL of the endpoint for the upload request.
* The request [`FormData`](https://developer.mozilla.org/en-US/docs/Web/API/FormData) key is named after
* the `saveField` property.
* It contains the list of files that will be uploaded.
* The requested [`FormData`](https://developer.mozilla.org/en-US/docs/Web/API/FormData) key is named after
* the `saveField` property and contains the list of files that will be uploaded.
*/
saveUrl?: string;
/**
* Sets the expected [`response type`](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/responseType)
* Sets the expected [response type](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/responseType)
* of the server.

@@ -64,3 +63,3 @@ * Used to parse the response appropriately.

/**
* Sets the [`request method`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods) of the `remove` request.
* Sets the [request method](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods) of the `remove` request.
* Defaults to `POST`.

@@ -67,0 +66,0 @@ */

@@ -7,3 +7,4 @@ import { UploadFileStatus } from './UploadFileStatus';

/**
* The unique identifier of the group (batch) with one or more files. Should be set for initial list of files.
* The unique identifier of the group (batch) with one or more files.
* Has to be set for the initial list of files.
*/

@@ -24,3 +25,3 @@ uid: string;

/**
* A list containing the validation errors (if any).
* A list which contains the validation errors (if any).
*/

@@ -30,4 +31,4 @@ validationErrors?: Array<string>;

* The current state of the file&mdash;`Failed`, `Selected`, `Uploaded`, or `Uploading`.
* `Initial` is a special value for `FileState`.
* It is automatically applied to initial files without you having to explicitly set their state.
* `Initial` is a special value for `FileState` and is
* automatically applied to initial files without you having to explicitly set their state.
*/

@@ -40,5 +41,5 @@ status: UploadFileStatus;

/**
* Get raw file instance.
* Gets the raw file instance.
*/
getRawFile?: () => File;
}

@@ -6,3 +6,3 @@ /**

/**
* The file upload process has failed.
* Indicates that the file upload process has failed.
*/

@@ -9,0 +9,0 @@ UploadFailed = 0,

@@ -9,3 +9,3 @@ "use strict";

/**
* The file upload process has failed.
* Indicates that the file upload process has failed.
*/

@@ -12,0 +12,0 @@ UploadFileStatus[UploadFileStatus["UploadFailed"] = 0] = "UploadFailed";

@@ -13,5 +13,5 @@ import { BaseUploadEvent } from './BaseUploadEvent';

/**
* The list of affected files.
* The list of the affected files.
*/
affectedFiles: Array<UploadFileInfo>;
}

@@ -14,9 +14,9 @@ import { BaseUploadEvent } from './BaseUploadEvent';

/**
* The list of affected files.
* The list of the affected files.
*/
affectedFiles: Array<UploadFileInfo>;
/**
* The server response, if available.
* The server response (if available).
*/
response?: UploadResponse;
}

@@ -14,9 +14,9 @@ import { BaseUploadEvent } from './BaseUploadEvent';

/**
* The list of affected files.
* The list of the affected files.
*/
affectedFiles: Array<UploadFileInfo>;
/**
* The server response, if available.
* The server response (if available).
*/
response?: UploadResponse;
}

@@ -18,3 +18,3 @@ /**

/**
* The headers that the server responded with
* The headers with which the server responded.
*/

@@ -21,0 +21,0 @@ headers: any;

{
"name": "@progress/kendo-react-upload",
"version": "3.3.0-dev.201906251221",
"version": "3.3.0-dev.201906270638",
"description": "KendoReact Upload package",

@@ -37,3 +37,3 @@ "repository": {

"dependencies": {
"@progress/kendo-react-common": "3.3.0-dev.201906251221",
"@progress/kendo-react-common": "3.3.0-dev.201906270638",
"axios": "0.18.0",

@@ -40,0 +40,0 @@ "prop-types": "^15.6.0"

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