codeapp-js 0.3.0 → 1.0.1

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.
Files changed (158) hide show
  1. package/AI/codeapp.agent.md +105 -0
  2. package/AI/skills/connections/SKILL.md +47 -0
  3. package/AI/skills/dataverse/SKILL.md +99 -0
  4. package/AI/skills/environment-variables/SKILL.md +89 -0
  5. package/AI/skills/frontend-design/SKILL.md +34 -0
  6. package/AI/skills/jira/SKILL.md +81 -0
  7. package/AI/skills/office365-groups/SKILL.md +61 -0
  8. package/AI/skills/office365-outlook/SKILL.md +52 -0
  9. package/AI/skills/office365-users/SKILL.md +78 -0
  10. package/AI/skills/sharepoint/SKILL.md +77 -0
  11. package/AI/skills/sql/SKILL.md +85 -0
  12. package/AI/skills/start/SKILL.md +46 -0
  13. package/AI/skills/teams/SKILL.md +55 -0
  14. package/{examples/combined demo/.power/schemas/office365groups/office365groups.Schema.json → codeApp/.power/schemas/office365groups/office365groups.Schema.json} +2203 -2203
  15. package/codeApp/dist/codeapp.js +95 -1792
  16. package/codeApp/dist/connectors/azureKeyvault.js +459 -0
  17. package/codeApp/dist/connectors/jira.js +1247 -0
  18. package/codeApp/dist/connectors/office365groups.js +642 -0
  19. package/codeApp/dist/connectors/office365users.js +513 -0
  20. package/codeApp/dist/connectors/outlook.js +1393 -0
  21. package/codeApp/dist/connectors/sharepoint.js +466 -0
  22. package/codeApp/dist/connectors/sql.js +149 -0
  23. package/codeApp/dist/connectors/teams.js +280 -0
  24. package/codeApp/dist/power-apps-data.js +16 -2
  25. package/examples/{kanban → apps/kanban}/dist/dataverse.js +94 -94
  26. package/examples/{kanban → apps/kanban}/dist/environmentVar.js +55 -55
  27. package/examples/{kanban → apps/kanban}/dist/index.css +605 -605
  28. package/examples/{kanban → apps/kanban}/dist/index.html +21 -21
  29. package/examples/{kanban → apps/kanban}/dist/index.js +860 -860
  30. package/examples/{kanban → apps/kanban}/dist/office365groups.js +97 -97
  31. package/examples/apps/kanban/dist/office365users.js +451 -0
  32. package/examples/{kanban → apps/kanban}/dist/outlook.js +162 -162
  33. package/examples/{planning Poker/dist/power-apps-data.js → apps/kanban/dist/power-apps-data.js} +2953 -2953
  34. package/examples/{kanban → apps/kanban}/dist/sharepoint.js +435 -339
  35. package/examples/{kanban → apps/kanban}/power.config.json +35 -35
  36. package/examples/{planning Poker → apps/planning Poker}/additional files/customizations (tables).xml +6428 -6428
  37. package/examples/{planning Poker → apps/planning Poker}/additional files/dataverse-tables.json +165 -165
  38. package/examples/{planning Poker → apps/planning Poker}/additional files/readme.md +122 -122
  39. package/examples/{planning Poker → apps/planning Poker}/dist/dataverse.js +78 -78
  40. package/examples/{planning Poker → apps/planning Poker}/dist/index.html +198 -198
  41. package/examples/{planning Poker → apps/planning Poker}/dist/index.js +954 -954
  42. package/examples/{todo/dist/power-apps-data.js → apps/planning Poker/dist/power-apps-data.js } +2953 -2953
  43. package/examples/{planning Poker → apps/planning Poker}/dist/styles.css +815 -815
  44. package/examples/{planning Poker → apps/planning Poker}/power.config.json +50 -50
  45. package/examples/{outlook Demo2 → apps/solution explorer}/dist/codeapp.js +9 -245
  46. package/examples/apps/solution explorer/dist/index.html +80 -0
  47. package/examples/apps/solution explorer/dist/index.js +735 -0
  48. package/examples/apps/solution explorer/dist/styles.css +571 -0
  49. package/examples/apps/solution explorer/power.config.json +151 -0
  50. package/examples/{todo → apps/todo}/dist/dataverse.js +64 -64
  51. package/examples/{todo → apps/todo}/dist/index.html +75 -75
  52. package/examples/{todo → apps/todo}/dist/index.js +8 -8
  53. package/examples/{kanban → apps/todo}/dist/power-apps-data.js +2953 -2953
  54. package/examples/{todo → apps/todo}/dist/renderer.js +375 -375
  55. package/examples/{todo → apps/todo}/dist/styles.css +691 -691
  56. package/examples/{todo → apps/todo}/power.config.json +34 -34
  57. package/examples/combined demo/.power/schemas/appschemas/dataSourcesInfo.ts +6275 -7830
  58. package/examples/combined demo/.power/schemas/jira/jira.Schema.json +6903 -0
  59. package/examples/combined demo/.power/schemas/keyvault/keyvault.Schema.json +1600 -0
  60. package/examples/combined demo/.power/schemas/teams/teams.Schema.json +11112 -0
  61. package/examples/combined demo/dist/codeapp.js +394 -1098
  62. package/examples/{outlook Demo2/OutlookDemo_1_0_0_1.zip → combined demo/dist/icon-512.png} +0 -0
  63. package/examples/combined demo/dist/index.html +29 -511
  64. package/examples/combined demo/dist/index.js +490 -470
  65. package/examples/combined demo/dist/office365users.js +513 -0
  66. package/examples/combined demo/dist/outlook.js +1393 -0
  67. package/examples/combined demo/dist/power-apps-data.js +3079 -3006
  68. package/examples/combined demo/dist/styles.css +483 -0
  69. package/examples/combined demo/power.config.json +33 -42
  70. package/examples/combined demo/src/generated/index.ts +12 -14
  71. package/examples/combined demo/src/generated/models/AzureKeyVaultModel.ts +107 -0
  72. package/examples/combined demo/src/generated/models/JiraModel.ts +501 -0
  73. package/examples/combined demo/src/generated/services/AzureKeyVaultService.ts +257 -0
  74. package/examples/combined demo/src/generated/services/JiraService.ts +1124 -0
  75. package/examples/dataverse Demo/dist/codeapp.js +394 -1085
  76. package/examples/dataverse Demo/dist/icon-512.png +0 -0
  77. package/examples/dataverse Demo/dist/index.html +146 -54
  78. package/examples/dataverse Demo/dist/index.js +693 -83
  79. package/examples/dataverse Demo/dist/power-apps-data.js +3079 -2911
  80. package/examples/dataverse Demo/dist/styles.css +528 -0
  81. package/examples/dataverse Demo/power.config.json +41 -35
  82. package/examples/dataverse Demo/readme.md +79 -79
  83. package/examples/groups Demo/dist/codeapp.js +394 -1085
  84. package/examples/groups Demo/dist/icon-512.png +0 -0
  85. package/examples/groups Demo/dist/index.html +21 -25
  86. package/examples/groups Demo/dist/index.js +304 -113
  87. package/examples/groups Demo/dist/office365groups.js +642 -0
  88. package/examples/groups Demo/dist/power-apps-data.js +3079 -2911
  89. package/examples/groups Demo/dist/styles.css +509 -0
  90. package/examples/groups Demo/power.config.json +25 -25
  91. package/examples/myProfile/dist/codeapp.js +398 -0
  92. package/examples/myProfile/dist/index.html +21 -184
  93. package/examples/myProfile/dist/index.js +324 -141
  94. package/examples/myProfile/dist/office365users.js +517 -169
  95. package/examples/myProfile/dist/power-apps-data.js +3080 -2953
  96. package/examples/myProfile/dist/styles.css +458 -0
  97. package/examples/myProfile/power.config.json +24 -23
  98. package/examples/outlook Demo/dist/codeapp.js +394 -1085
  99. package/examples/outlook Demo/dist/index.html +150 -35
  100. package/examples/outlook Demo/dist/index.js +516 -170
  101. package/examples/outlook Demo/dist/outlook.js +1393 -121
  102. package/examples/outlook Demo/dist/power-apps-data.js +3079 -2911
  103. package/examples/outlook Demo/dist/styles.css +408 -84
  104. package/examples/outlook Demo/power.config.json +24 -23
  105. package/examples/outlook Demo/readme.md +92 -82
  106. package/examples/sharePoint Demo/dist/codeapp.js +394 -1085
  107. package/examples/sharePoint Demo/dist/icon-512.png +0 -0
  108. package/examples/sharePoint Demo/dist/index.html +22 -255
  109. package/examples/sharePoint Demo/dist/index.js +899 -262
  110. package/examples/sharePoint Demo/dist/power-apps-data.js +3079 -2911
  111. package/{dev files → examples/sharePoint Demo/dist}/sharepoint.js +239 -112
  112. package/examples/sharePoint Demo/dist/styles.css +587 -0
  113. package/examples/sharePoint Demo/power.config.json +23 -22
  114. package/package.json +1 -1
  115. package/readme.md +465 -76
  116. package/.vscode/settings.json +0 -6
  117. package/dev files/customConnector.js +0 -98
  118. package/dev files/dataverse.js +0 -120
  119. package/dev files/environmentVar.js +0 -55
  120. package/dev files/office365groups.js +0 -65
  121. package/dev files/office365users.js +0 -169
  122. package/dev files/outlook.js +0 -330
  123. package/dev files/power-apps-data.js +0 -2952
  124. package/examples/combined demo/.power/schemas/office365/office365.Schema.json +0 -21098
  125. package/examples/combined demo/.power/schemas/office365users/office365users.Schema.json +0 -2094
  126. package/examples/kanban/agent/decision-log.md +0 -9
  127. package/examples/kanban/agent/mockup-01-editorial-glass.html +0 -159
  128. package/examples/kanban/agent/mockup-02-dark-rail.html +0 -147
  129. package/examples/kanban/agent/mockup-03-paper-grid.html +0 -114
  130. package/examples/kanban/agent/mockup-04-neon-minimal.html +0 -141
  131. package/examples/kanban/agent/mockup-05-mono-architect.html +0 -119
  132. package/examples/kanban/dist/office365users.js +0 -169
  133. package/examples/kanban/src/generated/index.ts +0 -14
  134. package/examples/kanban/src/generated/models/Office365GroupsModel.ts +0 -363
  135. package/examples/kanban/src/generated/models/Office365OutlookModel.ts +0 -2046
  136. package/examples/kanban/src/generated/models/Office365UsersModel.ts +0 -254
  137. package/examples/kanban/src/generated/services/Office365GroupsService.ts +0 -326
  138. package/examples/kanban/src/generated/services/Office365OutlookService.ts +0 -2476
  139. package/examples/kanban/src/generated/services/Office365UsersService.ts +0 -358
  140. package/examples/outlook Demo2/agent/decision-log.md +0 -7
  141. package/examples/outlook Demo2/dist/index.html +0 -98
  142. package/examples/outlook Demo2/dist/index.js +0 -272
  143. package/examples/outlook Demo2/dist/styles.css +0 -639
  144. package/examples/outlook Demo2/power.config.json +0 -23
  145. package/examples/planning Poker/.vscode/settings.json +0 -5
  146. package/examples/sharePoint Demo/agent/decision-log.md +0 -17
  147. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/index.ts +0 -0
  148. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/models/Office365GroupsModel.ts +0 -0
  149. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/models/Office365OutlookModel.ts +0 -0
  150. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/models/Office365UsersModel.ts +0 -0
  151. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/services/Office365GroupsService.ts +0 -0
  152. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/services/Office365OutlookService.ts +0 -0
  153. /package/examples/{outlook Demo2 → apps/kanban}/src/generated/services/Office365UsersService.ts +0 -0
  154. /package/examples/{planning Poker → apps/planning Poker}/additional files/AgilePoker_1_0_0_1.zip +0 -0
  155. /package/examples/{planning Poker → apps/planning Poker}/additional files/PokerTables_1_0_0_1.zip +0 -0
  156. /package/examples/{outlook Demo2 → apps/solution explorer}/dist/icon-512.png +0 -0
  157. /package/examples/{outlook Demo2 → apps/solution explorer}/dist/power-apps-data.js +0 -0
  158. /package/examples/{todo → apps/todo}/dist/icon192.png +0 -0
