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,587 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--color-paper: #f3e7d3;
|
|
3
|
+
--color-paper-strong: #ead9bf;
|
|
4
|
+
--color-ink: #1e241e;
|
|
5
|
+
--color-ink-soft: #556257;
|
|
6
|
+
--color-accent: #b3543a;
|
|
7
|
+
--color-accent-deep: #7a3424;
|
|
8
|
+
--color-emerald: #265948;
|
|
9
|
+
--color-line: rgba(30, 36, 30, 0.12);
|
|
10
|
+
--color-panel: rgba(255, 250, 242, 0.76);
|
|
11
|
+
--color-panel-strong: rgba(255, 249, 239, 0.95);
|
|
12
|
+
--color-danger: #8e2e2e;
|
|
13
|
+
--shadow-soft: 0 18px 45px rgba(59, 42, 30, 0.12);
|
|
14
|
+
--shadow-strong: 0 22px 60px rgba(59, 42, 30, 0.18);
|
|
15
|
+
--radius-xl: 28px;
|
|
16
|
+
--radius-lg: 20px;
|
|
17
|
+
--radius-md: 14px;
|
|
18
|
+
--radius-sm: 10px;
|
|
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", "Aptos", sans-serif;
|
|
33
|
+
color: var(--color-ink);
|
|
34
|
+
background:
|
|
35
|
+
radial-gradient(circle at top left, rgba(179, 84, 58, 0.22), transparent 32%),
|
|
36
|
+
radial-gradient(circle at top right, rgba(38, 89, 72, 0.16), transparent 28%),
|
|
37
|
+
linear-gradient(180deg, #f9efde 0%, #f3e7d3 45%, #efe3d1 100%);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
body::before {
|
|
41
|
+
content: "";
|
|
42
|
+
position: fixed;
|
|
43
|
+
inset: 0;
|
|
44
|
+
pointer-events: none;
|
|
45
|
+
opacity: 0.32;
|
|
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: 36px 36px;
|
|
50
|
+
mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
button,
|
|
54
|
+
input,
|
|
55
|
+
select,
|
|
56
|
+
textarea {
|
|
57
|
+
font: inherit;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.app-shell {
|
|
61
|
+
position: relative;
|
|
62
|
+
max-width: 1360px;
|
|
63
|
+
margin: 0 auto;
|
|
64
|
+
padding: 32px 20px 48px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.hero {
|
|
68
|
+
position: relative;
|
|
69
|
+
overflow: hidden;
|
|
70
|
+
display: grid;
|
|
71
|
+
grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
|
|
72
|
+
gap: 18px;
|
|
73
|
+
padding: 28px;
|
|
74
|
+
border: 1px solid rgba(122, 52, 36, 0.16);
|
|
75
|
+
border-radius: var(--radius-xl);
|
|
76
|
+
background: linear-gradient(135deg, rgba(255, 249, 239, 0.94), rgba(244, 234, 214, 0.82));
|
|
77
|
+
box-shadow: var(--shadow-soft);
|
|
78
|
+
animation: rise-in 500ms ease;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.hero::after {
|
|
82
|
+
content: "";
|
|
83
|
+
position: absolute;
|
|
84
|
+
right: -100px;
|
|
85
|
+
top: -110px;
|
|
86
|
+
width: 280px;
|
|
87
|
+
height: 280px;
|
|
88
|
+
border-radius: 50%;
|
|
89
|
+
background: radial-gradient(circle, rgba(179, 84, 58, 0.2), transparent 68%);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.eyebrow {
|
|
93
|
+
margin: 0 0 10px;
|
|
94
|
+
font-size: 0.78rem;
|
|
95
|
+
letter-spacing: 0.24em;
|
|
96
|
+
text-transform: uppercase;
|
|
97
|
+
color: var(--color-accent-deep);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.hero h1 {
|
|
101
|
+
margin: 0;
|
|
102
|
+
max-width: 12ch;
|
|
103
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
104
|
+
font-size: clamp(2.6rem, 4vw, 4.6rem);
|
|
105
|
+
line-height: 0.94;
|
|
106
|
+
letter-spacing: -0.04em;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.hero p {
|
|
110
|
+
margin: 14px 0 0;
|
|
111
|
+
max-width: 58ch;
|
|
112
|
+
color: var(--color-ink-soft);
|
|
113
|
+
line-height: 1.6;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.hero-meta {
|
|
117
|
+
display: grid;
|
|
118
|
+
gap: 12px;
|
|
119
|
+
align-content: start;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.meta-card,
|
|
123
|
+
.metric,
|
|
124
|
+
.panel {
|
|
125
|
+
backdrop-filter: blur(10px);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.meta-card {
|
|
129
|
+
position: relative;
|
|
130
|
+
padding: 16px;
|
|
131
|
+
border: 1px solid rgba(38, 89, 72, 0.14);
|
|
132
|
+
border-radius: var(--radius-lg);
|
|
133
|
+
background: rgba(255, 252, 246, 0.82);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.meta-label {
|
|
137
|
+
display: block;
|
|
138
|
+
margin-bottom: 6px;
|
|
139
|
+
font-size: 0.74rem;
|
|
140
|
+
font-weight: 700;
|
|
141
|
+
letter-spacing: 0.16em;
|
|
142
|
+
text-transform: uppercase;
|
|
143
|
+
color: var(--color-ink-soft);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.meta-value {
|
|
147
|
+
font-size: 1rem;
|
|
148
|
+
line-height: 1.45;
|
|
149
|
+
word-break: break-word;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.metrics {
|
|
153
|
+
display: grid;
|
|
154
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
155
|
+
gap: 16px;
|
|
156
|
+
margin-top: 18px;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.metric {
|
|
160
|
+
padding: 18px;
|
|
161
|
+
border: 1px solid rgba(30, 36, 30, 0.08);
|
|
162
|
+
border-radius: var(--radius-lg);
|
|
163
|
+
background: rgba(255, 252, 247, 0.7);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.metric-label {
|
|
167
|
+
display: block;
|
|
168
|
+
margin-bottom: 8px;
|
|
169
|
+
font-size: 0.76rem;
|
|
170
|
+
letter-spacing: 0.16em;
|
|
171
|
+
text-transform: uppercase;
|
|
172
|
+
color: var(--color-ink-soft);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.metric-value {
|
|
176
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
177
|
+
font-size: clamp(1.9rem, 2vw, 2.5rem);
|
|
178
|
+
line-height: 1;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.status {
|
|
182
|
+
display: flex;
|
|
183
|
+
align-items: flex-start;
|
|
184
|
+
gap: 10px;
|
|
185
|
+
margin-top: 18px;
|
|
186
|
+
padding: 14px 16px;
|
|
187
|
+
border-radius: var(--radius-md);
|
|
188
|
+
border: 1px solid rgba(122, 52, 36, 0.14);
|
|
189
|
+
background: rgba(255, 250, 245, 0.86);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.status[data-tone="error"] {
|
|
193
|
+
border-color: rgba(142, 46, 46, 0.18);
|
|
194
|
+
background: rgba(252, 238, 236, 0.92);
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.status[data-tone="success"] {
|
|
198
|
+
border-color: rgba(38, 89, 72, 0.16);
|
|
199
|
+
background: rgba(239, 248, 244, 0.92);
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.status strong {
|
|
203
|
+
display: block;
|
|
204
|
+
margin-bottom: 4px;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.pill-row {
|
|
208
|
+
display: flex;
|
|
209
|
+
flex-wrap: wrap;
|
|
210
|
+
gap: 10px;
|
|
211
|
+
margin-top: 18px;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.pill {
|
|
215
|
+
display: inline-flex;
|
|
216
|
+
align-items: center;
|
|
217
|
+
gap: 8px;
|
|
218
|
+
padding: 10px 14px;
|
|
219
|
+
border: 1px solid rgba(30, 36, 30, 0.08);
|
|
220
|
+
border-radius: 999px;
|
|
221
|
+
background: rgba(255, 252, 247, 0.86);
|
|
222
|
+
font-size: 0.92rem;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.pill b {
|
|
226
|
+
font-weight: 700;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.panel-grid {
|
|
230
|
+
display: grid;
|
|
231
|
+
grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.18fr);
|
|
232
|
+
gap: 18px;
|
|
233
|
+
margin-top: 20px;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.panel,
|
|
237
|
+
.editor-panel {
|
|
238
|
+
border: 1px solid rgba(30, 36, 30, 0.08);
|
|
239
|
+
border-radius: var(--radius-xl);
|
|
240
|
+
background: var(--color-panel);
|
|
241
|
+
box-shadow: var(--shadow-soft);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.panel {
|
|
245
|
+
padding: 22px;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.panel-header {
|
|
249
|
+
display: flex;
|
|
250
|
+
justify-content: space-between;
|
|
251
|
+
align-items: flex-start;
|
|
252
|
+
gap: 14px;
|
|
253
|
+
margin-bottom: 18px;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.panel-header h2,
|
|
257
|
+
.editor-head h2 {
|
|
258
|
+
margin: 0;
|
|
259
|
+
font-family: Georgia, "Times New Roman", serif;
|
|
260
|
+
font-size: 1.65rem;
|
|
261
|
+
letter-spacing: -0.03em;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.panel-header p,
|
|
265
|
+
.editor-head p {
|
|
266
|
+
margin: 6px 0 0;
|
|
267
|
+
color: var(--color-ink-soft);
|
|
268
|
+
line-height: 1.5;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.button-row {
|
|
272
|
+
display: flex;
|
|
273
|
+
flex-wrap: wrap;
|
|
274
|
+
gap: 10px;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.button,
|
|
278
|
+
.button-ghost,
|
|
279
|
+
.button-danger {
|
|
280
|
+
display: inline-flex;
|
|
281
|
+
align-items: center;
|
|
282
|
+
justify-content: center;
|
|
283
|
+
gap: 8px;
|
|
284
|
+
border: 0;
|
|
285
|
+
border-radius: 999px;
|
|
286
|
+
padding: 11px 16px;
|
|
287
|
+
cursor: pointer;
|
|
288
|
+
text-decoration: none;
|
|
289
|
+
transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.button {
|
|
293
|
+
color: #fff7f1;
|
|
294
|
+
background: linear-gradient(135deg, var(--color-accent), var(--color-accent-deep));
|
|
295
|
+
box-shadow: 0 12px 24px rgba(179, 84, 58, 0.26);
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.button-ghost {
|
|
299
|
+
color: var(--color-ink);
|
|
300
|
+
background: rgba(255, 252, 247, 0.78);
|
|
301
|
+
border: 1px solid rgba(30, 36, 30, 0.12);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.button-danger {
|
|
305
|
+
color: #fff4f2;
|
|
306
|
+
background: linear-gradient(135deg, #a54343, var(--color-danger));
|
|
307
|
+
box-shadow: 0 12px 24px rgba(142, 46, 46, 0.22);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.button:hover,
|
|
311
|
+
.button-ghost:hover,
|
|
312
|
+
.button-danger:hover {
|
|
313
|
+
transform: translateY(-1px);
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.button:disabled,
|
|
317
|
+
.button-ghost:disabled,
|
|
318
|
+
.button-danger:disabled {
|
|
319
|
+
opacity: 0.55;
|
|
320
|
+
cursor: not-allowed;
|
|
321
|
+
transform: none;
|
|
322
|
+
box-shadow: none;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.field-grid {
|
|
326
|
+
display: grid;
|
|
327
|
+
gap: 14px;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.field {
|
|
331
|
+
display: grid;
|
|
332
|
+
gap: 8px;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.field label {
|
|
336
|
+
font-size: 0.88rem;
|
|
337
|
+
font-weight: 600;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.field span {
|
|
341
|
+
display: inline-flex;
|
|
342
|
+
align-items: center;
|
|
343
|
+
gap: 6px;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.field em {
|
|
347
|
+
color: var(--color-accent-deep);
|
|
348
|
+
font-style: normal;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.field input,
|
|
352
|
+
.field select,
|
|
353
|
+
.field textarea {
|
|
354
|
+
width: 100%;
|
|
355
|
+
border: 1px solid rgba(30, 36, 30, 0.14);
|
|
356
|
+
border-radius: var(--radius-sm);
|
|
357
|
+
padding: 12px 14px;
|
|
358
|
+
color: var(--color-ink);
|
|
359
|
+
background: rgba(255, 252, 247, 0.94);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.field textarea {
|
|
363
|
+
min-height: 110px;
|
|
364
|
+
resize: vertical;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.field input:focus,
|
|
368
|
+
.field select:focus,
|
|
369
|
+
.field textarea:focus {
|
|
370
|
+
outline: 2px solid rgba(179, 84, 58, 0.18);
|
|
371
|
+
border-color: rgba(179, 84, 58, 0.36);
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.checkbox-field {
|
|
375
|
+
display: flex;
|
|
376
|
+
align-items: center;
|
|
377
|
+
gap: 10px;
|
|
378
|
+
min-height: 48px;
|
|
379
|
+
padding: 12px 14px;
|
|
380
|
+
border: 1px solid rgba(30, 36, 30, 0.12);
|
|
381
|
+
border-radius: var(--radius-sm);
|
|
382
|
+
background: rgba(255, 252, 247, 0.94);
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.checkbox-field input {
|
|
386
|
+
width: 18px;
|
|
387
|
+
height: 18px;
|
|
388
|
+
margin: 0;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.helper-text {
|
|
392
|
+
margin: 0;
|
|
393
|
+
font-size: 0.88rem;
|
|
394
|
+
color: var(--color-ink-soft);
|
|
395
|
+
line-height: 1.5;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.details-box {
|
|
399
|
+
margin-top: 14px;
|
|
400
|
+
border: 1px dashed rgba(30, 36, 30, 0.18);
|
|
401
|
+
border-radius: var(--radius-md);
|
|
402
|
+
background: rgba(255, 252, 247, 0.58);
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.details-box summary {
|
|
406
|
+
cursor: pointer;
|
|
407
|
+
padding: 12px 14px;
|
|
408
|
+
font-weight: 600;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.details-inner {
|
|
412
|
+
padding: 0 14px 14px;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.table-wrap {
|
|
416
|
+
overflow: hidden;
|
|
417
|
+
border: 1px solid rgba(30, 36, 30, 0.08);
|
|
418
|
+
border-radius: var(--radius-lg);
|
|
419
|
+
background: var(--color-panel-strong);
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.item-table {
|
|
423
|
+
width: 100%;
|
|
424
|
+
border-collapse: collapse;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.item-table th,
|
|
428
|
+
.item-table td {
|
|
429
|
+
padding: 14px 12px;
|
|
430
|
+
text-align: left;
|
|
431
|
+
border-bottom: 1px solid rgba(30, 36, 30, 0.08);
|
|
432
|
+
vertical-align: top;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.item-table th {
|
|
436
|
+
font-size: 0.78rem;
|
|
437
|
+
letter-spacing: 0.14em;
|
|
438
|
+
text-transform: uppercase;
|
|
439
|
+
color: var(--color-ink-soft);
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.item-row {
|
|
443
|
+
cursor: pointer;
|
|
444
|
+
transition: background 120ms ease;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.item-row:hover {
|
|
448
|
+
background: rgba(179, 84, 58, 0.06);
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.item-row.is-selected {
|
|
452
|
+
background: rgba(179, 84, 58, 0.1);
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.row-title {
|
|
456
|
+
font-weight: 700;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.row-subtitle {
|
|
460
|
+
display: block;
|
|
461
|
+
margin-top: 4px;
|
|
462
|
+
font-size: 0.84rem;
|
|
463
|
+
color: var(--color-ink-soft);
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.table-actions {
|
|
467
|
+
display: flex;
|
|
468
|
+
gap: 8px;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.editor-panel {
|
|
472
|
+
margin-top: 18px;
|
|
473
|
+
padding: 22px;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.editor-head {
|
|
477
|
+
display: flex;
|
|
478
|
+
justify-content: space-between;
|
|
479
|
+
align-items: flex-start;
|
|
480
|
+
gap: 14px;
|
|
481
|
+
margin-bottom: 18px;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.editor-empty,
|
|
485
|
+
.empty-state {
|
|
486
|
+
padding: 22px;
|
|
487
|
+
border: 1px dashed rgba(30, 36, 30, 0.18);
|
|
488
|
+
border-radius: var(--radius-lg);
|
|
489
|
+
background: rgba(255, 252, 247, 0.72);
|
|
490
|
+
color: var(--color-ink-soft);
|
|
491
|
+
line-height: 1.6;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.tag {
|
|
495
|
+
display: inline-flex;
|
|
496
|
+
align-items: center;
|
|
497
|
+
padding: 6px 10px;
|
|
498
|
+
border-radius: 999px;
|
|
499
|
+
font-size: 0.78rem;
|
|
500
|
+
letter-spacing: 0.12em;
|
|
501
|
+
text-transform: uppercase;
|
|
502
|
+
background: rgba(38, 89, 72, 0.1);
|
|
503
|
+
color: var(--color-emerald);
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.muted {
|
|
507
|
+
color: var(--color-ink-soft);
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.mono {
|
|
511
|
+
font-family: Consolas, "Courier New", monospace;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
@keyframes rise-in {
|
|
515
|
+
from {
|
|
516
|
+
opacity: 0;
|
|
517
|
+
transform: translateY(12px);
|
|
518
|
+
}
|
|
519
|
+
to {
|
|
520
|
+
opacity: 1;
|
|
521
|
+
transform: translateY(0);
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
@media (max-width: 1040px) {
|
|
526
|
+
.hero,
|
|
527
|
+
.panel-grid {
|
|
528
|
+
grid-template-columns: 1fr;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.metrics {
|
|
532
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
@media (max-width: 720px) {
|
|
537
|
+
.app-shell {
|
|
538
|
+
padding: 18px 14px 30px;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.hero,
|
|
542
|
+
.panel,
|
|
543
|
+
.editor-panel {
|
|
544
|
+
padding: 18px;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.metrics {
|
|
548
|
+
grid-template-columns: 1fr;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.item-table,
|
|
552
|
+
.item-table thead,
|
|
553
|
+
.item-table tbody,
|
|
554
|
+
.item-table tr,
|
|
555
|
+
.item-table th,
|
|
556
|
+
.item-table td {
|
|
557
|
+
display: block;
|
|
558
|
+
width: 100%;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.item-table thead {
|
|
562
|
+
display: none;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.item-row {
|
|
566
|
+
padding: 8px 0;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.item-table td {
|
|
570
|
+
border-bottom: 0;
|
|
571
|
+
padding: 6px 12px;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.item-table td::before {
|
|
575
|
+
content: attr(data-label);
|
|
576
|
+
display: block;
|
|
577
|
+
margin-bottom: 4px;
|
|
578
|
+
font-size: 0.72rem;
|
|
579
|
+
letter-spacing: 0.12em;
|
|
580
|
+
text-transform: uppercase;
|
|
581
|
+
color: var(--color-ink-soft);
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.table-actions {
|
|
585
|
+
flex-wrap: wrap;
|
|
586
|
+
}
|
|
587
|
+
}
|
|
@@ -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
|
-
|
|
1
|
+
{
|
|
2
|
+
"appId": "1979e40c-021e-457e-b0b5-a5bc009596c8",
|
|
3
|
+
"appDisplayName": "SharePoint DemoApp",
|
|
4
|
+
"description": "",
|
|
5
|
+
"environmentId": "<ENVIRONMENT_ID>",
|
|
6
|
+
"buildPath": "./dist",
|
|
7
|
+
"buildEntryPoint": "index.html",
|
|
8
|
+
"logoPath": "default",
|
|
9
|
+
"localAppUrl": "http://localhost:3000",
|
|
10
|
+
"region": "prod",
|
|
11
|
+
"connectionReferences": {
|
|
12
|
+
"sharepointonline": {
|
|
13
|
+
"id": "/providers/Microsoft.PowerApps/apis/shared_sharepointonline",
|
|
14
|
+
"displayName": "SharePoint",
|
|
15
|
+
"dataSources": [
|
|
16
|
+
"sharepointonline"
|
|
17
|
+
],
|
|
18
|
+
"authenticationType": null,
|
|
19
|
+
"sharedConnectionId": "shared-sharepointonl-f5f8159f-628c-4796-b123-bce62d995bfb",
|
|
20
|
+
"dataSets": {}
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"databaseReferences": {}
|
|
23
24
|
}
|