UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

1 lines 1.79 kB
{"version":3,"sources":["constants.js"],"names":[],"mappings":"AAMA;AANA,KAAK,iBAAiB,AAAC,CAAC,MAAK,QAAQ;YAArC,EAAC,GAAE,YAAqB;AAAE,uBAAwB;IAAE,AAA9B,CAAC;SAAvB,EAAC,GAAE,YAAqB;AAAE,oBAAwB;IAAE,AAA9B,CAAC;cAAvB,EAAC,GAAE,YAAqB;AAAE,yBAAwB;IAAE,AAA9B,CAAC;UAAvB,EAAC,GAAE,YAAqB;AAAE,qBAAwB;IAAE,AAA9B,CAAC;SAAvB,EAAC,GAAE,YAAqB;AAAE,oBAAwB;IAAE,AAA9B,CAAC;SAAvB,EAAC,GAAE,YAAqB;AAAE,oBAAwB;IAAE,AAA9B,CAAC;AAAvB,WAAS,CAAT,EAAC,KAAI,CAAO,KAAG,AAAS,CAAC;CAAgC,CAAC;AAMnD,AAAM,EAAA,CAAA,UAAS,EAAE,aAAW,CAAC;AAM7B,AAAM,EAAA,CAAA,OAAM,EAAE,UAAQ,CAAC;AAMvB,AAAM,EAAA,CAAA,YAAW,EAAE,eAAa,CAAC;AAMjC,AAAM,EAAA,CAAA,QAAO,EAAE,WAAS,CAAC;AAKzB,AAAM,EAAA,CAAA,OAAM,EAAI,UAAQ,CAAC;AAKzB,AAAM,EAAA,CAAA,OAAM,EAAI,UAAQ,CAAC;AAAA","file":"angular2/src/change_detection/constants.js","sourcesContent":["//TODO:vsavkin Use enums after switching to TypeScript\n\n/**\n * CHECK_ONCE means that after calling detectChanges the mode of the change detector\n * will become CHECKED.\n */\nexport const CHECK_ONCE=\"CHECK_ONCE\";\n\n/**\n * CHECKED means that the change detector should be skipped until its mode changes to\n * CHECK_ONCE or CHECK_ALWAYS.\n */\nexport const CHECKED=\"CHECKED\";\n\n/**\n * CHECK_ALWAYS means that after calling detectChanges the mode of the change detector\n * will remain CHECK_ALWAYS.\n */\nexport const CHECK_ALWAYS=\"ALWAYS_CHECK\";\n\n/**\n * DETACHED means that the change detector sub tree is not a part of the main tree and\n * should be skipped.\n */\nexport const DETACHED=\"DETACHED\";\n\n/**\n * ON_PUSH means that the change detector's mode will be set to CHECK_ONCE during hydration.\n */\nexport const ON_PUSH = \"ON_PUSH\";\n\n/**\n * DEFAULT means that the change detector's mode will be set to CHECK_ALWAYS during hydration.\n */\nexport const DEFAULT = \"DEFAULT\";"]}