SystemWidgetIds.cs
3.9 KB
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
using System;
using System.Collections.Generic;
using System.Text;
namespace Contentful.Core.Models.Management
{
/// <summary>
/// Represents the id of all widgets available by default in the Contentful web app.
/// </summary>
public class SystemWidgetIds
{
/// <summary>
/// Editor for a single asset.
/// </summary>
public const string AssetLinkEditor = "assetLinkEditor";
/// <summary>
/// Editor for multiple assets.
/// </summary>
public const string AssetMultipleLinksEditor = "assetLinksEditor";
/// <summary>
/// Editor for an asset gallery.
/// </summary>
public const string AssetGalleryEditor = "assetGalleryEditor";
/// <summary>
/// Boolean editor.
/// </summary>
public const string Boolean = "boolean";
/// <summary>
/// Datepicker.
/// </summary>
public const string DatePicker = "datePicker";
/// <summary>
/// Editor for a single entry.
/// </summary>
public const string EntryLinkEditor = "entryLinkEditor";
/// <summary>
/// Editor for multiple entries.
/// </summary>
public const string EntryMultipleLinksEditor = "entryLinksEditor";
/// <summary>
/// Editor for a single entry card.
/// </summary>
public const string EntryCardEditor = "entryCardEditor";
/// <summary>
/// Editor for multiple entry cards.
/// </summary>
public const string EntryMultipleCardsEditor = "entryCardsEditor";
/// <summary>
/// Number editor.
/// </summary>
public const string NumberEditor = "numberEditor";
/// <summary>
/// Editor for a rating.
/// </summary>
public const string Rating = "rating";
/// <summary>
/// Editor for a location.
/// </summary>
public const string LocationEditor = "locationEditor";
/// <summary>
/// Editor for a json object.
/// </summary>
public const string ObjectEditor = "objectEditor";
/// <summary>
/// Editor for a url.
/// </summary>
public const string UrlEditor = "urlEditor";
/// <summary>
/// Editor for a slug.
/// </summary>
public const string SlugEditor = "slugEditor";
/// <summary>
/// Editor for an ooyala integration.
/// </summary>
public const string OoyalaEditor = "ooyalaEditor";
/// <summary>
/// Editor for a Kaltura integration.
/// </summary>
public const string KalturaEditor = "kalturaEditor";
/// <summary>
/// Editor for multiple kaltura videos.
/// </summary>
public const string KalturaMultiVideoEditor = "kalturaMultiVideoEditor";
/// <summary>
/// Editor for a list.
/// </summary>
public const string ListInput = "listInput";
/// <summary>
/// Editor for a checkbox.
/// </summary>
public const string Checkbox = "checkbox";
/// <summary>
/// Editor for tags.
/// </summary>
public const string TagEditor = "tagEditor";
/// <summary>
/// Multiline editor.
/// </summary>
public const string MultipleLine = "multipleLine";
/// <summary>
/// Markdown editor.
/// </summary>
public const string Markdown = "markdown";
/// <summary>
/// Single line textbox.
/// </summary>
public const string SingleLine = "singleLine";
/// <summary>
/// Dropdown for a number of values.
/// </summary>
public const string Dropdown = "dropdown";
/// <summary>
/// Radiobuttons for a number of values.
/// </summary>
public const string Radio = "radio";
}
}