@pacem/pacem-2d 1.0.3 → 1.0.5-archimedes

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.
@@ -1,14 +1,11 @@
1
1
  /*!
2
- * @pacem/pacem-2d v1.0.3 (https://js.pacem.it)
2
+ * @pacem/pacem-2d v1.0.5-archimedes (https://js.pacem.it)
3
3
  * Pacem (https://pacem.it)
4
4
  * Licensed under Apache-2.0
5
5
  */
6
6
  (function (pacemFoundation, pacemCore) {
7
7
  'use strict';
8
8
 
9
- /** Middle segment shared by every `<pacem-2d-*>` custom element tag name. */
10
- const TAG_MIDDLE_NAME = "2d";
11
-
12
9
  /** Type guard telling whether `object` implements `Drawable`. */
13
10
  function isDrawable(object) {
14
11
  return !pacemCore.Utils.isNull(object) && 'stage' in object;
@@ -141,6 +138,9 @@
141
138
  isUiObject: isUiObject
142
139
  });
143
140
 
141
+ /** Middle segment shared by every `<pacem-2d-*>` custom element tag name. */
142
+ const TAG_MIDDLE_NAME = "2d";
143
+
144
144
  var __decorate$d = (undefined && undefined.__decorate) || function (decorators, target, key, desc) {
145
145
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
146
146
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);