diff --git a/components/lib/dataviewlayoutoptions/DataViewLayoutOptions.d.ts b/components/lib/dataviewlayoutoptions/DataViewLayoutOptions.d.ts index 05e50c072..b2fba3919 100755 --- a/components/lib/dataviewlayoutoptions/DataViewLayoutOptions.d.ts +++ b/components/lib/dataviewlayoutoptions/DataViewLayoutOptions.d.ts @@ -60,6 +60,14 @@ export interface DataViewLayoutOptionsPassThroughOptions { * @see {@link SelectButtonPassThroughOptions} */ root?: SelectButtonPassThroughOptions; + /** + * Used to pass attributes to the list icon's DOM element. + */ + listIcon?: DataViewLayoutOptionsPassThroughOptionType; + /** + * Used to pass attributes to the grid icon's DOM element. + */ + gridIcon?: DataViewLayoutOptionsPassThroughOptionType; /** * Used to manage all lifecycle hooks. * @see {@link BaseComponent.ComponentHooks} diff --git a/components/lib/dataviewlayoutoptions/DataViewLayoutOptions.vue b/components/lib/dataviewlayoutoptions/DataViewLayoutOptions.vue index da76b5e3a..7f5cd4547 100755 --- a/components/lib/dataviewlayoutoptions/DataViewLayoutOptions.vue +++ b/components/lib/dataviewlayoutoptions/DataViewLayoutOptions.vue @@ -1,5 +1,5 @@