Skip to content

Commit beaa9b6

Browse files
committed
- Updated TypeScript in Reporting project.
1 parent e40e45c commit beaa9b6

File tree

3 files changed

+40
-11
lines changed

3 files changed

+40
-11
lines changed

Rock.JavaScript.Obsidian.Reporting/package-lock.json

Lines changed: 35 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Rock.JavaScript.Obsidian.Reporting/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@rollup/plugin-commonjs": "^25.0.4",
1818
"@rollup/plugin-node-resolve": "^15.2.1",
1919
"@types/google.maps": "^3.54.0",
20-
"@types/node": "^20.5.7",
20+
"@types/node": "^20.19.25",
2121
"@typescript-eslint/eslint-plugin": "^6.5.0",
2222
"@typescript-eslint/parser": "^6.5.0",
2323
"copyfiles": "^2.4.1",
@@ -31,7 +31,7 @@
3131
"rollup-plugin-vue": "^6.0.0",
3232
"ts-node": "^10.9.1",
3333
"tslib": "^2.6.2",
34-
"typescript": "^5.2.2",
34+
"typescript": "^5.9.3",
3535
"vue": "^3.3.10",
3636
"vue-eslint-parser": "^9.3.1"
3737
}

Rock.JavaScript.Obsidian.Reporting/src/DataSelects/liquidSelect.obs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
mode="lava"
44
label="Template"
55
editor="monaco"
6-
help="Use Lava syntax to get the values of any of the fields in this report. For example, to create a link to the Person record, use <code>&amp;lt;a href=&quot;~/Person/{{ Id }}&quot;&amp;gt;{{ NickName }} {{ LastName }}&amp;lt;/a&amp;gt;</code>. For some fields, use the dot notation to get the property you want. <code>{{ Phone.Number }}</code> or <code> {{ Phone.IsMessagingEnabled }}</code><br />Note: The fieldname will be the Column Label without spaces or special characters." />
6+
:help="helpText" />
77
</template>
88

99
<script setup lang="ts">
@@ -19,6 +19,8 @@
1919

2020
const template = ref(props.modelValue.template ?? "");
2121

22+
const helpText = `Use Lava syntax to get the values of any of the fields in this report. For example, to create a link to the Person record, use <code>&amp;lt;a href=&quot;~/Person/{{ Id }}&quot;&amp;gt;{{ NickName }} {{ LastName }}&amp;lt;/a&amp;gt;</code>. For some fields, use the dot notation to get the property you want. <code>{{ Phone.Number }}</code> or <code> {{ Phone.IsMessagingEnabled }}</code><br />Note: The fieldname will be the Column Label without spaces or special characters.`;
23+
2224
watch([template], () => {
2325
const newData = {
2426
...props.modelValue,

0 commit comments

Comments
 (0)