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
|
Binary file
|
|
@@ -1,255 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
<meta
|
|
6
|
-
<
|
|
7
|
-
<
|
|
8
|
-
<
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
--card: rgba(255, 252, 247, 0.88);
|
|
24
|
-
--shadow: 0 22px 60px rgba(76, 47, 31, 0.14);
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
* {
|
|
28
|
-
box-sizing: border-box;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
body {
|
|
32
|
-
margin: 0;
|
|
33
|
-
min-height: 100vh;
|
|
34
|
-
font-family: Georgia, "Times New Roman", serif;
|
|
35
|
-
color: var(--ink);
|
|
36
|
-
background:
|
|
37
|
-
radial-gradient(circle at top left, rgba(165, 92, 59, 0.14), transparent 32%),
|
|
38
|
-
linear-gradient(180deg, #fbf6ef 0%, var(--paper) 100%);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.app-shell {
|
|
42
|
-
width: min(1120px, calc(100% - 32px));
|
|
43
|
-
margin: 0 auto;
|
|
44
|
-
padding: 40px 0 56px;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.hero {
|
|
48
|
-
display: grid;
|
|
49
|
-
gap: 18px;
|
|
50
|
-
margin-bottom: 28px;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.eyebrow {
|
|
54
|
-
width: fit-content;
|
|
55
|
-
padding: 7px 12px;
|
|
56
|
-
border: 1px solid var(--line);
|
|
57
|
-
border-radius: 999px;
|
|
58
|
-
background: rgba(255, 255, 255, 0.55);
|
|
59
|
-
color: var(--ink-soft);
|
|
60
|
-
font-size: 12px;
|
|
61
|
-
letter-spacing: 0.14em;
|
|
62
|
-
text-transform: uppercase;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.hero h1 {
|
|
66
|
-
margin: 0;
|
|
67
|
-
font-size: clamp(2.2rem, 5vw, 4.2rem);
|
|
68
|
-
line-height: 0.95;
|
|
69
|
-
font-weight: 600;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.hero p {
|
|
73
|
-
margin: 0;
|
|
74
|
-
max-width: 720px;
|
|
75
|
-
color: var(--ink-soft);
|
|
76
|
-
font-size: 1.02rem;
|
|
77
|
-
line-height: 1.7;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.panel {
|
|
81
|
-
background: var(--card);
|
|
82
|
-
border: 1px solid rgba(255, 255, 255, 0.55);
|
|
83
|
-
border-radius: 28px;
|
|
84
|
-
box-shadow: var(--shadow);
|
|
85
|
-
backdrop-filter: blur(12px);
|
|
86
|
-
overflow: hidden;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.panel-head {
|
|
90
|
-
display: flex;
|
|
91
|
-
flex-wrap: wrap;
|
|
92
|
-
justify-content: space-between;
|
|
93
|
-
gap: 16px;
|
|
94
|
-
padding: 22px 24px;
|
|
95
|
-
border-bottom: 1px solid var(--line);
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.panel-title {
|
|
99
|
-
margin: 0;
|
|
100
|
-
font-size: 1.35rem;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.panel-meta {
|
|
104
|
-
display: flex;
|
|
105
|
-
flex-wrap: wrap;
|
|
106
|
-
gap: 10px;
|
|
107
|
-
color: var(--ink-soft);
|
|
108
|
-
font-size: 0.95rem;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.meta-chip {
|
|
112
|
-
padding: 8px 12px;
|
|
113
|
-
border: 1px solid var(--line);
|
|
114
|
-
border-radius: 999px;
|
|
115
|
-
background: rgba(255, 255, 255, 0.6);
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.status-bar {
|
|
119
|
-
margin: 0 24px;
|
|
120
|
-
padding: 16px 18px;
|
|
121
|
-
border-left: 4px solid var(--accent);
|
|
122
|
-
background: rgba(165, 92, 59, 0.08);
|
|
123
|
-
color: var(--ink);
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.status-bar[data-state="error"] {
|
|
127
|
-
border-left-color: #b2412e;
|
|
128
|
-
background: rgba(178, 65, 46, 0.12);
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.status-bar[hidden] {
|
|
132
|
-
display: none;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.table-wrap {
|
|
136
|
-
padding: 8px 18px 22px;
|
|
137
|
-
overflow: auto;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
table {
|
|
141
|
-
width: 100%;
|
|
142
|
-
border-collapse: collapse;
|
|
143
|
-
min-width: 720px;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
thead th {
|
|
147
|
-
padding: 16px 14px;
|
|
148
|
-
text-align: left;
|
|
149
|
-
font-size: 0.82rem;
|
|
150
|
-
letter-spacing: 0.08em;
|
|
151
|
-
text-transform: uppercase;
|
|
152
|
-
color: var(--ink-soft);
|
|
153
|
-
border-bottom: 1px solid var(--line);
|
|
154
|
-
position: sticky;
|
|
155
|
-
top: 0;
|
|
156
|
-
background: rgba(246, 239, 230, 0.95);
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
tbody td {
|
|
160
|
-
padding: 16px 14px;
|
|
161
|
-
border-bottom: 1px solid var(--line);
|
|
162
|
-
vertical-align: top;
|
|
163
|
-
line-height: 1.45;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
tbody tr:hover {
|
|
167
|
-
background: rgba(165, 92, 59, 0.08);
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.empty-state {
|
|
171
|
-
padding: 48px 24px 54px;
|
|
172
|
-
text-align: center;
|
|
173
|
-
color: var(--ink-soft);
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
.empty-state h2 {
|
|
177
|
-
margin: 0 0 10px;
|
|
178
|
-
color: var(--ink);
|
|
179
|
-
font-size: 1.35rem;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.footer-note {
|
|
183
|
-
margin-top: 18px;
|
|
184
|
-
color: var(--ink-soft);
|
|
185
|
-
font-size: 0.92rem;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
@media (max-width: 720px) {
|
|
189
|
-
.app-shell {
|
|
190
|
-
width: min(100% - 20px, 1120px);
|
|
191
|
-
padding-top: 22px;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
.panel-head {
|
|
195
|
-
padding: 18px;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
.status-bar {
|
|
199
|
-
margin: 0 18px;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.table-wrap {
|
|
203
|
-
padding: 8px 10px 18px;
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
</style>
|
|
207
|
-
</head>
|
|
208
|
-
<body>
|
|
209
|
-
<div id="root">
|
|
210
|
-
<main class="app-shell">
|
|
211
|
-
<section class="hero">
|
|
212
|
-
<div class="eyebrow">SharePoint list reader</div>
|
|
213
|
-
<h1>First 20 rows from your SharePoint list</h1>
|
|
214
|
-
<p>
|
|
215
|
-
A simple editorial-style viewer for the list at
|
|
216
|
-
<strong>Test List</strong>. The app loads the first 20 items and
|
|
217
|
-
renders them as a clean table.
|
|
218
|
-
</p>
|
|
219
|
-
</section>
|
|
220
|
-
|
|
221
|
-
<section class="panel">
|
|
222
|
-
<div class="panel-head">
|
|
223
|
-
<div>
|
|
224
|
-
<h2 class="panel-title">List snapshot</h2>
|
|
225
|
-
</div>
|
|
226
|
-
<div class="panel-meta">
|
|
227
|
-
<div class="meta-chip" id="siteLabel">Site: loading...</div>
|
|
228
|
-
<div class="meta-chip" id="listLabel">List: loading...</div>
|
|
229
|
-
<div class="meta-chip" id="countLabel">Rows: 0</div>
|
|
230
|
-
</div>
|
|
231
|
-
</div>
|
|
232
|
-
|
|
233
|
-
<p id="statusBar" class="status-bar">Loading rows from SharePoint...</p>
|
|
234
|
-
|
|
235
|
-
<div class="table-wrap">
|
|
236
|
-
<table id="listTable" hidden>
|
|
237
|
-
<thead id="tableHead"></thead>
|
|
238
|
-
<tbody id="tableBody"></tbody>
|
|
239
|
-
</table>
|
|
240
|
-
|
|
241
|
-
<div id="emptyState" class="empty-state" hidden>
|
|
242
|
-
<h2>No rows found</h2>
|
|
243
|
-
<p>This list returned no visible rows for the first 20 items.</p>
|
|
244
|
-
</div>
|
|
245
|
-
</div>
|
|
246
|
-
</section>
|
|
247
|
-
|
|
248
|
-
<p class="footer-note">
|
|
249
|
-
Data source: SharePoint connector using site URL and list name.
|
|
250
|
-
</p>
|
|
251
|
-
</main>
|
|
252
|
-
</div>
|
|
253
|
-
<script type="module" src="index.js"></script>
|
|
254
|
-
</body>
|
|
255
|
-
</html>
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<link rel="icon" type="image/png" href="./icon-512.png" />
|
|
7
|
+
<meta name="theme-color" content="#f3e7d3" />
|
|
8
|
+
<title>SharePoint Demo App</title>
|
|
9
|
+
<link rel="stylesheet" href="./styles.css" />
|
|
10
|
+
<script type="importmap">
|
|
11
|
+
{
|
|
12
|
+
"imports": {
|
|
13
|
+
"@microsoft/power-apps/data": "./power-apps-data.js"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
</script>
|
|
17
|
+
</head>
|
|
18
|
+
<body>
|
|
19
|
+
<div id="root"></div>
|
|
20
|
+
<script type="module" src="index.js"></script>
|
|
21
|
+
</body>
|
|
22
|
+
</html>
|