@imposium-hub/components 1.24.1 → 1.24.3
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/Entry.ts +5 -0
- package/dist/components.js +2 -2
- package/dist/components.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/styles.less +1 -1
- package/dist/styles.less.map +1 -1
- package/less/colors.less +1 -1
- package/package.json +1 -1
package/Entry.ts
CHANGED
|
@@ -59,6 +59,7 @@ import StaticCompositionEditor from './components/compositions/StaticComposition
|
|
|
59
59
|
import StaticCompositionRenderer from './components/compositions/StaticCompositionRenderer';
|
|
60
60
|
import { IStaticComposition } from './constants/compositions';
|
|
61
61
|
import ShortcutMenu from './components/shortcut-menu/ShortcutMenu';
|
|
62
|
+
import TextLayer from './components/compositions/TextLayer';
|
|
62
63
|
|
|
63
64
|
import { ASSET_TYPES } from './constants/assets';
|
|
64
65
|
import Portal from './components/portal/Portal';
|
|
@@ -107,6 +108,7 @@ import Timer from './services/Timer';
|
|
|
107
108
|
*/
|
|
108
109
|
import {getFirstStoryInOrg, string2HexCode, toFixed, padStart, parameterizeServiceUrl, scrapeEmail, fitToContainer,
|
|
109
110
|
filterHotkeys, mimetypeConformsToOverlay, validateAssetMimetype, formatDateDefault, validateAccessLevel, formattedTime} from './Util';
|
|
111
|
+
import CompositionRendererLayer from './components/compositions/CompositionRendererLayer';
|
|
110
112
|
|
|
111
113
|
export {
|
|
112
114
|
AppWrapper,
|
|
@@ -228,5 +230,8 @@ export {
|
|
|
228
230
|
padStart,
|
|
229
231
|
formatDateDefault,
|
|
230
232
|
|
|
233
|
+
TextLayer,
|
|
234
|
+
CompositionRendererLayer,
|
|
235
|
+
|
|
231
236
|
ASSET_TYPES
|
|
232
237
|
};
|