File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @preset-sdk/embedded" ,
3- "version" : " 0.2.0 " ,
3+ "version" : " 0.2.1 " ,
44 "description" : " Frontend SDK for embedding Preset data analytics into your own application" ,
55 "access" : " public" ,
66 "keywords" : [
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ export type UiConfigType = {
2525 }
2626 urlParams ?: {
2727 [ key : string ] : any
28- }
28+ } ;
29+ showRowLimitWarning ?: boolean ;
2930}
3031
3132export type EmbedDashboardParams = {
@@ -115,6 +116,9 @@ export async function embedDashboard({
115116 if ( dashboardUiConfig . emitDataMasks ) {
116117 configNumber += 16
117118 }
119+ if ( dashboardUiConfig . showRowLimitWarning ) {
120+ configNumber += 32 ;
121+ }
118122 }
119123 return configNumber
120124 }
You can’t perform that action at this time.
0 commit comments