codeapp-js 0.3.0 → 1.0.0
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.
- package/AI/codeapp.agent.md +105 -0
- package/AI/skills/connections/SKILL.md +47 -0
- package/AI/skills/dataverse/SKILL.md +99 -0
- package/AI/skills/environment-variables/SKILL.md +89 -0
- package/AI/skills/frontend-design/SKILL.md +34 -0
- package/AI/skills/jira/SKILL.md +81 -0
- package/AI/skills/office365-groups/SKILL.md +61 -0
- package/AI/skills/office365-outlook/SKILL.md +52 -0
- package/AI/skills/office365-users/SKILL.md +78 -0
- package/AI/skills/sharepoint/SKILL.md +77 -0
- package/AI/skills/sql/SKILL.md +85 -0
- package/AI/skills/start/SKILL.md +46 -0
- package/AI/skills/teams/SKILL.md +55 -0
- package/{examples/combined demo/.power/schemas/office365groups/office365groups.Schema.json → codeApp/.power/schemas/office365groups/office365groups.Schema.json} +2203 -2203
- package/codeApp/dist/codeapp.js +95 -1792
- package/codeApp/dist/connectors/azureKeyvault.js +459 -0
- package/codeApp/dist/connectors/jira.js +1247 -0
- package/codeApp/dist/connectors/office365groups.js +642 -0
- package/codeApp/dist/connectors/office365users.js +513 -0
- package/codeApp/dist/connectors/outlook.js +1393 -0
- package/{dev files/sharepoint.js → codeApp/dist/connectors/sharepoint.js} +239 -112
- package/codeApp/dist/connectors/sql.js +149 -0
- package/codeApp/dist/connectors/teams.js +280 -0
- package/codeApp/dist/power-apps-data.js +16 -2
- package/examples/{kanban → apps/kanban}/dist/dataverse.js +94 -94
- package/examples/{kanban → apps/kanban}/dist/environmentVar.js +55 -55
- package/examples/{kanban → apps/kanban}/dist/index.css +605 -605
- package/examples/{kanban → apps/kanban}/dist/index.html +21 -21
- package/examples/{kanban → apps/kanban}/dist/index.js +860 -860
- package/examples/{kanban → apps/kanban}/dist/office365groups.js +97 -97
- package/examples/apps/kanban/dist/office365users.js +451 -0
- package/examples/{kanban → apps/kanban}/dist/outlook.js +162 -162
- package/examples/{planning Poker/dist/power-apps-data.js → apps/kanban/dist/power-apps-data.js} +2953 -2953
- package/examples/{kanban → apps/kanban}/dist/sharepoint.js +435 -339
- package/examples/{kanban → apps/kanban}/power.config.json +35 -35
- package/examples/{planning Poker → apps/planning Poker}/additional files/customizations (tables).xml +6428 -6428
- package/examples/{planning Poker → apps/planning Poker}/additional files/dataverse-tables.json +165 -165
- package/examples/{planning Poker → apps/planning Poker}/additional files/readme.md +122 -122
- package/examples/{planning Poker → apps/planning Poker}/dist/dataverse.js +78 -78
- package/examples/{planning Poker → apps/planning Poker}/dist/index.html +198 -198
- package/examples/{planning Poker → apps/planning Poker}/dist/index.js +954 -954
- package/examples/{todo/dist/power-apps-data.js → apps/planning Poker/dist/power-apps-data.js } +2953 -2953
- package/examples/{planning Poker → apps/planning Poker}/dist/styles.css +815 -815
- package/examples/{planning Poker → apps/planning Poker}/power.config.json +50 -50
- package/examples/{outlook Demo2 → apps/solution explorer}/dist/codeapp.js +9 -245
- package/examples/apps/solution explorer/dist/index.html +80 -0
- package/examples/apps/solution explorer/dist/index.js +735 -0
- package/examples/apps/solution explorer/dist/styles.css +571 -0
- package/examples/apps/solution explorer/power.config.json +151 -0
- package/examples/{todo → apps/todo}/dist/dataverse.js +64 -64
- package/examples/{todo → apps/todo}/dist/index.html +75 -75
- package/examples/{todo → apps/todo}/dist/index.js +8 -8
- package/examples/{kanban → apps/todo}/dist/power-apps-data.js +2953 -2953
- package/examples/{todo → apps/todo}/dist/renderer.js +375 -375
- package/examples/{todo → apps/todo}/dist/styles.css +691 -691
- package/examples/{todo → apps/todo}/power.config.json +34 -34
- package/examples/combined demo/.power/schemas/appschemas/dataSourcesInfo.ts +6275 -7830
- package/examples/combined demo/.power/schemas/jira/jira.Schema.json +6903 -0
- package/examples/combined demo/.power/schemas/keyvault/keyvault.Schema.json +1600 -0
- package/examples/combined demo/.power/schemas/teams/teams.Schema.json +11112 -0
- package/examples/combined demo/dist/codeapp.js +394 -1098
- package/examples/{outlook Demo2/OutlookDemo_1_0_0_1.zip → combined demo/dist/icon-512.png} +0 -0
- package/examples/combined demo/dist/index.html +29 -511
- package/examples/combined demo/dist/index.js +490 -470
- package/examples/combined demo/dist/office365users.js +513 -0
- package/examples/combined demo/dist/outlook.js +1393 -0
- package/examples/combined demo/dist/power-apps-data.js +3079 -3006
- package/examples/combined demo/dist/styles.css +483 -0
- package/examples/combined demo/power.config.json +33 -42
- package/examples/combined demo/src/generated/index.ts +12 -14
- package/examples/combined demo/src/generated/models/AzureKeyVaultModel.ts +107 -0
- package/examples/combined demo/src/generated/models/JiraModel.ts +501 -0
- package/examples/combined demo/src/generated/services/AzureKeyVaultService.ts +257 -0
- package/examples/combined demo/src/generated/services/JiraService.ts +1124 -0
- package/examples/dataverse Demo/dist/codeapp.js +394 -1085
- package/examples/dataverse Demo/dist/icon-512.png +0 -0
- package/examples/dataverse Demo/dist/index.html +146 -54
- package/examples/dataverse Demo/dist/index.js +693 -83
- package/examples/dataverse Demo/dist/power-apps-data.js +3079 -2911
- package/examples/dataverse Demo/dist/styles.css +528 -0
- package/examples/dataverse Demo/power.config.json +41 -35
- package/examples/dataverse Demo/readme.md +79 -79
- package/examples/groups Demo/dist/codeapp.js +394 -1085
- package/examples/groups Demo/dist/icon-512.png +0 -0
- package/examples/groups Demo/dist/index.html +21 -25
- package/examples/groups Demo/dist/index.js +304 -113
- package/examples/groups Demo/dist/office365groups.js +642 -0
- package/examples/groups Demo/dist/power-apps-data.js +3079 -2911
- package/examples/groups Demo/dist/styles.css +509 -0
- package/examples/groups Demo/power.config.json +25 -25
- package/examples/myProfile/dist/codeapp.js +398 -0
- package/examples/myProfile/dist/index.html +21 -184
- package/examples/myProfile/dist/index.js +324 -141
- package/examples/myProfile/dist/office365users.js +517 -169
- package/examples/myProfile/dist/power-apps-data.js +3080 -2953
- package/examples/myProfile/dist/styles.css +458 -0
- package/examples/myProfile/power.config.json +24 -23
- package/examples/outlook Demo/dist/codeapp.js +394 -1085
- package/examples/outlook Demo/dist/index.html +150 -35
- package/examples/outlook Demo/dist/index.js +516 -170
- package/examples/outlook Demo/dist/outlook.js +1393 -121
- package/examples/outlook Demo/dist/power-apps-data.js +3079 -2911
- package/examples/outlook Demo/dist/styles.css +408 -84
- package/examples/outlook Demo/power.config.json +24 -23
- package/examples/outlook Demo/readme.md +92 -82
- package/examples/sharePoint Demo/dist/codeapp.js +394 -1085
- package/examples/sharePoint Demo/dist/icon-512.png +0 -0
- package/examples/sharePoint Demo/dist/index.html +22 -255
- package/examples/sharePoint Demo/dist/index.js +899 -262
- package/examples/sharePoint Demo/dist/power-apps-data.js +3079 -2911
- package/examples/sharePoint Demo/dist/sharepoint.js +466 -0
- package/examples/sharePoint Demo/dist/styles.css +587 -0
- package/examples/sharePoint Demo/power.config.json +23 -22
- package/package.json +1 -1
- package/readme.md +465 -76
- package/.vscode/settings.json +0 -6
- package/dev files/customConnector.js +0 -98
- package/dev files/dataverse.js +0 -120
- package/dev files/environmentVar.js +0 -55
- package/dev files/office365groups.js +0 -65
- package/dev files/office365users.js +0 -169
- package/dev files/outlook.js +0 -330
- package/dev files/power-apps-data.js +0 -2952
- package/examples/combined demo/.power/schemas/office365/office365.Schema.json +0 -21098
- package/examples/combined demo/.power/schemas/office365users/office365users.Schema.json +0 -2094
- package/examples/kanban/agent/decision-log.md +0 -9
- package/examples/kanban/agent/mockup-01-editorial-glass.html +0 -159
- package/examples/kanban/agent/mockup-02-dark-rail.html +0 -147
- package/examples/kanban/agent/mockup-03-paper-grid.html +0 -114
- package/examples/kanban/agent/mockup-04-neon-minimal.html +0 -141
- package/examples/kanban/agent/mockup-05-mono-architect.html +0 -119
- package/examples/kanban/dist/office365users.js +0 -169
- package/examples/kanban/src/generated/index.ts +0 -14
- package/examples/kanban/src/generated/models/Office365GroupsModel.ts +0 -363
- package/examples/kanban/src/generated/models/Office365OutlookModel.ts +0 -2046
- package/examples/kanban/src/generated/models/Office365UsersModel.ts +0 -254
- package/examples/kanban/src/generated/services/Office365GroupsService.ts +0 -326
- package/examples/kanban/src/generated/services/Office365OutlookService.ts +0 -2476
- package/examples/kanban/src/generated/services/Office365UsersService.ts +0 -358
- package/examples/outlook Demo2/agent/decision-log.md +0 -7
- package/examples/outlook Demo2/dist/index.html +0 -98
- package/examples/outlook Demo2/dist/index.js +0 -272
- package/examples/outlook Demo2/dist/styles.css +0 -639
- package/examples/outlook Demo2/power.config.json +0 -23
- package/examples/planning Poker/.vscode/settings.json +0 -5
- package/examples/sharePoint Demo/agent/decision-log.md +0 -17
- /package/examples/{outlook Demo2 → apps/kanban}/src/generated/index.ts +0 -0
- /package/examples/{outlook Demo2 → apps/kanban}/src/generated/models/Office365GroupsModel.ts +0 -0
- /package/examples/{outlook Demo2 → apps/kanban}/src/generated/models/Office365OutlookModel.ts +0 -0
- /package/examples/{outlook Demo2 → apps/kanban}/src/generated/models/Office365UsersModel.ts +0 -0
- /package/examples/{outlook Demo2 → apps/kanban}/src/generated/services/Office365GroupsService.ts +0 -0
- /package/examples/{outlook Demo2 → apps/kanban}/src/generated/services/Office365OutlookService.ts +0 -0
- /package/examples/{outlook Demo2 → apps/kanban}/src/generated/services/Office365UsersService.ts +0 -0
- /package/examples/{planning Poker → apps/planning Poker}/additional files/AgilePoker_1_0_0_1.zip +0 -0
- /package/examples/{planning Poker → apps/planning Poker}/additional files/PokerTables_1_0_0_1.zip +0 -0
- /package/examples/{outlook Demo2 → apps/solution explorer}/dist/icon-512.png +0 -0
- /package/examples/{outlook Demo2 → apps/solution explorer}/dist/power-apps-data.js +0 -0
- /package/examples/{todo → apps/todo}/dist/icon192.png +0 -0
|
@@ -0,0 +1,483 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--bg: #f3ecdf;
|
|
3
|
+
--bg-accent: #e7d8c2;
|
|
4
|
+
--surface: rgba(255, 251, 245, 0.86);
|
|
5
|
+
--surface-strong: rgba(255, 255, 255, 0.92);
|
|
6
|
+
--border: rgba(73, 53, 37, 0.12);
|
|
7
|
+
--ink: #1f1a17;
|
|
8
|
+
--muted: #6b6259;
|
|
9
|
+
--accent: #b45a3c;
|
|
10
|
+
--accent-strong: #82412a;
|
|
11
|
+
--accent-soft: rgba(180, 90, 60, 0.12);
|
|
12
|
+
--shadow: 0 24px 70px rgba(54, 38, 25, 0.14);
|
|
13
|
+
--radius-lg: 28px;
|
|
14
|
+
--radius-md: 20px;
|
|
15
|
+
--radius-sm: 14px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
* {
|
|
19
|
+
box-sizing: border-box;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
html,
|
|
23
|
+
body {
|
|
24
|
+
margin: 0;
|
|
25
|
+
min-height: 100%;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
body {
|
|
29
|
+
background:
|
|
30
|
+
radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 32%),
|
|
31
|
+
radial-gradient(circle at right 10%, rgba(180, 90, 60, 0.14), transparent 26%),
|
|
32
|
+
linear-gradient(180deg, #f7f1e7 0%, var(--bg) 48%, var(--bg-accent) 100%);
|
|
33
|
+
color: var(--ink);
|
|
34
|
+
font-family: "Trebuchet MS", "Gill Sans", sans-serif;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
body::before {
|
|
38
|
+
content: "";
|
|
39
|
+
position: fixed;
|
|
40
|
+
inset: 0;
|
|
41
|
+
pointer-events: none;
|
|
42
|
+
background-image: linear-gradient(rgba(73, 53, 37, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(73, 53, 37, 0.025) 1px, transparent 1px);
|
|
43
|
+
background-size: 22px 22px;
|
|
44
|
+
mask-image: radial-gradient(circle at center, black 58%, transparent 95%);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
a {
|
|
48
|
+
color: inherit;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
button {
|
|
52
|
+
font: inherit;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
#root {
|
|
56
|
+
position: relative;
|
|
57
|
+
z-index: 1;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.app-shell {
|
|
61
|
+
width: min(1180px, calc(100vw - 32px));
|
|
62
|
+
margin: 0 auto;
|
|
63
|
+
padding: 32px 0 40px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.hero-card,
|
|
67
|
+
.panel {
|
|
68
|
+
border: 1px solid var(--border);
|
|
69
|
+
background: var(--surface);
|
|
70
|
+
backdrop-filter: blur(16px);
|
|
71
|
+
box-shadow: var(--shadow);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.hero-card {
|
|
75
|
+
position: relative;
|
|
76
|
+
overflow: hidden;
|
|
77
|
+
border-radius: var(--radius-lg);
|
|
78
|
+
padding: 28px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.hero-card::before {
|
|
82
|
+
content: "";
|
|
83
|
+
position: absolute;
|
|
84
|
+
inset: 0;
|
|
85
|
+
background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 42%), linear-gradient(115deg, rgba(180, 90, 60, 0.08), transparent 55%);
|
|
86
|
+
pointer-events: none;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.hero-layout {
|
|
90
|
+
position: relative;
|
|
91
|
+
display: grid;
|
|
92
|
+
grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.95fr);
|
|
93
|
+
gap: 24px;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.eyebrow {
|
|
97
|
+
margin: 0 0 10px;
|
|
98
|
+
color: var(--accent-strong);
|
|
99
|
+
font-size: 0.8rem;
|
|
100
|
+
font-weight: 700;
|
|
101
|
+
letter-spacing: 0.18em;
|
|
102
|
+
text-transform: uppercase;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.hero-heading {
|
|
106
|
+
margin: 0;
|
|
107
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
108
|
+
font-size: clamp(2.2rem, 4vw, 4rem);
|
|
109
|
+
font-weight: 600;
|
|
110
|
+
line-height: 0.95;
|
|
111
|
+
letter-spacing: -0.04em;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.hero-subtitle {
|
|
115
|
+
max-width: 46ch;
|
|
116
|
+
margin: 14px 0 24px;
|
|
117
|
+
color: var(--muted);
|
|
118
|
+
font-size: 1rem;
|
|
119
|
+
line-height: 1.65;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.hero-meta {
|
|
123
|
+
display: flex;
|
|
124
|
+
flex-wrap: wrap;
|
|
125
|
+
gap: 10px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.meta-chip {
|
|
129
|
+
border: 1px solid rgba(73, 53, 37, 0.12);
|
|
130
|
+
border-radius: 999px;
|
|
131
|
+
background: rgba(255, 255, 255, 0.72);
|
|
132
|
+
padding: 10px 14px;
|
|
133
|
+
color: var(--muted);
|
|
134
|
+
font-size: 0.9rem;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.hero-side {
|
|
138
|
+
display: grid;
|
|
139
|
+
gap: 16px;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.profile-card,
|
|
143
|
+
.stats-card {
|
|
144
|
+
border-radius: 24px;
|
|
145
|
+
background: var(--surface-strong);
|
|
146
|
+
border: 1px solid rgba(73, 53, 37, 0.1);
|
|
147
|
+
padding: 18px;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.profile-card {
|
|
151
|
+
display: grid;
|
|
152
|
+
grid-template-columns: auto 1fr;
|
|
153
|
+
gap: 16px;
|
|
154
|
+
align-items: center;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.avatar-frame {
|
|
158
|
+
width: 94px;
|
|
159
|
+
height: 94px;
|
|
160
|
+
border-radius: 24px;
|
|
161
|
+
overflow: hidden;
|
|
162
|
+
background: linear-gradient(135deg, #ead7c1 0%, #c78a6b 100%);
|
|
163
|
+
display: grid;
|
|
164
|
+
place-items: center;
|
|
165
|
+
color: white;
|
|
166
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
167
|
+
font-size: 2rem;
|
|
168
|
+
letter-spacing: 0.08em;
|
|
169
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.avatar-frame img {
|
|
173
|
+
width: 100%;
|
|
174
|
+
height: 100%;
|
|
175
|
+
object-fit: cover;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.profile-name {
|
|
179
|
+
margin: 0;
|
|
180
|
+
font-size: 1.2rem;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.profile-role,
|
|
184
|
+
.profile-line,
|
|
185
|
+
.panel-subtitle,
|
|
186
|
+
.item-meta,
|
|
187
|
+
.empty-copy,
|
|
188
|
+
.status-copy,
|
|
189
|
+
.meeting-link {
|
|
190
|
+
color: var(--muted);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.profile-role {
|
|
194
|
+
margin: 6px 0 0;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.profile-line {
|
|
198
|
+
margin: 4px 0 0;
|
|
199
|
+
font-size: 0.92rem;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.stats-card {
|
|
203
|
+
display: grid;
|
|
204
|
+
gap: 14px;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.stats-row {
|
|
208
|
+
display: grid;
|
|
209
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
210
|
+
gap: 14px;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.stat-tile {
|
|
214
|
+
border-radius: 18px;
|
|
215
|
+
background: linear-gradient(180deg, rgba(255, 249, 243, 0.95), rgba(248, 238, 225, 0.95));
|
|
216
|
+
border: 1px solid rgba(73, 53, 37, 0.08);
|
|
217
|
+
padding: 16px;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.stat-label {
|
|
221
|
+
display: block;
|
|
222
|
+
margin-bottom: 8px;
|
|
223
|
+
font-size: 0.82rem;
|
|
224
|
+
font-weight: 700;
|
|
225
|
+
letter-spacing: 0.14em;
|
|
226
|
+
text-transform: uppercase;
|
|
227
|
+
color: var(--accent-strong);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.stat-value {
|
|
231
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
232
|
+
font-size: 2rem;
|
|
233
|
+
line-height: 1;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.toolbar {
|
|
237
|
+
display: flex;
|
|
238
|
+
align-items: center;
|
|
239
|
+
justify-content: space-between;
|
|
240
|
+
gap: 12px;
|
|
241
|
+
margin-top: 18px;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.status-copy {
|
|
245
|
+
font-size: 0.92rem;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.action-button {
|
|
249
|
+
border: none;
|
|
250
|
+
border-radius: 999px;
|
|
251
|
+
padding: 12px 18px;
|
|
252
|
+
background: var(--accent);
|
|
253
|
+
color: white;
|
|
254
|
+
cursor: pointer;
|
|
255
|
+
transition: transform 180ms ease, background 180ms ease;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.action-button:hover {
|
|
259
|
+
transform: translateY(-1px);
|
|
260
|
+
background: var(--accent-strong);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.action-button:disabled {
|
|
264
|
+
cursor: wait;
|
|
265
|
+
opacity: 0.7;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.content-grid {
|
|
269
|
+
display: grid;
|
|
270
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
271
|
+
gap: 22px;
|
|
272
|
+
margin-top: 22px;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.panel {
|
|
276
|
+
border-radius: var(--radius-md);
|
|
277
|
+
padding: 22px;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.panel-header {
|
|
281
|
+
display: flex;
|
|
282
|
+
align-items: end;
|
|
283
|
+
justify-content: space-between;
|
|
284
|
+
gap: 12px;
|
|
285
|
+
margin-bottom: 18px;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.panel-title {
|
|
289
|
+
margin: 0;
|
|
290
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
291
|
+
font-size: 1.5rem;
|
|
292
|
+
font-weight: 600;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.panel-subtitle {
|
|
296
|
+
margin: 6px 0 0;
|
|
297
|
+
font-size: 0.95rem;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.count-pill {
|
|
301
|
+
display: inline-flex;
|
|
302
|
+
align-items: center;
|
|
303
|
+
justify-content: center;
|
|
304
|
+
min-width: 38px;
|
|
305
|
+
height: 38px;
|
|
306
|
+
border-radius: 999px;
|
|
307
|
+
background: var(--accent-soft);
|
|
308
|
+
color: var(--accent-strong);
|
|
309
|
+
font-size: 0.95rem;
|
|
310
|
+
font-weight: 700;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.item-list {
|
|
314
|
+
display: grid;
|
|
315
|
+
gap: 12px;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.list-item {
|
|
319
|
+
border-radius: 18px;
|
|
320
|
+
border: 1px solid rgba(73, 53, 37, 0.08);
|
|
321
|
+
background: rgba(255, 255, 255, 0.76);
|
|
322
|
+
padding: 16px;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.list-item--unread {
|
|
326
|
+
border-color: rgba(180, 90, 60, 0.24);
|
|
327
|
+
box-shadow: inset 3px 0 0 var(--accent);
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.item-topline {
|
|
331
|
+
display: flex;
|
|
332
|
+
align-items: start;
|
|
333
|
+
justify-content: space-between;
|
|
334
|
+
gap: 14px;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.item-title {
|
|
338
|
+
margin: 0;
|
|
339
|
+
font-size: 1rem;
|
|
340
|
+
line-height: 1.35;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.item-time {
|
|
344
|
+
flex-shrink: 0;
|
|
345
|
+
color: var(--accent-strong);
|
|
346
|
+
font-size: 0.84rem;
|
|
347
|
+
font-weight: 700;
|
|
348
|
+
letter-spacing: 0.08em;
|
|
349
|
+
text-transform: uppercase;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.item-meta {
|
|
353
|
+
margin: 8px 0 0;
|
|
354
|
+
font-size: 0.92rem;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.item-preview {
|
|
358
|
+
margin: 10px 0 0;
|
|
359
|
+
color: var(--ink);
|
|
360
|
+
font-size: 0.95rem;
|
|
361
|
+
line-height: 1.55;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.meeting-link {
|
|
365
|
+
display: inline-block;
|
|
366
|
+
margin-top: 12px;
|
|
367
|
+
text-decoration: none;
|
|
368
|
+
font-size: 0.9rem;
|
|
369
|
+
font-weight: 700;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.meeting-link:hover {
|
|
373
|
+
color: var(--accent-strong);
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.empty-state,
|
|
377
|
+
.notice {
|
|
378
|
+
border-radius: 18px;
|
|
379
|
+
border: 1px dashed rgba(73, 53, 37, 0.18);
|
|
380
|
+
padding: 22px;
|
|
381
|
+
background: rgba(255, 255, 255, 0.54);
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.empty-title,
|
|
385
|
+
.notice-title {
|
|
386
|
+
margin: 0 0 8px;
|
|
387
|
+
font-size: 1rem;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.empty-copy,
|
|
391
|
+
.notice-copy {
|
|
392
|
+
margin: 0;
|
|
393
|
+
line-height: 1.6;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.notice {
|
|
397
|
+
margin-top: 18px;
|
|
398
|
+
border-style: solid;
|
|
399
|
+
border-color: rgba(180, 90, 60, 0.2);
|
|
400
|
+
background: rgba(180, 90, 60, 0.08);
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.notice-title,
|
|
404
|
+
.notice-copy {
|
|
405
|
+
color: #6f3927;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.loading-shell .skeleton-block,
|
|
409
|
+
.list-item.skeleton,
|
|
410
|
+
.stat-tile.skeleton,
|
|
411
|
+
.profile-card.skeleton {
|
|
412
|
+
position: relative;
|
|
413
|
+
overflow: hidden;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.loading-shell .skeleton-block::after,
|
|
417
|
+
.list-item.skeleton::after,
|
|
418
|
+
.stat-tile.skeleton::after,
|
|
419
|
+
.profile-card.skeleton::after {
|
|
420
|
+
content: "";
|
|
421
|
+
position: absolute;
|
|
422
|
+
inset: 0;
|
|
423
|
+
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
|
|
424
|
+
transform: translateX(-100%);
|
|
425
|
+
animation: shimmer 1.5s infinite;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.loading-shell .hero-card {
|
|
429
|
+
min-height: 300px;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.loading-shell .panel {
|
|
433
|
+
min-height: 340px;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
@keyframes shimmer {
|
|
437
|
+
100% {
|
|
438
|
+
transform: translateX(100%);
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
@media (max-width: 900px) {
|
|
443
|
+
.hero-layout,
|
|
444
|
+
.content-grid {
|
|
445
|
+
grid-template-columns: 1fr;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.hero-heading {
|
|
449
|
+
font-size: 2.6rem;
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
@media (max-width: 640px) {
|
|
454
|
+
.app-shell {
|
|
455
|
+
width: min(100vw - 20px, 100%);
|
|
456
|
+
padding: 18px 0 28px;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.hero-card,
|
|
460
|
+
.panel {
|
|
461
|
+
padding: 18px;
|
|
462
|
+
border-radius: 22px;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.profile-card {
|
|
466
|
+
grid-template-columns: 1fr;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.stats-row {
|
|
470
|
+
grid-template-columns: 1fr 1fr;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.toolbar,
|
|
474
|
+
.panel-header,
|
|
475
|
+
.item-topline {
|
|
476
|
+
align-items: start;
|
|
477
|
+
flex-direction: column;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.item-time {
|
|
481
|
+
margin-top: 4px;
|
|
482
|
+
}
|
|
483
|
+
}
|
|
@@ -1,43 +1,34 @@
|
|
|
1
|
-
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"dataSources": [
|
|
35
|
-
"office365groups"
|
|
36
|
-
],
|
|
37
|
-
"authenticationType": null,
|
|
38
|
-
"sharedConnectionId": null,
|
|
39
|
-
"dataSets": {}
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"databaseReferences": {}
|
|
1
|
+
{
|
|
2
|
+
"appId": "ea69ae82-53f2-44a8-966b-8338a079ed76",
|
|
3
|
+
"appDisplayName": "test Outlook Skill",
|
|
4
|
+
"description": "Shows the signed-in user's profile, today's emails, and today's meetings.",
|
|
5
|
+
"environmentId": "<ENVIRONMENT_ID>",
|
|
6
|
+
"buildPath": "./dist",
|
|
7
|
+
"buildEntryPoint": "index.html",
|
|
8
|
+
"logoPath": "./dist/icon-512.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": "b950ec12b23a417cb9819cb39417e105",
|
|
20
|
+
"dataSets": {}
|
|
21
|
+
},
|
|
22
|
+
"office365users": {
|
|
23
|
+
"id": "/providers/Microsoft.PowerApps/apis/shared_office365users",
|
|
24
|
+
"displayName": "Office 365 Users",
|
|
25
|
+
"dataSources": [
|
|
26
|
+
"office365users"
|
|
27
|
+
],
|
|
28
|
+
"authenticationType": null,
|
|
29
|
+
"sharedConnectionId": "c668989c8535495aaf2672d13d21b815",
|
|
30
|
+
"dataSets": {}
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"databaseReferences": {}
|
|
43
34
|
}
|
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Copyright (C) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* This file is autogenerated. Do not edit this file directly.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
// Models
|
|
7
|
-
export * as
|
|
8
|
-
export * as
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
export * from './services/
|
|
13
|
-
export * from './services/Office365OutlookService';
|
|
14
|
-
export * from './services/Office365UsersService';
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (C) Microsoft Corporation. All rights reserved.
|
|
3
|
+
* This file is autogenerated. Do not edit this file directly.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
// Models
|
|
7
|
+
export * as AzureKeyVaultModel from './models/AzureKeyVaultModel';
|
|
8
|
+
export * as JiraModel from './models/JiraModel';
|
|
9
|
+
|
|
10
|
+
// Services
|
|
11
|
+
export * from './services/AzureKeyVaultService';
|
|
12
|
+
export * from './services/JiraService';
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (C) Microsoft Corporation. All rights reserved.
|
|
3
|
+
* This file is autogenerated. Do not edit this file directly.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
export interface KeyMetadataCollection {
|
|
7
|
+
// The keys
|
|
8
|
+
value?: KeyMetadata[];
|
|
9
|
+
// Continuation token
|
|
10
|
+
continuationToken?: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export interface KeyMetadata {
|
|
14
|
+
// Name of the key
|
|
15
|
+
name?: string;
|
|
16
|
+
// Version of the key
|
|
17
|
+
version?: string;
|
|
18
|
+
// A flag indicating whether the key is enabled
|
|
19
|
+
isEnabled?: boolean;
|
|
20
|
+
// Time when the key was created
|
|
21
|
+
createdTime?: string;
|
|
22
|
+
// Time when the key was last updated
|
|
23
|
+
lastUpdatedTime?: string;
|
|
24
|
+
// Time when the key validity starts.
|
|
25
|
+
validityStartTime?: string;
|
|
26
|
+
// Time when the key validity ends.
|
|
27
|
+
validityEndTime?: string;
|
|
28
|
+
// Operations allowed using the key
|
|
29
|
+
allowedOperations?: string[];
|
|
30
|
+
// Type of the key
|
|
31
|
+
keyType?: string;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export type KeyEncryptInputalgorithm = 'RSA-OAEP-256'|'RSA-OAEP'|'RSA1_5';
|
|
35
|
+
|
|
36
|
+
export interface KeyEncryptInput {
|
|
37
|
+
// Algorithm to use for encrypting the data
|
|
38
|
+
algorithm: KeyEncryptInputalgorithm;
|
|
39
|
+
// Data to encrypt
|
|
40
|
+
rawData: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface KeyEncryptOutput {
|
|
44
|
+
// Encrypted data
|
|
45
|
+
encryptedData?: string;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export type KeyDecryptInputalgorithm = 'RSA-OAEP-256'|'RSA-OAEP'|'RSA1_5';
|
|
49
|
+
|
|
50
|
+
export interface KeyDecryptInput {
|
|
51
|
+
// Algorithm to use for decrypting the data
|
|
52
|
+
algorithm: KeyDecryptInputalgorithm;
|
|
53
|
+
// Data to decrypt
|
|
54
|
+
encryptedData: string;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export interface KeyDecryptOutput {
|
|
58
|
+
// Raw data
|
|
59
|
+
rawData?: string;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export interface SecretMetadataCollection {
|
|
63
|
+
// The secrets
|
|
64
|
+
value?: SecretMetadata[];
|
|
65
|
+
// Continuation token
|
|
66
|
+
continuationToken?: string;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export interface SecretMetadata {
|
|
70
|
+
// Name of the secret
|
|
71
|
+
name?: string;
|
|
72
|
+
// Version of the secret
|
|
73
|
+
version?: string;
|
|
74
|
+
// Content type of the secret
|
|
75
|
+
contentType?: string;
|
|
76
|
+
// A flag indicating whether the secret is enabled
|
|
77
|
+
isEnabled?: boolean;
|
|
78
|
+
// Time when the secret was created
|
|
79
|
+
createdTime?: string;
|
|
80
|
+
// Time when the secret was last updated
|
|
81
|
+
lastUpdatedTime?: string;
|
|
82
|
+
// Time when the secret validity starts.
|
|
83
|
+
validityStartTime?: string;
|
|
84
|
+
// Time when the secret validity ends.
|
|
85
|
+
validityEndTime?: string;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface Secret {
|
|
89
|
+
// Value of the secret
|
|
90
|
+
value?: string;
|
|
91
|
+
// Name of the secret
|
|
92
|
+
name?: string;
|
|
93
|
+
// Version of the secret
|
|
94
|
+
version?: string;
|
|
95
|
+
// Content type of the secret
|
|
96
|
+
contentType?: string;
|
|
97
|
+
// A flag indicating whether the secret is enabled
|
|
98
|
+
isEnabled?: boolean;
|
|
99
|
+
// Time when the secret was created
|
|
100
|
+
createdTime?: string;
|
|
101
|
+
// Time when the secret was last updated
|
|
102
|
+
lastUpdatedTime?: string;
|
|
103
|
+
// Time when the secret validity starts.
|
|
104
|
+
validityStartTime?: string;
|
|
105
|
+
// Time when the secret validity ends.
|
|
106
|
+
validityEndTime?: string;
|
|
107
|
+
}
|