pxt-core 7.5.29 → 7.5.32

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.
@@ -49,8 +49,7 @@ declare namespace pxt {
49
49
  // list of trusted custom editor extension urls
50
50
  // that can bypass consent and send/receive messages
51
51
  approvedEditorExtensionUrls?: string[];
52
- extensionsToIgnore?: string[]; // List of extensions to ignore when allowing for deletion
53
- categories?: ExtensionCategory[];
52
+ extensionsToolboxDisallowDelete?: string[]; // List of extensions to ignore when allowing for deletion in toolbox
54
53
  }
55
54
 
56
55
  interface RepoData {
@@ -58,11 +57,6 @@ declare namespace pxt {
58
57
  tags?: string[]
59
58
  }
60
59
 
61
- interface ExtensionCategory {
62
- name: string;
63
- extensions: string[];
64
- }
65
-
66
60
  interface ShareConfig {
67
61
  approved?: string[];
68
62
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxt-core",
3
- "version": "7.5.29",
3
+ "version": "7.5.32",
4
4
  "description": "Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors",
5
5
  "keywords": [
6
6
  "TypeScript",
package/theme/common.less CHANGED
@@ -961,13 +961,7 @@ Field editors
961
961
  flex-wrap: wrap;
962
962
  gap: 1.5rem;
963
963
  background-color: #E5E5E5;
964
-
965
- .header {
966
- font-family: @segoeUIFont;
967
- font-size: 2em;
968
- font-weight: 400;
969
- padding: 4rem 2rem 2rem;
970
- }
964
+ padding-top: 1rem;
971
965
 
972
966
  .search {
973
967
  width: 100%;
@@ -1045,6 +1039,11 @@ Field editors
1045
1039
  border-radius: 1.6rem;
1046
1040
  cursor: pointer;
1047
1041
  color: @extensionTagColor;
1042
+ background-color: inherit;
1043
+ }
1044
+
1045
+ .extension-tag:hover {
1046
+ background-color: @extensionTagBackgroundColor;
1048
1047
  }
1049
1048
 
1050
1049
  .extension-tag.selected {