uikit 3.15.20-dev.bf544e984 → 3.15.21
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 +10 -2
- package/dist/css/uikit-core-rtl.css +1 -1
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +1 -1
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +47 -13
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +47 -13
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +1 -1
- package/dist/js/components/countdown.min.js +2 -2
- package/dist/js/components/filter.js +1 -1
- package/dist/js/components/filter.min.js +2 -2
- package/dist/js/components/lightbox-panel.js +1 -1
- package/dist/js/components/lightbox-panel.min.js +2 -2
- package/dist/js/components/lightbox.js +1 -1
- package/dist/js/components/lightbox.min.js +2 -2
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +2 -2
- package/dist/js/components/parallax.js +1 -1
- package/dist/js/components/parallax.min.js +2 -2
- package/dist/js/components/slider-parallax.js +1 -1
- package/dist/js/components/slider-parallax.min.js +2 -2
- package/dist/js/components/slider.js +1 -1
- package/dist/js/components/slider.min.js +2 -2
- package/dist/js/components/slideshow-parallax.js +1 -1
- package/dist/js/components/slideshow-parallax.min.js +2 -2
- package/dist/js/components/slideshow.js +1 -1
- package/dist/js/components/slideshow.min.js +2 -2
- package/dist/js/components/sortable.js +1 -1
- package/dist/js/components/sortable.min.js +2 -2
- package/dist/js/components/tooltip.js +1 -1
- package/dist/js/components/tooltip.min.js +2 -2
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +2 -2
- package/dist/js/uikit-core.js +128 -128
- package/dist/js/uikit-core.min.js +2 -2
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +2 -2
- package/dist/js/uikit.js +128 -128
- package/dist/js/uikit.min.js +2 -2
- package/package.json +1 -1
- package/src/less/theme/base.less +1 -1
- package/src/less/theme/form.less +1 -1
- package/src/less/theme/navbar.less +27 -3
- package/src/less/theme/text.less +5 -3
- package/src/less/theme/thumbnav.less +12 -8
- package/src/scss/mixins-theme.scss +34 -11
- package/src/scss/theme/navbar.scss +6 -3
- package/src/scss/theme/text.scss +3 -1
- package/src/scss/theme/thumbnav.scss +6 -4
- package/src/scss/variables-theme.scss +9 -5
package/dist/js/uikit.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.15.
|
|
1
|
+
/*! UIkit 3.15.21 | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */
|
|
2
2
|
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
|
@@ -2170,145 +2170,145 @@
|
|
|
2170
2170
|
|
|
2171
2171
|
var util = /*#__PURE__*/Object.freeze({
|
|
2172
2172
|
__proto__: null,
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
Transition: Transition,
|
|
2173
|
+
$: $,
|
|
2174
|
+
$$: $$,
|
|
2176
2175
|
Animation: Animation,
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2176
|
+
Deferred: Deferred,
|
|
2177
|
+
Dimensions: Dimensions,
|
|
2178
|
+
MouseTracker: MouseTracker,
|
|
2179
|
+
Transition: Transition,
|
|
2181
2180
|
addClass: addClass,
|
|
2182
|
-
removeClass: removeClass,
|
|
2183
|
-
removeClasses: removeClasses,
|
|
2184
|
-
replaceClass: replaceClass,
|
|
2185
|
-
hasClass: hasClass,
|
|
2186
|
-
toggleClass: toggleClass,
|
|
2187
|
-
dimensions: dimensions$1,
|
|
2188
|
-
offset: offset,
|
|
2189
|
-
position: position,
|
|
2190
|
-
offsetPosition: offsetPosition,
|
|
2191
|
-
height: height,
|
|
2192
|
-
width: width,
|
|
2193
|
-
boxModelAdjust: boxModelAdjust,
|
|
2194
|
-
flipPosition: flipPosition,
|
|
2195
|
-
toPx: toPx,
|
|
2196
|
-
ready: ready,
|
|
2197
|
-
isTag: isTag,
|
|
2198
|
-
empty: empty,
|
|
2199
|
-
html: html,
|
|
2200
|
-
prepend: prepend,
|
|
2201
|
-
append: append,
|
|
2202
|
-
before: before,
|
|
2203
2181
|
after: after,
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
wrapInner: wrapInner,
|
|
2207
|
-
unwrap: unwrap,
|
|
2208
|
-
fragment: fragment,
|
|
2182
|
+
ajax: ajax,
|
|
2183
|
+
append: append,
|
|
2209
2184
|
apply: apply,
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
pointerEnter: pointerEnter,
|
|
2219
|
-
pointerLeave: pointerLeave,
|
|
2220
|
-
pointerCancel: pointerCancel,
|
|
2221
|
-
on: on,
|
|
2222
|
-
off: off,
|
|
2223
|
-
once: once,
|
|
2224
|
-
trigger: trigger,
|
|
2185
|
+
assign: assign,
|
|
2186
|
+
attr: attr,
|
|
2187
|
+
before: before,
|
|
2188
|
+
boxModelAdjust: boxModelAdjust,
|
|
2189
|
+
camelize: camelize,
|
|
2190
|
+
children: children,
|
|
2191
|
+
clamp: clamp,
|
|
2192
|
+
closest: closest,
|
|
2225
2193
|
createEvent: createEvent,
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2194
|
+
css: css,
|
|
2195
|
+
data: data,
|
|
2196
|
+
dimensions: dimensions$1,
|
|
2197
|
+
each: each,
|
|
2198
|
+
empty: empty,
|
|
2199
|
+
endsWith: endsWith,
|
|
2200
|
+
escape: escape,
|
|
2229
2201
|
fastdom: fastdom,
|
|
2230
|
-
isVoidElement: isVoidElement,
|
|
2231
|
-
isVisible: isVisible,
|
|
2232
|
-
selInput: selInput,
|
|
2233
|
-
isInput: isInput,
|
|
2234
|
-
selFocusable: selFocusable,
|
|
2235
|
-
isFocusable: isFocusable,
|
|
2236
|
-
parent: parent,
|
|
2237
2202
|
filter: filter$1,
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2203
|
+
find: find,
|
|
2204
|
+
findAll: findAll,
|
|
2205
|
+
findIndex: findIndex,
|
|
2206
|
+
flipPosition: flipPosition,
|
|
2207
|
+
fragment: fragment,
|
|
2208
|
+
getEventPos: getEventPos,
|
|
2209
|
+
getImage: getImage,
|
|
2210
|
+
getIndex: getIndex,
|
|
2211
|
+
hasAttr: hasAttr,
|
|
2212
|
+
hasClass: hasClass,
|
|
2244
2213
|
hasOwn: hasOwn,
|
|
2214
|
+
hasTouch: hasTouch,
|
|
2215
|
+
height: height,
|
|
2216
|
+
html: html,
|
|
2245
2217
|
hyphenate: hyphenate,
|
|
2246
|
-
|
|
2247
|
-
ucfirst: ucfirst,
|
|
2248
|
-
startsWith: startsWith,
|
|
2249
|
-
endsWith: endsWith,
|
|
2218
|
+
inBrowser: inBrowser,
|
|
2250
2219
|
includes: includes,
|
|
2251
|
-
|
|
2220
|
+
index: index,
|
|
2221
|
+
intersectRect: intersectRect,
|
|
2252
2222
|
isArray: isArray,
|
|
2253
|
-
|
|
2254
|
-
assign: assign,
|
|
2255
|
-
isFunction: isFunction,
|
|
2256
|
-
isObject: isObject,
|
|
2257
|
-
isPlainObject: isPlainObject,
|
|
2258
|
-
isWindow: isWindow,
|
|
2223
|
+
isBoolean: isBoolean,
|
|
2259
2224
|
isDocument: isDocument,
|
|
2260
|
-
isNode: isNode,
|
|
2261
2225
|
isElement: isElement,
|
|
2262
|
-
|
|
2263
|
-
|
|
2226
|
+
isEmpty: isEmpty,
|
|
2227
|
+
isEqual: isEqual,
|
|
2228
|
+
isFocusable: isFocusable,
|
|
2229
|
+
isFunction: isFunction,
|
|
2230
|
+
isInView: isInView,
|
|
2231
|
+
isInput: isInput,
|
|
2232
|
+
isNode: isNode,
|
|
2264
2233
|
isNumber: isNumber,
|
|
2265
2234
|
isNumeric: isNumeric,
|
|
2266
|
-
|
|
2235
|
+
isObject: isObject,
|
|
2236
|
+
isPlainObject: isPlainObject,
|
|
2237
|
+
isRtl: isRtl,
|
|
2238
|
+
isString: isString,
|
|
2239
|
+
isTag: isTag,
|
|
2240
|
+
isTouch: isTouch,
|
|
2267
2241
|
isUndefined: isUndefined,
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
toNodes: toNodes,
|
|
2273
|
-
toWindow: toWindow,
|
|
2274
|
-
isEqual: isEqual,
|
|
2275
|
-
swap: swap,
|
|
2242
|
+
isVideo: isVideo,
|
|
2243
|
+
isVisible: isVisible,
|
|
2244
|
+
isVoidElement: isVoidElement,
|
|
2245
|
+
isWindow: isWindow,
|
|
2276
2246
|
last: last,
|
|
2277
|
-
|
|
2278
|
-
sortBy: sortBy$1,
|
|
2279
|
-
sumBy: sumBy,
|
|
2280
|
-
uniqueBy: uniqueBy,
|
|
2281
|
-
clamp: clamp,
|
|
2282
|
-
noop: noop,
|
|
2283
|
-
intersectRect: intersectRect,
|
|
2284
|
-
pointInRect: pointInRect,
|
|
2285
|
-
Dimensions: Dimensions,
|
|
2286
|
-
getIndex: getIndex,
|
|
2247
|
+
matches: matches,
|
|
2287
2248
|
memoize: memoize,
|
|
2288
|
-
|
|
2289
|
-
|
|
2249
|
+
mergeOptions: mergeOptions,
|
|
2250
|
+
mute: mute,
|
|
2251
|
+
noop: noop,
|
|
2290
2252
|
observeIntersection: observeIntersection,
|
|
2291
|
-
observeResize: observeResize,
|
|
2292
2253
|
observeMutation: observeMutation,
|
|
2293
|
-
|
|
2254
|
+
observeResize: observeResize,
|
|
2255
|
+
off: off,
|
|
2256
|
+
offset: offset,
|
|
2257
|
+
offsetPosition: offsetPosition,
|
|
2258
|
+
offsetViewport: offsetViewport,
|
|
2259
|
+
on: on,
|
|
2260
|
+
once: once,
|
|
2261
|
+
parent: parent,
|
|
2262
|
+
parents: parents,
|
|
2294
2263
|
parseOptions: parseOptions,
|
|
2295
|
-
play: play,
|
|
2296
2264
|
pause: pause,
|
|
2297
|
-
|
|
2298
|
-
|
|
2265
|
+
play: play,
|
|
2266
|
+
pointInRect: pointInRect,
|
|
2267
|
+
pointerCancel: pointerCancel,
|
|
2268
|
+
pointerDown: pointerDown$1,
|
|
2269
|
+
pointerEnter: pointerEnter,
|
|
2270
|
+
pointerLeave: pointerLeave,
|
|
2271
|
+
pointerMove: pointerMove$1,
|
|
2272
|
+
pointerUp: pointerUp$1,
|
|
2273
|
+
position: position,
|
|
2299
2274
|
positionAt: positionAt,
|
|
2275
|
+
prepend: prepend,
|
|
2276
|
+
propName: propName,
|
|
2300
2277
|
query: query,
|
|
2301
2278
|
queryAll: queryAll,
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2279
|
+
ready: ready,
|
|
2280
|
+
remove: remove$1,
|
|
2281
|
+
removeAttr: removeAttr,
|
|
2282
|
+
removeClass: removeClass,
|
|
2283
|
+
removeClasses: removeClasses,
|
|
2284
|
+
replaceClass: replaceClass,
|
|
2308
2285
|
scrollIntoView: scrollIntoView,
|
|
2309
|
-
scrolledOver: scrolledOver,
|
|
2310
2286
|
scrollParents: scrollParents,
|
|
2311
|
-
|
|
2287
|
+
scrolledOver: scrolledOver,
|
|
2288
|
+
selFocusable: selFocusable,
|
|
2289
|
+
selInput: selInput,
|
|
2290
|
+
sortBy: sortBy$1,
|
|
2291
|
+
startsWith: startsWith,
|
|
2292
|
+
sumBy: sumBy,
|
|
2293
|
+
swap: swap,
|
|
2294
|
+
toArray: toArray,
|
|
2295
|
+
toBoolean: toBoolean,
|
|
2296
|
+
toEventTargets: toEventTargets,
|
|
2297
|
+
toFloat: toFloat,
|
|
2298
|
+
toNode: toNode,
|
|
2299
|
+
toNodes: toNodes,
|
|
2300
|
+
toNumber: toNumber,
|
|
2301
|
+
toPx: toPx,
|
|
2302
|
+
toWindow: toWindow,
|
|
2303
|
+
toggleClass: toggleClass,
|
|
2304
|
+
trigger: trigger,
|
|
2305
|
+
ucfirst: ucfirst,
|
|
2306
|
+
uniqueBy: uniqueBy,
|
|
2307
|
+
unwrap: unwrap,
|
|
2308
|
+
width: width,
|
|
2309
|
+
within: within,
|
|
2310
|
+
wrapAll: wrapAll,
|
|
2311
|
+
wrapInner: wrapInner
|
|
2312
2312
|
});
|
|
2313
2313
|
|
|
2314
2314
|
function globalAPI (UIkit) {
|
|
@@ -2970,7 +2970,7 @@
|
|
|
2970
2970
|
UIkit.data = '__uikit__';
|
|
2971
2971
|
UIkit.prefix = 'uk-';
|
|
2972
2972
|
UIkit.options = {};
|
|
2973
|
-
UIkit.version = '3.15.
|
|
2973
|
+
UIkit.version = '3.15.21';
|
|
2974
2974
|
|
|
2975
2975
|
globalAPI(UIkit);
|
|
2976
2976
|
hooksAPI(UIkit);
|
|
@@ -7829,6 +7829,7 @@
|
|
|
7829
7829
|
__proto__: null,
|
|
7830
7830
|
Accordion: Accordion,
|
|
7831
7831
|
Alert: alert,
|
|
7832
|
+
Close: Close,
|
|
7832
7833
|
Cover: cover,
|
|
7833
7834
|
Drop: drop,
|
|
7834
7835
|
Dropdown: drop,
|
|
@@ -7840,34 +7841,33 @@
|
|
|
7840
7841
|
Img: img,
|
|
7841
7842
|
Leader: leader,
|
|
7842
7843
|
Margin: Margin,
|
|
7844
|
+
Marker: IconComponent,
|
|
7843
7845
|
Modal: modal,
|
|
7844
7846
|
Nav: nav,
|
|
7847
|
+
NavParentIcon: NavParentIcon,
|
|
7845
7848
|
Navbar: navbar,
|
|
7849
|
+
NavbarParentIcon: IconComponent,
|
|
7850
|
+
NavbarToggleIcon: IconComponent,
|
|
7846
7851
|
Offcanvas: offcanvas,
|
|
7847
7852
|
OverflowAuto: overflowAuto,
|
|
7853
|
+
OverlayIcon: IconComponent,
|
|
7854
|
+
PaginationNext: IconComponent,
|
|
7855
|
+
PaginationPrevious: IconComponent,
|
|
7848
7856
|
Responsive: responsive,
|
|
7849
7857
|
Scroll: scroll,
|
|
7850
7858
|
Scrollspy: scrollspy,
|
|
7851
7859
|
ScrollspyNav: scrollspyNav,
|
|
7860
|
+
SearchIcon: Search,
|
|
7861
|
+
SlidenavNext: Slidenav,
|
|
7862
|
+
SlidenavPrevious: Slidenav,
|
|
7863
|
+
Spinner: Spinner,
|
|
7852
7864
|
Sticky: sticky,
|
|
7853
7865
|
Svg: SVG,
|
|
7854
7866
|
Switcher: Switcher,
|
|
7855
7867
|
Tab: tab,
|
|
7856
7868
|
Toggle: toggle,
|
|
7857
|
-
|
|
7858
|
-
|
|
7859
|
-
Spinner: Spinner,
|
|
7860
|
-
NavParentIcon: NavParentIcon,
|
|
7861
|
-
SlidenavNext: Slidenav,
|
|
7862
|
-
SlidenavPrevious: Slidenav,
|
|
7863
|
-
SearchIcon: Search,
|
|
7864
|
-
Marker: IconComponent,
|
|
7865
|
-
NavbarParentIcon: IconComponent,
|
|
7866
|
-
NavbarToggleIcon: IconComponent,
|
|
7867
|
-
OverlayIcon: IconComponent,
|
|
7868
|
-
PaginationNext: IconComponent,
|
|
7869
|
-
PaginationPrevious: IconComponent,
|
|
7870
|
-
Totop: IconComponent
|
|
7869
|
+
Totop: IconComponent,
|
|
7870
|
+
Video: Video
|
|
7871
7871
|
});
|
|
7872
7872
|
|
|
7873
7873
|
// register components
|