@wizco/fenixds-ngx 17.3.3 → 17.3.5
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/esm2022/lib/table/table.component.mjs +29 -0
- package/esm2022/lib/table/table.types.mjs +2 -0
- package/esm2022/lib/tabs/tabs.component.mjs +14 -7
- package/esm2022/public-api.mjs +5 -2
- package/fesm2022/wizco-fenixds-ngx.mjs +39 -7
- package/fesm2022/wizco-fenixds-ngx.mjs.map +1 -1
- package/lib/table/table.component.d.ts +16 -0
- package/lib/table/table.component.d.ts.map +1 -0
- package/lib/table/table.types.d.ts +6 -0
- package/lib/table/table.types.d.ts.map +1 -0
- package/lib/tabs/tabs.component.d.ts +3 -2
- package/lib/tabs/tabs.component.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/public-api.d.ts.map +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { TableHeader } from './table.types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TableComponent {
|
|
5
|
+
data: any[];
|
|
6
|
+
headers: TableHeader[];
|
|
7
|
+
loading?: boolean;
|
|
8
|
+
templates: {
|
|
9
|
+
[key: string]: TemplateRef<any>;
|
|
10
|
+
};
|
|
11
|
+
constructor();
|
|
12
|
+
getTemplate(templateName: string): TemplateRef<any>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "wco-table", never, { "data": { "alias": "data"; "required": false; }; "headers": { "alias": "headers"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "templates": { "alias": "templates"; "required": false; }; }, {}, never, [".empty"], true, never>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=table.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table.component.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-components/src/lib/table/table.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,WAAW,EAAE,MAAM,eAAe,CAAC;AAC9D,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;;AAG5C,qBAOa,cAAc;IAChB,IAAI,EAAE,GAAG,EAAE,CAAM;IACjB,OAAO,EAAE,WAAW,EAAE,CAAM;IAC5B,OAAO,CAAC,EAAE,OAAO,CAAS;IAC1B,SAAS,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,CAAC,GAAG,CAAC,CAAA;KAAE,CAAM;;IAI7D,WAAW,CAAC,YAAY,EAAE,MAAM;yCARrB,cAAc;2CAAd,cAAc;CAW1B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table.types.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-components/src/lib/table/table.types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,WAAW;IAC1B,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -38,6 +38,7 @@ export declare class TabsComponent implements OnChanges, AfterViewInit {
|
|
|
38
38
|
* @param {boolean} noBorder
|
|
39
39
|
*/
|
|
40
40
|
noBorder: boolean;
|
|
41
|
+
autoScroll: boolean;
|
|
41
42
|
/**
|
|
42
43
|
* Evento de click no botão ou link do componente
|
|
43
44
|
* @param {EventEmitter<void>} handleClick
|
|
@@ -64,12 +65,12 @@ export declare class TabsComponent implements OnChanges, AfterViewInit {
|
|
|
64
65
|
/**
|
|
65
66
|
* @ignore
|
|
66
67
|
*/
|
|
67
|
-
eventSubmit(): void;
|
|
68
|
+
eventSubmit(link?: any): void;
|
|
68
69
|
/**
|
|
69
70
|
* @ignore
|
|
70
71
|
*/
|
|
71
72
|
handleActive(timer?: number, buttonClick?: boolean): void;
|
|
72
73
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
73
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "wco-navtabs", never, { "type": { "alias": "type"; "required": false; }; "full": { "alias": "full"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "enabledResponsive": { "alias": "enabled-responsive"; "required": false; }; "setListOptions": { "alias": "listOptions"; "required": false; }; "noBorder": { "alias": "no-border"; "required": false; }; }, { "handleClick": "handleClick"; }, never, ["*"], true, never>;
|
|
74
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "wco-navtabs", never, { "type": { "alias": "type"; "required": false; }; "full": { "alias": "full"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "enabledResponsive": { "alias": "enabled-responsive"; "required": false; }; "setListOptions": { "alias": "listOptions"; "required": false; }; "noBorder": { "alias": "no-border"; "required": false; }; "autoScroll": { "alias": "autoScroll"; "required": false; }; }, { "handleClick": "handleClick"; }, never, ["*"], true, never>;
|
|
74
75
|
}
|
|
75
76
|
//# sourceMappingURL=tabs.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tabs.component.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-components/src/lib/tabs/tabs.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAE,YAAY,EAAS,SAAS,EAAU,aAAa,EAAkD,MAAM,eAAe,CAAC;AAE5K,OAAO,EAAE,MAAM,EAA+B,MAAM,iBAAiB,CAAC;AACtE,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;;AAE9C,qBAWa,aAAe,YAAW,SAAS,EAAE,aAAa;
|
|
1
|
+
{"version":3,"file":"tabs.component.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-components/src/lib/tabs/tabs.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAE,YAAY,EAAS,SAAS,EAAU,aAAa,EAAkD,MAAM,eAAe,CAAC;AAE5K,OAAO,EAAE,MAAM,EAA+B,MAAM,iBAAiB,CAAC;AACtE,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;;AAE9C,qBAWa,aAAe,YAAW,SAAS,EAAE,aAAa;IAkF3D,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,EAAE;IAlFZ;;MAEE;IAEK,OAAO,EAAG,UAAU,CAAC;IAE5B;;;MAGE;IAEK,IAAI,EAAE,QAAQ,GAAG,KAAK,CAAY;IAEzC;;;MAGE;IAEK,IAAI,EAAE,OAAO,CAAS;IAE7B;;;MAGE;IAEK,QAAQ,SAAK;IAEpB;;OAEG;IAEI,iBAAiB,EAAE,OAAO,CAAQ;IAEzC;;;MAGE;IACF,IACW,cAAc,CAAC,KAAK,EAAE,cAAc,EAAE,EAUhD;IAGD;;;MAGE;IAEK,QAAQ,EAAE,OAAO,CAAS;IAEZ,UAAU,EAAE,OAAO,CAAQ;IAGhD;;;;MAIE;IAEK,WAAW,EAAE,YAAY,CAAC,IAAI,CAAC,CAAsB;IAE5D;;MAEE;IACK,KAAK,EAAE,cAAc,EAAE,CAAM;IAGpC;;MAEE;IACK,QAAQ,UAAS;gBAGL,MAAM,EAAE,MAAM,EACvB,EAAE,EAAE,UAAU;IASxB;;MAEE;IACD,WAAW,CAAC,OAAO,EAAE,aAAa;IAOnC;;MAEE;IACK,eAAe,IAAI,IAAI;IAI9B;;MAEE;IACK,WAAW,CAAC,IAAI,GAAE,GAAQ,GAAG,IAAI;IAIxC;;MAEE;IACK,YAAY,CAAC,KAAK,SAAM,EAAE,WAAW,UAAO,GAAG,IAAI;yCAvH/C,aAAa;2CAAb,aAAa;CA4JzB"}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -15,4 +15,6 @@ export * from './lib/preview-file/preview-file.component';
|
|
|
15
15
|
export * from './lib/preview-file/preview-file.types';
|
|
16
16
|
export * from './lib/modal-alert/modal-alert.component';
|
|
17
17
|
export * from './lib/modal-alert/modal-alert.types';
|
|
18
|
+
export * from './lib/table/table.component';
|
|
19
|
+
export * from './lib/table/table.types';
|
|
18
20
|
//# sourceMappingURL=public-api.d.ts.map
|
package/public-api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../projects/ngx-components/src/public-api.ts"],"names":[],"mappings":"AAIA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,2BAA2B,CAAC;
|
|
1
|
+
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../projects/ngx-components/src/public-api.ts"],"names":[],"mappings":"AAIA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,2BAA2B,CAAC;AAG1C,cAAc,mDAAmD,CAAC;AAClE,cAAc,8CAA8C,CAAC;AAG7D,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC;AAGtC,cAAc,uCAAuC,CAAC;AAGtD,cAAc,yCAAyC,CAAC;AAGxD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,mDAAmD,CAAC;AAGlE,cAAc,mCAAmC,CAAC;AAGlD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,uCAAuC,CAAC;AAGtD,cAAc,yCAAyC,CAAC;AACxD,cAAc,qCAAqC,CAAC;AAGpD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,yBAAyB,CAAC"}
|