Lines Matching refs:Set
18 export const NATIVE_MODULE: Set<string> = new Set(
54 export const COMPONENT_DECORATORS_PARAMS: Set<string> = new Set([COMPONENT_CONSUME_DECORATOR,
57 export const INNER_COMPONENT_DECORATORS: Set<string> = new Set([COMPONENT_DECORATOR_ENTRY,
60 export const INNER_COMPONENT_MEMBER_DECORATORS: Set<string> = new Set([COMPONENT_STATE_DECORATOR,
66 export const STRUCT_DECORATORS: Set<string> = new Set([...INNER_COMPONENT_DECORATORS,
78 export const STRUCT_CONTEXT_METHOD_DECORATORS: Set<string> = new Set([COMPONENT_BUILDER_DECORATOR,
121 export const CUSTOM_DECORATOR_NAME: Set<string> = new Set([
156 export const ATTRIBUTE_ANIMATETO_SET: Set<string> = new Set(['animateTo', 'animateToImmediately']);
163 export const FOREACH_LAZYFOREACH: Set<string> = new Set([
259 export const TEST_RUNNER_DIR_SET: Set<string> = new Set(['TestRunner', 'testrunner']);
283 export const BIND_POPUP_SET: Set<string> = new Set(['bindPopup']);
284 export const BIND_DRAG_SET: Set<string> = new Set(['onDragStart', 'onItemDragStart']);
286 export const BIND_OBJECT_PROPERTY: Map<string, Set<string>> = new Map([
287 ['Navigation', new Set(['title'])],
288 ['NavDestination', new Set(['title'])],
289 ['ListItem', new Set(['swipeAction'])],
290 ['MenuItem', new Set([COMPONENT_CREATE_FUNCTION])],
291 ['MenuItemGroup', new Set([COMPONENT_CREATE_FUNCTION])],
292 ['Refresh', new Set([COMPONENT_CREATE_FUNCTION])],
293 ['WaterFlow', new Set([COMPONENT_CREATE_FUNCTION])],
294 [ALL_COMPONENTS, new Set(['bindContextMenu', 'bindSheet', 'dragPreview'])]
348 export const $$_BLOCK_INTERFACE: Set<string> = new Set([
351 export const STYLE_ADD_DOUBLE_DOLLAR: Set<string> = new Set([
353 export const PROPERTIES_ADD_DOUBLE_DOLLAR: Map<string, Set<string>> = new Map([
354 [RADIO, new Set([CHECKED])],
355 [TEXT_TIMER, new Set([FORMAT, COUNT, IS_COUNT_DOWN])],
356 [REFRESH, new Set([REFRESHING])],
357 [CHECK_BOX, new Set([SELECT_LOW])],
358 [CHECKBOX_GROUP, new Set([SELECT_ALL])],
359 [DATE_PICKER, new Set([SELECTED])],
360 [TIME_PICKER, new Set([SELECTED])],
361 [MENU_ITEM, new Set([SELECTED])],
362 [PANEL, new Set([MODE])],
363 [RATING, new Set([RATING_LOW])],
364 [SEAECH, new Set([VALUE])],
365 [SIDE_BAR_CONTAINER, new Set([SHOW_SIDE_BAR])],
366 [SLIDER, new Set([VALUE])],
367 [STEPPER, new Set([INDEX])],
368 [SWIPER, new Set([INDEX])],
369 [TABS, new Set([INDEX])],
370 [TEXT_AREA, new Set([TEXT])],
371 [TEXT_INPUT, new Set([TEXT])],
372 [TEXT_PICKER, new Set([VALUE, SELECTED])],
373 [TOGGLE, new Set([IS_ON])],
374 [ALPHABET_INDEXER, new Set([SELECTED])],
375 [SELECT, new Set([SELECTED, VALUE])],
376 [CALENDAR, new Set([DATE])],
377 [GRID_ITEM, new Set([SELECTED])],
378 [LIST_ITEM, new Set([SELECTED])]
381 export const CREATE_BIND_COMPONENT: Set<string> = new Set(['ListItemGroup', REFRESH]);
457 export const BASICDECORATORS: Set<string> = new Set([COMPONENT_STATE_DECORATOR, COMPONENT_PROP_DECO…
461 export const LINKS_DECORATORS: Set<string> = new Set([COMPONENT_LINK_DECORATOR, COMPONENT_OBJECT_LI…
511 export const CARD_ENABLE_DECORATORS: Set<string> = new Set([
514 export const CARD_ENABLE_COMPONENTS: Set<string> = new Set([
518 export const TabContentAndNavDestination: Set<string> = new Set(['TabContent',
587 export const GLOBAL_DECLARE_WHITE_LIST: Set<string> = new Set(['Context', 'PointerStyle', 'PixelMap…