@teselagen/ui 0.8.6-beta.4 → 0.8.6-beta.6
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/DataTable/utils/queryParams.d.ts +13 -2
- package/DataTable/utils/tableQueryParamsToHasuraClauses.d.ts +1 -1
- package/index.cjs.js +42609 -42562
- package/index.d.ts +1 -0
- package/index.es.js +42609 -42562
- package/package.json +1 -1
- package/src/DataTable/utils/filterLocalEntitiesToHasura.js +22 -6
- package/src/DataTable/utils/filterLocalEntitiesToHasura.test.js +19 -1
- package/src/DataTable/utils/queryParams.js +117 -85
- package/src/DataTable/utils/tableQueryParamsToHasuraClauses.js +2 -2
- package/src/DataTable/utils/tableQueryParamsToHasuraClauses.test.js +11 -11
- package/src/index.js +1 -0
- package/src/utils/determineBlackOrWhiteTextColor.js +8 -1
- package/utils/determineBlackOrWhiteTextColor.d.ts +1 -2
package/index.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export { default as IntentText } from './IntentText';
|
|
|
33
33
|
export { default as popoverOverflowModifiers } from './utils/popoverOverflowModifiers';
|
|
34
34
|
export { default as tgFormValues } from './utils/tgFormValues';
|
|
35
35
|
export { default as withStore } from './utils/withStore';
|
|
36
|
+
export { default as determineBlackOrWhiteTextColor } from './utils/determineBlackOrWhiteTextColor';
|
|
36
37
|
export { default as InfoHelper } from './InfoHelper';
|
|
37
38
|
export { default as showConfirmationDialog } from './showConfirmationDialog';
|
|
38
39
|
export { default as showAppSpinner } from './showAppSpinner';
|