@ixfx/ui 0.38.0 → 0.38.1
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/src/rx/dom.js +2 -2
- package/package.json +6 -6
package/dist/src/rx/dom.js
CHANGED
@@ -3,7 +3,7 @@ import { resolveEl } from "@ixfx/dom";
|
|
3
3
|
import { getPathsAndData } from "@ixfx/core/records";
|
4
4
|
import * as Rx from "@ixfx/rx";
|
5
5
|
import * as RxFrom from "@ixfx/rx/from";
|
6
|
-
import {
|
6
|
+
import { findBySomeKey as mapFindBySomeKey } from "@ixfx/core/maps";
|
7
7
|
import { afterMatch, beforeMatch, stringSegmentsWholeToEnd, stringSegmentsWholeToFirst } from "@ixfx/core/text";
|
8
8
|
import { QueueMutable } from "@ixfx/collections";
|
9
9
|
/**
|
@@ -565,7 +565,7 @@ export const elements = (source, options) => {
|
|
565
565
|
});
|
566
566
|
}
|
567
567
|
const findBind = (path) => {
|
568
|
-
const bind =
|
568
|
+
const bind = mapFindBySomeKey(binds, stringSegmentsWholeToEnd(path));
|
569
569
|
if (bind !== undefined)
|
570
570
|
return bind;
|
571
571
|
if (!path.includes(`.`))
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ixfx/ui",
|
3
|
-
"version": "0.38.
|
3
|
+
"version": "0.38.1",
|
4
4
|
"license": "MIT",
|
5
5
|
"type": "module",
|
6
6
|
"sideEffects": false,
|
@@ -14,11 +14,11 @@
|
|
14
14
|
}
|
15
15
|
},
|
16
16
|
"dependencies": {
|
17
|
-
"@ixfx/core": "^0.
|
18
|
-
"@ixfx/collections": "^0.
|
19
|
-
"@ixfx/
|
20
|
-
"@ixfx/
|
21
|
-
"@ixfx/
|
17
|
+
"@ixfx/core": "^0.39.0",
|
18
|
+
"@ixfx/collections": "^0.39.0",
|
19
|
+
"@ixfx/dom": "^0.39.0",
|
20
|
+
"@ixfx/visual": "^0.38.1",
|
21
|
+
"@ixfx/rx": "^0.38.1"
|
22
22
|
},
|
23
23
|
"main": "dist/src/index.js"
|
24
24
|
}
|