@gooddata/sdk-ui-dashboard 11.41.0-alpha.2 → 11.41.0-alpha.4

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.
Files changed (71) hide show
  1. package/NOTICE +1294 -1498
  2. package/esm/__version.d.ts +1 -1
  3. package/esm/__version.js +1 -1
  4. package/esm/index.d.ts +1 -1
  5. package/esm/index.js +1 -1
  6. package/esm/model/commandHandlers/dashboard/exportDashboardToPdfHandler.js +4 -0
  7. package/esm/model/commandHandlers/dashboard/exportDashboardToPdfPresentationHandler.js +5 -0
  8. package/esm/model/commandHandlers/dashboard/exportDashboardToPptPresentationHandler.js +5 -0
  9. package/esm/model/commandHandlers/widgets/exportImageInsightWidgetHandler.js +5 -0
  10. package/esm/model/commandHandlers/widgets/exportSlidesInsightWidgetHandler.js +5 -0
  11. package/esm/model/commands/executionResults.d.ts +2 -2
  12. package/esm/model/commands/executionResults.js +5 -2
  13. package/esm/model/react/useWidgetExecutionsHandler.d.ts +2 -2
  14. package/esm/model/react/useWidgetExecutionsHandler.js +8 -3
  15. package/esm/model/store/config/configSelectors.js +1 -1
  16. package/esm/model/store/executionResults/executionResultsSelectors.d.ts +18 -1
  17. package/esm/model/store/executionResults/executionResultsSelectors.js +16 -0
  18. package/esm/model/store/executionResults/types.d.ts +7 -1
  19. package/esm/model/store/executionResults/types.js +1 -1
  20. package/esm/model/store/tabs/filterContext/filterContextUtils.js +5 -2
  21. package/esm/model/store/tabs/parameters/parametersHelpers.d.ts +4 -5
  22. package/esm/model/store/tabs/parameters/parametersSelectors.d.ts +2 -3
  23. package/esm/presentation/automations/alerting/DefaultAlertingDialog/hooks/useEditAlert.js +2 -2
  24. package/esm/presentation/automations/alerting/DefaultAlertingDialog/utils/getters.js +2 -1
  25. package/esm/presentation/automations/shared/automationFilters/useAutomationFiltersSelect.js +1 -1
  26. package/esm/presentation/automations/shared/automationFilters/utils.d.ts +1 -1
  27. package/esm/presentation/automations/shared/automationFilters/utils.js +4 -2
  28. package/esm/presentation/localization/bundles/de-DE.localization-bundle.js +1 -1
  29. package/esm/presentation/localization/bundles/en-AU.localization-bundle.js +1 -1
  30. package/esm/presentation/localization/bundles/en-GB.localization-bundle.js +1 -1
  31. package/esm/presentation/localization/bundles/en-US.localization-bundle.d.ts +64 -0
  32. package/esm/presentation/localization/bundles/en-US.localization-bundle.js +64 -0
  33. package/esm/presentation/localization/bundles/es-419.localization-bundle.js +1 -1
  34. package/esm/presentation/localization/bundles/es-ES.localization-bundle.js +1 -1
  35. package/esm/presentation/localization/bundles/fi-FI.localization-bundle.js +1 -1
  36. package/esm/presentation/localization/bundles/fr-CA.localization-bundle.js +1 -1
  37. package/esm/presentation/localization/bundles/fr-FR.localization-bundle.js +1 -1
  38. package/esm/presentation/localization/bundles/id-ID.localization-bundle.js +1 -1
  39. package/esm/presentation/localization/bundles/it-IT.localization-bundle.js +1 -1
  40. package/esm/presentation/localization/bundles/ja-JP.localization-bundle.js +1 -1
  41. package/esm/presentation/localization/bundles/ko-KR.localization-bundle.js +1 -1
  42. package/esm/presentation/localization/bundles/nl-NL.localization-bundle.js +1 -1
  43. package/esm/presentation/localization/bundles/pl-PL.localization-bundle.js +1 -1
  44. package/esm/presentation/localization/bundles/pt-BR.localization-bundle.js +1 -1
  45. package/esm/presentation/localization/bundles/pt-PT.localization-bundle.js +1 -1
  46. package/esm/presentation/localization/bundles/ru-RU.localization-bundle.js +1 -1
  47. package/esm/presentation/localization/bundles/sl-SI.localization-bundle.js +1 -1
  48. package/esm/presentation/localization/bundles/th-TH.localization-bundle.js +1 -1
  49. package/esm/presentation/localization/bundles/tr-TR.localization-bundle.js +1 -1
  50. package/esm/presentation/localization/bundles/uk-UA.localization-bundle.js +1 -1
  51. package/esm/presentation/localization/bundles/vi-VN.localization-bundle.js +1 -1
  52. package/esm/presentation/localization/bundles/zh-HK.localization-bundle.js +1 -1
  53. package/esm/presentation/localization/bundles/zh-Hans.localization-bundle.js +1 -1
  54. package/esm/presentation/localization/bundles/zh-Hant.localization-bundle.js +1 -1
  55. package/esm/presentation/topBar/buttonBar/DefaultButtonBar.d.ts +1 -1
  56. package/esm/presentation/topBar/buttonBar/DefaultButtonBar.js +2 -2
  57. package/esm/presentation/topBar/buttonBar/types.d.ts +2 -0
  58. package/esm/presentation/widget/widget/InsightWidget/DefaultDashboardInsightWidget.js +8 -0
  59. package/esm/presentation/widget/widget/InsightWidget/useInsightWarning.d.ts +5 -0
  60. package/esm/presentation/widget/widget/InsightWidget/useInsightWarning.js +11 -0
  61. package/esm/presentation/widget/widget/warningPartialResult/InsightWidgetWarningPartialResult.d.ts +13 -0
  62. package/esm/presentation/widget/widget/warningPartialResult/InsightWidgetWarningPartialResult.js +108 -0
  63. package/esm/sdk-ui-dashboard.d.ts +34 -5
  64. package/esm/tsdoc-metadata.json +1 -1
  65. package/package.json +21 -21
  66. package/styles/css/main.css +129 -0
  67. package/styles/css/main.css.map +1 -1
  68. package/styles/css/warningPartialResult.css +16 -0
  69. package/styles/css/warningPartialResult.css.map +1 -0
  70. package/styles/scss/main.scss +1 -0
  71. package/styles/scss/warningPartialResult.scss +16 -0
