@sarafapp/ant-design 1.0.7 → 1.0.9

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.
Files changed (24) hide show
  1. package/dist/baseTable/SarafTableGenerator.vue.es.js +7 -0
  2. package/dist/baseTable/SarafTableGenerator.vue.es2.js +217 -0
  3. package/dist/index.d.ts +25 -2
  4. package/dist/index.es.js +52 -50
  5. package/dist/index.js +19 -4
  6. package/dist/node_modules/tslib/tslib.es6.es.js +155 -0
  7. package/dist/node_modules/tsyringe/dist/esm5/dependency-container.es.js +256 -0
  8. package/dist/node_modules/tsyringe/dist/esm5/error-helpers.es.js +21 -0
  9. package/dist/node_modules/tsyringe/dist/esm5/index.es.js +9 -0
  10. package/dist/node_modules/tsyringe/dist/esm5/interceptors.es.js +25 -0
  11. package/dist/node_modules/tsyringe/dist/esm5/lazy-helpers.es.js +38 -0
  12. package/dist/node_modules/tsyringe/dist/esm5/providers/class-provider.es.js +6 -0
  13. package/dist/node_modules/tsyringe/dist/esm5/providers/factory-provider.es.js +6 -0
  14. package/dist/node_modules/tsyringe/dist/esm5/providers/injection-token.es.js +19 -0
  15. package/dist/node_modules/tsyringe/dist/esm5/providers/provider.es.js +10 -0
  16. package/dist/node_modules/tsyringe/dist/esm5/providers/token-provider.es.js +6 -0
  17. package/dist/node_modules/tsyringe/dist/esm5/providers/value-provider.es.js +6 -0
  18. package/dist/node_modules/tsyringe/dist/esm5/registry-base.es.js +27 -0
  19. package/dist/node_modules/tsyringe/dist/esm5/registry.es.js +12 -0
  20. package/dist/node_modules/tsyringe/dist/esm5/resolution-context.es.js +9 -0
  21. package/dist/node_modules/tsyringe/dist/esm5/types/disposable.es.js +9 -0
  22. package/dist/node_modules/tsyringe/dist/esm5/types/lifecycle.es.js +8 -0
  23. package/dist/style.css +1 -1
  24. package/package.json +2 -2
