@robertraaijmakers/pptb-securityplugin 0.1.1 → 0.1.2

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/dist/index.css CHANGED
@@ -47,6 +47,7 @@ body.theme-dark .tab-panel {
47
47
 
48
48
  body.theme-dark select,
49
49
  body.theme-dark .filter-select,
50
+ body.theme-dark .filter-input,
50
51
  body.theme-dark .multi-select-button,
51
52
  body.theme-dark .multi-select-menu,
52
53
  body.theme-dark .btn,
@@ -791,7 +792,7 @@ body.theme-dark .chart-empty {
791
792
  }
792
793
 
793
794
  .table.hidden {
794
- visibility: hidden;
795
+ display: none;
795
796
  }
796
797
 
797
798
  .table {
@@ -904,6 +905,15 @@ body.theme-dark .chart-empty {
904
905
  letter-spacing: 0;
905
906
  }
906
907
 
908
+ .filter-input {
909
+ width: 100%;
910
+ padding: 6px 8px;
911
+ border-radius: 8px;
912
+ border: 1px solid var(--border);
913
+ background: #fff;
914
+ font-size: 12px;
915
+ }
916
+
907
917
  .table tbody td {
908
918
  padding: 12px 16px;
909
919
  border-bottom: 1px solid var(--border);
package/dist/index.html CHANGED
@@ -274,7 +274,15 @@
274
274
  <th>Select</th>
275
275
  </tr>
276
276
  <tr class="filter-row">
277
- <th></th>
277
+ <th>
278
+ <input
279
+ type="text"
280
+ id="assignment-search"
281
+ class="filter-input"
282
+ placeholder="Search..."
283
+ aria-label="Search users or roles"
284
+ />
285
+ </th>
278
286
  <th>
279
287
  <select id="assignment-filter-assigned" class="filter-select">
280
288
  <option value="">All</option>
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@robertraaijmakers/pptb-securityplugin",
3
- "version": "0.1.0",
3
+ "version": "0.1.2-beta.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@robertraaijmakers/pptb-securityplugin",
9
- "version": "0.1.0",
9
+ "version": "0.1.2-beta.1",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "chart.js": "^4.4.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robertraaijmakers/pptb-securityplugin",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "displayName": "Security Roles Explorer",
5
5
  "description": "Be fully in control of your security by quickly viewing and managing which security roles give access to which tables. And who is assigned which security role.",
6
6
  "author": "Robert Raaijmakers",
@@ -12,7 +12,12 @@
12
12
  ],
13
13
  "license": "MIT",
14
14
  "main": "dist/index.html",
15
- "keywords": ["powerplatform", "dataverse", "toolbox", "security"],
15
+ "keywords": [
16
+ "powerplatform",
17
+ "dataverse",
18
+ "toolbox",
19
+ "security"
20
+ ],
16
21
  "homepage": "https://robertraaijmakers.github.io/pptb.securityplugin/",
17
22
  "repository": {
18
23
  "type": "git",
@@ -23,7 +28,10 @@
23
28
  "website": "https://robertraaijmakers.github.io/pptb.securityplugin/",
24
29
  "readmeUrl": "https://raw.githubusercontent.com/robertraaijmakers/pptb.securityplugin/main/README.md"
25
30
  },
26
- "files": ["dist/**", "README.md"],
31
+ "files": [
32
+ "dist/**",
33
+ "README.md"
34
+ ],
27
35
  "scripts": {
28
36
  "build": "npm run build:bundle && npm run build:assets",
29
37
  "build:bundle": "esbuild src/app.ts --bundle --sourcemap --outdir=dist",
@@ -31,14 +39,16 @@
31
39
  "build:watch": "esbuild src/app.ts --bundle --sourcemap --outdir=dist --watch",
32
40
  "finalize-package": "node scripts/finalize-package.js",
33
41
  "validate:publish": "node scripts/validate-publish.js",
42
+ "prepare:beta": "npm run build && npm run finalize-package && npm run version:beta",
43
+ "prepare:stable": "npm run build && npm run finalize-package && npm run version:stable",
34
44
  "version:beta": "npm version prerelease --preid beta",
35
45
  "version:stable": "npm version patch",
36
46
  "publish:beta": "npm publish --access public --tag beta",
37
47
  "publish:stable": "npm publish --access public"
38
48
  },
39
49
  "devDependencies": {
40
- "@pptb/types": "1.0.19-beta.3",
41
- "esbuild": "^0.20.2",
50
+ "@pptb/types": "1.0.19",
51
+ "esbuild": "0.27.3",
42
52
  "typescript": "^5.4.5"
43
53
  },
44
54
  "dependencies": {