@@ -39,6 +39,7 @@ import { DrillDefinition } from '@gooddata/sdk-model';
39
39
  import { EmptyValues } from '@gooddata/sdk-model';
40
40
  import { EntityId } from '@reduxjs/toolkit';
41
41
  import { EntityState } from '@reduxjs/toolkit';
42
+ import { ExecutionResultLimitType } from '@gooddata/sdk-model';
42
43
  import { ExplicitDrill } from '@gooddata/sdk-ui';
43
44
  import { FilterContextItem } from '@gooddata/sdk-model';
44
45
  import { GoodDataSdkError } from '@gooddata/sdk-ui';
@@ -82,6 +83,7 @@ import { IDashboardDateFilter } from '@gooddata/sdk-model';
82
83
  import { IDashboardDateFilterConfig as IDashboardDateFilterConfig_2 } from '@gooddata/sdk-model';
83
84
  import { IDashboardDateFilterConfigItem } from '@gooddata/sdk-model';
84
85
  import { IDashboardDefinition } from '@gooddata/sdk-model';
86
+ import { IDashboardExportParameter } from '@gooddata/sdk-model';
85
87
  import { IDashboardExportPresentationOptions } from '@gooddata/sdk-backend-spi';
86
88
  import { IDashboardExportRawOptions } from '@gooddata/sdk-backend-spi';
87
89
  import { IDashboardFilterGroup } from '@gooddata/sdk-model';
@@ -98,7 +100,6 @@ import { IDashboardMeasureValueFilter } from '@gooddata/sdk-model';
98
100
  import { IDashboardMeasureValueFilterConfig } from '@gooddata/sdk-model';
99
101
  import { IDashboardObjectIdentity } from '@gooddata/sdk-model';
100
102
  import { IDashboardParameter } from '@gooddata/sdk-model';
101
- import { IDashboardParameterValueOverride } from '@gooddata/sdk-backend-spi';
102
103
  import { IDashboardPermissions } from '@gooddata/sdk-model';
103
104
  import { IDashboardReferences } from '@gooddata/sdk-backend-spi';
