@opentinyvue/vue-dropdown-menu 2.21.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/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 - present TinyVue Authors.
4
+ Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd.
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
package/index.d.ts ADDED
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Copyright (c) 2022 - present TinyVue Authors.
3
+ * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd.
4
+ *
5
+ * Use of this source code is governed by an MIT-style license.
6
+ *
7
+ * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
8
+ * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
9
+ * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
10
+ *
11
+ */
12
+ import DropdownMenu from './src/index';
13
+ export default DropdownMenu;
package/lib/index.js ADDED
@@ -0,0 +1,106 @@
1
+ function _extends() {
2
+ return _extends = Object.assign ? Object.assign.bind() : function(n) {
3
+ for (var e = 1; e < arguments.length; e++) {
4
+ var t = arguments[e];
5
+ for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
6
+ }
7
+ return n;
8
+ }, _extends.apply(null, arguments);
9
+ }
10
+ import { defineComponent, $prefix, $setup, $props } from "@opentinyvue/vue-common";
11
+ import PcTemplate from "./pc.js";
12
+ import MobileTemplate from "./mobile.js";
13
+ import MobileFirstTemplate from "./mobile-first.js";
14
+ var template = function template2(mode) {
15
+ var _process$env;
16
+ var tinyMode = typeof process === "object" ? (_process$env = process.env) == null ? void 0 : _process$env.TINY_MODE : null;
17
+ if ("pc" === (tinyMode || mode)) {
18
+ return PcTemplate;
19
+ }
20
+ if ("mobile" === (tinyMode || mode)) {
21
+ return MobileTemplate;
22
+ }
23
+ if ("mobile-first" === (tinyMode || mode)) {
24
+ return MobileFirstTemplate;
25
+ }
26
+ return PcTemplate;
27
+ };
28
+ var dropdownMenuProps = _extends({}, $props, {
29
+ multiStage: {
30
+ type: Boolean,
31
+ default: false
32
+ },
33
+ checkedStatus: {
34
+ type: Boolean,
35
+ default: false
36
+ },
37
+ visibleArrow: Boolean,
38
+ arrowOffset: {
39
+ type: Number,
40
+ default: 0
41
+ },
42
+ placement: String,
43
+ // 默认主题 'bottom-end'
44
+ popperClass: String,
45
+ popperAppendToBody: {
46
+ type: Boolean,
47
+ default: true
48
+ },
49
+ activeColor: String,
50
+ closeOnClickOutside: {
51
+ type: Boolean,
52
+ default: true
53
+ },
54
+ closeOnClickOverlay: {
55
+ type: Boolean,
56
+ default: true
57
+ },
58
+ direction: {
59
+ type: String,
60
+ default: "down"
61
+ },
62
+ duration: {
63
+ type: [Number, String],
64
+ default: 0.2
65
+ },
66
+ overlay: {
67
+ type: Boolean,
68
+ default: true
69
+ },
70
+ zIndex: [Number, String],
71
+ maxHeight: {
72
+ type: [Number, String],
73
+ default: "400"
74
+ },
75
+ // tiny新增
76
+ options: {
77
+ type: Array,
78
+ default: function _default() {
79
+ return [];
80
+ }
81
+ },
82
+ textField: {
83
+ type: String,
84
+ default: "label"
85
+ }
86
+ });
87
+ var DropdownMenu = defineComponent({
88
+ name: $prefix + "DropdownMenu",
89
+ componentName: $prefix + "DropdownMenu",
90
+ props: dropdownMenuProps,
91
+ setup: function setup(props, context) {
92
+ return $setup({
93
+ props,
94
+ context,
95
+ template
96
+ });
97
+ }
98
+ });
99
+ var version = "2.21.0";
100
+ DropdownMenu.install = function(Vue) {
101
+ Vue.component(DropdownMenu.name, DropdownMenu);
102
+ };
103
+ DropdownMenu.version = version;
104
+ export {
105
+ DropdownMenu as default
106
+ };
@@ -0,0 +1,115 @@
1
+ import { renderless, api } from '@opentinyvue/vue-renderless/dropdown-menu/vue';
2
+ import { defineComponent, props, setup } from '@opentinyvue/vue-common';
3
+ import Tooltip from '@opentinyvue/vue-tooltip';
4
+
5
+ function normalizeComponent(scriptExports, render, staticRenderFns, functionalTemplate, injectStyles, scopeId, moduleIdentifier, shadowMode) {
6
+ var options = typeof scriptExports === "function" ? scriptExports.options : scriptExports;
7
+ if (render) {
8
+ options.render = render;
9
+ options.staticRenderFns = staticRenderFns;
10
+ options._compiled = true;
11
+ }
12
+ var hook;
13
+ if (injectStyles) {
14
+ hook = injectStyles;
15
+ }
16
+ if (hook) {
17
+ if (options.functional) {
18
+ options._injectStyles = hook;
19
+ var originalRender = options.render;
20
+ options.render = function renderWithStyleInjection(h, context) {
21
+ hook.call(context);
22
+ return originalRender(h, context);
23
+ };
24
+ } else {
25
+ var existing = options.beforeCreate;
26
+ options.beforeCreate = existing ? [].concat(existing, hook) : [hook];
27
+ }
28
+ }
29
+ return {
30
+ exports: scriptExports,
31
+ options
32
+ };
33
+ }
34
+
35
+ var __vue2_script = defineComponent({
36
+ props: [].concat(props, ["visibleArrow", "arrowOffset", "placement", "popperClass", "popperAppendToBody", "checkedStatus", "multiStage", "maxHeight"]),
37
+ emits: ["menu-item-click", "created"],
38
+ components: {
39
+ TinyTooltip: Tooltip
40
+ },
41
+ setup: function setup$1(props2, context) {
42
+ return setup({
43
+ props: props2,
44
+ context,
45
+ renderless,
46
+ api
47
+ });
48
+ }
49
+ });
50
+ var render = function render2() {
51
+ var _vm = this;
52
+ var _h = _vm.$createElement;
53
+ var _c = _vm._self._c || _h;
54
+ return _c("transition", {
55
+ attrs: {
56
+ "name": "tiny-zoom-in-top",
57
+ "duration": 150
58
+ },
59
+ on: {
60
+ "after-leave": _vm.doDestroy
61
+ }
62
+ }, [_c("ul", {
63
+ directives: [{
64
+ name: "show",
65
+ rawName: "v-show",
66
+ value: _vm.state.showPopper,
67
+ expression: "state.showPopper"
68
+ }],
69
+ class: _vm.m("min-w-[theme(spacing.18)] max-w-[theme(spacing.52)] absoulte bg-color-bg-1", {
70
+ "py-1.5": _vm.state.size === "medium"
71
+ }, {
72
+ "py-1.5": _vm.state.size === "small"
73
+ }, {
74
+ "py-0.75": _vm.state.size === "mini"
75
+ }, {
76
+ "overflow-x-hidden scrollbar-size-0": _vm.maxHeight
77
+ }, _vm.multiStage ? "!block rounded-none" : "rounded py-1 shadow-sm sm:shadow-md px-1", _vm.state.canvasHeight ? "sm:mb-6" : !_vm.multiStage && "sm:my-1 my-2", _vm.popperClass),
78
+ style: {
79
+ maxHeight: _vm.maxHeight + "px"
80
+ },
81
+ attrs: {
82
+ "data-tag": "tiny-dropdown-menu"
83
+ }
84
+ }, [_c("tiny-tooltip", {
85
+ ref: "tooltip",
86
+ attrs: {
87
+ "effect": "light",
88
+ "content": _vm.state.label,
89
+ "placement": "top-start",
90
+ "manual": true
91
+ },
92
+ model: {
93
+ value: _vm.state.showContent,
94
+ callback: function callback($$v) {
95
+ _vm.$set(_vm.state, "showContent", $$v);
96
+ },
97
+ expression: "state.showContent"
98
+ }
99
+ }), _vm.state.initShowPopper || _vm.state.showPopper ? [_vm._t("default", null, {
100
+ "selectedIndex": _vm.state.selectedIndex
101
+ })] : _vm._e()], 2)]);
102
+ };
103
+ var staticRenderFns = [];
104
+ var __cssModules = {};
105
+ var __component__ = /* @__PURE__ */ normalizeComponent(__vue2_script, render, staticRenderFns, false, __vue2_injectStyles);
106
+ function __vue2_injectStyles(context) {
107
+ for (var o in __cssModules) {
108
+ this[o] = __cssModules[o];
109
+ }
110
+ }
111
+ var mobileFirst = /* @__PURE__ */ function() {
112
+ return __component__.exports;
113
+ }();
114
+
115
+ export { mobileFirst as default };
package/lib/mobile.js ADDED
@@ -0,0 +1,135 @@
1
+ import { renderless, api } from '@opentinyvue/vue-renderless/dropdown-menu/vue';
2
+ import { defineComponent, props, directive, setup } from '@opentinyvue/vue-common';
3
+ import { iconUp, iconDown, iconUnfilter, iconSort, iconDeltaDown, iconDeltaUp } from '@opentinyvue/vue-icon';
4
+ import Clickoutside from '@opentinyvue/vue-renderless/common/deps/clickoutside';
5
+ import '@opentinyvue/vue-theme-mobile/dropdown-menu/index.css';
6
+
7
+ function normalizeComponent(scriptExports, render, staticRenderFns, functionalTemplate, injectStyles, scopeId, moduleIdentifier, shadowMode) {
8
+ var options = typeof scriptExports === "function" ? scriptExports.options : scriptExports;
9
+ if (render) {
10
+ options.render = render;
11
+ options.staticRenderFns = staticRenderFns;
12
+ options._compiled = true;
13
+ }
14
+ var hook;
15
+ if (injectStyles) {
16
+ hook = injectStyles;
17
+ }
18
+ if (hook) {
19
+ if (options.functional) {
20
+ options._injectStyles = hook;
21
+ var originalRender = options.render;
22
+ options.render = function renderWithStyleInjection(h, context) {
23
+ hook.call(context);
24
+ return originalRender(h, context);
25
+ };
26
+ } else {
27
+ var existing = options.beforeCreate;
28
+ options.beforeCreate = existing ? [].concat(existing, hook) : [hook];
29
+ }
30
+ }
31
+ return {
32
+ exports: scriptExports,
33
+ options
34
+ };
35
+ }
36
+
37
+ var __vue2_script = defineComponent({
38
+ props: [].concat(props, ["activeColor", "closeOnClickOutside", "closeOnClickOverlay", "direction", "duration", "overlay", "zIndex"]),
39
+ components: {
40
+ IconUp: iconUp(),
41
+ IconDown: iconDown(),
42
+ IconUnfilter: iconUnfilter(),
43
+ IconSort: iconSort(),
44
+ IconDeltaDown: iconDeltaDown(),
45
+ IconDeltaUp: iconDeltaUp()
46
+ },
47
+ directives: directive({
48
+ Clickoutside
49
+ }),
50
+ emits: ["open", "created"],
51
+ setup: function setup$1(props2, context) {
52
+ return setup({
53
+ props: props2,
54
+ context,
55
+ renderless,
56
+ api
57
+ });
58
+ }
59
+ });
60
+ var render = function render2() {
61
+ var _vm = this;
62
+ var _h = _vm.$createElement;
63
+ var _c = _vm._self._c || _h;
64
+ return _c("div", {
65
+ ref: "menu",
66
+ staticClass: "tiny-mobile-dropdown-menu"
67
+ }, [_c("div", {
68
+ staticClass: "tiny-mobile-dropdown-menu__bar tiny-mobile-dropdown-menu__bar--opened"
69
+ }, _vm._l(_vm.state.children, function(item, index) {
70
+ return _c("div", {
71
+ directives: [{
72
+ name: "clickoutside",
73
+ rawName: "v-clickoutside",
74
+ value: _vm.clickOutside,
75
+ expression: "clickOutside"
76
+ }],
77
+ key: index,
78
+ staticClass: "tiny-mobile-dropdown-menu__item",
79
+ class: [item.disabled ? "is-disabled" : "", item.titleClass],
80
+ attrs: {
81
+ "role": "button",
82
+ "tabindex": item.disabled ? -1 : 0
83
+ },
84
+ on: {
85
+ "click": function click($event) {
86
+ return _vm.toggleItem(index, item);
87
+ }
88
+ }
89
+ }, [_c("div", {
90
+ staticClass: "tiny-mobile-dropdown-menu__title",
91
+ class: {
92
+ "is-active": item.state.showPopup,
93
+ "is-down": item.state.showPopup === (_vm.direction === "down")
94
+ },
95
+ style: {
96
+ color: item.state.showPopup ? _vm.activeColor : ""
97
+ }
98
+ }, [_c("div", {
99
+ staticClass: "tiny-mobile-dropdown-menu__title-wrap"
100
+ }, [!_vm.slots.title ? _c("span", [_c("span", {
101
+ staticClass: "tiny-mobile-dropdown-menu__title-text"
102
+ }, [_vm._v(_vm._s(item.state.displayTitle))]), item.type === "sort" ? _c("span", {
103
+ staticClass: "tiny-mobile-dropdown-menu__title-icon"
104
+ }, [_c("icon-delta-up", {
105
+ staticClass: "up",
106
+ attrs: {
107
+ "fill": item.state.sort === "asc" ? _vm.activeColor ? _vm.activeColor : "#f36f64" : "#ccc"
108
+ }
109
+ }), _c("icon-delta-down", {
110
+ staticClass: "down",
111
+ attrs: {
112
+ "fill": item.state.sort === "desc" ? _vm.activeColor ? _vm.activeColor : "#f36f64" : "#ccc"
113
+ }
114
+ })], 1) : _c(item.type === "filter" ? "IconUnfilter" : item.type === "selection" && item.state.showPopup ? "IconUp" : "IconDown", {
115
+ tag: "component",
116
+ class: [item.type === "filter" ? "filter-icon" : ""],
117
+ attrs: {
118
+ "fill": item.state.showPopup ? _vm.activeColor ? _vm.activeColor : "#f36f64" : "#ccc"
119
+ }
120
+ })], 1) : _vm._t("title")], 2)])]);
121
+ }), 0), _vm._t("default")], 2);
122
+ };
123
+ var staticRenderFns = [];
124
+ var __cssModules = {};
125
+ var __component__ = /* @__PURE__ */ normalizeComponent(__vue2_script, render, staticRenderFns, false, __vue2_injectStyles);
126
+ function __vue2_injectStyles(context) {
127
+ for (var o in __cssModules) {
128
+ this[o] = __cssModules[o];
129
+ }
130
+ }
131
+ var mobile = /* @__PURE__ */ function() {
132
+ return __component__.exports;
133
+ }();
134
+
135
+ export { mobile as default };
package/lib/pc.js ADDED
@@ -0,0 +1,116 @@
1
+ import { renderless, api } from '@opentinyvue/vue-renderless/dropdown-menu/vue';
2
+ import { defineComponent, props, setup } from '@opentinyvue/vue-common';
3
+ import DropdownItem from '@opentinyvue/vue-dropdown-item';
4
+ import '@opentinyvue/vue-theme/dropdown-menu/index.css';
5
+
6
+ function normalizeComponent(scriptExports, render, staticRenderFns, functionalTemplate, injectStyles, scopeId, moduleIdentifier, shadowMode) {
7
+ var options = typeof scriptExports === "function" ? scriptExports.options : scriptExports;
8
+ if (render) {
9
+ options.render = render;
10
+ options.staticRenderFns = staticRenderFns;
11
+ options._compiled = true;
12
+ }
13
+ var hook;
14
+ if (injectStyles) {
15
+ hook = injectStyles;
16
+ }
17
+ if (hook) {
18
+ if (options.functional) {
19
+ options._injectStyles = hook;
20
+ var originalRender = options.render;
21
+ options.render = function renderWithStyleInjection(h, context) {
22
+ hook.call(context);
23
+ return originalRender(h, context);
24
+ };
25
+ } else {
26
+ var existing = options.beforeCreate;
27
+ options.beforeCreate = existing ? [].concat(existing, hook) : [hook];
28
+ }
29
+ }
30
+ return {
31
+ exports: scriptExports,
32
+ options
33
+ };
34
+ }
35
+
36
+ var __vue2_script = defineComponent({
37
+ components: {
38
+ TinyDropdownItem: DropdownItem
39
+ },
40
+ emits: ["mouseenter", "mouseleave", "click", "update:modelValue", "created"],
41
+ props: [].concat(props, [
42
+ "visibleArrow",
43
+ "arrowOffset",
44
+ "placement",
45
+ "popperClass",
46
+ "popperAppendToBody",
47
+ "checkedStatus",
48
+ // tiny 新增
49
+ "textField",
50
+ "options"
51
+ ]),
52
+ setup: function setup$1(props2, context) {
53
+ return setup({
54
+ props: props2,
55
+ context,
56
+ renderless,
57
+ api
58
+ });
59
+ }
60
+ });
61
+ var render = function render2() {
62
+ var _vm = this;
63
+ var _h = _vm.$createElement;
64
+ var _c = _vm._self._c || _h;
65
+ return _c("transition", {
66
+ attrs: {
67
+ "name": "tiny-zoom-in-top"
68
+ },
69
+ on: {
70
+ "after-leave": _vm.doDestroy
71
+ }
72
+ }, [_c("ul", {
73
+ directives: [{
74
+ name: "show",
75
+ rawName: "v-show",
76
+ value: _vm.state.showPopper,
77
+ expression: "state.showPopper"
78
+ }],
79
+ staticClass: "tiny-dropdown-menu tiny-popper",
80
+ class: [_vm.state.size && "tiny-dropdown-menu--" + _vm.state.size, _vm.popperClass],
81
+ on: {
82
+ "mouseenter": _vm.handleMouseenter,
83
+ "mouseleave": _vm.handleMouseleave
84
+ }
85
+ }, [_vm.state.initShowPopper || _vm.state.showPopper ? [_vm._t("default", function() {
86
+ return _vm._l(_vm.options, function(item, index) {
87
+ return _c("tiny-dropdown-item", {
88
+ key: index,
89
+ attrs: {
90
+ "item-data": item,
91
+ "label": item[_vm.textField],
92
+ "icon": item.icon,
93
+ "disabled": item.disabled,
94
+ "divided": item.divided,
95
+ "tip": item.tip,
96
+ "tip-position": item.tipPosition
97
+ }
98
+ });
99
+ });
100
+ }, {
101
+ "selectedIndex": _vm.state.selectedIndex
102
+ })] : _vm._e()], 2)]);
103
+ };
104
+ var staticRenderFns = [];
105
+ var __cssModules = {};
106
+ var __component__ = /* @__PURE__ */ normalizeComponent(__vue2_script, render, staticRenderFns, false, __vue2_injectStyles);
107
+ function __vue2_injectStyles(context) {
108
+ for (var o in __cssModules) {
109
+ this[o] = __cssModules[o];
110
+ }
111
+ }
112
+ var pc = /* @__PURE__ */ function() {
113
+ return __component__.exports;
114
+ }();
115
+
116
+ export { pc as default };
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@opentinyvue/vue-dropdown-menu",
3
+ "version": "2.21.0",
4
+ "description": "",
5
+ "main": "./lib/index.js",
6
+ "module": "./lib/index.js",
7
+ "sideEffects": false,
8
+ "type": "module",
9
+ "dependencies": {
10
+ "@opentinyvue/vue-renderless": "~3.21.0",
11
+ "@opentinyvue/vue-common": "~2.21.0",
12
+ "@opentinyvue/vue-icon": "~2.21.0",
13
+ "@opentinyvue/vue-tooltip": "~2.21.0",
14
+ "@opentinyvue/vue-theme-mobile": "~3.21.0",
15
+ "@opentinyvue/vue-dropdown-item": "~2.21.0",
16
+ "@opentinyvue/vue-theme": "~3.21.0"
17
+ },
18
+ "license": "MIT",
19
+ "types": "index.d.ts",
20
+ "scripts": {
21
+ "build": "pnpm -w build:ui $npm_package_name",
22
+ "//postversion": "pnpm build"
23
+ }
24
+ }
package/src/index.d.ts ADDED
@@ -0,0 +1,74 @@
1
+ /**
2
+ * Copyright (c) 2022 - present TinyVue Authors.
3
+ * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd.
4
+ *
5
+ * Use of this source code is governed by an MIT-style license.
6
+ *
7
+ * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
8
+ * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
9
+ * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
10
+ *
11
+ */
12
+ export declare const dropdownMenuProps: {
13
+ multiStage: {
14
+ type: BooleanConstructor;
15
+ default: boolean;
16
+ };
17
+ checkedStatus: {
18
+ type: BooleanConstructor;
19
+ default: boolean;
20
+ };
21
+ visibleArrow: BooleanConstructor;
22
+ arrowOffset: {
23
+ type: NumberConstructor;
24
+ default: number;
25
+ };
26
+ placement: StringConstructor;
27
+ popperClass: StringConstructor;
28
+ popperAppendToBody: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ activeColor: StringConstructor;
33
+ closeOnClickOutside: {
34
+ type: BooleanConstructor;
35
+ default: boolean;
36
+ };
37
+ closeOnClickOverlay: {
38
+ type: BooleanConstructor;
39
+ default: boolean;
40
+ };
41
+ direction: {
42
+ type: StringConstructor;
43
+ default: string;
44
+ };
45
+ duration: {
46
+ type: (StringConstructor | NumberConstructor)[];
47
+ default: number;
48
+ };
49
+ overlay: {
50
+ type: BooleanConstructor;
51
+ default: boolean;
52
+ };
53
+ zIndex: (StringConstructor | NumberConstructor)[];
54
+ maxHeight: {
55
+ type: (StringConstructor | NumberConstructor)[];
56
+ default: string;
57
+ };
58
+ options: {
59
+ type: ArrayConstructor;
60
+ default: () => never[];
61
+ };
62
+ textField: {
63
+ type: StringConstructor;
64
+ default: string;
65
+ };
66
+ tiny_mode: StringConstructor;
67
+ tiny_mode_root: BooleanConstructor;
68
+ tiny_template: (ObjectConstructor | FunctionConstructor)[];
69
+ tiny_renderless: FunctionConstructor;
70
+ tiny_theme: StringConstructor;
71
+ tiny_chart_theme: ObjectConstructor;
72
+ };
73
+ declare const _default: any;
74
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: any;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: any;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: any;
2
+ export default _default;