@heliyos/heliyos-api-core 1.0.66 → 1.0.67

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.
@@ -65,6 +65,17 @@
65
65
  font-weight: bold;
66
66
  color: #111827;
67
67
  margin: 0 0 12px 0;
68
+ word-break: break-word;
69
+ overflow-wrap: anywhere;
70
+ }
71
+
72
+ .event-summary {
73
+ margin: 0 0 12px 0;
74
+ font-size: 14px;
75
+ color: #374151;
76
+ line-height: 1.55;
77
+ word-break: break-word;
78
+ overflow-wrap: anywhere;
68
79
  }
69
80
 
70
81
  .event-details {
@@ -77,6 +88,7 @@
77
88
  .detail-table {
78
89
  width: 100%;
79
90
  border-collapse: collapse;
91
+ table-layout: fixed;
80
92
  }
81
93
 
82
94
  .detail-label {
@@ -90,6 +102,8 @@
90
102
  .detail-value {
91
103
  font-size: 13px;
92
104
  color: #111827;
105
+ word-break: break-word;
106
+ overflow-wrap: anywhere;
93
107
  }
94
108
 
95
109
  .detail-cell {
@@ -157,6 +171,9 @@
157
171
  <div class="event-card">
158
172
  <div class="event-badge">{{event_type_label}}</div>
159
173
  <div class="event-title">{{{object_name}}}</div>
174
+ {{#if summary}}
175
+ <div class="event-summary">{{{summary}}}</div>
176
+ {{/if}}
160
177
  {{#if details}}
161
178
  <div class="event-details">
162
179
  <table class="detail-table">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heliyos/heliyos-api-core",
3
- "version": "1.0.66",
3
+ "version": "1.0.67",
4
4
  "description": "Heliyos's core api functions and middlewares. Its a private package hosted on npm.",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
@@ -65,6 +65,17 @@
65
65
  font-weight: bold;
66
66
  color: #111827;
67
67
  margin: 0 0 12px 0;
68
+ word-break: break-word;
69
+ overflow-wrap: anywhere;
70
+ }
71
+
72
+ .event-summary {
73
+ margin: 0 0 12px 0;
74
+ font-size: 14px;
75
+ color: #374151;
76
+ line-height: 1.55;
77
+ word-break: break-word;
78
+ overflow-wrap: anywhere;
68
79
  }
69
80
 
70
81
  .event-details {
@@ -77,6 +88,7 @@
77
88
  .detail-table {
78
89
  width: 100%;
79
90
  border-collapse: collapse;
91
+ table-layout: fixed;
80
92
  }
81
93
 
82
94
  .detail-label {
@@ -90,6 +102,8 @@
90
102
  .detail-value {
91
103
  font-size: 13px;
92
104
  color: #111827;
105
+ word-break: break-word;
106
+ overflow-wrap: anywhere;
93
107
  }
94
108
 
95
109
  .detail-cell {
@@ -157,6 +171,9 @@
157
171
  <div class="event-card">
158
172
  <div class="event-badge">{{event_type_label}}</div>
159
173
  <div class="event-title">{{{object_name}}}</div>
174
+ {{#if summary}}
175
+ <div class="event-summary">{{{summary}}}</div>
176
+ {{/if}}
160
177
  {{#if details}}
161
178
  <div class="event-details">
162
179
  <table class="detail-table">