@aivenio/aquarium 1.5.0 → 1.7.0
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/_variables.scss +1 -1
- package/dist/_variables_timescale.scss +1 -1
- package/dist/atoms.cjs +1 -1
- package/dist/atoms.mjs +1 -1
- package/dist/src/common/DataList/DataList.d.ts +1 -0
- package/dist/src/common/DataList/DataList.js +3 -3
- package/dist/src/common/Popover/Popover.js +2 -2
- package/dist/src/components/DataList/DataList.d.ts +7 -1
- package/dist/src/components/DataList/DataList.js +3 -3
- package/dist/src/components/DataTable/DataTable.d.ts +7 -1
- package/dist/src/components/DataTable/DataTable.js +3 -3
- package/dist/src/components/DropdownMenu/DropdownMenu.d.ts +4 -0
- package/dist/src/components/DropdownMenu/DropdownMenu.js +2 -2
- package/dist/src/components/EmptyState/EmptyState.d.ts +2 -1
- package/dist/src/components/EmptyState/EmptyState.js +4 -4
- package/dist/src/components/LineClamp/LineClamp.d.ts +22 -0
- package/dist/src/components/LineClamp/LineClamp.js +17 -0
- package/dist/src/components/MultiInput/MultiInput.d.ts +2 -1
- package/dist/src/components/MultiInput/MultiInput.js +3 -2
- package/dist/src/components/Popover/Popover.js +2 -2
- package/dist/src/components/Popover/PopoverWrapper.d.ts +1 -0
- package/dist/src/components/Popover/PopoverWrapper.js +3 -3
- package/dist/src/components/index.d.ts +1 -0
- package/dist/src/components/index.js +2 -1
- package/dist/styles.css +39 -0
- package/dist/styles_timescaledb.css +39 -0
- package/dist/system.cjs +359 -320
- package/dist/system.mjs +326 -288
- package/dist/tailwind.config.js +11 -1
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/types/tailwindGenerated.d.ts +1 -1
- package/dist/types/utils.d.ts +3 -0
- package/package.json +2 -1
package/dist/styles.css
CHANGED
@@ -676,6 +676,9 @@ input[type='number'].no-arrows {
|
|
676
676
|
.invisible {
|
677
677
|
visibility: hidden !important;
|
678
678
|
}
|
679
|
+
.collapse {
|
680
|
+
visibility: collapse !important;
|
681
|
+
}
|
679
682
|
.fixed {
|
680
683
|
position: fixed !important;
|
681
684
|
}
|
@@ -2049,6 +2052,42 @@ input[type='number'].no-arrows {
|
|
2049
2052
|
.ease-in-out {
|
2050
2053
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
|
2051
2054
|
}
|
2055
|
+
.line-clamp-1 {
|
2056
|
+
overflow: hidden !important;
|
2057
|
+
display: -webkit-box !important;
|
2058
|
+
-webkit-box-orient: vertical !important;
|
2059
|
+
-webkit-line-clamp: 1 !important;
|
2060
|
+
}
|
2061
|
+
.line-clamp-2 {
|
2062
|
+
overflow: hidden !important;
|
2063
|
+
display: -webkit-box !important;
|
2064
|
+
-webkit-box-orient: vertical !important;
|
2065
|
+
-webkit-line-clamp: 2 !important;
|
2066
|
+
}
|
2067
|
+
.line-clamp-3 {
|
2068
|
+
overflow: hidden !important;
|
2069
|
+
display: -webkit-box !important;
|
2070
|
+
-webkit-box-orient: vertical !important;
|
2071
|
+
-webkit-line-clamp: 3 !important;
|
2072
|
+
}
|
2073
|
+
.line-clamp-4 {
|
2074
|
+
overflow: hidden !important;
|
2075
|
+
display: -webkit-box !important;
|
2076
|
+
-webkit-box-orient: vertical !important;
|
2077
|
+
-webkit-line-clamp: 4 !important;
|
2078
|
+
}
|
2079
|
+
.line-clamp-5 {
|
2080
|
+
overflow: hidden !important;
|
2081
|
+
display: -webkit-box !important;
|
2082
|
+
-webkit-box-orient: vertical !important;
|
2083
|
+
-webkit-line-clamp: 5 !important;
|
2084
|
+
}
|
2085
|
+
.line-clamp-6 {
|
2086
|
+
overflow: hidden !important;
|
2087
|
+
display: -webkit-box !important;
|
2088
|
+
-webkit-box-orient: vertical !important;
|
2089
|
+
-webkit-line-clamp: 6 !important;
|
2090
|
+
}
|
2052
2091
|
.scrollbar-hide {
|
2053
2092
|
-ms-overflow-style: none !important;
|
2054
2093
|
scrollbar-width: none !important;
|
@@ -675,6 +675,9 @@ input[type='number'].no-arrows {
|
|
675
675
|
.invisible {
|
676
676
|
visibility: hidden !important;
|
677
677
|
}
|
678
|
+
.collapse {
|
679
|
+
visibility: collapse !important;
|
680
|
+
}
|
678
681
|
.fixed {
|
679
682
|
position: fixed !important;
|
680
683
|
}
|
@@ -2048,6 +2051,42 @@ input[type='number'].no-arrows {
|
|
2048
2051
|
.ease-in-out {
|
2049
2052
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
|
2050
2053
|
}
|
2054
|
+
.line-clamp-1 {
|
2055
|
+
overflow: hidden !important;
|
2056
|
+
display: -webkit-box !important;
|
2057
|
+
-webkit-box-orient: vertical !important;
|
2058
|
+
-webkit-line-clamp: 1 !important;
|
2059
|
+
}
|
2060
|
+
.line-clamp-2 {
|
2061
|
+
overflow: hidden !important;
|
2062
|
+
display: -webkit-box !important;
|
2063
|
+
-webkit-box-orient: vertical !important;
|
2064
|
+
-webkit-line-clamp: 2 !important;
|
2065
|
+
}
|
2066
|
+
.line-clamp-3 {
|
2067
|
+
overflow: hidden !important;
|
2068
|
+
display: -webkit-box !important;
|
2069
|
+
-webkit-box-orient: vertical !important;
|
2070
|
+
-webkit-line-clamp: 3 !important;
|
2071
|
+
}
|
2072
|
+
.line-clamp-4 {
|
2073
|
+
overflow: hidden !important;
|
2074
|
+
display: -webkit-box !important;
|
2075
|
+
-webkit-box-orient: vertical !important;
|
2076
|
+
-webkit-line-clamp: 4 !important;
|
2077
|
+
}
|
2078
|
+
.line-clamp-5 {
|
2079
|
+
overflow: hidden !important;
|
2080
|
+
display: -webkit-box !important;
|
2081
|
+
-webkit-box-orient: vertical !important;
|
2082
|
+
-webkit-line-clamp: 5 !important;
|
2083
|
+
}
|
2084
|
+
.line-clamp-6 {
|
2085
|
+
overflow: hidden !important;
|
2086
|
+
display: -webkit-box !important;
|
2087
|
+
-webkit-box-orient: vertical !important;
|
2088
|
+
-webkit-line-clamp: 6 !important;
|
2089
|
+
}
|
2051
2090
|
.scrollbar-hide {
|
2052
2091
|
-ms-overflow-style: none !important;
|
2053
2092
|
scrollbar-width: none !important;
|