@@ -0,0 +1,7 @@
1
+ import o from "./SarafTableGenerator.vue.es2.js";
2
+ /* empty css */
3
+ import r from "../_virtual/_plugin-vue_export-helper.es.js";
4
+ const f = /* @__PURE__ */ r(o, [["__scopeId", "data-v-560b739b"]]);
5
+ export {
6
+ f as default
7
+ };
@@ -0,0 +1,217 @@
1
+ import { defineComponent as fe, ref as l, computed as d, onBeforeMount as he, onBeforeUpdate as ye, onBeforeUnmount as _e, resolveComponent as i, createBlock as S, openBlock as o, createSlots as ge, withCtx as n, createElementBlock as m, createCommentVNode as C, unref as f, toDisplayString as h, resolveDynamicComponent as ve, normalizeProps as Ce, mergeProps as we, Fragment as w, renderList as F, createVNode as y, withModifiers as Te, createTextVNode as T, renderSlot as be } from "vue";
2
+ import { SelectableTableGenerator as Ae, TableConstants as b, TableConfig as ke, CellType as $, HeaderType as Re, SortDetail as Ie, SortOrderTableHeader as Pe, SortOrder as j, TABLE_ACTION_COLUMN as Ee, isOnlyOneItem as Oe, isLastItem as Ne } from "@sarafapp/iron_core";
3
+ import "../node_modules/tsyringe/dist/esm5/index.es.js";
4
+ import { instance as xe } from "../node_modules/tsyringe/dist/esm5/dependency-container.es.js";
5
+ const Be = { key: 0 }, De = { key: 1 }, Ve = /* @__PURE__ */ fe({
6
+ __name: "SarafTableGenerator",
7
+ props: {
8
+ dataSource: {},
9
+ isLoading: { type: Boolean }
10
+ },
11
+ setup(q) {
12
+ const t = q, r = l([]), A = l([]), k = l([]), p = l(), _ = d(() => t.dataSource instanceof Ae), R = d(() => r.value.length > b.MINIMAL_LOADABLE_HEADER_COUNT), I = l(0), P = l(0), E = l(0), O = l(!1), N = xe.resolve(ke), J = d(() => ({
13
+ total: I.value,
14
+ current: P.value,
15
+ showLessItems: !0,
16
+ showTotal(e) {
17
+ return "تعداد کل: " + e;
18
+ },
19
+ defaultPageSize: b.DEFAULT_ITEM_COUNT_PER_PAGE,
20
+ pageSize: E,
21
+ position: [b.PAGINATION_POSITION]
22
+ })), x = d(() => {
23
+ var e;
24
+ return ((e = r.value[r.value.length - 1]) == null ? void 0 : e.cellType) === $.ACTION;
25
+ }), Q = d(() => _.value ? {
26
+ onSelect: X,
27
+ onSelectAll: Y,
28
+ selectedRowKeys: k.value
29
+ } : null), W = d(() => !!p.value.summaryItems.length);
30
+ function X(e) {
31
+ t.dataSource.selectRow(e);
32
+ }
33
+ function Y() {
34
+ t.dataSource.selectAll();
35
+ }
36
+ async function Z(e, c, u) {
37
+ if (e && await t.dataSource.paginate(
38
+ e.current,
39
+ e.pageSize
40
+ ), u != null && u.columnKey) {
41
+ const g = new Ie(
42
+ u.columnKey,
43
+ ee(u.order)
44
+ );
45
+ await t.dataSource.sort(g);
46
+ }
47
+ }
48
+ function ee(e) {
49
+ return e === Pe.ASC ? j.ASC : j.DESC;
50
+ }
51
+ async function te() {
52
+ await t.dataSource.load(), B();
53
+ }
54
+ function B() {
55
+ const e = t.dataSource.hasAnyAction();
56
+ e && !x.value && ae(), !e && x.value && oe();
57
+ }
58
+ function ae() {
59
+ r.value.push(Ee);
60
+ }
61
+ function oe() {
62
+ r.value.pop();
63
+ }
64
+ function ne(e) {
65
+ t.dataSource.handleClick(e);
66
+ }
67
+ function le(e) {
68
+ t.dataSource.handleMetaClick(e);
69
+ }
70
+ function re(e) {
71
+ t.dataSource.handleDoubleClick(e);
72
+ }
73
+ function ce(e) {
74
+ return {
75
+ onClick(c) {
76
+ c.metaKey ? le(e) : ne(e);
77
+ },
78
+ onDblclick() {
79
+ re(e);
80
+ }
81
+ };
82
+ }
83
+ function ue(e) {
84
+ return e.id;
85
+ }
86
+ function se(e, c) {
87
+ return !Oe(e) && !Ne(e, c);
88
+ }
89
+ function de(e, c) {
90
+ return e.getProps ? e.getProps(c) : null;
91
+ }
92
+ function D() {
93
+ p.value = t.dataSource.loadSummarySchema();
94
+ }
95
+ function L(e) {
96
+ r.value = e;
97
+ }
98
+ function M(e) {
99
+ A.value = e;
100
+ }
101
+ function z(e) {
102
+ k.value = t.dataSource.getSelectedRowIds();
103
+ }
104
+ function H(e) {
105
+ I.value = e;
106
+ }
107
+ function U(e) {
108
+ P.value = e;
109
+ }
110
+ function V(e) {
111
+ E.value = e;
112
+ }
113
+ function K(e) {
114
+ O.value = e;
115
+ }
116
+ return he(() => {
117
+ te(), D(), t.dataSource.headerSchema.attach(L), t.dataSource.rows.attach(M), t.dataSource.currentPage.attach(U), t.dataSource.currentPageSize.attach(V), t.dataSource.totalItems.attach(H), t.dataSource.isExpandable.attach(K), _.value && t.dataSource.selectedRows.attach(z);
118
+ }), ye(() => {
119
+ B(), D();
120
+ }), _e(() => {
121
+ t.dataSource.onDestroy(), t.dataSource.headerSchema.detach(L), t.dataSource.rows.detach(M), t.dataSource.currentPage.detach(U), t.dataSource.currentPageSize.detach(V), t.dataSource.totalItems.detach(H), t.dataSource.isExpandable.detach(K), _.value && t.dataSource.selectedRows.detach(z);
122
+ }), (e, c) => {
123
+ const u = i("a-button"), g = i("a-divider"), G = i("a-table-summary-cell"), ie = i("a-typography-text"), me = i("a-table-summary-row"), pe = i("a-table");
124
+ return o(), S(pe, {
125
+ columns: r.value,
126
+ "data-source": A.value,
127
+ pagination: J.value,
128
+ "custom-row": ce,
129
+ "row-key": ue,
130
+ loading: t.isLoading,
131
+ scroll: t.dataSource.scrollDetail,
132
+ "row-selection": Q.value,
133
+ class: "saraf-table",
134
+ onChange: Z
135
+ }, ge({ _: 2 }, [
136
+ R.value ? {
137
+ name: "headerCell",
138
+ fn: n(({ column: a }) => [
139
+ a.headerType === f(Re).Text ? (o(), m("span", Be, h(a.title), 1)) : C("", !0)
140
+ ]),
141
+ key: "0"
142
+ } : void 0,
143
+ R.value ? {
144
+ name: "bodyCell",
145
+ fn: n(({ column: a, record: s }) => [
146
+ f(N).getCellComponentRegistry().getRegisteredComponents().has(a.cellType) ? (o(), S(ve(f(N).getCellComponentRegistry().getRegisteredComponents().get(a.cellType)), Ce(we({ key: 0 }, { ...de(a, s), data: s[a.path] })), null, 16)) : a.cellType === f($).ACTION ? (o(), m("span", De, [
147
+ (o(!0), m(w, null, F(t.dataSource.getRowActions(s), (v, Se) => (o(), m(w, {
148
+ key: v.actionName
149
+ }, [
150
+ y(u, {
151
+ type: "link",
152
+ onClick: Te((Le) => v.handler(s), ["stop"])
153
+ }, {
154
+ default: n(() => [
155
+ T(h(v.actionName), 1)
156
+ ]),
157
+ _: 2
158
+ }, 1032, ["onClick"]),
159
+ se(
160
+ t.dataSource.getRowActions(s).length,
161
+ Se
162
+ ) ? (o(), S(g, {
163
+ key: 0,
164
+ type: "vertical"
165
+ })) : C("", !0)
166
+ ], 64))), 128))
167
+ ])) : C("", !0)
168
+ ]),
169
+ key: "1"
170
+ } : void 0,
171
+ O.value ? {
172
+ name: "expandedRowRender",
173
+ fn: n(({ record: a }) => [
174
+ be(e.$slots, "expandedRowRender", {
175
+ row: a
176
+ }, void 0, !0)
177
+ ]),
178
+ key: "2"
179
+ } : void 0,
180
+ W.value ? {
181
+ name: "summary",
182
+ fn: n(() => [
183
+ y(me, null, {
184
+ default: n(() => [
185
+ y(G, null, {
186
+ default: n(() => [
187
+ T(h(p.value.summaryTitle), 1)
188
+ ]),
189
+ _: 1
190
+ }),
191
+ (o(!0), m(w, null, F(p.value.summaryItems, (a, s) => (o(), S(G, {
192
+ key: s,
193
+ align: a.align
194
+ }, {
195
+ default: n(() => [
196
+ y(ie, null, {
197
+ default: n(() => [
198
+ T(h(a.data), 1)
199
+ ]),
200
+ _: 2
201
+ }, 1024)
202
+ ]),
203
+ _: 2
204
+ }, 1032, ["align"]))), 128))
205
+ ]),
206
+ _: 1
207
+ })
208
+ ]),
209
+ key: "3"
210
+ } : void 0
211
+ ]), 1032, ["columns", "data-source", "pagination", "loading", "scroll", "row-selection"]);
212
+ };
213
+ }
214
+ });
215
+ export {
216
+ Ve as default
217
+ };
package/dist/index.d.ts CHANGED
@@ -15,9 +15,11 @@ import { Nullable as Nullable_2 } from '@sarafapp/iron_core';
15
15
  import { PublicProps } from 'vue';
