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

split_button_spec.js.snap « __snapshots__ « components « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd88ba9a6fb2af398706045bcec855dbf264df06 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`SplitButton renders actionItems 1`] = `
<gl-dropdown-stub
  category="primary"
  headertext=""
  menu-class=""
  size="medium"
  split="true"
  text="professor"
  variant="default"
>
  <gl-dropdown-item-stub
    avatarurl=""
    iconcolor=""
    iconname=""
    iconrightarialabel=""
    iconrightname=""
    ischecked="true"
    ischeckitem="true"
    secondarytext=""
  >
    <strong>
      professor
    </strong>
     
    <div>
      very symphonic
    </div>
  </gl-dropdown-item-stub>
   
  <gl-dropdown-divider-stub />
  <gl-dropdown-item-stub
    avatarurl=""
    iconcolor=""
    iconname=""
    iconrightarialabel=""
    iconrightname=""
    ischeckitem="true"
    secondarytext=""
  >
    <strong>
      captain
    </strong>
     
    <div>
      warp drive
    </div>
  </gl-dropdown-item-stub>
   
  <!---->
</gl-dropdown-stub>
`;