@pechynho/stimulus-typescript 0.0.12 → 0.0.13

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.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { default as PortalController } from './portal-controller';
2
2
  export { Typed, Target, TypedObject, TypedArray } from './typed';
3
- export { isActionEvent, getController, getControllerAsync } from './utils';
3
+ export { isActionEvent, getController, getControllerAsync, addStimulusAction, removeStimulusAction } from './utils';
4
4
  export { Resolvable } from './resolvable';
5
5
  export { Portals } from './portal';
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // Export the main components
2
2
  export { default as PortalController } from './portal-controller';
3
3
  export { Typed, Target, TypedObject, TypedArray } from './typed';
4
- export { isActionEvent, getController, getControllerAsync } from './utils';
4
+ export { isActionEvent, getController, getControllerAsync, addStimulusAction, removeStimulusAction } from './utils';
5
5
  export { Resolvable } from './resolvable';
6
6
  export { Portals } from './portal';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pechynho/stimulus-typescript",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "Set of TypeScript utilities for Stimulus controllers",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  // Export the main components
2
2
  export {default as PortalController} from './portal-controller';
3
3
  export {Typed, Target, TypedObject, TypedArray} from './typed';
4
- export {isActionEvent, getController, getControllerAsync} from './utils';
4
+ export {isActionEvent, getController, getControllerAsync, addStimulusAction, removeStimulusAction} from './utils';
5
5
  export {Resolvable} from './resolvable';
6
6
  export {Portals} from './portal';