@progress/kendo-vue-common 6.4.1 → 6.5.0-develop.1
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/package.json
CHANGED
|
@@ -5,18 +5,18 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import {
|
|
8
|
+
import { ADAPTIVE_MEDIUM_BREAKPOINT as e, ADAPTIVE_SMALL_BREAKPOINT as r } from "../constants/main.mjs";
|
|
9
9
|
import { defineComponent as t } from "vue";
|
|
10
10
|
const o = /* @__PURE__ */ t({
|
|
11
11
|
name: "AdaptiveModeProvider",
|
|
12
12
|
props: {
|
|
13
13
|
small: {
|
|
14
14
|
type: Number,
|
|
15
|
-
default:
|
|
15
|
+
default: r
|
|
16
16
|
},
|
|
17
17
|
medium: {
|
|
18
18
|
type: Number,
|
|
19
|
-
default:
|
|
19
|
+
default: e
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
provide() {
|