16
16
  import { RangeValue } from '@sarafapp/iron_core';
17
17
  import { SelectableTable } from '@sarafapp/iron_core';
18
+ import { SelectableTableGenerator } from '@sarafapp/iron_core';
18
19
  import { ShallowUnwrapRef } from 'vue';
19
20
  import { SymbolInTrade } from '@sarafapp/iron_core';
20
21
  import { SymbolPriceInTrade } from '@sarafapp/iron_core';
22
+ import { TableGenerator } from '@sarafapp/iron_core';
21
23
  import { TradeAmount } from '@sarafapp/iron_core';
22
24
  import { TradeDate } from '@sarafapp/iron_core';
23
25
  import { UnMountedDirective } from '@sarafapp/iron_core';
@@ -65,6 +67,10 @@ declare type __VLS_PrettifyLocal_5<T> = {
65
67
  [K in keyof T]: T[K];
66
68
  } & {};
67
69
 
70
+ declare type __VLS_PrettifyLocal_6<T> = {
71
+ [K in keyof T]: T[K];
72
+ } & {};
73
+
68
74
  declare type __VLS_Props = {
69
75
  debounceTime?: number;
70
76
  size?: InputSizes;
@@ -403,8 +409,8 @@ export declare const SarafBankCardTableCell: DefineComponent<__VLS_Props_4, {},
403
409
 
404
410
  export declare const SarafButton: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
405
411
 
406
- export declare const SarafChart: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
407
- props: __VLS_PrettifyLocal_5<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & {
412
+ export declare const SarafChart: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_6<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
413
+ props: __VLS_PrettifyLocal_6<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & {
408
414
  dataSource: ChartDataSource<T>;
409
415
  width?: string;
410
416
  height?: string;
@@ -597,6 +603,23 @@ export declare const SarafTable: <Model extends BaseModel>(__VLS_props: NonNulla
597
603
  __ctx?: Awaited<typeof __VLS_setup>;
598
604
  };
599
605
 
606
+ export declare const SarafTableGenerator: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
607
+ props: __VLS_PrettifyLocal_5<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & {
608
+ dataSource: TableGenerator<T> | SelectableTableGenerator<T>;
609
+ isLoading: boolean;
610
+ } & Partial<{}>> & PublicProps;
611
+ expose(exposed: ShallowUnwrapRef< {}>): void;
612
+ attrs: any;
613
+ slots: {
614
+ expandedRowRender?(_: {
615
+ row: T;
616
+ }): any;
617
+ };
618
+ emit: {};
619
+ }>) => VNode & {
620
+ __ctx?: Awaited<typeof __VLS_setup>;
621
+ };
622
+
600
623
  export declare const SarafTabs: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
601
624
  "update:modelValue": (value: string | number) => any;
602
625
  }, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
