@inntechcorp/it-design 2.0.169 → 2.0.170
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/helpers/index.d.ts +2 -0
- package/dist/helpers/translate/TranslateCell.d.ts +1 -1
- package/dist/helpers/unit/AddDefaultUnit.d.ts +1 -0
- package/dist/index.cjs.js +31 -31
- package/dist/index.d.ts +7 -1
- package/dist/index.esm.js +31 -31
- package/dist/{output-Co64jyKL.css → output-DCvuWNga.css} +29 -29
- package/dist/{output-DOIezTPH.css → output-DjWTgiS1.css} +55 -55
- package/dist/types/UploadProps.d.ts +2 -0
- package/dist/upload/styled.d.ts +2 -0
- package/dist/utils/GetSizeBySizeSlug.d.ts +1 -1
- package/package.json +1 -1
package/dist/helpers/index.d.ts
CHANGED
|
@@ -26,3 +26,5 @@ export { default as FormatDateTime } from './datetime/FormatDateTime';
|
|
|
26
26
|
export { default as FormatSimpleDate } from './datetime/FormatSimpleDate';
|
|
27
27
|
export { default as FormatSimpleDateTime } from './datetime/FormatSimpleDateTime';
|
|
28
28
|
export { default as FormatTime } from './datetime/FormatTime';
|
|
29
|
+
export { default as TranslateCell } from './translate/TranslateCell';
|
|
30
|
+
export { default as AddDefaultUnit } from './unit/AddDefaultUnit';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export default function TranslateCell(cell: string, options?: any): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function AddDefaultUnit(value: string | number): string;
|