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,509 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--color-ink: #14213d;
|
|
3
|
+
--color-ink-soft: #4f5d75;
|
|
4
|
+
--color-paper: #fbf7ef;
|
|
5
|
+
--color-panel: rgba(255, 251, 245, 0.86);
|
|
6
|
+
--color-panel-strong: rgba(255, 252, 247, 0.96);
|
|
7
|
+
--color-line: rgba(20, 33, 61, 0.08);
|
|
8
|
+
--color-accent: #d66a3d;
|
|
9
|
+
--color-accent-deep: #8d3d20;
|
|
10
|
+
--color-accent-soft: rgba(214, 106, 61, 0.12);
|
|
11
|
+
--color-success: #256f5a;
|
|
12
|
+
--color-warning: #8c6a16;
|
|
13
|
+
--color-danger: #8f2d2d;
|
|
14
|
+
--shadow-soft: 0 20px 60px rgba(20, 33, 61, 0.12);
|
|
15
|
+
--radius-xl: 30px;
|
|
16
|
+
--radius-lg: 22px;
|
|
17
|
+
--radius-md: 16px;
|
|
18
|
+
--radius-sm: 12px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
* {
|
|
22
|
+
box-sizing: border-box;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
html {
|
|
26
|
+
min-height: 100%;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
body {
|
|
30
|
+
margin: 0;
|
|
31
|
+
min-height: 100vh;
|
|
32
|
+
font-family: "Segoe UI Variable", Aptos, "Segoe UI", sans-serif;
|
|
33
|
+
color: var(--color-ink);
|
|
34
|
+
background:
|
|
35
|
+
radial-gradient(circle at top left, rgba(214, 106, 61, 0.22), transparent 28%),
|
|
36
|
+
radial-gradient(circle at top right, rgba(37, 111, 90, 0.14), transparent 25%),
|
|
37
|
+
linear-gradient(180deg, #fffaf2 0%, #f6efe2 52%, #f2eadc 100%);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
body::before {
|
|
41
|
+
content: "";
|
|
42
|
+
position: fixed;
|
|
43
|
+
inset: 0;
|
|
44
|
+
pointer-events: none;
|
|
45
|
+
opacity: 0.3;
|
|
46
|
+
background-image:
|
|
47
|
+
linear-gradient(var(--color-line) 1px, transparent 1px),
|
|
48
|
+
linear-gradient(90deg, var(--color-line) 1px, transparent 1px);
|
|
49
|
+
background-size: 32px 32px;
|
|
50
|
+
mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 82%);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
button,
|
|
54
|
+
input {
|
|
55
|
+
font: inherit;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
button {
|
|
59
|
+
cursor: pointer;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.app-shell {
|
|
63
|
+
position: relative;
|
|
64
|
+
max-width: 1240px;
|
|
65
|
+
margin: 0 auto;
|
|
66
|
+
padding: 28px 18px 42px;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.hero {
|
|
70
|
+
position: relative;
|
|
71
|
+
overflow: hidden;
|
|
72
|
+
display: grid;
|
|
73
|
+
grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.85fr);
|
|
74
|
+
gap: 18px;
|
|
75
|
+
padding: 28px;
|
|
76
|
+
border: 1px solid rgba(214, 106, 61, 0.15);
|
|
77
|
+
border-radius: var(--radius-xl);
|
|
78
|
+
background: linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(248, 240, 225, 0.9));
|
|
79
|
+
box-shadow: var(--shadow-soft);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.hero::after {
|
|
83
|
+
content: "";
|
|
84
|
+
position: absolute;
|
|
85
|
+
right: -90px;
|
|
86
|
+
top: -100px;
|
|
87
|
+
width: 250px;
|
|
88
|
+
height: 250px;
|
|
89
|
+
border-radius: 50%;
|
|
90
|
+
background: radial-gradient(circle, rgba(214, 106, 61, 0.22), transparent 70%);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.eyebrow {
|
|
94
|
+
margin: 0 0 10px;
|
|
95
|
+
font-size: 0.78rem;
|
|
96
|
+
font-weight: 700;
|
|
97
|
+
letter-spacing: 0.22em;
|
|
98
|
+
text-transform: uppercase;
|
|
99
|
+
color: var(--color-accent-deep);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.hero h1 {
|
|
103
|
+
margin: 0;
|
|
104
|
+
max-width: 11ch;
|
|
105
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
106
|
+
font-size: clamp(2.8rem, 4.8vw, 4.8rem);
|
|
107
|
+
line-height: 0.94;
|
|
108
|
+
letter-spacing: -0.05em;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.hero p {
|
|
112
|
+
margin: 14px 0 0;
|
|
113
|
+
max-width: 56ch;
|
|
114
|
+
color: var(--color-ink-soft);
|
|
115
|
+
line-height: 1.65;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.hero-meta {
|
|
119
|
+
display: grid;
|
|
120
|
+
gap: 12px;
|
|
121
|
+
align-content: start;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.meta-card,
|
|
125
|
+
.toolbar,
|
|
126
|
+
.metric,
|
|
127
|
+
.status,
|
|
128
|
+
.group-card {
|
|
129
|
+
backdrop-filter: blur(10px);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.meta-card {
|
|
133
|
+
padding: 16px;
|
|
134
|
+
border: 1px solid rgba(20, 33, 61, 0.08);
|
|
135
|
+
border-radius: var(--radius-lg);
|
|
136
|
+
background: rgba(255, 252, 247, 0.82);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.meta-label {
|
|
140
|
+
display: block;
|
|
141
|
+
margin-bottom: 6px;
|
|
142
|
+
font-size: 0.74rem;
|
|
143
|
+
font-weight: 700;
|
|
144
|
+
letter-spacing: 0.16em;
|
|
145
|
+
text-transform: uppercase;
|
|
146
|
+
color: var(--color-ink-soft);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.meta-value {
|
|
150
|
+
line-height: 1.55;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.toolbar {
|
|
154
|
+
display: flex;
|
|
155
|
+
justify-content: space-between;
|
|
156
|
+
align-items: center;
|
|
157
|
+
gap: 16px;
|
|
158
|
+
margin-top: 18px;
|
|
159
|
+
padding: 18px;
|
|
160
|
+
border: 1px solid rgba(20, 33, 61, 0.08);
|
|
161
|
+
border-radius: var(--radius-lg);
|
|
162
|
+
background: var(--color-panel);
|
|
163
|
+
box-shadow: var(--shadow-soft);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.toolbar-copy {
|
|
167
|
+
display: grid;
|
|
168
|
+
gap: 4px;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.toolbar-copy strong {
|
|
172
|
+
font-size: 1.02rem;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.toolbar-copy span {
|
|
176
|
+
color: var(--color-ink-soft);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.toolbar-actions {
|
|
180
|
+
display: flex;
|
|
181
|
+
align-items: center;
|
|
182
|
+
gap: 10px;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.search-input {
|
|
186
|
+
width: min(340px, 50vw);
|
|
187
|
+
min-width: 220px;
|
|
188
|
+
padding: 12px 14px;
|
|
189
|
+
border: 1px solid rgba(20, 33, 61, 0.12);
|
|
190
|
+
border-radius: 999px;
|
|
191
|
+
background: rgba(255, 252, 247, 0.96);
|
|
192
|
+
color: var(--color-ink);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.search-input:focus {
|
|
196
|
+
outline: 2px solid rgba(214, 106, 61, 0.18);
|
|
197
|
+
border-color: rgba(214, 106, 61, 0.32);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.button {
|
|
201
|
+
border: 0;
|
|
202
|
+
border-radius: 999px;
|
|
203
|
+
padding: 12px 16px;
|
|
204
|
+
color: #fff7f0;
|
|
205
|
+
background: linear-gradient(135deg, var(--color-accent), var(--color-accent-deep));
|
|
206
|
+
box-shadow: 0 12px 24px rgba(214, 106, 61, 0.24);
|
|
207
|
+
transition: transform 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.button:hover {
|
|
211
|
+
transform: translateY(-1px);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.button:disabled {
|
|
215
|
+
opacity: 0.6;
|
|
216
|
+
cursor: not-allowed;
|
|
217
|
+
transform: none;
|
|
218
|
+
box-shadow: none;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.metrics {
|
|
222
|
+
display: grid;
|
|
223
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
224
|
+
gap: 16px;
|
|
225
|
+
margin-top: 18px;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.metric {
|
|
229
|
+
padding: 18px;
|
|
230
|
+
border: 1px solid rgba(20, 33, 61, 0.08);
|
|
231
|
+
border-radius: var(--radius-lg);
|
|
232
|
+
background: rgba(255, 252, 247, 0.8);
|
|
233
|
+
box-shadow: var(--shadow-soft);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.metric-label {
|
|
237
|
+
display: block;
|
|
238
|
+
margin-bottom: 10px;
|
|
239
|
+
font-size: 0.76rem;
|
|
240
|
+
letter-spacing: 0.16em;
|
|
241
|
+
text-transform: uppercase;
|
|
242
|
+
color: var(--color-ink-soft);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.metric-value {
|
|
246
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
247
|
+
font-size: clamp(1.9rem, 2.4vw, 2.8rem);
|
|
248
|
+
line-height: 1;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.status {
|
|
252
|
+
display: flex;
|
|
253
|
+
gap: 12px;
|
|
254
|
+
margin-top: 18px;
|
|
255
|
+
padding: 16px 18px;
|
|
256
|
+
border: 1px solid rgba(20, 33, 61, 0.08);
|
|
257
|
+
border-radius: var(--radius-lg);
|
|
258
|
+
background: rgba(255, 252, 247, 0.88);
|
|
259
|
+
box-shadow: var(--shadow-soft);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.status[data-tone="success"] {
|
|
263
|
+
border-color: rgba(37, 111, 90, 0.18);
|
|
264
|
+
background: rgba(238, 248, 244, 0.95);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.status[data-tone="error"] {
|
|
268
|
+
border-color: rgba(143, 45, 45, 0.18);
|
|
269
|
+
background: rgba(252, 239, 239, 0.96);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.status[data-tone="loading"] {
|
|
273
|
+
border-color: rgba(140, 106, 22, 0.18);
|
|
274
|
+
background: rgba(252, 247, 233, 0.96);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.status-mark {
|
|
278
|
+
flex: 0 0 auto;
|
|
279
|
+
width: 34px;
|
|
280
|
+
height: 34px;
|
|
281
|
+
border-radius: 50%;
|
|
282
|
+
background: var(--color-accent-soft);
|
|
283
|
+
color: var(--color-accent-deep);
|
|
284
|
+
display: grid;
|
|
285
|
+
place-items: center;
|
|
286
|
+
font-weight: 700;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.status[data-tone="success"] .status-mark {
|
|
290
|
+
background: rgba(37, 111, 90, 0.12);
|
|
291
|
+
color: var(--color-success);
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.status[data-tone="error"] .status-mark {
|
|
295
|
+
background: rgba(143, 45, 45, 0.12);
|
|
296
|
+
color: var(--color-danger);
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.status[data-tone="loading"] .status-mark {
|
|
300
|
+
background: rgba(140, 106, 22, 0.12);
|
|
301
|
+
color: var(--color-warning);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.status-copy strong {
|
|
305
|
+
display: block;
|
|
306
|
+
margin-bottom: 4px;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.status-copy p,
|
|
310
|
+
.status-copy pre {
|
|
311
|
+
margin: 0;
|
|
312
|
+
color: var(--color-ink-soft);
|
|
313
|
+
line-height: 1.55;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.status-copy pre {
|
|
317
|
+
margin-top: 8px;
|
|
318
|
+
white-space: pre-wrap;
|
|
319
|
+
word-break: break-word;
|
|
320
|
+
font-family: Consolas, "Courier New", monospace;
|
|
321
|
+
font-size: 0.85rem;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.section-head {
|
|
325
|
+
display: flex;
|
|
326
|
+
justify-content: space-between;
|
|
327
|
+
align-items: flex-end;
|
|
328
|
+
gap: 14px;
|
|
329
|
+
margin-top: 24px;
|
|
330
|
+
margin-bottom: 14px;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.section-head h2 {
|
|
334
|
+
margin: 0;
|
|
335
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
336
|
+
font-size: 1.7rem;
|
|
337
|
+
letter-spacing: -0.03em;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.section-head p {
|
|
341
|
+
margin: 6px 0 0;
|
|
342
|
+
color: var(--color-ink-soft);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.group-grid {
|
|
346
|
+
display: grid;
|
|
347
|
+
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
348
|
+
gap: 16px;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.group-card {
|
|
352
|
+
position: relative;
|
|
353
|
+
overflow: hidden;
|
|
354
|
+
display: grid;
|
|
355
|
+
gap: 14px;
|
|
356
|
+
padding: 20px;
|
|
357
|
+
border: 1px solid rgba(20, 33, 61, 0.08);
|
|
358
|
+
border-radius: var(--radius-lg);
|
|
359
|
+
background: var(--color-panel-strong);
|
|
360
|
+
box-shadow: var(--shadow-soft);
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.group-card::after {
|
|
364
|
+
content: "";
|
|
365
|
+
position: absolute;
|
|
366
|
+
right: -44px;
|
|
367
|
+
top: -44px;
|
|
368
|
+
width: 120px;
|
|
369
|
+
height: 120px;
|
|
370
|
+
border-radius: 50%;
|
|
371
|
+
background: radial-gradient(circle, rgba(214, 106, 61, 0.14), transparent 72%);
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.card-top {
|
|
375
|
+
position: relative;
|
|
376
|
+
z-index: 1;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.card-kicker {
|
|
380
|
+
display: inline-flex;
|
|
381
|
+
align-items: center;
|
|
382
|
+
gap: 8px;
|
|
383
|
+
margin-bottom: 12px;
|
|
384
|
+
padding: 8px 12px;
|
|
385
|
+
border-radius: 999px;
|
|
386
|
+
background: var(--color-accent-soft);
|
|
387
|
+
color: var(--color-accent-deep);
|
|
388
|
+
font-size: 0.78rem;
|
|
389
|
+
font-weight: 700;
|
|
390
|
+
letter-spacing: 0.12em;
|
|
391
|
+
text-transform: uppercase;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.card-title {
|
|
395
|
+
margin: 0;
|
|
396
|
+
font-size: 1.2rem;
|
|
397
|
+
line-height: 1.3;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.card-description {
|
|
401
|
+
margin: 10px 0 0;
|
|
402
|
+
color: var(--color-ink-soft);
|
|
403
|
+
line-height: 1.6;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.meta-list {
|
|
407
|
+
display: grid;
|
|
408
|
+
gap: 10px;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.meta-row {
|
|
412
|
+
display: grid;
|
|
413
|
+
gap: 4px;
|
|
414
|
+
padding-top: 10px;
|
|
415
|
+
border-top: 1px solid rgba(20, 33, 61, 0.08);
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.meta-row span {
|
|
419
|
+
font-size: 0.75rem;
|
|
420
|
+
letter-spacing: 0.14em;
|
|
421
|
+
text-transform: uppercase;
|
|
422
|
+
color: var(--color-ink-soft);
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.meta-row strong,
|
|
426
|
+
.meta-row a {
|
|
427
|
+
color: var(--color-ink);
|
|
428
|
+
line-height: 1.45;
|
|
429
|
+
word-break: break-word;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.meta-row a {
|
|
433
|
+
text-decoration: none;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.meta-row a:hover {
|
|
437
|
+
text-decoration: underline;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.tag-row {
|
|
441
|
+
display: flex;
|
|
442
|
+
flex-wrap: wrap;
|
|
443
|
+
gap: 8px;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.tag {
|
|
447
|
+
display: inline-flex;
|
|
448
|
+
align-items: center;
|
|
449
|
+
padding: 7px 10px;
|
|
450
|
+
border-radius: 999px;
|
|
451
|
+
background: rgba(20, 33, 61, 0.06);
|
|
452
|
+
color: var(--color-ink-soft);
|
|
453
|
+
font-size: 0.78rem;
|
|
454
|
+
font-weight: 700;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.empty-state {
|
|
458
|
+
padding: 24px;
|
|
459
|
+
border: 1px dashed rgba(20, 33, 61, 0.18);
|
|
460
|
+
border-radius: var(--radius-lg);
|
|
461
|
+
background: rgba(255, 252, 247, 0.72);
|
|
462
|
+
color: var(--color-ink-soft);
|
|
463
|
+
line-height: 1.7;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.footer-note {
|
|
467
|
+
margin-top: 18px;
|
|
468
|
+
color: var(--color-ink-soft);
|
|
469
|
+
font-size: 0.92rem;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
@media (max-width: 920px) {
|
|
473
|
+
.hero {
|
|
474
|
+
grid-template-columns: 1fr;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.toolbar {
|
|
478
|
+
flex-direction: column;
|
|
479
|
+
align-items: stretch;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.toolbar-actions {
|
|
483
|
+
width: 100%;
|
|
484
|
+
flex-direction: column;
|
|
485
|
+
align-items: stretch;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.search-input {
|
|
489
|
+
width: 100%;
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
@media (max-width: 720px) {
|
|
494
|
+
.app-shell {
|
|
495
|
+
padding: 18px 14px 30px;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.hero,
|
|
499
|
+
.toolbar,
|
|
500
|
+
.metric,
|
|
501
|
+
.status,
|
|
502
|
+
.group-card {
|
|
503
|
+
padding: 18px;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.metrics {
|
|
507
|
+
grid-template-columns: 1fr;
|
|
508
|
+
}
|
|
509
|
+
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
{
|
|
2
|
-
"appId": "afb6517a-1b6d-4890-ae9f-3375fa875a0f",
|
|
3
|
-
"appDisplayName": "test groups app",
|
|
4
|
-
"description": "",
|
|
5
|
-
"environmentId": "
|
|
6
|
-
"buildPath": "./dist",
|
|
7
|
-
"buildEntryPoint": "index.html",
|
|
8
|
-
"logoPath": "",
|
|
9
|
-
"localAppUrl": "http://localhost:3000",
|
|
10
|
-
"region": "prod",
|
|
11
|
-
"connectionReferences": {
|
|
12
|
-
"office365groups": {
|
|
13
|
-
"id": "/providers/Microsoft.PowerApps/apis/shared_office365groups",
|
|
14
|
-
"displayName": "Office 365 Groups",
|
|
15
|
-
"dataSources": [
|
|
16
|
-
"office365groups"
|
|
17
|
-
],
|
|
18
|
-
"authenticationType": null,
|
|
19
|
-
"sharedConnectionId":
|
|
20
|
-
"dataSets": {}
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"databaseReferences": {},
|
|
24
|
-
"version": "1.0"
|
|
25
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"appId": "afb6517a-1b6d-4890-ae9f-3375fa875a0f",
|
|
3
|
+
"appDisplayName": "test groups app",
|
|
4
|
+
"description": "",
|
|
5
|
+
"environmentId": "<ENVIRONMENT_ID>",
|
|
6
|
+
"buildPath": "./dist",
|
|
7
|
+
"buildEntryPoint": "index.html",
|
|
8
|
+
"logoPath": "",
|
|
9
|
+
"localAppUrl": "http://localhost:3000",
|
|
10
|
+
"region": "prod",
|
|
11
|
+
"connectionReferences": {
|
|
12
|
+
"office365groups": {
|
|
13
|
+
"id": "/providers/Microsoft.PowerApps/apis/shared_office365groups",
|
|
14
|
+
"displayName": "Office 365 Groups",
|
|
15
|
+
"dataSources": [
|
|
16
|
+
"office365groups"
|
|
17
|
+
],
|
|
18
|
+
"authenticationType": null,
|
|
19
|
+
"sharedConnectionId": "7a17eee561f64d779ce5feb92b1d0db0",
|
|
20
|
+
"dataSets": {}
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"databaseReferences": {},
|
|
24
|
+
"version": "1.0"
|
|
25
|
+
}
|