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.
- package/dist/cjs/index.js +161 -6
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Modal.d.ts +1 -0
- package/dist/cjs/types/components/Shimmer.d.ts +13 -0
- package/dist/cjs/types/helpers/asyncArrayFunctions/everyAsync.d.ts +13 -0
- package/dist/cjs/types/helpers/asyncArrayFunctions/everyAsync.test.d.ts +1 -0
- package/dist/cjs/types/helpers/asyncArrayFunctions/filterAsync.d.ts +13 -0
- package/dist/cjs/types/helpers/asyncArrayFunctions/filterAsync.test.d.ts +1 -0
- package/dist/cjs/types/helpers/asyncArrayFunctions/forEachAsync.d.ts +10 -0
- package/dist/cjs/types/helpers/asyncArrayFunctions/forEachAsync.test.d.ts +1 -0
- package/dist/cjs/types/helpers/asyncArrayFunctions/mapAsync.d.ts +11 -0
- package/dist/cjs/types/helpers/asyncArrayFunctions/mapAsync.test.d.ts +1 -0
- package/dist/cjs/types/helpers/asyncArrayFunctions/someAsync.d.ts +13 -0
- package/dist/cjs/types/helpers/asyncArrayFunctions/someAsync.test.d.ts +1 -0
- package/dist/cjs/types/index.d.ts +7 -1
- package/dist/esm/index.js +157 -7
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Modal.d.ts +1 -0
- package/dist/esm/types/components/Shimmer.d.ts +13 -0
- package/dist/esm/types/helpers/asyncArrayFunctions/everyAsync.d.ts +13 -0
- package/dist/esm/types/helpers/asyncArrayFunctions/everyAsync.test.d.ts +1 -0
- package/dist/esm/types/helpers/asyncArrayFunctions/filterAsync.d.ts +13 -0
- package/dist/esm/types/helpers/asyncArrayFunctions/filterAsync.test.d.ts +1 -0
- package/dist/esm/types/helpers/asyncArrayFunctions/forEachAsync.d.ts +10 -0
- package/dist/esm/types/helpers/asyncArrayFunctions/forEachAsync.test.d.ts +1 -0
- package/dist/esm/types/helpers/asyncArrayFunctions/mapAsync.d.ts +11 -0
- package/dist/esm/types/helpers/asyncArrayFunctions/mapAsync.test.d.ts +1 -0
- package/dist/esm/types/helpers/asyncArrayFunctions/someAsync.d.ts +13 -0
- package/dist/esm/types/helpers/asyncArrayFunctions/someAsync.test.d.ts +1 -0
- package/dist/esm/types/index.d.ts +7 -1
- package/dist/index.d.ts +62 -1
- package/package.json +1 -1
- package/src/components/Modal.tsx +4 -1
- package/src/components/Shimmer.tsx +153 -0
- package/src/helpers/asyncArrayFunctions/everyAsync.test.ts +114 -0
- package/src/helpers/asyncArrayFunctions/everyAsync.ts +51 -0
- package/src/helpers/asyncArrayFunctions/filterAsync.test.ts +126 -0
- package/src/helpers/asyncArrayFunctions/filterAsync.ts +50 -0
- package/src/helpers/asyncArrayFunctions/forEachAsync.test.ts +136 -0
- package/src/helpers/asyncArrayFunctions/forEachAsync.ts +40 -0
- package/src/helpers/asyncArrayFunctions/mapAsync.test.ts +125 -0
- package/src/helpers/asyncArrayFunctions/mapAsync.ts +46 -0
- package/src/helpers/asyncArrayFunctions/someAsync.test.ts +92 -0
- package/src/helpers/asyncArrayFunctions/someAsync.ts +49 -0
- package/src/helpers/canReviewLogs.ts +1 -1
- package/src/helpers/getTimeInfoInET.ts +3 -3
- 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,
|