@gisce/react-ooui 1.2.0-rc.14 → 1.2.0-rc.16

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.
@@ -9,6 +9,7 @@ export declare type ExportModalProps = {
9
9
  domain: any[];
10
10
  limit?: number;
11
11
  context?: any;
12
+ visibleRegisters: number;
12
13
  };
13
14
  export declare const ExportModal: (props: ExportModalProps) => JSX.Element;
14
15
  //# sourceMappingURL=ExportModal.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ExportModal.d.ts","sourceRoot":"","sources":["ExportModal.tsx"],"names":[],"mappings":";AAWA,oBAAY,gBAAgB,GAAG;IAC7B,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,GAAG,EAAE,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,GAAG,CAAC;CACf,CAAC;AAEF,eAAO,MAAM,WAAW,UAAW,gBAAgB,gBAgGlD,CAAC"}
1
+ {"version":3,"file":"ExportModal.d.ts","sourceRoot":"","sources":["ExportModal.tsx"],"names":[],"mappings":";AAWA,oBAAY,gBAAgB,GAAG;IAC7B,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,GAAG,EAAE,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,gBAAgB,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,WAAW,UAAW,gBAAgB,gBAkGlD,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gisce/react-ooui",
3
- "version": "1.2.0-rc.14",
3
+ "version": "1.2.0-rc.16",
4
4
  "files": [
5
5
  "dist",
6
6
  "src",
@@ -36,8 +36,8 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@ant-design/plots": "^1.0.9",
39
- "@gisce/ooui": "^0.17.10-rc.3",
40
- "@gisce/react-formiga-components": "^1.0.9-rc.10",
39
+ "@gisce/ooui": "^0.17.11-rc.0",
40
+ "@gisce/react-formiga-components": "^1.0.9-rc.11",
41
41
  "@gisce/react-formiga-table": "^0.5.0",
42
42
  "@monaco-editor/react": "^4.4.5",
43
43
  "@tabler/icons": "^1.96.0",
@@ -360,6 +360,7 @@ function TreeActionBar(props: Props) {
360
360
  ? selectedRowItems.length
361
361
  : undefined
362
362
  }
363
+ visibleRegisters={results?.length}
363
364
  context={parentContext}
364
365
  />
365
366
  </Space>
@@ -19,6 +19,7 @@ export type ExportModalProps = {
19
19
  domain: any[];
20
20
  limit?: number;
21
21
  context?: any;
22
+ visibleRegisters: number;
22
23
  };
23
24
 
24
25
  export const ExportModal = (props: ExportModalProps) => {
@@ -32,6 +33,7 @@ export const ExportModal = (props: ExportModalProps) => {
32
33
  totalRegisters,
33
34
  domain,
34
35
  limit,
36
+ visibleRegisters,
35
37
  } = props;
36
38
  const fields = useRef<any>({});
37
39
 
@@ -115,6 +117,7 @@ export const ExportModal = (props: ExportModalProps) => {
115
117
  totalRegisters={totalRegisters}
116
118
  onGetFieldChilds={onGetFieldChilds}
117
119
  onGetFields={onGetFields}
120
+ visibleRegisters={visibleRegisters}
118
121
  />
119
122
  );
120
123
  };