sccoreui 6.2.98 → 6.3.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.
Files changed (119) hide show
  1. package/dist/App.js +3 -2
  2. package/dist/App.scss +15 -7
  3. package/dist/assets/sccoreui.css +10 -0
  4. package/dist/components/ag-grid/advancedFeature/column-group.js +3 -1
  5. package/dist/components/ag-grid/advancedFeature/grid-view-list-view.js +1 -1
  6. package/dist/components/ag-grid/advancedFeature/new-filter/table-filter.js +1 -1
  7. package/dist/pages/RowGroupingServerside/DragandDropFeatures.js +49 -0
  8. package/dist/pages/RowGroupingServerside/RowGroupingServerSide.js +125 -0
  9. package/dist/pages/RowGroupingServerside/dummyData.js +226 -0
  10. package/dist/pages/aggrid/AgGrid.js +837 -0
  11. package/dist/pages/aggrid/BulkAction.js +9 -0
  12. package/dist/pages/aggrid/RowGroupTrail.js +125 -0
  13. package/dist/pages/aggrid/Template.js +11 -0
  14. package/dist/pages/aggrid/TestingWIthAdminConfig.js +250 -0
  15. package/dist/pages/aggrid/fakeServer.js +95 -0
  16. package/dist/pages/aggrid/id-cell.js +9 -0
  17. package/dist/pages/aggrid/interface.js +2 -0
  18. package/dist/pages/avatar/avatar.js +338 -0
  19. package/dist/pages/badges/badge.js +73 -0
  20. package/dist/pages/breadcrumb/breadcrumb.js +14 -0
  21. package/dist/pages/button/button.js +10 -0
  22. package/dist/pages/button-group/button-group.js +10 -0
  23. package/dist/pages/chart/chart.js +257 -0
  24. package/dist/pages/checkbox/checkbox.js +26 -0
  25. package/dist/pages/checkbox-group/checkbox-group-component.js +21 -0
  26. package/dist/pages/color-picker/color-picker.js +13 -0
  27. package/dist/pages/content-dividers/content-dividers.js +11 -0
  28. package/dist/pages/custom-color-picker/custom-color-picker.js +12 -0
  29. package/dist/pages/custom-multiselect/CustomMultiSelect.js +37 -0
  30. package/dist/pages/date-picker/date-picker.js +20 -0
  31. package/dist/pages/dropdown/dropdown-component.js +39 -0
  32. package/dist/pages/file-upload/file-upload.js +34 -0
  33. package/dist/pages/flex.js +15 -0
  34. package/dist/pages/formulaTemplate/formulaTemplate.js +154 -0
  35. package/dist/pages/frolaTextEditor/froala-text-editor.js +12 -0
  36. package/dist/pages/home.js +55 -0
  37. package/dist/pages/input/input-text.js +112 -0
  38. package/dist/pages/list-box-dropdown/listboxdropdown.js +55 -0
  39. package/dist/pages/loader-indicator/loader-indicator.js +10 -0
  40. package/dist/pages/mega-mennu/mega-menu.js +84 -0
  41. package/dist/pages/multi-select-dropdown/multi-select-dropdown.js +51 -0
  42. package/dist/pages/not-found/not-found.js +10 -0
  43. package/dist/pages/paginator/pagination.js +122 -0
  44. package/dist/pages/progress-bar/progress-bar.js +27 -0
  45. package/dist/pages/progress-steps/progress-steps.js +24 -0
  46. package/dist/pages/radio-button/radio-button-component.js +11 -0
  47. package/dist/pages/shadows/shadows.js +7 -0
  48. package/dist/pages/slideout-menus/slideout-menus.js +104 -0
  49. package/dist/pages/sliders/slider.js +39 -0
  50. package/dist/pages/tabels/table-data.js +2193 -0
  51. package/dist/pages/tabels/table.js +98 -0
  52. package/dist/pages/tabs/tabs.js +9 -0
  53. package/dist/pages/tags/tags.js +70 -0
  54. package/dist/pages/testingcomponents/NormalAgGrid.js +58 -0
  55. package/dist/pages/testingcomponents/TestComponent.js +71 -0
  56. package/dist/pages/testingcomponents/data.js +326 -0
  57. package/dist/pages/testingcomponents/fom-feild-testing/MainformComp.js +16 -0
  58. package/dist/pages/toast/toast.js +47 -0
  59. package/dist/pages/toggle/toggle.js +10 -0
  60. package/dist/pages/tooltip/tooltip.js +13 -0
  61. package/dist/pages/treeDropdownSelect/treedropdowselect.js +34 -0
  62. package/dist/pages/types/type.js +2 -0
  63. package/dist/types/pages/RowGroupingServerside/DragandDropFeatures.d.ts +4 -0
  64. package/dist/types/pages/RowGroupingServerside/RowGroupingServerSide.d.ts +4 -0
  65. package/dist/types/pages/RowGroupingServerside/dummyData.d.ts +9 -0
  66. package/dist/types/pages/aggrid/AgGrid.d.ts +2 -0
  67. package/dist/types/pages/aggrid/BulkAction.d.ts +2 -0
  68. package/dist/types/pages/aggrid/RowGroupTrail.d.ts +4 -0
  69. package/dist/types/pages/aggrid/Template.d.ts +2 -0
  70. package/dist/types/pages/aggrid/TestingWIthAdminConfig.d.ts +2 -0
  71. package/dist/types/pages/aggrid/fakeServer.d.ts +7 -0
  72. package/dist/types/pages/aggrid/id-cell.d.ts +2 -0
  73. package/dist/types/pages/aggrid/interface.d.ts +12 -0
  74. package/dist/types/pages/avatar/avatar.d.ts +2 -0
  75. package/dist/types/pages/badges/badge.d.ts +3 -0
  76. package/dist/types/pages/breadcrumb/breadcrumb.d.ts +2 -0
  77. package/dist/types/pages/button/button.d.ts +2 -0
  78. package/dist/types/pages/button-group/button-group.d.ts +2 -0
  79. package/dist/types/pages/chart/chart.d.ts +2 -0
  80. package/dist/types/pages/checkbox/checkbox.d.ts +2 -0
  81. package/dist/types/pages/checkbox-group/checkbox-group-component.d.ts +3 -0
  82. package/dist/types/pages/color-picker/color-picker.d.ts +2 -0
  83. package/dist/types/pages/content-dividers/content-dividers.d.ts +2 -0
  84. package/dist/types/pages/custom-color-picker/custom-color-picker.d.ts +2 -0
  85. package/dist/types/pages/custom-multiselect/CustomMultiSelect.d.ts +2 -0
  86. package/dist/types/pages/date-picker/date-picker.d.ts +2 -0
  87. package/dist/types/pages/dropdown/dropdown-component.d.ts +2 -0
  88. package/dist/types/pages/file-upload/file-upload.d.ts +3 -0
  89. package/dist/types/pages/flex.d.ts +2 -0
  90. package/dist/types/pages/formulaTemplate/formulaTemplate.d.ts +2 -0
  91. package/dist/types/pages/frolaTextEditor/froala-text-editor.d.ts +2 -0
  92. package/dist/types/pages/home.d.ts +2 -0
  93. package/dist/types/pages/input/input-text.d.ts +3 -0
  94. package/dist/types/pages/list-box-dropdown/listboxdropdown.d.ts +2 -0
  95. package/dist/types/pages/loader-indicator/loader-indicator.d.ts +3 -0
  96. package/dist/types/pages/mega-mennu/mega-menu.d.ts +2 -0
  97. package/dist/types/pages/multi-select-dropdown/multi-select-dropdown.d.ts +2 -0
  98. package/dist/types/pages/not-found/not-found.d.ts +2 -0
  99. package/dist/types/pages/paginator/pagination.d.ts +2 -0
  100. package/dist/types/pages/progress-bar/progress-bar.d.ts +3 -0
  101. package/dist/types/pages/progress-steps/progress-steps.d.ts +2 -0
  102. package/dist/types/pages/radio-button/radio-button-component.d.ts +2 -0
  103. package/dist/types/pages/shadows/shadows.d.ts +2 -0
  104. package/dist/types/pages/slideout-menus/slideout-menus.d.ts +2 -0
  105. package/dist/types/pages/sliders/slider.d.ts +1 -0
  106. package/dist/types/pages/tabels/table-data.d.ts +3 -0
  107. package/dist/types/pages/tabels/table.d.ts +2 -0
  108. package/dist/types/pages/tabs/tabs.d.ts +3 -0
  109. package/dist/types/pages/tags/tags.d.ts +3 -0
  110. package/dist/types/pages/testingcomponents/NormalAgGrid.d.ts +4 -0
  111. package/dist/types/pages/testingcomponents/TestComponent.d.ts +4 -0
  112. package/dist/types/pages/testingcomponents/data.d.ts +1 -0
  113. package/dist/types/pages/testingcomponents/fom-feild-testing/MainformComp.d.ts +2 -0
  114. package/dist/types/pages/toast/toast.d.ts +2 -0
  115. package/dist/types/pages/toggle/toggle.d.ts +2 -0
  116. package/dist/types/pages/tooltip/tooltip.d.ts +2 -0
  117. package/dist/types/pages/treeDropdownSelect/treedropdowselect.d.ts +2 -0
  118. package/dist/types/pages/types/type.d.ts +64 -0
  119. package/package.json +1 -1
