codevdesign 0.0.17 → 0.0.18

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/modeles/data.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  //succes: boolean
6
6
  code: number
7
7
  message: string
8
- resultat: object
8
+ resultat: object | string
9
9
 
10
10
  // Constructeur de la classe
11
11
  constructor(code: number, message: string, resultat: any = null, version: string = '1.0') {
@@ -1,10 +1,12 @@
1
- import data from './data'
1
+ import datatableColonne from './composants/datatableColonne'
2
+ import data from './data'
2
3
  class response {
3
4
  public data: data
4
-
5
+ public status: number
5
6
  // Constructeur de la classe
6
- constructor(data: any) {
7
+ constructor(data: any, status: number) {
7
8
  this.data = data
9
+ this.status = status
8
10
  }
9
11
  }
10
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codevdesign",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "description": "Composants Vuetify 3 pour les projets Codev",
5
5
  "files": [
6
6
  "./**/*.vue",