@@ -1,84 +1,408 @@
1
- * {
2
- box-sizing: border-box;
3
- margin: 0;
4
- padding: 0;
5
- }
6
-
7
- body {
8
- font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
9
- padding: 20px;
10
- background: #f5f5f5;
11
- color: #333;
12
- }
13
-
14
- h1 {
15
- margin-bottom: 16px;
16
- }
17
-
18
- #loading {
19
- font-size: 14px;
20
- color: #666;
21
- }
22
-
23
- #error {
24
- color: #d32f2f;
25
- font-size: 14px;
26
- margin-top: 12px;
27
- }
28
-
29
- table {
30
- width: 100%;
31
- border-collapse: collapse;
32
- background: #fff;
33
- border-radius: 4px;
34
- overflow: hidden;
35
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
36
- }
37
-
38
- th, td {
39
- text-align: left;
40
- padding: 10px 14px;
41
- border-bottom: 1px solid #eee;
42
- }
43
-
44
- th {
45
- background: #0078d4;
46
- color: #fff;
47
- font-weight: 600;
48
- }
49
-
50
- tr:last-child td {
51
- border-bottom: none;
52
- }
53
-
54
- tr:hover td {
55
- background: #f0f6ff;
56
- }
57
-
58
- @media (prefers-color-scheme: dark) {
59
- body {
60
- background: #1e1e1e;
61
- color: #e0e0e0;
62
- }
63
-
64
- table {
65
- background: #2d2d2d;
66
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
67
- }
68
-
69
- th {
70
- background: #0063b1;
71
- }
72
-
73
- td {
74
- border-bottom-color: #444;
75
- }
76
-
77
- tr:hover td {
78
- background: #383838;
79
- }
80
-
81
- #loading {
82
- color: #aaa;
83
- }
84
- }
1
+ :root {
2
+ --page: #f3efe7;
3
+ --ink: #1f2430;
4
+ --muted: #6f6a63;
5
+ --panel: rgba(255, 251, 245, 0.82);
6
+ --panel-strong: #fffdf8;
7
+ --line: rgba(45, 44, 40, 0.12);
8
+ --accent: #b54d2f;
9
+ --accent-deep: #7d2811;
10
+ --accent-soft: rgba(181, 77, 47, 0.12);
11
+ --shadow: 0 24px 80px rgba(67, 47, 25, 0.12);
12
+ }
13
+
14
+ * {
15
+ box-sizing: border-box;
16
+ }
17
+
18
+ html {
19
+ min-height: 100%;
20
+ }
21
+
22
+ body {
23
+ margin: 0;
24
+ min-height: 100vh;
25
+ color: var(--ink);
26
+ background:
27
+ radial-gradient(circle at top left, rgba(181, 77, 47, 0.16), transparent 28%),
28
+ radial-gradient(circle at right 20%, rgba(23, 87, 122, 0.12), transparent 30%),
29
+ linear-gradient(180deg, #f7f1e7 0%, var(--page) 45%, #efe7db 100%);
30
+ font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
31
+ }
32
+
33
+ body::before {
34
+ content: '';
35
+ position: fixed;
36
+ inset: 0;
37
+ background-image:
38
+ linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
39
+ linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
40
+ background-size: 24px 24px;
41
+ opacity: 0.35;
42
+ pointer-events: none;
43
+ }
44
+
45
+ .app-shell {
46
+ position: relative;
47
+ z-index: 1;
48
+ padding: 28px;
49
+ display: grid;
50
+ gap: 20px;
51
+ }
52
+
53
+ .hero-panel,
54
+ .panel {
55
+ background: var(--panel);
56
+ border: 1px solid var(--line);
57
+ backdrop-filter: blur(18px);
58
+ box-shadow: var(--shadow);
59
+ }
60
+
61
+ .hero-panel {
62
+ border-radius: 28px;
63
+ padding: 28px;
64
+ overflow: hidden;
65
+ }
66
+
67
+ .hero-panel::after {
68
+ content: '';
69
+ position: absolute;
70
+ inset: auto -8% -38% auto;
71
+ width: 280px;
72
+ height: 280px;
73
+ background: radial-gradient(circle, rgba(181, 77, 47, 0.22), transparent 66%);
74
+ pointer-events: none;
75
+ }
76
+
77
+ .eyebrow,
78
+ .panel-kicker,
79
+ .metric-label {
80
+ margin: 0;
81
+ text-transform: uppercase;
82
+ letter-spacing: 0.18em;
83
+ font-size: 11px;
84
+ font-weight: 700;
85
+ color: var(--accent-deep);
86
+ }
87
+
88
+ .hero-copy,
89
+ .panel-header {
90
+ display: flex;
91
+ gap: 18px;
92
+ justify-content: space-between;
93
+ align-items: flex-start;
94
+ }
95
+
96
+ .hero-copy {
97
+ margin-top: 12px;
98
+ }
99
+
100
+ .hero-copy h1,
101
+ .panel-header h2 {
102
+ margin: 0;
103
+ font-family: 'Baskerville', 'Palatino Linotype', Georgia, serif;
104
+ font-weight: 700;
105
+ }
106
+
107
+ .hero-copy h1 {
108
+ font-size: clamp(40px, 8vw, 76px);
109
+ line-height: 0.96;
110
+ max-width: 7ch;
111
+ }
112
+
113
+ .hero-text,
114
+ .status-line,
115
+ .metric-note,
116
+ .field span,
117
+ .toggle-field span,
118
+ .compact-field span,
119
+ .mail-meta,
120
+ .event-meta,
121
+ .contact-meta {
122
+ color: var(--muted);
123
+ }
124
+
125
+ .hero-text {
126
+ margin: 14px 0 0;
127
+ max-width: 56ch;
128
+ font-size: 15px;
129
+ line-height: 1.6;
130
+ }
131
+
132
+ .hero-actions {
133
+ display: grid;
134
+ gap: 10px;
135
+ justify-items: end;
136
+ }
137
+
138
+ .status-line {
139
+ margin: 0;
140
+ font-size: 13px;
141
+ }
142
+
143
+ .hero-metrics {
144
+ margin-top: 24px;
145
+ display: grid;
146
+ grid-template-columns: repeat(4, minmax(0, 1fr));
147
+ gap: 14px;
148
+ }
149
+
150
+ .metric-card {
151
+ padding: 16px;
152
+ border-radius: 20px;
153
+ background: rgba(255, 255, 255, 0.55);
154
+ border: 1px solid rgba(255, 255, 255, 0.8);
155
+ display: grid;
156
+ gap: 8px;
157
+ }
158
+
159
+ .metric-card strong {
160
+ font-family: 'Baskerville', 'Palatino Linotype', Georgia, serif;
161
+ font-size: 34px;
162
+ line-height: 1;
163
+ }
164
+
165
+ .workspace-grid {
166
+ display: grid;
167
+ grid-template-columns: minmax(290px, 0.95fr) minmax(320px, 1.1fr) minmax(300px, 0.9fr);
168
+ gap: 20px;
169
+ align-items: start;
170
+ }
171
+
172
+ .panel,
173
+ .side-column {
174
+ min-height: 0;
175
+ }
176
+
177
+ .panel {
178
+ border-radius: 24px;
179
+ padding: 18px;
180
+ display: grid;
181
+ gap: 16px;
182
+ }
183
+
184
+ .side-column {
185
+ display: grid;
186
+ gap: 20px;
187
+ }
188
+
189
+ .button {
190
+ appearance: none;
191
+ border: 1px solid rgba(31, 36, 48, 0.12);
192
+ background: rgba(255, 255, 255, 0.72);
193
+ color: var(--ink);
194
+ border-radius: 999px;
195
+ padding: 10px 14px;
196
+ font: inherit;
197
+ font-size: 13px;
198
+ cursor: pointer;
199
+ transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
200
+ }
201
+
202
+ .button:hover {
203
+ transform: translateY(-1px);
204
+ background: rgba(255, 255, 255, 0.92);
205
+ border-color: rgba(31, 36, 48, 0.22);
206
+ }
207
+
208
+ .button:disabled {
209
+ cursor: not-allowed;
210
+ opacity: 0.5;
211
+ transform: none;
212
+ }
213
+
214
+ .button-primary {
215
+ background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
216
+ border-color: transparent;
217
+ color: #fff8f4;
218
+ }
219
+
220
+ .control-stack,
221
+ .field,
222
+ .compact-field {
223
+ display: grid;
224
+ gap: 8px;
225
+ }
226
+
227
+ .field input,
228
+ .compact-field select,
229
+ .diagnostic-select {
230
+ width: 100%;
231
+ border-radius: 14px;
232
+ border: 1px solid rgba(31, 36, 48, 0.12);
233
+ background: rgba(255, 255, 255, 0.7);
234
+ color: var(--ink);
235
+ padding: 11px 12px;
236
+ font: inherit;
237
+ }
238
+
239
+ .toggle-field {
240
+ display: flex;
241
+ align-items: center;
242
+ gap: 10px;
243
+ font-size: 14px;
244
+ }
245
+
246
+ .mail-list,
247
+ .event-list,
248
+ .contact-list,
249
+ .category-list {
250
+ display: grid;
251
+ gap: 10px;
252
+ }
253
+
254
+ .mail-item,
255
+ .event-item,
256
+ .contact-item,
257
+ .category-pill {
258
+ border-radius: 18px;
259
+ border: 1px solid rgba(31, 36, 48, 0.08);
260
+ background: rgba(255, 255, 255, 0.7);
261
+ }
262
+
263
+ .mail-item {
264
+ padding: 14px;
265
+ text-align: left;
266
+ cursor: pointer;
267
+ }
268
+
269
+ .mail-item.is-active {
270
+ border-color: rgba(181, 77, 47, 0.34);
271
+ background: linear-gradient(135deg, rgba(181, 77, 47, 0.16), rgba(255, 255, 255, 0.86));
272
+ }
273
+
274
+ .mail-item-title,
275
+ .event-title,
276
+ .contact-name {
277
+ font-weight: 700;
278
+ line-height: 1.35;
279
+ }
280
+
281
+ .mail-item-subject {
282
+ margin: 6px 0 10px;
283
+ font-family: 'Baskerville', 'Palatino Linotype', Georgia, serif;
284
+ font-size: 20px;
285
+ }
286
+
287
+ .mail-meta,
288
+ .event-meta,
289
+ .contact-meta {
290
+ margin: 0;
291
+ font-size: 12px;
292
+ line-height: 1.5;
293
+ }
294
+
295
+ .mail-detail {
296
+ min-height: 280px;
297
+ padding: 18px;
298
+ border-radius: 22px;
299
+ background: var(--panel-strong);
300
+ border: 1px solid rgba(31, 36, 48, 0.08);
301
+ overflow: hidden;
302
+ }
303
+
304
+ .mail-detail h3 {
305
+ margin: 0;
306
+ font-family: 'Baskerville', 'Palatino Linotype', Georgia, serif;
307
+ font-size: 32px;
308
+ line-height: 1.1;
309
+ }
310
+
311
+ .mail-detail-grid {
312
+ display: grid;
313
+ gap: 14px;
314
+ }
315
+
316
+ .mail-detail-body {
317
+ margin: 0;
318
+ white-space: pre-wrap;
319
+ line-height: 1.6;
320
+ }
321
+
322
+ .detail-chip-row,
323
+ .category-list {
324
+ display: flex;
325
+ flex-wrap: wrap;
326
+ gap: 8px;
327
+ }
328
+
329
+ .detail-chip,
330
+ .category-pill {
331
+ padding: 8px 12px;
332
+ font-size: 12px;
333
+ border-radius: 999px;
334
+ background: var(--accent-soft);
335
+ }
336
+
337
+ .event-item,
338
+ .contact-item {
339
+ padding: 12px 14px;
340
+ }
341
+
342
+ .diagnostic-output {
343
+ min-height: 180px;
344
+ max-height: 280px;
345
+ overflow: auto;
346
+ margin: 0;
347
+ padding: 14px;
348
+ border-radius: 18px;
349
+ background: #261f1a;
350
+ color: #f8eadf;
351
+ font-size: 12px;
352
+ line-height: 1.45;
353
+ }
354
+
355
+ .error-banner {
356
+ border-radius: 16px;
357
+ padding: 12px 14px;
358
+ background: rgba(166, 36, 24, 0.12);
359
+ border: 1px solid rgba(166, 36, 24, 0.18);
360
+ color: #7c1c10;
361
+ font-size: 13px;
362
+ }
363
+
364
+ .empty-state {
365
+ display: grid;
366
+ place-items: center;
367
+ text-align: center;
368
+ color: var(--muted);
369
+ }
370
+
371
+ .is-hidden {
372
+ display: none;
373
+ }
374
+
375
+ @media (max-width: 1100px) {
376
+ .hero-metrics,
377
+ .workspace-grid {
378
+ grid-template-columns: 1fr 1fr;
379
+ }
380
+
381
+ .panel-detail,
382
+ .side-column {
383
+ grid-column: span 2;
384
+ }
385
+ }
386
+
387
+ @media (max-width: 760px) {
388
+ .app-shell {
389
+ padding: 18px;
390
+ }
391
+
392
+ .hero-copy,
393
+ .panel-header,
394
+ .hero-metrics,
395
+ .workspace-grid {
396
+ grid-template-columns: 1fr;
397
+ flex-direction: column;
398
+ }
399
+
400
+ .hero-actions {
401
+ justify-items: start;
402
+ }
403
+
404
+ .panel-detail,
405
+ .side-column {
406
+ grid-column: auto;
407
+ }
408
+ }
@@ -1,24 +1,25 @@
1
- {
2
- "appDisplayName": "Outlook Inbox",
3
- "description": "Displays the logged-in user's first 10 inbox emails using the Office 365 Outlook connector.",
4
- "environmentId": "<ENVIRONMENT ID>",
5
- "buildPath": "./dist",
6
- "buildEntryPoint": "index.html",
7
- "logoPath": "office-240.png",
8
- "localAppUrl": "http://localhost:3000",
9
- "region": "prod",
10
- "connectionReferences": {
11
- "office365outlook": {
12
- "id": "/providers/Microsoft.PowerApps/apis/shared_office365",
13
- "displayName": "Office 365 Outlook",
14
- "dataSources": [
15
- "office365"
16
- ],
17
- "authenticationType": null,
18
- "sharedConnectionId": null,
19
- "dataSets": {}
20
- }
21
- },
22
- "databaseReferences": {},
23
- "version": "1.0"
1
+ {
2
+ "appId":"2977d2cf-e162-4df7-b609-306b4e6b9086",
3
+ "appDisplayName": "Outlook Inbox",
4
+ "description": "Displays the logged-in user's first 10 inbox emails using the Office 365 Outlook connector.",
5
+ "environmentId": "<ENVIRONMENT_ID>",
6
+ "buildPath": "./dist",
7
+ "buildEntryPoint": "index.html",
8
+ "logoPath": "office-240.png",
9
+ "localAppUrl": "http://localhost:3000",
10
+ "region": "prod",
11
+ "connectionReferences": {
12
+ "office365outlook": {
13
+ "id": "/providers/Microsoft.PowerApps/apis/shared_office365",
14
+ "displayName": "Office 365 Outlook",
15
+ "dataSources": [
16
+ "office365"
17
+ ],
18
+ "authenticationType": null,
19
+ "sharedConnectionId": null,
20
+ "dataSets": {}
21
+ }
22
+ },
23
+ "databaseReferences": {},
24
+ "version": "1.0"
24
25
  }