@@ -0,0 +1,326 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.giveFirstLevel = void 0;
4
+ const dummyData = [
5
+ {
6
+ "employeeId": 101,
7
+ "employeeName": "Erica Rogers",
8
+ "jobTitle": "CEO",
9
+ "employmentType": "Permanent",
10
+ "children": [
11
+ {
12
+ "employeeId": 102,
13
+ "employeeName": "Malcolm Barrett",
14
+ "jobTitle": "Exec. Vice President",
15
+ "employmentType": "Permanent",
16
+ "children": [
17
+ {
18
+ "employeeId": 103,
19
+ "employeeName": "Esther Baker",
20
+ "jobTitle": "Director of Operations",
21
+ "employmentType": "Permanent",
22
+ "children": [
23
+ {
24
+ "employeeId": 104,
25
+ "employeeName": "Brittany Hanson",
26
+ "jobTitle": "Fleet Coordinator",
27
+ "employmentType": "Permanent",
28
+ "children": [
29
+ {
30
+ "employeeId": 105,
31
+ "employeeName": "Leah Flowers",
32
+ "jobTitle": "Parts Technician",
33
+ "employmentType": "Contract"
34
+ },
35
+ {
36
+ "employeeId": 106,
37
+ "employeeName": "Tammy Sutton",
38
+ "jobTitle": "Service Technician",
39
+ "employmentType": "Contract"
40
+ }
41
+ ]
42
+ },
43
+ {
44
+ "employeeId": 107,
45
+ "employeeName": "Derek Paul",
46
+ "jobTitle": "Inventory Control",
47
+ "employmentType": "Permanent"
48
+ }
49
+ ]
50
+ },
51
+ {
52
+ "employeeId": 108,
53
+ "employeeName": "Francis Strickland",
54
+ "jobTitle": "VP Sales",
55
+ "employmentType": "Permanent",
56
+ "children": [
57
+ {
58
+ "employeeId": 109,
59
+ "employeeName": "Morris Hanson",
60
+ "jobTitle": "Sales Manager",
61
+ "employmentType": "Permanent"
62
+ },
63
+ {
64
+ "employeeId": 110,
65
+ "employeeName": "Todd Tyler",
66
+ "jobTitle": "Sales Executive",
67
+ "employmentType": "Contract"
68
+ },
69
+ {
70
+ "employeeId": 111,
71
+ "employeeName": "Bennie Wise",
72
+ "jobTitle": "Sales Executive",
73
+ "employmentType": "Contract"
74
+ },
75
+ {
76
+ "employeeId": 112,
77
+ "employeeName": "Joel Cooper",
78
+ "jobTitle": "Sales Executive",
79
+ "employmentType": "Permanent"
80
+ }
81
+ ]
82
+ }
83
+ ]
84
+ },
85
+ {
86
+ "employeeId": 113,
87
+ "employeeName": "Luke McBride",
88
+ "jobTitle": "Exec. Vice President",
89
+ "employmentType": "Permanent",
90
+ "children": [
91
+ {
92
+ "employeeId": 114,
93
+ "employeeName": "Sarah Baker",
94
+ "jobTitle": "Director of Operations",
95
+ "employmentType": "Permanent",
96
+ "children": [
97
+ {
98
+ "employeeId": 115,
99
+ "employeeName": "Mason Hanson",
100
+ "jobTitle": "Fleet Coordinator",
101
+ "employmentType": "Permanent",
102
+ "children": [
103
+ {
104
+ "employeeId": 116,
105
+ "employeeName": "Hannah Flowers",
106
+ "jobTitle": "Parts Technician",
107
+ "employmentType": "Contract"
108
+ },
109
+ {
110
+ "employeeId": 117,
111
+ "employeeName": "Rob Sutton",
112
+ "jobTitle": "Service Technician",
113
+ "employmentType": "Contract"
114
+ }
115
+ ]
116
+ },
117
+ {
118
+ "employeeId": 118,
119
+ "employeeName": "Paul Smith",
120
+ "jobTitle": "Inventory Control",
121
+ "employmentType": "Permanent"
122
+ }
123
+ ]
124
+ },
125
+ {
126
+ "employeeId": 119,
127
+ "employeeName": "Adam Newman",
128
+ "jobTitle": "VP Sales",
129
+ "employmentType": "Permanent",
130
+ "children": [
131
+ {
132
+ "employeeId": 120,
133
+ "employeeName": "John Smith",
134
+ "jobTitle": "Sales Manager",
135
+ "employmentType": "Permanent"
136
+ },
137
+ {
138
+ "employeeId": 121,
139
+ "employeeName": "Alice Grant",
140
+ "jobTitle": "Sales Executive",
141
+ "employmentType": "Contract"
142
+ },
143
+ {
144
+ "employeeId": 122,
145
+ "employeeName": "Ben Hill",
146
+ "jobTitle": "Sales Executive",
147
+ "employmentType": "Contract"
148
+ },
149
+ {
150
+ "employeeId": 123,
151
+ "employeeName": "Joe Cooper",
152
+ "jobTitle": "Sales Executive",
153
+ "employmentType": "Permanent"
154
+ }
155
+ ]
156
+ }
157
+ ]
158
+ }
159
+ ]
160
+ },
161
+ {
162
+ "employeeId": 1010,
163
+ "employeeName": "Erica Rogers",
164
+ "jobTitle": "CEO",
165
+ "employmentType": "Permanent",
166
+ "children": [
167
+ {
168
+ "employeeId": 1020,
169
+ "employeeName": "Malcolm Barrett",
170
+ "jobTitle": "Exec. Vice President",
171
+ "employmentType": "Permanent",
172
+ "children": [
173
+ {
174
+ "employeeId": 1030,
175
+ "employeeName": "Esther Baker",
176
+ "jobTitle": "Director of Operations",
177
+ "employmentType": "Permanent",
178
+ "children": [
179
+ {
180
+ "employeeId": 1040,
181
+ "employeeName": "Brittany Hanson",
182
+ "jobTitle": "Fleet Coordinator",
183
+ "employmentType": "Permanent",
184
+ "children": [
185
+ {
186
+ "employeeId": 1050,
187
+ "employeeName": "Leah Flowers",
188
+ "jobTitle": "Parts Technician",
189
+ "employmentType": "Contract"
190
+ },
191
+ {
192
+ "employeeId": 1060,
193
+ "employeeName": "Tammy Sutton",
194
+ "jobTitle": "Service Technician",
195
+ "employmentType": "Contract"
196
+ }
197
+ ]
198
+ },
199
+ {
200
+ "employeeId": 1070,
201
+ "employeeName": "Derek Paul",
202
+ "jobTitle": "Inventory Control",
203
+ "employmentType": "Permanent"
204
+ }
205
+ ]
206
+ },
207
+ {
208
+ "employeeId": 1080,
209
+ "employeeName": "Francis Strickland",
210
+ "jobTitle": "VP Sales",
211
+ "employmentType": "Permanent",
212
+ "children": [
213
+ {
214
+ "employeeId": 1090,
215
+ "employeeName": "Morris Hanson",
216
+ "jobTitle": "Sales Manager",
217
+ "employmentType": "Permanent"
218
+ },
219
+ {
220
+ "employeeId": 1100,
221
+ "employeeName": "Todd Tyler",
222
+ "jobTitle": "Sales Executive",
223
+ "employmentType": "Contract"
224
+ },
225
+ {
226
+ "employeeId": 1110,
227
+ "employeeName": "Bennie Wise",
228
+ "jobTitle": "Sales Executive",
229
+ "employmentType": "Contract"
230
+ },
231
+ {
232
+ "employeeId": 1120,
233
+ "employeeName": "Joel Cooper",
234
+ "jobTitle": "Sales Executive",
235
+ "employmentType": "Permanent"
236
+ }
237
+ ]
238
+ }
239
+ ]
240
+ },
241
+ {
242
+ "employeeId": 1130,
243
+ "employeeName": "Luke McBride",
244
+ "jobTitle": "Exec. Vice President",
245
+ "employmentType": "Permanent",
246
+ "children": [
247
+ {
248
+ "employeeId": 1140,
249
+ "employeeName": "Sarah Baker",
250
+ "jobTitle": "Director of Operations",
251
+ "employmentType": "Permanent",
252
+ "children": [
253
+ {
254
+ "employeeId": 1150,
255
+ "employeeName": "Mason Hanson",
256
+ "jobTitle": "Fleet Coordinator",
257
+ "employmentType": "Permanent",
258
+ "children": [
259
+ {
260
+ "employeeId": 1160,
261
+ "employeeName": "Hannah Flowers",
262
+ "jobTitle": "Parts Technician",
263
+ "employmentType": "Contract"
264
+ },
265
+ {
266
+ "employeeId": 1170,
267
+ "employeeName": "Rob Sutton",
268
+ "jobTitle": "Service Technician",
269
+ "employmentType": "Contract"
270
+ }
271
+ ]
272
+ },
273
+ {
274
+ "employeeId": 1180,
275
+ "employeeName": "Paul Smith",
276
+ "jobTitle": "Inventory Control",
277
+ "employmentType": "Permanent"
278
+ }
279
+ ]
280
+ },
281
+ {
282
+ "employeeId": 1190,
283
+ "employeeName": "Adam Newman",
284
+ "jobTitle": "VP Sales",
285
+ "employmentType": "Permanent",
286
+ "children": [
287
+ {
288
+ "employeeId": 1200,
289
+ "employeeName": "John Smith",
290
+ "jobTitle": "Sales Manager",
291
+ "employmentType": "Permanent"
292
+ },
293
+ {
294
+ "employeeId": 1210,
295
+ "employeeName": "Alice Grant",
296
+ "jobTitle": "Sales Executive",
297
+ "employmentType": "Contract"
298
+ },
299
+ {
300
+ "employeeId": 1220,
301
+ "employeeName": "Ben Hill",
302
+ "jobTitle": "Sales Executive",
303
+ "employmentType": "Contract"
304
+ },
305
+ {
306
+ "employeeId": 1230,
307
+ "employeeName": "Joe Cooper",
308
+ "jobTitle": "Sales Executive",
309
+ "employmentType": "Permanent"
310
+ }
311
+ ]
312
+ }
313
+ ]
314
+ }
315
+ ]
316
+ },
317
+ ];
318
+ const generateUniqueId = () => Math.random().toString(36).substr(2, 9);
319
+ const addUniqueIds = (data) => {
320
+ return data.map(item => (Object.assign(Object.assign({}, item), { id: generateUniqueId(), children: item.children ? addUniqueIds(item.children) : [] // Recursively add unique IDs to children
321
+ })));
322
+ };
323
+ const giveFirstLevel = () => {
324
+ return addUniqueIds(dummyData);
325
+ };
326
+ exports.giveFirstLevel = giveFirstLevel;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const form_1 = tslib_1.__importDefault(require("../../../components/form/form"));
6
+ const form_fields_1 = tslib_1.__importDefault(require("../../../components/form/form-fields/form-fields"));
7
+ const MainFormComponent = () => {
8
+ const newObject = {
9
+ number: null,
10
+ name: ""
11
+ };
12
+ return ((0, jsx_runtime_1.jsx)("div", Object.assign({ className: "flex h-screen w-screen p-8" }, { children: (0, jsx_runtime_1.jsx)(form_1.default, Object.assign({ values: newObject, validations: null, validateOnBlur: true, validateOnChange: true, validateOnMount: true }, { children: ({ setFieldValue, touched, errors }) => {
13
+ return ((0, jsx_runtime_1.jsx)(form_fields_1.default.InputCurrencyField, { setFieldValue: setFieldValue, touched: touched, name: "number", errors: errors, maxLength: 10, useGrouping: false }));
14
+ } })) })));
15
+ };
16
+ exports.default = MainFormComponent;
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const button_1 = require("primereact/button");
6
+ const toast_1 = require("primereact/toast");
7
+ const react_1 = require("react");
8
+ const svg_component_1 = tslib_1.__importDefault(require("../../directives/svg-component"));
9
+ const ToastComponent = () => {
10
+ const toast = (0, react_1.useRef)(null);
11
+ const showSuccess = () => {
12
+ var _a;
13
+ (_a = toast.current) === null || _a === void 0 ? void 0 : _a.show({
14
+ severity: "success",
15
+ summary: ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex" }, { children: [(0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "success-tick-mark" }), "Successfully connected to Quickbooks"] })) })),
16
+ life: 3000,
17
+ });
18
+ };
19
+ const showInfo = () => {
20
+ var _a;
21
+ (_a = toast.current) === null || _a === void 0 ? void 0 : _a.show({
22
+ severity: "info",
23
+ summary: ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex" }, { children: [(0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "info-icon-circle" }), "Default template made inactive"] })) })),
24
+ life: 300000,
25
+ });
26
+ };
27
+ const showError = () => {
28
+ var _a;
29
+ (_a = toast.current) === null || _a === void 0 ? void 0 : _a.show({
30
+ severity: "error",
31
+ summary: ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex" }, { children: [(0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "info-icon" }), (0, jsx_runtime_1.jsx)("h4", Object.assign({ className: "text-white font-light" }, { children: "There was a problem connecting to the app" }))] }))),
32
+ detail: ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "pl-6" }, { children: ["Couldn\u2019t connect to the app because of insufficient permissions", (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex gap-4" }, { children: [(0, jsx_runtime_1.jsx)(button_1.Button, { label: "Learn more", link: true, className: "text-white p-0" }), (0, jsx_runtime_1.jsx)(button_1.Button, Object.assign({ label: "Retry", link: true, className: "text-white p-0 gap-2" }, { children: (0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "arrow-right-white" }) }))] }))] })) })),
33
+ life: 300000,
34
+ });
35
+ };
36
+ const showWarning = () => {
37
+ var _a;
38
+ (_a = toast.current) === null || _a === void 0 ? void 0 : _a.show({
39
+ severity: "warn",
40
+ summary: ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex" }, { children: [(0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "success-tick-mark" }), "Successfully connected to Quickbooks"] })) })),
41
+ detail: "Message Content",
42
+ life: 3000,
43
+ });
44
+ };
45
+ return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("h2", Object.assign({ className: "flex bg-gray-200 p-3 justify-content-center mb-4" }, { children: "Toast Messages" })), (0, jsx_runtime_1.jsx)("object", { id: "svg1", data: "./down_arrow.svg", type: "image/svg+xml" }), (0, jsx_runtime_1.jsx)(toast_1.Toast, { ref: toast }), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex gap-2 justify-content-center align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(button_1.Button, { label: "Success", className: "p-button-success border-round-3xl", onClick: showSuccess }), (0, jsx_runtime_1.jsx)(button_1.Button, { label: "Info", className: "p-button-info border-round-3xl", onClick: showInfo }), (0, jsx_runtime_1.jsx)(button_1.Button, { label: "Warn", className: "p-button-warning border-round-3xl", onClick: showWarning }), (0, jsx_runtime_1.jsx)(button_1.Button, { label: "Error", className: "p-button-danger border-round-3xl", onClick: showError })] }))] }));
46
+ };
47
+ exports.default = ToastComponent;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const jsx_runtime_1 = require("react/jsx-runtime");
4
+ const inputswitch_1 = require("primereact/inputswitch");
5
+ const react_1 = require("react");
6
+ const ToggleSwitch = () => {
7
+ const [isChecked, setIsChecked] = (0, react_1.useState)(false);
8
+ return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("h2", Object.assign({ className: "flex bg-gray-200 p-3 justify-content-center mt-0 mb-4" }, { children: "Toggle Switch" })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex justify-content-center gap-5 mb-5 p-3" }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column gap-3 mb-5" }, { children: [(0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: isChecked, onChange: () => setIsChecked(!isChecked) }), (0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: true }), (0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: false, disabled: true }), (0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: false, className: "p-invalid" })] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column gap-3 mb-5" }, { children: [(0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: isChecked, onChange: () => setIsChecked(!isChecked), className: "p-inputswitch-light" }), (0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: true, className: "p-inputswitch-light" }), (0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: false, disabled: true, className: "p-inputswitch-light" }), (0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: false, className: "p-invalid p-inputswitch-light" })] }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex justify-content-center align-items-center gap-5" }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column gap-3" }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-start gap-3" }, { children: [(0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: isChecked, onChange: () => setIsChecked(!isChecked), className: "mt-1" }), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-700 font-medium text-base" }, { children: "Remember me" })), (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-600 font-normal text-base" }, { children: "Save my login details for next time." }))] }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-start gap-3" }, { children: [(0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: true, className: "mt-1" }), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-700 font-medium text-base" }, { children: "Remember me" })), (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-600 font-normal text-base" }, { children: "Save my login details for next time." }))] }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-start gap-3" }, { children: [(0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: false, disabled: true, className: "mt-1" }), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-700 font-medium text-base" }, { children: "Remember me" })), (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-600 font-normal text-base" }, { children: "Save my login details for next time." }))] }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-start gap-3" }, { children: [(0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: false, className: "mt-1 p-invalid" }), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-700 font-medium text-base" }, { children: "Remember me" })), (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-600 font-normal text-base" }, { children: "Save my login details for next time." }))] }))] }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column gap-3" }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-start gap-3" }, { children: [(0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: isChecked, onChange: () => setIsChecked(!isChecked), className: "mt-1 p-inputswitch-light" }), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-700 font-medium text-base" }, { children: "Remember me" })), (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-600 font-normal text-base" }, { children: "Save my login details for next time." }))] }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-start gap-3" }, { children: [(0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: true, className: "mt-1 p-inputswitch-light" }), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-700 font-medium text-base" }, { children: "Remember me" })), (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-600 font-normal text-base" }, { children: "Save my login details for next time." }))] }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-start gap-3" }, { children: [(0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: false, disabled: true, className: "mt-1 p-inputswitch-light" }), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-700 font-medium text-base" }, { children: "Remember me" })), (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-600 font-normal text-base" }, { children: "Save my login details for next time." }))] }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex align-items-start gap-3" }, { children: [(0, jsx_runtime_1.jsx)(inputswitch_1.InputSwitch, { checked: false, className: "mt-1 p-invalid p-inputswitch-light" }), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column" }, { children: [(0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-700 font-medium text-base" }, { children: "Remember me" })), (0, jsx_runtime_1.jsx)("span", Object.assign({ className: "text-gray-600 font-normal text-base" }, { children: "Save my login details for next time." }))] }))] }))] }))] }))] }));
9
+ };
10
+ exports.default = ToggleSwitch;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TooltipComponent = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const tooltip_1 = require("primereact/tooltip");
6
+ const TooltipComponent = () => {
7
+ const content = () => {
8
+ return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "m-0 flex flex-column gap-1 px-0 shadow-none" }, { children: [(0, jsx_runtime_1.jsx)("p", Object.assign({ className: "p-0 m-0 font-semibold shadow-none" }, { children: "This is a Tooltip" })), (0, jsx_runtime_1.jsxs)("p", Object.assign({ className: "p-0 m-0 font-medium shadow-none" }, { children: ["Tooltips are used to describe or identify an ", (0, jsx_runtime_1.jsx)("br", {}), " element. In most scenarios, tooltips help the user ", (0, jsx_runtime_1.jsx)("br", {}), " understand meaning, function or alt-text."] }))] })));
9
+ };
10
+ return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("h2", Object.assign({ className: "flex bg-gray-200 p-3 justify-content-center mt-0 mb-4" }, { children: "Tooltips" })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column gap-5" }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex justify-content-center gap-4" }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, { target: ".custom-target-icon-top-dark", position: "top", content: "No", className: "mb-1" }), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-top-dark pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Top" })] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, { target: ".custom-target-icon-bottom-dark", position: "bottom", content: "T00dfsgdfgdfgfdg", className: "mt-1" }), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-bottom-dark pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Bottom" })] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, { target: ".custom-target-icon-left-dark", position: "left", content: "This is a tooltip", className: "mr-1" }), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-left-dark pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Left" })] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, { target: ".custom-target-icon-right-dark", position: "right", hideDelay: 100000, content: "This is a tooltip", className: "ml-1" }), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-right-dark pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Right" })] }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex justify-content-center gap-4" }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, { target: ".custom-target-icon-top-light", position: "top", className: "p-light-tooltip", content: "This is a tooltip" }), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-top-light pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Top" })] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, { target: ".custom-target-icon-bottom-light", position: "bottom", className: "p-light-tooltip", content: "This is a tooltip" }), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-bottom-light pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Bottom" })] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, { target: ".custom-target-icon-left-light", position: "left", className: "p-light-tooltip", content: "This is a tooltip" }), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-left-light pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Left" })] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, { target: ".custom-target-icon-right-light", position: "right", className: "p-light-tooltip", content: "This is a tooltip" }), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-right-light pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Right" })] }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex justify-content-center gap-4" }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, Object.assign({ target: ".custom-target-icon-content-top", position: "top" }, { children: content() })), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-content-top pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Top" })] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, Object.assign({ target: ".custom-target-icon-content-bottom", position: "bottom" }, { children: content() })), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-content-bottom pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Bottom" })] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, Object.assign({ target: ".custom-target-icon-content-left", position: "left" }, { children: content() })), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-content-left pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Left" })] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, Object.assign({ target: ".custom-target-icon-content-right", position: "right" }, { children: content() })), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-content-right pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Right" })] }))] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex justify-content-center gap-4" }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, Object.assign({ target: ".custom-target-icon-content-top-light", position: "top", className: "p-light-tooltip" }, { children: content() })), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-content-top-light pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Top" })] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, Object.assign({ target: ".custom-target-icon-content-bottom-light", position: "bottom", className: "p-light-tooltip" }, { children: content() })), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-content-bottom-light pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Bottom" })] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, Object.assign({ target: ".custom-target-icon-content-left-light", position: "left", className: "p-light-tooltip" }, { children: content() })), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-content-left-light pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Left" })] })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-column align-items-center" }, { children: [(0, jsx_runtime_1.jsx)(tooltip_1.Tooltip, Object.assign({ target: ".custom-target-icon-content-right-light", position: "right", className: "p-light-tooltip" }, { children: content() })), (0, jsx_runtime_1.jsx)("i", { className: "custom-target-icon-content-right-light pi pi-question-circle p-text-secondary p-overlay-badge", style: { fontSize: "2rem", cursor: "pointer" } }), (0, jsx_runtime_1.jsx)("span", { children: "Right" })] }))] }))] }))] }));
11
+ };
12
+ exports.TooltipComponent = TooltipComponent;
13
+ exports.default = exports.TooltipComponent;
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const treeDropdownSelect_1 = tslib_1.__importDefault(require("../../components/treeDropdownSelect/treeDropdownSelect"));
6
+ const CustomTreeDropdownSelect = () => {
7
+ const expandedKeys = ['1', '2', '3', '4', '5'];
8
+ const treeData = [
9
+ {
10
+ key: "0",
11
+ moduleName: 'Installation',
12
+ children: [
13
+ { key: "0-0", moduleName: 'Getting Started', url: 'https://reactjs.org/docs/getting-started.html' },
14
+ { key: "0-1", moduleName: 'Add React', url: 'https://reactjs.org/docs/add-react-to-a-website.html' },
15
+ { key: "0-2", moduleName: 'Create an App', url: 'https://reactjs.org/docs/create-a-new-react-app.html' },
16
+ { key: "0-3", moduleName: 'CDN Links', url: 'https://reactjs.org/docs/cdn-links.html' }
17
+ ]
18
+ },
19
+ {
20
+ key: "1",
21
+ moduleName: 'Main Concepts',
22
+ children: [
23
+ { key: "1-0", moduleName: 'Hello World', url: 'https://reactjs.org/docs/hello-world.html' },
24
+ { key: "1-1", moduleName: 'Introducing JSX', url: 'https://reactjs.org/docs/introducing-jsx.html' },
25
+ { key: "1-2", moduleName: 'Rendering Elements', url: 'https://reactjs.org/docs/rendering-elements.html' },
26
+ { key: "1-3", moduleName: 'Components and Props', url: 'https://reactjs.org/docs/components-and-props.html' },
27
+ { key: "1-4", moduleName: 'State and LifeCycle', url: 'https://reactjs.org/docs/state-and-lifecycle.html' },
28
+ { key: "1-5", moduleName: 'Handling Events', url: 'https://reactjs.org/docs/handling-events.html' }
29
+ ]
30
+ }
31
+ ];
32
+ return ((0, jsx_runtime_1.jsx)(treeDropdownSelect_1.default, { displayLabelName: "moduleName", treeData: treeData, expandedKeys: expandedKeys }));
33
+ };
34
+ exports.default = CustomTreeDropdownSelect;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ import "@ag-grid-community/styles/ag-grid.css";
2
+ import "@ag-grid-community/styles/ag-theme-quartz.css";
3
+ declare const DragAndDropFeatureTesting: () => import("react/jsx-runtime").JSX.Element;
4
+ export default DragAndDropFeatureTesting;
@@ -0,0 +1,4 @@
1
+ import "@ag-grid-community/styles/ag-grid.css";
2
+ import "@ag-grid-community/styles/ag-theme-quartz.css";
3
+ declare const GridRowGroupingSSRM: () => import("react/jsx-runtime").JSX.Element;
4
+ export default GridRowGroupingSSRM;
@@ -0,0 +1,9 @@
1
+ export declare const getAllData: (text: string) => Promise<unknown>;
2
+ export declare const getNormalData: () => Promise<unknown>;
3
+ export declare const dummyData: {
4
+ id: number;
5
+ employeeName: string;
6
+ jobTitle: string;
7
+ employmentType: string;
8
+ group: boolean;
9
+ }[];
@@ -0,0 +1,2 @@
1
+ declare const AgGridPage: () => import("react/jsx-runtime").JSX.Element;
2
+ export default AgGridPage;
@@ -0,0 +1,2 @@
1
+ declare function BulkAction(): import("react/jsx-runtime").JSX.Element;
2
+ export default BulkAction;
@@ -0,0 +1,4 @@
1
+ import "@ag-grid-community/styles/ag-grid.css";
2
+ import "@ag-grid-community/styles/ag-theme-quartz.css";
3
+ declare const GridComponent: () => import("react/jsx-runtime").JSX.Element;
4
+ export default GridComponent;
@@ -0,0 +1,2 @@
1
+ declare const Templates: React.FC<any>;
2
+ export default Templates;
@@ -0,0 +1,2 @@
1
+ declare const DataTableComponent: () => import("react/jsx-runtime").JSX.Element;
2
+ export default DataTableComponent;
@@ -0,0 +1,7 @@
1
+ export declare function FakeServer(allData: any, groupFields: any): {
2
+ getData: (request: any) => {
3
+ success: boolean;
4
+ rows: any;
5
+ lastRow: any;
6
+ };
7
+ };
@@ -0,0 +1,2 @@
1
+ declare function IdCell(data: any): import("react/jsx-runtime").JSX.Element;
2
+ export default IdCell;
@@ -0,0 +1,12 @@
1
+ export interface IOlympicData {
2
+ athlete: string;
3
+ age: number;
4
+ country: string;
5
+ year: number;
6
+ date: string;
7
+ sport: string;
8
+ gold: number;
9
+ silver: number;
10
+ bronze: number;
11
+ total: number;
12
+ }
@@ -0,0 +1,2 @@
1
+ declare const avatar: () => import("react/jsx-runtime").JSX.Element;
2
+ export default avatar;
@@ -0,0 +1,3 @@
1
+ import "./badge.scss";
2
+ declare const BadgeComponent: () => import("react/jsx-runtime").JSX.Element;
3
+ export default BadgeComponent;
@@ -0,0 +1,2 @@
1
+ declare const BreadCrumbComponent: () => import("react/jsx-runtime").JSX.Element;
2
+ export default BreadCrumbComponent;
@@ -0,0 +1,2 @@
1
+ declare const ButtonComponent: () => JSX.Element;
2
+ export default ButtonComponent;
@@ -0,0 +1,2 @@
1
+ declare const ButtonGroupComponent: () => JSX.Element;
2
+ export default ButtonGroupComponent;
@@ -0,0 +1,2 @@
1
+ declare const ChartsComponent: () => import("react/jsx-runtime").JSX.Element;
2
+ export default ChartsComponent;
@@ -0,0 +1,2 @@
1
+ declare const CheckboxComponent: () => import("react/jsx-runtime").JSX.Element;
2
+ export default CheckboxComponent;
@@ -0,0 +1,3 @@
1
+ import "./checkbox-group-component.scss";
2
+ declare const CheckboxGroupComponent: () => import("react/jsx-runtime").JSX.Element;
3
+ export default CheckboxGroupComponent;
@@ -0,0 +1,2 @@
1
+ declare const ColorPickerComponent: () => import("react/jsx-runtime").JSX.Element;
2
+ export default ColorPickerComponent;
@@ -0,0 +1,2 @@
1
+ declare const ContentDividersComponent: () => import("react/jsx-runtime").JSX.Element;
2
+ export default ContentDividersComponent;
@@ -0,0 +1,2 @@
1
+ declare const CustomColorPickerPage: () => import("react/jsx-runtime").JSX.Element;
2
+ export default CustomColorPickerPage;
@@ -0,0 +1,2 @@
1
+ declare const CustomMultiSelect: () => import("react/jsx-runtime").JSX.Element;
2
+ export default CustomMultiSelect;
@@ -0,0 +1,2 @@
1
+ declare const DatePickerComponent: () => import("react/jsx-runtime").JSX.Element;
2
+ export default DatePickerComponent;
@@ -0,0 +1,2 @@
1
+ declare const DropdownComponent: () => JSX.Element;
2
+ export default DropdownComponent;