summaryrefslogtreecommitdiff
path: root/chromium/ui/webui/resources/cr_components/chromeos/cellular_setup/psim_flow_ui.html
blob: 2782ca84a7eb19e09fc564db0137cee1346a86ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<link rel="import" href="../../../html/polymer.html">

<link rel="import" href="../../../html/i18n_behavior.html">
<link rel="import" href="mojo_interface_provider.html">
<link rel="import" href="sim_detect_page.html">
<link rel="import" href="provisioning_page.html">
<link rel="import" href="final_page.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-flex-layout.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-flex-layout-classes.html">
<link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.html">

<dom-module id="psim-flow-ui">
  <template>
    <style include="iron-flex">
      :host {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
      }
    </style>
    <iron-pages attr-for-selected="is"
        selected="[[selectedPSimPageName_]]"
        selected-item="{{selectedPage_}}">
      <sim-detect-page show-error="[[showError_]]"></sim-detect-page>
      <provisioning-page show-error="{{showError_}}"
          cellular-metadata="[[cellularMetadata_]]"
          on-carrier-portal-loaded="onCarrierPortalLoaded_"
          on-carrier-portal-result="onCarrierPortalResult_">
      </provisioning-page>
      <final-page show-error="[[showError_]]"></final-page>
    </iron-pages>
  </template>
  <script src="psim_flow_ui.js">
  </script>
</dom-module>