@opentinyvue/vue-date-panel 3.22.1 → 3.24.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/mobile-first.js +5 -2
- package/lib/pc.js +3 -3
- package/package.json +14 -14
- package/src/index.d.ts +2 -0
- package/src/mobile-first.vue.d.ts +74 -74
- package/src/pc.vue.d.ts +2 -0
package/lib/mobile-first.js
CHANGED
|
@@ -133,10 +133,12 @@ var _hoisted_4 = ["aria-label"];
|
|
|
133
133
|
var _hoisted_5 = ["aria-label"];
|
|
134
134
|
var _hoisted_6 = {
|
|
135
135
|
key: 0,
|
|
136
|
-
"data-tag": "tiny-picker-panel__timezone"
|
|
136
|
+
"data-tag": "tiny-picker-panel__timezone",
|
|
137
|
+
class: "tiny-picker-panel__timezone"
|
|
137
138
|
};
|
|
138
139
|
var _hoisted_7 = {
|
|
139
|
-
"data-tag": "tiny-picker-panel__tzlist"
|
|
140
|
+
"data-tag": "tiny-picker-panel__tzlist",
|
|
141
|
+
class: "tiny-picker-panel__tzlist"
|
|
140
142
|
};
|
|
141
143
|
var _hoisted_8 = {
|
|
142
144
|
"data-tag": "tzlist"
|
|
@@ -417,6 +419,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
417
419
|
renderList(_ctx.state.renderTzdata, function(tz, index) {
|
|
418
420
|
return withDirectives((openBlock(), createElementBlock("li", {
|
|
419
421
|
"data-tag": "tiny-picker-panel__tzlist-li",
|
|
422
|
+
class: "tiny-picker-panel__tzlist-li",
|
|
420
423
|
title: tz.name,
|
|
421
424
|
key: index,
|
|
422
425
|
onClick: function onClick($event) {
|
package/lib/pc.js
CHANGED
|
@@ -209,18 +209,18 @@ function _sfc_render(_ctx, _cache, $props2, $setup, $data, $options) {
|
|
|
209
209
|
onAfterLeave: _ctx.handleLeave
|
|
210
210
|
}, {
|
|
211
211
|
default: withCtx(function() {
|
|
212
|
-
var _ctx$state$shortcuts;
|
|
212
|
+
var _ctx$state$shortcuts, _ctx$state$shortcuts2;
|
|
213
213
|
return [createElementVNode(
|
|
214
214
|
"div",
|
|
215
215
|
{
|
|
216
216
|
class: normalizeClass(["tiny-picker-panel tiny-date-picker tiny-popper", [{
|
|
217
|
-
"has-sidebar": _ctx.slots.sidebar || _ctx.state.shortcuts,
|
|
217
|
+
"has-sidebar": _ctx.slots.sidebar || ((_ctx$state$shortcuts = _ctx.state.shortcuts) == null ? void 0 : _ctx$state$shortcuts.length),
|
|
218
218
|
"has-time": _ctx.state.showTime
|
|
219
219
|
}, _ctx.state.popperClass]])
|
|
220
220
|
},
|
|
221
221
|
[createElementVNode("div", _hoisted_1, [renderSlot(_ctx.$slots, "sidebar", {
|
|
222
222
|
class: "tiny-picker-panel__sidebar"
|
|
223
|
-
}), (_ctx$state$
|
|
223
|
+
}), (_ctx$state$shortcuts2 = _ctx.state.shortcuts) != null && _ctx$state$shortcuts2.length ? (openBlock(), createElementBlock("div", _hoisted_2, [(openBlock(true), createElementBlock(
|
|
224
224
|
Fragment,
|
|
225
225
|
null,
|
|
226
226
|
renderList(_ctx.state.shortcuts, function(shortcut, key) {
|
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-date-panel",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.24.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"module": "./lib/index.js",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@opentinyvue/vue-button": "~3.
|
|
12
|
-
"@opentinyvue/vue-common": "~3.
|
|
13
|
-
"@opentinyvue/vue-date-table": "~3.
|
|
14
|
-
"@opentinyvue/vue-directive": "~3.
|
|
15
|
-
"@opentinyvue/vue-icon": "~3.
|
|
16
|
-
"@opentinyvue/vue-input": "~3.
|
|
17
|
-
"@opentinyvue/vue-locale": "~3.
|
|
18
|
-
"@opentinyvue/vue-month-table": "~3.
|
|
19
|
-
"@opentinyvue/vue-popup": "~3.
|
|
20
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
21
|
-
"@opentinyvue/vue-theme": "~3.
|
|
22
|
-
"@opentinyvue/vue-time": "~3.
|
|
23
|
-
"@opentinyvue/vue-year-table": "~3.
|
|
11
|
+
"@opentinyvue/vue-button": "~3.24.0",
|
|
12
|
+
"@opentinyvue/vue-common": "~3.24.0",
|
|
13
|
+
"@opentinyvue/vue-date-table": "~3.24.0",
|
|
14
|
+
"@opentinyvue/vue-directive": "~3.24.0",
|
|
15
|
+
"@opentinyvue/vue-icon": "~3.24.0",
|
|
16
|
+
"@opentinyvue/vue-input": "~3.24.0",
|
|
17
|
+
"@opentinyvue/vue-locale": "~3.24.0",
|
|
18
|
+
"@opentinyvue/vue-month-table": "~3.24.0",
|
|
19
|
+
"@opentinyvue/vue-popup": "~3.24.0",
|
|
20
|
+
"@opentinyvue/vue-renderless": "~3.24.0",
|
|
21
|
+
"@opentinyvue/vue-theme": "~3.24.0",
|
|
22
|
+
"@opentinyvue/vue-time": "~3.24.0",
|
|
23
|
+
"@opentinyvue/vue-year-table": "~3.24.0"
|
|
24
24
|
},
|
|
25
25
|
"types": "index.d.ts",
|
|
26
26
|
"scripts": {
|
package/src/index.d.ts
CHANGED
|
@@ -53,6 +53,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
53
53
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
54
54
|
tiny_renderless: FunctionConstructor;
|
|
55
55
|
tiny_theme: StringConstructor;
|
|
56
|
+
tiny_mcp_config: ObjectConstructor;
|
|
56
57
|
tiny_chart_theme: ObjectConstructor;
|
|
57
58
|
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
58
59
|
[key: string]: any;
|
|
@@ -111,6 +112,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
111
112
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
112
113
|
tiny_renderless: FunctionConstructor;
|
|
113
114
|
tiny_theme: StringConstructor;
|
|
115
|
+
tiny_mcp_config: ObjectConstructor;
|
|
114
116
|
tiny_chart_theme: ObjectConstructor;
|
|
115
117
|
}>>, {
|
|
116
118
|
format: string;
|
|
@@ -19,45 +19,45 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
19
19
|
length: number;
|
|
20
20
|
toString(): string;
|
|
21
21
|
toLocaleString(): string;
|
|
22
|
-
pop(): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
23
|
-
push(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]): number;
|
|
24
|
-
concat(...items: ConcatArray<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
25
|
-
concat(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | ConcatArray<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">)[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
22
|
+
pop(): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config" | undefined;
|
|
23
|
+
push(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]): number;
|
|
24
|
+
concat(...items: ConcatArray<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
25
|
+
concat(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config" | ConcatArray<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">)[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
26
26
|
join(separator?: string | undefined): string;
|
|
27
|
-
reverse(): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
28
|
-
shift(): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
29
|
-
slice(start?: number | undefined, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
30
|
-
sort(compareFn?: ((a: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", b: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme") => number) | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
31
|
-
splice(start: number, deleteCount?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
32
|
-
splice(start: number, deleteCount: number, ...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
33
|
-
unshift(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]): number;
|
|
34
|
-
indexOf(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", fromIndex?: number | undefined): number;
|
|
35
|
-
lastIndexOf(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", fromIndex?: number | undefined): number;
|
|
36
|
-
every<S extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => value is S, thisArg?: any): this is S[];
|
|
37
|
-
every(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): boolean;
|
|
38
|
-
some(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): boolean;
|
|
39
|
-
forEach(callbackfn: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => void, thisArg?: any): void;
|
|
40
|
-
map<U>(callbackfn: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U, thisArg?: any): U[];
|
|
41
|
-
filter<S_1 extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => value is S_1, thisArg?: any): S_1[];
|
|
42
|
-
filter(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
43
|
-
reduce(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
44
|
-
reduce(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", initialValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
45
|
-
reduce<U_1>(callbackfn: (previousValue: U_1, currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U_1, initialValue: U_1): U_1;
|
|
46
|
-
reduceRight(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
47
|
-
reduceRight(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", initialValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
48
|
-
reduceRight<U_2>(callbackfn: (previousValue: U_2, currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U_2, initialValue: U_2): U_2;
|
|
49
|
-
find<S_2 extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => value is S_2, thisArg?: any): S_2 | undefined;
|
|
50
|
-
find(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
51
|
-
findIndex(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): number;
|
|
52
|
-
fill(value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", start?: number | undefined, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
53
|
-
copyWithin(target: number, start: number, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
54
|
-
entries(): IterableIterator<[number, "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"]>;
|
|
27
|
+
reverse(): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
28
|
+
shift(): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config" | undefined;
|
|
29
|
+
slice(start?: number | undefined, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
30
|
+
sort(compareFn?: ((a: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", b: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config") => number) | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
31
|
+
splice(start: number, deleteCount?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
32
|
+
splice(start: number, deleteCount: number, ...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
33
|
+
unshift(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]): number;
|
|
34
|
+
indexOf(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", fromIndex?: number | undefined): number;
|
|
35
|
+
lastIndexOf(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", fromIndex?: number | undefined): number;
|
|
36
|
+
every<S extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => value is S, thisArg?: any): this is S[];
|
|
37
|
+
every(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => unknown, thisArg?: any): boolean;
|
|
38
|
+
some(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => unknown, thisArg?: any): boolean;
|
|
39
|
+
forEach(callbackfn: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => void, thisArg?: any): void;
|
|
40
|
+
map<U>(callbackfn: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => U, thisArg?: any): U[];
|
|
41
|
+
filter<S_1 extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => value is S_1, thisArg?: any): S_1[];
|
|
42
|
+
filter(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => unknown, thisArg?: any): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
43
|
+
reduce(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config";
|
|
44
|
+
reduce(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", initialValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config";
|
|
45
|
+
reduce<U_1>(callbackfn: (previousValue: U_1, currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => U_1, initialValue: U_1): U_1;
|
|
46
|
+
reduceRight(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config";
|
|
47
|
+
reduceRight(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", initialValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config";
|
|
48
|
+
reduceRight<U_2>(callbackfn: (previousValue: U_2, currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => U_2, initialValue: U_2): U_2;
|
|
49
|
+
find<S_2 extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => value is S_2, thisArg?: any): S_2 | undefined;
|
|
50
|
+
find(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => unknown, thisArg?: any): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config" | undefined;
|
|
51
|
+
findIndex(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => unknown, thisArg?: any): number;
|
|
52
|
+
fill(value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", start?: number | undefined, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
53
|
+
copyWithin(target: number, start: number, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
54
|
+
entries(): IterableIterator<[number, "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config"]>;
|
|
55
55
|
keys(): IterableIterator<number>;
|
|
56
|
-
values(): IterableIterator<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">;
|
|
57
|
-
includes(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", fromIndex?: number | undefined): boolean;
|
|
58
|
-
flatMap<U_3, This = undefined>(callback: (this: This, value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U_3 | readonly U_3[], thisArg?: This | undefined): U_3[];
|
|
56
|
+
values(): IterableIterator<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">;
|
|
57
|
+
includes(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", fromIndex?: number | undefined): boolean;
|
|
58
|
+
flatMap<U_3, This = undefined>(callback: (this: This, value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => U_3 | readonly U_3[], thisArg?: This | undefined): U_3[];
|
|
59
59
|
flat<A, D extends number = 1>(this: A, depth?: D | undefined): FlatArray<A, D>[];
|
|
60
|
-
[Symbol.iterator](): IterableIterator<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">;
|
|
60
|
+
[Symbol.iterator](): IterableIterator<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">;
|
|
61
61
|
[Symbol.unscopables]: {
|
|
62
62
|
[x: number]: boolean | undefined;
|
|
63
63
|
length?: boolean | undefined;
|
|
@@ -96,7 +96,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
96
96
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
97
97
|
at?: boolean | undefined;
|
|
98
98
|
};
|
|
99
|
-
at(index: number): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
99
|
+
at(index: number): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config" | undefined;
|
|
100
100
|
}, {
|
|
101
101
|
t: (this: any, path: any, options?: any) => any;
|
|
102
102
|
vm: any;
|
|
@@ -127,45 +127,45 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
127
127
|
length: number;
|
|
128
128
|
toString(): string;
|
|
129
129
|
toLocaleString(): string;
|
|
130
|
-
pop(): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
131
|
-
push(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]): number;
|
|
132
|
-
concat(...items: ConcatArray<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
133
|
-
concat(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | ConcatArray<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">)[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
130
|
+
pop(): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config" | undefined;
|
|
131
|
+
push(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]): number;
|
|
132
|
+
concat(...items: ConcatArray<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
133
|
+
concat(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config" | ConcatArray<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">)[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
134
134
|
join(separator?: string | undefined): string;
|
|
135
|
-
reverse(): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
136
|
-
shift(): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
137
|
-
slice(start?: number | undefined, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
138
|
-
sort(compareFn?: ((a: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", b: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme") => number) | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
139
|
-
splice(start: number, deleteCount?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
140
|
-
splice(start: number, deleteCount: number, ...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
141
|
-
unshift(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]): number;
|
|
142
|
-
indexOf(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", fromIndex?: number | undefined): number;
|
|
143
|
-
lastIndexOf(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", fromIndex?: number | undefined): number;
|
|
144
|
-
every<S extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => value is S, thisArg?: any): this is S[];
|
|
145
|
-
every(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): boolean;
|
|
146
|
-
some(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): boolean;
|
|
147
|
-
forEach(callbackfn: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => void, thisArg?: any): void;
|
|
148
|
-
map<U>(callbackfn: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U, thisArg?: any): U[];
|
|
149
|
-
filter<S_1 extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => value is S_1, thisArg?: any): S_1[];
|
|
150
|
-
filter(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
151
|
-
reduce(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
152
|
-
reduce(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", initialValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
153
|
-
reduce<U_1>(callbackfn: (previousValue: U_1, currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U_1, initialValue: U_1): U_1;
|
|
154
|
-
reduceRight(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
155
|
-
reduceRight(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", initialValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
156
|
-
reduceRight<U_2>(callbackfn: (previousValue: U_2, currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U_2, initialValue: U_2): U_2;
|
|
157
|
-
find<S_2 extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => value is S_2, thisArg?: any): S_2 | undefined;
|
|
158
|
-
find(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
159
|
-
findIndex(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): number;
|
|
160
|
-
fill(value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", start?: number | undefined, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
161
|
-
copyWithin(target: number, start: number, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
162
|
-
entries(): IterableIterator<[number, "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"]>;
|
|
135
|
+
reverse(): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
136
|
+
shift(): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config" | undefined;
|
|
137
|
+
slice(start?: number | undefined, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
138
|
+
sort(compareFn?: ((a: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", b: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config") => number) | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
139
|
+
splice(start: number, deleteCount?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
140
|
+
splice(start: number, deleteCount: number, ...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
141
|
+
unshift(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]): number;
|
|
142
|
+
indexOf(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", fromIndex?: number | undefined): number;
|
|
143
|
+
lastIndexOf(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", fromIndex?: number | undefined): number;
|
|
144
|
+
every<S extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => value is S, thisArg?: any): this is S[];
|
|
145
|
+
every(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => unknown, thisArg?: any): boolean;
|
|
146
|
+
some(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => unknown, thisArg?: any): boolean;
|
|
147
|
+
forEach(callbackfn: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => void, thisArg?: any): void;
|
|
148
|
+
map<U>(callbackfn: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => U, thisArg?: any): U[];
|
|
149
|
+
filter<S_1 extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => value is S_1, thisArg?: any): S_1[];
|
|
150
|
+
filter(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => unknown, thisArg?: any): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
151
|
+
reduce(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config";
|
|
152
|
+
reduce(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", initialValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config";
|
|
153
|
+
reduce<U_1>(callbackfn: (previousValue: U_1, currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => U_1, initialValue: U_1): U_1;
|
|
154
|
+
reduceRight(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config";
|
|
155
|
+
reduceRight(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", initialValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config";
|
|
156
|
+
reduceRight<U_2>(callbackfn: (previousValue: U_2, currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => U_2, initialValue: U_2): U_2;
|
|
157
|
+
find<S_2 extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => value is S_2, thisArg?: any): S_2 | undefined;
|
|
158
|
+
find(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => unknown, thisArg?: any): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config" | undefined;
|
|
159
|
+
findIndex(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => unknown, thisArg?: any): number;
|
|
160
|
+
fill(value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", start?: number | undefined, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
161
|
+
copyWithin(target: number, start: number, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[];
|
|
162
|
+
entries(): IterableIterator<[number, "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config"]>;
|
|
163
163
|
keys(): IterableIterator<number>;
|
|
164
|
-
values(): IterableIterator<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">;
|
|
165
|
-
includes(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", fromIndex?: number | undefined): boolean;
|
|
166
|
-
flatMap<U_3, This = undefined>(callback: (this: This, value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U_3 | readonly U_3[], thisArg?: This | undefined): U_3[];
|
|
164
|
+
values(): IterableIterator<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">;
|
|
165
|
+
includes(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", fromIndex?: number | undefined): boolean;
|
|
166
|
+
flatMap<U_3, This = undefined>(callback: (this: This, value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config")[]) => U_3 | readonly U_3[], thisArg?: This | undefined): U_3[];
|
|
167
167
|
flat<A, D extends number = 1>(this: A, depth?: D | undefined): FlatArray<A, D>[];
|
|
168
|
-
[Symbol.iterator](): IterableIterator<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">;
|
|
168
|
+
[Symbol.iterator](): IterableIterator<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config">;
|
|
169
169
|
[Symbol.unscopables]: {
|
|
170
170
|
[x: number]: boolean | undefined;
|
|
171
171
|
length?: boolean | undefined;
|
|
@@ -204,7 +204,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
204
204
|
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
205
205
|
at?: boolean | undefined;
|
|
206
206
|
};
|
|
207
|
-
at(index: number): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
207
|
+
at(index: number): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | "tiny_mcp_config" | undefined;
|
|
208
208
|
}>> & {
|
|
209
209
|
onPick?: ((...args: any[]) => any) | undefined;
|
|
210
210
|
"onSelect-change"?: ((...args: any[]) => any) | undefined;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -57,6 +57,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
57
57
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
58
58
|
tiny_renderless: FunctionConstructor;
|
|
59
59
|
tiny_theme: StringConstructor;
|
|
60
|
+
tiny_mcp_config: ObjectConstructor;
|
|
60
61
|
tiny_chart_theme: ObjectConstructor;
|
|
61
62
|
}, {
|
|
62
63
|
t: (this: any, path: any, options?: any) => any;
|
|
@@ -126,6 +127,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
126
127
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
127
128
|
tiny_renderless: FunctionConstructor;
|
|
128
129
|
tiny_theme: StringConstructor;
|
|
130
|
+
tiny_mcp_config: ObjectConstructor;
|
|
129
131
|
tiny_chart_theme: ObjectConstructor;
|
|
130
132
|
}>> & {
|
|
131
133
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|