@inntechcorp/it-design 2.0.109 → 2.0.111
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/datetime/FormatDate.d.ts +2 -0
- package/dist/helpers/datetime/FormatDateTime.d.ts +2 -0
- package/dist/helpers/datetime/FormatSimpleDate.d.ts +2 -0
- package/dist/helpers/datetime/FormatSimpleDateTime.d.ts +2 -0
- package/dist/helpers/datetime/FormatTime.d.ts +2 -0
- package/dist/helpers/index.d.ts +5 -0
- package/dist/index.cjs.js +123 -117
- package/dist/index.d.ts +11 -1
- package/dist/index.esm.js +123 -117
- package/dist/{output-Co64jyKL.css → output-DOIezTPH.css} +26 -26
- package/dist/{output-DCvuWNga.css → output-DjWTgiS1.css} +26 -26
- package/dist/utils/GetSizeBySizeSlug.d.ts +1 -1
- package/package.json +1 -1
package/dist/helpers/index.d.ts
CHANGED
|
@@ -21,3 +21,8 @@ export { default as FormatBytes } from './binary/FormatBytes';
|
|
|
21
21
|
export { default as GetTypeByFileType } from './binary/GetTypeByFileType';
|
|
22
22
|
export { default as Wait } from './promise/Wait';
|
|
23
23
|
export { default as SVGLoader } from './svg/SVGLoader';
|
|
24
|
+
export { default as FormatDate } from './datetime/FormatDate';
|
|
25
|
+
export { default as FormatDateTime } from './datetime/FormatDateTime';
|
|
26
|
+
export { default as FormatSimpleDate } from './datetime/FormatSimpleDate';
|
|
27
|
+
export { default as FormatSimpleDateTime } from './datetime/FormatSimpleDateTime';
|
|
28
|
+
export { default as FormatTime } from './datetime/FormatTime';
|