frayerjj-frontend 0.1.8 → 0.1.10

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +1 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frayerjj-frontend",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "description": "My base frontend for various projects",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
package/src/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as bootstrap from 'bootstrap';
2
2
 
3
- const modal = {
3
+ export const modal = {
4
4
  build: vars => {
5
5
  let html =
6
6
  '<div id="' + vars.id + '" class="modal" tabindex="-1">' +
@@ -47,9 +47,6 @@ const modal = {
47
47
  }
48
48
  };
49
49
 
50
- export default { modal }; // Export only modal for now
51
-
52
-
53
50
  /*import modal from "./modal.js";
54
51
  import { ajax, getIntVar, pageInit } from "./helpers.js";
55
52
  import { loading } from "./loading.js";