uikit 3.13.8-dev.ecda751d3 → 3.13.8-dev.efe195e41

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 (47) hide show
  1. package/CHANGELOG.md +3 -0
  2. package/dist/css/uikit-core-rtl.css +1 -1
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +1 -1
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +1 -1
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +1 -1
  9. package/dist/css/uikit.min.css +1 -1
  10. package/dist/js/components/countdown.js +1 -1
  11. package/dist/js/components/countdown.min.js +1 -1
  12. package/dist/js/components/filter.js +1 -1
  13. package/dist/js/components/filter.min.js +1 -1
  14. package/dist/js/components/lightbox-panel.js +1 -1
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +1 -1
  17. package/dist/js/components/lightbox.min.js +1 -1
  18. package/dist/js/components/notification.js +1 -1
  19. package/dist/js/components/notification.min.js +1 -1
  20. package/dist/js/components/parallax.js +13 -10
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +13 -10
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +1 -1
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +13 -10
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +1 -1
  29. package/dist/js/components/slideshow.min.js +1 -1
  30. package/dist/js/components/sortable.js +1 -1
  31. package/dist/js/components/sortable.min.js +1 -1
  32. package/dist/js/components/tooltip.js +1 -1
  33. package/dist/js/components/tooltip.min.js +1 -1
  34. package/dist/js/components/upload.js +1 -1
  35. package/dist/js/components/upload.min.js +1 -1
  36. package/dist/js/uikit-core.js +67 -54
  37. package/dist/js/uikit-core.min.js +1 -1
  38. package/dist/js/uikit-icons.js +1 -1
  39. package/dist/js/uikit-icons.min.js +1 -1
  40. package/dist/js/uikit.js +67 -54
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +1 -1
  43. package/src/js/api/hooks.js +1 -1
  44. package/src/js/core/height-match.js +7 -15
  45. package/src/js/core/scrollspy.js +45 -26
  46. package/src/js/core/sticky.js +2 -2
  47. package/src/js/mixin/media.js +12 -9
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "uikit",
3
3
  "title": "UIkit",
4
4
  "description": "UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces.",
5
- "version": "3.13.8-dev.ecda751d3",
5
+ "version": "3.13.8-dev.efe195e41",
6
6
  "main": "dist/js/uikit.js",
7
7
  "style": "dist/css/uikit.css",
