Welcome to mirror list, hosted at ThFree Co, Russian Federation.

expiration_policy_form_spec.js.snap « __snapshots__ « components « shared « registry « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b53736951e1ee83de81de2dfe4c7f2db60dfc0a3 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Expiration Policy Form renders 1`] = `
<form
  class="lh-2"
>
  <div
    class="card"
  >
    <!---->
    <div
      class="card-header"
    >
      
      Tag expiration policy
    
    </div>
    <div
      class="card-body"
    >
      <!---->
      <!---->
        
      <glformgroup-stub
        id="expiration-policy-toggle-group"
        label="Expiration policy:"
        label-align="right"
        label-cols="3"
        label-for="expiration-policy-toggle"
      >
        <div
          class="d-flex align-items-start"
        >
          <gltoggle-stub
            id="expiration-policy-toggle"
            labeloff="Toggle Status: OFF"
            labelon="Toggle Status: ON"
          />
           
          <span
            class="mb-2 ml-1 lh-2"
          >
            Docker tag expiration policy is 
            <strong>
              disabled
            </strong>
          </span>
        </div>
      </glformgroup-stub>
       
      <glformgroup-stub
        id="expiration-policy-interval-group"
        label="Expiration interval:"
        label-align="right"
        label-cols="3"
        label-for="expiration-policy-interval"
      >
        <glformselect-stub
          disabled="true"
          id="expiration-policy-interval"
        >
          <option
            value="foo"
          >
            
            Foo
          
          </option>
          <option
            value="bar"
          >
            
            Bar
          
          </option>
        </glformselect-stub>
      </glformgroup-stub>
       
      <glformgroup-stub
        id="expiration-policy-schedule-group"
        label="Expiration schedule:"
        label-align="right"
        label-cols="3"
        label-for="expiration-policy-schedule"
      >
        <glformselect-stub
          disabled="true"
          id="expiration-policy-schedule"
        >
          <option
            value="foo"
          >
            
            Foo
          
          </option>
          <option
            value="bar"
          >
            
            Bar
          
          </option>
        </glformselect-stub>
      </glformgroup-stub>
       
      <glformgroup-stub
        id="expiration-policy-latest-group"
        label="Number of tags to retain:"
        label-align="right"
        label-cols="3"
        label-for="expiration-policy-latest"
      >
        <glformselect-stub
          disabled="true"
          id="expiration-policy-latest"
        >
          <option
            value="foo"
          >
            
            Foo
          
          </option>
          <option
            value="bar"
          >
            
            Bar
          
          </option>
        </glformselect-stub>
      </glformgroup-stub>
       
      <glformgroup-stub
        id="expiration-policy-name-matching-group"
        invalid-feedback="The value of this input should be less than 255 characters"
        label="Docker tags with names matching this regex pattern will expire:"
        label-align="right"
        label-cols="3"
        label-for="expiration-policy-name-matching"
      >
        <glformtextarea-stub
          disabled="true"
          id="expiration-policy-name-matching"
          placeholder=".*"
          trim=""
          value=""
        />
      </glformgroup-stub>
       
    </div>
    <div
      class="card-footer"
    >
      <div
        class="d-flex justify-content-end"
      >
        <glbutton-stub
          class="mr-2 d-block"
          size="md"
          type="reset"
          variant="secondary"
        >
          
          Cancel
        
        </glbutton-stub>
         
        <glbutton-stub
          class="d-flex justify-content-center align-items-center js-no-auto-disable"
          size="md"
          type="submit"
          variant="success"
        >
          
          Save expiration policy
          
          <!---->
        </glbutton-stub>
      </div>
    </div>
    <!---->
  </div>
</form>
`;