@getodk/xpath 0.1.2 → 0.2.0

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/README.md CHANGED
@@ -149,7 +149,6 @@ Both evaluator classes provide the following convenience methods:
149
149
 
150
150
  We intend to support the full ODK XForms function library, but support is currently incomplete. The following functions are not yet supported (the `jr:` prefix is used by convention to refer to the JavaRosa namespace):
151
151
 
152
- - `indexed-repeat`
153
152
  - `pulldata`
154
153
  - `jr:choice-name`
155
154
 
@@ -1,6 +1,6 @@
1
1
  {
2
- "_expressionParser-BbqMYp75.js": {
3
- "file": "expressionParser-BbqMYp75.js",
2
+ "_expressionParser-BRkDdCO9.js": {
3
+ "file": "expressionParser-BRkDdCO9.js",
4
4
  "name": "expressionParser"
5
5
  },
6
6
  "src/expressionParser.ts": {
@@ -9,7 +9,7 @@
9
9
  "src": "src/expressionParser.ts",
10
10
  "isEntry": true,
11
11
  "imports": [
12
- "_expressionParser-BbqMYp75.js"
12
+ "_expressionParser-BRkDdCO9.js"
13
13
  ]
14
14
  },
15
15
  "src/index.ts": {
@@ -18,7 +18,7 @@
18
18
  "src": "src/index.ts",
19
19
  "isEntry": true,
20
20
  "imports": [
21
- "_expressionParser-BbqMYp75.js"
21
+ "_expressionParser-BRkDdCO9.js"
22
22
  ]
23
23
  }
24
24
  }
@@ -32,9 +32,9 @@ export declare const staticNamespaces: StaticNamespaces<"xf", "http://www.w3.org
32
32
  }>;
33
33
  export declare class NamespaceResolver implements XPathNamespaceResolverObject {
34
34
  protected readonly rootNode: ContextParentNode;
35
- protected readonly referenceNode?: XPathNamespaceResolverObject | null | undefined;
35
+ protected readonly referenceNode?: (XPathNamespaceResolverObject | null) | undefined;
36
36
  protected readonly contextResolver: XPathNamespaceResolverObject;
37
- constructor(rootNode: ContextParentNode, referenceNode?: XPathNamespaceResolverObject | null | undefined);
37
+ constructor(rootNode: ContextParentNode, referenceNode?: (XPathNamespaceResolverObject | null) | undefined);
38
38
  protected lookupNodeNamespaceURI: (node: Node, prefix: string | null) => string | null;
39
39
  protected lookupStaticNamespaceURI: (prefix: string | null) => "http://www.w3.org/2002/xforms" | null;
40
40
  /**