ng-firebase-table-kxp 1.0.2 → 1.0.4

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/README.md CHANGED
@@ -1,27 +1,35 @@
1
- # Firebase Table KXP Library
1
+ # NG Firebase Table KXP
2
2
 
3
- [![npm version](https://badge.fury.io/js/%40adryanmmm%2Ffirebase-table-kxp-lib.svg)](https://www.npmjs.com/package/@adryanmmm/firebase-table-kxp-lib)
4
3
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
4
 
6
- Firebase Table KXP Library is a production-ready Angular data table created by **KXP Tech** to power enterprise dashboards backed by Firebase Firestore. It wraps complex Firestore querying, pagination, filtering, and material design styling into a plug-and-play module so teams can ship data-rich experiences faster.
5
+ NG Firebase Table KXP is a production-ready Angular data table created by **KXP Tech** to power enterprise dashboards backed by Firebase Firestore. It wraps complex Firestore querying, pagination, filtering, and material design styling into a plug-and-play module so teams can ship data-rich experiences faster.
7
6
 
8
7
  ## Table of Contents
9
- - [Why Firebase Table KXP](#why-firebase-table-kxp)
10
- - [Core Features](#core-features)
11
- - [Installation & Setup](#installation--setup)
12
- - [Configuration Overview](#configuration-overview)
13
- - [API Reference](#api-reference)
14
- - [TableData](#tabledata)
15
- - [Column](#column)
16
- - [Tab & TabData](#tab--tabdata)
17
- - [FilterableOption](#filterableoption)
18
- - [Condition](#condition)
19
- - [Arrange](#arrange)
20
- - [Image](#image)
21
- - [Data Export (Download)](#data-export-download)
22
- - [Powered by KXP Tech](#powered-by-kxp-tech)
23
- - [Contributing & License](#contributing--license)
24
- - [Support the Project](#support-the-project)
8
+ - [NG Firebase Table KXP](#ng-firebase-table-kxp)
9
+ - [Table of Contents](#table-of-contents)
10
+ - [Why Firebase Table KXP](#why-firebase-table-kxp)
11
+ - [Core Features](#core-features)
12
+ - [Installation \& Setup](#installation--setup)
13
+ - [Configuration Overview](#configuration-overview)
14
+ - [API Reference](#api-reference)
15
+ - [TableData](#tabledata)
16
+ - [Column](#column)
17
+ - [Tab \& TabData](#tab--tabdata)
18
+ - [FilterableOption](#filterableoption)
19
+ - [Condition](#condition)
20
+ - [Arrange](#arrange)
21
+ - [Image](#image)
22
+ - [Data Export (Download)](#data-export-download)
23
+ - [How It Works](#how-it-works)
24
+ - [Basic Example](#basic-example)
25
+ - [Advanced Example with Totals](#advanced-example-with-totals)
26
+ - [Filtering Data Before Export](#filtering-data-before-export)
27
+ - [Using Custom Pipes for Formatting](#using-custom-pipes-for-formatting)
28
+ - [CSV vs XLSX Format](#csv-vs-xlsx-format)
29
+ - [Important Notes](#important-notes)
30
+ - [Powered by KXP Tech](#powered-by-kxp-tech)
31
+ - [Contributing \& License](#contributing--license)
32
+ - [Support the Project](#support-the-project)
25
33
 
26
34
  ## Why Firebase Table KXP
27
35
 
@@ -44,7 +52,7 @@ Firebase Table KXP Library is a production-ready Angular data table created by *
44
52
  ## Installation & Setup
45
53
 
46
54
  ```bash
47
- npm install @adryanmmm/firebase-table-kxp-lib
55
+ npm install @adryanmmm/ng-firebase-table-kxp
48
56
  ```
49
57
 
50
58
  The host application should already depend on:
@@ -56,7 +64,7 @@ The host application should already depend on:
56
64
 
57
65
  1. **Import the module**
58
66
  ```typescript
59
- import { FirebaseTableKxpLibModule } from '@adryanmmm/firebase-table-kxp-lib';
67
+ import { NgFirebaseTableKxpModule } from '@adryanmmm/ng-firebase-table-kxp';
60
68
 
61
69
  @NgModule({
62
70
  imports: [
@@ -66,7 +74,7 @@ import { FirebaseTableKxpLibModule } from '@adryanmmm/firebase-table-kxp-lib';
66
74
  AngularFirestoreModule,
67
75
  ToastrModule.forRoot(),
68
76
  NgxMaskModule.forRoot(),
69
- FirebaseTableKxpLibModule
77
+ NgFirebaseTableKxpModule
70
78
  ]
71
79
  })
72
80
  export class AppModule {}
@@ -441,7 +449,7 @@ The library provides a flexible export system that allows you to download table
441
449
  #### Basic Example
442
450
 
443
451
  ```typescript
444
- import { TableService } from '@adryanmmm/firebase-table-kxp-lib';
452
+ import { TableService } from '@adryanmmm/ng-firebase-table-kxp';
445
453
  import * as XLSX from 'xlsx';
446
454
  import moment from 'moment';
447
455