carbon-components-angular 5.12.1 → 5.12.2
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/docs/documentation/components/Table.html +134 -136
- package/docs/documentation/components/TableHead.html +42 -84
- package/docs/documentation/coverage.html +3 -3
- package/docs/documentation/js/search/search_index.js +2 -2
- package/docs/documentation/modules/ThemeModule/dependencies.svg +4 -4
- package/docs/documentation/modules/ThemeModule.html +4 -4
- package/docs/documentation/modules/TilesModule/dependencies.svg +4 -4
- package/docs/documentation/modules/TilesModule.html +4 -4
- package/docs/documentation/modules/TimePickerModule/dependencies.svg +4 -4
- package/docs/documentation/modules/TimePickerModule.html +4 -4
- package/docs/documentation/modules/TimePickerSelectModule/dependencies.svg +45 -49
- package/docs/documentation/modules/TimePickerSelectModule.html +45 -49
- package/docs/documentation/modules/ToggleModule/dependencies.svg +4 -4
- package/docs/documentation/modules/ToggleModule.html +4 -4
- package/docs/documentation/modules/ToggletipModule/dependencies.svg +37 -37
- package/docs/documentation/modules/ToggletipModule.html +37 -37
- package/docs/documentation/modules/UIShellModule/dependencies.svg +4 -4
- package/docs/documentation/modules/UIShellModule.html +4 -4
- package/docs/documentation.json +169 -180
- package/docs/storybook/5868.140403a3.iframe.bundle.js +1 -0
- package/docs/storybook/iframe.html +2 -2
- package/docs/storybook/main.e231b099.iframe.bundle.js +1 -0
- package/docs/storybook/project.json +1 -1
- package/docs/storybook/{runtime~main.73b5bfb0.iframe.bundle.js → runtime~main.6bac1547.iframe.bundle.js} +1 -1
- package/docs/storybook/table-table-stories.2c7e06c4.iframe.bundle.js +1 -0
- package/esm2020/table/head/table-head.component.mjs +2 -10
- package/esm2020/table/table.component.mjs +2 -4
- package/fesm2015/carbon-components-angular-table.mjs +2 -12
- package/fesm2015/carbon-components-angular-table.mjs.map +1 -1
- package/fesm2020/carbon-components-angular-table.mjs +2 -12
- package/fesm2020/carbon-components-angular-table.mjs.map +1 -1
- package/package.json +1 -1
- package/table/head/table-head.component.d.ts +1 -6
- package/docs/storybook/5868.2c92ef26.iframe.bundle.js +0 -1
- package/docs/storybook/main.fe6c3f7d.iframe.bundle.js +0 -1
- package/docs/storybook/table-table-stories.c0b6231b.iframe.bundle.js +0 -1
|
@@ -2011,10 +2011,6 @@ class TableHead {
|
|
|
2011
2011
|
* possible to set the sortable state on the header item to disable/enable sorting for only some headers.
|
|
2012
2012
|
*/
|
|
2013
2013
|
this.sortable = true;
|
|
2014
|
-
/**
|
|
2015
|
-
* Size of the table rows.
|
|
2016
|
-
*/
|
|
2017
|
-
this.size = "md";
|
|
2018
2014
|
/**
|
|
2019
2015
|
* Emits an index of the column that wants to be sorted.
|
|
2020
2016
|
*/
|
|
@@ -2088,7 +2084,7 @@ class TableHead {
|
|
|
2088
2084
|
}
|
|
2089
2085
|
}
|
|
2090
2086
|
TableHead.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: TableHead, deps: [{ token: i1.I18n }], target: i0.ɵɵFactoryTarget.Component });
|
|
2091
|
-
TableHead.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: TableHead, selector: "[cdsTableHead], [ibmTableHead]", inputs: { model: "model", showSelectionColumn: "showSelectionColumn", enableSingleSelect: "enableSingleSelect", selectAllCheckboxSomeSelected: "selectAllCheckboxSomeSelected", selectAllCheckbox: "selectAllCheckbox", skeleton: "skeleton", stickyHeader: "stickyHeader", sortable: "sortable",
|
|
2087
|
+
TableHead.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: TableHead, selector: "[cdsTableHead], [ibmTableHead]", inputs: { model: "model", showSelectionColumn: "showSelectionColumn", enableSingleSelect: "enableSingleSelect", selectAllCheckboxSomeSelected: "selectAllCheckboxSomeSelected", selectAllCheckbox: "selectAllCheckbox", skeleton: "skeleton", stickyHeader: "stickyHeader", sortable: "sortable", checkboxHeaderLabel: "checkboxHeaderLabel", sortDescendingLabel: "sortDescendingLabel", sortAscendingLabel: "sortAscendingLabel", filterTitle: "filterTitle" }, outputs: { sort: "sort", selectAll: "selectAll", deselectAll: "deselectAll" }, ngImport: i0, template: `
|
|
2092
2088
|
<ng-container *ngIf="model">
|
|
2093
2089
|
<tr>
|
|
2094
2090
|
<th
|
|
@@ -2112,7 +2108,6 @@ TableHead.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14
|
|
|
2112
2108
|
[checked]="selectAllCheckbox"
|
|
2113
2109
|
[indeterminate]="selectAllCheckboxSomeSelected"
|
|
2114
2110
|
[ariaLabel]="getCheckboxHeaderLabel()"
|
|
2115
|
-
[size]="size"
|
|
2116
2111
|
[skeleton]="skeleton"
|
|
2117
2112
|
[name]="model.getHeaderId('select')"
|
|
2118
2113
|
(change)="onSelectAllCheckboxChange()"
|
|
@@ -2174,7 +2169,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
2174
2169
|
[checked]="selectAllCheckbox"
|
|
2175
2170
|
[indeterminate]="selectAllCheckboxSomeSelected"
|
|
2176
2171
|
[ariaLabel]="getCheckboxHeaderLabel()"
|
|
2177
|
-
[size]="size"
|
|
2178
2172
|
[skeleton]="skeleton"
|
|
2179
2173
|
[name]="model.getHeaderId('select')"
|
|
2180
2174
|
(change)="onSelectAllCheckboxChange()"
|
|
@@ -2226,8 +2220,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
2226
2220
|
type: Input
|
|
2227
2221
|
}], sortable: [{
|
|
2228
2222
|
type: Input
|
|
2229
|
-
}], size: [{
|
|
2230
|
-
type: Input
|
|
2231
2223
|
}], checkboxHeaderLabel: [{
|
|
2232
2224
|
type: Input
|
|
2233
2225
|
}], sortDescendingLabel: [{
|
|
@@ -3826,7 +3818,6 @@ Table.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0
|
|
|
3826
3818
|
[checkboxHeaderLabel]="getCheckboxHeaderLabel()"
|
|
3827
3819
|
[filterTitle]="getFilterTitle()"
|
|
3828
3820
|
[model]="model"
|
|
3829
|
-
[size]="size"
|
|
3830
3821
|
[selectAllCheckbox]="selectAllCheckbox"
|
|
3831
3822
|
[selectAllCheckboxSomeSelected]="selectAllCheckboxSomeSelected"
|
|
3832
3823
|
[showSelectionColumn]="showSelectionColumn"
|
|
@@ -3877,7 +3868,7 @@ Table.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0
|
|
|
3877
3868
|
</tr>
|
|
3878
3869
|
</tfoot>
|
|
3879
3870
|
</table>
|
|
3880
|
-
`, isInline: true, styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: TableDirective, selector: "[cdsTable], [ibmTable]", inputs: ["sortable", "noBorder", "striped", "skeleton", "size"] }, { kind: "component", type: TableHead, selector: "[cdsTableHead], [ibmTableHead]", inputs: ["model", "showSelectionColumn", "enableSingleSelect", "selectAllCheckboxSomeSelected", "selectAllCheckbox", "skeleton", "stickyHeader", "sortable", "
|
|
3871
|
+
`, isInline: true, styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: TableDirective, selector: "[cdsTable], [ibmTable]", inputs: ["sortable", "noBorder", "striped", "skeleton", "size"] }, { kind: "component", type: TableHead, selector: "[cdsTableHead], [ibmTableHead]", inputs: ["model", "showSelectionColumn", "enableSingleSelect", "selectAllCheckboxSomeSelected", "selectAllCheckbox", "skeleton", "stickyHeader", "sortable", "checkboxHeaderLabel", "sortDescendingLabel", "sortAscendingLabel", "filterTitle"], outputs: ["sort", "selectAll", "deselectAll"] }, { kind: "component", type: TableBody, selector: "[cdsTableBody], [ibmTableBody]", inputs: ["model", "enableSingleSelect", "expandButtonAriaLabel", "checkboxRowLabel", "showSelectionColumn", "size", "selectionLabelColumn", "skeleton"], outputs: ["selectRow", "deselectRow", "rowClick"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }] });
|
|
3881
3872
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: Table, decorators: [{
|
|
3882
3873
|
type: Component,
|
|
3883
3874
|
args: [{ selector: "cds-table, ibm-table", template: `
|
|
@@ -3900,7 +3891,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
3900
3891
|
[checkboxHeaderLabel]="getCheckboxHeaderLabel()"
|
|
3901
3892
|
[filterTitle]="getFilterTitle()"
|
|
3902
3893
|
[model]="model"
|
|
3903
|
-
[size]="size"
|
|
3904
3894
|
[selectAllCheckbox]="selectAllCheckbox"
|
|
3905
3895
|
[selectAllCheckboxSomeSelected]="selectAllCheckboxSomeSelected"
|
|
3906
3896
|
[showSelectionColumn]="showSelectionColumn"
|