blockly 8.0.2 → 8.0.3-beta.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/blocks.d.ts CHANGED
@@ -11,5 +11,14 @@
11
11
 
12
12
  /// <reference path="core.d.ts" />
13
13
 
14
- import * as Blockly from './core';
15
- export = Blockly.Blocks;
14
+ export const colour: any;
15
+ export const lists: any;
16
+ export const logic: any;
17
+ export const loops: any;
18
+ export const math: any;
19
+ export const procedures: any;
20
+ export const texts: any;
21
+ export const variables: any;
22
+ export const variablesDynamic: any;
23
+
24
+ export const blocks: any;
package/core.d.ts CHANGED
@@ -11,5 +11,4 @@
11
11
 
12
12
  /// <reference path="blockly.d.ts" />
13
13
 
14
- import * as Blockly from 'blockly';
15
- export = Blockly;
14
+ export * from 'core/blockly';
package/index.d.ts CHANGED
@@ -14,9 +14,8 @@
14
14
  /// <reference path="javascript.d.ts" />
15
15
  /// <reference path="msg/msg.d.ts" />
16
16
 
17
- import * as Blockly from './core';
18
- import './blocks';
19
- import './javascript';
17
+ import { Generator } from 'core/blockly';
18
+ export * from './core';
19
+ export * as libraryBlocks from './blocks';
20
+ export const JavaScript: Generator;
20
21
  import './msg/msg';
21
-
22
- export = Blockly;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blockly",
3
- "version": "8.0.2",
3
+ "version": "8.0.3-beta.0",
4
4
  "description": "Blockly is a library for building visual programming editors.",
5
5
  "keywords": [
6
6
  "blockly"