@opentinyvue/vue-carousel-item 2.22.0 → 3.22.0

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/lib/index.js CHANGED
@@ -51,7 +51,7 @@ var CarouselItem = defineComponent({
51
51
  });
52
52
  }
53
53
  });
54
- var version = "2.22.0";
54
+ var version = "3.22.0";
55
55
  CarouselItem.install = function(Vue) {
56
56
  Vue.component(CarouselItem.name, CarouselItem);
57
57
  };
@@ -1,37 +1,41 @@
1
1
  import { renderless, api } from '@opentinyvue/vue-renderless/carousel-item/vue';
2
2
  import { defineComponent, props, setup } from '@opentinyvue/vue-common';
3
+ import { withDirectives, openBlock, createElementBlock, normalizeClass, normalizeStyle, vShow, createCommentVNode, renderSlot, createElementVNode, toDisplayString } from 'vue';
3
4
 
4
- function normalizeComponent(scriptExports, render, staticRenderFns, functionalTemplate, injectStyles, scopeId, moduleIdentifier, shadowMode) {
5
- var options = typeof scriptExports === "function" ? scriptExports.options : scriptExports;
6
- if (render) {
7
- options.render = render;
8
- options.staticRenderFns = staticRenderFns;
9
- options._compiled = true;
5
+ function _createForOfIteratorHelperLoose(r, e) {
6
+ var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
7
+ if (t) return (t = t.call(r)).next.bind(t);
8
+ if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) {
9
+ t && (r = t);
10
+ var o = 0;
11
+ return function() {
12
+ return o >= r.length ? { done: true } : { done: false, value: r[o++] };
13
+ };
10
14
  }
11
- var hook;
12
- if (injectStyles) {
13
- hook = injectStyles;
14
- }
15
- if (hook) {
16
- if (options.functional) {
17
- options._injectStyles = hook;
18
- var originalRender = options.render;
19
- options.render = function renderWithStyleInjection(h, context) {
20
- hook.call(context);
21
- return originalRender(h, context);
22
- };
23
- } else {
24
- var existing = options.beforeCreate;
25
- options.beforeCreate = existing ? [].concat(existing, hook) : [hook];
26
- }
15
+ throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
16
+ }
17
+ function _unsupportedIterableToArray(r, a) {
18
+ if (r) {
19
+ if ("string" == typeof r) return _arrayLikeToArray(r, a);
20
+ var t = {}.toString.call(r).slice(8, -1);
21
+ return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0;
27
22
  }
28
- return {
29
- exports: scriptExports,
30
- options
31
- };
32
23
  }
24
+ function _arrayLikeToArray(r, a) {
25
+ (null == a || a > r.length) && (a = r.length);
26
+ for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
27
+ return n;
28
+ }
29
+ var _export_sfc = function _export_sfc2(sfc, props) {
30
+ var target = sfc.__vccOpts || sfc;
31
+ for (var _iterator = _createForOfIteratorHelperLoose(props), _step; !(_step = _iterator()).done; ) {
32
+ var _step$value = _step.value, key = _step$value[0], val = _step$value[1];
33
+ target[key] = val;
34
+ }
35
+ return target;
36
+ };
33
37
 
34
- var __vue2_script = defineComponent({
38
+ var _sfc_main = defineComponent({
35
39
  props: [].concat(props, ["name", "title", "label"]),
36
40
  setup: function setup$1(props2, context) {
37
41
  return setup({
@@ -42,59 +46,49 @@ var __vue2_script = defineComponent({
42
46
  });
43
47
  }
44
48
  });
45
- var render = function render2() {
46
- var _vm = this;
47
- var _h = _vm.$createElement;
48
- var _c = _vm._self._c || _h;
49
- return _c("div", {
50
- directives: [{
51
- name: "show",
52
- rawName: "v-show",
53
- value: _vm.state.ready,
54
- expression: "state.ready"
55
- }],
56
- class: _vm.m(["absolute top-0 left-0 w-full inline-block overflow-hidden z-0", _vm.state.carouselParent.type === "card" ? "w-1/2 transition-transform duration-300 ease-in-out" : "", _vm.state.hover ? "opacity-10" : "", _vm.state.animate && !_vm.state.moving ? "transition-transform duration-300 ease-in-out" : "", _vm.state.inStage && _vm.state.carouselParent.type === "card" ? "cursor-pointer z-[1] group" : "", _vm.state.active ? "z-[2]" : ""]),
57
- style: _vm.state.getTransform,
58
- attrs: {
49
+ var _hoisted_1 = {
50
+ key: 1,
51
+ "data-tag": "tiny-carousel-item-title",
52
+ class: "absolute bottom-0 h-6 w-full text-left text-color-text-inverse leading-6 bg-color-text-disabled"
53
+ };
54
+ var _hoisted_2 = {
55
+ class: "py-0 px-3 text-xs w-4/5 inline-block text-ellipsis overflow-hidden whitespace-nowrap"
56
+ };
57
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
58
+ return withDirectives((openBlock(), createElementBlock(
59
+ "div",
60
+ {
59
61
  "data-tag": "tiny-carousel-item",
60
- "role": "carousel-item"
61
- },
62
- on: {
63
- "click": _vm.handleItemClick
64
- }
65
- }, [_vm.state.carouselParent.type === "card" ? _c("div", {
66
- directives: [{
67
- name: "show",
68
- rawName: "v-show",
69
- value: !_vm.state.active,
70
- expression: "!state.active"
71
- }],
72
- staticClass: "absolute h-full top-0 left-0 w-full opacity-20 duration-200 group-hover:opacity-10",
73
- class: {
74
- "opacity-10": _vm.state.inStage && _vm.state.carouselParent.type === "card" && _vm.state.hover
62
+ role: "carousel-item",
63
+ class: normalizeClass(_ctx.m(["absolute top-0 left-0 w-full inline-block overflow-hidden z-0", _ctx.state.carouselParent.type === "card" ? "w-1/2 transition-transform duration-300 ease-in-out" : "", _ctx.state.hover ? "opacity-10" : "", _ctx.state.animate && !_ctx.state.moving ? "transition-transform duration-300 ease-in-out" : "", _ctx.state.inStage && _ctx.state.carouselParent.type === "card" ? "cursor-pointer z-[1] group" : "", _ctx.state.active ? "z-[2]" : ""])),
64
+ style: normalizeStyle(_ctx.state.getTransform),
65
+ onClick: _cache[0] || (_cache[0] = function() {
66
+ return _ctx.handleItemClick && _ctx.handleItemClick.apply(_ctx, arguments);
67
+ })
75
68
  },
76
- attrs: {
77
- "data-tag": "tiny-carousel-item-card"
78
- }
79
- }) : _vm._e(), _vm._t("default"), _vm.state.hasTitle ? _c("div", {
80
- staticClass: "absolute bottom-0 h-6 w-full text-left text-color-text-inverse leading-6 bg-color-text-disabled",
81
- attrs: {
82
- "data-tag": "tiny-carousel-item-title"
83
- }
84
- }, [_c("span", {
85
- staticClass: "py-0 px-3 text-xs w-4/5 inline-block text-ellipsis overflow-hidden whitespace-nowrap"
86
- }, [_vm._v(_vm._s(_vm.title))])]) : _vm._e()], 2);
87
- };
88
- var staticRenderFns = [];
89
- var __cssModules = {};
90
- var __component__ = /* @__PURE__ */ normalizeComponent(__vue2_script, render, staticRenderFns, false, __vue2_injectStyles);
91
- function __vue2_injectStyles(context) {
92
- for (var o in __cssModules) {
93
- this[o] = __cssModules[o];
94
- }
69
+ [_ctx.state.carouselParent.type === "card" ? withDirectives((openBlock(), createElementBlock(
70
+ "div",
71
+ {
72
+ key: 0,
73
+ "data-tag": "tiny-carousel-item-card",
74
+ class: normalizeClass(["absolute h-full top-0 left-0 w-full opacity-20 duration-200 group-hover:opacity-10", {
75
+ "opacity-10": _ctx.state.inStage && _ctx.state.carouselParent.type === "card" && _ctx.state.hover
76
+ }])
77
+ },
78
+ null,
79
+ 2
80
+ /* CLASS */
81
+ )), [[vShow, !_ctx.state.active]]) : createCommentVNode("v-if", true), renderSlot(_ctx.$slots, "default"), _ctx.state.hasTitle ? (openBlock(), createElementBlock("div", _hoisted_1, [createElementVNode(
82
+ "span",
83
+ _hoisted_2,
84
+ toDisplayString(_ctx.title),
85
+ 1
86
+ /* TEXT */
87
+ )])) : createCommentVNode("v-if", true)],
88
+ 6
89
+ /* CLASS, STYLE */
90
+ )), [[vShow, _ctx.state.ready]]);
95
91
  }
96
- var mobileFirst = /* @__PURE__ */ function() {
97
- return __component__.exports;
98
- }();
92
+ var mobileFirst = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
99
93
 
100
94
  export { mobileFirst as default };
package/lib/pc.js CHANGED
@@ -1,37 +1,41 @@
1
1
  import { renderless, api } from '@opentinyvue/vue-renderless/carousel-item/vue';
2
2
  import { defineComponent, props, setup } from '@opentinyvue/vue-common';
3
+ import { withDirectives, openBlock, createElementBlock, normalizeClass, normalizeStyle, vShow, createCommentVNode, renderSlot, createElementVNode, toDisplayString } from 'vue';
3
4
 
4
- function normalizeComponent(scriptExports, render, staticRenderFns, functionalTemplate, injectStyles, scopeId, moduleIdentifier, shadowMode) {
5
- var options = typeof scriptExports === "function" ? scriptExports.options : scriptExports;
6
- if (render) {
7
- options.render = render;
8
- options.staticRenderFns = staticRenderFns;
9
- options._compiled = true;
5
+ function _createForOfIteratorHelperLoose(r, e) {
6
+ var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
7
+ if (t) return (t = t.call(r)).next.bind(t);
8
+ if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) {
9
+ t && (r = t);
10
+ var o = 0;
11
+ return function() {
12
+ return o >= r.length ? { done: true } : { done: false, value: r[o++] };
13
+ };
10
14
  }
11
- var hook;
12
- if (injectStyles) {
13
- hook = injectStyles;
14
- }
15
- if (hook) {
16
- if (options.functional) {
17
- options._injectStyles = hook;
18
- var originalRender = options.render;
19
- options.render = function renderWithStyleInjection(h, context) {
20
- hook.call(context);
21
- return originalRender(h, context);
22
- };
23
- } else {
24
- var existing = options.beforeCreate;
25
- options.beforeCreate = existing ? [].concat(existing, hook) : [hook];
26
- }
15
+ throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
16
+ }
17
+ function _unsupportedIterableToArray(r, a) {
18
+ if (r) {
19
+ if ("string" == typeof r) return _arrayLikeToArray(r, a);
20
+ var t = {}.toString.call(r).slice(8, -1);
21
+ return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0;
27
22
  }
28
- return {
29
- exports: scriptExports,
30
- options
31
- };
32
23
  }
24
+ function _arrayLikeToArray(r, a) {
25
+ (null == a || a > r.length) && (a = r.length);
26
+ for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
27
+ return n;
28
+ }
29
+ var _export_sfc = function _export_sfc2(sfc, props) {
30
+ var target = sfc.__vccOpts || sfc;
31
+ for (var _iterator = _createForOfIteratorHelperLoose(props), _step; !(_step = _iterator()).done; ) {
32
+ var _step$value = _step.value, key = _step$value[0], val = _step$value[1];
33
+ target[key] = val;
34
+ }
35
+ return target;
36
+ };
33
37
 
34
- var __vue2_script = defineComponent({
38
+ var _sfc_main = defineComponent({
35
39
  props: [].concat(props, ["name", "title", "label"]),
36
40
  setup: function setup$1(props2, context) {
37
41
  return setup({
@@ -42,53 +46,49 @@ var __vue2_script = defineComponent({
42
46
  });
43
47
  }
44
48
  });
45
- var render = function render2() {
46
- var _class;
47
- var _vm = this;
48
- var _h = _vm.$createElement;
49
- var _c = _vm._self._c || _h;
50
- return _c("div", {
51
- directives: [{
52
- name: "show",
53
- rawName: "v-show",
54
- value: _vm.state.ready,
55
- expression: "state.ready"
56
- }],
57
- staticClass: "tiny-carousel__item",
58
- class: (_class = {
59
- "is-active": _vm.state.active,
60
- "tiny-carousel__item--card": _vm.state.carouselParent.type === "card",
61
- "is-in-stage": _vm.state.inStage,
62
- "is-hover": _vm.state.hover,
63
- "is-animating": _vm.state.animating,
64
- "tiny-oblique": _vm.state.isOblique
65
- }, _class["tiny-oblique"] = _vm.state.carouselParent.type === "card" && _vm.state.carouselParent.setUserCls, _class),
66
- style: _vm.state.getTransform,
67
- on: {
68
- "click": _vm.handleItemClick
69
- }
70
- }, [_vm.state.carouselParent.type === "card" ? _c("div", {
71
- directives: [{
72
- name: "show",
73
- rawName: "v-show",
74
- value: !_vm.state.active,
75
- expression: "!state.active"
76
- }],
77
- staticClass: "tiny-carousel__mask"
78
- }) : _vm._e(), _vm._t("default"), _vm.state.hasTitle ? _c("div", {
79
- staticClass: "item-title"
80
- }, [_c("span", [_vm._v(_vm._s(_vm.title))])]) : _vm._e()], 2);
49
+ var _hoisted_1 = {
50
+ key: 0,
51
+ class: "tiny-carousel__mask"
81
52
  };
82
- var staticRenderFns = [];
83
- var __cssModules = {};
84
- var __component__ = /* @__PURE__ */ normalizeComponent(__vue2_script, render, staticRenderFns, false, __vue2_injectStyles);
85
- function __vue2_injectStyles(context) {
86
- for (var o in __cssModules) {
87
- this[o] = __cssModules[o];
88
- }
53
+ var _hoisted_2 = {
54
+ key: 1,
55
+ class: "item-title"
56
+ };
57
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
58
+ var _ref;
59
+ return withDirectives((openBlock(), createElementBlock(
60
+ "div",
61
+ {
62
+ class: normalizeClass([(_ref = {
63
+ "is-active": _ctx.state.active,
64
+ "tiny-carousel__item--card": _ctx.state.carouselParent.type === "card",
65
+ "is-in-stage": _ctx.state.inStage,
66
+ "is-hover": _ctx.state.hover,
67
+ "is-animating": _ctx.state.animating,
68
+ "tiny-oblique": _ctx.state.isOblique
69
+ }, _ref["tiny-oblique"] = _ctx.state.carouselParent.type === "card" && _ctx.state.carouselParent.setUserCls, _ref), "tiny-carousel__item"]),
70
+ style: normalizeStyle(_ctx.state.getTransform),
71
+ onClick: _cache[0] || (_cache[0] = function() {
72
+ return _ctx.handleItemClick && _ctx.handleItemClick.apply(_ctx, arguments);
73
+ })
74
+ },
75
+ [_ctx.state.carouselParent.type === "card" ? withDirectives((openBlock(), createElementBlock(
76
+ "div",
77
+ _hoisted_1,
78
+ null,
79
+ 512
80
+ /* NEED_PATCH */
81
+ )), [[vShow, !_ctx.state.active]]) : createCommentVNode("v-if", true), renderSlot(_ctx.$slots, "default"), _ctx.state.hasTitle ? (openBlock(), createElementBlock("div", _hoisted_2, [createElementVNode(
82
+ "span",
83
+ null,
84
+ toDisplayString(_ctx.title),
85
+ 1
86
+ /* TEXT */
87
+ )])) : createCommentVNode("v-if", true)],
88
+ 6
89
+ /* CLASS, STYLE */
90
+ )), [[vShow, _ctx.state.ready]]);
89
91
  }
90
- var pc = /* @__PURE__ */ function() {
91
- return __component__.exports;
92
- }();
92
+ var pc = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
93
93
 
94
94
  export { pc as default };
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@opentinyvue/vue-carousel-item",
3
- "version": "2.22.0",
3
+ "version": "3.22.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib/index.js",
7
7
  "sideEffects": false,
8
8
  "type": "module",
9
9
  "dependencies": {
10
- "@opentinyvue/vue-common": "~2.22.0",
10
+ "@opentinyvue/vue-common": "~3.22.0",
11
11
  "@opentinyvue/vue-renderless": "~3.22.0",
12
12
  "@opentinyvue/vue-theme": "~3.22.0"
13
13
  },
package/src/index.d.ts CHANGED
@@ -1,2 +1,50 @@
1
- declare const _default: any;
1
+ declare const _default: import("@vue/runtime-core").DefineComponent<{
2
+ _constants: {
3
+ type: ObjectConstructor;
4
+ default: () => {
5
+ TYPE_CARD: string;
6
+ TYPE_VERTICAL: string;
7
+ CARD_SCALE: number;
8
+ };
9
+ };
10
+ name: StringConstructor;
11
+ title: StringConstructor;
12
+ label: {
13
+ type: (StringConstructor | NumberConstructor)[];
14
+ default: string;
15
+ };
16
+ tiny_mode: StringConstructor;
17
+ tiny_mode_root: BooleanConstructor;
18
+ tiny_template: (ObjectConstructor | FunctionConstructor)[];
19
+ tiny_renderless: FunctionConstructor;
20
+ tiny_theme: StringConstructor;
21
+ tiny_chart_theme: ObjectConstructor;
22
+ }, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
23
+ [key: string]: any;
24
+ }>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
25
+ _constants: {
26
+ type: ObjectConstructor;
27
+ default: () => {
28
+ TYPE_CARD: string;
29
+ TYPE_VERTICAL: string;
30
+ CARD_SCALE: number;
31
+ };
32
+ };
33
+ name: StringConstructor;
34
+ title: StringConstructor;
35
+ label: {
36
+ type: (StringConstructor | NumberConstructor)[];
37
+ default: string;
38
+ };
39
+ tiny_mode: StringConstructor;
40
+ tiny_mode_root: BooleanConstructor;
41
+ tiny_template: (ObjectConstructor | FunctionConstructor)[];
42
+ tiny_renderless: FunctionConstructor;
43
+ tiny_theme: StringConstructor;
44
+ tiny_chart_theme: ObjectConstructor;
45
+ }>>, {
46
+ label: string | number;
47
+ tiny_mode_root: boolean;
48
+ _constants: Record<string, any>;
49
+ }, {}>;
2
50
  export default _default;
@@ -1,2 +1,44 @@
1
- declare const _default: any;
1
+ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
2
+ name?: any;
3
+ label?: any;
4
+ title?: any;
5
+ tiny_mode?: any;
6
+ tiny_mode_root?: any;
7
+ tiny_template?: any;
8
+ tiny_renderless?: any;
9
+ _constants?: any;
10
+ tiny_theme?: any;
11
+ tiny_chart_theme?: any;
12
+ }>, {
13
+ t: (this: any, path: any, options?: any) => any;
14
+ vm: any;
15
+ f: (props: any, attrs?: {}) => {};
16
+ a: (attrs: any, filters: any, include: any) => {};
17
+ d: (props: any) => void;
18
+ dp: (props: any) => void;
19
+ gcls: (key: any) => any;
20
+ m: (...cssClasses: any[]) => string;
21
+ }, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
22
+ name?: any;
23
+ label?: any;
24
+ title?: any;
25
+ tiny_mode?: any;
26
+ tiny_mode_root?: any;
27
+ tiny_template?: any;
28
+ tiny_renderless?: any;
29
+ _constants?: any;
30
+ tiny_theme?: any;
31
+ tiny_chart_theme?: any;
32
+ }>>>, {
33
+ readonly name?: any;
34
+ readonly label?: any;
35
+ readonly title?: any;
36
+ readonly tiny_mode?: any;
37
+ readonly tiny_mode_root?: any;
38
+ readonly tiny_template?: any;
39
+ readonly tiny_renderless?: any;
40
+ readonly _constants?: any;
41
+ readonly tiny_theme?: any;
42
+ readonly tiny_chart_theme?: any;
43
+ }, {}>;
2
44
  export default _default;
package/src/pc.vue.d.ts CHANGED
@@ -1,2 +1,44 @@
1
- declare const _default: any;
1
+ declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
2
+ name?: any;
3
+ label?: any;
4
+ title?: any;
5
+ tiny_mode?: any;
6
+ tiny_mode_root?: any;
7
+ tiny_template?: any;
8
+ tiny_renderless?: any;
9
+ _constants?: any;
10
+ tiny_theme?: any;
11
+ tiny_chart_theme?: any;
12
+ }>, {
13
+ t: (this: any, path: any, options?: any) => any;
14
+ vm: any;
15
+ f: (props: any, attrs?: {}) => {};
16
+ a: (attrs: any, filters: any, include: any) => {};
17
+ d: (props: any) => void;
18
+ dp: (props: any) => void;
19
+ gcls: (key: any) => any;
20
+ m: (...cssClasses: any[]) => string;
21
+ }, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
22
+ name?: any;
23
+ label?: any;
24
+ title?: any;
25
+ tiny_mode?: any;
26
+ tiny_mode_root?: any;
27
+ tiny_template?: any;
28
+ tiny_renderless?: any;
29
+ _constants?: any;
30
+ tiny_theme?: any;
31
+ tiny_chart_theme?: any;
32
+ }>>>, {
33
+ readonly name?: any;
34
+ readonly label?: any;
35
+ readonly title?: any;
36
+ readonly tiny_mode?: any;
37
+ readonly tiny_mode_root?: any;
38
+ readonly tiny_template?: any;
39
+ readonly tiny_renderless?: any;
40
+ readonly _constants?: any;
41
+ readonly tiny_theme?: any;
42
+ readonly tiny_chart_theme?: any;
43
+ }, {}>;
2
44
  export default _default;