ados-rcm 1.0.225 → 1.0.227
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/AModule/AComponents/ATable/ATable.d.ts +6 -0
- package/dist/index.cjs.js +11 -11
- package/dist/index.es.js +1037 -1023
- package/package.json +1 -1
|
@@ -284,6 +284,12 @@ export type TATableFilteration<T extends IItem> = {
|
|
|
284
284
|
* Description : type of the filteration
|
|
285
285
|
*/
|
|
286
286
|
type: 'And' | 'Or';
|
|
287
|
+
/**
|
|
288
|
+
* style? : React.CSSProperties
|
|
289
|
+
*
|
|
290
|
+
* Description : width of the String filter
|
|
291
|
+
*/
|
|
292
|
+
style?: React.CSSProperties;
|
|
287
293
|
/**
|
|
288
294
|
* filters : TATableSomeFilter<T>[]
|
|
289
295
|
*
|