From e27aa38db0c69b1ba0dd5257ae3661337a391b52 Mon Sep 17 00:00:00 2001 From: samarinsergey Date: Wed, 3 Apr 2024 15:58:54 +0300 Subject: [PATCH] [HOS-2345] remove Select.selectStyleEx interface --- compiler/src/pre_define.ts | 1 - compiler/src/process_component_build.ts | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/compiler/src/pre_define.ts b/compiler/src/pre_define.ts index 09e7ab92..32611c86 100644 --- a/compiler/src/pre_define.ts +++ b/compiler/src/pre_define.ts @@ -164,7 +164,6 @@ export const ATTRIBUTE_ANIMATETO_SET: Set = new Set(['animateTo', 'anima export const ATTRIBUTE_STATESTYLES: string = 'stateStyles'; export const ATTRIBUTE_ID: string = 'id'; export const ATTRIBUTE_ATTRIBUTE_MODIFIER: string = 'attributeModifier'; -export const ATTRIBUTE_SELECT_STYLE: string = 'selectStyleEx'; export const TRUE: string = 'true'; export const FALSE: string = 'false'; export const NULL: string = 'null'; diff --git a/compiler/src/process_component_build.ts b/compiler/src/process_component_build.ts index 40bbe2b9..3ff69b14 100644 --- a/compiler/src/process_component_build.ts +++ b/compiler/src/process_component_build.ts @@ -134,7 +134,6 @@ import { WRAPPEDBUILDER_CLASS, ALL_COMPONENTS, ATTRIBUTE_ATTRIBUTE_MODIFIER, - ATTRIBUTE_SELECT_STYLE, SLIDER, TITLE, COMPONENT_DIVIDER, @@ -227,8 +226,7 @@ const componentsCreateAndApplyTheme: Set = new Set([ ]); const componentsStyles: Set = new Set([ - ATTRIBUTE_ATTRIBUTE_MODIFIER, - ATTRIBUTE_SELECT_STYLE + ATTRIBUTE_ATTRIBUTE_MODIFIER ]); export function processComponentBuild(node: ts.MethodDeclaration, -- Gitee