@mobileaction/action-kit 1.44.5 → 1.45.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/CHANGELOG.md +225 -0
- package/dist/action-kit.mjs +1 -0
- package/dist/src/components/table/preview.vue.d.ts +9 -0
- package/dist/src/components/table/stories/data/fields.d.ts +27 -0
- package/dist/src/components/table/stories/default.stories.d.ts +1 -0
- package/dist/src/components/tooltip-2/stories/default.stories.d.ts +2 -0
- package/dist/style.css +1 -1
- package/dist/table.css +14 -8
- package/package.json +1 -1
package/dist/table.css
CHANGED
|
@@ -8060,14 +8060,6 @@ input[class^=ag-][type=range]:disabled {
|
|
|
8060
8060
|
.ag-theme-ma .ag-header .ag-header-cell.right-aligned .ag-header-cell-label {
|
|
8061
8061
|
@apply justify-end gap-2;
|
|
8062
8062
|
}
|
|
8063
|
-
.ag-theme-ma .ag-header .ag-pinned-left-header .ag-cell-label-container::after,
|
|
8064
|
-
.ag-theme-ma .ag-header .ag-pinned-right-header .ag-cell-label-container::after {
|
|
8065
|
-
@apply mr-2 text-gray-400;
|
|
8066
|
-
content: var(--ag-icon-font-code-pin, "\f124");
|
|
8067
|
-
display: var(--ag-icon-font-display-pin, var(--ag-icon-font-display));
|
|
8068
|
-
font-family: var(--ag-icon-font-family-pin, var(--ag-icon-font-family));
|
|
8069
|
-
font-size: var(--ag-icon-size);
|
|
8070
|
-
}
|
|
8071
8063
|
.ag-theme-ma .ag-checkbox-input-wrapper::after {
|
|
8072
8064
|
@apply text-gray-300;
|
|
8073
8065
|
}
|
|
@@ -8103,4 +8095,18 @@ input[class^=ag-][type=range]:disabled {
|
|
|
8103
8095
|
}
|
|
8104
8096
|
.ag-theme-ma .ag-paging-panel .ag-paging-page-summary-panel {
|
|
8105
8097
|
@apply pb-1 md:pb-0;
|
|
8098
|
+
}
|
|
8099
|
+
.ag-theme-ma--secondary {
|
|
8100
|
+
--ag-grid-size: 5px;
|
|
8101
|
+
}
|
|
8102
|
+
.ag-theme-ma--secondary .ag-root-wrapper {
|
|
8103
|
+
@apply rounded-none border-none;
|
|
8104
|
+
}
|
|
8105
|
+
.ag-theme-ma:not(.ag-theme-ma--secondary) .ag-header .ag-pinned-left-header .ag-cell-label-container::after,
|
|
8106
|
+
.ag-theme-ma:not(.ag-theme-ma--secondary) .ag-header .ag-pinned-right-header .ag-cell-label-container::after {
|
|
8107
|
+
@apply mr-2 text-gray-400;
|
|
8108
|
+
content: var(--ag-icon-font-code-pin, "\f124");
|
|
8109
|
+
display: var(--ag-icon-font-display-pin, var(--ag-icon-font-display));
|
|
8110
|
+
font-family: var(--ag-icon-font-family-pin, var(--ag-icon-font-family));
|
|
8111
|
+
font-size: var(--ag-icon-size);
|
|
8106
8112
|
}
|