chore: remove deprecated feature flag for custom loading state in TableWidget (#38826)
This commit is contained in:
parent
efceb1e390
commit
be2133eda8
|
|
@ -36,8 +36,6 @@ export const FEATURE_FLAG = {
|
|||
release_ide_animations_enabled: "release_ide_animations_enabled",
|
||||
release_ide_datasource_selector_enabled:
|
||||
"release_ide_datasource_selector_enabled",
|
||||
release_table_custom_loading_state_enabled:
|
||||
"release_table_custom_loading_state_enabled",
|
||||
release_custom_widget_ai_builder: "release_custom_widget_ai_builder",
|
||||
ab_request_new_integration_enabled: "ab_request_new_integration_enabled",
|
||||
release_evaluation_scope_cache: "release_evaluation_scope_cache",
|
||||
|
|
@ -86,7 +84,6 @@ export const DEFAULT_FEATURE_FLAG_VALUE: FeatureFlags = {
|
|||
release_git_persist_branch_enabled: false,
|
||||
release_ide_animations_enabled: false,
|
||||
release_ide_datasource_selector_enabled: false,
|
||||
release_table_custom_loading_state_enabled: false,
|
||||
release_custom_widget_ai_builder: false,
|
||||
ab_request_new_integration_enabled: false,
|
||||
release_evaluation_scope_cache: false,
|
||||
|
|
|
|||
|
|
@ -244,8 +244,5 @@ export const DEFAULT_COLUMN_NAME = "Table Column";
|
|||
export const ALLOW_TABLE_WIDGET_SERVER_SIDE_FILTERING =
|
||||
FEATURE_FLAG["release_table_serverside_filtering_enabled"];
|
||||
|
||||
export const CUSTOM_LOADING_STATE_ENABLED =
|
||||
FEATURE_FLAG["release_table_custom_loading_state_enabled"];
|
||||
|
||||
export const HTML_COLUMN_TYPE_ENABLED =
|
||||
FEATURE_FLAG["release_table_html_column_type_enabled"];
|
||||
|
|
|
|||
|
|
@ -7,10 +7,7 @@ import { ValidationTypes } from "constants/WidgetValidation";
|
|||
import { EvaluationSubstitutionType } from "entities/DataTree/dataTreeFactory";
|
||||
import { AutocompleteDataType } from "utils/autocomplete/AutocompleteDataType";
|
||||
import type { TableWidgetProps } from "widgets/TableWidgetV2/constants";
|
||||
import {
|
||||
ALLOW_TABLE_WIDGET_SERVER_SIDE_FILTERING,
|
||||
CUSTOM_LOADING_STATE_ENABLED,
|
||||
} from "../../constants";
|
||||
import { ALLOW_TABLE_WIDGET_SERVER_SIDE_FILTERING } from "../../constants";
|
||||
import { InlineEditingSaveOptions } from "widgets/TableWidgetV2/constants";
|
||||
import { composePropertyUpdateHook } from "widgets/WidgetUtils";
|
||||
import {
|
||||
|
|
@ -513,7 +510,6 @@ export default [
|
|||
isBindProperty: true,
|
||||
isTriggerProperty: false,
|
||||
validation: { type: ValidationTypes.BOOLEAN },
|
||||
hidden: () => !Widget.getFeatureFlag(CUSTOM_LOADING_STATE_ENABLED),
|
||||
},
|
||||
{
|
||||
propertyName: "customIsLoadingValue",
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user