codeapp-js 0.2.2 → 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/codeApp/.power/schemas/appschemas/dataSourcesInfo.ts +6275 -0
- package/codeApp/.power/schemas/jira/jira.Schema.json +6903 -0
- package/codeApp/.power/schemas/keyvault/keyvault.Schema.json +1600 -0
- package/{examples/combined demo/.power/schemas/office365groups/office365groups.Schema.json → codeApp/.power/schemas/office365groups/office365groups.Schema.json} +2203 -2203
- package/codeApp/.power/schemas/teams/teams.Schema.json +11112 -0
- package/codeApp/dist/codeapp.js +103 -1043
- 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/{examples/kanban/dist → codeApp/dist/connectors}/sharepoint.js +466 -339
- package/codeApp/dist/connectors/sql.js +149 -0
- package/codeApp/dist/connectors/teams.js +280 -0
- package/codeApp/dist/index.js +1 -1
- package/codeApp/dist/power-apps-data.js +725 -176
- package/codeApp/src/generated/index.ts +12 -0
- package/codeApp/src/generated/models/AzureKeyVaultModel.ts +107 -0
- package/codeApp/src/generated/models/JiraModel.ts +501 -0
- package/codeApp/src/generated/services/AzureKeyVaultService.ts +257 -0
- package/codeApp/src/generated/services/JiraService.ts +1124 -0
- package/examples/{kanban → apps/kanban}/dist/dataverse.js +94 -94
- 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/{dev files/sharepoint.js → examples/apps/kanban/dist/sharepoint.js} +195 -99
- 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/{kanban/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/{solution explorer → apps/solution explorer}/dist/codeapp.js +1098 -1098
- package/examples/{solution explorer → apps/solution explorer}/dist/index.html +80 -80
- package/examples/{solution explorer → apps/solution explorer}/dist/index.js +735 -735
- package/examples/{solution explorer → apps/solution explorer}/dist/styles.css +571 -571
- package/examples/{solution explorer → apps/solution explorer}/power.config.json +150 -150
- 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/{todo → 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/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/{outlook Demo2/OutlookDemo_1_0_0_1.zip → 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 +479 -61
- package/.github/instructions/wyattdave.instructions.md +0 -39
- package/.vscode/settings.json +0 -6
- package/dev files/dataverse.js +0 -105
- package/dev files/office365groups.js +0 -65
- package/dev files/office365users.js +0 -169
- package/dev files/outlook.js +0 -330
- 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/environmentVar.js +0 -55
- package/examples/kanban/dist/office365users.js +0 -169
- package/examples/kanban/src/generated/index.ts +0 -14
- package/examples/outlook Demo2/agent/decision-log.md +0 -7
- package/examples/outlook Demo2/dist/codeapp.js +0 -1334
- package/examples/outlook Demo2/dist/index.html +0 -98
- package/examples/outlook Demo2/dist/index.js +0 -346
- 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/solution explorer/agent/decision-log.md +0 -27
- package/examples/solution explorer/agent/mockup-01-swiss-grid.html +0 -452
- package/examples/solution explorer/agent/mockup-02-dark-glass.html +0 -496
- package/examples/solution explorer/agent/mockup-03-paper-console.html +0 -510
- package/examples/solution explorer/agent/mockup-04-neon-noir.html +0 -546
- package/examples/solution explorer/agent/mockup-05-zen-garden.html +0 -534
- package/examples/solution explorer/dist/power-apps-data.js +0 -3007
- package/scripts/build-power-sdk.mjs +0 -69
- /package/{examples/kanban → codeApp}/src/generated/models/Office365GroupsModel.ts +0 -0
- /package/{examples/kanban → codeApp}/src/generated/models/Office365OutlookModel.ts +0 -0
- /package/{examples/kanban → codeApp}/src/generated/models/Office365UsersModel.ts +0 -0
- /package/{examples/kanban → codeApp}/src/generated/services/Office365GroupsService.ts +0 -0
- /package/{examples/kanban → codeApp}/src/generated/services/Office365OutlookService.ts +0 -0
- /package/{examples/kanban → codeApp}/src/generated/services/Office365UsersService.ts +0 -0
- /package/{dev files → examples/apps/kanban/dist}/environmentVar.js +0 -0
- /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
- /package/examples/{solution explorer → combined demo}/dist/icon-512.png +0 -0
|
@@ -0,0 +1,458 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--page-ink: #173640;
|
|
3
|
+
--page-muted: #5e7378;
|
|
4
|
+
--page-soft: #f7efe4;
|
|
5
|
+
--page-surface: rgba(255, 249, 241, 0.78);
|
|
6
|
+
--page-surface-strong: rgba(255, 255, 255, 0.92);
|
|
7
|
+
--page-line: rgba(23, 54, 64, 0.12);
|
|
8
|
+
--page-accent: #0f766e;
|
|
9
|
+
--page-accent-strong: #124c5a;
|
|
10
|
+
--page-warm: #d67c55;
|
|
11
|
+
--page-shadow: 0 24px 60px rgba(18, 58, 67, 0.16);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
* {
|
|
15
|
+
box-sizing: border-box;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
html {
|
|
19
|
+
min-height: 100%;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
body {
|
|
23
|
+
min-height: 100vh;
|
|
24
|
+
margin: 0;
|
|
25
|
+
color: var(--page-ink);
|
|
26
|
+
font-family: "Trebuchet MS", "Segoe UI", sans-serif;
|
|
27
|
+
background:
|
|
28
|
+
radial-gradient(circle at top left, rgba(214, 124, 85, 0.26), transparent 34%),
|
|
29
|
+
radial-gradient(circle at 85% 12%, rgba(15, 118, 110, 0.2), transparent 28%),
|
|
30
|
+
linear-gradient(160deg, #f4ebde 0%, #eef5f1 52%, #e6f0ef 100%);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
body::before,
|
|
34
|
+
body::after {
|
|
35
|
+
content: "";
|
|
36
|
+
position: fixed;
|
|
37
|
+
inset: auto;
|
|
38
|
+
border-radius: 999px;
|
|
39
|
+
pointer-events: none;
|
|
40
|
+
filter: blur(12px);
|
|
41
|
+
opacity: 0.55;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
body::before {
|
|
45
|
+
top: 8%;
|
|
46
|
+
right: -6rem;
|
|
47
|
+
width: 18rem;
|
|
48
|
+
height: 18rem;
|
|
49
|
+
background: rgba(214, 124, 85, 0.18);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
body::after {
|
|
53
|
+
left: -5rem;
|
|
54
|
+
bottom: 8%;
|
|
55
|
+
width: 15rem;
|
|
56
|
+
height: 15rem;
|
|
57
|
+
background: rgba(15, 118, 110, 0.16);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
img {
|
|
61
|
+
display: block;
|
|
62
|
+
max-width: 100%;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
button,
|
|
66
|
+
a {
|
|
67
|
+
font: inherit;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
#root {
|
|
71
|
+
min-height: 100vh;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.page-shell,
|
|
75
|
+
.status-shell {
|
|
76
|
+
width: min(1120px, calc(100% - 32px));
|
|
77
|
+
margin: 0 auto;
|
|
78
|
+
padding: 40px 0 56px;
|
|
79
|
+
position: relative;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.hero-card,
|
|
83
|
+
.panel,
|
|
84
|
+
.status-card {
|
|
85
|
+
border: 1px solid var(--page-line);
|
|
86
|
+
background: var(--page-surface);
|
|
87
|
+
backdrop-filter: blur(18px);
|
|
88
|
+
box-shadow: var(--page-shadow);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.hero-card {
|
|
92
|
+
display: grid;
|
|
93
|
+
grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
|
|
94
|
+
gap: 28px;
|
|
95
|
+
padding: 28px;
|
|
96
|
+
border-radius: 30px;
|
|
97
|
+
overflow: hidden;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.photo-column {
|
|
101
|
+
display: flex;
|
|
102
|
+
flex-direction: column;
|
|
103
|
+
gap: 14px;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.photo-frame {
|
|
107
|
+
position: relative;
|
|
108
|
+
border-radius: 24px;
|
|
109
|
+
overflow: hidden;
|
|
110
|
+
background:
|
|
111
|
+
linear-gradient(150deg, rgba(15, 118, 110, 0.92), rgba(18, 76, 90, 0.78)),
|
|
112
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
|
|
113
|
+
min-height: 280px;
|
|
114
|
+
border: 1px solid rgba(255, 255, 255, 0.28);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.photo-frame::after {
|
|
118
|
+
content: "";
|
|
119
|
+
position: absolute;
|
|
120
|
+
inset: 0;
|
|
121
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(10, 36, 41, 0.22) 100%);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.photo-image,
|
|
125
|
+
.photo-fallback {
|
|
126
|
+
width: 100%;
|
|
127
|
+
height: 100%;
|
|
128
|
+
min-height: 280px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.photo-image {
|
|
132
|
+
object-fit: cover;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.photo-fallback {
|
|
136
|
+
display: grid;
|
|
137
|
+
place-items: center;
|
|
138
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
139
|
+
font-size: clamp(3rem, 8vw, 5rem);
|
|
140
|
+
letter-spacing: 0.08em;
|
|
141
|
+
color: #fef8f1;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.photo-caption {
|
|
145
|
+
padding: 14px 16px;
|
|
146
|
+
border-radius: 18px;
|
|
147
|
+
background: var(--page-surface-strong);
|
|
148
|
+
border: 1px solid var(--page-line);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.caption-label {
|
|
152
|
+
margin: 0 0 4px;
|
|
153
|
+
font-size: 0.72rem;
|
|
154
|
+
letter-spacing: 0.14em;
|
|
155
|
+
text-transform: uppercase;
|
|
156
|
+
color: var(--page-muted);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.caption-value {
|
|
160
|
+
margin: 0;
|
|
161
|
+
font-size: 1rem;
|
|
162
|
+
font-weight: 700;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.hero-copy {
|
|
166
|
+
display: flex;
|
|
167
|
+
flex-direction: column;
|
|
168
|
+
justify-content: center;
|
|
169
|
+
gap: 18px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.eyebrow {
|
|
173
|
+
margin: 0;
|
|
174
|
+
font-size: 0.78rem;
|
|
175
|
+
letter-spacing: 0.22em;
|
|
176
|
+
text-transform: uppercase;
|
|
177
|
+
color: var(--page-accent-strong);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.hero-title {
|
|
181
|
+
margin: 0;
|
|
182
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
183
|
+
font-size: clamp(2.4rem, 5vw, 4.4rem);
|
|
184
|
+
line-height: 0.96;
|
|
185
|
+
letter-spacing: -0.04em;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.hero-subtitle,
|
|
189
|
+
.panel-text,
|
|
190
|
+
.status-text {
|
|
191
|
+
margin: 0;
|
|
192
|
+
max-width: 56ch;
|
|
193
|
+
color: var(--page-muted);
|
|
194
|
+
line-height: 1.7;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.hero-chips,
|
|
198
|
+
.action-row,
|
|
199
|
+
.summary-grid,
|
|
200
|
+
.detail-grid {
|
|
201
|
+
display: flex;
|
|
202
|
+
flex-wrap: wrap;
|
|
203
|
+
gap: 12px;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.hero-chips {
|
|
207
|
+
margin: 0;
|
|
208
|
+
padding: 0;
|
|
209
|
+
list-style: none;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.hero-chip,
|
|
213
|
+
.summary-card {
|
|
214
|
+
border: 1px solid var(--page-line);
|
|
215
|
+
background: rgba(255, 255, 255, 0.72);
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.hero-chip {
|
|
219
|
+
padding: 10px 14px;
|
|
220
|
+
border-radius: 999px;
|
|
221
|
+
font-size: 0.92rem;
|
|
222
|
+
color: var(--page-accent-strong);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.action-row {
|
|
226
|
+
align-items: center;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.button {
|
|
230
|
+
display: inline-flex;
|
|
231
|
+
align-items: center;
|
|
232
|
+
justify-content: center;
|
|
233
|
+
min-height: 46px;
|
|
234
|
+
padding: 0 18px;
|
|
235
|
+
border-radius: 999px;
|
|
236
|
+
border: 1px solid transparent;
|
|
237
|
+
background: linear-gradient(135deg, var(--page-accent), var(--page-accent-strong));
|
|
238
|
+
color: #f8fcfb;
|
|
239
|
+
font-weight: 700;
|
|
240
|
+
text-decoration: none;
|
|
241
|
+
cursor: pointer;
|
|
242
|
+
transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
|
|
243
|
+
box-shadow: 0 16px 30px rgba(18, 76, 90, 0.2);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.button:hover,
|
|
247
|
+
.button:focus-visible {
|
|
248
|
+
transform: translateY(-1px);
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.button:focus-visible {
|
|
252
|
+
outline: 2px solid rgba(18, 76, 90, 0.28);
|
|
253
|
+
outline-offset: 3px;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.button-secondary {
|
|
257
|
+
color: var(--page-accent-strong);
|
|
258
|
+
background: rgba(255, 255, 255, 0.84);
|
|
259
|
+
border-color: var(--page-line);
|
|
260
|
+
box-shadow: none;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.button[disabled] {
|
|
264
|
+
opacity: 0.72;
|
|
265
|
+
cursor: wait;
|
|
266
|
+
transform: none;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.summary-grid,
|
|
270
|
+
.detail-grid {
|
|
271
|
+
margin-top: 22px;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.summary-grid {
|
|
275
|
+
display: grid;
|
|
276
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.summary-card {
|
|
280
|
+
min-height: 132px;
|
|
281
|
+
padding: 18px;
|
|
282
|
+
border-radius: 22px;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.summary-label {
|
|
286
|
+
margin: 0 0 12px;
|
|
287
|
+
font-size: 0.78rem;
|
|
288
|
+
letter-spacing: 0.12em;
|
|
289
|
+
text-transform: uppercase;
|
|
290
|
+
color: var(--page-muted);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.summary-value {
|
|
294
|
+
margin: 0;
|
|
295
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
296
|
+
font-size: clamp(1.6rem, 3vw, 2.4rem);
|
|
297
|
+
line-height: 1;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.summary-note {
|
|
301
|
+
margin: 10px 0 0;
|
|
302
|
+
color: var(--page-muted);
|
|
303
|
+
line-height: 1.5;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.detail-grid {
|
|
307
|
+
display: grid;
|
|
308
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.panel {
|
|
312
|
+
padding: 22px;
|
|
313
|
+
border-radius: 24px;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.panel-title {
|
|
317
|
+
margin: 0 0 6px;
|
|
318
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
319
|
+
font-size: 1.5rem;
|
|
320
|
+
line-height: 1.1;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.info-list {
|
|
324
|
+
margin: 16px 0 0;
|
|
325
|
+
padding: 0;
|
|
326
|
+
list-style: none;
|
|
327
|
+
display: grid;
|
|
328
|
+
gap: 14px;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.info-item {
|
|
332
|
+
display: grid;
|
|
333
|
+
gap: 4px;
|
|
334
|
+
padding-top: 14px;
|
|
335
|
+
border-top: 1px solid var(--page-line);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.info-item:first-child {
|
|
339
|
+
padding-top: 0;
|
|
340
|
+
border-top: 0;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.info-label {
|
|
344
|
+
font-size: 0.8rem;
|
|
345
|
+
letter-spacing: 0.12em;
|
|
346
|
+
text-transform: uppercase;
|
|
347
|
+
color: var(--page-muted);
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.info-value,
|
|
351
|
+
.info-value a {
|
|
352
|
+
font-size: 1rem;
|
|
353
|
+
color: var(--page-ink);
|
|
354
|
+
text-decoration: none;
|
|
355
|
+
word-break: break-word;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.info-value a:hover,
|
|
359
|
+
.info-value a:focus-visible {
|
|
360
|
+
color: var(--page-accent-strong);
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.panel-accent {
|
|
364
|
+
background:
|
|
365
|
+
linear-gradient(160deg, rgba(15, 118, 110, 0.14), rgba(255, 255, 255, 0.82)),
|
|
366
|
+
var(--page-surface);
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.account-highlight {
|
|
370
|
+
display: grid;
|
|
371
|
+
gap: 12px;
|
|
372
|
+
margin-top: 18px;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.highlight-item {
|
|
376
|
+
padding: 14px 16px;
|
|
377
|
+
border-radius: 18px;
|
|
378
|
+
border: 1px solid rgba(15, 118, 110, 0.18);
|
|
379
|
+
background: rgba(255, 255, 255, 0.78);
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.highlight-label {
|
|
383
|
+
margin: 0 0 5px;
|
|
384
|
+
font-size: 0.74rem;
|
|
385
|
+
letter-spacing: 0.12em;
|
|
386
|
+
text-transform: uppercase;
|
|
387
|
+
color: var(--page-muted);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.highlight-value {
|
|
391
|
+
margin: 0;
|
|
392
|
+
font-size: 1rem;
|
|
393
|
+
font-weight: 700;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.footer-note {
|
|
397
|
+
margin-top: 18px;
|
|
398
|
+
font-size: 0.92rem;
|
|
399
|
+
color: var(--page-muted);
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.status-shell {
|
|
403
|
+
display: grid;
|
|
404
|
+
place-items: center;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.status-card {
|
|
408
|
+
width: min(720px, 100%);
|
|
409
|
+
padding: 32px;
|
|
410
|
+
border-radius: 28px;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.status-title {
|
|
414
|
+
margin: 0 0 10px;
|
|
415
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
416
|
+
font-size: clamp(2rem, 4vw, 3rem);
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.status-actions {
|
|
420
|
+
margin-top: 22px;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.status-card.is-error {
|
|
424
|
+
background: rgba(255, 248, 246, 0.94);
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
@media (max-width: 960px) {
|
|
428
|
+
.hero-card,
|
|
429
|
+
.detail-grid,
|
|
430
|
+
.summary-grid {
|
|
431
|
+
grid-template-columns: 1fr;
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
@media (max-width: 720px) {
|
|
436
|
+
.page-shell,
|
|
437
|
+
.status-shell {
|
|
438
|
+
width: min(100%, calc(100% - 20px));
|
|
439
|
+
padding: 20px 0 36px;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.hero-card,
|
|
443
|
+
.panel,
|
|
444
|
+
.status-card {
|
|
445
|
+
padding: 20px;
|
|
446
|
+
border-radius: 24px;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.hero-title {
|
|
450
|
+
font-size: 2.3rem;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.photo-frame,
|
|
454
|
+
.photo-image,
|
|
455
|
+
.photo-fallback {
|
|
456
|
+
min-height: 240px;
|
|
457
|
+
}
|
|
458
|
+
}
|
|
@@ -1,23 +1,24 @@
|
|
|
1
|
-
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"appId": "c8f1a975-5b71-4e94-b588-a2cb4629ddb7",
|
|
3
|
+
"appDisplayName": "My Profile",
|
|
4
|
+
"description": "Displays the logged-in user's profile, manager, and direct reports using the Office 365 Users 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
|
+
"office365users": {
|
|
13
|
+
"id": "/providers/Microsoft.PowerApps/apis/shared_office365users",
|
|
14
|
+
"displayName": "Office 365 Users",
|
|
15
|
+
"dataSources": [
|
|
16
|
+
"office365users"
|
|
17
|
+
],
|
|
18
|
+
"authenticationType": null,
|
|
19
|
+
"sharedConnectionId": "c668989c8535495aaf2672d13d21b815",
|
|
20
|
+
"dataSets": {}
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"databaseReferences": {}
|
|
24
|
+
}
|