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
@@ -0,0 +1,528 @@
1
+ :root {
2
+ --paper: #f4efe6;
3
+ --paper-strong: #efe5d5;
4
+ --ink: #18243a;
5
+ --ink-soft: #516076;
6
+ --line: rgba(24, 36, 58, 0.12);
7
+ --panel: rgba(255, 255, 255, 0.78);
8
+ --panel-strong: rgba(255, 250, 243, 0.92);
9
+ --accent: #b85c38;
10
+ --accent-deep: #8e3e1f;
11
+ --accent-soft: rgba(184, 92, 56, 0.14);
12
+ --warning: #b98522;
13
+ --danger: #a93939;
14
+ --success: #2f7a57;
15
+ --shadow: 0 24px 60px rgba(19, 28, 44, 0.14);
16
+ --radius-lg: 28px;
17
+ --radius-md: 18px;
18
+ --radius-sm: 12px;
19
+ --font-display: Georgia, 'Times New Roman', serif;
20
+ --font-body: 'Segoe UI', Candara, sans-serif;
21
+ }
22
+
23
+ * {
24
+ box-sizing: border-box;
25
+ }
26
+
27
+ html,
28
+ body {
29
+ margin: 0;
30
+ min-height: 100%;
31
+ font-family: var(--font-body);
32
+ color: var(--ink);
33
+ background:
34
+ radial-gradient(circle at top left, rgba(184, 92, 56, 0.18), transparent 28%),
35
+ radial-gradient(circle at bottom right, rgba(24, 36, 58, 0.16), transparent 30%),
36
+ linear-gradient(135deg, #e8dcc8 0%, #f8f4ed 48%, #ece2d4 100%);
37
+ }
38
+
39
+ body::before {
40
+ content: '';
41
+ position: fixed;
42
+ inset: 0;
43
+ pointer-events: none;
44
+ opacity: 0.42;
45
+ background-image:
46
+ linear-gradient(rgba(24, 36, 58, 0.04) 1px, transparent 1px),
47
+ linear-gradient(90deg, rgba(24, 36, 58, 0.04) 1px, transparent 1px);
48
+ background-size: 26px 26px;
49
+ }
50
+
51
+ button,
52
+ input,
53
+ select,
54
+ textarea {
55
+ font: inherit;
56
+ }
57
+
58
+ button {
59
+ cursor: pointer;
60
+ }
61
+
62
+ #root {
63
+ min-height: 100vh;
64
+ padding: 28px;
65
+ }
66
+
67
+ .page-shell {
68
+ display: grid;
69
+ grid-template-columns: 320px minmax(0, 1fr);
70
+ min-height: calc(100vh - 56px);
71
+ border: 1px solid rgba(24, 36, 58, 0.08);
72
+ border-radius: 34px;
73
+ overflow: hidden;
74
+ box-shadow: var(--shadow);
75
+ background: rgba(255, 252, 247, 0.5);
76
+ backdrop-filter: blur(18px);
77
+ }
78
+
79
+ .side-panel {
80
+ padding: 28px;
81
+ background:
82
+ linear-gradient(180deg, rgba(24, 36, 58, 0.98) 0%, rgba(30, 44, 67, 0.96) 100%);
83
+ color: #f4eadc;
84
+ display: grid;
85
+ gap: 18px;
86
+ align-content: start;
87
+ }
88
+
89
+ .brand-card,
90
+ .metric-card,
91
+ .command-card,
92
+ .filter-card,
93
+ .status-card,
94
+ .task-panel,
95
+ .editor-panel,
96
+ .share-panel {
97
+ border: 1px solid rgba(24, 36, 58, 0.08);
98
+ border-radius: var(--radius-lg);
99
+ }
100
+
101
+ .brand-card,
102
+ .metric-card,
103
+ .command-card,
104
+ .filter-card,
105
+ .status-card {
106
+ background: rgba(255, 248, 238, 0.06);
107
+ border-color: rgba(255, 247, 235, 0.12);
108
+ }
109
+
110
+ .eyebrow {
111
+ margin: 0 0 8px;
112
+ letter-spacing: 0.18em;
113
+ text-transform: uppercase;
114
+ font-size: 11px;
115
+ color: rgba(255, 240, 220, 0.68);
116
+ }
117
+
118
+ .brand-card {
119
+ padding: 22px;
120
+ }
121
+
122
+ .brand-card h1,
123
+ .panel-header h2 {
124
+ margin: 0;
125
+ font-family: var(--font-display);
126
+ font-weight: 700;
127
+ letter-spacing: -0.03em;
128
+ }
129
+
130
+ .brand-card h1 {
131
+ font-size: 38px;
132
+ line-height: 0.96;
133
+ }
134
+
135
+ .intro-copy {
136
+ margin: 14px 0 0;
137
+ line-height: 1.6;
138
+ color: rgba(255, 240, 220, 0.8);
139
+ }
140
+
141
+ .metrics-grid {
142
+ display: grid;
143
+ gap: 14px;
144
+ }
145
+
146
+ .metric-card {
147
+ padding: 16px 18px;
148
+ }
149
+
150
+ .metric-card__label {
151
+ display: block;
152
+ font-size: 12px;
153
+ text-transform: uppercase;
154
+ letter-spacing: 0.14em;
155
+ color: rgba(255, 240, 220, 0.56);
156
+ }
157
+
158
+ .metric-card__value {
159
+ display: block;
160
+ margin-top: 8px;
161
+ font-size: 24px;
162
+ font-family: var(--font-display);
163
+ }
164
+
165
+ .command-card,
166
+ .filter-card,
167
+ .status-card {
168
+ padding: 18px;
169
+ }
170
+
171
+ .command-card {
172
+ display: grid;
173
+ gap: 12px;
174
+ }
175
+
176
+ .workspace {
177
+ padding: 26px;
178
+ display: grid;
179
+ grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
180
+ gap: 22px;
181
+ background: linear-gradient(180deg, rgba(255, 252, 247, 0.76), rgba(247, 240, 229, 0.82));
182
+ }
183
+
184
+ .task-panel,
185
+ .editor-panel {
186
+ background: var(--panel);
187
+ backdrop-filter: blur(12px);
188
+ padding: 22px;
189
+ }
190
+
191
+ .editor-panel {
192
+ display: grid;
193
+ gap: 18px;
194
+ align-content: start;
195
+ }
196
+
197
+ .panel-header {
198
+ display: flex;
199
+ align-items: end;
200
+ justify-content: space-between;
201
+ gap: 16px;
202
+ margin-bottom: 16px;
203
+ }
204
+
205
+ .panel-header--tight {
206
+ margin-bottom: 0;
207
+ }
208
+
209
+ .panel-caption {
210
+ margin: 0;
211
+ color: var(--ink-soft);
212
+ text-align: right;
213
+ max-width: 240px;
214
+ line-height: 1.4;
215
+ }
216
+
217
+ .task-list,
218
+ .share-log {
219
+ display: grid;
220
+ gap: 14px;
221
+ }
222
+
223
+ .task-list {
224
+ max-height: calc(100vh - 180px);
225
+ overflow: auto;
226
+ padding-right: 6px;
227
+ }
228
+
229
+ .task-card {
230
+ width: 100%;
231
+ text-align: left;
232
+ padding: 18px;
233
+ border-radius: 22px;
234
+ border: 1px solid rgba(24, 36, 58, 0.08);
235
+ background: rgba(255, 254, 251, 0.92);
236
+ display: grid;
237
+ gap: 12px;
238
+ transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
239
+ animation: task-enter 320ms ease both;
240
+ }
241
+
242
+ .task-card:hover,
243
+ .task-card:focus-visible {
244
+ transform: translateY(-2px);
245
+ border-color: rgba(184, 92, 56, 0.38);
246
+ box-shadow: 0 14px 28px rgba(24, 36, 58, 0.08);
247
+ outline: none;
248
+ }
249
+
250
+ .task-card--active {
251
+ border-color: rgba(184, 92, 56, 0.5);
252
+ background: linear-gradient(180deg, rgba(255, 247, 241, 0.98), rgba(255, 253, 250, 0.96));
253
+ }
254
+
255
+ .task-card__row {
256
+ display: flex;
257
+ align-items: center;
258
+ justify-content: space-between;
259
+ gap: 12px;
260
+ }
261
+
262
+ .task-card__row--meta {
263
+ justify-content: start;
264
+ flex-wrap: wrap;
265
+ }
266
+
267
+ .task-card__title {
268
+ margin: 0;
269
+ font-size: 20px;
270
+ line-height: 1.1;
271
+ font-family: var(--font-display);
272
+ }
273
+
274
+ .task-card__description {
275
+ margin: 0;
276
+ color: var(--ink-soft);
277
+ line-height: 1.5;
278
+ }
279
+
280
+ .pill {
281
+ display: inline-flex;
282
+ align-items: center;
283
+ padding: 7px 12px;
284
+ border-radius: 999px;
285
+ background: rgba(24, 36, 58, 0.06);
286
+ color: var(--ink-soft);
287
+ font-size: 12px;
288
+ letter-spacing: 0.04em;
289
+ text-transform: uppercase;
290
+ }
291
+
292
+ .pill--priority {
293
+ background: var(--accent-soft);
294
+ color: var(--accent-deep);
295
+ }
296
+
297
+ .field-label {
298
+ display: block;
299
+ margin-bottom: 8px;
300
+ font-size: 12px;
301
+ letter-spacing: 0.12em;
302
+ text-transform: uppercase;
303
+ color: var(--ink-soft);
304
+ }
305
+
306
+ .field-input {
307
+ width: 100%;
308
+ border-radius: 16px;
309
+ border: 1px solid rgba(24, 36, 58, 0.12);
310
+ background: rgba(255, 254, 251, 0.88);
311
+ color: var(--ink);
312
+ padding: 14px 16px;
313
+ transition: border-color 180ms ease, box-shadow 180ms ease;
314
+ }
315
+
316
+ .field-input:focus {
317
+ outline: none;
318
+ border-color: rgba(184, 92, 56, 0.55);
319
+ box-shadow: 0 0 0 4px rgba(184, 92, 56, 0.14);
320
+ }
321
+
322
+ .field-input--select {
323
+ appearance: none;
324
+ }
325
+
326
+ .field-input--textarea {
327
+ resize: vertical;
328
+ min-height: 180px;
329
+ }
330
+
331
+ .form-row,
332
+ .button-row {
333
+ display: grid;
334
+ gap: 14px;
335
+ }
336
+
337
+ .form-row {
338
+ grid-template-columns: repeat(2, minmax(0, 1fr));
339
+ }
340
+
341
+ .button-row {
342
+ grid-template-columns: repeat(3, minmax(0, 1fr));
343
+ }
344
+
345
+ .button-row--single {
346
+ grid-template-columns: minmax(0, 1fr);
347
+ }
348
+
349
+ .btn {
350
+ min-height: 48px;
351
+ border-radius: 999px;
352
+ border: 1px solid transparent;
353
+ padding: 0 18px;
354
+ font-weight: 700;
355
+ letter-spacing: 0.02em;
356
+ transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
357
+ }
358
+
359
+ .btn:disabled {
360
+ opacity: 0.52;
361
+ cursor: not-allowed;
362
+ }
363
+
364
+ .btn--accent {
365
+ background: linear-gradient(135deg, var(--accent) 0%, #cc7b52 100%);
366
+ color: #fff8f0;
367
+ box-shadow: 0 10px 24px rgba(184, 92, 56, 0.24);
368
+ }
369
+
370
+ .btn--accent:hover:not(:disabled),
371
+ .btn--accent:focus-visible:not(:disabled) {
372
+ transform: translateY(-1px);
373
+ }
374
+
375
+ .btn--ghost {
376
+ background: rgba(255, 251, 244, 0.7);
377
+ color: var(--ink);
378
+ border-color: rgba(24, 36, 58, 0.12);
379
+ }
380
+
381
+ .btn--danger {
382
+ background: rgba(169, 57, 57, 0.1);
383
+ color: var(--danger);
384
+ border-color: rgba(169, 57, 57, 0.2);
385
+ }
386
+
387
+ .editor-form,
388
+ .share-panel {
389
+ display: grid;
390
+ gap: 16px;
391
+ }
392
+
393
+ .share-panel {
394
+ padding: 18px;
395
+ background: var(--panel-strong);
396
+ }
397
+
398
+ .status-card__header {
399
+ display: flex;
400
+ align-items: center;
401
+ justify-content: space-between;
402
+ gap: 12px;
403
+ margin-bottom: 10px;
404
+ text-transform: uppercase;
405
+ letter-spacing: 0.12em;
406
+ font-size: 11px;
407
+ color: rgba(255, 240, 220, 0.6);
408
+ }
409
+
410
+ .status-pill {
411
+ display: inline-flex;
412
+ align-items: center;
413
+ justify-content: center;
414
+ min-width: 62px;
415
+ padding: 6px 10px;
416
+ border-radius: 999px;
417
+ background: rgba(255, 248, 238, 0.12);
418
+ color: #fff4e2;
419
+ }
420
+
421
+ .status-pill[data-tone='success'],
422
+ .status-copy[data-tone='success'] {
423
+ color: #a8f1ca;
424
+ }
425
+
426
+ .status-pill[data-tone='warning'],
427
+ .status-copy[data-tone='warning'] {
428
+ color: #ffe09d;
429
+ }
430
+
431
+ .status-pill[data-tone='error'],
432
+ .status-copy[data-tone='error'] {
433
+ color: #ffb4b4;
434
+ }
435
+
436
+ .status-copy {
437
+ margin: 0;
438
+ line-height: 1.5;
439
+ }
440
+
441
+ .status-copy--secondary {
442
+ margin-top: 10px;
443
+ color: rgba(255, 240, 220, 0.7);
444
+ word-break: break-word;
445
+ }
446
+
447
+ .empty-card,
448
+ .share-log__item {
449
+ padding: 18px;
450
+ border-radius: 18px;
451
+ border: 1px dashed rgba(24, 36, 58, 0.14);
452
+ background: rgba(255, 255, 255, 0.52);
453
+ color: var(--ink-soft);
454
+ }
455
+
456
+ .empty-card--compact {
457
+ padding: 14px;
458
+ }
459
+
460
+ .share-log__item strong {
461
+ display: block;
462
+ margin-bottom: 6px;
463
+ color: var(--ink);
464
+ }
465
+
466
+ .share-log__item p {
467
+ margin: 0;
468
+ line-height: 1.5;
469
+ }
470
+
471
+ @keyframes task-enter {
472
+ from {
473
+ opacity: 0;
474
+ transform: translateY(10px);
475
+ }
476
+
477
+ to {
478
+ opacity: 1;
479
+ transform: translateY(0);
480
+ }
481
+ }
482
+
483
+ @media (max-width: 1180px) {
484
+ .page-shell {
485
+ grid-template-columns: 1fr;
486
+ }
487
+
488
+ .workspace {
489
+ grid-template-columns: 1fr;
490
+ }
491
+
492
+ .task-list {
493
+ max-height: none;
494
+ }
495
+ }
496
+
497
+ @media (max-width: 720px) {
498
+ #root {
499
+ padding: 14px;
500
+ }
501
+
502
+ .side-panel,
503
+ .workspace,
504
+ .task-panel,
505
+ .editor-panel,
506
+ .share-panel {
507
+ padding: 18px;
508
+ }
509
+
510
+ .brand-card h1 {
511
+ font-size: 30px;
512
+ }
513
+
514
+ .form-row,
515
+ .button-row {
516
+ grid-template-columns: 1fr;
517
+ }
518
+
519
+ .panel-header {
520
+ flex-direction: column;
521
+ align-items: start;
522
+ }
523
+
524
+ .panel-caption {
525
+ text-align: left;
526
+ max-width: none;
527
+ }
528
+ }
@@ -1,35 +1,41 @@
1
- {
2
- "appDisplayName": "Dataverse Demo",
3
- "description": "A simple demo showing CRUD operations against the Dataverse task table.",
4
- "environmentId": "<ENVIRONMENT ID>",
5
- "buildPath": "./dist",
6
- "buildEntryPoint": "index.html",
7
- "logoPath": "default",
8
- "localAppUrl": "http://localhost:3000",
9
- "region": "prod",
10
- "connectionReferences": {
11
- "dataverse": {
12
- "id": "/providers/Microsoft.PowerApps/apis/shared_commondataserviceforapps",
13
- "displayName": "Microsoft Dataverse",
14
- "dataSources": [
15
- "commondataserviceforapps"
16
- ],
17
- "authenticationType": null,
18
- "sharedConnectionId": null,
19
- "dataSets": {}
20
- }
21
- },
22
- "databaseReferences": {
23
- "default.cds": {
24
- "databaseDetails": null,
25
- "dataSources": {
26
- "tasks": {
27
- "entitySetName": "tasks",
28
- "logicalName": "task",
29
- "isHidden": false
30
- }
31
- },
32
- "actions": null
33
- }
34
- }
35
- }
1
+ {
2
+ "appId":"f77d53bb-2423-4788-8ea7-47faa8869872",
3
+ "appDisplayName": "Dataverse Demo",
4
+ "description": "A simple demo showing CRUD operations against the Dataverse task table.",
5
+ "environmentId": "<ENVIRONMENT_ID>",
6
+ "buildPath": "./dist",
7
+ "buildEntryPoint": "index.html",
8
+ "logoPath": "default",
9
+ "localAppUrl": "http://localhost:3000",
10
+ "region": "prod",
11
+ "connectionReferences": {
12
+ "dataverse": {
13
+ "id": "/providers/Microsoft.PowerApps/apis/shared_commondataserviceforapps",
14
+ "displayName": "Microsoft Dataverse",
15
+ "dataSources": [
16
+ "commondataserviceforapps"
17
+ ],
18
+ "authenticationType": null,
19
+ "sharedConnectionId": "300515b919c542759d28b5a23b5b304a",
20
+ "dataSets": {}
21
+ }
22
+ },
23
+ "databaseReferences": {
24
+ "default.cds": {
25
+ "databaseDetails": null,
26
+ "dataSources": {
27
+ "tasks": {
28
+ "entitySetName": "tasks",
29
+ "logicalName": "task",
30
+ "isHidden": false
31
+ },
32
+ "systemusers": {
33
+ "entitySetName": "systemusers",
34
+ "logicalName": "systemuser",
35
+ "isHidden": false
36
+ }
37
+ },
38
+ "actions": null
39
+ }
40
+ }
41
+ }