{"version":3,"sources":["components/progress-indicator/defs.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH;;GAEG;AACH,oBAAY,kBAAkB;IAC5B;;OAEG;IACH,MAAM,WAAW;IAEjB;;OAEG;IACH,OAAO,YAAY;IAEnB;;OAEG;IACH,QAAQ,aAAa;IAErB;;OAEG;IACH,OAAO,YAAY;CACpB","file":"defs.d.ts","sourcesContent":["/**\n * @license\n *\n * Copyright IBM Corp. 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n/**\n * State of progress step.\n */\nexport enum PROGRESS_STEP_STAT {\n  /**\n   * One for future execution.\n   */\n  QUEUED = 'queued',\n\n  /**\n   * One that is being executed now.\n   */\n  CURRENT = 'current',\n\n  /**\n   * Complete one.\n   */\n  COMPLETE = 'complete',\n\n  /**\n   * Invalid one.\n   */\n  INVALID = 'invalid',\n}\n"]}