@osdk/react-components 0.3.0-main-20260408222341 → 0.3.0-main-20260409145921
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 +5 -4
- package/build/browser/object-table/ColumnConfigDialog.js +7 -7
- package/build/browser/object-table/ColumnConfigDialog.js.map +1 -1
- package/build/browser/object-table/ColumnConfigDialog.module.css +20 -9
- package/build/browser/object-table/ColumnConfigDialog.module.css.js +2 -0
- package/build/browser/object-table/MultiColumnSortDialog.js.map +1 -1
- package/build/browser/public/experimental.js +1 -0
- package/build/browser/public/experimental.js.map +1 -1
- package/build/browser/styles.css +20 -9
- package/build/cjs/public/experimental.cjs +8 -6
- package/build/cjs/public/experimental.cjs.map +1 -1
- package/build/cjs/public/experimental.css +18 -9
- package/build/cjs/public/experimental.css.map +1 -1
- package/build/cjs/public/experimental.d.cts +14 -2
- package/build/esm/object-table/ColumnConfigDialog.js +7 -7
- package/build/esm/object-table/ColumnConfigDialog.js.map +1 -1
- package/build/esm/object-table/ColumnConfigDialog.module.css +20 -9
- package/build/esm/object-table/MultiColumnSortDialog.js.map +1 -1
- package/build/esm/public/experimental.js +1 -0
- package/build/esm/public/experimental.js.map +1 -1
- package/build/types/object-table/ColumnConfigDialog.d.ts.map +1 -1
- package/build/types/object-table/MultiColumnSortDialog.d.ts +1 -2
- package/build/types/object-table/MultiColumnSortDialog.d.ts.map +1 -1
- package/build/types/public/experimental.d.ts +2 -0
- package/build/types/public/experimental.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -1979,7 +1979,7 @@
|
|
|
1979
1979
|
.categoryHeader {
|
|
1980
1980
|
display: flex;
|
|
1981
1981
|
align-items: center;
|
|
1982
|
-
justify-content:
|
|
1982
|
+
justify-content: space-between;
|
|
1983
1983
|
width: 100%;
|
|
1984
1984
|
padding: calc(var(--osdk-surface-spacing) * 2) calc(var(--osdk-surface-spacing) * 3);
|
|
1985
1985
|
background: none;
|
|
@@ -1991,7 +1991,6 @@
|
|
|
1991
1991
|
.categoryTrigger {
|
|
1992
1992
|
display: flex;
|
|
1993
1993
|
align-items: center;
|
|
1994
|
-
flex: 1;
|
|
1995
1994
|
background: none;
|
|
1996
1995
|
border: none;
|
|
1997
1996
|
cursor: pointer;
|
|
@@ -2055,22 +2054,32 @@
|
|
|
2055
2054
|
align-items: center;
|
|
2056
2055
|
justify-content: center;
|
|
2057
2056
|
}
|
|
2057
|
+
.selectAllLabel {
|
|
2058
|
+
display: flex;
|
|
2059
|
+
align-items: center;
|
|
2060
|
+
gap: calc(var(--osdk-surface-spacing) * 3);
|
|
2061
|
+
cursor: pointer;
|
|
2062
|
+
color: var(--osdk-typography-color-muted);
|
|
2063
|
+
font-size: var(--osdk-typography-size-body-small);
|
|
2064
|
+
font-weight: var(--osdk-typography-weight-bold);
|
|
2065
|
+
}
|
|
2066
|
+
.propertyLabel {
|
|
2067
|
+
display: flex;
|
|
2068
|
+
align-items: center;
|
|
2069
|
+
gap: calc(var(--osdk-surface-spacing) * 3);
|
|
2070
|
+
cursor: pointer;
|
|
2071
|
+
flex: 1;
|
|
2072
|
+
min-width: 0;
|
|
2073
|
+
}
|
|
2058
2074
|
.propertyName {
|
|
2059
2075
|
text-align: left;
|
|
2060
2076
|
flex: 1;
|
|
2061
2077
|
font-size: var(--osdk-typography-size-body-medium);
|
|
2062
2078
|
font-weight: 400;
|
|
2063
2079
|
color: var(--osdk-typography-color-default-rest);
|
|
2064
|
-
padding: 0;
|
|
2065
2080
|
overflow: hidden;
|
|
2066
2081
|
text-overflow: ellipsis;
|
|
2067
2082
|
white-space: nowrap;
|
|
2068
|
-
background: none;
|
|
2069
|
-
border: none;
|
|
2070
|
-
&:focus-visible {
|
|
2071
|
-
outline: var(--osdk-focus-outline);
|
|
2072
|
-
outline-offset: var(--osdk-focus-visible-outline-offset);
|
|
2073
|
-
}
|
|
2074
2083
|
}
|
|
2075
2084
|
.infoIcon {
|
|
2076
2085
|
color: var(--osdk-typography-color-muted);
|