Blame view

build/InputGroup/InputGroup.js 297 Bytes
3a3ecabe   Imshann   init
1
2
3
4
5
6
7
8
9
10
11
12
  import template from "./InputGroup.html";
  angular.module("esNgAntd").directive("esInputGroup", function () {
      return {
          controllerAs: "esInputGroup",
          restrict: "E",
          transclude: true,
          replace: true,
          scope: {
              compact: "@",
          },
      };
  });