codeapp-js 0.1.0 → 0.2.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/codeApp/dist/codeapp.js +326 -72
- package/codeApp/dist/icon-512.png +0 -0
- package/codeApp/dist/index.html +1 -0
- package/codeApp/dist/index.js +1 -1
- package/codeApp/dist/power-apps-data.js +2952 -2531
- package/codeApp/power.config.json +1 -1
- package/dev files/customConnector.js +98 -0
- package/dev files/dataverse.js +33 -7
- package/dev files/environmentVar.js +1 -1
- package/dev files/office365groups.js +1 -1
- package/dev files/office365users.js +1 -1
- package/dev files/outlook.js +1 -1
- package/dev files/power-apps-data.js +2952 -0
- package/dev files/sharepoint.js +1 -1
- package/examples/combined demo/dist/codeapp.js +1098 -0
- package/examples/combined demo/dist/index.js +470 -515
- package/examples/combined demo/dist/power-apps-data.js +3007 -2531
- package/examples/dataverse Demo/dist/codeapp.js +1085 -0
- package/examples/dataverse Demo/dist/index.js +38 -26
- package/examples/dataverse Demo/dist/power-apps-data.js +2912 -2531
- package/examples/groups Demo/dist/codeapp.js +1085 -0
- package/examples/groups Demo/dist/index.js +113 -113
- package/examples/groups Demo/dist/power-apps-data.js +2912 -2531
- package/examples/groups Demo/power.config.json +3 -2
- package/examples/kanban/dist/power-apps-data.js +2953 -2531
- package/examples/myProfile/dist/power-apps-data.js +2953 -2531
- package/examples/outlook Demo/dist/codeapp.js +1085 -0
- package/examples/outlook Demo/dist/index.js +39 -35
- package/examples/outlook Demo/dist/power-apps-data.js +2912 -2531
- package/examples/planning Poker/dist/power-apps-data.js +2953 -2531
- package/examples/sharePoint Demo/dist/codeapp.js +1085 -0
- package/examples/sharePoint Demo/dist/index.js +262 -269
- package/examples/sharePoint Demo/dist/power-apps-data.js +2912 -2531
- package/examples/solution explorer/agent/decision-log.md +27 -0
- package/examples/solution explorer/agent/mockup-01-swiss-grid.html +452 -0
- package/examples/solution explorer/agent/mockup-02-dark-glass.html +496 -0
- package/examples/solution explorer/agent/mockup-03-paper-console.html +510 -0
- package/examples/solution explorer/agent/mockup-04-neon-noir.html +546 -0
- package/examples/solution explorer/agent/mockup-05-zen-garden.html +534 -0
- package/examples/solution explorer/dist/codeapp.js +1098 -0
- package/examples/solution explorer/dist/icon-512.png +0 -0
- package/examples/solution explorer/dist/index.html +80 -0
- package/examples/solution explorer/dist/index.js +735 -0
- package/examples/solution explorer/dist/power-apps-data.js +3007 -0
- package/examples/solution explorer/dist/styles.css +571 -0
- package/examples/solution explorer/power.config.json +151 -0
- package/examples/todo/dist/power-apps-data.js +2953 -2531
- package/package.json +1 -8
- package/.github/instructions/wyattdave.instructions.md +0 -39
- package/examples/combined demo/dist/dataverse.js +0 -86
- package/examples/combined demo/dist/environmentVar.js +0 -55
- package/examples/combined demo/dist/office365groups.js +0 -97
- package/examples/combined demo/dist/office365users.js +0 -169
- package/examples/combined demo/dist/outlook.js +0 -162
- package/examples/combined demo/dist/sharepoint.js +0 -339
- package/examples/dataverse Demo/dist/dataverse.js +0 -86
- package/examples/groups Demo/dist/dataverse.js +0 -86
- package/examples/groups Demo/dist/environmentVar.js +0 -55
- package/examples/groups Demo/dist/office365groups.js +0 -97
- package/examples/groups Demo/dist/office365users.js +0 -169
- package/examples/groups Demo/dist/outlook.js +0 -162
- package/examples/groups Demo/dist/sharepoint.js +0 -339
- package/examples/sharePoint Demo/dist/dataverse.js +0 -94
- package/examples/sharePoint Demo/dist/environmentVar.js +0 -55
- package/examples/sharePoint Demo/dist/office365groups.js +0 -97
- package/examples/sharePoint Demo/dist/office365users.js +0 -169
- package/examples/sharePoint Demo/dist/outlook.js +0 -162
- package/examples/sharePoint Demo/dist/sharepoint.js +0 -339
- package/scripts/build-power-sdk.mjs +0 -69
|
Binary file
|
|
@@ -0,0 +1,80 @@
|
|
|
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
|
+
<title>Solution Explorer</title>
|
|
8
|
+
<link rel="stylesheet" href="styles.css" />
|
|
9
|
+
<script type="importmap">
|
|
10
|
+
{
|
|
11
|
+
"imports": {
|
|
12
|
+
"@microsoft/power-apps/data": "./power-apps-data.js"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
</script>
|
|
16
|
+
</head>
|
|
17
|
+
<body>
|
|
18
|
+
<div id="root">
|
|
19
|
+
<div class="topbar">
|
|
20
|
+
<h1>Solution Explorer</h1>
|
|
21
|
+
<span class="env-badge" id="envBadge"></span>
|
|
22
|
+
</div>
|
|
23
|
+
|
|
24
|
+
<div class="shell">
|
|
25
|
+
<div class="sol-panel">
|
|
26
|
+
<div class="sol-header">
|
|
27
|
+
Solutions <span class="sol-count" id="solCount">0</span>
|
|
28
|
+
</div>
|
|
29
|
+
<div class="sol-search">
|
|
30
|
+
<input type="text" placeholder="Filter solutions…" id="searchInput" />
|
|
31
|
+
<select id="managedFilter">
|
|
32
|
+
<option value="all">All</option>
|
|
33
|
+
<option value="unmanaged">Unmanaged</option>
|
|
34
|
+
<option value="managed">Managed</option>
|
|
35
|
+
</select>
|
|
36
|
+
</div>
|
|
37
|
+
<div id="solList">
|
|
38
|
+
<div class="loading-msg">Loading solutions…</div>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
|
|
42
|
+
<div class="detail-panel" id="detailPanel">
|
|
43
|
+
<div class="detail-empty">← Select a solution</div>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
<!-- Share Component Modal -->
|
|
48
|
+
<div class="share-backdrop" id="shareBackdrop">
|
|
49
|
+
<div class="share-modal">
|
|
50
|
+
<div class="share-modal-header">
|
|
51
|
+
<h3 id="shareModalTitle">Share Component</h3>
|
|
52
|
+
<button class="share-close-btn" id="shareCloseBtn">×</button>
|
|
53
|
+
</div>
|
|
54
|
+
<div class="share-tabs">
|
|
55
|
+
<button class="share-tab active" data-tab="user">User</button>
|
|
56
|
+
<button class="share-tab" data-tab="team">Team</button>
|
|
57
|
+
</div>
|
|
58
|
+
<div class="share-body">
|
|
59
|
+
<div class="share-search-row">
|
|
60
|
+
<input type="text" class="share-search-input" id="shareSearchInput" placeholder="Search users…" />
|
|
61
|
+
</div>
|
|
62
|
+
<div class="share-results" id="shareResults">
|
|
63
|
+
<div class="share-empty-msg">Type to search</div>
|
|
64
|
+
</div>
|
|
65
|
+
<div class="share-selected-section" id="shareSelectedSection" style="display:none;">
|
|
66
|
+
<div class="share-selected-label">Sharing with:</div>
|
|
67
|
+
<div class="share-selected-list" id="shareSelectedList"></div>
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
70
|
+
<div class="share-footer">
|
|
71
|
+
<button class="share-cancel-btn" id="shareCancelBtn">Cancel</button>
|
|
72
|
+
<button class="share-confirm-btn" id="shareConfirmBtn" disabled>Share</button>
|
|
73
|
+
</div>
|
|
74
|
+
</div>
|
|
75
|
+
</div>
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
<script type="module" src="index.js"></script>
|
|
79
|
+
</body>
|
|
80
|
+
</html>
|