@platforma-sdk/ui-vue 1.17.5 → 1.18.1

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 (35) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/lib.js +6734 -6648
  3. package/dist/lib.umd.cjs +32 -32
  4. package/dist/src/components/PlAgCsvExporter/PlAgCsvExporter.vue.d.ts +7 -0
  5. package/dist/src/components/PlAgCsvExporter/PlAgCsvExporter.vue.d.ts.map +1 -0
  6. package/dist/src/components/PlAgCsvExporter/export-csv.d.ts +3 -0
  7. package/dist/src/components/PlAgCsvExporter/export-csv.d.ts.map +1 -0
  8. package/dist/src/components/PlAgCsvExporter/index.d.ts +2 -0
  9. package/dist/src/components/PlAgCsvExporter/index.d.ts.map +1 -0
  10. package/dist/src/components/PlAgDataTable/PlAgDataTable.vue.d.ts +8 -1
  11. package/dist/src/components/PlAgDataTable/PlAgDataTable.vue.d.ts.map +1 -1
  12. package/dist/src/components/PlAgDataTable/index.d.ts +1 -0
  13. package/dist/src/components/PlAgDataTable/index.d.ts.map +1 -1
  14. package/dist/src/components/PlAgDataTable/sources/focus-row.d.ts +10 -0
  15. package/dist/src/components/PlAgDataTable/sources/focus-row.d.ts.map +1 -0
  16. package/dist/src/components/PlAgDataTable/sources/row-number.d.ts.map +1 -1
  17. package/dist/src/components/PlAgDataTable/sources/table-source.d.ts +2 -2
  18. package/dist/src/components/PlAgDataTable/sources/table-source.d.ts.map +1 -1
  19. package/dist/src/components/PlAgDataTable/types.d.ts +9 -5
  20. package/dist/src/components/PlAgDataTable/types.d.ts.map +1 -1
  21. package/dist/src/lib.d.ts +2 -0
  22. package/dist/src/lib.d.ts.map +1 -1
  23. package/dist/style.css +1 -1
  24. package/dist/tsconfig.lib.tsbuildinfo +1 -1
  25. package/package.json +5 -5
  26. package/src/components/PlAgCsvExporter/PlAgCsvExporter.vue +31 -0
  27. package/src/components/PlAgCsvExporter/export-csv.ts +65 -0
  28. package/src/components/PlAgCsvExporter/index.ts +1 -0
  29. package/src/components/PlAgDataTable/PlAgDataTable.vue +21 -59
  30. package/src/components/PlAgDataTable/index.ts +1 -1
  31. package/src/components/PlAgDataTable/sources/focus-row.ts +59 -0
  32. package/src/components/PlAgDataTable/sources/row-number.ts +14 -5
  33. package/src/components/PlAgDataTable/sources/table-source.ts +14 -52
  34. package/src/components/PlAgDataTable/types.ts +10 -4
  35. package/src/lib.ts +3 -1
@@ -0,0 +1,7 @@
1
+ import type { GridApi } from '@ag-grid-community/core';
2
+ type __VLS_Props = {
3
+ api: GridApi;
4
+ };
5
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
6
+ export default _default;
7
+ //# sourceMappingURL=PlAgCsvExporter.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlAgCsvExporter.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/PlAgCsvExporter/PlAgCsvExporter.vue"],"names":[],"mappings":"AAAA,OAiCO,KAAK,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAQvD,KAAK,WAAW,GAAG;IACjB,GAAG,EAAE,OAAO,CAAC;CACd,CAAC;;AAwGF,wBAOG"}
@@ -0,0 +1,3 @@
1
+ import { type GridApi } from '@ag-grid-community/core';
2
+ export declare function exportCsv(gridApi: GridApi, completed: () => void): Promise<void | GridApi<any>>;
3
+ //# sourceMappingURL=export-csv.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"export-csv.d.ts","sourceRoot":"","sources":["../../../../src/components/PlAgCsvExporter/export-csv.ts"],"names":[],"mappings":"AACA,OAAO,EAAc,KAAK,OAAO,EAAoB,MAAM,yBAAyB,CAAC;AAiBrF,wBAAsB,SAAS,CAAC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,IAAI,gCA8CtE"}
@@ -0,0 +1,2 @@
1
+ export { default as PlAgCsvExporter } from './PlAgCsvExporter.vue';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/PlAgCsvExporter/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,uBAAuB,CAAC"}
@@ -9,13 +9,20 @@ type __VLS_Props = {
9
9
  * This component serves as the target for teleporting the button.
10
10
  */
11
11
  showColumnsPanel?: boolean;
12
+ /**
13
+ * The showExportButton prop controls the display of a button that allows
14
+ * to export table data in CSV format. To make the button functional
15
+ * and visible, you must also include the PlAgDataTableToolsPanel component in your layout.
16
+ * This component serves as the target for teleporting the button.
17
+ */
18
+ showExportButton?: boolean;
12
19
  showCellButtonForAxisId?: AxisId;
13
20
  };
