@flux-ui/application 3.2.0-beta.5 → 3.2.0-beta.7
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/dist/index.css +12 -4
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/src/css/component/ApplicationContent.module.scss +14 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flux-ui/application",
|
|
3
3
|
"description": "Contains components to create applications with Flux UI.",
|
|
4
|
-
"version": "3.2.0-beta.
|
|
4
|
+
"version": "3.2.0-beta.7",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"funding": "https://github.com/sponsors/basmilius",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"typings": "./dist/index.d.ts",
|
|
52
52
|
"sideEffects": false,
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@flux-ui/components": "3.2.0-beta.
|
|
55
|
-
"@flux-ui/internals": "3.2.0-beta.
|
|
56
|
-
"@flux-ui/types": "3.2.0-beta.
|
|
54
|
+
"@flux-ui/components": "3.2.0-beta.7",
|
|
55
|
+
"@flux-ui/internals": "3.2.0-beta.7",
|
|
56
|
+
"@flux-ui/types": "3.2.0-beta.7",
|
|
57
57
|
"clsx": "^2.1.1"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
@@ -71,11 +71,16 @@
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
> :local(.table) {
|
|
74
|
-
:local(.tableCell):
|
|
74
|
+
:local(.tableCell):not(:local(.tableBar)):not(:local(.tableGroup)):not(:local(.isRaw)):first-child {
|
|
75
75
|
padding-left: 21px;
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
:local(.tableCell):
|
|
78
|
+
:local(.tableCell):not(:local(.tableBar)):not(:local(.tableGroup)):not(:local(.isRaw)):last-child {
|
|
79
|
+
padding-right: 21px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
:is(:local(.tableBarContent), :local(.tableGroupContent)) {
|
|
83
|
+
padding-left: 21px;
|
|
79
84
|
padding-right: 21px;
|
|
80
85
|
}
|
|
81
86
|
}
|
|
@@ -109,11 +114,16 @@
|
|
|
109
114
|
}
|
|
110
115
|
|
|
111
116
|
> .table {
|
|
112
|
-
.tableCell:first-child
|
|
117
|
+
.tableCell:not(.tableBar):not(.tableGroup):not(.isRaw):first-child {
|
|
113
118
|
padding-left: 12px;
|
|
114
119
|
}
|
|
115
120
|
|
|
116
|
-
.tableCell:last-child
|
|
121
|
+
.tableCell:not(.tableBar):not(.tableGroup):not(.isRaw):last-child {
|
|
122
|
+
padding-right: 12px;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
:is(.tableBarContent, .tableGroupContent) {
|
|
126
|
+
padding-left: 12px;
|
|
117
127
|
padding-right: 12px;
|
|
118
128
|
}
|
|
119
129
|
}
|