dce-reactkit 3.7.2-beta.1 → 3.7.4

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 (47) hide show
  1. package/dist/cjs/index.js +161 -6
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/components/Modal.d.ts +1 -0
  4. package/dist/cjs/types/components/Shimmer.d.ts +13 -0
  5. package/dist/cjs/types/helpers/asyncArrayFunctions/everyAsync.d.ts +13 -0
  6. package/dist/cjs/types/helpers/asyncArrayFunctions/everyAsync.test.d.ts +1 -0
  7. package/dist/cjs/types/helpers/asyncArrayFunctions/filterAsync.d.ts +13 -0
  8. package/dist/cjs/types/helpers/asyncArrayFunctions/filterAsync.test.d.ts +1 -0
  9. package/dist/cjs/types/helpers/asyncArrayFunctions/forEachAsync.d.ts +10 -0
  10. package/dist/cjs/types/helpers/asyncArrayFunctions/forEachAsync.test.d.ts +1 -0
  11. package/dist/cjs/types/helpers/asyncArrayFunctions/mapAsync.d.ts +11 -0
  12. package/dist/cjs/types/helpers/asyncArrayFunctions/mapAsync.test.d.ts +1 -0
  13. package/dist/cjs/types/helpers/asyncArrayFunctions/someAsync.d.ts +13 -0
  14. package/dist/cjs/types/helpers/asyncArrayFunctions/someAsync.test.d.ts +1 -0
  15. package/dist/cjs/types/index.d.ts +7 -1
  16. package/dist/esm/index.js +157 -7
  17. package/dist/esm/index.js.map +1 -1
  18. package/dist/esm/types/components/Modal.d.ts +1 -0
  19. package/dist/esm/types/components/Shimmer.d.ts +13 -0
  20. package/dist/esm/types/helpers/asyncArrayFunctions/everyAsync.d.ts +13 -0
  21. package/dist/esm/types/helpers/asyncArrayFunctions/everyAsync.test.d.ts +1 -0
  22. package/dist/esm/types/helpers/asyncArrayFunctions/filterAsync.d.ts +13 -0
  23. package/dist/esm/types/helpers/asyncArrayFunctions/filterAsync.test.d.ts +1 -0
  24. package/dist/esm/types/helpers/asyncArrayFunctions/forEachAsync.d.ts +10 -0
  25. package/dist/esm/types/helpers/asyncArrayFunctions/forEachAsync.test.d.ts +1 -0
  26. package/dist/esm/types/helpers/asyncArrayFunctions/mapAsync.d.ts +11 -0
  27. package/dist/esm/types/helpers/asyncArrayFunctions/mapAsync.test.d.ts +1 -0
  28. package/dist/esm/types/helpers/asyncArrayFunctions/someAsync.d.ts +13 -0
  29. package/dist/esm/types/helpers/asyncArrayFunctions/someAsync.test.d.ts +1 -0
  30. package/dist/esm/types/index.d.ts +7 -1
  31. package/dist/index.d.ts +62 -1
  32. package/package.json +1 -1
  33. package/src/components/Modal.tsx +4 -1
  34. package/src/components/Shimmer.tsx +153 -0
  35. package/src/helpers/asyncArrayFunctions/everyAsync.test.ts +114 -0
  36. package/src/helpers/asyncArrayFunctions/everyAsync.ts +51 -0
  37. package/src/helpers/asyncArrayFunctions/filterAsync.test.ts +126 -0
  38. package/src/helpers/asyncArrayFunctions/filterAsync.ts +50 -0
  39. package/src/helpers/asyncArrayFunctions/forEachAsync.test.ts +136 -0
  40. package/src/helpers/asyncArrayFunctions/forEachAsync.ts +40 -0
  41. package/src/helpers/asyncArrayFunctions/mapAsync.test.ts +125 -0
  42. package/src/helpers/asyncArrayFunctions/mapAsync.ts +46 -0
  43. package/src/helpers/asyncArrayFunctions/someAsync.test.ts +92 -0
  44. package/src/helpers/asyncArrayFunctions/someAsync.ts +49 -0
  45. package/src/helpers/canReviewLogs.ts +1 -1
  46. package/src/helpers/getTimeInfoInET.ts +3 -3
  47. package/src/index.ts +12 -0
package/src/index.ts CHANGED
@@ -85,6 +85,11 @@ import makeLinksClickable from './helpers/makeLinksClickable';
85
85
  import combineClassNames from './helpers/combineClassNames';
86
86
  import prefixWithAOrAn from './helpers/prefixWithAOrAn';
87
87
  import useForceRender from './helpers/useForceRender';
88
+ import everyAsync from './helpers/asyncArrayFunctions/everyAsync';
89
+ import filterAsync from './helpers/asyncArrayFunctions/filterAsync';
90
+ import forEachAsync from './helpers/asyncArrayFunctions/forEachAsync';
91
+ import mapAsync from './helpers/asyncArrayFunctions/mapAsync';
92
+ import someAsync from './helpers/asyncArrayFunctions/someAsync';
88
93
 
89
94
  // Import types
90
95
  import ModalButtonType from './types/ModalButtonType';
@@ -100,6 +105,7 @@ import LogSource from './types/LogSource';
100
105
  import LogAction from './types/LogAction';
101
106
  import LogBuiltInMetadata from './types/LogBuiltInMetadata';
102
107
  import LogMetadataType from './types/LogMetadataType';
108
+ import LogFunction from './types/LogFunction';
103
109
  import IntelliTableColumn from './types/IntelliTableColumn';
104
110
 
105
111
  // Component-specific-types
@@ -180,6 +186,11 @@ export {
180
186
  idify,
181
187
  makeLinksClickable,
182
188
  prefixWithAOrAn,
189
+ everyAsync,
190
+ filterAsync,
191
+ forEachAsync,
192
+ mapAsync,
193
+ someAsync,
183
194
  // Client helpers
184
195
  initClient,
185
196
  visitServerEndpoint,
@@ -209,6 +220,7 @@ export {
209
220
  LogAction,
210
221
  LogBuiltInMetadata,
211
222
  LogMetadataType,
223
+ LogFunction,
212
224
  IntelliTableColumn,
213
225
  // Component-specific-types
214
226
  PickableItem,