1. 11 3月, 2019 1 次提交
  2. 08 3月, 2019 1 次提交
  3. 07 3月, 2019 2 次提交
  4. 05 3月, 2019 1 次提交
  5. 02 3月, 2019 5 次提交
  6. 22 2月, 2019 1 次提交
  7. 21 2月, 2019 4 次提交
  8. 19 2月, 2019 1 次提交
  9. 12 2月, 2019 1 次提交
  10. 07 2月, 2019 1 次提交
    • M
      Change `ITheme.getColor(...)` to returned `Color | undefined` · 05c58615
      Matt Bierner 提交于
      **Problem**
      `ITheme.getColor` is one of the major users of the type `null` in our codebase. However this function is used in many places that expected an `undefined` type instead. With the strict null work, this means that we have to write code such as `theme.getColor(...) || undefined` in some cases or have to work with  `Color | null | undefined` types.
      
      **Fix**
      `undefined` is generally better supported by TypeScript and more natural in JavaScript. This change makes `ITheme.getColor` return `Color | undefined` instead of `Color | null`.
      05c58615
  11. 06 2月, 2019 1 次提交
  12. 05 2月, 2019 1 次提交
  13. 28 1月, 2019 1 次提交
  14. 24 1月, 2019 1 次提交
  15. 19 1月, 2019 1 次提交
  16. 18 1月, 2019 2 次提交
  17. 17 1月, 2019 3 次提交
  18. 13 1月, 2019 1 次提交
  19. 12 1月, 2019 1 次提交
  20. 11 1月, 2019 2 次提交
  21. 10 1月, 2019 1 次提交
  22. 09 1月, 2019 3 次提交
  23. 08 1月, 2019 2 次提交
  24. 05 1月, 2019 2 次提交