@genesislcap/pbc-reporting-ui 1.0.397 → 1.0.398

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.
@@ -1 +1 @@
1
- {"version":3,"file":"config-journey-orchestrator.styles.d.ts","sourceRoot":"","sources":["../../../../../src/new/main/edit-config/config-journey-orchestrator.styles.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM,iDAuFlB,CAAC"}
1
+ {"version":3,"file":"config-journey-orchestrator.styles.d.ts","sourceRoot":"","sources":["../../../../../src/new/main/edit-config/config-journey-orchestrator.styles.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM,iDAmGlB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"outputs-config.template.d.ts","sourceRoot":"","sources":["../../../../../../src/new/main/edit-config/outputs-config/outputs-config.template.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,MAAM,MAAM,YAAY,GAAG;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,QAAQ,GAAG,MAAM,CAAC;CACzB,CAAC;AAwBF,eAAO,MAAM,QAAQ,oEAUpB,CAAC"}
1
+ {"version":3,"file":"outputs-config.template.d.ts","sourceRoot":"","sources":["../../../../../../src/new/main/edit-config/outputs-config/outputs-config.template.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,MAAM,MAAM,YAAY,GAAG;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,QAAQ,GAAG,MAAM,CAAC;CACzB,CAAC;AA0BF,eAAO,MAAM,QAAQ,oEAUpB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"scheduling.styles.d.ts","sourceRoot":"","sources":["../../../../../../src/new/main/edit-config/scheduling/scheduling.styles.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM,iDAuDlB,CAAC"}
1
+ {"version":3,"file":"scheduling.styles.d.ts","sourceRoot":"","sources":["../../../../../../src/new/main/edit-config/scheduling/scheduling.styles.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,MAAM,iDA6DlB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"scheduling.template.d.ts","sourceRoot":"","sources":["../../../../../../src/new/main/edit-config/scheduling/scheduling.template.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAI1C,eAAO,MAAM,QAAQ,iEAyEpB,CAAC"}
1
+ {"version":3,"file":"scheduling.template.d.ts","sourceRoot":"","sources":["../../../../../../src/new/main/edit-config/scheduling/scheduling.template.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAI1C,eAAO,MAAM,QAAQ,iEA2FpB,CAAC"}
@@ -7,7 +7,7 @@ export const styles = css `
7
7
  }
8
8
 
9
9
  div.pad {
10
- padding-top: 100px;
10
+ padding-top: 80px;
11
11
  }
12
12
 
13
13
  .centered {
@@ -87,4 +87,16 @@ export const styles = css `
87
87
  rapid-stepper-tab {
88
88
  --neutral-layer-3: var(--app-bg-color);
89
89
  }
90
+
91
+ ::-webkit-scrollbar {
92
+ width: calc((var(--base-height-multiplier) + var(--design-unit)) * 1px);
93
+ }
94
+
95
+ ::-webkit-scrollbar-track {
96
+ background: var(--neutral-layer-1);
97
+ }
98
+
99
+ ::-webkit-scrollbar-thumb {
100
+ background: var(--neutral-fill-rest);
101
+ }
90
102
  `;
@@ -1,7 +1,9 @@
1
1
  import { html, ref, whenElse } from '@genesislcap/web-core';
2
2
  import { selectors } from '../../../store';
3
3
  const container = html `
4
- <label class="label">Outputs</label>
4
+ <label class="label">Outputs
5
+ <rapid-icon tooltip="Select where the generated report should be delivered, such as email or FTP."></rapid-icon>
6
+ </label>
5
7
  <rapid-multiselect
6
8
  data-test-id="output-multiselect"
7
9
  ${ref('multiselect')}
@@ -6,6 +6,8 @@ export const styles = css `
6
6
  display: flex;
7
7
  flex-direction: column;
8
8
  gap: calc(var(--design-unit) * 2px);
9
+ overflow-y: auto;
10
+ overflow-x: hidden;
9
11
  }
10
12
 
11
13
  .heading-padding {
@@ -55,4 +57,8 @@ export const styles = css `
55
57
  div.auto-dispatch label {
56
58
  margin-right: calc(var(--design-unit) * 2px);
57
59
  }
60
+
61
+ p {
62
+ margin: 0;
63
+ }
58
64
  `;
@@ -5,6 +5,10 @@ OutputsConfig;
5
5
  export const template = html `
6
6
  <div class="container">
7
7
  <h1 class="heading-padding">Scheduling</h1>
8
+ <p class="heading-padding">
9
+ Here you can set up a schedule to generate and send reports automatically at your preferred
10
+ time.
11
+ </p>
8
12
  <div class="enable-schedules">
9
13
  <rapid-button
10
14
  data-test-id="config-enable-schedules"
@@ -17,7 +21,12 @@ export const template = html `
17
21
  <div class="parent-container ${(x) => x.disabledClassNames}">
18
22
  <div class="container ${(x) => x.disabledClassNames}">
19
23
  <div class="timezone-container">
20
- <label class="label">Time Zone</label>
24
+ <label class="label">
25
+ Time Zone
26
+ <rapid-icon
27
+ tooltip="Select the timezone in which the report schedule should be executed."
28
+ ></rapid-icon>
29
+ </label>
21
30
  <rapid-combobox
22
31
  data-test-id="config-report-timezone"
23
32
  autocomplete="both"
@@ -57,10 +66,19 @@ export const template = html `
57
66
  </div>
58
67
  </div>
59
68
  <h1 class="heading-padding">Report Destinations</h1>
69
+ <p class="heading-padding">
70
+ Choose where your report should be delivered. Select output formats and enable auto-dispatch for
71
+ automatic delivery.
72
+ </p>
60
73
  <div class="heading-padding container">
61
74
  <outputs-config></outputs-config>
62
75
  <div class="auto-dispatch">
63
- <label class="label">Auto dispatch?</label>
76
+ <label class="label">
77
+ Auto dispatch?
78
+ <rapid-icon
79
+ tooltip="Enable this to automatically send the report to the selected destination once it's generated."
80
+ ></rapid-icon>
81
+ </label>
64
82
  <rapid-checkbox
65
83
  data-test-id="config-report-auto-dispatch"
66
84
  checked=${() => { var _a; return (_a = selectors.baseConfig.getConfig().AUTO_DISPATCH) !== null && _a !== void 0 ? _a : false; }}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/pbc-reporting-ui",
3
3
  "description": "Genesis PBC Reporting UI",
4
- "version": "1.0.397",
4
+ "version": "1.0.398",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/esm/index.js",
7
7
  "types": "dist/dts/index.d.ts",