@cfx-dev/ui-components 2.0.10 → 2.1.1
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/assets/Box.css +1 -1
- package/dist/assets/Table.css +1 -1
- package/dist/assets/global.css +1 -1
- package/dist/components/Layout/Box/Box.d.ts +4 -1
- package/dist/components/Layout/Box/Box.js +97 -31
- package/dist/components/Layout/Flex/Flex.d.ts +2 -3
- package/dist/components/Layout/Flex/Flex.js +39 -33
- package/dist/components/Table/Table.d.ts +21 -9
- package/dist/components/Table/Table.js +129 -70
- package/dist/components/Table/TableShowcase.js +7 -1
- package/dist/components/Table/index.d.ts +2 -0
- package/dist/components/Table/index.js +4 -0
- package/dist/components/ui.d.ts +60 -16
- package/dist/components/ui.js +52 -17
- package/dist/styles-scss/global.scss +1 -0
- package/dist/styles-scss/tokens.scss +25 -0
- package/package.json +1 -1
package/dist/assets/Box.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._root_1bvck_1._full-width_1bvck_1{width:100%}._root_1bvck_1._full-height_1bvck_4{height:100%}._root_1bvck_1._no-overflow_1bvck_7{overflow:hidden}._root_1bvck_1._no-shrink_1bvck_10{flex-shrink:0}._root_1bvck_1._grow_1bvck_13{flex-grow:1}._root_1bvck_1._no-grow_1bvck_16{flex-grow:0}
|
package/dist/assets/Table.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._root_13qg4_1 table{width:100%;border-collapse:collapse;border-radius:var(--border-radius-small);overflow:hidden}._root_13qg4_1 th,._root_13qg4_1 td{text-align:left;padding:calc(var(--quant) * 1.5) calc(var(--quant) * .75);color:#fff;height:calc(var(--quant) * 8.75);box-sizing:border-box}._root_13qg4_1 ._radio_13qg4_14{text-align:center;min-width:calc(var(--quant) * 8.75)}._root_13qg4_1 ._radio_13qg4_14 button{display:inline-flex}._root_13qg4_1 ._pointer_13qg4_21{cursor:pointer}._root_13qg4_1 ._selectedRow_13qg4_24{background-color:rgba(var(--color-secondary),.4);box-shadow:0 -1px rgba(var(--color-primary),1) inset}._root_13qg4_1 th{position:sticky;top:0;z-index:0;background-color:rgba(var(--color-bg-light),1)}._root_13qg4_1 th ._headerContent_13qg4_34{display:flex;align-items:center;flex-direction:row;justify-content:space-between}._root_13qg4_1 th ._headerContent_13qg4_34._sortable_13qg4_40._empty_13qg4_40{justify-content:flex-end}._root_13qg4_1 th ._sortButton_13qg4_43{opacity:.5;padding:calc(var(--quant) * 2)}._root_13qg4_1 th:hover ._sortButton_13qg4_43{opacity:1}._root_13qg4_1 tr{box-shadow:0 -1px rgba(var(--color-bg-light),1) inset;box-sizing:border-box}._root_13qg4_1 tr:hover{background-color:rgba(var(--color-secondary),.2)}._root_13qg4_1 tr:hover:not(._selectedRow_13qg4_24){box-shadow:none}._root_13qg4_1 tr:last-child{border-bottom-left-radius:var(--border-radius-small);border-bottom-right-radius:var(--border-radius-small)}
|