@topconsultnpm/sdkui-react-beta 6.11.46 → 6.11.47
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.
|
@@ -17,12 +17,13 @@ export declare class FormulaDescriptor {
|
|
|
17
17
|
metadataDataTypeDest?: MetadataDataTypes;
|
|
18
18
|
tid?: number;
|
|
19
19
|
}
|
|
20
|
-
|
|
20
|
+
declare const TMFormulaEditor: React.FunctionComponent<ITMApplyFormProps<FormulaDescriptor>>;
|
|
21
|
+
export default TMFormulaEditor;
|
|
21
22
|
export declare class FormulaHelper {
|
|
22
|
-
static TreeViewList(tid: number, systemMDs: MetadataDescriptor[], userMDs: MetadataDescriptor[], formulaTarget: FormulaTargets, dbBrand: DBBrands): any;
|
|
23
|
-
static jsonItems_LoadVariables(tid: number, formulaTarget: FormulaTargets, systemMDs: MetadataDescriptor[], userMDs: MetadataDescriptor[]): any;
|
|
24
|
-
static jsonItems_SystemMDs(tid: number, systemMDs: MetadataDescriptor[]): any;
|
|
25
|
-
static jsonItems_UserMDs(tid: number, userMDs: MetadataDescriptor[]): any;
|
|
23
|
+
static TreeViewList(tid: number, systemMDs: MetadataDescriptor[] | undefined, userMDs: MetadataDescriptor[] | undefined, formulaTarget: FormulaTargets, dbBrand: DBBrands): any;
|
|
24
|
+
static jsonItems_LoadVariables(tid: number, formulaTarget: FormulaTargets, systemMDs: MetadataDescriptor[] | undefined, userMDs: MetadataDescriptor[] | undefined): any;
|
|
25
|
+
static jsonItems_SystemMDs(tid: number, systemMDs: MetadataDescriptor[] | undefined): any;
|
|
26
|
+
static jsonItems_UserMDs(tid: number, userMDs: MetadataDescriptor[] | undefined): any;
|
|
26
27
|
static jsonItems_SystemVariables(formulaTarget: FormulaTargets): any;
|
|
27
28
|
static jsonItems_LoadInstructions(dbBrand: DBBrands): any;
|
|
28
29
|
static jsonItems_LoadFunctions(dbBrand: DBBrands, formulaTarget: FormulaTargets): any;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { useRef, useState } from 'react';
|
|
1
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useCallback, useRef, useState } from 'react';
|
|
3
3
|
import { ValidationItem, SDK_Globals, MetadataDataTypes, DBBrands, ResultTypes } from '@topconsultnpm/sdk-ts-beta';
|
|
4
4
|
import { TreeView } from 'devextreme-react';
|
|
5
|
-
import {
|
|
5
|
+
import { IconActivityLog, IconAtSign, IconDcmtTypeSys, IconFunction, IconMetadata, IconMetadata_Numeric, IconMetadata_Text, IconNotification, IconPencil, IconSettings, SDKUI_Localizator } from '../../helper';
|
|
6
6
|
import { TMColors, FontSize } from '../../utils/theme';
|
|
7
7
|
import { StyledDivHorizontal } from '../base/Styled';
|
|
8
8
|
import ShowAlert from '../base/TMAlert';
|
|
@@ -25,14 +25,39 @@ export var FormulaTargets;
|
|
|
25
25
|
FormulaTargets[FormulaTargets["PDFCommandAddText"] = 4] = "PDFCommandAddText";
|
|
26
26
|
FormulaTargets[FormulaTargets["BatchUpdate"] = 5] = "BatchUpdate";
|
|
27
27
|
})(FormulaTargets || (FormulaTargets = {}));
|
|
28
|
+
var FormulaIconTypes;
|
|
29
|
+
(function (FormulaIconTypes) {
|
|
30
|
+
FormulaIconTypes[FormulaIconTypes["Instructions"] = 0] = "Instructions";
|
|
31
|
+
FormulaIconTypes[FormulaIconTypes["Function"] = 1] = "Function";
|
|
32
|
+
FormulaIconTypes[FormulaIconTypes["Variable"] = 2] = "Variable";
|
|
33
|
+
FormulaIconTypes[FormulaIconTypes["SystemVariables"] = 3] = "SystemVariables";
|
|
34
|
+
FormulaIconTypes[FormulaIconTypes["Metadata"] = 4] = "Metadata";
|
|
35
|
+
FormulaIconTypes[FormulaIconTypes["MetadataNumber"] = 5] = "MetadataNumber";
|
|
36
|
+
FormulaIconTypes[FormulaIconTypes["MetadataVarchar"] = 6] = "MetadataVarchar";
|
|
37
|
+
FormulaIconTypes[FormulaIconTypes["MetadataSystem"] = 7] = "MetadataSystem";
|
|
38
|
+
FormulaIconTypes[FormulaIconTypes["MetadataGeneric"] = 8] = "MetadataGeneric";
|
|
39
|
+
})(FormulaIconTypes || (FormulaIconTypes = {}));
|
|
28
40
|
export class FormulaDescriptor {
|
|
29
41
|
constructor() {
|
|
30
42
|
this.items = [];
|
|
31
43
|
}
|
|
32
44
|
}
|
|
33
|
-
|
|
45
|
+
const renderIcon = (iconType, tid, md) => {
|
|
46
|
+
switch (iconType) {
|
|
47
|
+
case FormulaIconTypes.Instructions: return _jsx(IconActivityLog, { fontSize: 14 });
|
|
48
|
+
case FormulaIconTypes.Function: return _jsx(IconFunction, { fontSize: 20 });
|
|
49
|
+
case FormulaIconTypes.Variable: return _jsx(IconAtSign, { fontSize: 16 });
|
|
50
|
+
case FormulaIconTypes.SystemVariables: return _jsx(IconSettings, {});
|
|
51
|
+
case FormulaIconTypes.Metadata: return _jsx(TMMetadataIcon, { tid: tid, md: md });
|
|
52
|
+
case FormulaIconTypes.MetadataGeneric: return _jsx(IconMetadata, {});
|
|
53
|
+
case FormulaIconTypes.MetadataNumber: return _jsx(IconMetadata_Numeric, {});
|
|
54
|
+
case FormulaIconTypes.MetadataVarchar: return _jsx(IconMetadata_Text, {});
|
|
55
|
+
case FormulaIconTypes.MetadataSystem: return _jsx(IconDcmtTypeSys, {});
|
|
56
|
+
default: return _jsx(_Fragment, {});
|
|
57
|
+
}
|
|
58
|
+
};
|
|
59
|
+
const TMFormulaEditor = (props) => {
|
|
34
60
|
const [validationItems, setValidationItems] = useState([]);
|
|
35
|
-
// const { formData, setFormData, formDataOrig, validationItems, setValidationItems, exception, applyData } = useOrchApplyForm<FormulaDescriptor>({ type: Descriptors.Formula }, props.formMode, props.inputData, props.onApplied)
|
|
36
61
|
const { formData, setFormData, formDataOrig, exception, applyData } = useApplyForm(props.formMode, props.inputData, () => new FormulaDescriptor(), props.onApplied);
|
|
37
62
|
// const [code, setCode] = useState(`function add(a, b) {\n return a + b;\n}` );
|
|
38
63
|
const textAreaRef = useRef(null);
|
|
@@ -94,56 +119,39 @@ export const TMFormulaEditor = (props) => {
|
|
|
94
119
|
TMExceptionBoxManager.show({ exception: e });
|
|
95
120
|
}
|
|
96
121
|
};
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
return (_jsxs("div", { children: [item.icon, _jsx("span", { style: { verticalAlign: 'middle', color: TMColors.primary, marginLeft: '5px' }, children: _jsx(IconPencil, { onClick: () => { insertText(item.text); } }) })] }));
|
|
105
|
-
else
|
|
106
|
-
return (_jsxs(StyledDivHorizontal, { children: [item.icon, _jsx("span", { style: { verticalAlign: 'middle' }, children: item.text }), _jsx("span", { style: { verticalAlign: 'middle', color: TMColors.primary, marginLeft: '5px' }, children: _jsx(IconPencil, { onClick: () => { insertText(item.text); } }) })] }));
|
|
107
|
-
}
|
|
108
|
-
else {
|
|
109
|
-
if (item.tid == undefined)
|
|
110
|
-
return (_jsx("div", { children: item.icon }));
|
|
111
|
-
else
|
|
112
|
-
return (_jsxs("div", { children: [item.icon, _jsx("span", { style: { verticalAlign: 'middle' }, children: item.text })] }));
|
|
113
|
-
}
|
|
114
|
-
} }) }) }), _jsx(TMLayoutItem, { children: _jsxs(TMLayoutContainer, { direction: 'vertical', children: [_jsx(TMLayoutItem, { children: _jsx(TMCard, { scrollX: true, children: _jsx("textarea", { ref: textAreaRef, spellCheck: false, value: formData.expression, onChange: (e) => {
|
|
122
|
+
const renderTreeViewItem = useCallback((item) => {
|
|
123
|
+
return (_jsxs(StyledDivHorizontal, { style: { display: 'flex', gap: '5px' }, children: [renderIcon(item.icon, item.tid, item.md), _jsx("span", { style: { verticalAlign: 'middle' }, children: item.text }), !item.hasItems && _jsx("span", { style: { verticalAlign: 'middle', color: TMColors.primary }, children: _jsx(IconPencil, { onClick: () => { insertText(item.text); } }) })] }));
|
|
124
|
+
}, []);
|
|
125
|
+
return (_jsx(TMApplyForm, { isModal: props.isModal, formMode: props.formMode, isModified: formData.expression !== formDataOrig.expression, exception: exception, validationItems: validationItems, title: SDKUI_Localizator.Formula, hasNavigation: false, height: '600px', width: '800px', onApply: () => applyData(), onClose: props.onClose, onUndo: () => {
|
|
126
|
+
setFormData(formDataOrig);
|
|
127
|
+
setValidationItems([]);
|
|
128
|
+
}, customToolbarElements: _jsx(TMButton, { caption: SDKUI_Localizator.EvaluateResult, onClick: () => { formulaValidator_BackEnd(); }, btnStyle: 'toolbar', icon: _jsx(IconNotification, {}) }), children: _jsxs(TMSplitterLayout, { direction: 'vertical', showSeparator: true, separatorSize: 2, start: ['50%', '50%'], min: ['0px', '0px'], children: [_jsx(TMLayoutItem, { children: _jsx(TMCard, { children: _jsx(TreeView, { id: "treeview", items: props.inputData?.items, width: '100%', scrollDirection: 'vertical', itemRender: renderTreeViewItem }) }) }), _jsx(TMLayoutItem, { children: _jsxs(TMLayoutContainer, { direction: 'vertical', children: [_jsx(TMLayoutItem, { children: _jsx(TMCard, { scrollX: true, children: _jsx("textarea", { ref: textAreaRef, spellCheck: false, value: formData?.expression ?? '', onChange: (e) => {
|
|
115
129
|
setFormData({ ...formData, expression: e.target.value });
|
|
116
|
-
if (e.target.value != formDataOrig
|
|
130
|
+
if (e.target.value != formDataOrig?.expression)
|
|
117
131
|
insertValidationItem();
|
|
118
132
|
else
|
|
119
133
|
setValidationItems([]);
|
|
120
134
|
}, style: { border: 'none', color: TMColors.text_normal, fontSize: FontSize.defaultFontSize, padding: '5px', width: '100%', height: 'calc(100% - 4px)' } }) }) }), _jsx(TMLayoutItem, { height: "max-content", children: _jsx(TMVilViewer, { vil: validationItems }) })] }) })] }) }));
|
|
121
135
|
};
|
|
122
|
-
|
|
123
|
-
const functionIcon = () => _jsx(IconDetailDcmts, {});
|
|
124
|
-
const variableIcon = () => _jsx(IconAtSign, {});
|
|
125
|
-
const systemVariablesIcon = () => _jsx(IconSettings, {});
|
|
126
|
-
const metadataIcon = () => _jsx(IconMetadata, {});
|
|
127
|
-
const metadataNumberIcon = () => _jsx(IconMetadata_Numeric, {});
|
|
128
|
-
const metadataVarcharIcon = () => _jsx(IconMetadata_Text, {});
|
|
136
|
+
export default TMFormulaEditor;
|
|
129
137
|
export class FormulaHelper {
|
|
130
138
|
static TreeViewList(tid, systemMDs, userMDs, formulaTarget, dbBrand) {
|
|
131
139
|
let list = [{
|
|
132
140
|
id: '1',
|
|
133
141
|
text: SDKUI_Localizator.FormulaEditor_Variables,
|
|
134
|
-
icon:
|
|
142
|
+
icon: FormulaIconTypes.Variable,
|
|
135
143
|
hasItems: true,
|
|
136
144
|
items: this.jsonItems_LoadVariables(tid, formulaTarget, systemMDs, userMDs),
|
|
137
145
|
}, {
|
|
138
146
|
id: '2',
|
|
139
147
|
text: SDKUI_Localizator.FormulaEditor_Instructions,
|
|
140
|
-
icon:
|
|
148
|
+
icon: FormulaIconTypes.Instructions,
|
|
141
149
|
hasItems: true,
|
|
142
150
|
items: this.jsonItems_LoadInstructions(dbBrand),
|
|
143
151
|
}, {
|
|
144
152
|
id: '3',
|
|
145
153
|
text: SDKUI_Localizator.FormulaEditor_Functions,
|
|
146
|
-
icon:
|
|
154
|
+
icon: FormulaIconTypes.Function,
|
|
147
155
|
hasItems: true,
|
|
148
156
|
items: this.jsonItems_LoadFunctions(dbBrand, formulaTarget),
|
|
149
157
|
}];
|
|
@@ -153,7 +161,7 @@ export class FormulaHelper {
|
|
|
153
161
|
let items = [{
|
|
154
162
|
id: '1_1',
|
|
155
163
|
text: SDKUI_Localizator.MetadataSystem,
|
|
156
|
-
icon:
|
|
164
|
+
icon: FormulaIconTypes.MetadataSystem,
|
|
157
165
|
hasItems: true,
|
|
158
166
|
items: this.jsonItems_SystemMDs(tid, systemMDs),
|
|
159
167
|
}];
|
|
@@ -161,7 +169,7 @@ export class FormulaHelper {
|
|
|
161
169
|
items.push({
|
|
162
170
|
id: '1_2',
|
|
163
171
|
text: SDKUI_Localizator.MetadataUsers,
|
|
164
|
-
icon:
|
|
172
|
+
icon: FormulaIconTypes.MetadataGeneric,
|
|
165
173
|
hasItems: true,
|
|
166
174
|
items: this.jsonItems_UserMDs(tid, userMDs),
|
|
167
175
|
});
|
|
@@ -170,7 +178,7 @@ export class FormulaHelper {
|
|
|
170
178
|
items.push({
|
|
171
179
|
id: '1_3',
|
|
172
180
|
text: SDKUI_Localizator.VariablesSystem,
|
|
173
|
-
icon:
|
|
181
|
+
icon: FormulaIconTypes.SystemVariables,
|
|
174
182
|
hasItems: true,
|
|
175
183
|
items: this.jsonItems_SystemVariables(formulaTarget),
|
|
176
184
|
});
|
|
@@ -178,13 +186,13 @@ export class FormulaHelper {
|
|
|
178
186
|
return items;
|
|
179
187
|
}
|
|
180
188
|
static jsonItems_SystemMDs(tid, systemMDs) {
|
|
181
|
-
const items = systemMDs
|
|
189
|
+
const items = systemMDs?.map((md, index) => {
|
|
182
190
|
return {
|
|
183
191
|
id: '1_1_' + index,
|
|
184
192
|
text: "{@" + md.name + "}",
|
|
185
193
|
tid: tid,
|
|
186
194
|
md: md,
|
|
187
|
-
icon:
|
|
195
|
+
icon: FormulaIconTypes.Metadata,
|
|
188
196
|
expands: false,
|
|
189
197
|
hasItems: false
|
|
190
198
|
};
|
|
@@ -192,13 +200,13 @@ export class FormulaHelper {
|
|
|
192
200
|
return items;
|
|
193
201
|
}
|
|
194
202
|
static jsonItems_UserMDs(tid, userMDs) {
|
|
195
|
-
const items = userMDs
|
|
203
|
+
const items = userMDs?.map((md, index) => {
|
|
196
204
|
return {
|
|
197
205
|
id: '1_2_' + index,
|
|
198
206
|
text: "{@" + md.name + "}",
|
|
199
207
|
tid: tid,
|
|
200
208
|
md: md,
|
|
201
|
-
icon:
|
|
209
|
+
icon: FormulaIconTypes.Metadata,
|
|
202
210
|
expands: false,
|
|
203
211
|
hasItems: false
|
|
204
212
|
};
|
|
@@ -209,14 +217,14 @@ export class FormulaHelper {
|
|
|
209
217
|
let items = [{
|
|
210
218
|
id: '1_3_1',
|
|
211
219
|
text: '{@UserID}',
|
|
212
|
-
icon:
|
|
220
|
+
icon: FormulaIconTypes.MetadataNumber,
|
|
213
221
|
tid: -1,
|
|
214
222
|
expanded: false,
|
|
215
223
|
hasItems: false,
|
|
216
224
|
}, {
|
|
217
225
|
id: '1_3_2',
|
|
218
226
|
text: '{@UserName}',
|
|
219
|
-
icon:
|
|
227
|
+
icon: FormulaIconTypes.MetadataVarchar,
|
|
220
228
|
tid: -1,
|
|
221
229
|
expanded: false,
|
|
222
230
|
hasItems: false,
|
|
@@ -225,28 +233,28 @@ export class FormulaHelper {
|
|
|
225
233
|
items.push({
|
|
226
234
|
id: '1_3_3',
|
|
227
235
|
text: '{@GUID}',
|
|
228
|
-
icon:
|
|
236
|
+
icon: FormulaIconTypes.MetadataVarchar,
|
|
229
237
|
tid: -1,
|
|
230
238
|
expanded: false,
|
|
231
239
|
hasItems: false,
|
|
232
240
|
}, {
|
|
233
241
|
id: '1_3_4',
|
|
234
242
|
text: '{@ContentType}',
|
|
235
|
-
icon:
|
|
243
|
+
icon: FormulaIconTypes.MetadataVarchar,
|
|
236
244
|
tid: -1,
|
|
237
245
|
expanded: false,
|
|
238
246
|
hasItems: false,
|
|
239
247
|
}, {
|
|
240
248
|
id: '1_3_5',
|
|
241
249
|
text: '{@FileName}',
|
|
242
|
-
icon:
|
|
250
|
+
icon: FormulaIconTypes.MetadataVarchar,
|
|
243
251
|
tid: -1,
|
|
244
252
|
expanded: false,
|
|
245
253
|
hasItems: false,
|
|
246
254
|
}, {
|
|
247
255
|
id: '1_3_6',
|
|
248
256
|
text: '{@FileName_Original}',
|
|
249
|
-
icon:
|
|
257
|
+
icon: FormulaIconTypes.MetadataVarchar,
|
|
250
258
|
tid: -1,
|
|
251
259
|
expanded: false,
|
|
252
260
|
hasItems: false,
|
|
@@ -256,21 +264,21 @@ export class FormulaHelper {
|
|
|
256
264
|
items.push({
|
|
257
265
|
id: '1_3_3',
|
|
258
266
|
text: '{@FileName}',
|
|
259
|
-
icon:
|
|
267
|
+
icon: FormulaIconTypes.MetadataVarchar,
|
|
260
268
|
tid: -1,
|
|
261
269
|
expanded: false,
|
|
262
270
|
hasItems: false,
|
|
263
271
|
}, {
|
|
264
272
|
id: '1_3_4',
|
|
265
273
|
text: '{@FileName_Original}',
|
|
266
|
-
icon:
|
|
274
|
+
icon: FormulaIconTypes.MetadataVarchar,
|
|
267
275
|
tid: -1,
|
|
268
276
|
expanded: false,
|
|
269
277
|
hasItems: false,
|
|
270
278
|
}, {
|
|
271
279
|
id: '1_3_5',
|
|
272
280
|
text: '{@ProcessRunID}',
|
|
273
|
-
icon:
|
|
281
|
+
icon: FormulaIconTypes.MetadataNumber,
|
|
274
282
|
tid: -1,
|
|
275
283
|
expanded: false,
|
|
276
284
|
hasItems: false,
|
|
@@ -286,14 +294,14 @@ export class FormulaHelper {
|
|
|
286
294
|
[{
|
|
287
295
|
id: '1_4_1',
|
|
288
296
|
text: 'CASE WHEN THEN ELSE END',
|
|
289
|
-
icon:
|
|
297
|
+
icon: FormulaIconTypes.Instructions,
|
|
290
298
|
tid: -1,
|
|
291
299
|
expanded: false,
|
|
292
300
|
hasItems: false,
|
|
293
301
|
}, {
|
|
294
302
|
id: '1_4_2',
|
|
295
303
|
text: 'IS NULL',
|
|
296
|
-
icon:
|
|
304
|
+
icon: FormulaIconTypes.Instructions,
|
|
297
305
|
tid: -1,
|
|
298
306
|
expanded: false,
|
|
299
307
|
hasItems: false,
|
|
@@ -304,28 +312,28 @@ export class FormulaHelper {
|
|
|
304
312
|
[{
|
|
305
313
|
id: '1_4_1',
|
|
306
314
|
text: 'CASE WHEN THEN ELSE END',
|
|
307
|
-
icon:
|
|
315
|
+
icon: FormulaIconTypes.Instructions,
|
|
308
316
|
tid: -1,
|
|
309
317
|
expanded: false,
|
|
310
318
|
hasItems: false,
|
|
311
319
|
}, {
|
|
312
320
|
id: '1_4_2',
|
|
313
321
|
text: 'IS NULL',
|
|
314
|
-
icon:
|
|
322
|
+
icon: FormulaIconTypes.Instructions,
|
|
315
323
|
tid: -1,
|
|
316
324
|
expanded: false,
|
|
317
325
|
hasItems: false,
|
|
318
326
|
}, {
|
|
319
327
|
id: '1_4_3',
|
|
320
328
|
text: 'GREATEST',
|
|
321
|
-
icon:
|
|
329
|
+
icon: FormulaIconTypes.Instructions,
|
|
322
330
|
tid: -1,
|
|
323
331
|
expanded: false,
|
|
324
332
|
hasItems: false,
|
|
325
333
|
}, {
|
|
326
334
|
id: '1_4_4',
|
|
327
335
|
text: 'LEAST',
|
|
328
|
-
icon:
|
|
336
|
+
icon: FormulaIconTypes.Instructions,
|
|
329
337
|
tid: -1,
|
|
330
338
|
expanded: false,
|
|
331
339
|
hasItems: false,
|
|
@@ -338,19 +346,19 @@ export class FormulaHelper {
|
|
|
338
346
|
let items = [{
|
|
339
347
|
id: '3_1',
|
|
340
348
|
text: SDKUI_Localizator.FormulaEditor_FunctionConvert,
|
|
341
|
-
icon:
|
|
349
|
+
icon: FormulaIconTypes.Function,
|
|
342
350
|
hasItems: true,
|
|
343
351
|
items: this.jsonItems_LoadFunctions_Convert(dbBrand),
|
|
344
352
|
}, {
|
|
345
353
|
id: '3_2',
|
|
346
354
|
text: SDKUI_Localizator.FormulaEditor_FunctionString,
|
|
347
|
-
icon:
|
|
355
|
+
icon: FormulaIconTypes.Function,
|
|
348
356
|
hasItems: true,
|
|
349
357
|
items: this.jsonItems_LoadFunctions_String(dbBrand),
|
|
350
358
|
}, {
|
|
351
359
|
id: '3_3',
|
|
352
360
|
text: SDKUI_Localizator.FormulaEditor_FunctionDate,
|
|
353
|
-
icon:
|
|
361
|
+
icon: FormulaIconTypes.Function,
|
|
354
362
|
hasItems: true,
|
|
355
363
|
items: this.jsonItems_LoadFunctions_Date(dbBrand, formulaTarget),
|
|
356
364
|
}];
|
|
@@ -358,7 +366,7 @@ export class FormulaHelper {
|
|
|
358
366
|
items.push({
|
|
359
367
|
id: '3_4',
|
|
360
368
|
text: SDKUI_Localizator.FormulaEditor_FunctionLink,
|
|
361
|
-
icon:
|
|
369
|
+
icon: FormulaIconTypes.Function,
|
|
362
370
|
hasItems: true,
|
|
363
371
|
items: this.jsonItems_LoadFunctions_Link(),
|
|
364
372
|
});
|
|
@@ -373,25 +381,25 @@ export class FormulaHelper {
|
|
|
373
381
|
[{
|
|
374
382
|
id: '3_1_1',
|
|
375
383
|
text: 'CONVERT',
|
|
376
|
-
icon:
|
|
384
|
+
icon: FormulaIconTypes.Function,
|
|
377
385
|
expanded: false,
|
|
378
386
|
hasItems: false,
|
|
379
387
|
}, {
|
|
380
388
|
id: '3_1_2',
|
|
381
389
|
text: 'CONVERT(nvarchar)',
|
|
382
|
-
icon:
|
|
390
|
+
icon: FormulaIconTypes.Function,
|
|
383
391
|
expanded: false,
|
|
384
392
|
hasItems: false,
|
|
385
393
|
}, {
|
|
386
394
|
id: '3_1_3',
|
|
387
395
|
text: 'CONVERT(int)',
|
|
388
|
-
icon:
|
|
396
|
+
icon: FormulaIconTypes.Function,
|
|
389
397
|
expanded: false,
|
|
390
398
|
hasItems: false,
|
|
391
399
|
}, {
|
|
392
400
|
id: '3_1_4',
|
|
393
401
|
text: 'ISNULL',
|
|
394
|
-
icon:
|
|
402
|
+
icon: FormulaIconTypes.Function,
|
|
395
403
|
expanded: false,
|
|
396
404
|
hasItems: false,
|
|
397
405
|
}];
|
|
@@ -401,25 +409,25 @@ export class FormulaHelper {
|
|
|
401
409
|
[{
|
|
402
410
|
id: '3_1_1',
|
|
403
411
|
text: 'CAST',
|
|
404
|
-
icon:
|
|
412
|
+
icon: FormulaIconTypes.Function,
|
|
405
413
|
expanded: false,
|
|
406
414
|
hasItems: false,
|
|
407
415
|
}, {
|
|
408
416
|
id: '3_1_2',
|
|
409
417
|
text: 'CAST(NVARCHAR2)',
|
|
410
|
-
icon:
|
|
418
|
+
icon: FormulaIconTypes.Function,
|
|
411
419
|
expanded: false,
|
|
412
420
|
hasItems: false,
|
|
413
421
|
}, {
|
|
414
422
|
id: '3_1_3',
|
|
415
423
|
text: 'CAST(NUMERIC)',
|
|
416
|
-
icon:
|
|
424
|
+
icon: FormulaIconTypes.Function,
|
|
417
425
|
expanded: false,
|
|
418
426
|
hasItems: false,
|
|
419
427
|
}, {
|
|
420
428
|
id: '3_1_4',
|
|
421
429
|
text: 'NVL',
|
|
422
|
-
icon:
|
|
430
|
+
icon: FormulaIconTypes.Function,
|
|
423
431
|
expanded: false,
|
|
424
432
|
hasItems: false,
|
|
425
433
|
}];
|
|
@@ -435,73 +443,73 @@ export class FormulaHelper {
|
|
|
435
443
|
[{
|
|
436
444
|
id: '3_2_1',
|
|
437
445
|
text: 'LEN',
|
|
438
|
-
icon:
|
|
446
|
+
icon: FormulaIconTypes.Function,
|
|
439
447
|
expanded: false,
|
|
440
448
|
hasItems: false,
|
|
441
449
|
}, {
|
|
442
450
|
id: '3_2_2',
|
|
443
451
|
text: 'LEFT',
|
|
444
|
-
icon:
|
|
452
|
+
icon: FormulaIconTypes.Function,
|
|
445
453
|
expanded: false,
|
|
446
454
|
hasItems: false,
|
|
447
455
|
}, {
|
|
448
456
|
id: '3_2_3',
|
|
449
457
|
text: 'LOWER',
|
|
450
|
-
icon:
|
|
458
|
+
icon: FormulaIconTypes.Function,
|
|
451
459
|
expanded: false,
|
|
452
460
|
hasItems: false,
|
|
453
461
|
}, {
|
|
454
462
|
id: '3_2_4',
|
|
455
463
|
text: 'LTRIM',
|
|
456
|
-
icon:
|
|
464
|
+
icon: FormulaIconTypes.Function,
|
|
457
465
|
expanded: false,
|
|
458
466
|
hasItems: false,
|
|
459
467
|
}, {
|
|
460
468
|
id: '3_2_5',
|
|
461
469
|
text: 'REPLACE',
|
|
462
|
-
icon:
|
|
470
|
+
icon: FormulaIconTypes.Function,
|
|
463
471
|
expanded: false,
|
|
464
472
|
hasItems: false,
|
|
465
473
|
}, {
|
|
466
474
|
id: '3_2_6',
|
|
467
475
|
text: 'REPLICATE',
|
|
468
|
-
icon:
|
|
476
|
+
icon: FormulaIconTypes.Function,
|
|
469
477
|
expanded: false,
|
|
470
478
|
hasItems: false,
|
|
471
479
|
}, {
|
|
472
480
|
id: '3_2_7',
|
|
473
481
|
text: 'RIGHT',
|
|
474
|
-
icon:
|
|
482
|
+
icon: FormulaIconTypes.Function,
|
|
475
483
|
expanded: false,
|
|
476
484
|
hasItems: false,
|
|
477
485
|
}, {
|
|
478
486
|
id: '3_2_8',
|
|
479
487
|
text: 'RTRIM',
|
|
480
|
-
icon:
|
|
488
|
+
icon: FormulaIconTypes.Function,
|
|
481
489
|
expanded: false,
|
|
482
490
|
hasItems: false,
|
|
483
491
|
}, {
|
|
484
492
|
id: '3_2_9',
|
|
485
493
|
text: 'SPACE',
|
|
486
|
-
icon:
|
|
494
|
+
icon: FormulaIconTypes.Function,
|
|
487
495
|
expanded: false,
|
|
488
496
|
hasItems: false,
|
|
489
497
|
}, {
|
|
490
498
|
id: '3_2_10',
|
|
491
499
|
text: 'STUFF',
|
|
492
|
-
icon:
|
|
500
|
+
icon: FormulaIconTypes.Function,
|
|
493
501
|
expanded: false,
|
|
494
502
|
hasItems: false,
|
|
495
503
|
}, {
|
|
496
504
|
id: '3_2_11',
|
|
497
505
|
text: 'SUBSTRING',
|
|
498
|
-
icon:
|
|
506
|
+
icon: FormulaIconTypes.Function,
|
|
499
507
|
expanded: false,
|
|
500
508
|
hasItems: false,
|
|
501
509
|
}, {
|
|
502
510
|
id: '3_2_12',
|
|
503
511
|
text: 'UPPER',
|
|
504
|
-
icon:
|
|
512
|
+
icon: FormulaIconTypes.Function,
|
|
505
513
|
expanded: false,
|
|
506
514
|
hasItems: false,
|
|
507
515
|
}];
|
|
@@ -511,37 +519,37 @@ export class FormulaHelper {
|
|
|
511
519
|
[{
|
|
512
520
|
id: '3_2_1',
|
|
513
521
|
text: 'LENGTH',
|
|
514
|
-
icon:
|
|
522
|
+
icon: FormulaIconTypes.Function,
|
|
515
523
|
expanded: false,
|
|
516
524
|
hasItems: false,
|
|
517
525
|
}, {
|
|
518
526
|
id: '3_2_2',
|
|
519
527
|
text: 'LOWER',
|
|
520
|
-
icon:
|
|
528
|
+
icon: FormulaIconTypes.Function,
|
|
521
529
|
expanded: false,
|
|
522
530
|
hasItems: false,
|
|
523
531
|
}, {
|
|
524
532
|
id: '3_2_3',
|
|
525
533
|
text: 'TRIM',
|
|
526
|
-
icon:
|
|
534
|
+
icon: FormulaIconTypes.Function,
|
|
527
535
|
expanded: false,
|
|
528
536
|
hasItems: false,
|
|
529
537
|
}, {
|
|
530
538
|
id: '3_2_4',
|
|
531
539
|
text: 'REPLACE',
|
|
532
|
-
icon:
|
|
540
|
+
icon: FormulaIconTypes.Function,
|
|
533
541
|
expanded: false,
|
|
534
542
|
hasItems: false,
|
|
535
543
|
}, {
|
|
536
544
|
id: '3_2_5',
|
|
537
545
|
text: 'SUBSTR',
|
|
538
|
-
icon:
|
|
546
|
+
icon: FormulaIconTypes.Function,
|
|
539
547
|
expanded: false,
|
|
540
548
|
hasItems: false,
|
|
541
549
|
}, {
|
|
542
550
|
id: '3_2_6',
|
|
543
551
|
text: 'UPPER',
|
|
544
|
-
icon:
|
|
552
|
+
icon: FormulaIconTypes.Function,
|
|
545
553
|
expanded: false,
|
|
546
554
|
hasItems: false,
|
|
547
555
|
}];
|
|
@@ -557,19 +565,19 @@ export class FormulaHelper {
|
|
|
557
565
|
[{
|
|
558
566
|
id: '3_3_1',
|
|
559
567
|
text: 'DATEDIFF ( year )',
|
|
560
|
-
icon:
|
|
568
|
+
icon: FormulaIconTypes.Function,
|
|
561
569
|
expanded: false,
|
|
562
570
|
hasItems: false,
|
|
563
571
|
}, {
|
|
564
572
|
id: '3_3_2',
|
|
565
573
|
text: 'DATEDIFF ( day )',
|
|
566
|
-
icon:
|
|
574
|
+
icon: FormulaIconTypes.Function,
|
|
567
575
|
expanded: false,
|
|
568
576
|
hasItems: false,
|
|
569
577
|
}, {
|
|
570
578
|
id: '3_3_3',
|
|
571
579
|
text: 'DATEADD',
|
|
572
|
-
icon:
|
|
580
|
+
icon: FormulaIconTypes.Function,
|
|
573
581
|
expanded: false,
|
|
574
582
|
hasItems: false,
|
|
575
583
|
}];
|
|
@@ -577,25 +585,25 @@ export class FormulaHelper {
|
|
|
577
585
|
items.push({
|
|
578
586
|
id: '3_3_4',
|
|
579
587
|
text: 'GETDATE()',
|
|
580
|
-
icon:
|
|
588
|
+
icon: FormulaIconTypes.Function,
|
|
581
589
|
expanded: false,
|
|
582
590
|
hasItems: false,
|
|
583
591
|
}, {
|
|
584
592
|
id: '3_3_5',
|
|
585
593
|
text: 'DAY(GETDATE())',
|
|
586
|
-
icon:
|
|
594
|
+
icon: FormulaIconTypes.Function,
|
|
587
595
|
expanded: false,
|
|
588
596
|
hasItems: false,
|
|
589
597
|
}, {
|
|
590
598
|
id: '3_3_6',
|
|
591
599
|
text: 'MONTH(GETDATE())',
|
|
592
|
-
icon:
|
|
600
|
+
icon: FormulaIconTypes.Function,
|
|
593
601
|
expanded: false,
|
|
594
602
|
hasItems: false,
|
|
595
603
|
}, {
|
|
596
604
|
id: '3_3_7',
|
|
597
605
|
text: 'YEAR(GETDATE())',
|
|
598
|
-
icon:
|
|
606
|
+
icon: FormulaIconTypes.Function,
|
|
599
607
|
expanded: false,
|
|
600
608
|
hasItems: false,
|
|
601
609
|
});
|
|
@@ -606,19 +614,19 @@ export class FormulaHelper {
|
|
|
606
614
|
[{
|
|
607
615
|
id: '3_3_1',
|
|
608
616
|
text: 'TO_DATE',
|
|
609
|
-
icon:
|
|
617
|
+
icon: FormulaIconTypes.Function,
|
|
610
618
|
expanded: false,
|
|
611
619
|
hasItems: false,
|
|
612
620
|
}, {
|
|
613
621
|
id: '3_3_2',
|
|
614
622
|
text: 'LAST_DAY',
|
|
615
|
-
icon:
|
|
623
|
+
icon: FormulaIconTypes.Function,
|
|
616
624
|
expanded: false,
|
|
617
625
|
hasItems: false,
|
|
618
626
|
}, {
|
|
619
627
|
id: '3_3_3',
|
|
620
628
|
text: 'ADD_MONTHS',
|
|
621
|
-
icon:
|
|
629
|
+
icon: FormulaIconTypes.Function,
|
|
622
630
|
expanded: false,
|
|
623
631
|
hasItems: false,
|
|
624
632
|
}];
|
|
@@ -626,25 +634,25 @@ export class FormulaHelper {
|
|
|
626
634
|
items.push({
|
|
627
635
|
id: '3_3_4',
|
|
628
636
|
text: 'SYSDATE',
|
|
629
|
-
icon:
|
|
637
|
+
icon: FormulaIconTypes.Function,
|
|
630
638
|
expanded: false,
|
|
631
639
|
hasItems: false,
|
|
632
640
|
}, {
|
|
633
641
|
id: '3_3_5',
|
|
634
642
|
text: 'TO_CHAR(SYSDATE, "DD")',
|
|
635
|
-
icon:
|
|
643
|
+
icon: FormulaIconTypes.Function,
|
|
636
644
|
expanded: false,
|
|
637
645
|
hasItems: false,
|
|
638
646
|
}, {
|
|
639
647
|
id: '3_3_6',
|
|
640
648
|
text: 'TO_CHAR(SYSDATE, "MM")',
|
|
641
|
-
icon:
|
|
649
|
+
icon: FormulaIconTypes.Function,
|
|
642
650
|
expanded: false,
|
|
643
651
|
hasItems: false,
|
|
644
652
|
}, {
|
|
645
653
|
id: '3_3_7',
|
|
646
654
|
text: 'TO_CHAR(SYSDATE, "YYYY")',
|
|
647
|
-
icon:
|
|
655
|
+
icon: FormulaIconTypes.Function,
|
|
648
656
|
expanded: false,
|
|
649
657
|
hasItems: false,
|
|
650
658
|
});
|
|
@@ -657,19 +665,19 @@ export class FormulaHelper {
|
|
|
657
665
|
let items = [{
|
|
658
666
|
id: '3_4_1',
|
|
659
667
|
text: `TM_GetViewLink (${SDKUI_Localizator.FormulaEditor_Function_TM_GetViewLink_WithLogin})`,
|
|
660
|
-
icon:
|
|
668
|
+
icon: FormulaIconTypes.Function,
|
|
661
669
|
expanded: false,
|
|
662
670
|
hasItems: false,
|
|
663
671
|
}, {
|
|
664
672
|
id: '3_4_2',
|
|
665
673
|
text: `TM_GetViewLink (${SDKUI_Localizator.FormulaEditor_Function_TM_GetViewLink_WithoutLogin})`,
|
|
666
|
-
icon:
|
|
674
|
+
icon: FormulaIconTypes.Function,
|
|
667
675
|
expanded: false,
|
|
668
676
|
hasItems: false,
|
|
669
677
|
}, {
|
|
670
678
|
id: '3_4_3',
|
|
671
679
|
text: `TM_GetViewLink (${SDKUI_Localizator.FormulaEditor_Function_TM_GetViewLink_WithDate})`,
|
|
672
|
-
icon:
|
|
680
|
+
icon: FormulaIconTypes.Function,
|
|
673
681
|
expanded: false,
|
|
674
682
|
hasItems: false,
|
|
675
683
|
}];
|
package/lib/helper/TMIcons.d.ts
CHANGED
|
@@ -224,5 +224,6 @@ export declare function IconDetailDcmts(props: Readonly<React.SVGProps<SVGSVGEle
|
|
|
224
224
|
export declare function IconMultipleSelection(props: Readonly<React.SVGProps<SVGSVGElement>>): import("react/jsx-runtime").JSX.Element;
|
|
225
225
|
export declare function IconChevronRight(props: Readonly<React.SVGProps<SVGSVGElement>>): import("react/jsx-runtime").JSX.Element;
|
|
226
226
|
export declare function IconChevronDown(props: Readonly<React.SVGProps<SVGSVGElement>>): import("react/jsx-runtime").JSX.Element;
|
|
227
|
+
export declare function IconFunction(props: Readonly<React.SVGProps<SVGSVGElement>>): import("react/jsx-runtime").JSX.Element;
|
|
227
228
|
declare const IconRecentlyViewed: (props: React.SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
228
229
|
export { Icon123, IconABC, IconAccessPoint, IconAddressBook, IconSignCert, IconServerService, IconActivity, IconActivityLog, IconAdd, IconAddCircleOutline, IconAll, IconApply, IconApplyAndClose, IconArchive, IconArchiveDoc, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowUp, IconAtSign, IconAttachment, IconAutoConfig, IconBackward, IconBasket, IconBoard, IconBoxArchiveIn, IconBxInfo, IconBxLock, IconCalendar, IconCloseCircle, IconCloseOutline, IconCloud, IconCircleInfo, IconClear, IconColumns, IconCommand, IconCopy, IconCount, IconCrown, IconDashboard, IconDcmtType, IconDcmtTypeOnlyMetadata, IconDcmtTypeSys, IconDelete, IconDetails, IconDown, IconDownload, IconDotsVerticalCircleOutline, IconDuplicate, IconEdit, IconEqual, IconEqualNot, IconEraser, IconExpandRight, IconExport, IconFastBackward, IconFoldeAdd, IconFolderSearch, IconFolderZip, IconFastForward, IconFastSearch, IconFileDots, IconFilter, IconForceStop, IconForward, IconFreeze, IconFreeSearch, IconGreaterThan, IconGreaterThanOrEqual, IconHistory, IconImport, IconTag, IconInfo, IconInsertAbove, IconInsertBelow, IconHeart, IconHide, IconLanguage, IconLeft, IconLessThan, IconLessThanOrEqual, IconLock, IconLockClosed, IconLogin, IconLink, IconLogout, IconMail, IconMapping, IconMaximize, IconMinimize, IconMic, IconMenuHorizontal, IconMenuKebab, IconMenuVertical, IconMetadata, IconMetadata_Computed, IconMetadata_DataList, IconMetadata_Date, IconMetadata_DynamicDataList, IconMetadata_Numerator, IconMetadata_Numeric, IconMetadata_Special, IconMetadata_Text, IconMetadata_User, IconMonitor, IconOpenInNew, IconNotification, IconPassword, IconPencil, IconPlatform, IconPlay, IconPreview, IconPrinter, IconProcess, IconProgressAbortRequested, IconProgressCompleted, IconProgressNotCompleted, IconProgressReady, IconProgressRunning, IconProgressStarted, IconRefresh, IconReset, IconRecentlyViewed, IconRight, IconSave, IconSearch, IconSelected, IconSettings, IconShow, IconSort, IconStop, IconStopwatch, IconSuccess, IconAlarmPlus, IconHourglass, IconNone, IconNotStarted, IconProgress, IconSuccessCirlce, IconSuitcase, IconSupport, IconUndo, IconUnFreeze, IconUp, IconUpdate, IconUpload, IconUser, IconUserProfile, IconVisible, IconWarning, IconWeb, IconWifi, IconWindowMaximize, IconWindowMinimize, IconWorkflow, IconWorkspace, IconUserGroup, IconUserLevelMember, IconUserLevelAdministrator, IconUserLevelSystemAdministrator, IconUserLevelAutonomousAdministrator, IconDraggabledots, IconRelation, IconEasy, IconSum, IconDisk, IconDataList, IconPalette, IconFormatPageSplit, IconPaste, IconFileSearch, IconStar, IconStarRemove, IconSearchCheck, IconLightningFill, IconArrowUnsorted, IconArrowSortedUp, IconArrowSortedDown, IconConvertFilePdf, IconExportTo, IconSharedDcmt, IconShare, IconBatchUpdate, IconCheckFile, IconStatistics, IconSubstFile, IconAdvanced, IconSync, IconSavedQuery, IconSignature, IconRecursiveOps, IconCheckIn, IconTree, IconGrid, IconList, IconFolder, IconFolderOpen, IconFactory, IconTest, IconCheck, IconUncheck, IconSortAsc, IconSortDesc, IconSortAscLetters, IconSortDescLetters, IconSortAscNumbers, IconSortDescNumbers, IconSortAscClock, IconSortDescClock, IconLayerGroup, IconBell, IconBellCheck, IconBellOutline, IconBellCheckOutline, IconEnvelopeOpenText, IconChangeUser, IconUserCheck, IconRelationManyToMany, IconRelationOneToMany, IconUserExpired, IconKey };
|
package/lib/helper/TMIcons.js
CHANGED
|
@@ -535,5 +535,8 @@ export function IconChevronRight(props) {
|
|
|
535
535
|
export function IconChevronDown(props) {
|
|
536
536
|
return (_jsx("svg", { fontSize: props?.fontSize ? props.fontSize : FONTSIZE, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", ...props, children: _jsx("path", { fill: "currentColor", d: "M12 15.5a1 1 0 0 1-.71-.29l-4-4a1 1 0 1 1 1.42-1.42L12 13.1l3.3-3.18a1 1 0 1 1 1.38 1.44l-4 3.86a1 1 0 0 1-.68.28" }) }));
|
|
537
537
|
}
|
|
538
|
+
export function IconFunction(props) {
|
|
539
|
+
return (_jsx("svg", { fontSize: props?.fontSize ? props.fontSize : FONTSIZE, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", width: "1em", height: "1em", ...props, children: _jsxs("g", { fill: "none", children: [" ", _jsxs("g", { clipPath: "url(#gravityUiFunction0)", children: [" ", _jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M4.312 4.29a.764.764 0 0 1 1.103-.62a.75.75 0 1 0 .67-1.34a2.264 2.264 0 0 0-3.268 1.836L2.706 5.5H1.75a.75.75 0 0 0 0 1.5h.83l-.392 4.71a.764.764 0 0 1-1.103.62a.75.75 0 0 0-.67 1.34a2.264 2.264 0 0 0 3.268-1.836L4.086 7H5.25a.75.75 0 1 0 0-1.5H4.21zm6.014 2.23a.75.75 0 0 0-1.152.96l.85 1.02l-.85 1.02a.75.75 0 0 0 1.152.96L11 9.672l.674.808a.75.75 0 0 0 1.152-.96l-.85-1.02l.85-1.02a.75.75 0 0 0-1.152-.96L11 7.328zM8.02 4.55a.75.75 0 0 1 .43.969l-.145.378a7.25 7.25 0 0 0 0 5.205l.145.378a.75.75 0 0 1-1.4.539l-.145-.378a8.75 8.75 0 0 1 0-6.282l.145-.378a.75.75 0 0 1 .97-.431m5.961 0a.75.75 0 0 1 .97.43l.145.379a8.75 8.75 0 0 1 0 6.282l-.146.378a.75.75 0 1 1-1.4-.538l.146-.379a7.25 7.25 0 0 0 0-5.205l-.146-.378a.75.75 0 0 1 .431-.97", clipRule: "evenodd" }), " "] }), " ", _jsxs("defs", { children: [" ", _jsxs("clipPath", { id: "gravityUiFunction0", children: [" ", _jsx("path", { fill: "currentColor", d: "M0 0h16v16H0z" }), " "] }), " "] }), " "] }) }));
|
|
540
|
+
}
|
|
538
541
|
const IconRecentlyViewed = (props) => { return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 32 32", width: "1em", height: "1em", ...props, children: [" ", _jsx("path", { fill: "currentColor", d: "M20.59 22L15 16.41V7h2v8.58l5 5.01z" }), " ", _jsx("path", { fill: "currentColor", d: "M16 2A13.94 13.94 0 0 0 6 6.23V2H4v8h8V8H7.08A12 12 0 1 1 4 16H2A14 14 0 1 0 16 2" }), " "] })); };
|
|
539
542
|
export { Icon123, IconABC, IconAccessPoint, IconAddressBook, IconSignCert, IconServerService, IconActivity, IconActivityLog, IconAdd, IconAddCircleOutline, IconAll, IconApply, IconApplyAndClose, IconArchive, IconArchiveDoc, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowUp, IconAtSign, IconAttachment, IconAutoConfig, IconBackward, IconBasket, IconBoard, IconBoxArchiveIn, IconBxInfo, IconBxLock, IconCalendar, IconCloseCircle, IconCloseOutline, IconCloud, IconCircleInfo, IconClear, IconColumns, IconCommand, IconCopy, IconCount, IconCrown, IconDashboard, IconDcmtType, IconDcmtTypeOnlyMetadata, IconDcmtTypeSys, IconDelete, IconDetails, IconDown, IconDownload, IconDotsVerticalCircleOutline, IconDuplicate, IconEdit, IconEqual, IconEqualNot, IconEraser, IconExpandRight, IconExport, IconFastBackward, IconFoldeAdd, IconFolderSearch, IconFolderZip, IconFastForward, IconFastSearch, IconFileDots, IconFilter, IconForceStop, IconForward, IconFreeze, IconFreeSearch, IconGreaterThan, IconGreaterThanOrEqual, IconHistory, IconImport, IconTag, IconInfo, IconInsertAbove, IconInsertBelow, IconHeart, IconHide, IconLanguage, IconLeft, IconLessThan, IconLessThanOrEqual, IconLock, IconLockClosed, IconLogin, IconLink, IconLogout, IconMail, IconMapping, IconMaximize, IconMinimize, IconMic, IconMenuHorizontal, IconMenuKebab, IconMenuVertical, IconMetadata, IconMetadata_Computed, IconMetadata_DataList, IconMetadata_Date, IconMetadata_DynamicDataList, IconMetadata_Numerator, IconMetadata_Numeric, IconMetadata_Special, IconMetadata_Text, IconMetadata_User, IconMonitor, IconOpenInNew, IconNotification, IconPassword, IconPencil, IconPlatform, IconPlay, IconPreview, IconPrinter, IconProcess, IconProgressAbortRequested, IconProgressCompleted, IconProgressNotCompleted, IconProgressReady, IconProgressRunning, IconProgressStarted, IconRefresh, IconReset, IconRecentlyViewed, IconRight, IconSave, IconSearch, IconSelected, IconSettings, IconShow, IconSort, IconStop, IconStopwatch, IconSuccess, IconAlarmPlus, IconHourglass, IconNone, IconNotStarted, IconProgress, IconSuccessCirlce, IconSuitcase, IconSupport, IconUndo, IconUnFreeze, IconUp, IconUpdate, IconUpload, IconUser, IconUserProfile, IconVisible, IconWarning, IconWeb, IconWifi, IconWindowMaximize, IconWindowMinimize, IconWorkflow, IconWorkspace, IconUserGroup, IconUserLevelMember, IconUserLevelAdministrator, IconUserLevelSystemAdministrator, IconUserLevelAutonomousAdministrator, IconDraggabledots, IconRelation, IconEasy, IconSum, IconDisk, IconDataList, IconPalette, IconFormatPageSplit, IconPaste, IconFileSearch, IconStar, IconStarRemove, IconSearchCheck, IconLightningFill, IconArrowUnsorted, IconArrowSortedUp, IconArrowSortedDown, IconConvertFilePdf, IconExportTo, IconSharedDcmt, IconShare, IconBatchUpdate, IconCheckFile, IconStatistics, IconSubstFile, IconAdvanced, IconSync, IconSavedQuery, IconSignature, IconRecursiveOps, IconCheckIn, IconTree, IconGrid, IconList, IconFolder, IconFolderOpen, IconFactory, IconTest, IconCheck, IconUncheck, IconSortAsc, IconSortDesc, IconSortAscLetters, IconSortDescLetters, IconSortAscNumbers, IconSortDescNumbers, IconSortAscClock, IconSortDescClock, IconLayerGroup, IconBell, IconBellCheck, IconBellOutline, IconBellCheckOutline, IconEnvelopeOpenText, IconChangeUser, IconUserCheck, IconRelationManyToMany, IconRelationOneToMany, IconUserExpired, IconKey };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
|
-
import { Icon123, IconABC, IconAccessPoint, IconActivity, IconActivityLog, IconAdd, IconAddCircleOutline, IconAddressBook, IconAdvanced, IconAlarmPlus, IconAll, IconApply, IconApplyAndClose, IconArchive, IconArchiveDoc, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowSortedDown, IconArrowSortedUp, IconArrowUnsorted, IconArrowUp, IconAtSign, IconAttachment, IconAutoConfig, IconBackward, IconBasket, IconBatchUpdate, IconBell, IconBellCheck, IconBellCheckOutline, IconBellOutline, IconBoard, IconBoxArchiveIn, IconBxInfo, IconBxLock, IconCalendar, IconChangeUser, IconCheck, IconCheckIn, IconChevronDown, IconChevronRight, IconCircleInfo, IconClear, IconClearButton, IconCloseCircle, IconCloseOutline, IconCloud, IconColumns, IconCommand, IconConvertFilePdf, IconCopy, IconCount, IconCrown, IconDashboard, IconDataList, IconDcmtType, IconDcmtTypeOnlyMetadata, IconDcmtTypeSys, IconDelete, IconDetailDcmts, IconDetails, IconDisk, IconDotsVerticalCircleOutline, IconDown, IconDownload, IconDraggabledots, IconDuplicate, IconEasy, IconEdit, IconEnvelopeOpenText, IconEqual, IconEqualNot, IconEraser, IconExpandRight, IconExport, IconExportTo, IconFactory, IconFastBackward, IconFastForward, IconFastSearch, IconFileDots, IconFileSearch, IconFilter, IconFoldeAdd, IconFolder, IconFolderOpen, IconFolderSearch, IconFolderZip, IconForceStop, IconForward, IconFreeSearch, IconFreeze, IconGreaterThan, IconGreaterThanOrEqual, IconGrid, IconHeart, IconHide, IconHistory, IconHourglass, IconImport, IconInfo, IconInsertAbove, IconInsertBelow, IconKey, IconLanguage, IconLeft, IconLessThan, IconLessThanOrEqual, IconLightningFill, IconLink, IconList, IconLock, IconLockClosed, IconLogin, IconLogout, IconMail, IconMapping, IconMaximize, IconMenuHorizontal, IconMenuKebab, IconMenuVertical, IconMetadata, IconMetadata_Computed, IconMetadata_DataList, IconMetadata_Date, IconMetadata_DynamicDataList, IconMetadata_Numerator, IconMetadata_Numeric, IconMetadata_Special, IconMetadata_Text, IconMetadata_User, IconMic, IconMinimize, IconMonitor, IconMultipleSelection, IconNone, IconNotification, IconNotStarted, IconOpenInNew, IconPalette, IconPassword, IconPaste, IconPencil, IconPlatform, IconPlay, IconPreview, IconPrinter, IconProcess, IconProgress, IconProgressAbortRequested, IconProgressCompleted, IconProgressNotCompleted, IconProgressReady, IconProgressRunning, IconProgressStarted, IconRecentlyViewed, IconRecursiveOps, IconRefresh, IconRelation, IconRelationManyToMany, IconRelationOneToMany, IconReset, IconRight, IconSave, IconSavedQuery, IconSearch, IconSearchCheck, IconSelected, IconServerService, IconSettings, IconShare, IconSharedDcmt, IconShow, IconSignature, IconSignCert, IconSort, IconSortAsc, IconSortAscClock, IconSortAscLetters, IconSortAscNumbers, IconSortDesc, IconSortDescClock, IconSortDescLetters, IconSortDescNumbers, IconStar, IconStarRemove, IconStatistics, IconStop, IconStopwatch, IconSubstFile, IconSuccess, IconSuccessCirlce, IconSuitcase, IconSum, IconSupport, IconSync, IconTag, IconTest, IconTree, IconUndo, IconUnFreeze, IconUp, IconUpdate, IconUpload, IconUser, IconUserCheck, IconUserExpired, IconUserGroup, IconUserLevelAdministrator, IconUserLevelAutonomousAdministrator, IconUserLevelMember, IconUserLevelSystemAdministrator, IconUserProfile, IconVisible, IconWarning, IconWeb, IconWifi, IconWindowMaximize, IconWindowMinimize, IconWorkflow, IconWorkspace } from "../helper";
|
|
2
|
+
import { Icon123, IconABC, IconAccessPoint, IconActivity, IconActivityLog, IconAdd, IconAddCircleOutline, IconAddressBook, IconAdvanced, IconAlarmPlus, IconAll, IconApply, IconApplyAndClose, IconArchive, IconArchiveDoc, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowSortedDown, IconArrowSortedUp, IconArrowUnsorted, IconArrowUp, IconAtSign, IconAttachment, IconAutoConfig, IconBackward, IconBasket, IconBatchUpdate, IconBell, IconBellCheck, IconBellCheckOutline, IconBellOutline, IconBoard, IconBoxArchiveIn, IconBxInfo, IconBxLock, IconCalendar, IconChangeUser, IconCheck, IconCheckIn, IconChevronDown, IconChevronRight, IconCircleInfo, IconClear, IconClearButton, IconCloseCircle, IconCloseOutline, IconCloud, IconColumns, IconCommand, IconConvertFilePdf, IconCopy, IconCount, IconCrown, IconDashboard, IconDataList, IconDcmtType, IconDcmtTypeOnlyMetadata, IconDcmtTypeSys, IconDelete, IconDetailDcmts, IconDetails, IconDisk, IconDotsVerticalCircleOutline, IconDown, IconDownload, IconDraggabledots, IconDuplicate, IconEasy, IconEdit, IconEnvelopeOpenText, IconEqual, IconEqualNot, IconEraser, IconExpandRight, IconExport, IconExportTo, IconFactory, IconFastBackward, IconFastForward, IconFastSearch, IconFileDots, IconFileSearch, IconFilter, IconFoldeAdd, IconFolder, IconFolderOpen, IconFolderSearch, IconFolderZip, IconForceStop, IconForward, IconFreeSearch, IconFreeze, IconFunction, IconGreaterThan, IconGreaterThanOrEqual, IconGrid, IconHeart, IconHide, IconHistory, IconHourglass, IconImport, IconInfo, IconInsertAbove, IconInsertBelow, IconKey, IconLanguage, IconLeft, IconLessThan, IconLessThanOrEqual, IconLightningFill, IconLink, IconList, IconLock, IconLockClosed, IconLogin, IconLogout, IconMail, IconMapping, IconMaximize, IconMenuHorizontal, IconMenuKebab, IconMenuVertical, IconMetadata, IconMetadata_Computed, IconMetadata_DataList, IconMetadata_Date, IconMetadata_DynamicDataList, IconMetadata_Numerator, IconMetadata_Numeric, IconMetadata_Special, IconMetadata_Text, IconMetadata_User, IconMic, IconMinimize, IconMonitor, IconMultipleSelection, IconNone, IconNotification, IconNotStarted, IconOpenInNew, IconPalette, IconPassword, IconPaste, IconPencil, IconPlatform, IconPlay, IconPreview, IconPrinter, IconProcess, IconProgress, IconProgressAbortRequested, IconProgressCompleted, IconProgressNotCompleted, IconProgressReady, IconProgressRunning, IconProgressStarted, IconRecentlyViewed, IconRecursiveOps, IconRefresh, IconRelation, IconRelationManyToMany, IconRelationOneToMany, IconReset, IconRight, IconSave, IconSavedQuery, IconSearch, IconSearchCheck, IconSelected, IconServerService, IconSettings, IconShare, IconSharedDcmt, IconShow, IconSignature, IconSignCert, IconSort, IconSortAsc, IconSortAscClock, IconSortAscLetters, IconSortAscNumbers, IconSortDesc, IconSortDescClock, IconSortDescLetters, IconSortDescNumbers, IconStar, IconStarRemove, IconStatistics, IconStop, IconStopwatch, IconSubstFile, IconSuccess, IconSuccessCirlce, IconSuitcase, IconSum, IconSupport, IconSync, IconTag, IconTest, IconTree, IconUndo, IconUnFreeze, IconUp, IconUpdate, IconUpload, IconUser, IconUserCheck, IconUserExpired, IconUserGroup, IconUserLevelAdministrator, IconUserLevelAutonomousAdministrator, IconUserLevelMember, IconUserLevelSystemAdministrator, IconUserProfile, IconVisible, IconWarning, IconWeb, IconWifi, IconWindowMaximize, IconWindowMinimize, IconWorkflow, IconWorkspace } from "../helper";
|
|
3
3
|
export default {
|
|
4
4
|
title: "Icons/TMIcons",
|
|
5
5
|
component: IconAccessPoint,
|
|
@@ -8,6 +8,6 @@ export default {
|
|
|
8
8
|
color: { control: "color" },
|
|
9
9
|
},
|
|
10
10
|
};
|
|
11
|
-
const TMIconsTemplate = (args) => (_jsxs(_Fragment, { children: [_jsxs("div", { style: { display: "flex", gap: "20px" }, children: [_jsx("span", { title: "IconAccessPoint", children: _jsx(IconAccessPoint, { ...args }) }), _jsx("span", { title: "IconCloseOutline", children: _jsx(IconCloseOutline, { ...args }) }), _jsx("span", { title: "IconArchive", children: _jsx(IconArchive, { ...args }) }), _jsx("span", { title: "IconLogin", children: _jsx(IconLogin, { ...args }) }), _jsx("span", { title: "IconUser", children: _jsx(IconUser, { ...args }) }), _jsx("span", { title: "IconPassword", children: _jsx(IconPassword, { ...args }) }), _jsx("span", { title: "IconLanguage", children: _jsx(IconLanguage, { ...args }) }), _jsx("span", { title: "IconSuitcase", children: _jsx(IconSuitcase, { ...args }) }), _jsx("span", { title: "IconProcess", children: _jsx(IconProcess, { ...args }) }), _jsx("span", { title: "IconSupport", children: _jsx(IconSupport, { ...args }) }), _jsx("span", { title: "IconMonitor", children: _jsx(IconMonitor, { ...args }) }), _jsx("span", { title: "IconDashboard", children: _jsx(IconDashboard, { ...args }) }), _jsx("span", { title: "IconAdd", children: _jsx(IconAdd, { ...args }) }), _jsx("span", { title: "IconDelete", children: _jsx(IconDelete, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconDuplicate", children: _jsx(IconDuplicate, { ...args }) }), _jsx("span", { title: "IconRefresh", children: _jsx(IconRefresh, { ...args }) }), _jsx("span", { title: "IconExpandRight", children: _jsx(IconExpandRight, { ...args }) }), _jsx("span", { title: "IconColumns", children: _jsx(IconColumns, { ...args }) }), _jsx("span", { title: "IconSave", children: _jsx(IconSave, { ...args }) }), _jsx("span", { title: "IconArrowDown", children: _jsx(IconArrowDown, { ...args }) }), _jsx("span", { title: "IconArrowUp", children: _jsx(IconArrowUp, { ...args }) }), _jsx("span", { title: "IconUndo", children: _jsx(IconUndo, { ...args }) }), _jsx("span", { title: "IconShow", children: _jsx(IconShow, { ...args }) }), _jsx("span", { title: "IconHide", children: _jsx(IconHide, { ...args }) }), _jsx("span", { title: "IconPreview", children: _jsx(IconPreview, { ...args }) }), _jsx("span", { title: "IconCount", children: _jsx(IconCount, { ...args }) }), _jsx("span", { title: "IconPencil", children: _jsx(IconPencil, { ...args }) }), _jsx("span", { title: "IconEraser", children: _jsx(IconEraser, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconAll", children: _jsx(IconAll, { ...args }) }), _jsx("span", { title: "IconSelected", children: _jsx(IconSelected, { ...args }) }), _jsx("span", { title: "IconVisible", children: _jsx(IconVisible, { ...args }) }), _jsx("span", { title: "IconCloseCircle", children: _jsx(IconCloseCircle, { ...args }) }), _jsx("span", { title: "IconApplyAndClose", children: _jsx(IconApplyAndClose, { ...args }) }), _jsx("span", { title: "IconApply", children: _jsx(IconApply, { ...args }) }), _jsx("span", { title: "IconSettings", children: _jsx(IconSettings, { ...args }) }), _jsx("span", { title: "IconMaximize", children: _jsx(IconMaximize, { ...args }) }), _jsx("span", { title: "IconMinimize", children: _jsx(IconMinimize, { ...args }) }), _jsx("span", { title: "IconNotification", children: _jsx(IconNotification, { ...args }) }), _jsx("span", { title: "IconHeart", children: _jsx(IconHeart, { ...args }) }), _jsx("span", { title: "IconUserProfile", children: _jsx(IconUserProfile, { ...args }) }), _jsx("span", { title: "IconWorkflow", children: _jsx(IconWorkflow, { ...args }) }), _jsx("span", { title: "IconBackward", children: _jsx(IconBackward, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconForward", children: _jsx(IconForward, { ...args }) }), _jsx("span", { title: "IconFastBackward", children: _jsx(IconFastBackward, { ...args }) }), _jsx("span", { title: "IconFastForward", children: _jsx(IconFastForward, { ...args }) }), _jsx("span", { title: "IconLogout", children: _jsx(IconLogout, { ...args }) }), _jsx("span", { title: "IconWifi", children: _jsx(IconWifi, { ...args }) }), _jsx("span", { title: "IconMenuHorizontal", children: _jsx(IconMenuHorizontal, { ...args }) }), _jsx("span", { title: "IconMenuVertical", children: _jsx(IconMenuVertical, { ...args }) }), _jsx("span", { title: "IconOpenInNew", children: _jsx(IconOpenInNew, { ...args }) }), _jsx("span", { title: "IconMail", children: _jsx(IconMail, { ...args }) }), _jsx("span", { title: "IconCopy", children: _jsx(IconCopy, { ...args }) }), _jsx("span", { title: "IconSearch", children: _jsx(IconSearch, { ...args }) }), _jsx("span", { title: "IconMenuKebab", children: _jsx(IconMenuKebab, { ...args }) }), _jsx("span", { title: "IconDown", children: _jsx(IconDown, { ...args }) }), _jsx("span", { title: "IconUp", children: _jsx(IconUp, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconLeft", children: _jsx(IconLeft, { ...args }) }), _jsx("span", { title: "IconRight", children: _jsx(IconRight, { ...args }) }), _jsx("span", { title: "IconArrowLeft", children: _jsx(IconArrowLeft, { ...args }) }), _jsx("span", { title: "IconArrowRight", children: _jsx(IconArrowRight, { ...args }) }), _jsx("span", { title: "IconFileDots", children: _jsx(IconFileDots, { ...args }) }), _jsx("span", { title: "IconDownload", children: _jsx(IconDownload, { ...args }) }), _jsx("span", { title: "IconUpload", children: _jsx(IconUpload, { ...args }) }), _jsx("span", { title: "IconFolderSearch", children: _jsx(IconFolderSearch, { ...args }) }), _jsx("span", { title: "IconFoldeAdd", children: _jsx(IconFoldeAdd, { ...args }) }), _jsx("span", { title: "IconEqual", children: _jsx(IconEqual, { ...args }) }), _jsx("span", { title: "IconEqualNot", children: _jsx(IconEqualNot, { ...args }) }), _jsx("span", { title: "IconGreaterThan", children: _jsx(IconGreaterThan, { ...args }) }), _jsx("span", { title: "IconLessThan", children: _jsx(IconLessThan, { ...args }) }), _jsx("span", { title: "IconLessThanOrEqual", children: _jsx(IconLessThanOrEqual, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconGreaterThanOrEqual", children: _jsx(IconGreaterThanOrEqual, { ...args }) }), _jsx("span", { title: "IconSort", children: _jsx(IconSort, { ...args }) }), _jsx("span", { title: "IconPlatform", children: _jsx(IconPlatform, { ...args }) }), _jsx("span", { title: "Icon123", children: _jsx(Icon123, { ...args }) }), _jsx("span", { title: "IconABC", children: _jsx(IconABC, { ...args }) }), _jsx("span", { title: "IconCalendar", children: _jsx(IconCalendar, { ...args }) }), _jsx("span", { title: "IconAtSign", children: _jsx(IconAtSign, { ...args }) }), _jsx("span", { title: "IconEdit", children: _jsx(IconEdit, { ...args }) }), _jsx("span", { title: "IconWarning", children: _jsx(IconWarning, { ...args }) }), _jsx("span", { title: "IconInfo", children: _jsx(IconInfo, { ...args }) }), _jsx("span", { title: "IconSuccess", children: _jsx(IconSuccess, { ...args }) }), _jsx("span", { title: "IconAlarmPlus", children: _jsx(IconAlarmPlus, { ...args }) }), _jsx("span", { title: "IconHourglass", children: _jsx(IconHourglass, { ...args }) }), _jsx("span", { title: "IconNone", children: _jsx(IconNone, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconNotStarted", children: _jsx(IconNotStarted, { ...args }) }), _jsx("span", { title: "IconProgress", children: _jsx(IconProgress, { ...args }) }), _jsx("span", { title: "IconInsertAbove", children: _jsx(IconInsertAbove, { ...args }) }), _jsx("span", { title: "IconInsertBelow", children: _jsx(IconInsertBelow, { ...args }) }), _jsx("span", { title: "IconFilter", children: _jsx(IconFilter, { ...args }) }), _jsx("span", { title: "IconDcmtType", children: _jsx(IconDcmtType, { ...args }) }), _jsx("span", { title: "IconDcmtTypeOnlyMetadata", children: _jsx(IconDcmtTypeOnlyMetadata, { ...args }) }), _jsx("span", { title: "IconDcmtTypeSys", children: _jsx(IconDcmtTypeSys, { ...args }) }), _jsx("span", { title: "IconCloud", children: _jsx(IconCloud, { ...args }) }), _jsx("span", { title: "IconWeb", children: _jsx(IconWeb, { ...args }) }), _jsx("span", { title: "IconBxInfo", children: _jsx(IconBxInfo, { ...args }) }), _jsx("span", { title: "IconStop", children: _jsx(IconStop, { ...args }) }), _jsx("span", { title: "IconPlay", children: _jsx(IconPlay, { ...args }) }), _jsx("span", { title: "IconStopwatch", children: _jsx(IconStopwatch, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconUpdate", children: _jsx(IconUpdate, { ...args }) }), _jsx("span", { title: "IconSuccessCirlce", children: _jsx(IconSuccessCirlce, { ...args }) }), _jsx("span", { title: "IconCircleInfo", children: _jsx(IconCircleInfo, { ...args }) }), _jsx("span", { title: "IconDetails", children: _jsx(IconDetails, { ...args }) }), _jsx("span", { title: "IconFreeze", children: _jsx(IconFreeze, { ...args }) }), _jsx("span", { title: "IconUnFreeze", children: _jsx(IconUnFreeze, { ...args }) }), _jsx("span", { title: "IconProgressCompleted", children: _jsx(IconProgressCompleted, { ...args }) }), _jsx("span", { title: "IconProgressNotCompleted", children: _jsx(IconProgressNotCompleted, { ...args }) }), _jsx("span", { title: "IconProgressAbortRequested", children: _jsx(IconProgressAbortRequested, { ...args }) }), _jsx("span", { title: "IconProgressReady", children: _jsx(IconProgressReady, { ...args }) }), _jsx("span", { title: "IconProgressStarted", children: _jsx(IconProgressStarted, { ...args }) }), _jsx("span", { title: "IconProgressRunning", children: _jsx(IconProgressRunning, { ...args }) }), _jsx("span", { title: "IconUserLevelMember", children: _jsx(IconUserLevelMember, { ...args }) }), _jsx("span", { title: "IconUserLevelAdministrator", children: _jsx(IconUserLevelAdministrator, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconUserLevelSystemAdministrator", children: _jsx(IconUserLevelSystemAdministrator, { ...args }) }), _jsx("span", { title: "IconUserLevelAutonomousAdministrator", children: _jsx(IconUserLevelAutonomousAdministrator, { ...args }) }), _jsx("span", { title: "IconHistory", children: _jsx(IconHistory, { ...args }) }), _jsx("span", { title: "IconForceStop", children: _jsx(IconForceStop, { ...args }) }), _jsx("span", { title: "IconDraggabledots", children: _jsx(IconDraggabledots, { ...args }) }), _jsx("span", { title: "IconClear", children: _jsx(IconClear, { ...args }) }), _jsx("span", { title: "IconClearButton", children: _jsx(IconClearButton, { ...args }) }), _jsx("span", { title: "IconAddCircleOutline", children: _jsx(IconAddCircleOutline, { ...args }) }), _jsx("span", { title: "IconDotsVerticalCircleOutline", children: _jsx(IconDotsVerticalCircleOutline, { ...args }) }), _jsx("span", { title: "IconMapping", children: _jsx(IconMapping, { ...args }) }), _jsx("span", { title: "IconAutoConfig", children: _jsx(IconAutoConfig, { ...args }) }), _jsx("span", { title: "IconArchiveDoc", children: _jsx(IconArchiveDoc, { ...args }) }), _jsx("span", { title: "IconCommand", children: _jsx(IconCommand, { ...args }) }), _jsx("span", { title: "IconSum", children: _jsx(IconSum, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconDisk", children: _jsx(IconDisk, { ...args }) }), _jsx("span", { title: "IconDataList", children: _jsx(IconDataList, { ...args }) }), _jsx("span", { title: "IconWindowMaximize", children: _jsx(IconWindowMaximize, { ...args }) }), _jsx("span", { title: "IconWindowMinimize", children: _jsx(IconWindowMinimize, { ...args }) }), _jsx("span", { title: "IconReset", children: _jsx(IconReset, { ...args }) }), _jsx("span", { title: "IconExport", children: _jsx(IconExport, { ...args }) }), _jsx("span", { title: "IconImport", children: _jsx(IconImport, { ...args }) }), _jsx("span", { title: "IconPalette", children: _jsx(IconPalette, { ...args }) }), _jsx("span", { title: "IconFastSearch", children: _jsx(IconFastSearch, { ...args }) }), _jsx("span", { title: "IconUserGroup", children: _jsx(IconUserGroup, { ...args }) }), _jsx("span", { title: "IconBoard", children: _jsx(IconBoard, { ...args }) }), _jsx("span", { title: "IconActivity", children: _jsx(IconActivity, { ...args }) }), _jsx("span", { title: "IconWorkspace", children: _jsx(IconWorkspace, { ...args }) }), _jsx("span", { title: "IconAttachment", children: _jsx(IconAttachment, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconActivityLog", children: _jsx(IconActivityLog, { ...args }) }), _jsx("span", { title: "IconCrown", children: _jsx(IconCrown, { ...args }) }), _jsx("span", { title: "IconChangeUser", children: _jsx(IconChangeUser, { ...args }) }), _jsx("span", { title: "IconPaste", children: _jsx(IconPaste, { ...args }) }), _jsx("span", { title: "IconFileSearch", children: _jsx(IconFileSearch, { ...args }) }), _jsx("span", { title: "IconStar", children: _jsx(IconStar, { ...args }) }), _jsx("span", { title: "IconStarRemove", children: _jsx(IconStarRemove, { ...args }) }), _jsx("span", { title: "IconLightningFill", children: _jsx(IconLightningFill, { ...args }) }), _jsx("span", { title: "IconLink", children: _jsx(IconLink, { ...args }) }), _jsx("span", { title: "IconEasy", children: _jsx(IconEasy, { ...args }) }), _jsx("span", { title: "IconConvertFilePdf", children: _jsx(IconConvertFilePdf, { ...args }) }), _jsx("span", { title: "IconRelation", children: _jsx(IconRelation, { ...args }) }), _jsx("span", { title: "IconCheckIn", children: _jsx(IconCheckIn, { ...args }) }), _jsx("span", { title: "IconRecursiveOps", children: _jsx(IconRecursiveOps, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconSearchCheck", children: _jsx(IconSearchCheck, { ...args }) }), _jsx("span", { title: "IconSignature", children: _jsx(IconSignature, { ...args }) }), _jsx("span", { title: "IconSavedQuery", children: _jsx(IconSavedQuery, { ...args }) }), _jsx("span", { title: "IconSync", children: _jsx(IconSync, { ...args }) }), _jsx("span", { title: "IconAdvanced", children: _jsx(IconAdvanced, { ...args }) }), _jsx("span", { title: "IconSubstFile", children: _jsx(IconSubstFile, { ...args }) }), _jsx("span", { title: "IconBatchUpdate", children: _jsx(IconBatchUpdate, { ...args }) }), _jsx("span", { title: "IconShare", children: _jsx(IconShare, { ...args }) }), _jsx("span", { title: "IconSharedDcmt", children: _jsx(IconSharedDcmt, { ...args }) }), _jsx("span", { title: "IconExportTo", children: _jsx(IconExportTo, { ...args }) }), _jsx("span", { title: "IconArrowSortedDown", children: _jsx(IconArrowSortedDown, { ...args }) }), _jsx("span", { title: "IconArrowSortedUp", children: _jsx(IconArrowSortedUp, { ...args }) }), _jsx("span", { title: "IconStatistics", children: _jsx(IconStatistics, { ...args }) }), _jsx("span", { title: "IconArrowUnsorted", children: _jsx(IconArrowUnsorted, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconPrinter", children: _jsx(IconPrinter, { ...args }) }), _jsx("span", { title: "IconFactory", children: _jsx(IconFactory, { ...args }) }), _jsx("span", { title: "IconTest", children: _jsx(IconTest, { ...args }) }), _jsx("span", { title: "IconCheck", children: _jsx(IconCheck, { ...args }) }), _jsx("span", { title: "IconSortAsc", children: _jsx(IconSortAsc, { ...args }) }), _jsx("span", { title: "IconSortDesc", children: _jsx(IconSortDesc, { ...args }) }), _jsx("span", { title: "IconSortAscLetters", children: _jsx(IconSortAscLetters, { ...args }) }), _jsx("span", { title: "IconSortDescLetters", children: _jsx(IconSortDescLetters, { ...args }) }), _jsx("span", { title: "IconSortAscNumbers", children: _jsx(IconSortAscNumbers, { ...args }) }), _jsx("span", { title: "IconSortDescNumbers", children: _jsx(IconSortDescNumbers, { ...args }) }), _jsx("span", { title: "IconSortAscClock", children: _jsx(IconSortAscClock, { ...args }) }), _jsx("span", { title: "IconSortDescClock", children: _jsx(IconSortDescClock, { ...args }) }), _jsx("span", { title: "IconTree", children: _jsx(IconTree, { ...args }) }), _jsx("span", { title: "IconGrid", children: _jsx(IconGrid, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconList", children: _jsx(IconList, { ...args }) }), _jsx("span", { title: "IconLock", children: _jsx(IconLock, { ...args }) }), _jsx("span", { title: "IconLockClosed", children: _jsx(IconLockClosed, { ...args }) }), _jsx("span", { title: "IconBxLock", children: _jsx(IconBxLock, { ...args }) }), _jsx("span", { title: "IconFolder", children: _jsx(IconFolder, { ...args }) }), _jsx("span", { title: "IconFolderOpen", children: _jsx(IconFolderOpen, { ...args }) }), _jsx("span", { title: "IconTag", children: _jsx(IconTag, { ...args }) }), _jsx("span", { title: "IconFolderZip", children: _jsx(IconFolderZip, { ...args }) }), _jsx("span", { title: "IconBell", children: _jsx(IconBell, { ...args }) }), _jsx("span", { title: "IconBellCheck", children: _jsx(IconBellCheck, { ...args }) }), _jsx("span", { title: "IconBellOutline", children: _jsx(IconBellOutline, { ...args }) }), _jsx("span", { title: "IconBellCheckOutline", children: _jsx(IconBellCheckOutline, { ...args }) }), _jsx("span", { title: "IconEnvelopeOpenText", children: _jsx(IconEnvelopeOpenText, { ...args }) }), _jsx("span", { title: "IconMetadata_Computed", children: _jsx(IconMetadata_Computed, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconMetadata_Text", children: _jsx(IconMetadata_Text, { ...args }) }), _jsx("span", { title: "IconMetadata_User", children: _jsx(IconMetadata_User, { ...args }) }), _jsx("span", { title: "IconMetadata_Date", children: _jsx(IconMetadata_Date, { ...args }) }), _jsx("span", { title: "IconMetadata_DataList", children: _jsx(IconMetadata_DataList, { ...args }) }), _jsx("span", { title: "IconMetadata_DynamicDataList", children: _jsx(IconMetadata_DynamicDataList, { ...args }) }), _jsx("span", { title: "IconMetadata_Numerator", children: _jsx(IconMetadata_Numerator, { ...args }) }), _jsx("span", { title: "IconMetadata_Special", children: _jsx(IconMetadata_Special, { ...args }) }), _jsx("span", { title: "IconMetadata_Numeric", children: _jsx(IconMetadata_Numeric, { ...args }) }), _jsx("span", { title: "IconMetadata", children: _jsx(IconMetadata, { ...args }) }), _jsx("span", { title: "IconRelationManyToMany", children: _jsx(IconRelationManyToMany, { ...args }) }), _jsx("span", { title: "IconRelationOneToMany", children: _jsx(IconRelationOneToMany, { ...args }) }), _jsx("span", { title: "IconBoxArchiveIn", children: _jsx(IconBoxArchiveIn, { ...args }) }), _jsx("span", { title: "IconBasket", children: _jsx(IconBasket, { ...args }) }), _jsx("span", { title: "IconSignCert", children: _jsx(IconSignCert, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconServerService", children: _jsx(IconServerService, { ...args }) }), _jsx("span", { title: "IconUserExpired", children: _jsx(IconUserExpired, { ...args }) }), _jsx("span", { title: "IconUserCheck", children: _jsx(IconUserCheck, { ...args }) }), _jsx("span", { title: "IconAddressBook", children: _jsx(IconAddressBook, { ...args }) }), _jsx("span", { title: "IconFreeSearch", children: _jsx(IconFreeSearch, { ...args }) }), _jsx("span", { title: "IconMic", children: _jsx(IconMic, { ...args }) }), _jsx("span", { title: "IconKey", children: _jsx(IconKey, { ...args }) }), _jsx("span", { title: "IconDetailDcmts", children: _jsx(IconDetailDcmts, { ...args }) }), _jsx("span", { title: "IconMultipleSelection", children: _jsx(IconMultipleSelection, { ...args }) }), _jsx("span", { title: "IconChevronRight", children: _jsx(IconChevronRight, { ...args }) }), _jsx("span", { title: "IconChevronDown", children: _jsx(IconChevronDown, { ...args }) }), _jsx("span", { title: "IconRecentlyViewed", children: _jsx(IconRecentlyViewed, { ...args }) })] })] }));
|
|
11
|
+
const TMIconsTemplate = (args) => (_jsxs(_Fragment, { children: [_jsxs("div", { style: { display: "flex", gap: "20px" }, children: [_jsx("span", { title: "IconAccessPoint", children: _jsx(IconAccessPoint, { ...args }) }), _jsx("span", { title: "IconCloseOutline", children: _jsx(IconCloseOutline, { ...args }) }), _jsx("span", { title: "IconArchive", children: _jsx(IconArchive, { ...args }) }), _jsx("span", { title: "IconLogin", children: _jsx(IconLogin, { ...args }) }), _jsx("span", { title: "IconUser", children: _jsx(IconUser, { ...args }) }), _jsx("span", { title: "IconPassword", children: _jsx(IconPassword, { ...args }) }), _jsx("span", { title: "IconLanguage", children: _jsx(IconLanguage, { ...args }) }), _jsx("span", { title: "IconSuitcase", children: _jsx(IconSuitcase, { ...args }) }), _jsx("span", { title: "IconProcess", children: _jsx(IconProcess, { ...args }) }), _jsx("span", { title: "IconSupport", children: _jsx(IconSupport, { ...args }) }), _jsx("span", { title: "IconMonitor", children: _jsx(IconMonitor, { ...args }) }), _jsx("span", { title: "IconDashboard", children: _jsx(IconDashboard, { ...args }) }), _jsx("span", { title: "IconAdd", children: _jsx(IconAdd, { ...args }) }), _jsx("span", { title: "IconDelete", children: _jsx(IconDelete, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconDuplicate", children: _jsx(IconDuplicate, { ...args }) }), _jsx("span", { title: "IconRefresh", children: _jsx(IconRefresh, { ...args }) }), _jsx("span", { title: "IconExpandRight", children: _jsx(IconExpandRight, { ...args }) }), _jsx("span", { title: "IconColumns", children: _jsx(IconColumns, { ...args }) }), _jsx("span", { title: "IconSave", children: _jsx(IconSave, { ...args }) }), _jsx("span", { title: "IconArrowDown", children: _jsx(IconArrowDown, { ...args }) }), _jsx("span", { title: "IconArrowUp", children: _jsx(IconArrowUp, { ...args }) }), _jsx("span", { title: "IconUndo", children: _jsx(IconUndo, { ...args }) }), _jsx("span", { title: "IconShow", children: _jsx(IconShow, { ...args }) }), _jsx("span", { title: "IconHide", children: _jsx(IconHide, { ...args }) }), _jsx("span", { title: "IconPreview", children: _jsx(IconPreview, { ...args }) }), _jsx("span", { title: "IconCount", children: _jsx(IconCount, { ...args }) }), _jsx("span", { title: "IconPencil", children: _jsx(IconPencil, { ...args }) }), _jsx("span", { title: "IconEraser", children: _jsx(IconEraser, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconAll", children: _jsx(IconAll, { ...args }) }), _jsx("span", { title: "IconSelected", children: _jsx(IconSelected, { ...args }) }), _jsx("span", { title: "IconVisible", children: _jsx(IconVisible, { ...args }) }), _jsx("span", { title: "IconCloseCircle", children: _jsx(IconCloseCircle, { ...args }) }), _jsx("span", { title: "IconApplyAndClose", children: _jsx(IconApplyAndClose, { ...args }) }), _jsx("span", { title: "IconApply", children: _jsx(IconApply, { ...args }) }), _jsx("span", { title: "IconSettings", children: _jsx(IconSettings, { ...args }) }), _jsx("span", { title: "IconMaximize", children: _jsx(IconMaximize, { ...args }) }), _jsx("span", { title: "IconMinimize", children: _jsx(IconMinimize, { ...args }) }), _jsx("span", { title: "IconNotification", children: _jsx(IconNotification, { ...args }) }), _jsx("span", { title: "IconHeart", children: _jsx(IconHeart, { ...args }) }), _jsx("span", { title: "IconUserProfile", children: _jsx(IconUserProfile, { ...args }) }), _jsx("span", { title: "IconWorkflow", children: _jsx(IconWorkflow, { ...args }) }), _jsx("span", { title: "IconBackward", children: _jsx(IconBackward, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconForward", children: _jsx(IconForward, { ...args }) }), _jsx("span", { title: "IconFastBackward", children: _jsx(IconFastBackward, { ...args }) }), _jsx("span", { title: "IconFastForward", children: _jsx(IconFastForward, { ...args }) }), _jsx("span", { title: "IconLogout", children: _jsx(IconLogout, { ...args }) }), _jsx("span", { title: "IconWifi", children: _jsx(IconWifi, { ...args }) }), _jsx("span", { title: "IconMenuHorizontal", children: _jsx(IconMenuHorizontal, { ...args }) }), _jsx("span", { title: "IconMenuVertical", children: _jsx(IconMenuVertical, { ...args }) }), _jsx("span", { title: "IconOpenInNew", children: _jsx(IconOpenInNew, { ...args }) }), _jsx("span", { title: "IconMail", children: _jsx(IconMail, { ...args }) }), _jsx("span", { title: "IconCopy", children: _jsx(IconCopy, { ...args }) }), _jsx("span", { title: "IconSearch", children: _jsx(IconSearch, { ...args }) }), _jsx("span", { title: "IconMenuKebab", children: _jsx(IconMenuKebab, { ...args }) }), _jsx("span", { title: "IconDown", children: _jsx(IconDown, { ...args }) }), _jsx("span", { title: "IconUp", children: _jsx(IconUp, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconLeft", children: _jsx(IconLeft, { ...args }) }), _jsx("span", { title: "IconRight", children: _jsx(IconRight, { ...args }) }), _jsx("span", { title: "IconArrowLeft", children: _jsx(IconArrowLeft, { ...args }) }), _jsx("span", { title: "IconArrowRight", children: _jsx(IconArrowRight, { ...args }) }), _jsx("span", { title: "IconFileDots", children: _jsx(IconFileDots, { ...args }) }), _jsx("span", { title: "IconDownload", children: _jsx(IconDownload, { ...args }) }), _jsx("span", { title: "IconUpload", children: _jsx(IconUpload, { ...args }) }), _jsx("span", { title: "IconFolderSearch", children: _jsx(IconFolderSearch, { ...args }) }), _jsx("span", { title: "IconFoldeAdd", children: _jsx(IconFoldeAdd, { ...args }) }), _jsx("span", { title: "IconEqual", children: _jsx(IconEqual, { ...args }) }), _jsx("span", { title: "IconEqualNot", children: _jsx(IconEqualNot, { ...args }) }), _jsx("span", { title: "IconGreaterThan", children: _jsx(IconGreaterThan, { ...args }) }), _jsx("span", { title: "IconLessThan", children: _jsx(IconLessThan, { ...args }) }), _jsx("span", { title: "IconLessThanOrEqual", children: _jsx(IconLessThanOrEqual, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconGreaterThanOrEqual", children: _jsx(IconGreaterThanOrEqual, { ...args }) }), _jsx("span", { title: "IconSort", children: _jsx(IconSort, { ...args }) }), _jsx("span", { title: "IconPlatform", children: _jsx(IconPlatform, { ...args }) }), _jsx("span", { title: "Icon123", children: _jsx(Icon123, { ...args }) }), _jsx("span", { title: "IconABC", children: _jsx(IconABC, { ...args }) }), _jsx("span", { title: "IconCalendar", children: _jsx(IconCalendar, { ...args }) }), _jsx("span", { title: "IconAtSign", children: _jsx(IconAtSign, { ...args }) }), _jsx("span", { title: "IconEdit", children: _jsx(IconEdit, { ...args }) }), _jsx("span", { title: "IconWarning", children: _jsx(IconWarning, { ...args }) }), _jsx("span", { title: "IconInfo", children: _jsx(IconInfo, { ...args }) }), _jsx("span", { title: "IconSuccess", children: _jsx(IconSuccess, { ...args }) }), _jsx("span", { title: "IconAlarmPlus", children: _jsx(IconAlarmPlus, { ...args }) }), _jsx("span", { title: "IconHourglass", children: _jsx(IconHourglass, { ...args }) }), _jsx("span", { title: "IconNone", children: _jsx(IconNone, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconNotStarted", children: _jsx(IconNotStarted, { ...args }) }), _jsx("span", { title: "IconProgress", children: _jsx(IconProgress, { ...args }) }), _jsx("span", { title: "IconInsertAbove", children: _jsx(IconInsertAbove, { ...args }) }), _jsx("span", { title: "IconInsertBelow", children: _jsx(IconInsertBelow, { ...args }) }), _jsx("span", { title: "IconFilter", children: _jsx(IconFilter, { ...args }) }), _jsx("span", { title: "IconDcmtType", children: _jsx(IconDcmtType, { ...args }) }), _jsx("span", { title: "IconDcmtTypeOnlyMetadata", children: _jsx(IconDcmtTypeOnlyMetadata, { ...args }) }), _jsx("span", { title: "IconDcmtTypeSys", children: _jsx(IconDcmtTypeSys, { ...args }) }), _jsx("span", { title: "IconCloud", children: _jsx(IconCloud, { ...args }) }), _jsx("span", { title: "IconWeb", children: _jsx(IconWeb, { ...args }) }), _jsx("span", { title: "IconBxInfo", children: _jsx(IconBxInfo, { ...args }) }), _jsx("span", { title: "IconStop", children: _jsx(IconStop, { ...args }) }), _jsx("span", { title: "IconPlay", children: _jsx(IconPlay, { ...args }) }), _jsx("span", { title: "IconStopwatch", children: _jsx(IconStopwatch, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconUpdate", children: _jsx(IconUpdate, { ...args }) }), _jsx("span", { title: "IconSuccessCirlce", children: _jsx(IconSuccessCirlce, { ...args }) }), _jsx("span", { title: "IconCircleInfo", children: _jsx(IconCircleInfo, { ...args }) }), _jsx("span", { title: "IconDetails", children: _jsx(IconDetails, { ...args }) }), _jsx("span", { title: "IconFreeze", children: _jsx(IconFreeze, { ...args }) }), _jsx("span", { title: "IconUnFreeze", children: _jsx(IconUnFreeze, { ...args }) }), _jsx("span", { title: "IconProgressCompleted", children: _jsx(IconProgressCompleted, { ...args }) }), _jsx("span", { title: "IconProgressNotCompleted", children: _jsx(IconProgressNotCompleted, { ...args }) }), _jsx("span", { title: "IconProgressAbortRequested", children: _jsx(IconProgressAbortRequested, { ...args }) }), _jsx("span", { title: "IconProgressReady", children: _jsx(IconProgressReady, { ...args }) }), _jsx("span", { title: "IconProgressStarted", children: _jsx(IconProgressStarted, { ...args }) }), _jsx("span", { title: "IconProgressRunning", children: _jsx(IconProgressRunning, { ...args }) }), _jsx("span", { title: "IconUserLevelMember", children: _jsx(IconUserLevelMember, { ...args }) }), _jsx("span", { title: "IconUserLevelAdministrator", children: _jsx(IconUserLevelAdministrator, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconUserLevelSystemAdministrator", children: _jsx(IconUserLevelSystemAdministrator, { ...args }) }), _jsx("span", { title: "IconUserLevelAutonomousAdministrator", children: _jsx(IconUserLevelAutonomousAdministrator, { ...args }) }), _jsx("span", { title: "IconHistory", children: _jsx(IconHistory, { ...args }) }), _jsx("span", { title: "IconForceStop", children: _jsx(IconForceStop, { ...args }) }), _jsx("span", { title: "IconDraggabledots", children: _jsx(IconDraggabledots, { ...args }) }), _jsx("span", { title: "IconClear", children: _jsx(IconClear, { ...args }) }), _jsx("span", { title: "IconClearButton", children: _jsx(IconClearButton, { ...args }) }), _jsx("span", { title: "IconAddCircleOutline", children: _jsx(IconAddCircleOutline, { ...args }) }), _jsx("span", { title: "IconDotsVerticalCircleOutline", children: _jsx(IconDotsVerticalCircleOutline, { ...args }) }), _jsx("span", { title: "IconMapping", children: _jsx(IconMapping, { ...args }) }), _jsx("span", { title: "IconAutoConfig", children: _jsx(IconAutoConfig, { ...args }) }), _jsx("span", { title: "IconArchiveDoc", children: _jsx(IconArchiveDoc, { ...args }) }), _jsx("span", { title: "IconCommand", children: _jsx(IconCommand, { ...args }) }), _jsx("span", { title: "IconSum", children: _jsx(IconSum, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconDisk", children: _jsx(IconDisk, { ...args }) }), _jsx("span", { title: "IconDataList", children: _jsx(IconDataList, { ...args }) }), _jsx("span", { title: "IconWindowMaximize", children: _jsx(IconWindowMaximize, { ...args }) }), _jsx("span", { title: "IconWindowMinimize", children: _jsx(IconWindowMinimize, { ...args }) }), _jsx("span", { title: "IconReset", children: _jsx(IconReset, { ...args }) }), _jsx("span", { title: "IconExport", children: _jsx(IconExport, { ...args }) }), _jsx("span", { title: "IconImport", children: _jsx(IconImport, { ...args }) }), _jsx("span", { title: "IconPalette", children: _jsx(IconPalette, { ...args }) }), _jsx("span", { title: "IconFastSearch", children: _jsx(IconFastSearch, { ...args }) }), _jsx("span", { title: "IconUserGroup", children: _jsx(IconUserGroup, { ...args }) }), _jsx("span", { title: "IconBoard", children: _jsx(IconBoard, { ...args }) }), _jsx("span", { title: "IconActivity", children: _jsx(IconActivity, { ...args }) }), _jsx("span", { title: "IconWorkspace", children: _jsx(IconWorkspace, { ...args }) }), _jsx("span", { title: "IconAttachment", children: _jsx(IconAttachment, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconActivityLog", children: _jsx(IconActivityLog, { ...args }) }), _jsx("span", { title: "IconCrown", children: _jsx(IconCrown, { ...args }) }), _jsx("span", { title: "IconChangeUser", children: _jsx(IconChangeUser, { ...args }) }), _jsx("span", { title: "IconPaste", children: _jsx(IconPaste, { ...args }) }), _jsx("span", { title: "IconFileSearch", children: _jsx(IconFileSearch, { ...args }) }), _jsx("span", { title: "IconStar", children: _jsx(IconStar, { ...args }) }), _jsx("span", { title: "IconStarRemove", children: _jsx(IconStarRemove, { ...args }) }), _jsx("span", { title: "IconLightningFill", children: _jsx(IconLightningFill, { ...args }) }), _jsx("span", { title: "IconLink", children: _jsx(IconLink, { ...args }) }), _jsx("span", { title: "IconEasy", children: _jsx(IconEasy, { ...args }) }), _jsx("span", { title: "IconConvertFilePdf", children: _jsx(IconConvertFilePdf, { ...args }) }), _jsx("span", { title: "IconRelation", children: _jsx(IconRelation, { ...args }) }), _jsx("span", { title: "IconCheckIn", children: _jsx(IconCheckIn, { ...args }) }), _jsx("span", { title: "IconRecursiveOps", children: _jsx(IconRecursiveOps, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconSearchCheck", children: _jsx(IconSearchCheck, { ...args }) }), _jsx("span", { title: "IconSignature", children: _jsx(IconSignature, { ...args }) }), _jsx("span", { title: "IconSavedQuery", children: _jsx(IconSavedQuery, { ...args }) }), _jsx("span", { title: "IconSync", children: _jsx(IconSync, { ...args }) }), _jsx("span", { title: "IconAdvanced", children: _jsx(IconAdvanced, { ...args }) }), _jsx("span", { title: "IconSubstFile", children: _jsx(IconSubstFile, { ...args }) }), _jsx("span", { title: "IconBatchUpdate", children: _jsx(IconBatchUpdate, { ...args }) }), _jsx("span", { title: "IconShare", children: _jsx(IconShare, { ...args }) }), _jsx("span", { title: "IconSharedDcmt", children: _jsx(IconSharedDcmt, { ...args }) }), _jsx("span", { title: "IconExportTo", children: _jsx(IconExportTo, { ...args }) }), _jsx("span", { title: "IconArrowSortedDown", children: _jsx(IconArrowSortedDown, { ...args }) }), _jsx("span", { title: "IconArrowSortedUp", children: _jsx(IconArrowSortedUp, { ...args }) }), _jsx("span", { title: "IconStatistics", children: _jsx(IconStatistics, { ...args }) }), _jsx("span", { title: "IconArrowUnsorted", children: _jsx(IconArrowUnsorted, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconPrinter", children: _jsx(IconPrinter, { ...args }) }), _jsx("span", { title: "IconFactory", children: _jsx(IconFactory, { ...args }) }), _jsx("span", { title: "IconTest", children: _jsx(IconTest, { ...args }) }), _jsx("span", { title: "IconCheck", children: _jsx(IconCheck, { ...args }) }), _jsx("span", { title: "IconSortAsc", children: _jsx(IconSortAsc, { ...args }) }), _jsx("span", { title: "IconSortDesc", children: _jsx(IconSortDesc, { ...args }) }), _jsx("span", { title: "IconSortAscLetters", children: _jsx(IconSortAscLetters, { ...args }) }), _jsx("span", { title: "IconSortDescLetters", children: _jsx(IconSortDescLetters, { ...args }) }), _jsx("span", { title: "IconSortAscNumbers", children: _jsx(IconSortAscNumbers, { ...args }) }), _jsx("span", { title: "IconSortDescNumbers", children: _jsx(IconSortDescNumbers, { ...args }) }), _jsx("span", { title: "IconSortAscClock", children: _jsx(IconSortAscClock, { ...args }) }), _jsx("span", { title: "IconSortDescClock", children: _jsx(IconSortDescClock, { ...args }) }), _jsx("span", { title: "IconTree", children: _jsx(IconTree, { ...args }) }), _jsx("span", { title: "IconGrid", children: _jsx(IconGrid, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconList", children: _jsx(IconList, { ...args }) }), _jsx("span", { title: "IconLock", children: _jsx(IconLock, { ...args }) }), _jsx("span", { title: "IconLockClosed", children: _jsx(IconLockClosed, { ...args }) }), _jsx("span", { title: "IconBxLock", children: _jsx(IconBxLock, { ...args }) }), _jsx("span", { title: "IconFolder", children: _jsx(IconFolder, { ...args }) }), _jsx("span", { title: "IconFolderOpen", children: _jsx(IconFolderOpen, { ...args }) }), _jsx("span", { title: "IconTag", children: _jsx(IconTag, { ...args }) }), _jsx("span", { title: "IconFolderZip", children: _jsx(IconFolderZip, { ...args }) }), _jsx("span", { title: "IconBell", children: _jsx(IconBell, { ...args }) }), _jsx("span", { title: "IconBellCheck", children: _jsx(IconBellCheck, { ...args }) }), _jsx("span", { title: "IconBellOutline", children: _jsx(IconBellOutline, { ...args }) }), _jsx("span", { title: "IconBellCheckOutline", children: _jsx(IconBellCheckOutline, { ...args }) }), _jsx("span", { title: "IconEnvelopeOpenText", children: _jsx(IconEnvelopeOpenText, { ...args }) }), _jsx("span", { title: "IconMetadata_Computed", children: _jsx(IconMetadata_Computed, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconMetadata_Text", children: _jsx(IconMetadata_Text, { ...args }) }), _jsx("span", { title: "IconMetadata_User", children: _jsx(IconMetadata_User, { ...args }) }), _jsx("span", { title: "IconMetadata_Date", children: _jsx(IconMetadata_Date, { ...args }) }), _jsx("span", { title: "IconMetadata_DataList", children: _jsx(IconMetadata_DataList, { ...args }) }), _jsx("span", { title: "IconMetadata_DynamicDataList", children: _jsx(IconMetadata_DynamicDataList, { ...args }) }), _jsx("span", { title: "IconMetadata_Numerator", children: _jsx(IconMetadata_Numerator, { ...args }) }), _jsx("span", { title: "IconMetadata_Special", children: _jsx(IconMetadata_Special, { ...args }) }), _jsx("span", { title: "IconMetadata_Numeric", children: _jsx(IconMetadata_Numeric, { ...args }) }), _jsx("span", { title: "IconMetadata", children: _jsx(IconMetadata, { ...args }) }), _jsx("span", { title: "IconRelationManyToMany", children: _jsx(IconRelationManyToMany, { ...args }) }), _jsx("span", { title: "IconRelationOneToMany", children: _jsx(IconRelationOneToMany, { ...args }) }), _jsx("span", { title: "IconBoxArchiveIn", children: _jsx(IconBoxArchiveIn, { ...args }) }), _jsx("span", { title: "IconBasket", children: _jsx(IconBasket, { ...args }) }), _jsx("span", { title: "IconSignCert", children: _jsx(IconSignCert, { ...args }) })] }), _jsxs("div", { style: { display: "flex", gap: "20px", marginTop: 20 }, children: [_jsx("span", { title: "IconServerService", children: _jsx(IconServerService, { ...args }) }), _jsx("span", { title: "IconUserExpired", children: _jsx(IconUserExpired, { ...args }) }), _jsx("span", { title: "IconUserCheck", children: _jsx(IconUserCheck, { ...args }) }), _jsx("span", { title: "IconAddressBook", children: _jsx(IconAddressBook, { ...args }) }), _jsx("span", { title: "IconFreeSearch", children: _jsx(IconFreeSearch, { ...args }) }), _jsx("span", { title: "IconMic", children: _jsx(IconMic, { ...args }) }), _jsx("span", { title: "IconKey", children: _jsx(IconKey, { ...args }) }), _jsx("span", { title: "IconDetailDcmts", children: _jsx(IconDetailDcmts, { ...args }) }), _jsx("span", { title: "IconMultipleSelection", children: _jsx(IconMultipleSelection, { ...args }) }), _jsx("span", { title: "IconChevronRight", children: _jsx(IconChevronRight, { ...args }) }), _jsx("span", { title: "IconChevronDown", children: _jsx(IconChevronDown, { ...args }) }), _jsx("span", { title: "IconRecentlyViewed", children: _jsx(IconRecentlyViewed, { ...args }) }), _jsx("span", { title: "IconFunction", children: _jsx(IconFunction, { ...args }) })] })] }));
|
|
12
12
|
export const TMIcons = TMIconsTemplate.bind({});
|
|
13
13
|
TMIcons.args = { fontSize: "48px", color: "black" };
|