@dnncommunity/dnn-elements 0.23.2-beta.1 → 0.23.3-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/components/dnn-image-cropper/types.ts"],"names":[],"mappings":"AAuBC,CAAC","sourcesContent":["export interface ImageCropperResx {\r\n /** The text of the capture button. */\r\n capture?: string,\r\n\r\n /** The text of the Drag and Drop button. */\r\n dragAndDropFile: \"Drag and drop an image\",\r\n\r\n /** The word \"or\" shown between the controls. */\r\n or: \"or\",\r\n\r\n /** The text of the button to take a picture. */\r\n takePicture: \"Take a picture\",\r\n\r\n /** The text of the button to upload an image. */\r\n uploadFile: \"Upload an image\",\r\n\r\n /** The text shown when an image is smaller than the minimum size supported.\r\n * {width} and {height} will be replaced by the minimum width and height. \r\n */\r\n imageTooSmall: \"The image you are attempting to upload does not meet the minimum size requirement of {width} pixels by {height} pixels. Please upload a larger image.\",\r\n\r\n /** The text of the Close button. */\r\n modalCloseText: \"Close\",\r\n};"]}
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/components/dnn-image-cropper/types.ts"],"names":[],"mappings":"AAuBC,CAAC","sourcesContent":["export interface ImageCropperResx {\r\n /** The text of the capture button. */\r\n capture?: string;\r\n\r\n /** The text of the Drag and Drop button. */\r\n dragAndDropFile?: string;\r\n\r\n /** The word \"or\" shown between the controls. */\r\n or?: string;\r\n\r\n /** The text of the button to take a picture. */\r\n takePicture?: string;\r\n\r\n /** The text of the button to upload an image. */\r\n uploadFile?: string;\r\n\r\n /** The text shown when an image is smaller than the minimum size supported.\r\n * {width} and {height} will be replaced by the minimum width and height. \r\n */\r\n imageTooSmall?: string;\r\n\r\n /** The text of the Close button. */\r\n modalCloseText?: string;\r\n};"]}
@@ -2,17 +2,17 @@ export interface ImageCropperResx {
2
2
  /** The text of the capture button. */
3
3
  capture?: string;
4
4
  /** The text of the Drag and Drop button. */
5
- dragAndDropFile: "Drag and drop an image";
5
+ dragAndDropFile?: string;
6
6
  /** The word "or" shown between the controls. */
7
- or: "or";
7
+ or?: string;
8
8
  /** The text of the button to take a picture. */
9
- takePicture: "Take a picture";
9
+ takePicture?: string;
10
10
  /** The text of the button to upload an image. */
11
- uploadFile: "Upload an image";
11
+ uploadFile?: string;
12
12
  /** The text shown when an image is smaller than the minimum size supported.
13
13
  * {width} and {height} will be replaced by the minimum width and height.
14
14
  */
15
- imageTooSmall: "The image you are attempting to upload does not meet the minimum size requirement of {width} pixels by {height} pixels. Please upload a larger image.";
15
+ imageTooSmall?: string;
16
16
  /** The text of the Close button. */
17
- modalCloseText: "Close";
17
+ modalCloseText?: string;
18
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dnncommunity/dnn-elements",
3
- "version": "0.23.2-beta.1",
3
+ "version": "0.23.3-beta.1",
4
4
  "description": "Dnn themed custom elements.",
5
5
  "repository": "https://github.com/dnncommunity/dnn-elements",
6
6
  "homepage": "https://dnncommunity.github.io/dnn-elements",