@softheon/armature 17.12.2 → 17.12.3
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/ag-grid-components/src/sof-table/sof-table.component.d.ts +1 -1
- package/assets/styles/sof-styles.scss +0 -148
- package/esm2022/ag-grid-components/src/sof-table/sof-table.component.mjs +3 -3
- package/esm2022/lib/base-components/base-component-api.mjs +1 -2
- package/esm2022/lib/base-components/base-component.module.mjs +1 -11
- package/fesm2022/softheon-armature-ag-grid-components.mjs +2 -2
- package/fesm2022/softheon-armature-ag-grid-components.mjs.map +1 -1
- package/fesm2022/softheon-armature.mjs +4 -59
- package/fesm2022/softheon-armature.mjs.map +1 -1
- package/lib/base-components/base-component-api.d.ts +0 -1
- package/lib/base-components/base-component.module.d.ts +28 -30
- package/package.json +1 -1
- package/esm2022/lib/base-components/sof-utility-button/sof-utility-button.component.mjs +0 -54
- package/lib/base-components/sof-utility-button/sof-utility-button.component.d.ts +0 -30
|
@@ -109,7 +109,7 @@ export declare class SofTableComponent implements OnInit, OnChanges, AfterViewIn
|
|
|
109
109
|
/** Populates the filter dropdowns */
|
|
110
110
|
private populateFilters;
|
|
111
111
|
static ɵfac: i0.ɵɵFactoryDeclaration<SofTableComponent, never>;
|
|
112
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SofTableComponent, "sof-table", never, { "rowData": { "alias": "rowData"; "required": false; }; "colDefs": { "alias": "colDefs"; "required": false; }; "sizeMode": { "alias": "sizeMode"; "required": false; }; "paginationPageSizeSelector": { "alias": "paginationPageSizeSelector"; "required": false; }; "enableSearch": { "alias": "enableSearch"; "required": false; }; "enableFilter": { "alias": "enableFilter"; "required": false; }; "enableCheckboxSelection": { "alias": "enableCheckboxSelection"; "required": false; }; }, {}, never,
|
|
112
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SofTableComponent, "sof-table", never, { "rowData": { "alias": "rowData"; "required": false; }; "colDefs": { "alias": "colDefs"; "required": false; }; "sizeMode": { "alias": "sizeMode"; "required": false; }; "paginationPageSizeSelector": { "alias": "paginationPageSizeSelector"; "required": false; }; "enableSearch": { "alias": "enableSearch"; "required": false; }; "enableFilter": { "alias": "enableFilter"; "required": false; }; "enableCheckboxSelection": { "alias": "enableCheckboxSelection"; "required": false; }; }, {}, never, ["[sof-table-right-container]"], false, never>;
|
|
113
113
|
}
|
|
114
114
|
/** Used for setting filter values */
|
|
115
115
|
declare class SofTableFilter {
|
|
@@ -1677,154 +1677,6 @@ button.soft-button-icon-v2{
|
|
|
1677
1677
|
}
|
|
1678
1678
|
}
|
|
1679
1679
|
}
|
|
1680
|
-
button.button-icon-utility{
|
|
1681
|
-
display: flex !important;
|
|
1682
|
-
padding: 8px!important;
|
|
1683
|
-
border-radius: 8px !important;
|
|
1684
|
-
height: 40px !important;
|
|
1685
|
-
justify-content: center !important;
|
|
1686
|
-
align-items: center !important;
|
|
1687
|
-
gap: 8px !important;
|
|
1688
|
-
max-width: 36px !important;
|
|
1689
|
-
&.mat-mdc-unelevated-button span.mdc-button__label.mdc-button__label{
|
|
1690
|
-
display: flex;
|
|
1691
|
-
align-items: center;
|
|
1692
|
-
font-size: 24px;
|
|
1693
|
-
|
|
1694
|
-
}
|
|
1695
|
-
&.mdc-button{
|
|
1696
|
-
min-width: 40px;
|
|
1697
|
-
}
|
|
1698
|
-
|
|
1699
|
-
&.full-width {
|
|
1700
|
-
width: 100% !important; // Use this is button width will take size of flex percentage
|
|
1701
|
-
}
|
|
1702
|
-
&:enabled{
|
|
1703
|
-
&.mat-primary{
|
|
1704
|
-
background: mat.get-color-from-palette($arm-primary, 500);
|
|
1705
|
-
color: map-get($arm-error, contrast, 900);
|
|
1706
|
-
&:hover {
|
|
1707
|
-
background-color: mat.get-color-from-palette($arm-primary, 700) !important;
|
|
1708
|
-
color: map-get($arm-error, contrast, 700);
|
|
1709
|
-
}
|
|
1710
|
-
&:focus {
|
|
1711
|
-
background-color: mat.get-color-from-palette($arm-primary, 700) !important;
|
|
1712
|
-
}
|
|
1713
|
-
}
|
|
1714
|
-
&.mat-secondary{
|
|
1715
|
-
background-color: #FAFAFA !important;
|
|
1716
|
-
color: var(--primary-color-contrast-50-parts);
|
|
1717
|
-
&:hover{
|
|
1718
|
-
background-color: #F5F5F5 !important;
|
|
1719
|
-
color: var(--primary-color-contrast-50-parts) !important;
|
|
1720
|
-
}
|
|
1721
|
-
&:focus{
|
|
1722
|
-
background-color: #E9E9E9 !important;
|
|
1723
|
-
}
|
|
1724
|
-
}
|
|
1725
|
-
&.mat-tertiary{
|
|
1726
|
-
color: var(--primary-color-contrast-50-parts);
|
|
1727
|
-
background: transparent !important;
|
|
1728
|
-
&:focus{
|
|
1729
|
-
background-color: rgba(20, 110, 246, 0.08) !important;
|
|
1730
|
-
}
|
|
1731
|
-
&:hover{
|
|
1732
|
-
background-color: rgba(20, 110, 246, 0.04) !important;
|
|
1733
|
-
}
|
|
1734
|
-
}
|
|
1735
|
-
&.mat-contained{
|
|
1736
|
-
color: var(--primary-color-contrast-50-parts);
|
|
1737
|
-
background: none !important;
|
|
1738
|
-
border: 3px solid #146EF6 !important;
|
|
1739
|
-
&:focus{
|
|
1740
|
-
border: 3px solid mat.get-color-from-palette($arm-primary, 700) !important;
|
|
1741
|
-
color: map-get($arm-error, contrast, 700);
|
|
1742
|
-
background-color: rgba(20, 110, 246, 0.08) !important;
|
|
1743
|
-
}
|
|
1744
|
-
}
|
|
1745
|
-
&.mat-contained-error{
|
|
1746
|
-
color: var(--primary-color-contrast-50-parts);
|
|
1747
|
-
background: none !important;
|
|
1748
|
-
border: 3px solid rgba(215, 36, 26, 1) !important;
|
|
1749
|
-
&:focus{
|
|
1750
|
-
&:focus{
|
|
1751
|
-
border: 3px solid mat.get-color-from-palette($arm-error, 700) !important;
|
|
1752
|
-
color: map-get($arm-error, contrast, 700);
|
|
1753
|
-
background-color:rgba(215, 36, 26, 0.08) !important;
|
|
1754
|
-
}
|
|
1755
|
-
}
|
|
1756
|
-
}
|
|
1757
|
-
&.mat-error-primary{
|
|
1758
|
-
background: rgba(215, 36, 26, 1) !important;
|
|
1759
|
-
color: map-get($arm-error, contrast, 900);
|
|
1760
|
-
&:hover {
|
|
1761
|
-
background-color: mat.get-color-from-palette($arm-error, 700);
|
|
1762
|
-
color: map-get($arm-error, contrast, 700);
|
|
1763
|
-
}
|
|
1764
|
-
&:focus {
|
|
1765
|
-
background-color: rgba(199, 22, 15, 1) !important;
|
|
1766
|
-
}
|
|
1767
|
-
}
|
|
1768
|
-
&.mat-error-tertiary{
|
|
1769
|
-
background: transparent !important;
|
|
1770
|
-
color: map-get($arm-error, contrast, 900);
|
|
1771
|
-
&:hover {
|
|
1772
|
-
background-color: rgba(215, 36, 26, 0.04) !important;
|
|
1773
|
-
color: map-get($arm-error, contrast, 700);
|
|
1774
|
-
}
|
|
1775
|
-
&:focus {
|
|
1776
|
-
background-color: rgba(215, 36, 26, 0.08) !important;
|
|
1777
|
-
}
|
|
1778
|
-
}
|
|
1779
|
-
&.mat-error-secondary{
|
|
1780
|
-
background: rgba(245, 245, 245, 1) !important;
|
|
1781
|
-
color: map-get($arm-error, contrast, 900);
|
|
1782
|
-
&:hover {
|
|
1783
|
-
background-color: rgba(245, 245, 245, 1) !important;
|
|
1784
|
-
color: map-get($arm-error, contrast, 700);
|
|
1785
|
-
}
|
|
1786
|
-
&:focus {
|
|
1787
|
-
background-color:rgba(233, 233, 233, 1) !important;
|
|
1788
|
-
}
|
|
1789
|
-
}
|
|
1790
|
-
}
|
|
1791
|
-
&:disabled {
|
|
1792
|
-
&.mat-primary{
|
|
1793
|
-
background-color: #FAFAFA !important;
|
|
1794
|
-
}
|
|
1795
|
-
&.mat-secondary{
|
|
1796
|
-
background-color: transparent !important;
|
|
1797
|
-
}
|
|
1798
|
-
&.mat-contained{
|
|
1799
|
-
background-color: transparent !important;
|
|
1800
|
-
border: 3px solid rgba(0, 0, 0, 0.38) !important;
|
|
1801
|
-
color:rgba(0, 0, 0, 0.38) !important ;
|
|
1802
|
-
}
|
|
1803
|
-
&.mat-contained-error{
|
|
1804
|
-
background-color: transparent !important;
|
|
1805
|
-
border: 3px solid rgba(0, 0, 0, 0.38) !important;
|
|
1806
|
-
color:rgba(0, 0, 0, 0.38) !important ;
|
|
1807
|
-
}
|
|
1808
|
-
&.mat-tertiary{
|
|
1809
|
-
background-color: transparent !important;
|
|
1810
|
-
}
|
|
1811
|
-
&.mat-error{
|
|
1812
|
-
background: rgba(250, 250, 250, 1) !important;
|
|
1813
|
-
}
|
|
1814
|
-
&.mat-error-primary{
|
|
1815
|
-
background: rgba(250, 250, 250, 1) !important;
|
|
1816
|
-
|
|
1817
|
-
}
|
|
1818
|
-
&.mat-error-tertiary{
|
|
1819
|
-
background: rgba(250, 250, 250, 1) !important;
|
|
1820
|
-
|
|
1821
|
-
}
|
|
1822
|
-
&.mat-error-secondary{
|
|
1823
|
-
background: rgba(250, 250, 250, 1) !important;
|
|
1824
|
-
|
|
1825
|
-
}
|
|
1826
|
-
}
|
|
1827
|
-
}
|
|
1828
1680
|
mat-card {
|
|
1829
1681
|
&.mat-mdc-card.item-list {
|
|
1830
1682
|
box-shadow: 0px 1px 7px rgb(166 159 159 / 25%) !important;
|