14
21
  type __VLS_PublicProps = {
15
22
  modelValue?: PlDataTableState;
16
23
  } & __VLS_Props;
17
24
  declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {
18
- exportCsv: () => void;
25
+ focusRow: (rowKey: import("./types").PTableRowKey) => void;
19
26
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
27
  onRowDoubleClicked: (key: unknown[]) => any;
21
28
  columnsChanged: (columns: PTableColumnSpec[]) => any;
@@ -1 +1 @@
1
- {"version":3,"file":"PlAgDataTable.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/PlAgDataTable/PlAgDataTable.vue"],"names":[],"mappings":"AAweA,OAAO,EAGL,KAAK,MAAM,EACX,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EAGtB,MAAM,sBAAsB,CAAC;AAS9B,OAAO,KAAK,EAA2B,mBAAmB,EAAoB,MAAM,SAAS,CAAC;AAgB9F,KAAK,WAAW,GAAG;IACjB,QAAQ,CAAC,EAAE,QAAQ,CAAC,mBAAmB,CAAC,CAAC;IACzC;;;;;OAKG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,uBAAuB,CAAC,EAAE,MAAM,CAAC;CAClC,CAAC;AA6WF,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,gBAAgB,CAAC;CAC7B,GAAG,WAAW,CAAC;;;;;;;;;;;;AA4MhB,wBASG"}
1
+ {"version":3,"file":"PlAgDataTable.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/PlAgDataTable/PlAgDataTable.vue"],"names":[],"mappings":"AAicA,OAAO,EAGL,KAAK,MAAM,EACX,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EAGtB,MAAM,sBAAsB,CAAC;AAS9B,OAAO,KAAK,EAA2B,mBAAmB,EAAoB,MAAM,SAAS,CAAC;AAiB9F,KAAK,WAAW,GAAG;IACjB,QAAQ,CAAC,EAAE,QAAQ,CAAC,mBAAmB,CAAC,CAAC;IACzC;;;;;OAKG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;;;;OAKG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,uBAAuB,CAAC,EAAE,MAAM,CAAC;CAClC,CAAC;AAiUF,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,gBAAgB,CAAC;CAC7B,GAAG,WAAW,CAAC;;;;;;;;;;;;AAmLhB,wBASG"}
@@ -3,4 +3,5 @@ export { default as PlAgOverlayLoading } from './PlAgOverlayLoading.vue';
3
3
  export { default as PlAgOverlayNoRows } from './PlAgOverlayNoRows.vue';
4
4
  export * from './types';
5
5
  export * from './sources/row-number';
