@ifsworld/granite-components 6.0.0-beta.2 → 6.0.0
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/esm2020/index.mjs +4 -4
- package/esm2020/lib/button/button.component.mjs +4 -4
- package/esm2020/lib/input-field/input-field.component.mjs +2 -2
- package/esm2020/lib/label/label.component.mjs +10 -4
- package/esm2020/table/ifsworld-granite-components-table.mjs +5 -0
- package/esm2020/table/index.mjs +6 -0
- package/esm2020/table/lib/cell/cell-align/cell-align-classes.directive.mjs +47 -0
- package/esm2020/{lib/table → table/lib}/cell/cell.mjs +1 -1
- package/esm2020/table/lib/cell/table-data-cell.component.mjs +25 -0
- package/esm2020/table/lib/cell/table-header-cell.component.mjs +14 -0
- package/esm2020/{lib/table → table/lib}/column/table-column.directive.mjs +5 -3
- package/esm2020/table/lib/table-constants.library.mjs +9 -0
- package/esm2020/table/lib/table.component.mjs +41 -0
- package/esm2020/table/lib/table.module.mjs +34 -0
- package/esm2020/table/lib/table.types.mjs +2 -0
- package/fesm2015/ifsworld-granite-components-table.mjs +190 -0
- package/fesm2015/ifsworld-granite-components-table.mjs.map +1 -0
- package/fesm2015/ifsworld-granite-components.mjs +57 -170
- package/fesm2015/ifsworld-granite-components.mjs.map +1 -1
- package/fesm2020/ifsworld-granite-components-table.mjs +190 -0
- package/fesm2020/ifsworld-granite-components-table.mjs.map +1 -0
- package/fesm2020/ifsworld-granite-components.mjs +57 -170
- package/fesm2020/ifsworld-granite-components.mjs.map +1 -1
- package/index.d.ts +3 -3
- package/lib/label/label.component.d.ts +3 -1
- package/package.json +17 -8
- package/styles/granite-primeng.theme.css +8041 -0
- package/table/README.md +3 -0
- package/table/ifsworld-granite-components-table.d.ts +5 -0
- package/table/index.d.ts +5 -0
- package/table/lib/cell/cell-align/cell-align-classes.directive.d.ts +10 -0
- package/{lib/table → table/lib}/cell/cell.d.ts +0 -0
- package/{lib/table → table/lib}/cell/table-data-cell.component.d.ts +2 -4
- package/{lib/table → table/lib}/cell/table-header-cell.component.d.ts +1 -1
- package/{lib/table → table/lib}/column/table-column.directive.d.ts +6 -5
- package/table/lib/table-constants.library.d.ts +8 -0
- package/{lib/table → table/lib}/table.component.d.ts +8 -10
- package/table/lib/table.module.d.ts +14 -0
- package/table/lib/table.types.d.ts +1 -0
- package/table/package.json +18 -0
- package/esm2020/lib/table/cell/table-data-cell.component.mjs +0 -26
- package/esm2020/lib/table/cell/table-header-cell.component.mjs +0 -12
- package/esm2020/lib/table/table-constants.library.mjs +0 -4
- package/esm2020/lib/table/table.component.mjs +0 -36
- package/esm2020/lib/table/table.module.mjs +0 -32
- package/lib/table/table-constants.library.d.ts +0 -3
- package/lib/table/table.module.d.ts +0 -14
package/index.d.ts
CHANGED
|
@@ -29,9 +29,6 @@ export * from './lib/checkbox/checkbox.component';
|
|
|
29
29
|
export * from './lib/checkbox/checkbox-group.component';
|
|
30
30
|
export * from './lib/button/button.module';
|
|
31
31
|
export * from './lib/button/button.component';
|
|
32
|
-
export * from './lib/table/table.module';
|
|
33
|
-
export * from './lib/table/table.component';
|
|
34
|
-
export * from './lib/table/column/table-column.directive';
|
|
35
32
|
export * from './lib/input-field/input-field.module';
|
|
36
33
|
export * from './lib/input-field/input-field.component';
|
|
37
34
|
export * from './lib/label/label.module';
|
|
@@ -43,3 +40,6 @@ export * from './lib/core/devices/client-output-desktop.directive';
|
|
|
43
40
|
export * from './lib/core/devices/client-input-touch.directive';
|
|
44
41
|
export * from './lib/core/devices/client-input-desktop.directive';
|
|
45
42
|
export * from './lib/core/common-behaviors/disabled';
|
|
43
|
+
export * from './lib/core/pipes/pure-pipes.module';
|
|
44
|
+
export * from './lib/core/pipes/title.pipe';
|
|
45
|
+
export * from './lib/core/types';
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class GraniteLabelComponent {
|
|
3
|
+
export declare class GraniteLabelComponent implements OnChanges {
|
|
3
4
|
for: string | null;
|
|
4
5
|
form: string | null;
|
|
5
6
|
required: boolean;
|
|
7
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
6
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<GraniteLabelComponent, never>;
|
|
7
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<GraniteLabelComponent, "granite-label", ["graniteLabel"], { "for": "for"; "form": "form"; "required": "required"; }, {}, never, ["*"]>;
|
|
8
10
|
}
|
package/package.json
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ifsworld/granite-components",
|
|
3
|
-
"version": "6.0.0
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": ">=13.0.0",
|
|
6
6
|
"@angular/common": ">=13.0.0",
|
|
7
7
|
"@angular/core": ">=13.0.0",
|
|
8
|
-
"@
|
|
9
|
-
"@
|
|
10
|
-
"@
|
|
8
|
+
"@angular/platform-browser": ">=13.0.0",
|
|
9
|
+
"@angular/animations": ">=13.0.0",
|
|
10
|
+
"@angular/platform-browser-dynamic": ">=13.0.0",
|
|
11
|
+
"@ifsworld/granite-icons": ">=1.0.0",
|
|
12
|
+
"@ifsworld/token-interfaces": ">=1.0.0",
|
|
13
|
+
"@ifsworld/granite-tokens": ">=4.0.0",
|
|
14
|
+
"rxjs": ">=6.0.0",
|
|
11
15
|
"@microsoft/applicationinsights-web": "^2.8.4",
|
|
12
16
|
"@microsoft/applicationinsights-clickanalytics-js": "^2.8.4",
|
|
13
|
-
"
|
|
14
|
-
"@angular/platform-browser": "13.3.11",
|
|
15
|
-
"@angular/animations": "13.3.11",
|
|
16
|
-
"@angular/platform-browser-dynamic": "13.3.11"
|
|
17
|
+
"primeng": "13.4.1"
|
|
17
18
|
},
|
|
18
19
|
"dependencies": {
|
|
19
20
|
"tslib": "^2.0.0"
|
|
@@ -35,6 +36,14 @@
|
|
|
35
36
|
"es2015": "./fesm2015/ifsworld-granite-components.mjs",
|
|
36
37
|
"node": "./fesm2015/ifsworld-granite-components.mjs",
|
|
37
38
|
"default": "./fesm2020/ifsworld-granite-components.mjs"
|
|
39
|
+
},
|
|
40
|
+
"./table": {
|
|
41
|
+
"types": "./table/ifsworld-granite-components-table.d.ts",
|
|
42
|
+
"esm2020": "./esm2020/table/ifsworld-granite-components-table.mjs",
|
|
43
|
+
"es2020": "./fesm2020/ifsworld-granite-components-table.mjs",
|
|
44
|
+
"es2015": "./fesm2015/ifsworld-granite-components-table.mjs",
|
|
45
|
+
"node": "./fesm2015/ifsworld-granite-components-table.mjs",
|
|
46
|
+
"default": "./fesm2020/ifsworld-granite-components-table.mjs"
|
|
38
47
|
}
|
|
39
48
|
},
|
|
40
49
|
"sideEffects": false
|