You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"docs": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
33
+
"docsTags": [],
34
+
"default": "'primary'",
35
+
"values": [
36
+
{
37
+
"value": "danger",
38
+
"type": "string"
39
+
},
40
+
{
41
+
"value": "dark",
42
+
"type": "string"
43
+
},
44
+
{
45
+
"value": "light",
46
+
"type": "string"
47
+
},
48
+
{
49
+
"value": "medium",
50
+
"type": "string"
51
+
},
52
+
{
53
+
"value": "primary",
54
+
"type": "string"
55
+
},
56
+
{
57
+
"value": "secondary",
58
+
"type": "string"
59
+
},
60
+
{
61
+
"value": "success",
62
+
"type": "string"
63
+
},
64
+
{
65
+
"value": "tertiary",
66
+
"type": "string"
67
+
},
68
+
{
69
+
"value": "warning",
70
+
"type": "string"
71
+
},
72
+
{
73
+
"type": "string & Record<never, never>"
74
+
},
75
+
{
76
+
"type": "undefined"
77
+
}
78
+
],
79
+
"optional": true,
80
+
"required": false
81
+
},
82
+
{
83
+
"name": "datetime",
84
+
"type": "string | undefined",
85
+
"mutable": false,
86
+
"attr": "datetime",
87
+
"reflectToAttr": false,
88
+
"docs": "The ID of the `ion-datetime` instance\nassociated with the datetime button.",
89
+
"docsTags": [],
90
+
"values": [
91
+
{
92
+
"type": "string"
93
+
},
94
+
{
95
+
"type": "undefined"
96
+
}
97
+
],
98
+
"optional": true,
99
+
"required": false
100
+
},
101
+
{
102
+
"name": "disabled",
103
+
"type": "boolean",
104
+
"mutable": false,
105
+
"attr": "disabled",
106
+
"reflectToAttr": true,
107
+
"docs": "If `true`, the user cannot interact with the button.",
108
+
"docsTags": [],
109
+
"default": "false",
110
+
"values": [
111
+
{
112
+
"type": "boolean"
113
+
}
114
+
],
115
+
"optional": false,
116
+
"required": false
117
+
},
118
+
{
119
+
"name": "mode",
120
+
"type": "\"ios\" | \"md\"",
121
+
"mutable": false,
122
+
"attr": "mode",
123
+
"reflectToAttr": false,
124
+
"docs": "The mode determines which platform styles to use.",
125
+
"docsTags": [],
126
+
"values": [
127
+
{
128
+
"value": "ios",
129
+
"type": "string"
130
+
},
131
+
{
132
+
"value": "md",
133
+
"type": "string"
134
+
}
135
+
],
136
+
"optional": true,
137
+
"required": false
138
+
}
139
+
],
140
+
"methods": [],
141
+
"events": [],
142
+
"listeners": [],
143
+
"styles": [],
144
+
"slots": [
145
+
{
146
+
"name": "date-target",
147
+
"docs": "Content displayed inside of the date button."
148
+
},
149
+
{
150
+
"name": "time-target",
151
+
"docs": "Content displayed inside of the time button."
152
+
}
153
+
],
154
+
"parts": [
155
+
{
156
+
"name": "native",
157
+
"docs": "The native HTML button that wraps the slotted text."
Copy file name to clipboardExpand all lines: src/translate/.detection/api/datetime.json
+39-2Lines changed: 39 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -382,6 +382,23 @@
382
382
"optional": true,
383
383
"required": false
384
384
},
385
+
{
386
+
"name": "multiple",
387
+
"type": "boolean",
388
+
"mutable": false,
389
+
"attr": "multiple",
390
+
"reflectToAttr": false,
391
+
"docs": "If `true`, multiple dates can be selected at once. Only\napplies to `presentation=\"date\"` and `preferWheel=\"false\"`.",
392
+
"docsTags": [],
393
+
"default": "false",
394
+
"values": [
395
+
{
396
+
"type": "boolean"
397
+
}
398
+
],
399
+
"optional": false,
400
+
"required": false
401
+
},
385
402
{
386
403
"name": "name",
387
404
"type": "string",
@@ -399,6 +416,23 @@
399
416
"optional": false,
400
417
"required": false
401
418
},
419
+
{
420
+
"name": "preferWheel",
421
+
"type": "boolean",
422
+
"mutable": false,
423
+
"attr": "prefer-wheel",
424
+
"reflectToAttr": false,
425
+
"docs": "If `true`, a wheel picker will be rendered instead of a calendar grid\nwhere possible. If `false`, a calendar grid will be rendered instead of\na wheel picker where possible.\n\nA wheel picker can be rendered instead of a grid when `presentation` is\none of the following values: `'date'`, `'date-time'`, or `'time-date'`.\n\nA wheel picker will always be rendered regardless of\nthe `preferWheel` value when `presentation` is one of the following values:\n`'time'`, `'month'`, `'month-year'`, or `'year'`.",
Copy file name to clipboardExpand all lines: src/translate/.detection/api/modal.json
+42Lines changed: 42 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -155,6 +155,31 @@
155
155
"optional": true,
156
156
"required": false
157
157
},
158
+
{
159
+
"name": "handleBehavior",
160
+
"type": "\"cycle\" | \"none\" | undefined",
161
+
"mutable": false,
162
+
"attr": "handle-behavior",
163
+
"reflectToAttr": false,
164
+
"docs": "The interaction behavior for the sheet modal when the handle is pressed.\n\nDefaults to `\"none\"`, which means the modal will not change size or position when the handle is pressed.\nSet to `\"cycle\"` to let the modal cycle between available breakpoints when pressed.\n\nHandle behavior is unavailable when the `handle` property is set to `false` or\nwhen the `breakpoints` property is not set (using a fullscreen or card modal).",
165
+
"docsTags": [],
166
+
"default": "'none'",
167
+
"values": [
168
+
{
169
+
"value": "cycle",
170
+
"type": "string"
171
+
},
172
+
{
173
+
"value": "none",
174
+
"type": "string"
175
+
},
176
+
{
177
+
"type": "undefined"
178
+
}
179
+
],
180
+
"optional": true,
181
+
"required": false
182
+
},
158
183
{
159
184
"name": "htmlAttributes",
160
185
"type": "undefined | { [key: string]: any; }",
@@ -209,6 +234,23 @@
209
234
"optional": false,
210
235
"required": false
211
236
},
237
+
{
238
+
"name": "keepContentsMounted",
239
+
"type": "boolean",
240
+
"mutable": false,
241
+
"attr": "keep-contents-mounted",
242
+
"reflectToAttr": false,
243
+
"docs": "If `true`, the component passed into `ion-modal` will\nautomatically be mounted when the modal is created. The\ncomponent will remain mounted even when the modal is dismissed.\nHowever, the component will be destroyed when the modal is\ndestroyed. This property is not reactive and should only be\nused when initially creating a modal.\n\nNote: This feature only applies to inline modals in JavaScript\nframeworks such as Angular, React, and Vue.",
Copy file name to clipboardExpand all lines: src/translate/.detection/api/popover.json
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -238,6 +238,23 @@
238
238
"optional": false,
239
239
"required": false
240
240
},
241
+
{
242
+
"name": "keepContentsMounted",
243
+
"type": "boolean",
244
+
"mutable": false,
245
+
"attr": "keep-contents-mounted",
246
+
"reflectToAttr": false,
247
+
"docs": "If `true`, the component passed into `ion-popover` will\nautomatically be mounted when the popover is created. The\ncomponent will remain mounted even when the popover is dismissed.\nHowever, the component will be destroyed when the popover is\ndestroyed. This property is not reactive and should only be\nused when initially creating a popover.\n\nNote: This feature only applies to inline popovers in JavaScript\nframeworks such as Angular, React, and Vue.",
Copy file name to clipboardExpand all lines: src/translate/.detection/api/range.json
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,25 @@
43
43
],
44
44
"usage": {},
45
45
"props": [
46
+
{
47
+
"name": "activeBarStart",
48
+
"type": "number | undefined",
49
+
"mutable": true,
50
+
"attr": "active-bar-start",
51
+
"reflectToAttr": false,
52
+
"docs": "The start position of the range active bar. This feature is only available with a single knob (dualKnobs=\"false\").\nValid values are greater than or equal to the min value and less than or equal to the max value.",
0 commit comments