6
+ export * from './sources/focus-row';
6
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/PlAgDataTable/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAEvE,cAAc,SAAS,CAAC;AAExB,cAAc,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/PlAgDataTable/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAEvE,cAAc,SAAS,CAAC;AACxB,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC"}
@@ -0,0 +1,10 @@
1
+ import type { GridApi } from '@ag-grid-community/core';
2
+ export declare function makeOnceTracker<TContext = undefined>(): {
3
+ track: (ctx: TContext) => [true, TContext];
4
+ reset: () => [false, undefined];
5
+ onceTracked: (callback: (ctx: TContext) => void) => () => void;
6
+ };
7
+ export type OnceTracker<TContext = undefined> = ReturnType<typeof makeOnceTracker<TContext>>;
8
+ export declare function trackFirstDataRendered(gridApi: GridApi, tracker: OnceTracker<GridApi>): void;
9
+ export declare function focusRow(rowId: string, tracker: OnceTracker<GridApi>): void;
10
+ //# sourceMappingURL=focus-row.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"focus-row.d.ts","sourceRoot":"","sources":["../../../../../src/components/PlAgDataTable/sources/focus-row.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAY,MAAM,yBAAyB,CAAC;AAGjE,wBAAgB,eAAe,CAAC,QAAQ,GAAG,SAAS;iBAE9B,QAAQ;;4BAEG,CAAC,GAAG,EAAE,QAAQ,KAAK,IAAI;EAWvD;AAED,MAAM,MAAM,WAAW,CAAC,QAAQ,GAAG,SAAS,IAAI,UAAU,CAAC,OAAO,eAAe,CAAC,QAAQ,CAAC,CAAC,CAAC;AAE7F,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,WAAW,CAAC,OAAO,CAAC,QAarF;AAqBD,wBAAgB,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,WAAW,CAAC,OAAO,CAAC,QAEpE"}
@@ -1 +1 @@
1
- {"version":3,"file":"row-number.d.ts","sourceRoot":"","sources":["../../../../../src/components/PlAgDataTable/sources/row-number.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,OAAO,EAAqB,MAAM,yBAAyB,CAAC;AAGlF,eAAO,MAAM,2BAA2B,8BAA4B,CAAC;AAIrE,wBAAgB,mBAAmB,IAAI,MAAM,CA6B5C;AA+CD,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,OAAO,QAuBvD"}
1
+ {"version":3,"file":"row-number.d.ts","sourceRoot":"","sources":["../../../../../src/components/PlAgDataTable/sources/row-number.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,OAAO,EAAqB,MAAM,yBAAyB,CAAC;AAGlF,eAAO,MAAM,2BAA2B,8BAA4B,CAAC;AAIrE,wBAAgB,mBAAmB,IAAI,MAAM,CA6B5C;AA+CD,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,OAAO,QAgCvD"}
@@ -1,11 +1,11 @@
1
1
  import type { ColDef, IServerSideDatasource, RowModelType } from '@ag-grid-community/core';
2
- import type { AxisId, PlDataTableSheet } from '@platforma-sdk/model';
3
- import { type PFrameDriver, type PTableColumnSpec, type PTableHandle } from '@platforma-sdk/model';
2
+ import { type AxisId, type PFrameDriver, type PTableColumnSpec, type PTableHandle, type PlDataTableSheet, type PTableValue } from '@platforma-sdk/model';
4
3
  /**
5
4
  * Extract `PTableColumnId` from colId string
6
5
  */
7
6
  export declare function parseColId(str: string): PTableColumnSpec;
8
7
  export declare const defaultValueFormatter: (value: any) => any;
8
+ export declare function makeRowId(rowKey: PTableValue[]): string;
9
9
  /**
10
10
  * Calculate GridOptions for p-table data source type
11
11
  */
@@ -1 +1 @@
1
- {"version":3,"file":"table-source.d.ts","sourceRoot":"","sources":["../../../../../src/components/PlAgDataTable/sources/table-source.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAuB,qBAAqB,EAA4B,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAC1I,OAAO,KAAK,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACrE,OAAO,EAEL,KAAK,YAAY,EACjB,KAAK,gBAAgB,EACrB,KAAK,YAAY,EAOlB,MAAM,sBAAsB,CAAC;AAgB9B;;GAEG;AACH,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,GACV,gBAAgB,CAC3C;AAID,eAAO,MAAM,qBAAqB,UAAW,GAAG,QAU/C,CAAC;AA0HF;;GAEG;AACH,wBAAsB,uBAAuB,CAC3C,QAAQ,EAAE,YAAY,EACtB,EAAE,EAAE,YAAY,EAChB,MAAM,EAAE,gBAAgB,EAAE,EAC1B,YAAY,CAAC,EAAE,MAAM,EAAE,EACvB,uBAAuB,CAAC,EAAE,MAAM,GAC/B,OAAO,CAAC;IACP,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,oBAAoB,CAAC,EAAE,qBAAqB,CAAC;IAC7C,YAAY,EAAE,YAAY,CAAC;IAC3B,OAAO,CAAC,EAAE,OAAO,EAAE,CAAC;CACrB,CAAC,CA8JH"}
1
+ {"version":3,"file":"table-source.d.ts","sourceRoot":"","sources":["../../../../../src/components/PlAgDataTable/sources/table-source.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAuB,qBAAqB,EAA4B,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAC1I,OAAO,EACL,KAAK,MAAM,EAEX,KAAK,YAAY,EACjB,KAAK,gBAAgB,EACrB,KAAK,YAAY,EAEjB,KAAK,gBAAgB,EACrB,KAAK,WAAW,EAGjB,MAAM,sBAAsB,CAAC;AAgB9B;;GAEG;AACH,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,GACV,gBAAgB,CAC3C;AAID,eAAO,MAAM,qBAAqB,UAAW,GAAG,QAU/C,CAAC;AAiEF,wBAAgB,SAAS,CAAC,MAAM,EAAE,WAAW,EAAE,UAE9C;AAkBD;;GAEG;AACH,wBAAsB,uBAAuB,CAC3C,QAAQ,EAAE,YAAY,EACtB,EAAE,EAAE,YAAY,EAChB,MAAM,EAAE,gBAAgB,EAAE,EAC1B,YAAY,CAAC,EAAE,MAAM,EAAE,EACvB,uBAAuB,CAAC,EAAE,MAAM,GAC/B,OAAO,CAAC;IACP,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,oBAAoB,CAAC,EAAE,qBAAqB,CAAC;IAC7C,YAAY,EAAE,YAAY,CAAC;IAC3B,OAAO,CAAC,EAAE,OAAO,EAAE,CAAC;CACrB,CAAC,CA8JH"}
@@ -1,4 +1,4 @@
1
- import type { LocalBlobHandleAndSize, PlDataTableSheet, PlTableFilter, PlTableFilterType, PTableColumnId, PTableHandle, RemoteBlobHandleAndSize } from '@platforma-sdk/model';
1
+ import type { LocalBlobHandleAndSize, PlDataTableSheet, PlTableFilter, PlTableFilterType, PTableColumnId, PTableHandle, PTableValue, RemoteBlobHandleAndSize } from '@platforma-sdk/model';
2
2
  /** Data table settings */
3
3
  export type PlDataTableSettings = {
4
4
  /** The type of the source to feed the data into the table */
@@ -26,15 +26,19 @@ export type PlTableFiltersDefault = {
26
26
  /** Filter entry */
27
27
  default: PlTableFilter;
28
28
  };
29
+ /** Key is a set of all axes values, which means it is unique across rows */
30
+ export type PTableRowKey = PTableValue[];
29
31
  /** PlAgDataTable controller contains all exported methods */
30
32
  export type PlAgDataTableController = {
31
- /** Export table data as Csv file */
32
- exportCsv: () => void;
33
+ /** Scroll table to make row with provided key visible */
34
+ focusRow: (rowKey: PTableRowKey) => void;
33
35
  };
34
36
  /** PlAgDataTable row */
35
37
  export type PlAgDataTableRow = {
38
+ key: PTableRowKey;
39
+ /** Unique row identifier, created as canonicalize(key)! */
36
40
  id: string;
37
- key: unknown[];
38
- [field: `${number}`]: undefined | null | number | string;
41
+ /** Row values by column; sheet axes and labeled axes are excluded */
42
+ [field: `${number}`]: PTableValue;
39
43
  };
40
44
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/PlAgDataTable/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,sBAAsB,EACtB,gBAAgB,EAChB,aAAa,EACb,iBAAiB,EACjB,cAAc,EACd,YAAY,EACZ,uBAAuB,EACxB,MAAM,sBAAsB,CAAC;AAE9B,0BAA0B;AAC1B,MAAM,MAAM,mBAAmB,GAC3B;IACA,6DAA6D;IAC7D,UAAU,EAAE,QAAQ,CAAC;IACrB,2BAA2B;IAC3B,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,+CAA+C;IAC/C,MAAM,CAAC,EAAE,gBAAgB,EAAE,CAAC;CAC7B,GACC;IACA,6DAA6D;IAC7D,UAAU,EAAE,KAAK,CAAC;IAClB,OAAO,CAAC,EAAE,sBAAsB,GAAG,uBAAuB,CAAC;CAC5D,CAAC;AAEJ,uCAAuC;AACvC,MAAM,MAAM,yBAAyB,GAAG;IACtC,qEAAqE;IACrE,MAAM,EAAE,cAAc,CAAC;IACvB,oDAAoD;IACpD,kBAAkB,EAAE,iBAAiB,EAAE,CAAC;CACzC,CAAC;AAEF,4CAA4C;AAC5C,MAAM,MAAM,qBAAqB,GAAG;IAClC,uDAAuD;IACvD,MAAM,EAAE,cAAc,CAAC;IACvB,mBAAmB;IACnB,OAAO,EAAE,aAAa,CAAC;CACxB,CAAC;AAEF,6DAA6D;AAC7D,MAAM,MAAM,uBAAuB,GAAG;IACpC,oCAAoC;IACpC,SAAS,EAAE,MAAM,IAAI,CAAC;CACvB,CAAC;AAEF,wBAAwB;AACxB,MAAM,MAAM,gBAAgB,GAAG;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,GAAG,EAAE,OAAO,EAAE,CAAC;IACf,CAAC,KAAK,EAAE,GAAG,MAAM,EAAE,GAAG,SAAS,GAAG,IAAI,GAAG,MAAM,GAAG,MAAM,CAAC;CAC1D,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/PlAgDataTable/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,sBAAsB,EACtB,gBAAgB,EAChB,aAAa,EACb,iBAAiB,EACjB,cAAc,EACd,YAAY,EACZ,WAAW,EACX,uBAAuB,EACxB,MAAM,sBAAsB,CAAC;AAE9B,0BAA0B;AAC1B,MAAM,MAAM,mBAAmB,GAC3B;IACA,6DAA6D;IAC7D,UAAU,EAAE,QAAQ,CAAC;IACrB,2BAA2B;IAC3B,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,+CAA+C;IAC/C,MAAM,CAAC,EAAE,gBAAgB,EAAE,CAAC;CAC7B,GACC;IACA,6DAA6D;IAC7D,UAAU,EAAE,KAAK,CAAC;IAClB,OAAO,CAAC,EAAE,sBAAsB,GAAG,uBAAuB,CAAC;CAC5D,CAAC;AAEJ,uCAAuC;AACvC,MAAM,MAAM,yBAAyB,GAAG;IACtC,qEAAqE;IACrE,MAAM,EAAE,cAAc,CAAC;IACvB,oDAAoD;IACpD,kBAAkB,EAAE,iBAAiB,EAAE,CAAC;CACzC,CAAC;AAEF,4CAA4C;AAC5C,MAAM,MAAM,qBAAqB,GAAG;IAClC,uDAAuD;IACvD,MAAM,EAAE,cAAc,CAAC;IACvB,mBAAmB;IACnB,OAAO,EAAE,aAAa,CAAC;CACxB,CAAC;AAEF,4EAA4E;AAC5E,MAAM,MAAM,YAAY,GAAG,WAAW,EAAE,CAAC;AAEzC,6DAA6D;AAC7D,MAAM,MAAM,uBAAuB,GAAG;IACpC,yDAAyD;IACzD,QAAQ,EAAE,CAAC,MAAM,EAAE,YAAY,KAAK,IAAI,CAAC;CAC1C,CAAC;AAEF,wBAAwB;AACxB,MAAM,MAAM,gBAAgB,GAAG;IAC7B,GAAG,EAAE,YAAY,CAAC;IAClB,2DAA2D;IAC3D,EAAE,EAAE,MAAM,CAAC;IACX,qEAAqE;IACrE,CAAC,KAAK,EAAE,GAAG,MAAM,EAAE,GAAG,WAAW,CAAC;CACnC,CAAC"}
package/dist/src/lib.d.ts CHANGED
@@ -9,6 +9,8 @@ export * from './components/PlAgColumnHeader';
9
9
  export * from './components/PlAgCellFile';
10
10
  export * from './components/PlAgDataTable/types';
11
11
  export * from './components/PlAgDataTable/sources/row-number';
12
+ export * from './components/PlAgDataTable/sources/focus-row';
13
+ export * from './components/PlAgCsvExporter';
12
14
  export * from './components/PlAgTextAndButtonCell';
13
15
  export * from './components/PlAgGridColumnManager';
14
16
  export * from './components/PlTableFilters';
@@ -1 +1 @@
1
- {"version":3,"file":"lib.d.ts","sourceRoot":"","sources":["../../src/lib.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAC1B,OAAO,WAAW,MAAM,8BAA8B,CAAC;AACvD,OAAO,aAAa,MAAM,8CAA8C,CAAC;AACzE,OAAO,kBAAkB,MAAM,mDAAmD,CAAC;AACnF,OAAO,iBAAiB,MAAM,kDAAkD,CAAC;AACjF,OAAO,sBAAsB,MAAM,yCAAyC,CAAC;AAE7E,OAAO,EAAE,WAAW,EAAE,aAAa,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,CAAC;AAErG,cAAc,+BAA+B,CAAC;AAE9C,cAAc,2BAA2B,CAAC;AAE1C,cAAc,kCAAkC,CAAC;AAEjD,cAAc,+CAA+C,CAAC;AAE9D,cAAc,oCAAoC,CAAC;AAEnD,cAAc,oCAAoC,CAAC;AAEnD,cAAc,6BAA6B,CAAC;AAE5C,cAAc,aAAa,CAAC;AAE5B,cAAc,eAAe,CAAC;AAE9B,cAAc,SAAS,CAAC;AAExB,cAAc,eAAe,CAAC;AAE9B,cAAc,UAAU,CAAC;AAEzB,cAAc,SAAS,CAAC;AAExB,cAAc,kBAAkB,CAAC;AAEjC,cAAc,6BAA6B,CAAC;AAE5C,cAAc,2BAA2B,CAAC;AAE1C,cAAc,uBAAuB,CAAC;AAEtC,mBAAmB,uBAAuB,CAAC"}
1
+ {"version":3,"file":"lib.d.ts","sourceRoot":"","sources":["../../src/lib.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAC1B,OAAO,WAAW,MAAM,8BAA8B,CAAC;AACvD,OAAO,aAAa,MAAM,8CAA8C,CAAC;AACzE,OAAO,kBAAkB,MAAM,mDAAmD,CAAC;AACnF,OAAO,iBAAiB,MAAM,kDAAkD,CAAC;AACjF,OAAO,sBAAsB,MAAM,yCAAyC,CAAC;AAE7E,OAAO,EAAE,WAAW,EAAE,aAAa,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,CAAC;AAErG,cAAc,+BAA+B,CAAC;AAE9C,cAAc,2BAA2B,CAAC;AAE1C,cAAc,kCAAkC,CAAC;AACjD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,8CAA8C,CAAC;AAE7D,cAAc,8BAA8B,CAAC;AAE7C,cAAc,oCAAoC,CAAC;AAEnD,cAAc,oCAAoC,CAAC;AAEnD,cAAc,6BAA6B,CAAC;AAE5C,cAAc,aAAa,CAAC;AAE5B,cAAc,eAAe,CAAC;AAE9B,cAAc,SAAS,CAAC;AAExB,cAAc,eAAe,CAAC;AAE9B,cAAc,UAAU,CAAC;AAEzB,cAAc,SAAS,CAAC;AAExB,cAAc,kBAAkB,CAAC;AAEjC,cAAc,6BAA6B,CAAC;AAE5C,cAAc,2BAA2B,CAAC;AAE1C,cAAc,uBAAuB,CAAC;AAEtC,mBAAmB,uBAAuB,CAAC"}