8
8
  "sideEffects": [
@@ -105,7 +105,7 @@ export default function (UIkit) {
105
105
  const {
106
106
  $options: { computed },
107
107
  } = this;
108
- const values = { ...this._computed };
108
+ const values = { ...(initial ? {} : this._computed) };
109
109
  this._computed = {};
110
110
 
111
111
  for (const key in computed) {
@@ -1,6 +1,6 @@
1
1
  import Resize from '../mixin/resize';
2
2
  import { getRows } from './margin';
3
- import { $$, boxModelAdjust, css, dimensions, isVisible, toFloat } from 'uikit-util';
3
+ import { $$, boxModelAdjust, css, dimensions, isVisible } from 'uikit-util';
4
4
 
5
5
  export default {
6
6
  mixins: [Resize],
@@ -56,22 +56,14 @@ function match(elements) {
56
56
  return { heights: [''], elements };
57
57
  }
58
58
 
59
+ css(elements, 'minHeight', '');
59
60
  let heights = elements.map(getHeight);
60
- let max = Math.max(...heights);
61
- const hasMinHeight = elements.some((el) => el.style.minHeight);
62
- const hasShrunk = elements.some((el, i) => !el.style.minHeight && heights[i] < max);
63
-
64
- if (hasMinHeight && hasShrunk) {
65
- css(elements, 'minHeight', '');
66
- heights = elements.map(getHeight);
67
- max = Math.max(...heights);
68
- }
69
-
70
- heights = elements.map((el, i) =>
71
- heights[i] === max && toFloat(el.style.minHeight).toFixed(2) !== max.toFixed(2) ? '' : max
72
- );
61
+ const max = Math.max(...heights);
73
62
 
74
- return { heights, elements };
63
+ return {
64
+ heights: elements.map((el, i) => (heights[i].toFixed(2) === max.toFixed(2) ? '' : max)),
65
+ elements,
66
+ };
75
67
  }
76
68
 
77
69
  function getHeight(element) {
@@ -4,15 +4,15 @@ import {
4
4
  css,
5
5
  filter,
6
6
  data as getData,
7
- isInView,
7
+ observeIntersection,
8
8
  once,
9
9
  removeClass,
10
10
  removeClasses,
11
11
  toggleClass,
12
+ toPx,
12
13
  trigger,
13
14
  } from 'uikit-util';
14
15
 
15
- const stateKey = '_ukScrollspy';
16
16
  export default {
17
17
  mixins: [Scroll],
18
18
 
@@ -45,43 +45,64 @@ export default {
45
45
  return target ? $$(target, $el) : [$el];
46
46
  },
47
47
 
48
- watch(elements) {
48
+ watch(elements, prev) {
49
49
  if (this.hidden) {
50
50
  css(filter(elements, `:not(.${this.inViewClass})`), 'visibility', 'hidden');
51
51
  }
52
+
53
+ if (prev) {
54
+ this.$reset();
55
+ }
52
56
  },
53
57
 
54
58
  immediate: true,
55
59
  },
56
60
  },
57
61
 
62
+ connected() {
63
+ this._data.elements = new Map();
64
+ this.registerObserver(
65
+ observeIntersection(
66
+ this.elements,
67
+ (records) => {
68
+ const elements = this._data.elements;
69
+ for (const { target: el, isIntersecting } of records) {
70
+ if (!elements.has(el)) {
71
+ elements.set(el, {
72
+ cls: getData(el, 'uk-scrollspy-class') || this.cls,
73
+ });
74
+ }
75
+
76
+ const state = elements.get(el);
77
+ if (!this.repeat && state.show) {
78
+ continue;
79
+ }
80
+
81
+ state.show = isIntersecting;
82
+ }
83
+
84
+ this.$emit();
85
+ },
86
+ {
87
+ rootMargin: `${toPx(this.offsetTop, 'height') - 1}px ${
88
+ toPx(this.offsetLeft, 'width') - 1
89
+ }px`,
90
+ },
91
+ false
92
+ )
93
+ );
94
+ },
95
+
58
96
  disconnected() {
59
- for (const el of this.elements) {
60
- removeClass(el, this.inViewClass, el[stateKey]?.cls || '');
61
- delete el[stateKey];
97
+ for (const [el, state] of this._data.elements.entries()) {
98
+ removeClass(el, this.inViewClass, state?.cls || '');
62
99
  }
63
100
  },
64
101
 
65
102
  update: [
66
103
  {
67
- read() {
68
- for (const el of this.elements) {
69
- if (!el[stateKey]) {
70
- el[stateKey] = { cls: getData(el, 'uk-scrollspy-class') || this.cls };
71
- }
72
-
73
- if (!this.repeat && el[stateKey].show) {
74
- continue;
75
- }
76
-
77
- el[stateKey].show = isInView(el, this.offsetTop, this.offsetLeft);
78
- }
79
- },
80
-
81
104
  write(data) {
82
- for (const el of this.elements) {
83
- const state = el[stateKey];
84
-
105
+ for (const [el, state] of data.elements.entries()) {
85
106
  if (state.show && !state.inview && !state.queued) {
86
107
  state.queued = true;
87
108
 
@@ -99,14 +120,12 @@ export default {
99
120
  }
100
121
  }
101
122
  },
102
-
103
- events: ['scroll', 'resize'],
104
123
  },
105
124
  ],
106
125
 
107
126
  methods: {
108
127
  toggle(el, inview) {
109
- const state = el[stateKey];
128
+ const state = this._data.elements.get(el);
110
129
 
111
130
  state.off?.();
112
131
 
@@ -137,13 +137,13 @@ export default {
137
137
  return false;
138
138
  }
139
139
 
140
- const hide = this.isActive && types.has('resize');
140
+ const hide = this.active && types.has('resize');
141
141
  if (hide) {
142
142
  css(this.selTarget, 'transition', '0s');
143
143
  this.hide();
144
144
  }
145
145
 
146
- if (!this.isActive) {
146
+ if (!this.active) {
147
147
  height = getOffset(this.$el).height;
148
148
  margin = css(this.$el, 'margin');
149
149
  }
@@ -20,16 +20,19 @@ export default {
20
20
 
21
21
  connected() {
22
22
  const media = toMedia(this.media);
23
- this.mediaObj = window.matchMedia(media);
24
- const handler = () => {
25
- this.matchMedia = this.mediaObj.matches;
26
- trigger(this.$el, createEvent('mediachange', false, true, [this.mediaObj]));
27
- };
28
- this.offMediaObj = on(this.mediaObj, 'change', () => {
23
+ this.matchMedia = true;
24
+ if (media) {
25
+ this.mediaObj = window.matchMedia(media);
26
+ const handler = () => {
27
+ this.matchMedia = this.mediaObj.matches;
28
+ trigger(this.$el, createEvent('mediachange', false, true, [this.mediaObj]));
29
+ };
30
+ this.offMediaObj = on(this.mediaObj, 'change', () => {
31
+ handler();
32
+ this.$emit('resize');
33
+ });
29
34
  handler();
30
- this.$emit('resize');
31
- });
32
- handler();
35
+ }
33
36
  },
34
37
 
35
38
  disconnected() {