104
105
  import { IDashboardWidget } from '@gooddata/sdk-model';
@@ -126,6 +127,7 @@ import { IExecutionConfig } from '@gooddata/sdk-model';
126
127
  import { IExecutionConfiguration } from '@gooddata/sdk-ui';
127
128
  import { IExecutionDefinition } from '@gooddata/sdk-model';
128
129
  import { IExecutionResult } from '@gooddata/sdk-backend-spi';
130
+ import { IExecutionResultLimitBreak } from '@gooddata/sdk-model';
129
131
  import { IExportResult } from '@gooddata/sdk-backend-spi';
130
132
  import { IFilter } from '@gooddata/sdk-model';
131
133
  import { IFilterableWidget } from '@gooddata/sdk-model';
@@ -3754,7 +3756,7 @@ export declare function DefaultAlertingManagementDialogNew({ onPauseSuccess, onP
3754
3756
  /**
3755
3757
  * @alpha
3756
3758
  */
3757
- export declare function DefaultButtonBar({ children, cancelButtonProps, saveButtonProps, settingButtonProps, editButtonProps, saveAsNewButtonProps, shareButtonProps, childContentPosition }: IButtonBarProps): ReactElement;
3759
+ export declare function DefaultButtonBar({ children, cancelButtonProps, saveButtonProps, settingButtonProps, editButtonProps, saveAsNewButtonProps, shareButtonProps, childContentPosition, left, right }: IButtonBarProps): ReactElement;
3758
3760
 
3759
3761
  /**
3760
3762
  * @internal
@@ -5885,6 +5887,8 @@ export declare interface IButtonBarProps {
5885
5887
  settingButtonProps: ISettingButtonProps;
5886
5888
  saveAsNewButtonProps: ISaveAsNewButtonProps;
5887
5889
  children?: ReactNode;
5890
+ left?: ReactNode;
5891
+ right?: ReactNode;
5888
5892
  }
5889
5893
 
5890
5894
  /**
@@ -12767,6 +12771,12 @@ export declare interface IExecutionResultEnvelope {
12767
12771
  executionResult?: IExecutionResult;
12768
12772
  error?: GoodDataSdkError;
12769
12773
  warnings?: IResultWarning[];
12774
+ /**
12775
+ * Limits broken during result computation, causing partial data to be returned for this widget.
12776
+ *
12777
+ * @alpha
12778
+ */
12779
+ limitBreaks?: IExecutionResultLimitBreak[];
12770
12780
  }
12771
12781
 
12772
12782
  /**
@@ -24081,6 +24091,7 @@ export declare const selectExecutionResult: (state: DashboardState, id: EntityId
24081
24091
  executionResult?: IExecutionResult | undefined;
24082
24092
  error?: GoodDataSdkError | undefined;
24083
24093
  warnings?: IResultWarning[] | undefined;
24094
+ limitBreaks?: IExecutionResultLimitBreak<ExecutionResultLimitType | (string & {})>[] | undefined;
24084
24095
  };
24085
24096
 
24086
24097
  /**
@@ -24088,6 +24099,17 @@ export declare const selectExecutionResult: (state: DashboardState, id: EntityId
24088
24099
  */
24089
24100
  export declare const selectExecutionResultByRef: (ref: ObjRef | undefined) => DashboardSelector<IExecutionResultEnvelope | undefined>;
24090
24101
 
24102
+ /**
24103
+ * Selects the execution result limit breaks for the widget with the given ref.
24104
+ *
24105
+ * @remarks
24106
+ * Limit breaks indicate that the widget's execution hit a row/column/cell limit and only partial
24107
+ * data was returned. Returns an empty array when there are no limit breaks or the result is not available.
24108
+ *
24109
+ * @alpha
24110
+ */
24111
+ export declare const selectExecutionResultLimitBreaksByRef: (ref: ObjRef | undefined) => DashboardSelector<IExecutionResultLimitBreak[]>;
24112
+
24091
24113
  /**
24092
24114
  * @internal
24093
24115
  */
@@ -24115,7 +24137,7 @@ export declare const selectExecutionTimestamp: DashboardSelector<string | undefi
24115
24137
  *
24116
24138
  * @alpha
24117
24139
  */
24118
- export declare const selectExportEffectiveParameters: (widgetIds: string[] | undefined) => DashboardSelector<Record<string, IDashboardParameterValueOverride[]>>;
24140
+ export declare const selectExportEffectiveParameters: (widgetIds: string[] | undefined) => DashboardSelector<Record<string, IDashboardExportParameter[]>>;
24119
24141
 
24120
24142
  /**
24121
24143
  * Returns custom export metadata.
@@ -24654,6 +24676,13 @@ export declare const selectHasCatalogFacts: DashboardSelector<boolean>;
24654
24676
  */
24655
24677
  export declare const selectHasCatalogMeasures: DashboardSelector<boolean>;
24656
24678
 
24679
+ /**
24680
+ * Selects whether the widget with the given ref returned partial data because an execution limit was reached.
24681
+ *
24682
+ * @alpha
24683
+ */
24684
+ export declare const selectHasExecutionResultLimitBreaksByRef: (ref: ObjRef | undefined) => DashboardSelector<boolean>;
24685
+
24657
24686
  /**
24658
24687
  * @alpha
24659
24688
  */
@@ -26296,7 +26325,7 @@ export declare function setDrillForKpiWidget(ref: ObjRef, legacyDashboardRef: Ob
26296
26325
  *
26297
26326
  * @beta
26298
26327
  */
26299
- export declare function setExecutionResultData(id: ObjRef | string, executionResult: IExecutionResult, executionWarnings: IResultWarning[] | undefined, correlationId?: string): IUpsertExecutionResult;
26328
+ export declare function setExecutionResultData(id: ObjRef | string, executionResult: IExecutionResult, executionWarnings: IResultWarning[] | undefined, limitBreaks: IExecutionResultLimitBreak[] | undefined, correlationId?: string): IUpsertExecutionResult;
26300
26329
 
26301
26330
  /**
26302
26331
  * Creates an {@link IUpsertExecutionResult} command that makes the relevant execution result indicate an error and stop loading.
@@ -28441,7 +28470,7 @@ export declare function useWidgetDragEndHandler(): () => void;
28441
28470
  export declare function useWidgetExecutionsHandler(widgetRef: ObjRef): {
28442
28471
  onLoadingChanged: OnLoadingChanged;
28443
28472
  onError: OnError;
28444
- onSuccess: (executionResult: IExecutionResult, warnings: IResultWarning[] | undefined) => void;
28473
+ onSuccess: (executionResult: IExecutionResult, warnings: IResultWarning[] | undefined, limitBreaks?: IExecutionResultLimitBreak<ExecutionResultLimitType | (string & {})>[] | undefined) => void;
28445
28474
  onPushData: (data: IPushData) => void;
28446
28475
  };
28447
28476
 
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.55.2"
8
+ "packageVersion": "7.58.7"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-dashboard",
3
- "version": "11.41.0-alpha.2",
3
+ "version": "11.41.0-alpha.4",
4
4
  "description": "GoodData SDK - Dashboard Component",
5
5
  "license": "LicenseRef-LICENSE",
6
6
  "author": "GoodData Corporation",
@@ -59,20 +59,20 @@
59
59
  "redux-saga": "1.3.0",
60
60
  "ts-invariant": "0.10.3",
61
61
  "tslib": "2.8.1",
62
- "uuid": "11.1.0",
63
- "@gooddata/sdk-backend-spi": "11.41.0-alpha.2",
64
- "@gooddata/sdk-backend-base": "11.41.0-alpha.2",
65
- "@gooddata/sdk-ui": "11.41.0-alpha.2",
66
- "@gooddata/sdk-model": "11.41.0-alpha.2",
67
- "@gooddata/sdk-ui-charts": "11.41.0-alpha.2",
68
- "@gooddata/sdk-ui-ext": "11.41.0-alpha.2",
69
- "@gooddata/sdk-ui-filters": "11.41.0-alpha.2",
70
- "@gooddata/sdk-ui-geo": "11.41.0-alpha.2",
71
- "@gooddata/sdk-ui-kit": "11.41.0-alpha.2",
72
- "@gooddata/sdk-ui-theme-provider": "11.41.0-alpha.2",
73
- "@gooddata/sdk-ui-vis-commons": "11.41.0-alpha.2",
74
- "@gooddata/sdk-ui-pivot": "11.41.0-alpha.2",
75
- "@gooddata/util": "11.41.0-alpha.2"
62
+ "uuid": "11.1.1",
63
+ "@gooddata/sdk-backend-base": "11.41.0-alpha.4",
64
+ "@gooddata/sdk-backend-spi": "11.41.0-alpha.4",
65
+ "@gooddata/sdk-model": "11.41.0-alpha.4",
66
+ "@gooddata/sdk-ui": "11.41.0-alpha.4",
67
+ "@gooddata/sdk-ui-charts": "11.41.0-alpha.4",
68
+ "@gooddata/sdk-ui-ext": "11.41.0-alpha.4",
69
+ "@gooddata/sdk-ui-filters": "11.41.0-alpha.4",
70
+ "@gooddata/sdk-ui-geo": "11.41.0-alpha.4",
71
+ "@gooddata/sdk-ui-kit": "11.41.0-alpha.4",
72
+ "@gooddata/sdk-ui-pivot": "11.41.0-alpha.4",
73
+ "@gooddata/sdk-ui-theme-provider": "11.41.0-alpha.4",
74
+ "@gooddata/sdk-ui-vis-commons": "11.41.0-alpha.4",
75
+ "@gooddata/util": "11.41.0-alpha.4"
76
76
  },
77
77
  "devDependencies": {
78
78
  "@microsoft/api-documenter": "^7.17.0",
@@ -118,12 +118,12 @@
118
118
  "typescript": "5.9.3",
119
119
  "vitest": "4.1.8",
120
120
  "vitest-dom": "0.1.1",
121
- "@gooddata/eslint-config": "11.41.0-alpha.2",
122
- "@gooddata/i18n-toolkit": "11.41.0-alpha.2",
123
- "@gooddata/oxlint-config": "11.41.0-alpha.2",
124
- "@gooddata/reference-workspace": "11.41.0-alpha.2",
125
- "@gooddata/sdk-backend-mockingbird": "11.41.0-alpha.2",
126
- "@gooddata/stylelint-config": "11.41.0-alpha.2"
121
+ "@gooddata/eslint-config": "11.41.0-alpha.4",
122
+ "@gooddata/i18n-toolkit": "11.41.0-alpha.4",
123
+ "@gooddata/oxlint-config": "11.41.0-alpha.4",
124
+ "@gooddata/reference-workspace": "11.41.0-alpha.4",
125
+ "@gooddata/sdk-backend-mockingbird": "11.41.0-alpha.4",
126
+ "@gooddata/stylelint-config": "11.41.0-alpha.4"
127
127
  },
128
128
  "peerDependencies": {
129
129
  "react": "^18.0.0 || ^19.0.0",
@@ -6580,6 +6580,63 @@ input[type=search]::-webkit-search-cancel-button {
6580
6580
  text-decoration: none;
6581
6581
  }
6582
6582
 
6583
+ .gd-ui-kit-control-button--layout-row {
6584
+ width: 100%;
6585
+ max-width: none;
6586
+ box-sizing: border-box;
6587
+ font-size: 14px;
6588
+ border-radius: 0;
6589
+ padding-top: 15px;
6590
+ padding-bottom: 15px;
6591
+ padding-right: 28px;
6592
+ }
6593
+
6594
+ .gd-ui-kit-control-button--layout-row::after {
6595
+ display: none;
6596
+ }
6597
+
6598
+ .gd-ui-kit-control-button--layout-row .gd-ui-kit-control-button__icon {
6599
+ display: flex;
6600
+ height: 100%;
6601
+ align-items: center;
6602
+ }
6603
+
6604
+ .gd-ui-kit-control-button--layout-row .gd-ui-kit-control-button__content {
6605
+ flex-direction: row;
6606
+ align-items: center;
6607
+ justify-content: flex-start;
6608
+ }
6609
+
6610
+ .gd-ui-kit-control-button--layout-row .gd-ui-kit-control-button__title-row {
6611
+ flex: 0 1 auto;
6612
+ min-width: 0;
6613
+ max-width: 100%;
6614
+ margin-right: 5px;
6615
+ }
6616
+
6617
+ .gd-ui-kit-control-button--layout-row .gd-ui-kit-control-button__title--withColon::after {
6618
+ content: ":";
6619
+ }
6620
+
6621
+ .gd-ui-kit-control-button--layout-row .gd-ui-kit-control-button__subtitle-row {
6622
+ flex: 1 1 auto;
6623
+ min-width: 0;
6624
+ max-width: none;
6625
+ }
6626
+
6627
+ .gd-ui-kit-control-button--layout-row .gd-ui-kit-control-button__subtitle-row::after {
6628
+ position: absolute;
6629
+ top: 50%;
6630
+ right: -16px;
6631
+ margin-left: 0;
6632
+ font-size: 18px;
6633
+ transform: translateY(-50%);
6634
+ }
6635
+
6636
+ .gd-ui-kit-control-button--hideChevron .gd-ui-kit-control-button__subtitle-row::after {
6637
+ display: none;
6638
+ }
6639
+
6583
6640
  .gd-ui-kit-control-button__icon {
6584
6641
  position: relative;
6585
6642
  z-index: 1;
@@ -18829,6 +18886,63 @@ a.gd-button-link:hover .gd-button-text, a.gd-button-link-dimmed:hover .gd-button
18829
18886
  text-decoration: none;
18830
18887
  }
18831
18888
 
18889
+ .gd-ui-kit-control-button--layout-row {
18890
+ width: 100%;
18891
+ max-width: none;
18892
+ box-sizing: border-box;
18893
+ font-size: 14px;
18894
+ border-radius: 0;
18895
+ padding-top: 15px;
18896
+ padding-bottom: 15px;
18897
+ padding-right: 28px;
18898
+ }
18899
+
18900
+ .gd-ui-kit-control-button--layout-row::after {
18901
+ display: none;
18902
+ }
18903
+
18904
+ .gd-ui-kit-control-button--layout-row .gd-ui-kit-control-button__icon {
18905
+ display: flex;
18906
+ height: 100%;
18907
+ align-items: center;
18908
+ }
18909
+
18910
+ .gd-ui-kit-control-button--layout-row .gd-ui-kit-control-button__content {
18911
+ flex-direction: row;
18912
+ align-items: center;
18913
+ justify-content: flex-start;
18914
+ }
18915
+
18916
+ .gd-ui-kit-control-button--layout-row .gd-ui-kit-control-button__title-row {
18917
+ flex: 0 1 auto;
18918
+ min-width: 0;
18919
+ max-width: 100%;
18920
+ margin-right: 5px;
18921
+ }
18922
+
18923
+ .gd-ui-kit-control-button--layout-row .gd-ui-kit-control-button__title--withColon::after {
18924
+ content: ":";
18925
+ }
18926
+
18927
+ .gd-ui-kit-control-button--layout-row .gd-ui-kit-control-button__subtitle-row {
18928
+ flex: 1 1 auto;
18929
+ min-width: 0;
18930
+ max-width: none;
18931
+ }
18932
+
18933
+ .gd-ui-kit-control-button--layout-row .gd-ui-kit-control-button__subtitle-row::after {
18934
+ position: absolute;
18935
+ top: 50%;
18936
+ right: -16px;
18937
+ margin-left: 0;
18938
+ font-size: 18px;
18939
+ transform: translateY(-50%);
18940
+ }
18941
+
18942
+ .gd-ui-kit-control-button--hideChevron .gd-ui-kit-control-button__subtitle-row::after {
18943
+ display: none;
18944
+ }
18945
+
18832
18946
  .gd-ui-kit-control-button__icon {
18833
18947
  position: relative;
18834
18948
  z-index: 1;
@@ -30789,6 +30903,21 @@ figure {
30789
30903
  opacity: 0.6;
30790
30904
  }
30791
30905
  }
30906
+ .overlay.gd-dialog.gd-warning-partial-result {
30907
+ position: absolute;
30908
+ z-index: 2;
30909
+ bottom: 10px;
30910
+ left: 50%;
30911
+ width: 280px;
30912
+ max-width: calc(100% - 20px);
30913
+ padding: 0;
30914
+ transform: translateX(-50%);
30915
+ background: transparent;
30916
+ border: 0;
30917
+ border-radius: 0;
30918
+ box-shadow: none;
30919
+ }
30920
+
30792
30921
  .gd-locked-status {
30793
30922
  display: inline-block;
30794
30923
  }