@selkirk-systems/attachments 1.0.7 → 1.0.10
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.
- package/dist/components/Icons/HTMLFileTypeImage.js +1 -0
- package/dist/components/Icons/JSONFileTypeImage.js +1 -0
- package/dist/components/Icons/PDFFileTypeImage.js +1 -0
- package/dist/components/Icons/PowerPointTypeImage.js +1 -0
- package/dist/components/Icons/TextFileTypeImage.js +1 -0
- package/dist/components/Icons/UnknownFileTypeImage.js +1 -0
- package/dist/components/Icons/WordFileTypeImage.js +1 -0
- package/dist/components/Icons/ZipFileTypeImage.js +1 -0
- package/lib/components/Icons/HTMLFileTypeImage.jsx +1 -0
- package/lib/components/Icons/JSONFileTypeImage.jsx +1 -0
- package/lib/components/Icons/PDFFileTypeImage.jsx +1 -1
- package/lib/components/Icons/PowerPointTypeImage.jsx +1 -0
- package/lib/components/Icons/TextFileTypeImage.jsx +1 -0
- package/lib/components/Icons/UnknownFileTypeImage.jsx +1 -0
- package/lib/components/Icons/WordFileTypeImage.jsx +1 -0
- package/lib/components/Icons/ZipFileTypeImage.jsx +1 -0
- package/package.json +3 -3
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
2
|
import SRC from '../../img/html-filetype.png';
|
|
3
|
+
import React from "react";
|
|
3
4
|
const HTMLFileTypeImage = props => /*#__PURE__*/React.createElement("img", _extends({
|
|
4
5
|
alt: "HTML",
|
|
5
6
|
src: SRC
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
2
|
import SRC from '../../img/json-filetype.png';
|
|
3
|
+
import React from "react";
|
|
3
4
|
const JsonFileTypeImage = props => /*#__PURE__*/React.createElement("img", _extends({
|
|
4
5
|
alt: "JSON",
|
|
5
6
|
src: SRC
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
2
|
import SRC from '../../img/pdf-filetype.png';
|
|
3
|
+
import React from "react";
|
|
3
4
|
const PDFMimeTypeImage = props => /*#__PURE__*/React.createElement("img", _extends({
|
|
4
5
|
alt: "PDF",
|
|
5
6
|
src: SRC
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
2
|
import SRC from '../../img/PowerPoint-filetype.png';
|
|
3
|
+
import React from "react";
|
|
3
4
|
const PowerPointTypeImage = props => /*#__PURE__*/React.createElement("img", _extends({
|
|
4
5
|
alt: "Power Point",
|
|
5
6
|
src: SRC
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
2
|
import SRC from '../../img/txt-filetype.png';
|
|
3
|
+
import React from "react";
|
|
3
4
|
const TextFileTypeImage = props => /*#__PURE__*/React.createElement("img", _extends({
|
|
4
5
|
alt: "Text",
|
|
5
6
|
src: SRC
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
2
|
import SRC from '../../img/unknown-filetype.png';
|
|
3
|
+
import React from "react";
|
|
3
4
|
const UnknownFileTypeImage = props => /*#__PURE__*/React.createElement("img", _extends({
|
|
4
5
|
alt: "Unknown",
|
|
5
6
|
src: SRC
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
2
|
import SRC from '../../img/word-filetype.png';
|
|
3
|
+
import React from "react";
|
|
3
4
|
const WordFileTypeImage = props => /*#__PURE__*/React.createElement("img", _extends({
|
|
4
5
|
alt: "Word",
|
|
5
6
|
src: SRC
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
2
|
import SRC from '../../img/zip-filetype.png';
|
|
3
|
+
import React from "react";
|
|
3
4
|
const ZipFileTypeImage = props => /*#__PURE__*/React.createElement("img", _extends({
|
|
4
5
|
alt: "Zip",
|
|
5
6
|
src: SRC
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@selkirk-systems/attachments",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"description": "Attachment and photo upload components for Selkirk Systems web projects",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "Marcos Bernal <mbernal@selkirksystems.com>",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@selkirk-systems/layout": "^1.3.1",
|
|
37
37
|
"@selkirk-systems/selkirk-components": "^1.0.0",
|
|
38
38
|
"@selkirk-systems/selkirk-utils": "^1.0.0",
|
|
39
|
-
"@selkirk-systems/state-management": "
|
|
39
|
+
"@selkirk-systems/state-management": ">=1.4.0",
|
|
40
40
|
"lucide-react": "*",
|
|
41
41
|
"primereact": "^10.9.4",
|
|
42
42
|
"react": ">=18.0.0"
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"clsx": "^2.1.1",
|
|
47
47
|
"memoizee": "*"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "85e6a2cad8cccb6766e5befe8d4e74c2dd1ef2b8"
|
|
50
50
|
}
|