@frame-ui-ng/components 0.1.0-beta.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/LICENSE.md +9 -0
- package/README.md +31 -0
- package/accordion/src/styles/_vars.css +25 -0
- package/accordion/src/styles/accordion.css +87 -0
- package/alert/src/styles/_vars.css +28 -0
- package/alert/src/styles/alert.css +77 -0
- package/avatar/src/styles/_vars.css +34 -0
- package/avatar/src/styles/avatar.css +209 -0
- package/badge/src/styles/_vars.css +16 -0
- package/badge/src/styles/badge.css +125 -0
- package/breadcrumb/src/styles/_vars.css +16 -0
- package/breadcrumb/src/styles/breadcrumb.css +98 -0
- package/button/src/styles/_vars.css +20 -0
- package/button/src/styles/button-icon.css +18 -0
- package/button/src/styles/button-label.css +3 -0
- package/button/src/styles/button.css +243 -0
- package/button-group/src/styles/button-group.css +69 -0
- package/calendar/src/styles/_vars.css +29 -0
- package/calendar/src/styles/calendar.css +226 -0
- package/card/src/styles/_vars.css +17 -0
- package/card/src/styles/card.css +142 -0
- package/carousel/src/styles/_vars.css +7 -0
- package/carousel/src/styles/carousel.css +89 -0
- package/checkbox/src/styles/_vars.css +22 -0
- package/checkbox/src/styles/checkbox.css +95 -0
- package/collapsible/src/styles/_vars.css +13 -0
- package/collapsible/src/styles/collapsible.css +42 -0
- package/combobox/src/styles/_vars.css +60 -0
- package/combobox/src/styles/combobox.css +285 -0
- package/command/src/styles/_vars.css +37 -0
- package/command/src/styles/command.css +171 -0
- package/context-menu/src/styles/context-menu.css +5 -0
- package/date-picker/src/styles/_vars.css +29 -0
- package/date-picker/src/styles/date-picker.css +177 -0
- package/dropdown-menu/src/styles/_vars.css +34 -0
- package/dropdown-menu/src/styles/dropdown-menu-item.css +87 -0
- package/dropdown-menu/src/styles/dropdown-menu-motion.css +42 -0
- package/dropdown-menu/src/styles/dropdown-menu-panel.css +26 -0
- package/dropdown-menu/src/styles/dropdown-menu.css +4 -0
- package/empty/src/styles/_vars.css +23 -0
- package/empty/src/styles/empty.css +108 -0
- package/fesm2022/frame-ui-ng-components-accordion.mjs +268 -0
- package/fesm2022/frame-ui-ng-components-accordion.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-alert.mjs +102 -0
- package/fesm2022/frame-ui-ng-components-alert.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-avatar.mjs +197 -0
- package/fesm2022/frame-ui-ng-components-avatar.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-badge.mjs +120 -0
- package/fesm2022/frame-ui-ng-components-badge.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-breadcrumb.mjs +156 -0
- package/fesm2022/frame-ui-ng-components-breadcrumb.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-button-group.mjs +44 -0
- package/fesm2022/frame-ui-ng-components-button-group.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-button.mjs +150 -0
- package/fesm2022/frame-ui-ng-components-button.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-calendar.mjs +559 -0
- package/fesm2022/frame-ui-ng-components-calendar.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-card.mjs +169 -0
- package/fesm2022/frame-ui-ng-components-card.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-carousel.mjs +454 -0
- package/fesm2022/frame-ui-ng-components-carousel.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-checkbox.mjs +83 -0
- package/fesm2022/frame-ui-ng-components-checkbox.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-collapsible.mjs +191 -0
- package/fesm2022/frame-ui-ng-components-collapsible.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-combobox.mjs +859 -0
- package/fesm2022/frame-ui-ng-components-combobox.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-command.mjs +658 -0
- package/fesm2022/frame-ui-ng-components-command.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-context-menu.mjs +579 -0
- package/fesm2022/frame-ui-ng-components-context-menu.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-date-picker.mjs +512 -0
- package/fesm2022/frame-ui-ng-components-date-picker.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-dropdown-menu.mjs +647 -0
- package/fesm2022/frame-ui-ng-components-dropdown-menu.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-empty.mjs +134 -0
- package/fesm2022/frame-ui-ng-components-empty.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-field.mjs +210 -0
- package/fesm2022/frame-ui-ng-components-field.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-forms.mjs +89 -0
- package/fesm2022/frame-ui-ng-components-forms.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-hover-card.mjs +412 -0
- package/fesm2022/frame-ui-ng-components-hover-card.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-input-otp.mjs +327 -0
- package/fesm2022/frame-ui-ng-components-input-otp.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-input.mjs +250 -0
- package/fesm2022/frame-ui-ng-components-input.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-item.mjs +207 -0
- package/fesm2022/frame-ui-ng-components-item.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-menubar.mjs +371 -0
- package/fesm2022/frame-ui-ng-components-menubar.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-modal.mjs +525 -0
- package/fesm2022/frame-ui-ng-components-modal.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-navigation-menu.mjs +322 -0
- package/fesm2022/frame-ui-ng-components-navigation-menu.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-pagination.mjs +327 -0
- package/fesm2022/frame-ui-ng-components-pagination.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-popover.mjs +454 -0
- package/fesm2022/frame-ui-ng-components-popover.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-progress.mjs +96 -0
- package/fesm2022/frame-ui-ng-components-progress.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-radio-group.mjs +124 -0
- package/fesm2022/frame-ui-ng-components-radio-group.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-resizable.mjs +325 -0
- package/fesm2022/frame-ui-ng-components-resizable.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-select.mjs +434 -0
- package/fesm2022/frame-ui-ng-components-select.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-separator.mjs +51 -0
- package/fesm2022/frame-ui-ng-components-separator.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-sheet.mjs +514 -0
- package/fesm2022/frame-ui-ng-components-sheet.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-sidebar.mjs +628 -0
- package/fesm2022/frame-ui-ng-components-sidebar.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-skeleton.mjs +46 -0
- package/fesm2022/frame-ui-ng-components-skeleton.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-slider.mjs +279 -0
- package/fesm2022/frame-ui-ng-components-slider.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-spinner.mjs +51 -0
- package/fesm2022/frame-ui-ng-components-spinner.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-switch.mjs +130 -0
- package/fesm2022/frame-ui-ng-components-switch.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-table.mjs +594 -0
- package/fesm2022/frame-ui-ng-components-table.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-tabs.mjs +208 -0
- package/fesm2022/frame-ui-ng-components-tabs.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-textarea.mjs +40 -0
- package/fesm2022/frame-ui-ng-components-textarea.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-toast.mjs +346 -0
- package/fesm2022/frame-ui-ng-components-toast.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-toggle.mjs +127 -0
- package/fesm2022/frame-ui-ng-components-toggle.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-tooltip.mjs +425 -0
- package/fesm2022/frame-ui-ng-components-tooltip.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components-virtual-scroll.mjs +321 -0
- package/fesm2022/frame-ui-ng-components-virtual-scroll.mjs.map +1 -0
- package/fesm2022/frame-ui-ng-components.mjs +10278 -0
- package/fesm2022/frame-ui-ng-components.mjs.map +1 -0
- package/field/src/styles/_vars.css +20 -0
- package/field/src/styles/field.css +165 -0
- package/hover-card/src/styles/_vars.css +21 -0
- package/hover-card/src/styles/hover-card.css +76 -0
- package/input/src/styles/_vars.css +65 -0
- package/input/src/styles/input-group.css +112 -0
- package/input/src/styles/input.css +163 -0
- package/input-otp/src/styles/_vars.css +21 -0
- package/input-otp/src/styles/input-otp.css +116 -0
- package/item/src/styles/_vars.css +34 -0
- package/item/src/styles/item.css +187 -0
- package/menubar/src/styles/_vars.css +22 -0
- package/menubar/src/styles/menubar.css +70 -0
- package/modal/src/styles/_vars.css +18 -0
- package/modal/src/styles/modal.css +179 -0
- package/navigation-menu/src/styles/_vars.css +45 -0
- package/navigation-menu/src/styles/navigation-menu.css +245 -0
- package/package.json +243 -0
- package/pagination/src/styles/_vars.css +22 -0
- package/pagination/src/styles/pagination.css +138 -0
- package/popover/src/styles/_vars.css +24 -0
- package/popover/src/styles/popover.css +101 -0
- package/progress/src/styles/_vars.css +15 -0
- package/progress/src/styles/progress.css +64 -0
- package/radio-group/src/styles/_vars.css +29 -0
- package/radio-group/src/styles/radio-group.css +137 -0
- package/resizable/src/styles/_vars.css +20 -0
- package/resizable/src/styles/resizable.css +130 -0
- package/select/src/styles/_vars.css +28 -0
- package/select/src/styles/select-content.css +19 -0
- package/select/src/styles/select-feedback.css +6 -0
- package/select/src/styles/select-item.css +69 -0
- package/select/src/styles/select-trigger.css +95 -0
- package/select/src/styles/select.css +5 -0
- package/separator/src/styles/_vars.css +9 -0
- package/separator/src/styles/separator.css +25 -0
- package/sheet/src/styles/_vars.css +18 -0
- package/sheet/src/styles/sheet.css +215 -0
- package/sidebar/src/styles/_vars.css +24 -0
- package/sidebar/src/styles/sidebar.css +531 -0
- package/skeleton/src/styles/_vars.css +8 -0
- package/skeleton/src/styles/skeleton.css +40 -0
- package/slider/src/styles/_vars.css +17 -0
- package/slider/src/styles/slider.css +147 -0
- package/spinner/src/styles/_vars.css +9 -0
- package/spinner/src/styles/spinner.css +62 -0
- package/src/styles/components.css +47 -0
- package/styles/components.css +47 -0
- package/styles.css +49 -0
- package/switch/src/styles/_vars.css +34 -0
- package/switch/src/styles/switch.css +131 -0
- package/table/src/styles/_vars.css +25 -0
- package/table/src/styles/table.css +245 -0
- package/tabs/src/styles/_vars.css +23 -0
- package/tabs/src/styles/tabs.css +164 -0
- package/textarea/src/styles/_vars.css +20 -0
- package/textarea/src/styles/textarea.css +60 -0
- package/toast/src/styles/_vars.css +47 -0
- package/toast/src/styles/toast.css +314 -0
- package/toggle/src/styles/_vars.css +24 -0
- package/toggle/src/styles/toggle.css +110 -0
- package/tooltip/src/styles/_vars.css +21 -0
- package/tooltip/src/styles/tooltip.css +103 -0
- package/types/frame-ui-ng-components-accordion.d.ts +75 -0
- package/types/frame-ui-ng-components-alert.d.ts +30 -0
- package/types/frame-ui-ng-components-avatar.d.ts +65 -0
- package/types/frame-ui-ng-components-badge.d.ts +35 -0
- package/types/frame-ui-ng-components-breadcrumb.d.ts +40 -0
- package/types/frame-ui-ng-components-button-group.d.ts +18 -0
- package/types/frame-ui-ng-components-button.d.ts +50 -0
- package/types/frame-ui-ng-components-calendar.d.ts +101 -0
- package/types/frame-ui-ng-components-card.d.ts +51 -0
- package/types/frame-ui-ng-components-carousel.d.ts +117 -0
- package/types/frame-ui-ng-components-checkbox.d.ts +25 -0
- package/types/frame-ui-ng-components-collapsible.d.ts +55 -0
- package/types/frame-ui-ng-components-combobox.d.ts +201 -0
- package/types/frame-ui-ng-components-command.d.ts +198 -0
- package/types/frame-ui-ng-components-context-menu.d.ts +149 -0
- package/types/frame-ui-ng-components-date-picker.d.ts +95 -0
- package/types/frame-ui-ng-components-dropdown-menu.d.ts +182 -0
- package/types/frame-ui-ng-components-empty.d.ts +44 -0
- package/types/frame-ui-ng-components-field.d.ts +60 -0
- package/types/frame-ui-ng-components-forms.d.ts +39 -0
- package/types/frame-ui-ng-components-hover-card.d.ts +94 -0
- package/types/frame-ui-ng-components-input-otp.d.ts +70 -0
- package/types/frame-ui-ng-components-input.d.ts +67 -0
- package/types/frame-ui-ng-components-item.d.ts +62 -0
- package/types/frame-ui-ng-components-menubar.d.ts +76 -0
- package/types/frame-ui-ng-components-modal.d.ts +148 -0
- package/types/frame-ui-ng-components-navigation-menu.d.ts +74 -0
- package/types/frame-ui-ng-components-pagination.d.ts +79 -0
- package/types/frame-ui-ng-components-popover.d.ts +95 -0
- package/types/frame-ui-ng-components-progress.d.ts +24 -0
- package/types/frame-ui-ng-components-radio-group.d.ts +40 -0
- package/types/frame-ui-ng-components-resizable.d.ts +61 -0
- package/types/frame-ui-ng-components-select.d.ts +114 -0
- package/types/frame-ui-ng-components-separator.d.ts +19 -0
- package/types/frame-ui-ng-components-sheet.d.ts +146 -0
- package/types/frame-ui-ng-components-sidebar.d.ts +163 -0
- package/types/frame-ui-ng-components-skeleton.d.ts +18 -0
- package/types/frame-ui-ng-components-slider.d.ts +56 -0
- package/types/frame-ui-ng-components-spinner.d.ts +23 -0
- package/types/frame-ui-ng-components-switch.d.ts +38 -0
- package/types/frame-ui-ng-components-table.d.ts +125 -0
- package/types/frame-ui-ng-components-tabs.d.ts +62 -0
- package/types/frame-ui-ng-components-textarea.d.ts +14 -0
- package/types/frame-ui-ng-components-toast.d.ts +74 -0
- package/types/frame-ui-ng-components-toggle.d.ts +45 -0
- package/types/frame-ui-ng-components-tooltip.d.ts +99 -0
- package/types/frame-ui-ng-components-virtual-scroll.d.ts +106 -0
- package/types/frame-ui-ng-components.d.ts +2746 -0
- package/virtual-scroll/src/styles/virtual-scroll.css +54 -0
|
@@ -0,0 +1,594 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { input, booleanAttribute, ViewEncapsulation, ChangeDetectionStrategy, Component, Directive, NgModule } from '@angular/core';
|
|
3
|
+
import * as i1 from '@angular/cdk/table';
|
|
4
|
+
import { CdkTable, DataRowOutlet, FooterRowOutlet, HeaderRowOutlet, NoDataRowOutlet, CDK_TABLE, STICKY_POSITIONING_LISTENER, CdkColumnDef, CdkHeaderCellDef, CdkCellDef, CdkFooterCellDef, CdkHeaderRow, CdkCellOutlet, CDK_ROW_TEMPLATE, CdkRow, CdkFooterRow, CdkHeaderRowDef, CdkRowDef, CdkFooterRowDef, CdkNoDataRow, CdkTableModule } from '@angular/cdk/table';
|
|
5
|
+
|
|
6
|
+
const FR_TABLE_DENSITIES = ['sm', 'md', 'lg'];
|
|
7
|
+
const FR_TABLE_VARIANTS = ['default', 'outline', 'card'];
|
|
8
|
+
class FrTable extends CdkTable {
|
|
9
|
+
density = input('md', ...(ngDevMode ? [{ debugName: "density" }] : /* istanbul ignore next */ []));
|
|
10
|
+
hover = input(true, { ...(ngDevMode ? { debugName: "hover" } : /* istanbul ignore next */ {}), transform: booleanAttribute });
|
|
11
|
+
striped = input(false, { ...(ngDevMode ? { debugName: "striped" } : /* istanbul ignore next */ {}), transform: booleanAttribute });
|
|
12
|
+
variant = input('default', ...(ngDevMode ? [{ debugName: "variant" }] : /* istanbul ignore next */ []));
|
|
13
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTable, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
14
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.16", type: FrTable, isStandalone: true, selector: "table[frTable], frame-table", inputs: { density: { classPropertyName: "density", publicName: "density", isSignal: true, isRequired: false, transformFunction: null }, hover: { classPropertyName: "hover", publicName: "hover", isSignal: true, isRequired: false, transformFunction: null }, striped: { classPropertyName: "striped", publicName: "striped", isSignal: true, isRequired: false, transformFunction: null }, variant: { classPropertyName: "variant", publicName: "variant", isSignal: true, isRequired: false, transformFunction: null } }, host: { properties: { "class.cdk-table-fixed-layout": "fixedLayout", "attr.data-density": "density()", "attr.data-variant": "variant()", "attr.data-striped": "striped()", "attr.data-hover": "hover()" }, classAttribute: "cdk-table frame-table" }, providers: [
|
|
15
|
+
{
|
|
16
|
+
provide: CdkTable,
|
|
17
|
+
useExisting: FrTable,
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
provide: CDK_TABLE,
|
|
21
|
+
useExisting: FrTable,
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
provide: STICKY_POSITIONING_LISTENER,
|
|
25
|
+
useValue: null,
|
|
26
|
+
},
|
|
27
|
+
], exportAs: ["frTable"], usesInheritance: true, ngImport: i0, template: `
|
|
28
|
+
<ng-content select="caption" />
|
|
29
|
+
<ng-content select="colgroup, col" />
|
|
30
|
+
|
|
31
|
+
@if (_isServer) {
|
|
32
|
+
<ng-content />
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@if (_isNativeHtmlTable) {
|
|
36
|
+
<thead role="rowgroup" frTableHeader>
|
|
37
|
+
<ng-container headerRowOutlet />
|
|
38
|
+
</thead>
|
|
39
|
+
<tbody role="rowgroup" frTableBody>
|
|
40
|
+
<ng-container rowOutlet />
|
|
41
|
+
<ng-container noDataRowOutlet />
|
|
42
|
+
</tbody>
|
|
43
|
+
<tfoot role="rowgroup" frTableFooter>
|
|
44
|
+
<ng-container footerRowOutlet />
|
|
45
|
+
</tfoot>
|
|
46
|
+
} @else {
|
|
47
|
+
<ng-container headerRowOutlet />
|
|
48
|
+
<ng-container rowOutlet />
|
|
49
|
+
<ng-container noDataRowOutlet />
|
|
50
|
+
<ng-container footerRowOutlet />
|
|
51
|
+
}
|
|
52
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: DataRowOutlet, selector: "[rowOutlet]" }, { kind: "directive", type: FooterRowOutlet, selector: "[footerRowOutlet]" }, { kind: "directive", type: HeaderRowOutlet, selector: "[headerRowOutlet]" }, { kind: "directive", type: NoDataRowOutlet, selector: "[noDataRowOutlet]" }], changeDetection: i0.ChangeDetectionStrategy.Eager, encapsulation: i0.ViewEncapsulation.None });
|
|
53
|
+
}
|
|
54
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTable, decorators: [{
|
|
55
|
+
type: Component,
|
|
56
|
+
args: [{
|
|
57
|
+
selector: 'table[frTable], frame-table',
|
|
58
|
+
exportAs: 'frTable',
|
|
59
|
+
imports: [
|
|
60
|
+
DataRowOutlet,
|
|
61
|
+
FooterRowOutlet,
|
|
62
|
+
HeaderRowOutlet,
|
|
63
|
+
NoDataRowOutlet,
|
|
64
|
+
],
|
|
65
|
+
host: {
|
|
66
|
+
class: 'cdk-table frame-table',
|
|
67
|
+
'[class.cdk-table-fixed-layout]': 'fixedLayout',
|
|
68
|
+
'[attr.data-density]': 'density()',
|
|
69
|
+
'[attr.data-variant]': 'variant()',
|
|
70
|
+
'[attr.data-striped]': 'striped()',
|
|
71
|
+
'[attr.data-hover]': 'hover()',
|
|
72
|
+
},
|
|
73
|
+
providers: [
|
|
74
|
+
{
|
|
75
|
+
provide: CdkTable,
|
|
76
|
+
useExisting: FrTable,
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
provide: CDK_TABLE,
|
|
80
|
+
useExisting: FrTable,
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
provide: STICKY_POSITIONING_LISTENER,
|
|
84
|
+
useValue: null,
|
|
85
|
+
},
|
|
86
|
+
],
|
|
87
|
+
changeDetection: ChangeDetectionStrategy.Default,
|
|
88
|
+
encapsulation: ViewEncapsulation.None,
|
|
89
|
+
template: `
|
|
90
|
+
<ng-content select="caption" />
|
|
91
|
+
<ng-content select="colgroup, col" />
|
|
92
|
+
|
|
93
|
+
@if (_isServer) {
|
|
94
|
+
<ng-content />
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
@if (_isNativeHtmlTable) {
|
|
98
|
+
<thead role="rowgroup" frTableHeader>
|
|
99
|
+
<ng-container headerRowOutlet />
|
|
100
|
+
</thead>
|
|
101
|
+
<tbody role="rowgroup" frTableBody>
|
|
102
|
+
<ng-container rowOutlet />
|
|
103
|
+
<ng-container noDataRowOutlet />
|
|
104
|
+
</tbody>
|
|
105
|
+
<tfoot role="rowgroup" frTableFooter>
|
|
106
|
+
<ng-container footerRowOutlet />
|
|
107
|
+
</tfoot>
|
|
108
|
+
} @else {
|
|
109
|
+
<ng-container headerRowOutlet />
|
|
110
|
+
<ng-container rowOutlet />
|
|
111
|
+
<ng-container noDataRowOutlet />
|
|
112
|
+
<ng-container footerRowOutlet />
|
|
113
|
+
}
|
|
114
|
+
`,
|
|
115
|
+
}]
|
|
116
|
+
}], propDecorators: { density: [{ type: i0.Input, args: [{ isSignal: true, alias: "density", required: false }] }], hover: [{ type: i0.Input, args: [{ isSignal: true, alias: "hover", required: false }] }], striped: [{ type: i0.Input, args: [{ isSignal: true, alias: "striped", required: false }] }], variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }] } });
|
|
117
|
+
class FrTableContainer {
|
|
118
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableContainer, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
119
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrTableContainer, isStandalone: true, selector: "[frTableContainer], frame-table-container", host: { classAttribute: "frame-table-container" }, ngImport: i0 });
|
|
120
|
+
}
|
|
121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableContainer, decorators: [{
|
|
122
|
+
type: Directive,
|
|
123
|
+
args: [{
|
|
124
|
+
selector: '[frTableContainer], frame-table-container',
|
|
125
|
+
host: {
|
|
126
|
+
class: 'frame-table-container',
|
|
127
|
+
},
|
|
128
|
+
}]
|
|
129
|
+
}] });
|
|
130
|
+
class FrTableCaption {
|
|
131
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableCaption, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
132
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrTableCaption, isStandalone: true, selector: "[frTableCaption], frame-table-caption, caption[frTableCaption]", host: { classAttribute: "frame-table__caption" }, ngImport: i0 });
|
|
133
|
+
}
|
|
134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableCaption, decorators: [{
|
|
135
|
+
type: Directive,
|
|
136
|
+
args: [{
|
|
137
|
+
selector: '[frTableCaption], frame-table-caption, caption[frTableCaption]',
|
|
138
|
+
host: {
|
|
139
|
+
class: 'frame-table__caption',
|
|
140
|
+
},
|
|
141
|
+
}]
|
|
142
|
+
}] });
|
|
143
|
+
class FrTableHeader {
|
|
144
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableHeader, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
145
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrTableHeader, isStandalone: true, selector: "[frTableHeader], frame-table-header, thead[frTableHeader]", host: { classAttribute: "frame-table__header" }, ngImport: i0 });
|
|
146
|
+
}
|
|
147
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableHeader, decorators: [{
|
|
148
|
+
type: Directive,
|
|
149
|
+
args: [{
|
|
150
|
+
selector: '[frTableHeader], frame-table-header, thead[frTableHeader]',
|
|
151
|
+
host: {
|
|
152
|
+
class: 'frame-table__header',
|
|
153
|
+
},
|
|
154
|
+
}]
|
|
155
|
+
}] });
|
|
156
|
+
class FrTableBody {
|
|
157
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableBody, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
158
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrTableBody, isStandalone: true, selector: "[frTableBody], frame-table-body, tbody[frTableBody]", host: { classAttribute: "frame-table__body" }, ngImport: i0 });
|
|
159
|
+
}
|
|
160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableBody, decorators: [{
|
|
161
|
+
type: Directive,
|
|
162
|
+
args: [{
|
|
163
|
+
selector: '[frTableBody], frame-table-body, tbody[frTableBody]',
|
|
164
|
+
host: {
|
|
165
|
+
class: 'frame-table__body',
|
|
166
|
+
},
|
|
167
|
+
}]
|
|
168
|
+
}] });
|
|
169
|
+
class FrTableFooter {
|
|
170
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableFooter, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
171
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrTableFooter, isStandalone: true, selector: "[frTableFooter], frame-table-footer, tfoot[frTableFooter]", host: { classAttribute: "frame-table__footer" }, ngImport: i0 });
|
|
172
|
+
}
|
|
173
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableFooter, decorators: [{
|
|
174
|
+
type: Directive,
|
|
175
|
+
args: [{
|
|
176
|
+
selector: '[frTableFooter], frame-table-footer, tfoot[frTableFooter]',
|
|
177
|
+
host: {
|
|
178
|
+
class: 'frame-table__footer',
|
|
179
|
+
},
|
|
180
|
+
}]
|
|
181
|
+
}] });
|
|
182
|
+
class FrColumnDef {
|
|
183
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrColumnDef, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
184
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrColumnDef, isStandalone: true, selector: "[frColumnDef]", hostDirectives: [{ directive: i1.CdkColumnDef, inputs: ["cdkColumnDef", "frColumnDef", "sticky", "sticky", "stickyEnd", "stickyEnd"] }], ngImport: i0 });
|
|
185
|
+
}
|
|
186
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrColumnDef, decorators: [{
|
|
187
|
+
type: Directive,
|
|
188
|
+
args: [{
|
|
189
|
+
selector: '[frColumnDef]',
|
|
190
|
+
hostDirectives: [
|
|
191
|
+
{
|
|
192
|
+
directive: CdkColumnDef,
|
|
193
|
+
inputs: ['cdkColumnDef: frColumnDef', 'sticky', 'stickyEnd'],
|
|
194
|
+
},
|
|
195
|
+
],
|
|
196
|
+
}]
|
|
197
|
+
}] });
|
|
198
|
+
class FrHeaderCellDef {
|
|
199
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrHeaderCellDef, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
200
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrHeaderCellDef, isStandalone: true, selector: "[frHeaderCellDef]", hostDirectives: [{ directive: i1.CdkHeaderCellDef }], ngImport: i0 });
|
|
201
|
+
}
|
|
202
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrHeaderCellDef, decorators: [{
|
|
203
|
+
type: Directive,
|
|
204
|
+
args: [{
|
|
205
|
+
selector: '[frHeaderCellDef]',
|
|
206
|
+
hostDirectives: [CdkHeaderCellDef],
|
|
207
|
+
}]
|
|
208
|
+
}] });
|
|
209
|
+
class FrCellDef {
|
|
210
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrCellDef, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
211
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrCellDef, isStandalone: true, selector: "[frCellDef]", hostDirectives: [{ directive: i1.CdkCellDef }], ngImport: i0 });
|
|
212
|
+
}
|
|
213
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrCellDef, decorators: [{
|
|
214
|
+
type: Directive,
|
|
215
|
+
args: [{
|
|
216
|
+
selector: '[frCellDef]',
|
|
217
|
+
hostDirectives: [CdkCellDef],
|
|
218
|
+
}]
|
|
219
|
+
}] });
|
|
220
|
+
class FrFooterCellDef {
|
|
221
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrFooterCellDef, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
222
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrFooterCellDef, isStandalone: true, selector: "[frFooterCellDef]", hostDirectives: [{ directive: i1.CdkFooterCellDef }], ngImport: i0 });
|
|
223
|
+
}
|
|
224
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrFooterCellDef, decorators: [{
|
|
225
|
+
type: Directive,
|
|
226
|
+
args: [{
|
|
227
|
+
selector: '[frFooterCellDef]',
|
|
228
|
+
hostDirectives: [CdkFooterCellDef],
|
|
229
|
+
}]
|
|
230
|
+
}] });
|
|
231
|
+
class FrHeaderCell {
|
|
232
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrHeaderCell, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
233
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrHeaderCell, isStandalone: true, selector: "th[frHeaderCell], frame-header-cell", host: { classAttribute: "frame-table__head" }, ngImport: i0 });
|
|
234
|
+
}
|
|
235
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrHeaderCell, decorators: [{
|
|
236
|
+
type: Directive,
|
|
237
|
+
args: [{
|
|
238
|
+
selector: 'th[frHeaderCell], frame-header-cell',
|
|
239
|
+
host: {
|
|
240
|
+
class: 'frame-table__head',
|
|
241
|
+
},
|
|
242
|
+
}]
|
|
243
|
+
}] });
|
|
244
|
+
class FrCell {
|
|
245
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrCell, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
246
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrCell, isStandalone: true, selector: "td[frCell], frame-cell", host: { classAttribute: "frame-table__cell" }, ngImport: i0 });
|
|
247
|
+
}
|
|
248
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrCell, decorators: [{
|
|
249
|
+
type: Directive,
|
|
250
|
+
args: [{
|
|
251
|
+
selector: 'td[frCell], frame-cell',
|
|
252
|
+
host: {
|
|
253
|
+
class: 'frame-table__cell',
|
|
254
|
+
},
|
|
255
|
+
}]
|
|
256
|
+
}] });
|
|
257
|
+
class FrFooterCell {
|
|
258
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrFooterCell, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
259
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrFooterCell, isStandalone: true, selector: "td[frFooterCell], frame-footer-cell", host: { classAttribute: "frame-table__cell frame-table__footer-cell" }, ngImport: i0 });
|
|
260
|
+
}
|
|
261
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrFooterCell, decorators: [{
|
|
262
|
+
type: Directive,
|
|
263
|
+
args: [{
|
|
264
|
+
selector: 'td[frFooterCell], frame-footer-cell',
|
|
265
|
+
host: {
|
|
266
|
+
class: 'frame-table__cell frame-table__footer-cell',
|
|
267
|
+
},
|
|
268
|
+
}]
|
|
269
|
+
}] });
|
|
270
|
+
class FrHeaderRow extends CdkHeaderRow {
|
|
271
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrHeaderRow, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
272
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: FrHeaderRow, isStandalone: true, selector: "tr[frHeaderRow], frame-header-row", host: { attributes: { "role": "row" }, classAttribute: "cdk-header-row frame-table__row frame-table__header-row" }, providers: [
|
|
273
|
+
{
|
|
274
|
+
provide: CdkHeaderRow,
|
|
275
|
+
useExisting: FrHeaderRow,
|
|
276
|
+
},
|
|
277
|
+
], usesInheritance: true, ngImport: i0, template: "<ng-container cdkCellOutlet></ng-container>", isInline: true, dependencies: [{ kind: "directive", type: CdkCellOutlet, selector: "[cdkCellOutlet]" }], changeDetection: i0.ChangeDetectionStrategy.Eager, encapsulation: i0.ViewEncapsulation.None });
|
|
278
|
+
}
|
|
279
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrHeaderRow, decorators: [{
|
|
280
|
+
type: Component,
|
|
281
|
+
args: [{
|
|
282
|
+
selector: 'tr[frHeaderRow], frame-header-row',
|
|
283
|
+
imports: [CdkCellOutlet],
|
|
284
|
+
host: {
|
|
285
|
+
class: 'cdk-header-row frame-table__row frame-table__header-row',
|
|
286
|
+
role: 'row',
|
|
287
|
+
},
|
|
288
|
+
providers: [
|
|
289
|
+
{
|
|
290
|
+
provide: CdkHeaderRow,
|
|
291
|
+
useExisting: FrHeaderRow,
|
|
292
|
+
},
|
|
293
|
+
],
|
|
294
|
+
changeDetection: ChangeDetectionStrategy.Default,
|
|
295
|
+
encapsulation: ViewEncapsulation.None,
|
|
296
|
+
template: CDK_ROW_TEMPLATE,
|
|
297
|
+
}]
|
|
298
|
+
}] });
|
|
299
|
+
class FrRow extends CdkRow {
|
|
300
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrRow, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
301
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: FrRow, isStandalone: true, selector: "tr[frRow], frame-row", host: { attributes: { "role": "row" }, classAttribute: "cdk-row frame-table__row" }, providers: [
|
|
302
|
+
{
|
|
303
|
+
provide: CdkRow,
|
|
304
|
+
useExisting: FrRow,
|
|
305
|
+
},
|
|
306
|
+
], usesInheritance: true, ngImport: i0, template: "<ng-container cdkCellOutlet></ng-container>", isInline: true, dependencies: [{ kind: "directive", type: CdkCellOutlet, selector: "[cdkCellOutlet]" }], changeDetection: i0.ChangeDetectionStrategy.Eager, encapsulation: i0.ViewEncapsulation.None });
|
|
307
|
+
}
|
|
308
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrRow, decorators: [{
|
|
309
|
+
type: Component,
|
|
310
|
+
args: [{
|
|
311
|
+
selector: 'tr[frRow], frame-row',
|
|
312
|
+
imports: [CdkCellOutlet],
|
|
313
|
+
host: {
|
|
314
|
+
class: 'cdk-row frame-table__row',
|
|
315
|
+
role: 'row',
|
|
316
|
+
},
|
|
317
|
+
providers: [
|
|
318
|
+
{
|
|
319
|
+
provide: CdkRow,
|
|
320
|
+
useExisting: FrRow,
|
|
321
|
+
},
|
|
322
|
+
],
|
|
323
|
+
changeDetection: ChangeDetectionStrategy.Default,
|
|
324
|
+
encapsulation: ViewEncapsulation.None,
|
|
325
|
+
template: CDK_ROW_TEMPLATE,
|
|
326
|
+
}]
|
|
327
|
+
}] });
|
|
328
|
+
class FrFooterRow extends CdkFooterRow {
|
|
329
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrFooterRow, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
330
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.16", type: FrFooterRow, isStandalone: true, selector: "tr[frFooterRow], frame-footer-row", host: { attributes: { "role": "row" }, classAttribute: "cdk-footer-row frame-table__row frame-table__footer-row" }, providers: [
|
|
331
|
+
{
|
|
332
|
+
provide: CdkFooterRow,
|
|
333
|
+
useExisting: FrFooterRow,
|
|
334
|
+
},
|
|
335
|
+
], usesInheritance: true, ngImport: i0, template: "<ng-container cdkCellOutlet></ng-container>", isInline: true, dependencies: [{ kind: "directive", type: CdkCellOutlet, selector: "[cdkCellOutlet]" }], changeDetection: i0.ChangeDetectionStrategy.Eager, encapsulation: i0.ViewEncapsulation.None });
|
|
336
|
+
}
|
|
337
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrFooterRow, decorators: [{
|
|
338
|
+
type: Component,
|
|
339
|
+
args: [{
|
|
340
|
+
selector: 'tr[frFooterRow], frame-footer-row',
|
|
341
|
+
imports: [CdkCellOutlet],
|
|
342
|
+
host: {
|
|
343
|
+
class: 'cdk-footer-row frame-table__row frame-table__footer-row',
|
|
344
|
+
role: 'row',
|
|
345
|
+
},
|
|
346
|
+
providers: [
|
|
347
|
+
{
|
|
348
|
+
provide: CdkFooterRow,
|
|
349
|
+
useExisting: FrFooterRow,
|
|
350
|
+
},
|
|
351
|
+
],
|
|
352
|
+
changeDetection: ChangeDetectionStrategy.Default,
|
|
353
|
+
encapsulation: ViewEncapsulation.None,
|
|
354
|
+
template: CDK_ROW_TEMPLATE,
|
|
355
|
+
}]
|
|
356
|
+
}] });
|
|
357
|
+
class FrHeaderRowDef {
|
|
358
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrHeaderRowDef, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
359
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrHeaderRowDef, isStandalone: true, selector: "[frHeaderRowDef]", hostDirectives: [{ directive: i1.CdkHeaderRowDef, inputs: ["cdkHeaderRowDef", "frHeaderRowDef", "cdkHeaderRowDefSticky", "frHeaderRowDefSticky"] }], ngImport: i0 });
|
|
360
|
+
}
|
|
361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrHeaderRowDef, decorators: [{
|
|
362
|
+
type: Directive,
|
|
363
|
+
args: [{
|
|
364
|
+
selector: '[frHeaderRowDef]',
|
|
365
|
+
hostDirectives: [
|
|
366
|
+
{
|
|
367
|
+
directive: CdkHeaderRowDef,
|
|
368
|
+
inputs: ['cdkHeaderRowDef: frHeaderRowDef', 'cdkHeaderRowDefSticky: frHeaderRowDefSticky'],
|
|
369
|
+
},
|
|
370
|
+
],
|
|
371
|
+
}]
|
|
372
|
+
}] });
|
|
373
|
+
class FrRowDef {
|
|
374
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrRowDef, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
375
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrRowDef, isStandalone: true, selector: "[frRowDef]", hostDirectives: [{ directive: i1.CdkRowDef, inputs: ["cdkRowDefColumns", "frRowDefColumns", "cdkRowDefWhen", "frRowDefWhen"] }], ngImport: i0 });
|
|
376
|
+
}
|
|
377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrRowDef, decorators: [{
|
|
378
|
+
type: Directive,
|
|
379
|
+
args: [{
|
|
380
|
+
selector: '[frRowDef]',
|
|
381
|
+
hostDirectives: [
|
|
382
|
+
{
|
|
383
|
+
directive: CdkRowDef,
|
|
384
|
+
inputs: ['cdkRowDefColumns: frRowDefColumns', 'cdkRowDefWhen: frRowDefWhen'],
|
|
385
|
+
},
|
|
386
|
+
],
|
|
387
|
+
}]
|
|
388
|
+
}] });
|
|
389
|
+
class FrFooterRowDef {
|
|
390
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrFooterRowDef, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
391
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrFooterRowDef, isStandalone: true, selector: "[frFooterRowDef]", hostDirectives: [{ directive: i1.CdkFooterRowDef, inputs: ["cdkFooterRowDef", "frFooterRowDef", "cdkFooterRowDefSticky", "frFooterRowDefSticky"] }], ngImport: i0 });
|
|
392
|
+
}
|
|
393
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrFooterRowDef, decorators: [{
|
|
394
|
+
type: Directive,
|
|
395
|
+
args: [{
|
|
396
|
+
selector: '[frFooterRowDef]',
|
|
397
|
+
hostDirectives: [
|
|
398
|
+
{
|
|
399
|
+
directive: CdkFooterRowDef,
|
|
400
|
+
inputs: ['cdkFooterRowDef: frFooterRowDef', 'cdkFooterRowDefSticky: frFooterRowDefSticky'],
|
|
401
|
+
},
|
|
402
|
+
],
|
|
403
|
+
}]
|
|
404
|
+
}] });
|
|
405
|
+
class FrNoDataRow {
|
|
406
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrNoDataRow, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
407
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrNoDataRow, isStandalone: true, selector: "ng-template[frNoDataRow]", hostDirectives: [{ directive: i1.CdkNoDataRow }], ngImport: i0 });
|
|
408
|
+
}
|
|
409
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrNoDataRow, decorators: [{
|
|
410
|
+
type: Directive,
|
|
411
|
+
args: [{
|
|
412
|
+
selector: 'ng-template[frNoDataRow]',
|
|
413
|
+
hostDirectives: [CdkNoDataRow],
|
|
414
|
+
}]
|
|
415
|
+
}] });
|
|
416
|
+
class FrTableNumeric {
|
|
417
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableNumeric, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
418
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrTableNumeric, isStandalone: true, selector: "[frTableNumeric]", host: { classAttribute: "frame-table__numeric" }, ngImport: i0 });
|
|
419
|
+
}
|
|
420
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableNumeric, decorators: [{
|
|
421
|
+
type: Directive,
|
|
422
|
+
args: [{
|
|
423
|
+
selector: '[frTableNumeric]',
|
|
424
|
+
host: {
|
|
425
|
+
class: 'frame-table__numeric',
|
|
426
|
+
},
|
|
427
|
+
}]
|
|
428
|
+
}] });
|
|
429
|
+
class FrTableMuted {
|
|
430
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableMuted, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
431
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrTableMuted, isStandalone: true, selector: "[frTableMuted]", host: { classAttribute: "frame-table__muted" }, ngImport: i0 });
|
|
432
|
+
}
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableMuted, decorators: [{
|
|
434
|
+
type: Directive,
|
|
435
|
+
args: [{
|
|
436
|
+
selector: '[frTableMuted]',
|
|
437
|
+
host: {
|
|
438
|
+
class: 'frame-table__muted',
|
|
439
|
+
},
|
|
440
|
+
}]
|
|
441
|
+
}] });
|
|
442
|
+
class FrTableVirtual {
|
|
443
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableVirtual, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
444
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrTableVirtual, isStandalone: true, selector: "[frTableVirtual], frame-table-virtual", host: { classAttribute: "frame-table-virtual" }, ngImport: i0 });
|
|
445
|
+
}
|
|
446
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableVirtual, decorators: [{
|
|
447
|
+
type: Directive,
|
|
448
|
+
args: [{
|
|
449
|
+
selector: '[frTableVirtual], frame-table-virtual',
|
|
450
|
+
host: {
|
|
451
|
+
class: 'frame-table-virtual',
|
|
452
|
+
},
|
|
453
|
+
}]
|
|
454
|
+
}] });
|
|
455
|
+
class FrTableVirtualHeader {
|
|
456
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableVirtualHeader, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
457
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrTableVirtualHeader, isStandalone: true, selector: "[frTableVirtualHeader], frame-table-virtual-header", host: { classAttribute: "frame-table-virtual__header" }, ngImport: i0 });
|
|
458
|
+
}
|
|
459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableVirtualHeader, decorators: [{
|
|
460
|
+
type: Directive,
|
|
461
|
+
args: [{
|
|
462
|
+
selector: '[frTableVirtualHeader], frame-table-virtual-header',
|
|
463
|
+
host: {
|
|
464
|
+
class: 'frame-table-virtual__header',
|
|
465
|
+
},
|
|
466
|
+
}]
|
|
467
|
+
}] });
|
|
468
|
+
class FrTableVirtualRow {
|
|
469
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableVirtualRow, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
470
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrTableVirtualRow, isStandalone: true, selector: "[frTableVirtualRow], frame-table-virtual-row", host: { classAttribute: "frame-table-virtual__row" }, ngImport: i0 });
|
|
471
|
+
}
|
|
472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableVirtualRow, decorators: [{
|
|
473
|
+
type: Directive,
|
|
474
|
+
args: [{
|
|
475
|
+
selector: '[frTableVirtualRow], frame-table-virtual-row',
|
|
476
|
+
host: {
|
|
477
|
+
class: 'frame-table-virtual__row',
|
|
478
|
+
},
|
|
479
|
+
}]
|
|
480
|
+
}] });
|
|
481
|
+
class FrTableVirtualCell {
|
|
482
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableVirtualCell, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
483
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "21.2.16", type: FrTableVirtualCell, isStandalone: true, selector: "[frTableVirtualCell], frame-table-virtual-cell", host: { classAttribute: "frame-table-virtual__cell" }, ngImport: i0 });
|
|
484
|
+
}
|
|
485
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableVirtualCell, decorators: [{
|
|
486
|
+
type: Directive,
|
|
487
|
+
args: [{
|
|
488
|
+
selector: '[frTableVirtualCell], frame-table-virtual-cell',
|
|
489
|
+
host: {
|
|
490
|
+
class: 'frame-table-virtual__cell',
|
|
491
|
+
},
|
|
492
|
+
}]
|
|
493
|
+
}] });
|
|
494
|
+
|
|
495
|
+
const TABLE_PRIMITIVES = [
|
|
496
|
+
CdkTableModule,
|
|
497
|
+
FrCell,
|
|
498
|
+
FrCellDef,
|
|
499
|
+
FrColumnDef,
|
|
500
|
+
FrFooterCell,
|
|
501
|
+
FrFooterCellDef,
|
|
502
|
+
FrFooterRow,
|
|
503
|
+
FrFooterRowDef,
|
|
504
|
+
FrHeaderCell,
|
|
505
|
+
FrHeaderCellDef,
|
|
506
|
+
FrHeaderRow,
|
|
507
|
+
FrHeaderRowDef,
|
|
508
|
+
FrNoDataRow,
|
|
509
|
+
FrRow,
|
|
510
|
+
FrRowDef,
|
|
511
|
+
FrTable,
|
|
512
|
+
FrTableBody,
|
|
513
|
+
FrTableCaption,
|
|
514
|
+
FrTableContainer,
|
|
515
|
+
FrTableFooter,
|
|
516
|
+
FrTableHeader,
|
|
517
|
+
FrTableMuted,
|
|
518
|
+
FrTableNumeric,
|
|
519
|
+
FrTableVirtual,
|
|
520
|
+
FrTableVirtualCell,
|
|
521
|
+
FrTableVirtualHeader,
|
|
522
|
+
FrTableVirtualRow,
|
|
523
|
+
];
|
|
524
|
+
class FrTableModule {
|
|
525
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
526
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.2.16", ngImport: i0, type: FrTableModule, imports: [CdkTableModule,
|
|
527
|
+
FrCell,
|
|
528
|
+
FrCellDef,
|
|
529
|
+
FrColumnDef,
|
|
530
|
+
FrFooterCell,
|
|
531
|
+
FrFooterCellDef,
|
|
532
|
+
FrFooterRow,
|
|
533
|
+
FrFooterRowDef,
|
|
534
|
+
FrHeaderCell,
|
|
535
|
+
FrHeaderCellDef,
|
|
536
|
+
FrHeaderRow,
|
|
537
|
+
FrHeaderRowDef,
|
|
538
|
+
FrNoDataRow,
|
|
539
|
+
FrRow,
|
|
540
|
+
FrRowDef,
|
|
541
|
+
FrTable,
|
|
542
|
+
FrTableBody,
|
|
543
|
+
FrTableCaption,
|
|
544
|
+
FrTableContainer,
|
|
545
|
+
FrTableFooter,
|
|
546
|
+
FrTableHeader,
|
|
547
|
+
FrTableMuted,
|
|
548
|
+
FrTableNumeric,
|
|
549
|
+
FrTableVirtual,
|
|
550
|
+
FrTableVirtualCell,
|
|
551
|
+
FrTableVirtualHeader,
|
|
552
|
+
FrTableVirtualRow], exports: [CdkTableModule,
|
|
553
|
+
FrCell,
|
|
554
|
+
FrCellDef,
|
|
555
|
+
FrColumnDef,
|
|
556
|
+
FrFooterCell,
|
|
557
|
+
FrFooterCellDef,
|
|
558
|
+
FrFooterRow,
|
|
559
|
+
FrFooterRowDef,
|
|
560
|
+
FrHeaderCell,
|
|
561
|
+
FrHeaderCellDef,
|
|
562
|
+
FrHeaderRow,
|
|
563
|
+
FrHeaderRowDef,
|
|
564
|
+
FrNoDataRow,
|
|
565
|
+
FrRow,
|
|
566
|
+
FrRowDef,
|
|
567
|
+
FrTable,
|
|
568
|
+
FrTableBody,
|
|
569
|
+
FrTableCaption,
|
|
570
|
+
FrTableContainer,
|
|
571
|
+
FrTableFooter,
|
|
572
|
+
FrTableHeader,
|
|
573
|
+
FrTableMuted,
|
|
574
|
+
FrTableNumeric,
|
|
575
|
+
FrTableVirtual,
|
|
576
|
+
FrTableVirtualCell,
|
|
577
|
+
FrTableVirtualHeader,
|
|
578
|
+
FrTableVirtualRow] });
|
|
579
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableModule, imports: [CdkTableModule, CdkTableModule] });
|
|
580
|
+
}
|
|
581
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.16", ngImport: i0, type: FrTableModule, decorators: [{
|
|
582
|
+
type: NgModule,
|
|
583
|
+
args: [{
|
|
584
|
+
imports: TABLE_PRIMITIVES,
|
|
585
|
+
exports: TABLE_PRIMITIVES,
|
|
586
|
+
}]
|
|
587
|
+
}] });
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* Generated bundle index. Do not edit.
|
|
591
|
+
*/
|
|
592
|
+
|
|
593
|
+
export { FR_TABLE_DENSITIES, FR_TABLE_VARIANTS, FrCell, FrCellDef, FrColumnDef, FrFooterCell, FrFooterCellDef, FrFooterRow, FrFooterRowDef, FrHeaderCell, FrHeaderCellDef, FrHeaderRow, FrHeaderRowDef, FrNoDataRow, FrRow, FrRowDef, FrTable, FrTableBody, FrTableCaption, FrTableContainer, FrTableFooter, FrTableHeader, FrTableModule, FrTableMuted, FrTableNumeric, FrTableVirtual, FrTableVirtualCell, FrTableVirtualHeader, FrTableVirtualRow };
|
|
594
|
+
//# sourceMappingURL=frame-ui-ng-components-table.mjs.map
|