sprintify-ui 0.10.53 → 0.10.54
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/sprintify-ui.es.js
CHANGED
|
@@ -28813,6 +28813,7 @@ export {
|
|
|
28813
28813
|
Ci as disableScroll,
|
|
28814
28814
|
Ei as enableScroll,
|
|
28815
28815
|
Xa as fileSizeFormat,
|
|
28816
|
+
Or as getColorConfig,
|
|
28816
28817
|
VS as messages,
|
|
28817
28818
|
U0 as resizeImageFromURI,
|
|
28818
28819
|
W0 as toHumanList,
|
|
@@ -3,4 +3,5 @@ import fileSizeFormat from './fileSizeFormat';
|
|
|
3
3
|
import resizeImageFromURI from './resizeImageFromURI';
|
|
4
4
|
import { disableScroll, enableScroll } from './scrollPreventer';
|
|
5
5
|
import { blobToBase64, validateBase64, base64ToBlob } from './blob';
|
|
6
|
-
|
|
6
|
+
import { getColorConfig } from './colors';
|
|
7
|
+
export { toHumanList, fileSizeFormat, disableScroll, enableScroll, resizeImageFromURI, blobToBase64, validateBase64, base64ToBlob, getColorConfig, };
|
package/package.json
CHANGED
package/src/utils/index.ts
CHANGED
|
@@ -3,6 +3,7 @@ import fileSizeFormat from './fileSizeFormat';
|
|
|
3
3
|
import resizeImageFromURI from './resizeImageFromURI';
|
|
4
4
|
import { disableScroll, enableScroll } from './scrollPreventer';
|
|
5
5
|
import { blobToBase64, validateBase64, base64ToBlob } from './blob';
|
|
6
|
+
import { getColorConfig } from './colors';
|
|
6
7
|
|
|
7
8
|
export {
|
|
8
9
|
toHumanList,
|
|
@@ -13,4 +14,5 @@ export {
|
|
|
13
14
|
blobToBase64,
|
|
14
15
|
validateBase64,
|
|
15
16
|
base64ToBlob,
|
|
17
|
+
getColorConfig,
|
|
16
18
|
};
|