@ironsource/shared-ui 1.4.2-test.16 → 1.4.2-test.17
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
.label[data-v-
|
|
1
|
+
.label[data-v-7b2b8bf4]{color:#41454d}.sticky[data-v-7b2b8bf4]{position:sticky}.table-container[data-v-7b2b8bf4]{width:100%;position:relative}.last.floating[data-v-7b2b8bf4]{max-width:100%}.table-header[data-v-7b2b8bf4]{display:flex;align-items:center;height:55px;border-bottom:1px solid #DDDFE1;background-color:#fff;position:sticky;left:0}.table-header .table-title[data-v-7b2b8bf4]{display:flex;align-items:center;justify-content:center;height:100%;padding:1.25rem 1.5rem}.table-header .table-header-right[data-v-7b2b8bf4]{display:flex;align-items:center;height:100%}.table-header .table-header-right.border-search[data-v-7b2b8bf4]{border-left:1px solid #DDDFE1}.table-header.isStickyHeader[data-v-7b2b8bf4]{z-index:199;top:0}.table-head-container[data-v-7b2b8bf4]{display:flex;align-items:center;white-space:nowrap}.table-body-wrapper[data-v-7b2b8bf4]{display:inline-table}.table-header-actions[data-v-7b2b8bf4]{margin-left:auto;margin-right:1rem;display:flex;align-items:center}.table-row[data-v-7b2b8bf4]{position:relative}.table-row.loading[data-v-7b2b8bf4]{opacity:.7}.floating-actions[data-v-7b2b8bf4]{position:absolute;z-index:10;max-width:max-content;transform:translateY(-50%) translate(calc(-100% - 12px));top:50%;left:0}table[data-v-7b2b8bf4]{position:relative;display:block;overflow:auto;background:#FFFFFF;border:1px solid #DDDFE1;color:#53575b;text-align:left;table-layout:fixed;width:100%;max-height:100%;border-radius:1rem}table td[data-v-7b2b8bf4],table th[data-v-7b2b8bf4]{padding:0 1.5rem;line-height:normal}table thead[data-v-7b2b8bf4]{border-bottom:none;z-index:101;display:inline-table;min-width:100%}table thead tr[data-v-7b2b8bf4]{color:#626970;border-bottom:2px solid #DDDFE1;height:2.5rem;display:grid;grid-template-columns:var(--7b0d5a02)}table thead tr th[data-v-7b2b8bf4]{background:#FFFFFF;width:100%;display:flex;align-items:center;cursor:default}table thead tr th.bordered[data-v-7b2b8bf4]{border-right:1px solid #DDDFE1}table thead tr th.isTextRight[data-v-7b2b8bf4]{justify-content:flex-end}table thead tr th.isSortable[data-v-7b2b8bf4]{cursor:pointer}table thead.sticky[data-v-7b2b8bf4]{position:sticky;top:0;background:white}table thead.isStickyHeader[data-v-7b2b8bf4]{z-index:198px;top:55px}table tbody[data-v-7b2b8bf4]{height:100%;display:block}table tbody tr[data-v-7b2b8bf4]{background-color:#fff;min-height:3rem;height:auto;display:grid;align-items:center;grid-template-columns:var(--7b0d5a02)}table tbody tr:nth-of-type(even) td[data-v-7b2b8bf4]{background-color:#fff}table tbody tr:hover:not(.loading) td[data-v-7b2b8bf4]{background-color:#f7f8f9}table tbody td[data-v-7b2b8bf4]{background-color:#fff;border:none;min-width:0;display:flex;height:100%;width:100%;place-items:center;border-bottom:1px solid #DDDFE1;justify-content:start}table tbody td.bordered[data-v-7b2b8bf4]{border-right:1px solid #DDDFE1}table tbody td.isTextRight[data-v-7b2b8bf4]{justify-content:flex-end}table tfoot[data-v-7b2b8bf4]{display:block;height:4.5rem;background-color:#fff;border:none}.section-container[data-v-7b2b8bf4]{left:0}.sections[data-v-7b2b8bf4]{display:flex}.section[data-v-7b2b8bf4]{padding:0 1.5rem;background:#FFFFFF;left:0;height:32px;display:flex;align-items:flex-end;border-right:1px solid #DDDFE1}
|
|
@@ -40,7 +40,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
40
40
|
setup(__props, { emit }) {
|
|
41
41
|
const props = __props;
|
|
42
42
|
useCssVars((_ctx) => ({
|
|
43
|
-
"
|
|
43
|
+
"7b0d5a02": unref(gridColumnTemplate)
|
|
44
44
|
}));
|
|
45
45
|
const savingRows = ref([]);
|
|
46
46
|
provide(TableContext, {
|
|
@@ -60,6 +60,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
60
60
|
});
|
|
61
61
|
const gridColumnTemplate = computed(() => {
|
|
62
62
|
return props.columns.reduce((acc, column) => {
|
|
63
|
+
if (column === props.columns[props.columns.length - 1] && column.width) {
|
|
64
|
+
return `${acc} minmax(${column.width}px, 1fr)`;
|
|
65
|
+
}
|
|
63
66
|
const columnTemplate = column.width ? `${column.width}px` : `${column.colSpan || 1}fr`;
|
|
64
67
|
return `${acc} ${columnTemplate}`;
|
|
65
68
|
}, "");
|
|
@@ -338,6 +341,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
338
341
|
};
|
|
339
342
|
}
|
|
340
343
|
});
|
|
341
|
-
var Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
344
|
+
var Table = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-7b2b8bf4"]]);
|
|
342
345
|
|
|
343
346
|
export { Table as default };
|
package/index.vue.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './
|
|
1
|
+
import './FilterSearchInput.vue_vue_type_style_index_0_scoped_true_lang.css';
|
|
2
2
|
export { AppTriggerTypes } from './components/appTrigger/index.vue.js';
|
|
3
3
|
export { AutocompleteDropdownTypes } from './components/autocompleteDropdown/index.vue.js';
|
|
4
4
|
export { MenuItemTypes } from './components/menuItem/index.vue.js';
|