Skip to content

Commit

Permalink
0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bahrus committed Jan 18, 2024
1 parent 064f12b commit 2327e99
Show file tree
Hide file tree
Showing 8 changed files with 84 additions and 523 deletions.
583 changes: 72 additions & 511 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
"be-enhanced": "0.0.62",
"be-exporting": "0.0.4",
"be-hive": "0.0.133",
"be-linked": "0.0.72",
"be-observant": "0.0.171",
"be-propagating": "0.0.31",
"be-scoped": "0.0.22",
"be-value-added": "0.0.21",
"be-linked": "0.0.73",
"be-observant": "0.0.174",
"be-propagating": "0.0.32",
"be-scoped": "0.0.23",
"be-value-added": "0.0.22",
"trans-render": "0.0.732",
"xtal-element": "0.0.591"
},
Expand Down
2 changes: 1 addition & 1 deletion prsFrom.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export function prsFrom(self) {
for (const dependency of splitDependencies) {
let remoteType = dependency[0];
let remoteProp = dependency;
if ('/@$-#'.includes(remoteType)) {
if ('/@|-#'.includes(remoteType)) {
remoteProp = dependency.substring(1);
}
else {
Expand Down
2 changes: 1 addition & 1 deletion prsFrom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export function prsFrom(self: AP) : PAP {
for(const dependency of splitDependencies){
let remoteType = dependency[0] as ElTypes;
let remoteProp = dependency;
if('/@$-#'.includes(remoteType)){
if('/@|-#'.includes(remoteType)){
remoteProp = dependency.substring(1);

}else{
Expand Down
4 changes: 2 additions & 2 deletions tests/Example1a.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
<link itemprop=isWealthy href=https://schema.org/False>
<link id=link itemprop=isInNirvana
onload="isHappy && !isWealthy"
be-computed='from onload expression, passing in $isHappy, $isWealthy.'
be-computed='from onload expression, passing in |isHappy, |isWealthy.'
>
>

</div>
<div id=target></div>
<script type=module>
Expand Down
2 changes: 1 addition & 1 deletion tests/Example1b.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<script nomodule>
isHappy && !isWealthy
</script>
<link id=link itemprop=isInNirvana be-computed='from previous script element expression, passing in $isHappy, $isWealthy.'>
<link id=link itemprop=isInNirvana be-computed='from previous script element expression, passing in |isHappy, |isWealthy.'>
</div>
<div id=target></div>
<script type=module>
Expand Down
2 changes: 1 addition & 1 deletion tests/Example1c.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<link id=link itemprop=isInNirvana
onload="isHappy && !isWealthy"
be-computed='from $isHappy, $isWealthy.'
be-computed='from |isHappy, |isWealthy.'
>
</div>
<div id=target></div>
Expand Down
2 changes: 1 addition & 1 deletion tests/Example1d.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
isHappy && !isWealthy
</script>
<div id=target></div>
<link id=link itemprop=isInNirvana be-computed='from $isHappy, $isWealthy.'>
<link id=link itemprop=isInNirvana be-computed='from |isHappy, |isWealthy.'>
</div>
<script type=module>
import '../be-computed.js';
Expand Down

0 comments on commit 2327e99

Please sign in to comment.