portal-design-system 0.0.913 → 0.0.914

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/index.d.ts CHANGED
@@ -13,4 +13,129 @@ import { default as useWindowScroll } from './components/composables/useWindowSc
13
13
  import { default as Tabs } from './components/Tabs.vue';
14
14
  import { default as Dropdown } from './components/Dropdown.vue';
15
15
  import { default as DurationTimeline } from './components/DurationTimeline.vue';
16
- export { Button, Select, Input, Error, Iconsax, IconsaxFont, Badge, Dialog, Icon, Text, Tabs, Dropdown, DurationTimeline, useOutsideClick, useWindowScroll };
16
+ import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
17
+ import { DxCustomColumn } from './types/dev-express-types';
18
+ declare const DataGrid: {
19
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{
20
+ dataSource: any;
21
+ columns: DxCustomColumn[];
22
+ keyExpr?: string;
23
+ hasActions?: boolean;
24
+ remoteOperations?: boolean;
25
+ enablePagination?: boolean;
26
+ enableFiltering?: boolean;
27
+ enableSearch?: boolean;
28
+ enableColumnFixing?: boolean;
29
+ enableColumnChooser?: boolean;
30
+ enableRowSelection?: boolean;
31
+ enableExport?: boolean;
32
+ pageSize?: 5 | 10 | 15 | 20 | 50;
33
+ exportFileName?: string;
34
+ backRoute?: string;
35
+ showBackButton?: boolean;
36
+ wordWrapEnabled?: boolean;
37
+ useFixedHeight?: boolean;
38
+ hasCreate?: boolean;
39
+ }> & Readonly<{
40
+ onRefresh?: ((...args: any[]) => any) | undefined;
41
+ "onOn-exporting"?: ((...args: any[]) => any) | undefined;
42
+ onCreate?: ((...args: any[]) => any) | undefined;
43
+ }>, {
44
+ refresh: () => Promise<void> | undefined;
45
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
46
+ refresh: (...args: any[]) => void;
47
+ "on-exporting": (...args: any[]) => void;
48
+ create: (...args: any[]) => void;
49
+ }, PublicProps, {
50
+ keyExpr: string;
51
+ pageSize: 5 | 10 | 15 | 20 | 50;
52
+ useFixedHeight: boolean;
53
+ }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
54
+ dataGrid: unknown;
55
+ }, HTMLDivElement, ComponentProvideOptions, {
56
+ P: {};
57
+ B: {};
58
+ D: {};
59
+ C: {};
60
+ M: {};
61
+ Defaults: {};
62
+ }, Readonly<{
63
+ dataSource: any;
64
+ columns: DxCustomColumn[];
65
+ keyExpr?: string;
66
+ hasActions?: boolean;
67
+ remoteOperations?: boolean;
68
+ enablePagination?: boolean;
69
+ enableFiltering?: boolean;
70
+ enableSearch?: boolean;
71
+ enableColumnFixing?: boolean;
72
+ enableColumnChooser?: boolean;
73
+ enableRowSelection?: boolean;
74
+ enableExport?: boolean;
75
+ pageSize?: 5 | 10 | 15 | 20 | 50;
76
+ exportFileName?: string;
77
+ backRoute?: string;
78
+ showBackButton?: boolean;
79
+ wordWrapEnabled?: boolean;
80
+ useFixedHeight?: boolean;
81
+ hasCreate?: boolean;
82
+ }> & Readonly<{
83
+ onRefresh?: ((...args: any[]) => any) | undefined;
84
+ "onOn-exporting"?: ((...args: any[]) => any) | undefined;
85
+ onCreate?: ((...args: any[]) => any) | undefined;
86
+ }>, {
87
+ refresh: () => Promise<void> | undefined;
88
+ }, {}, {}, {}, {
89
+ keyExpr: string;
90
+ pageSize: 5 | 10 | 15 | 20 | 50;
91
+ useFixedHeight: boolean;
92
+ }>;
93
+ __isFragment?: never;
94
+ __isTeleport?: never;
95
+ __isSuspense?: never;
96
+ } & ComponentOptionsBase<Readonly<{
97
+ dataSource: any;
98
+ columns: DxCustomColumn[];
99
+ keyExpr?: string;
100
+ hasActions?: boolean;
101
+ remoteOperations?: boolean;
102
+ enablePagination?: boolean;
103
+ enableFiltering?: boolean;
104
+ enableSearch?: boolean;
105
+ enableColumnFixing?: boolean;
106
+ enableColumnChooser?: boolean;
107
+ enableRowSelection?: boolean;
108
+ enableExport?: boolean;
109
+ pageSize?: 5 | 10 | 15 | 20 | 50;
110
+ exportFileName?: string;
111
+ backRoute?: string;
112
+ showBackButton?: boolean;
113
+ wordWrapEnabled?: boolean;
114
+ useFixedHeight?: boolean;
115
+ hasCreate?: boolean;
116
+ }> & Readonly<{
117
+ onRefresh?: ((...args: any[]) => any) | undefined;
118
+ "onOn-exporting"?: ((...args: any[]) => any) | undefined;
119
+ onCreate?: ((...args: any[]) => any) | undefined;
120
+ }>, {
121
+ refresh: () => Promise<void> | undefined;
122
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
123
+ refresh: (...args: any[]) => void;
124
+ "on-exporting": (...args: any[]) => void;
125
+ create: (...args: any[]) => void;
126
+ }, string, {
127
+ keyExpr: string;
128
+ pageSize: 5 | 10 | 15 | 20 | 50;
129
+ useFixedHeight: boolean;
130
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
131
+ $slots: Partial<Record<string, (_: any) => any>> & {
132
+ customRefreshButton?(_: {
133
+ refresh: () => Promise<void> | undefined;
134
+ }): any;
135
+ exportButton?(_: {}): any;
136
+ createButton?(_: {}): any;
137
+ toolbarLeft?(_: {}): any;
138
+ toolbarRight?(_: {}): any;
139
+ };
140
+ });
141
+ export { Button, Select, Input, Error, Iconsax, IconsaxFont, Badge, Dialog, Icon, Text, Tabs, DataGrid, Dropdown, DurationTimeline, useOutsideClick, useWindowScroll };