@faststore/ui 3.50.3 → 3.60.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faststore/ui",
3
- "version": "3.50.3",
3
+ "version": "3.60.4",
4
4
  "description": "A lightweight, framework agnostic component library for React",
5
5
  "author": "emersonlaurentino",
6
6
  "license": "MIT",
@@ -47,7 +47,7 @@
47
47
  }
48
48
  ],
49
49
  "dependencies": {
50
- "@faststore/components": "^3.50.3",
50
+ "@faststore/components": "^3.56.1",
51
51
  "include-media": "^1.4.10",
52
52
  "modern-normalize": "^1.1.0",
53
53
  "react-swipeable": "^7.0.0",
@@ -70,5 +70,5 @@
70
70
  "volta": {
71
71
  "extends": "../../package.json"
72
72
  },
73
- "gitHead": "b934a294bf04c85960c8e84fec6a12525f9dccaf"
73
+ "gitHead": "dbd42485d7216e0c0a5df45d008c3433367bdf61"
74
74
  }
@@ -26,21 +26,21 @@
26
26
  --fs-table-bordered-border-width : var(--fs-border-width);
27
27
  --fs-table-bordered-border-color : var(--fs-border-color-light);
28
28
 
29
-
30
29
  // --------------------------------------------------------
31
30
  // Structural Styles
32
31
  // --------------------------------------------------------
33
32
 
34
- width: 100%;
35
33
  display: block;
34
+ width: 100%;
36
35
  overflow-x: auto;
37
36
  white-space: nowrap;
38
37
 
39
38
  [data-fs-table-cell="header"],
40
39
  [data-fs-table-cell="data"] {
41
- text-align: center;
42
- padding-left: var(--fs-table-cell-padding-x);
43
40
  padding-right: var(--fs-table-cell-padding-x);
41
+ padding-left: var(--fs-table-cell-padding-x);
42
+ overflow-x: auto;
43
+ text-align: center;
44
44
  &[data-fs-table-cell-align="left"] { text-align: left; }
45
45
  &[data-fs-table-cell-align="center"] { text-align: center; }
46
46
  &[data-fs-table-cell-align="right"] { text-align: right; }
@@ -82,15 +82,16 @@
82
82
  }
83
83
 
84
84
  [data-fs-table-content] {
85
- width: 100%;
86
85
  display: table;
86
+ width: 100%;
87
+ table-layout: fixed;
87
88
  border-collapse: collapse;
88
89
  }
89
90
 
90
91
  [data-fs-icon] {
91
- margin-right: var(--fs-spacing-2);
92
92
  width: var(--fs-spacing-3);
93
93
  height: var(--fs-spacing-3);
94
+ margin-right: var(--fs-spacing-2);
94
95
  }
95
96
 
96
97
  // --------------------------------------------------------
@@ -121,5 +122,4 @@
121
122
  border-bottom: var(--fs-table-bordered-border-width) solid var(--fs-table-bordered-border-color);
122
123
  }
123
124
  }
124
-
125
- }
125
+ }