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.
- 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/codeApp/dist/connectors/sharepoint.js +466 -0
- 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/{dev files → examples/sharePoint Demo/dist}/sharepoint.js +239 -112
- 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
|
@@ -1,84 +1,408 @@
|
|
|
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
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
background:
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
1
|
+
:root {
|
|
2
|
+
--page: #f3efe7;
|
|
3
|
+
--ink: #1f2430;
|
|
4
|
+
--muted: #6f6a63;
|
|
5
|
+
--panel: rgba(255, 251, 245, 0.82);
|
|
6
|
+
--panel-strong: #fffdf8;
|
|
7
|
+
--line: rgba(45, 44, 40, 0.12);
|
|
8
|
+
--accent: #b54d2f;
|
|
9
|
+
--accent-deep: #7d2811;
|
|
10
|
+
--accent-soft: rgba(181, 77, 47, 0.12);
|
|
11
|
+
--shadow: 0 24px 80px rgba(67, 47, 25, 0.12);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
* {
|
|
15
|
+
box-sizing: border-box;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
html {
|
|
19
|
+
min-height: 100%;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
body {
|
|
23
|
+
margin: 0;
|
|
24
|
+
min-height: 100vh;
|
|
25
|
+
color: var(--ink);
|
|
26
|
+
background:
|
|
27
|
+
radial-gradient(circle at top left, rgba(181, 77, 47, 0.16), transparent 28%),
|
|
28
|
+
radial-gradient(circle at right 20%, rgba(23, 87, 122, 0.12), transparent 30%),
|
|
29
|
+
linear-gradient(180deg, #f7f1e7 0%, var(--page) 45%, #efe7db 100%);
|
|
30
|
+
font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
body::before {
|
|
34
|
+
content: '';
|
|
35
|
+
position: fixed;
|
|
36
|
+
inset: 0;
|
|
37
|
+
background-image:
|
|
38
|
+
linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
|
|
39
|
+
linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
|
|
40
|
+
background-size: 24px 24px;
|
|
41
|
+
opacity: 0.35;
|
|
42
|
+
pointer-events: none;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.app-shell {
|
|
46
|
+
position: relative;
|
|
47
|
+
z-index: 1;
|
|
48
|
+
padding: 28px;
|
|
49
|
+
display: grid;
|
|
50
|
+
gap: 20px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.hero-panel,
|
|
54
|
+
.panel {
|
|
55
|
+
background: var(--panel);
|
|
56
|
+
border: 1px solid var(--line);
|
|
57
|
+
backdrop-filter: blur(18px);
|
|
58
|
+
box-shadow: var(--shadow);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.hero-panel {
|
|
62
|
+
border-radius: 28px;
|
|
63
|
+
padding: 28px;
|
|
64
|
+
overflow: hidden;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.hero-panel::after {
|
|
68
|
+
content: '';
|
|
69
|
+
position: absolute;
|
|
70
|
+
inset: auto -8% -38% auto;
|
|
71
|
+
width: 280px;
|
|
72
|
+
height: 280px;
|
|
73
|
+
background: radial-gradient(circle, rgba(181, 77, 47, 0.22), transparent 66%);
|
|
74
|
+
pointer-events: none;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.eyebrow,
|
|
78
|
+
.panel-kicker,
|
|
79
|
+
.metric-label {
|
|
80
|
+
margin: 0;
|
|
81
|
+
text-transform: uppercase;
|
|
82
|
+
letter-spacing: 0.18em;
|
|
83
|
+
font-size: 11px;
|
|
84
|
+
font-weight: 700;
|
|
85
|
+
color: var(--accent-deep);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.hero-copy,
|
|
89
|
+
.panel-header {
|
|
90
|
+
display: flex;
|
|
91
|
+
gap: 18px;
|
|
92
|
+
justify-content: space-between;
|
|
93
|
+
align-items: flex-start;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.hero-copy {
|
|
97
|
+
margin-top: 12px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.hero-copy h1,
|
|
101
|
+
.panel-header h2 {
|
|
102
|
+
margin: 0;
|
|
103
|
+
font-family: 'Baskerville', 'Palatino Linotype', Georgia, serif;
|
|
104
|
+
font-weight: 700;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.hero-copy h1 {
|
|
108
|
+
font-size: clamp(40px, 8vw, 76px);
|
|
109
|
+
line-height: 0.96;
|
|
110
|
+
max-width: 7ch;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.hero-text,
|
|
114
|
+
.status-line,
|
|
115
|
+
.metric-note,
|
|
116
|
+
.field span,
|
|
117
|
+
.toggle-field span,
|
|
118
|
+
.compact-field span,
|
|
119
|
+
.mail-meta,
|
|
120
|
+
.event-meta,
|
|
121
|
+
.contact-meta {
|
|
122
|
+
color: var(--muted);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.hero-text {
|
|
126
|
+
margin: 14px 0 0;
|
|
127
|
+
max-width: 56ch;
|
|
128
|
+
font-size: 15px;
|
|
129
|
+
line-height: 1.6;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.hero-actions {
|
|
133
|
+
display: grid;
|
|
134
|
+
gap: 10px;
|
|
135
|
+
justify-items: end;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.status-line {
|
|
139
|
+
margin: 0;
|
|
140
|
+
font-size: 13px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.hero-metrics {
|
|
144
|
+
margin-top: 24px;
|
|
145
|
+
display: grid;
|
|
146
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
147
|
+
gap: 14px;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.metric-card {
|
|
151
|
+
padding: 16px;
|
|
152
|
+
border-radius: 20px;
|
|
153
|
+
background: rgba(255, 255, 255, 0.55);
|
|
154
|
+
border: 1px solid rgba(255, 255, 255, 0.8);
|
|
155
|
+
display: grid;
|
|
156
|
+
gap: 8px;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.metric-card strong {
|
|
160
|
+
font-family: 'Baskerville', 'Palatino Linotype', Georgia, serif;
|
|
161
|
+
font-size: 34px;
|
|
162
|
+
line-height: 1;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.workspace-grid {
|
|
166
|
+
display: grid;
|
|
167
|
+
grid-template-columns: minmax(290px, 0.95fr) minmax(320px, 1.1fr) minmax(300px, 0.9fr);
|
|
168
|
+
gap: 20px;
|
|
169
|
+
align-items: start;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.panel,
|
|
173
|
+
.side-column {
|
|
174
|
+
min-height: 0;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.panel {
|
|
178
|
+
border-radius: 24px;
|
|
179
|
+
padding: 18px;
|
|
180
|
+
display: grid;
|
|
181
|
+
gap: 16px;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.side-column {
|
|
185
|
+
display: grid;
|
|
186
|
+
gap: 20px;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.button {
|
|
190
|
+
appearance: none;
|
|
191
|
+
border: 1px solid rgba(31, 36, 48, 0.12);
|
|
192
|
+
background: rgba(255, 255, 255, 0.72);
|
|
193
|
+
color: var(--ink);
|
|
194
|
+
border-radius: 999px;
|
|
195
|
+
padding: 10px 14px;
|
|
196
|
+
font: inherit;
|
|
197
|
+
font-size: 13px;
|
|
198
|
+
cursor: pointer;
|
|
199
|
+
transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.button:hover {
|
|
203
|
+
transform: translateY(-1px);
|
|
204
|
+
background: rgba(255, 255, 255, 0.92);
|
|
205
|
+
border-color: rgba(31, 36, 48, 0.22);
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.button:disabled {
|
|
209
|
+
cursor: not-allowed;
|
|
210
|
+
opacity: 0.5;
|
|
211
|
+
transform: none;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.button-primary {
|
|
215
|
+
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
|
|
216
|
+
border-color: transparent;
|
|
217
|
+
color: #fff8f4;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.control-stack,
|
|
221
|
+
.field,
|
|
222
|
+
.compact-field {
|
|
223
|
+
display: grid;
|
|
224
|
+
gap: 8px;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.field input,
|
|
228
|
+
.compact-field select,
|
|
229
|
+
.diagnostic-select {
|
|
230
|
+
width: 100%;
|
|
231
|
+
border-radius: 14px;
|
|
232
|
+
border: 1px solid rgba(31, 36, 48, 0.12);
|
|
233
|
+
background: rgba(255, 255, 255, 0.7);
|
|
234
|
+
color: var(--ink);
|
|
235
|
+
padding: 11px 12px;
|
|
236
|
+
font: inherit;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.toggle-field {
|
|
240
|
+
display: flex;
|
|
241
|
+
align-items: center;
|
|
242
|
+
gap: 10px;
|
|
243
|
+
font-size: 14px;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.mail-list,
|
|
247
|
+
.event-list,
|
|
248
|
+
.contact-list,
|
|
249
|
+
.category-list {
|
|
250
|
+
display: grid;
|
|
251
|
+
gap: 10px;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.mail-item,
|
|
255
|
+
.event-item,
|
|
256
|
+
.contact-item,
|
|
257
|
+
.category-pill {
|
|
258
|
+
border-radius: 18px;
|
|
259
|
+
border: 1px solid rgba(31, 36, 48, 0.08);
|
|
260
|
+
background: rgba(255, 255, 255, 0.7);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.mail-item {
|
|
264
|
+
padding: 14px;
|
|
265
|
+
text-align: left;
|
|
266
|
+
cursor: pointer;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.mail-item.is-active {
|
|
270
|
+
border-color: rgba(181, 77, 47, 0.34);
|
|
271
|
+
background: linear-gradient(135deg, rgba(181, 77, 47, 0.16), rgba(255, 255, 255, 0.86));
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.mail-item-title,
|
|
275
|
+
.event-title,
|
|
276
|
+
.contact-name {
|
|
277
|
+
font-weight: 700;
|
|
278
|
+
line-height: 1.35;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.mail-item-subject {
|
|
282
|
+
margin: 6px 0 10px;
|
|
283
|
+
font-family: 'Baskerville', 'Palatino Linotype', Georgia, serif;
|
|
284
|
+
font-size: 20px;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.mail-meta,
|
|
288
|
+
.event-meta,
|
|
289
|
+
.contact-meta {
|
|
290
|
+
margin: 0;
|
|
291
|
+
font-size: 12px;
|
|
292
|
+
line-height: 1.5;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.mail-detail {
|
|
296
|
+
min-height: 280px;
|
|
297
|
+
padding: 18px;
|
|
298
|
+
border-radius: 22px;
|
|
299
|
+
background: var(--panel-strong);
|
|
300
|
+
border: 1px solid rgba(31, 36, 48, 0.08);
|
|
301
|
+
overflow: hidden;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.mail-detail h3 {
|
|
305
|
+
margin: 0;
|
|
306
|
+
font-family: 'Baskerville', 'Palatino Linotype', Georgia, serif;
|
|
307
|
+
font-size: 32px;
|
|
308
|
+
line-height: 1.1;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.mail-detail-grid {
|
|
312
|
+
display: grid;
|
|
313
|
+
gap: 14px;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.mail-detail-body {
|
|
317
|
+
margin: 0;
|
|
318
|
+
white-space: pre-wrap;
|
|
319
|
+
line-height: 1.6;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.detail-chip-row,
|
|
323
|
+
.category-list {
|
|
324
|
+
display: flex;
|
|
325
|
+
flex-wrap: wrap;
|
|
326
|
+
gap: 8px;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.detail-chip,
|
|
330
|
+
.category-pill {
|
|
331
|
+
padding: 8px 12px;
|
|
332
|
+
font-size: 12px;
|
|
333
|
+
border-radius: 999px;
|
|
334
|
+
background: var(--accent-soft);
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.event-item,
|
|
338
|
+
.contact-item {
|
|
339
|
+
padding: 12px 14px;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.diagnostic-output {
|
|
343
|
+
min-height: 180px;
|
|
344
|
+
max-height: 280px;
|
|
345
|
+
overflow: auto;
|
|
346
|
+
margin: 0;
|
|
347
|
+
padding: 14px;
|
|
348
|
+
border-radius: 18px;
|
|
349
|
+
background: #261f1a;
|
|
350
|
+
color: #f8eadf;
|
|
351
|
+
font-size: 12px;
|
|
352
|
+
line-height: 1.45;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.error-banner {
|
|
356
|
+
border-radius: 16px;
|
|
357
|
+
padding: 12px 14px;
|
|
358
|
+
background: rgba(166, 36, 24, 0.12);
|
|
359
|
+
border: 1px solid rgba(166, 36, 24, 0.18);
|
|
360
|
+
color: #7c1c10;
|
|
361
|
+
font-size: 13px;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.empty-state {
|
|
365
|
+
display: grid;
|
|
366
|
+
place-items: center;
|
|
367
|
+
text-align: center;
|
|
368
|
+
color: var(--muted);
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.is-hidden {
|
|
372
|
+
display: none;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
@media (max-width: 1100px) {
|
|
376
|
+
.hero-metrics,
|
|
377
|
+
.workspace-grid {
|
|
378
|
+
grid-template-columns: 1fr 1fr;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.panel-detail,
|
|
382
|
+
.side-column {
|
|
383
|
+
grid-column: span 2;
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
@media (max-width: 760px) {
|
|
388
|
+
.app-shell {
|
|
389
|
+
padding: 18px;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.hero-copy,
|
|
393
|
+
.panel-header,
|
|
394
|
+
.hero-metrics,
|
|
395
|
+
.workspace-grid {
|
|
396
|
+
grid-template-columns: 1fr;
|
|
397
|
+
flex-direction: column;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.hero-actions {
|
|
401
|
+
justify-items: start;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.panel-detail,
|
|
405
|
+
.side-column {
|
|
406
|
+
grid-column: auto;
|
|
407
|
+
}
|
|
408
|
+
}
|
|
@@ -1,24 +1,25 @@
|
|
|
1
|
-
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
1
|
+
{
|
|
2
|
+
"appId":"2977d2cf-e162-4df7-b609-306b4e6b9086",
|
|
3
|
+
"appDisplayName": "Outlook Inbox",
|
|
4
|
+
"description": "Displays the logged-in user's first 10 inbox emails using the Office 365 Outlook connector.",
|
|
5
|
+
"environmentId": "<ENVIRONMENT_ID>",
|
|
6
|
+
"buildPath": "./dist",
|
|
7
|
+
"buildEntryPoint": "index.html",
|
|
8
|
+
"logoPath": "office-240.png",
|
|
9
|
+
"localAppUrl": "http://localhost:3000",
|
|
10
|
+
"region": "prod",
|
|
11
|
+
"connectionReferences": {
|
|
12
|
+
"office365outlook": {
|
|
13
|
+
"id": "/providers/Microsoft.PowerApps/apis/shared_office365",
|
|
14
|
+
"displayName": "Office 365 Outlook",
|
|
15
|
+
"dataSources": [
|
|
16
|
+
"office365"
|
|
17
|
+
],
|
|
18
|
+
"authenticationType": null,
|
|
19
|
+
"sharedConnectionId": null,
|
|
20
|
+
"dataSets": {}
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"databaseReferences": {},
|
|
24
|
+
"version": "1.0"
|
|
24
25
|
}
|