package/dist/index.es.js CHANGED
@@ -13,8 +13,8 @@ import { SelectItem as A } from "./baseForm/model/Model.es.js";
13
13
  import { default as F } from "./baseForm/SarafTextFiled.vue.es.js";
14
14
  import { default as v } from "./baseForm/SarafNumberFiled.vue.es.js";
15
15
  import { default as R } from "./baseForm/SarafSelect.vue.es.js";
16
- import { default as M } from "./baseForm/SarafFiledInvalidMessage.vue.es.js";
17
- import { default as G } from "./baseTable/SarafTable.vue.es.js";
16
+ import { default as L } from "./baseForm/SarafFiledInvalidMessage.vue.es.js";
17
+ import { default as N } from "./baseTable/SarafTable.vue.es.js";
18
18
  import { default as j } from "./baseTable/SarafBankCardTableCell.vue.es.js";
19
19
  import { default as E } from "./baseTable/SarafIbanTableCell.vue.es.js";
20
20
  import { default as J } from "./baseTable/SarafSymbolTableCell.vue.es.js";
@@ -24,80 +24,82 @@ import { default as X } from "./baseTable/SarafTradeDateCell.vue.es.js";
24
24
  import { default as Z } from "./baseTable/SarafPriceTableCell.vue.es.js";
