@neovici/cosmoz-omnitable 14.9.0 → 14.11.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/lib/render-footer.js +3 -1
- package/lib/render-header.js +1 -0
- package/lib/use-list.js +2 -1
- package/package.json +1 -1
package/lib/render-footer.js
CHANGED
|
@@ -15,6 +15,8 @@ export const renderFooter = ({
|
|
|
15
15
|
html`<cosmoz-bottom-bar
|
|
16
16
|
id="bottomBar"
|
|
17
17
|
?active=${!isEmpty(selectedItems.length)}
|
|
18
|
+
part="bottomBar"
|
|
19
|
+
exportparts="bar: bottomBar-bar, info: bottomBar-info, buttons: bottomBar-buttons"
|
|
18
20
|
>
|
|
19
21
|
<slot name="info" slot="info">
|
|
20
22
|
${ngettext(
|
|
@@ -28,7 +30,7 @@ export const renderFooter = ({
|
|
|
28
30
|
as it might change the slot of the actions to distribute them in the menu -->
|
|
29
31
|
<slot name="bottom-bar-toolbar" slot="bottom-bar-toolbar"></slot>
|
|
30
32
|
<slot name="bottom-bar-menu" slot="bottom-bar-menu"></slot>
|
|
31
|
-
<cosmoz-dropdown-menu slot="extra" .placement=${topPlacement}>
|
|
33
|
+
<cosmoz-dropdown-menu part="extra" slot="extra" .placement=${topPlacement}>
|
|
32
34
|
<svg
|
|
33
35
|
slot="button"
|
|
34
36
|
width="14"
|
package/lib/render-header.js
CHANGED
package/lib/use-list.js
CHANGED
|
@@ -69,7 +69,7 @@ const renderItem =
|
|
|
69
69
|
class="itemRow"
|
|
70
70
|
@click=${onItemClick}
|
|
71
71
|
>
|
|
72
|
-
<div class="itemRow-wrapper">
|
|
72
|
+
<div class="itemRow-wrapper" part="itemRow-wrapper">
|
|
73
73
|
<input
|
|
74
74
|
class="checkbox"
|
|
75
75
|
type="checkbox"
|
|
@@ -80,6 +80,7 @@ const renderItem =
|
|
|
80
80
|
?disabled=${!dataIsValid}
|
|
81
81
|
/>
|
|
82
82
|
<cosmoz-omnitable-item-row
|
|
83
|
+
part="itemRow-inner"
|
|
83
84
|
.columns=${columns}
|
|
84
85
|
.index=${index}
|
|
85
86
|
.selected=${selected}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neovici/cosmoz-omnitable",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.11.0",
|
|
4
4
|
"description": "[](https://travis-ci.org/Neovici/cosmoz-omnitable)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web-components"
|