@sarafapp/ant-design 1.0.2 → 1.0.4
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/dist/dataDisplay/tab/model/SarafTab.es.js +14 -0
- package/dist/dataDisplay/tab/ui/SarafSecondaryTabs.vue.es.js +7 -0
- package/dist/dataDisplay/tab/ui/SarafSecondaryTabs.vue.es2.js +43 -0
- package/dist/dataDisplay/tab/ui/SarafTabs.vue.es.js +7 -0
- package/dist/dataDisplay/tab/ui/SarafTabs.vue.es2.js +35 -0
- package/dist/index.d.ts +70 -52
- package/dist/index.es.js +95 -93
- package/dist/index.js +4 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/layout/SarafDialog.vue.es.js +0 -36
- package/dist/layout/SarafDialog.vue.es3.js +0 -5
- package/dist/layout/SarafDialogFooter.vue.es.js +0 -13
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
var l = Object.defineProperty;
|
|
2
|
+
var r = (t, s, a) => s in t ? l(t, s, { enumerable: !0, configurable: !0, writable: !0, value: a }) : t[s] = a;
|
|
3
|
+
var i = (t, s, a) => r(t, typeof s != "symbol" ? s + "" : s, a);
|
|
4
|
+
class c {
|
|
5
|
+
constructor(s, a, e = !1) {
|
|
6
|
+
i(this, "value");
|
|
7
|
+
i(this, "title");
|
|
8
|
+
i(this, "isDisabled");
|
|
9
|
+
this.value = s, this.title = a, this.isDisabled = e;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
export {
|
|
13
|
+
c as SarafTab
|
|
14
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { defineComponent as m, mergeModels as p, useModel as c, resolveComponent as s, createBlock as n, openBlock as o, withCtx as u, createElementBlock as f, Fragment as _, renderList as v, createTextVNode as g, toDisplayString as b } from "vue";
|
|
2
|
+
import { ComponentSize as z } from "../../../Constants.es.js";
|
|
3
|
+
const M = /* @__PURE__ */ m({
|
|
4
|
+
__name: "SarafSecondaryTabs",
|
|
5
|
+
props: /* @__PURE__ */ p({
|
|
6
|
+
tabs: {},
|
|
7
|
+
size: { default: z.Medium }
|
|
8
|
+
}, {
|
|
9
|
+
modelValue: {},
|
|
10
|
+
modelModifiers: {}
|
|
11
|
+
}),
|
|
12
|
+
emits: ["update:modelValue"],
|
|
13
|
+
setup(a) {
|
|
14
|
+
const t = a, l = c(a, "modelValue");
|
|
15
|
+
return (k, r) => {
|
|
16
|
+
const d = s("a-radio-button"), i = s("a-radio-group");
|
|
17
|
+
return o(), n(i, {
|
|
18
|
+
value: l.value,
|
|
19
|
+
"onUpdate:value": r[0] || (r[0] = (e) => l.value = e),
|
|
20
|
+
class: "saraf-radio-group",
|
|
21
|
+
size: t.size
|
|
22
|
+
}, {
|
|
23
|
+
default: u(() => [
|
|
24
|
+
(o(!0), f(_, null, v(t.tabs, (e) => (o(), n(d, {
|
|
25
|
+
key: e.value,
|
|
26
|
+
value: e.value,
|
|
27
|
+
disabled: e.isDisabled,
|
|
28
|
+
class: "saraf-radio-group-item"
|
|
29
|
+
}, {
|
|
30
|
+
default: u(() => [
|
|
31
|
+
g(b(e.title), 1)
|
|
32
|
+
]),
|
|
33
|
+
_: 2
|
|
34
|
+
}, 1032, ["value", "disabled"]))), 128))
|
|
35
|
+
]),
|
|
36
|
+
_: 1
|
|
37
|
+
}, 8, ["value", "size"]);
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
export {
|
|
42
|
+
M as default
|
|
43
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { defineComponent as u, mergeModels as d, useModel as p, resolveComponent as s, createBlock as r, openBlock as t, withCtx as c, createElementBlock as _, Fragment as f, renderList as b } from "vue";
|
|
2
|
+
import { ComponentSize as v } from "../../../Constants.es.js";
|
|
3
|
+
const C = /* @__PURE__ */ u({
|
|
4
|
+
__name: "SarafTabs",
|
|
5
|
+
props: /* @__PURE__ */ d({
|
|
6
|
+
tabs: {},
|
|
7
|
+
size: { default: v.Medium }
|
|
8
|
+
}, {
|
|
9
|
+
modelValue: {},
|
|
10
|
+
modelModifiers: {}
|
|
11
|
+
}),
|
|
12
|
+
emits: ["update:modelValue"],
|
|
13
|
+
setup(a) {
|
|
14
|
+
const o = a, n = p(a, "modelValue");
|
|
15
|
+
return (k, l) => {
|
|
16
|
+
const m = s("a-tab-pane"), i = s("a-tabs");
|
|
17
|
+
return t(), r(i, {
|
|
18
|
+
"active-key": n.value,
|
|
19
|
+
"onUpdate:activeKey": l[0] || (l[0] = (e) => n.value = e),
|
|
20
|
+
size: o.size
|
|
21
|
+
}, {
|
|
22
|
+
default: c(() => [
|
|
23
|
+
(t(!0), _(f, null, b(o.tabs, (e) => (t(), r(m, {
|
|
24
|
+
key: e.value,
|
|
25
|
+
tab: e.title
|
|
26
|
+
}, null, 8, ["tab"]))), 128))
|
|
27
|
+
]),
|
|
28
|
+
_: 1
|
|
29
|
+
}, 8, ["active-key", "size"]);
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
export {
|
|
34
|
+
C as default
|
|
35
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -30,9 +30,9 @@ color: TagColors;
|
|
|
30
30
|
hasBorder: boolean;
|
|
31
31
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
32
32
|
|
|
33
|
-
declare const __VLS_component_2: DefineComponent<
|
|
33
|
+
declare const __VLS_component_2: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
34
34
|
click: () => any;
|
|
35
|
-
}, string, PublicProps, Readonly<
|
|
35
|
+
}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{
|
|
36
36
|
onClick?: (() => any) | undefined;
|
|
37
37
|
}>, {
|
|
38
38
|
class: string;
|
|
@@ -43,8 +43,6 @@ color: ButtonColor;
|
|
|
43
43
|
isLoading: boolean;
|
|
44
44
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
45
45
|
|
|
46
|
-
declare const __VLS_component_3: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
47
|
-
|
|
48
46
|
declare type __VLS_PrettifyLocal<T> = {
|
|
49
47
|
[K in keyof T]: T[K];
|
|
50
48
|
} & {};
|
|
@@ -90,12 +88,22 @@ declare type __VLS_Props_13 = {
|
|
|
90
88
|
};
|
|
91
89
|
|
|
92
90
|
declare type __VLS_Props_14 = {
|
|
91
|
+
tabs: SarafTab[];
|
|
92
|
+
size?: ComponentSize;
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
declare type __VLS_Props_15 = {
|
|
96
|
+
tabs: SarafTab[];
|
|
97
|
+
size?: ComponentSize;
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
declare type __VLS_Props_16 = {
|
|
93
101
|
label?: string;
|
|
94
102
|
isDisabled?: boolean;
|
|
95
103
|
isIndeterminate?: boolean;
|
|
96
104
|
};
|
|
97
105
|
|
|
98
|
-
declare type
|
|
106
|
+
declare type __VLS_Props_17 = {
|
|
99
107
|
inputControl: InputControl<Nullable_2<number>>;
|
|
100
108
|
placeholder?: string;
|
|
101
109
|
isClearable?: boolean;
|
|
@@ -107,7 +115,7 @@ declare type __VLS_Props_15 = {
|
|
|
107
115
|
minDate?: Nullable_2<number>;
|
|
108
116
|
};
|
|
109
117
|
|
|
110
|
-
declare type
|
|
118
|
+
declare type __VLS_Props_18 = {
|
|
111
119
|
inputControl: InputControl<RangeValue>;
|
|
112
120
|
disabled?: boolean;
|
|
113
121
|
isClearable?: boolean;
|
|
@@ -118,16 +126,6 @@ declare type __VLS_Props_16 = {
|
|
|
118
126
|
disabledDates?: number[];
|
|
119
127
|
};
|
|
120
128
|
|
|
121
|
-
declare type __VLS_Props_17 = {
|
|
122
|
-
width: number;
|
|
123
|
-
height: number;
|
|
124
|
-
};
|
|
125
|
-
|
|
126
|
-
declare type __VLS_Props_18 = {
|
|
127
|
-
width: number;
|
|
128
|
-
height: number;
|
|
129
|
-
};
|
|
130
|
-
|
|
131
129
|
declare type __VLS_Props_19 = {
|
|
132
130
|
width: number;
|
|
133
131
|
height: number;
|
|
@@ -141,6 +139,16 @@ declare type __VLS_Props_2 = {
|
|
|
141
139
|
};
|
|
142
140
|
|
|
143
141
|
declare type __VLS_Props_20 = {
|
|
142
|
+
width: number;
|
|
143
|
+
height: number;
|
|
144
|
+
};
|
|
145
|
+
|
|
146
|
+
declare type __VLS_Props_21 = {
|
|
147
|
+
width: number;
|
|
148
|
+
height: number;
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
declare type __VLS_Props_22 = {
|
|
144
152
|
size?: ComponentSize;
|
|
145
153
|
type?: ButtonType;
|
|
146
154
|
color?: ButtonColor;
|
|
@@ -149,7 +157,7 @@ declare type __VLS_Props_20 = {
|
|
|
149
157
|
class?: string;
|
|
150
158
|
};
|
|
151
159
|
|
|
152
|
-
declare type
|
|
160
|
+
declare type __VLS_Props_23 = {
|
|
153
161
|
size?: SpinnerSizes;
|
|
154
162
|
};
|
|
155
163
|
|
|
@@ -191,17 +199,25 @@ declare type __VLS_PublicProps_2 = {
|
|
|
191
199
|
} & __VLS_Props_2;
|
|
192
200
|
|
|
193
201
|
declare type __VLS_PublicProps_3 = {
|
|
194
|
-
modelValue?:
|
|
202
|
+
modelValue?: string | number;
|
|
195
203
|
} & __VLS_Props_14;
|
|
196
204
|
|
|
197
205
|
declare type __VLS_PublicProps_4 = {
|
|
198
|
-
modelValue?:
|
|
206
|
+
modelValue?: string | number;
|
|
199
207
|
} & __VLS_Props_15;
|
|
200
208
|
|
|
201
209
|
declare type __VLS_PublicProps_5 = {
|
|
202
|
-
modelValue?:
|
|
210
|
+
modelValue?: boolean;
|
|
203
211
|
} & __VLS_Props_16;
|
|
204
212
|
|
|
213
|
+
declare type __VLS_PublicProps_6 = {
|
|
214
|
+
modelValue?: Nullable_2<number>;
|
|
215
|
+
} & __VLS_Props_17;
|
|
216
|
+
|
|
217
|
+
declare type __VLS_PublicProps_7 = {
|
|
218
|
+
modelValue?: Nullable_2<RangeValue>;
|
|
219
|
+
} & __VLS_Props_18;
|
|
220
|
+
|
|
205
221
|
declare function __VLS_template(): {
|
|
206
222
|
attrs: Partial<{}>;
|
|
207
223
|
slots: {
|
|
@@ -223,21 +239,10 @@ declare function __VLS_template_2(): {
|
|
|
223
239
|
rootEl: any;
|
|
224
240
|
};
|
|
225
241
|
|
|
226
|
-
declare function __VLS_template_3(): {
|
|
227
|
-
attrs: Partial<{}>;
|
|
228
|
-
slots: {
|
|
229
|
-
default?(_: {}): any;
|
|
230
|
-
};
|
|
231
|
-
refs: {};
|
|
232
|
-
rootEl: HTMLDivElement;
|
|
233
|
-
};
|
|
234
|
-
|
|
235
242
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
236
243
|
|
|
237
244
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
238
245
|
|
|
239
|
-
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
240
|
-
|
|
241
246
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
242
247
|
new (): {
|
|
243
248
|
$slots: S;
|
|
@@ -250,24 +255,18 @@ declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
|
250
255
|
};
|
|
251
256
|
};
|
|
252
257
|
|
|
253
|
-
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
254
|
-
new (): {
|
|
255
|
-
$slots: S;
|
|
256
|
-
};
|
|
257
|
-
};
|
|
258
|
-
|
|
259
258
|
export declare class AreaChartDataSource extends CategoricalChartDataSource<ChartSeries[]> {
|
|
260
259
|
constructor(settings: ChartSettings);
|
|
261
260
|
protected generateSeries(): ChartSeries[];
|
|
262
261
|
protected generateOptions(): ApexOptions;
|
|
263
262
|
}
|
|
264
263
|
|
|
265
|
-
export declare const ArrowDownIcon: DefineComponent<
|
|
264
|
+
export declare const ArrowDownIcon: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {
|
|
266
265
|
width: number;
|
|
267
266
|
height: number;
|
|
268
267
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, SVGSVGElement>;
|
|
269
268
|
|
|
270
|
-
export declare const ArrowUpIcon: DefineComponent<
|
|
269
|
+
export declare const ArrowUpIcon: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {
|
|
271
270
|
width: number;
|
|
272
271
|
height: number;
|
|
273
272
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, SVGSVGElement>;
|
|
@@ -276,7 +275,7 @@ export declare const enum BasicInputNames {
|
|
|
276
275
|
Search = "search"
|
|
277
276
|
}
|
|
278
277
|
|
|
279
|
-
export declare const BurgerIcon: DefineComponent<
|
|
278
|
+
export declare const BurgerIcon: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, SVGSVGElement>;
|
|
280
279
|
|
|
281
280
|
export declare const enum ButtonColor {
|
|
282
281
|
Primary = "primary",
|
|
@@ -397,9 +396,9 @@ export declare const SarafChart: <T>(__VLS_props: NonNullable<Awaited<typeof __V
|
|
|
397
396
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
398
397
|
};
|
|
399
398
|
|
|
400
|
-
export declare const SarafCheckbox: DefineComponent<
|
|
399
|
+
export declare const SarafCheckbox: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
401
400
|
"update:modelValue": (value: boolean) => any;
|
|
402
|
-
}, string, PublicProps, Readonly<
|
|
401
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
403
402
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
404
403
|
}>, {
|
|
405
404
|
label: string;
|
|
@@ -407,9 +406,9 @@ isDisabled: boolean;
|
|
|
407
406
|
isIndeterminate: boolean;
|
|
408
407
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
409
408
|
|
|
410
|
-
export declare const SarafDatePicker: DefineComponent<
|
|
409
|
+
export declare const SarafDatePicker: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
411
410
|
"update:modelValue": (value: Nullable_2<number>) => any;
|
|
412
|
-
}, string, PublicProps, Readonly<
|
|
411
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
|
|
413
412
|
"onUpdate:modelValue"?: ((value: Nullable_2<number>) => any) | undefined;
|
|
414
413
|
}>, {
|
|
415
414
|
disabled: boolean;
|
|
@@ -422,21 +421,17 @@ maxDate: Nullable_2<number>;
|
|
|
422
421
|
minDate: Nullable_2<number>;
|
|
423
422
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
424
423
|
|
|
425
|
-
export declare const SarafDefaultSpinner: DefineComponent<
|
|
424
|
+
export declare const SarafDefaultSpinner: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
|
|
426
425
|
size: SpinnerSizes;
|
|
427
426
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
428
427
|
|
|
429
|
-
export declare const SarafDialog: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
430
|
-
|
|
431
|
-
export declare const SarafDialogFooter: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
432
|
-
|
|
433
428
|
export declare const SarafDynamicCurrencyPriceTableCell: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
434
429
|
|
|
435
430
|
export declare const SarafFiledInvalidMessage: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
436
431
|
|
|
437
432
|
export declare const SarafIbanTableCell: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
438
433
|
|
|
439
|
-
declare const enum SarafInputTypes {
|
|
434
|
+
export declare const enum SarafInputTypes {
|
|
440
435
|
Text = "text",
|
|
441
436
|
Password = "password",
|
|
442
437
|
Number = "Number"
|
|
@@ -484,9 +479,9 @@ isClearable: boolean;
|
|
|
484
479
|
|
|
485
480
|
export declare const SarafPriceTableCell: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
486
481
|
|
|
487
|
-
export declare const SarafRangePicker: DefineComponent<
|
|
482
|
+
export declare const SarafRangePicker: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
488
483
|
"update:modelValue": (value: Nullable_2<RangeValue>) => any;
|
|
489
|
-
}, string, PublicProps, Readonly<
|
|
484
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
490
485
|
"onUpdate:modelValue"?: ((value: Nullable_2<RangeValue>) => any) | undefined;
|
|
491
486
|
}>, {
|
|
492
487
|
disabled: boolean;
|
|
@@ -510,6 +505,14 @@ size: InputSizes;
|
|
|
510
505
|
debounceTime: number;
|
|
511
506
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
512
507
|
|
|
508
|
+
export declare const SarafSecondaryTabs: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
509
|
+
"update:modelValue": (value: string | number) => any;
|
|
510
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
511
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
512
|
+
}>, {
|
|
513
|
+
size: ComponentSize;
|
|
514
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
515
|
+
|
|
513
516
|
export declare const SarafSelect: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
514
517
|
props: __VLS_PrettifyLocal_3<Pick<Partial<{}> & Omit<{
|
|
515
518
|
readonly onSearch?: ((searchedValue: string) => any) | undefined;
|
|
@@ -550,6 +553,13 @@ export declare const enum SarafSelectMode {
|
|
|
550
553
|
|
|
551
554
|
export declare const SarafSymbolTableCell: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
552
555
|
|
|
556
|
+
export declare class SarafTab {
|
|
557
|
+
value: string | number;
|
|
558
|
+
title: string;
|
|
559
|
+
isDisabled?: boolean;
|
|
560
|
+
constructor(value: string | number, title: string, isDisabled?: boolean);
|
|
561
|
+
}
|
|
562
|
+
|
|
553
563
|
export declare const SarafTable: <Model extends BaseModel>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
554
564
|
props: __VLS_PrettifyLocal_4<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & {
|
|
555
565
|
dataSource: BaseTable<Model> | SelectableTable<Model>;
|
|
@@ -566,6 +576,14 @@ export declare const SarafTable: <Model extends BaseModel>(__VLS_props: NonNulla
|
|
|
566
576
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
567
577
|
};
|
|
568
578
|
|
|
579
|
+
export declare const SarafTabs: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
580
|
+
"update:modelValue": (value: string | number) => any;
|
|
581
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
|
|
582
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
583
|
+
}>, {
|
|
584
|
+
size: ComponentSize;
|
|
585
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
586
|
+
|
|
569
587
|
export declare const SarafTag: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
570
588
|
|
|
571
589
|
export declare const SarafTextFiled: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
package/dist/index.es.js
CHANGED
|
@@ -1,99 +1,101 @@
|
|
|
1
|
-
import { ComponentSize as
|
|
1
|
+
import { ComponentSize as o } from "./Constants.es.js";
|
|
2
2
|
/* empty css */
|
|
3
|
-
import { default as
|
|
4
|
-
import { default as
|
|
5
|
-
import { default as
|
|
6
|
-
import { default as
|
|
7
|
-
import { default as
|
|
3
|
+
import { default as f } from "./baseForm/SarafSearchFiled.vue.es.js";
|
|
4
|
+
import { default as p } from "./baseForm/SarafPasswordFiled.vue.es.js";
|
|
5
|
+
import { default as s } from "./dataDisplay/chart/SarafChart.vue.es.js";
|
|
6
|
+
import { default as d } from "./icons/ArrowDownIcon.vue.es.js";
|
|
7
|
+
import { default as x } from "./icons/ArrowUpIcon.vue.es.js";
|
|
8
8
|
import { default as c } from "./icons/BurgerIcon.vue.es.js";
|
|
9
|
-
import { default as
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import { default as
|
|
15
|
-
import { default as
|
|
16
|
-
import { default as
|
|
17
|
-
import { default as
|
|
18
|
-
import { default as
|
|
19
|
-
import { default as
|
|
20
|
-
import { default as
|
|
21
|
-
import { default as
|
|
22
|
-
import { default as
|
|
23
|
-
import { default as
|
|
24
|
-
import { default as
|
|
25
|
-
import { default as
|
|
26
|
-
import { default as
|
|
27
|
-
import {
|
|
28
|
-
import { default as
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import { default as
|
|
46
|
-
import { SpinnerSizes as
|
|
9
|
+
import { default as C } from "./loaders/spinners/SarafDefaultSpinner.vue.es.js";
|
|
10
|
+
import { BasicInputNames as b, InputSizes as I, InputStatus as h, SarafInputTypes as D, SarafSelectMode as y } from "./baseForm/model/Constants.es.js";
|
|
11
|
+
import { SelectItem as g } from "./baseForm/model/Model.es.js";
|
|
12
|
+
import { default as B } from "./baseForm/SarafTextFiled.vue.es.js";
|
|
13
|
+
import { default as F } from "./baseForm/SarafNumberFiled.vue.es.js";
|
|
14
|
+
import { default as z } from "./baseForm/SarafSelect.vue.es.js";
|
|
15
|
+
import { default as v } from "./baseForm/SarafFiledInvalidMessage.vue.es.js";
|
|
16
|
+
import { default as N } from "./baseTable/SarafTable.vue.es.js";
|
|
17
|
+
import { default as L } from "./baseTable/SarafBankCardTableCell.vue.es.js";
|
|
18
|
+
import { default as j } from "./baseTable/SarafIbanTableCell.vue.es.js";
|
|
19
|
+
import { default as E } from "./baseTable/SarafSymbolTableCell.vue.es.js";
|
|
20
|
+
import { default as J } from "./baseTable/SarafTradeAmountTableCell.vue.es.js";
|
|
21
|
+
import { default as O } from "./baseTable/SarafTradeSymbolPriceCell.vue.es.js";
|
|
22
|
+
import { default as V } from "./baseTable/SarafTradeDateCell.vue.es.js";
|
|
23
|
+
import { default as X } from "./baseTable/SarafPriceTableCell.vue.es.js";
|
|
24
|
+
import { default as Z } from "./baseTable/SarafTradeSymbolCell.vue.es.js";
|
|
25
|
+
import { default as $ } from "./baseTable/SarafDynamicCurrencyPriceTableCell.vue.es.js";
|
|
26
|
+
import { default as ra } from "./dataDisplay/tag/SarafTag.vue.es.js";
|
|
27
|
+
import { TagColors as oa } from "./dataDisplay/tag/model/Constants.es.js";
|
|
28
|
+
import { default as fa } from "./dataDisplay/tab/ui/SarafTabs.vue.es.js";
|
|
29
|
+
import { default as pa } from "./dataDisplay/tab/ui/SarafSecondaryTabs.vue.es.js";
|
|
30
|
+
import { SarafTab as sa } from "./dataDisplay/tab/model/SarafTab.es.js";
|
|
31
|
+
import { AreaChartDataSource as da } from "./dataDisplay/chart/model/AreaChartDataSource.es.js";
|
|
32
|
+
import { DonutChartDataSource as xa } from "./dataDisplay/chart/model/DonutChartDataSource.es.js";
|
|
33
|
+
import { ChartSeries as ca, ChartSettings as ia, ChartType as Ca, RawChartDataPoint as Ta } from "./dataDisplay/chart/model/ChartTypes.es.js";
|
|
34
|
+
import { TooltipDirective as Ia } from "./dataDisplay/tooltip/model/tooltipDirective.es.js";
|
|
35
|
+
import { default as Da } from "./dataEntry/checkbox/SarafCheckbox.vue.es.js";
|
|
36
|
+
import { default as Pa } from "./datePicker/SarafDatePicker.vue.es.js";
|
|
37
|
+
import { default as wa } from "./datePicker/SarafRangePicker.vue.es.js";
|
|
38
|
+
import { default as Aa } from "./icons/SarafArrowIcon.vue.es.js";
|
|
39
|
+
import { default as ka } from "./icons/GiftCardIcon.vue.es.js";
|
|
40
|
+
import { default as Ra } from "./icons/PlusIcon.vue.es.js";
|
|
41
|
+
import { default as Ma } from "./icons/ResetIcon.vue.es.js";
|
|
42
|
+
import { default as Ga } from "./icons/SarafLogoIcon.vue.es.js";
|
|
43
|
+
import { default as Ua } from "./icons/SearchIcon.vue.es.js";
|
|
44
|
+
import { ButtonColor as qa, ButtonType as Ea } from "./general/button/model/Constants.es.js";
|
|
45
|
+
import { default as Ja } from "./general/button/SarafButton.vue.es.js";
|
|
46
|
+
import { SpinnerSizes as Oa } from "./loaders/spinners/model/Constants.es.js";
|
|
47
47
|
export {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
48
|
+
da as AreaChartDataSource,
|
|
49
|
+
d as ArrowDownIcon,
|
|
50
|
+
x as ArrowUpIcon,
|
|
51
|
+
b as BasicInputNames,
|
|
52
52
|
c as BurgerIcon,
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
53
|
+
qa as ButtonColor,
|
|
54
|
+
Ea as ButtonType,
|
|
55
|
+
ca as ChartSeries,
|
|
56
|
+
ia as ChartSettings,
|
|
57
|
+
Ca as ChartType,
|
|
58
|
+
o as ComponentSize,
|
|
59
|
+
xa as DonutChartDataSource,
|
|
60
|
+
ka as GiftCardIcon,
|
|
61
|
+
I as InputSizes,
|
|
62
|
+
h as InputStatus,
|
|
63
|
+
Ra as PlusIcon,
|
|
64
|
+
Ta as RawChartDataPoint,
|
|
65
|
+
Ma as ResetIcon,
|
|
66
|
+
Aa as SarafArrowIcon,
|
|
67
|
+
L as SarafBankCardTableCell,
|
|
68
|
+
Ja as SarafButton,
|
|
69
|
+
s as SarafChart,
|
|
70
|
+
Da as SarafCheckbox,
|
|
71
|
+
Pa as SarafDatePicker,
|
|
72
|
+
C as SarafDefaultSpinner,
|
|
73
|
+
$ as SarafDynamicCurrencyPriceTableCell,
|
|
74
|
+
v as SarafFiledInvalidMessage,
|
|
75
|
+
j as SarafIbanTableCell,
|
|
76
|
+
D as SarafInputTypes,
|
|
77
|
+
Ga as SarafLogoIcon,
|
|
78
|
+
F as SarafNumberFiled,
|
|
79
|
+
p as SarafPasswordFiled,
|
|
80
|
+
X as SarafPriceTableCell,
|
|
81
|
+
wa as SarafRangePicker,
|
|
82
|
+
f as SarafSearchFiled,
|
|
83
|
+
pa as SarafSecondaryTabs,
|
|
84
|
+
z as SarafSelect,
|
|
85
85
|
y as SarafSelectMode,
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
V as
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
86
|
+
E as SarafSymbolTableCell,
|
|
87
|
+
sa as SarafTab,
|
|
88
|
+
N as SarafTable,
|
|
89
|
+
fa as SarafTabs,
|
|
90
|
+
ra as SarafTag,
|
|
91
|
+
B as SarafTextFiled,
|
|
92
|
+
J as SarafTradeAmountTableCell,
|
|
93
|
+
V as SarafTradeDateCell,
|
|
94
|
+
Z as SarafTradeSymbolCell,
|
|
95
|
+
O as SarafTradeSymbolPriceCell,
|
|
96
|
+
Ua as SearchIcon,
|
|
97
|
+
g as SelectItem,
|
|
98
|
+
Oa as SpinnerSizes,
|
|
99
|
+
oa as TagColors,
|
|
100
|
+
Ia as TooltipDirective
|
|
99
101
|
};
|