@inceptionbg/iui 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/index.ts +42 -42
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@inceptionbg/iui",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "UI components, elements & utils for Inception ecosystem",
5
5
  "files": [
6
6
  "src",
7
7
  "./tsconfig.json"
8
8
  ],
9
- "main": "src/src/index.ts",
9
+ "main": "src/index.ts",
10
10
  "scripts": {
11
11
  "build": "rollup -c"
12
12
  },
package/src/index.ts CHANGED
@@ -32,27 +32,27 @@ import type { ISidebarItem } from "./types/ISidebar";
32
32
  import type { ISelectData } from "./types/ISelect";
33
33
  // import type { IFormWrapper } from "./Elements/Wrappers/FormWrapper";
34
34
  // import type { IPageWrapper } from "./Elements/Wrappers/PageWrapper";
35
- // import {
36
- // checkIfExpired,
37
- // dateAddDays,
38
- // formatDate,
39
- // formatDateAndTime,
40
- // formatTime,
41
- // formatYearMonth,
42
- // getCurrentDateFormattedYMD,
43
- // getDaysLeft,
44
- // } from "./utils/DateUtils";
45
- // import { formatCurrency, formatCurrencyNoDecimals } from "./utils/NumberUtils";
46
- // // // import { apiResponseHandler } from "./utils/ApiResponseHandler";
47
- // // import { toastError, toastSuccess } from "./utils/Toasts";
48
- // import { maxChar } from "./utils/StringUtils";
49
- // import {
50
- // deleteEmptyProps,
51
- // deleteEmptyPropsIncludingArray,
52
- // deleteProps,
53
- // getActiveFilterNumber,
54
- // getVisibleColumnsIds,
55
- // } from "./utils/ObjectUtils";
35
+ import {
36
+ checkIfExpired,
37
+ dateAddDays,
38
+ formatDate,
39
+ formatDateAndTime,
40
+ formatTime,
41
+ formatYearMonth,
42
+ getCurrentDateFormattedYMD,
43
+ getDaysLeft,
44
+ } from "./utils/DateUtils";
45
+ import { formatCurrency, formatCurrencyNoDecimals } from "./utils/NumberUtils";
46
+ // // import { apiResponseHandler } from "./utils/ApiResponseHandler";
47
+ // import { toastError, toastSuccess } from "./utils/Toasts";
48
+ import { maxChar } from "./utils/StringUtils";
49
+ import {
50
+ deleteEmptyProps,
51
+ deleteEmptyPropsIncludingArray,
52
+ deleteProps,
53
+ getActiveFilterNumber,
54
+ getVisibleColumnsIds,
55
+ } from "./utils/ObjectUtils";
56
56
  import { Accordions } from "./Elements/Accordions/Accordions";
57
57
  import { Alert } from "./Elements/Alert/Alert";
58
58
  // import { NotificationBadge } from "./Elements/Badge/NotificationBadge";
@@ -161,26 +161,26 @@ export {
161
161
  // IPageWrapper,
162
162
  };
163
163
 
164
- // export {
165
- // checkIfExpired,
166
- // dateAddDays,
167
- // formatDate,
168
- // formatDateAndTime,
169
- // formatTime,
170
- // formatYearMonth,
171
- // getCurrentDateFormattedYMD,
172
- // getDaysLeft,
173
- // formatCurrency,
174
- // formatCurrencyNoDecimals,
175
- // deleteEmptyProps,
176
- // deleteEmptyPropsIncludingArray,
177
- // deleteProps,
178
- // getActiveFilterNumber,
179
- // getVisibleColumnsIds,
180
- // // apiResponseHandler,
181
- // // toastError,
182
- // // toastSuccess,
183
- // maxChar,
184
- // };
164
+ export {
165
+ checkIfExpired,
166
+ dateAddDays,
167
+ formatDate,
168
+ formatDateAndTime,
169
+ formatTime,
170
+ formatYearMonth,
171
+ getCurrentDateFormattedYMD,
172
+ getDaysLeft,
173
+ formatCurrency,
174
+ formatCurrencyNoDecimals,
175
+ deleteEmptyProps,
176
+ deleteEmptyPropsIncludingArray,
177
+ deleteProps,
178
+ getActiveFilterNumber,
179
+ getVisibleColumnsIds,
180
+ // apiResponseHandler,
181
+ // toastError,
182
+ // toastSuccess,
183
+ maxChar,
184
+ };
185
185
 
186
186
  export { clsx, moment, FontAwesomeIcon };