@powerhousedao/design-system 5.1.0-dev.40 → 5.1.0-dev.42
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/src/connect/components/db-explorer/components/filter-bar.d.ts +8 -0
- package/dist/src/connect/components/db-explorer/components/filter-bar.d.ts.map +1 -0
- package/dist/src/connect/components/db-explorer/components/filter-bar.js +177 -0
- package/dist/src/connect/components/db-explorer/components/filter-bar.js.map +1 -0
- package/dist/src/connect/components/db-explorer/components/table-view.d.ts +14 -1
- package/dist/src/connect/components/db-explorer/components/table-view.d.ts.map +1 -1
- package/dist/src/connect/components/db-explorer/components/table-view.js +67 -12
- package/dist/src/connect/components/db-explorer/components/table-view.js.map +1 -1
- package/dist/src/connect/components/db-explorer/db-explorer.d.ts +5 -3
- package/dist/src/connect/components/db-explorer/db-explorer.d.ts.map +1 -1
- package/dist/src/connect/components/db-explorer/db-explorer.js +11 -4
- package/dist/src/connect/components/db-explorer/db-explorer.js.map +1 -1
- package/dist/src/connect/components/db-explorer/index.d.ts +1 -0
- package/dist/src/connect/components/db-explorer/index.d.ts.map +1 -1
- package/dist/src/connect/components/document-toolbar/document-toolbar.js +2 -2
- package/dist/src/connect/components/document-toolbar/document-toolbar.js.map +1 -1
- package/dist/style.css +15 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
package/dist/style.css
CHANGED
|
@@ -1542,6 +1542,9 @@
|
|
|
1542
1542
|
.w-11 {
|
|
1543
1543
|
width: calc(var(--spacing) * 11);
|
|
1544
1544
|
}
|
|
1545
|
+
.w-12 {
|
|
1546
|
+
width: calc(var(--spacing) * 12);
|
|
1547
|
+
}
|
|
1545
1548
|
.w-32 {
|
|
1546
1549
|
width: calc(var(--spacing) * 32);
|
|
1547
1550
|
}
|
|
@@ -1653,9 +1656,18 @@
|
|
|
1653
1656
|
.min-w-72 {
|
|
1654
1657
|
min-width: calc(var(--spacing) * 72);
|
|
1655
1658
|
}
|
|
1659
|
+
.min-w-\[80px\] {
|
|
1660
|
+
min-width: 80px;
|
|
1661
|
+
}
|
|
1662
|
+
.min-w-\[100px\] {
|
|
1663
|
+
min-width: 100px;
|
|
1664
|
+
}
|
|
1656
1665
|
.min-w-\[142px\] {
|
|
1657
1666
|
min-width: 142px;
|
|
1658
1667
|
}
|
|
1668
|
+
.min-w-\[150px\] {
|
|
1669
|
+
min-width: 150px;
|
|
1670
|
+
}
|
|
1659
1671
|
.min-w-\[360px\] {
|
|
1660
1672
|
min-width: 360px;
|
|
1661
1673
|
}
|
|
@@ -2205,6 +2217,9 @@
|
|
|
2205
2217
|
.px-1 {
|
|
2206
2218
|
padding-inline: calc(var(--spacing) * 1);
|
|
2207
2219
|
}
|
|
2220
|
+
.px-1\.5 {
|
|
2221
|
+
padding-inline: calc(var(--spacing) * 1.5);
|
|
2222
|
+
}
|
|
2208
2223
|
.px-2 {
|
|
2209
2224
|
padding-inline: calc(var(--spacing) * 2);
|
|
2210
2225
|
}
|