@ulu/frontend 0.0.10 → 0.0.11

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## Version 0.0.10
4
+
5
+ ### JS
6
+
7
+ - Update css-breakpoints helper to get breakpoint value with custom property, and make the psuedo element a legacy option that can be enabled
8
+
3
9
  ## Version 0.0.6
4
10
 
5
11
  ### SCSS
package/README.md CHANGED
@@ -4,6 +4,8 @@ Front end development library (SCSS, JS, Vue)
4
4
 
5
5
  [Documentation](https://jscherbe.github.io/frontend/)
6
6
 
7
+ [Change Log](CHANGELOG.md)
8
+
7
9
  ## SCSS Library
8
10
 
9
11
  This is the sass library. Set up for packaged use (under on namespace) and individual module use (importing modules directly
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @module events
3
3
  */
4
- import { debounce } from "@ulu/utils/performance";
4
+ import { debounce } from "@ulu/utils/performance.js";
5
5
 
6
6
  /**
7
7
  * Event object - called on dispatch
@@ -3,7 +3,7 @@
3
3
  */
4
4
 
5
5
  // Pass breakpoints from CSS to stylesheet, use this to attach behaviors on breakpoints
6
- import { removeArrayElement } from "@ulu/utils/array";
6
+ import { removeArrayElement } from "@ulu/utils/array.js";
7
7
  import { getName } from "../events/index.js";
8
8
  import { log, logError } from "../utils/logger.js";
9
9
 
package/js/ui/modals.js CHANGED
@@ -17,7 +17,7 @@
17
17
  // interface in the future we don't need to change/update markup.
18
18
  import MicroModal from 'micromodal';
19
19
  import Resizer from './resizer.js';
20
- import { createElementFromHtml } from '@ulu/utils/dom.js';
20
+ import { createElementFromHtml } from '@ulu/utils/browser/dom.js';
21
21
  import { pauseVideos, prepVideos } from '../helpers/pause-youtube-video.js';
22
22
  const classes = {
23
23
  open: 'site-modal--open',
package/js/ui/slider.js CHANGED
@@ -28,7 +28,7 @@
28
28
  // * Will Change use
29
29
 
30
30
  import maintain from 'ally.js/maintain/_maintain';
31
- import { log, logError, logWarning } from "@ulu/utils/logger.js";
31
+ import { log, logError, logWarning } from "../utils/logger.js";
32
32
  import { hasRequiredProps } from '@ulu/utils/object.js';
33
33
  import { trimWhitespace } from "@ulu/utils/string.js";
34
34
  import { debounce } from "@ulu/utils/performance.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ulu/frontend",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "Theming library",
5
5
  "browser": "js/index.js",
6
6
  "main": "index.js",
@@ -13,8 +13,10 @@
13
13
  "./scss": "./scss/index.scss"
14
14
  },
15
15
  "typesVersions": {
16
- "*" : {
17
- "js/*" : ["./types/*"]
16
+ "*": {
17
+ "js/*": [
18
+ "./types/*"
19
+ ]
18
20
  }
19
21
  },
20
22
  "type": "module",
@@ -25,7 +27,7 @@
25
27
  "docs:update:scss": "node ./docs-src/.vitepress/sassdoc.js",
26
28
  "docs:update:scss:debug": "node --inspect-brk ./docs-src/.vitepress/sassdoc.js",
27
29
  "docs:build:js": "node ./docs-src/.vitepress/jsdoc.js",
28
- "types" : "npx tsc"
30
+ "types": "npx tsc"
29
31
  },
30
32
  "repository": {
31
33
  "type": "git",
@@ -47,7 +49,6 @@
47
49
  },
48
50
  "homepage": "https://github.com/Jscherbe/frontend#readme",
49
51
  "devDependencies": {
50
- "@ulu/utils": "^0.0.4",
51
52
  "@ulu/vitepress-auto-menus": "^0.0.3",
52
53
  "@ulu/vitepress-sassdoc": "^0.0.6",
53
54
  "clean-jsdoc-theme": "^4.2.17",
@@ -57,5 +58,8 @@
57
58
  "sass": "^1.51.0",
58
59
  "typescript": "^5.3.3",
59
60
  "vitepress": "^1.0.0-rc.27"
61
+ },
62
+ "dependencies": {
63
+ "@ulu/utils": "^0.0.6"
60
64
  }
61
65
  }