@globalbrain/sefirot 4.25.0 → 4.25.1

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.
@@ -355,7 +355,7 @@ function removeSelected(item: any) {
355
355
 
356
356
  function getColWidth(key: string) {
357
357
  if (key === '__select') {
358
- return '48px + var(--table-padding-left, 0)'
358
+ return '48px + var(--table-padding-left)'
359
359
  }
360
360
  const adjustedWidth = colWidths[key]
361
361
  if (adjustedWidth && adjustedWidth !== 'auto') {
@@ -631,7 +631,7 @@ function getStyles(key: string) {
631
631
  }
632
632
 
633
633
  .STable .col-__select {
634
- --table-col-width: calc(48px + var(--table-padding-left, 0));
634
+ --table-col-width: calc(48px + var(--table-padding-left));
635
635
 
636
636
  :deep(.input) {
637
637
  align-items: center;
@@ -25,14 +25,14 @@ const classes = computed(() => [
25
25
  <style scoped lang="postcss">
26
26
  .STableItem {
27
27
  position: var(--table-col-position, relative);
28
- left: var(--table-col-left, 0);
28
+ left: var(--table-col-left, 0px);
29
29
  right: var(--table-col-right, auto);
30
30
  z-index: var(--table-col-z-index, auto);
31
31
  flex-shrink: 0;
32
32
  flex-grow: 1;
33
- border-left: var(--table-col-border-left, 0) solid var(--c-gutter);
33
+ border-left: var(--table-col-border-left, 0px) solid var(--c-gutter);
34
34
  border-right: 1px solid var(--c-gutter);
35
- margin-left: calc(var(--table-col-border-left, 0) * -1);
35
+ margin-left: calc(var(--table-col-border-left, 0px) * -1);
36
36
  min-width: var(--table-col-width);
37
37
  max-width: var(--table-col-width);
38
38
 
@@ -871,8 +871,8 @@
871
871
  --table-border-left: var(--table-border);
872
872
  --table-border-radius: 6px;
873
873
 
874
- --table-padding-right: 0;
875
- --table-padding-left: 0;
874
+ --table-padding-right: 0px;
875
+ --table-padding-left: 0px;
876
876
 
877
877
  --table-cell-font-size: 14px;
878
878
  --table-cell-font-weight: 400;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@globalbrain/sefirot",
3
3
  "type": "module",
4
- "version": "4.25.0",
4
+ "version": "4.25.1",
5
5
  "packageManager": "pnpm@9.15.4",
6
6
  "description": "Vue Components for Global Brain Design System.",
7
7
  "author": "Kia Ishii <ka.ishii@globalbrains.com>",