25
25
  import { default as $ } from "./baseTable/SarafTradeSymbolCell.vue.es.js";
26
26
  import { default as ra } from "./baseTable/SarafDynamicCurrencyPriceTableCell.vue.es.js";
27
- import { default as oa } from "./dataDisplay/tag/SarafTag.vue.es.js";
28
- import { TagColors as fa } from "./dataDisplay/tag/model/Constants.es.js";
29
- import { default as pa } from "./dataDisplay/tab/ui/SarafTabs.vue.es.js";
30
- import { default as sa } from "./dataDisplay/tab/ui/SarafSecondaryTabs.vue.es.js";
31
- import { SarafTab as da } from "./dataDisplay/tab/model/SarafTab.es.js";
32
- import { AreaChartDataSource as xa } from "./dataDisplay/chart/model/AreaChartDataSource.es.js";
33
- import { DonutChartDataSource as ca } from "./dataDisplay/chart/model/DonutChartDataSource.es.js";
34
- import { ChartSeries as Ca, ChartSettings as Ta, ChartType as ba, RawChartDataPoint as Ia } from "./dataDisplay/chart/model/ChartTypes.es.js";
35
- import { TooltipDirective as Da } from "./dataDisplay/tooltip/model/tooltipDirective.es.js";
36
- import { default as Pa } from "./dataEntry/checkbox/SarafCheckbox.vue.es.js";
37
- import { default as wa } from "./datePicker/SarafDatePicker.vue.es.js";
38
- import { default as Ba } from "./datePicker/SarafRangePicker.vue.es.js";
39
- import { default as ka } from "./icons/SarafArrowIcon.vue.es.js";
40
- import { default as za } from "./icons/GiftCardIcon.vue.es.js";
41
- import { default as La } from "./icons/PlusIcon.vue.es.js";
42
- import { default as Na } from "./icons/ResetIcon.vue.es.js";
43
- import { default as Ua } from "./icons/SarafLogoIcon.vue.es.js";
44
- import { default as qa } from "./icons/SearchIcon.vue.es.js";
45
- import { ButtonColor as Ha, ButtonType as Ja } from "./general/button/model/Constants.es.js";
46
- import { default as Oa } from "./general/button/SarafButton.vue.es.js";
47
- import { SpinnerSizes as Va } from "./loaders/spinners/model/Constants.es.js";
27
+ import { default as oa } from "./baseTable/SarafTableGenerator.vue.es.js";
28
+ import { default as fa } from "./dataDisplay/tag/SarafTag.vue.es.js";
29
+ import { TagColors as pa } from "./dataDisplay/tag/model/Constants.es.js";
30
+ import { default as sa } from "./dataDisplay/tab/ui/SarafTabs.vue.es.js";
31
+ import { default as da } from "./dataDisplay/tab/ui/SarafSecondaryTabs.vue.es.js";
32
+ import { SarafTab as xa } from "./dataDisplay/tab/model/SarafTab.es.js";
33
+ import { AreaChartDataSource as ca } from "./dataDisplay/chart/model/AreaChartDataSource.es.js";
34
+ import { DonutChartDataSource as Ca } from "./dataDisplay/chart/model/DonutChartDataSource.es.js";
35
+ import { ChartSeries as ba, ChartSettings as Ia, ChartType as ha, RawChartDataPoint as Da } from "./dataDisplay/chart/model/ChartTypes.es.js";
36
+ import { TooltipDirective as Pa } from "./dataDisplay/tooltip/model/tooltipDirective.es.js";
37
+ import { default as wa } from "./dataEntry/checkbox/SarafCheckbox.vue.es.js";
38
+ import { default as Ba } from "./datePicker/SarafDatePicker.vue.es.js";
39
+ import { default as ka } from "./datePicker/SarafRangePicker.vue.es.js";
40
+ import { default as za } from "./icons/SarafArrowIcon.vue.es.js";
41
+ import { default as Ga } from "./icons/GiftCardIcon.vue.es.js";
42
+ import { default as Ma } from "./icons/PlusIcon.vue.es.js";
43
+ import { default as Ua } from "./icons/ResetIcon.vue.es.js";
44
+ import { default as qa } from "./icons/SarafLogoIcon.vue.es.js";
45
+ import { default as Ha } from "./icons/SearchIcon.vue.es.js";
46
+ import { ButtonColor as Ka, ButtonType as Oa } from "./general/button/model/Constants.es.js";
47
+ import { default as Va } from "./general/button/SarafButton.vue.es.js";
48
+ import { SpinnerSizes as Xa } from "./loaders/spinners/model/Constants.es.js";
48
49
  export {
49
50
  b as ApplicationLocalProvider,
50
- xa as AreaChartDataSource,
51
+ ca as AreaChartDataSource,
51
52
  d as ArrowDownIcon,
52
53
  x as ArrowUpIcon,
53
54
  h as BasicInputNames,
54
55
  c as BurgerIcon,
55
- Ha as ButtonColor,
56
- Ja as ButtonType,
57
- Ca as ChartSeries,
58
- Ta as ChartSettings,
59
- ba as ChartType,
56
+ Ka as ButtonColor,
57
+ Oa as ButtonType,
58
+ ba as ChartSeries,
59
+ Ia as ChartSettings,
60
+ ha as ChartType,
60
61
  o as ComponentSize,
61
- ca as DonutChartDataSource,
62
- za as GiftCardIcon,
62
+ Ca as DonutChartDataSource,
63
+ Ga as GiftCardIcon,
63
64
  D as InputSizes,
64
65
  y as InputStatus,
65
- La as PlusIcon,
66
- Ia as RawChartDataPoint,
67
- Na as ResetIcon,
68
- ka as SarafArrowIcon,
66
+ Ma as PlusIcon,
67
+ Da as RawChartDataPoint,
68
+ Ua as ResetIcon,
69
+ za as SarafArrowIcon,
69
70
  j as SarafBankCardTableCell,
70
- Oa as SarafButton,
71
+ Va as SarafButton,
71
72
  s as SarafChart,
72
- Pa as SarafCheckbox,
73
- wa as SarafDatePicker,
73
+ wa as SarafCheckbox,
74
+ Ba as SarafDatePicker,
74
75
  C as SarafDefaultSpinner,
75
76
  ra as SarafDynamicCurrencyPriceTableCell,
76
- M as SarafFiledInvalidMessage,
77
+ L as SarafFiledInvalidMessage,
77
78
  E as SarafIbanTableCell,
78
79
  P as SarafInputTypes,
79
- Ua as SarafLogoIcon,
80
+ qa as SarafLogoIcon,
80
81
  v as SarafNumberFiled,
81
82
  p as SarafPasswordFiled,
82
83
  Z as SarafPriceTableCell,
83
- Ba as SarafRangePicker,
84
+ ka as SarafRangePicker,
84
85
  f as SarafSearchFiled,
85
- sa as SarafSecondaryTabs,
86
+ da as SarafSecondaryTabs,
86
87
  R as SarafSelect,
87
88
  g as SarafSelectMode,
88
89
  J as SarafSymbolTableCell,
89
- da as SarafTab,
90
- G as SarafTable,
91
- pa as SarafTabs,
92
- oa as SarafTag,
90
+ xa as SarafTab,
91
+ N as SarafTable,
92
+ oa as SarafTableGenerator,
93
+ sa as SarafTabs,
94
+ fa as SarafTag,
93
95
  F as SarafTextFiled,
94
96
  O as SarafTradeAmountTableCell,
95
97
  X as SarafTradeDateCell,
96
98
  $ as SarafTradeSymbolCell,
97
99
  V as SarafTradeSymbolPriceCell,
98
- qa as SearchIcon,
100
+ Ha as SearchIcon,
99
101
  A as SelectItem,
100
- Va as SpinnerSizes,
101
- fa as TagColors,
102
- Da as TooltipDirective
102
+ Xa as SpinnerSizes,
103
+ pa as TagColors,
104
+ Pa as TooltipDirective
103
105
  };