@plasmicpkgs/plasmic-rich-components 1.0.106 → 1.0.108

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.
@@ -1311,7 +1311,7 @@ function useSortedFilteredData(data, columns) {
1311
1311
  const finalData = React.useMemo(() => {
1312
1312
  var _a;
1313
1313
  const filtered = (_a = data == null ? void 0 : data.data) == null ? void 0 : _a.filter(
1314
- (row) => fastStringify(Object.values(row)).toLowerCase().includes(search)
1314
+ (row) => fastStringify(Object.values(row)).toLowerCase().includes(search.toLowerCase())
1315
1315
  );
1316
1316
  const sorted = (sortState == null ? void 0 : sortState.sorter.column) ? (
1317
1317
  // We use .sort() rather than sortBy to use localeCompare
@@ -2502,15 +2502,6 @@ function useRoleDefinitions(data, props) {
2502
2502
  (f) => f.role && f.role !== "unset" && !props[f.role]
2503
2503
  )
2504
2504
  ];
2505
- console.log("!!derived", {
2506
- minimalFullLengthFieldsWithDefaults,
2507
- minimalFullLengthFields,
2508
- defaultMinimalFullLengthFields,
2509
- mergedFieldsWithDefaults,
2510
- mergedFields,
2511
- defaultMergedFields,
2512
- props
2513
- });
2514
2505
  const roleConfigs = ensure(
2515
2506
  groupBy(mergedFieldsWithDefaults, (f) => f.role)
2516
2507
  );