@digipair/skill-web-ionic 0.37.3 → 0.37.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/package.json +1 -1
  2. package/schema.fr.json +2232 -450
  3. package/schema.json +2016 -0
package/schema.json CHANGED
@@ -4708,6 +4708,2022 @@
4708
4708
  ]
4709
4709
  }
4710
4710
  },
4711
+ "/ion-input": {
4712
+ "post": {
4713
+ "tags": ["web", "needPins"],
4714
+ "summary": "ion-input",
4715
+ "parameters": [
4716
+ {
4717
+ "name": "class",
4718
+ "summary": "Class",
4719
+ "description": "Class of the element.",
4720
+ "required": false,
4721
+ "schema": {
4722
+ "type": "string"
4723
+ }
4724
+ },
4725
+ {
4726
+ "name": "style",
4727
+ "summary": "Style",
4728
+ "description": "CSS style of the element.",
4729
+ "required": false,
4730
+ "schema": {
4731
+ "type": "string"
4732
+ }
4733
+ },
4734
+ {
4735
+ "name": "id",
4736
+ "summary": "Id",
4737
+ "description": "Id of the element.",
4738
+ "required": false,
4739
+ "schema": {
4740
+ "type": "string"
4741
+ }
4742
+ },
4743
+ {
4744
+ "name": "textContent",
4745
+ "summary": "Text Content",
4746
+ "description": "Text content of the element.",
4747
+ "required": false,
4748
+ "schema": {
4749
+ "type": "string"
4750
+ }
4751
+ },
4752
+ {
4753
+ "name": "innerHTML",
4754
+ "summary": "Inner HTML",
4755
+ "description": "Inner HTML of the element.",
4756
+ "required": false,
4757
+ "schema": {
4758
+ "type": "string"
4759
+ }
4760
+ },
4761
+ {
4762
+ "name": "slot",
4763
+ "summary": "Slot",
4764
+ "description": "Slot of the element.",
4765
+ "required": false,
4766
+ "schema": {
4767
+ "type": "string"
4768
+ }
4769
+ },
4770
+ {
4771
+ "name": "autocapitalize",
4772
+ "summary": "autocapitalize​",
4773
+ "description": "Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user. Available options: \"off\", \"none\", \"on\", \"sentences\", \"words\", \"characters\".",
4774
+ "schema": {
4775
+ "type": "string"
4776
+ }
4777
+ },
4778
+ {
4779
+ "name": "autocomplete",
4780
+ "summary": "autocomplete​",
4781
+ "description": "Indicates whether the value of the control can be automatically completed by the browser.",
4782
+ "schema": {
4783
+ "type": "string"
4784
+ }
4785
+ },
4786
+ {
4787
+ "name": "autocorrect",
4788
+ "summary": "autocorrect​",
4789
+ "description": "Whether auto correction should be enabled when the user is entering/editing the text value.",
4790
+ "schema": {
4791
+ "type": "string"
4792
+ }
4793
+ },
4794
+ {
4795
+ "name": "autofocus",
4796
+ "summary": "autofocus​",
4797
+ "description": "Sets the autofocus attribute on the native input element.This may not be sufficient for the element to be focused on page load. See managing focus for more information.",
4798
+ "schema": {
4799
+ "type": "boolean"
4800
+ }
4801
+ },
4802
+ {
4803
+ "name": "clear-input",
4804
+ "summary": "clearInput​",
4805
+ "description": "If true, a clear icon will appear in the input when there is a value. Clicking it clears the input.",
4806
+ "schema": {
4807
+ "type": "boolean"
4808
+ }
4809
+ },
4810
+ {
4811
+ "name": "clear-input-icon",
4812
+ "summary": "clearInputIcon​",
4813
+ "description": "The icon to use for the clear button. Only applies when clearInput is set to true.",
4814
+ "schema": {
4815
+ "type": "string"
4816
+ }
4817
+ },
4818
+ {
4819
+ "name": "clear-on-edit",
4820
+ "summary": "clearOnEdit​",
4821
+ "description": "If true, the value will be cleared after focus upon edit. Defaults to true when type is \"password\", false for all other types.",
4822
+ "schema": {
4823
+ "type": "boolean"
4824
+ }
4825
+ },
4826
+ {
4827
+ "name": "color",
4828
+ "summary": "color​",
4829
+ "description": "The color to use from your application's color palette. Default options are: \"primary\", \"secondary\", \"tertiary\", \"success\", \"warning\", \"danger\", \"light\", \"medium\", and \"dark\". For more information on colors, see theming.",
4830
+ "schema": {
4831
+ "type": "string"
4832
+ }
4833
+ },
4834
+ {
4835
+ "name": "counter",
4836
+ "summary": "counter​",
4837
+ "description": "If true, a character counter will display the ratio of characters used and the total character limit. Developers must also set the maxlength property for the counter to be calculated correctly.",
4838
+ "schema": {
4839
+ "type": "boolean"
4840
+ }
4841
+ },
4842
+ {
4843
+ "name": "debounce",
4844
+ "summary": "debounce​",
4845
+ "description": "Set the amount of time, in milliseconds, to wait to trigger the ionInput event after each keystroke.",
4846
+ "schema": {
4847
+ "type": "number"
4848
+ }
4849
+ },
4850
+ {
4851
+ "name": "disabled",
4852
+ "summary": "disabled​",
4853
+ "description": "If true, the user cannot interact with the input.",
4854
+ "schema": {
4855
+ "type": "boolean"
4856
+ }
4857
+ },
4858
+ {
4859
+ "name": "enterkeyhint",
4860
+ "summary": "enterkeyhint​",
4861
+ "description": "A hint to the browser for which enter key to display. Possible values: \"enter\", \"done\", \"go\", \"next\", \"previous\", \"search\", and \"send\".",
4862
+ "schema": {
4863
+ "type": "string"
4864
+ }
4865
+ },
4866
+ {
4867
+ "name": "error-text",
4868
+ "summary": "errorText​",
4869
+ "description": "Text that is placed under the input and displayed when an error is detected.",
4870
+ "schema": {
4871
+ "type": "string"
4872
+ }
4873
+ },
4874
+ {
4875
+ "name": "fill",
4876
+ "summary": "fill​",
4877
+ "description": "The fill for the item. If \"solid\" the item will have a background. If \"outline\" the item will be transparent with a border. Only available in md mode.",
4878
+ "schema": {
4879
+ "type": "string"
4880
+ }
4881
+ },
4882
+ {
4883
+ "name": "helper-text",
4884
+ "summary": "helperText​",
4885
+ "description": "Text that is placed under the input and displayed when no error is detected.",
4886
+ "schema": {
4887
+ "type": "string"
4888
+ }
4889
+ },
4890
+ {
4891
+ "name": "inputmode",
4892
+ "summary": "inputmode​",
4893
+ "description": "A hint to the browser for which keyboard to display. Possible values: \"none\", \"text\", \"tel\", \"url\", \"email\", \"numeric\", \"decimal\", and \"search\".",
4894
+ "schema": {
4895
+ "type": "string"
4896
+ }
4897
+ },
4898
+ {
4899
+ "name": "label",
4900
+ "summary": "label​",
4901
+ "description": "The visible label associated with the input.Use this if you need to render a plaintext label.The label property will take priority over the label slot if both are used.",
4902
+ "schema": {
4903
+ "type": "string"
4904
+ }
4905
+ },
4906
+ {
4907
+ "name": "label-placement",
4908
+ "summary": "labelPlacement​",
4909
+ "description": "Where to place the label relative to the input. \"start\": The label will appear to the left of the input in LTR and to the right in RTL. \"end\": The label will appear to the right of the input in LTR and to the left in RTL. \"floating\": The label will appear smaller and above the input when the input is focused or it has a value. Otherwise it will appear on top of the input. \"stacked\": The label will appear smaller and above the input regardless even when the input is blurred or has no value. \"fixed\": The label has the same behavior as \"start\" except it also has a fixed width. Long text will be truncated with ellipses (\"...\").",
4910
+ "schema": {
4911
+ "type": "string"
4912
+ }
4913
+ },
4914
+ {
4915
+ "name": "max",
4916
+ "summary": "max​",
4917
+ "description": "The maximum value, which must not be less than its minimum (min attribute) value.",
4918
+ "schema": {
4919
+ "type": "number"
4920
+ }
4921
+ },
4922
+ {
4923
+ "name": "maxlength",
4924
+ "summary": "maxlength​",
4925
+ "description": "If the value of the type attribute is text, email, search, password, tel, or url, this attribute specifies the maximum number of characters that the user can enter.",
4926
+ "schema": {
4927
+ "type": "number"
4928
+ }
4929
+ },
4930
+ {
4931
+ "name": "min",
4932
+ "summary": "min​",
4933
+ "description": "The minimum value, which must not be greater than its maximum (max attribute) value.",
4934
+ "schema": {
4935
+ "type": "number"
4936
+ }
4937
+ },
4938
+ {
4939
+ "name": "minlength",
4940
+ "summary": "minlength​",
4941
+ "description": "If the value of the type attribute is text, email, search, password, tel, or url, this attribute specifies the minimum number of characters that the user can enter.",
4942
+ "schema": {
4943
+ "type": "number"
4944
+ }
4945
+ },
4946
+ {
4947
+ "name": "mode",
4948
+ "summary": "mode​",
4949
+ "description": "The mode determines which platform styles to use.",
4950
+ "schema": {
4951
+ "type": "string"
4952
+ }
4953
+ },
4954
+ {
4955
+ "name": "multiple",
4956
+ "summary": "multiple​",
4957
+ "description": "If true, the user can enter more than one value. This attribute applies when the type attribute is set to \"email\", otherwise it is ignored.",
4958
+ "schema": {
4959
+ "type": "boolean"
4960
+ }
4961
+ },
4962
+ {
4963
+ "name": "name",
4964
+ "summary": "name​",
4965
+ "description": "The name of the control, which is submitted with the form data.",
4966
+ "schema": {
4967
+ "type": "string"
4968
+ }
4969
+ },
4970
+ {
4971
+ "name": "pattern",
4972
+ "summary": "pattern​",
4973
+ "description": "A regular expression that the value is checked against. The pattern must match the entire value, not just some subset. Use the title attribute to describe the pattern to help the user. This attribute applies when the value of the type attribute is \"text\", \"search\", \"tel\", \"url\", \"email\", \"date\", or \"password\", otherwise it is ignored. When the type attribute is \"date\", pattern will only be used in browsers that do not support the \"date\" input type natively. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date for more information.",
4974
+ "schema": {
4975
+ "type": "string"
4976
+ }
4977
+ },
4978
+ {
4979
+ "name": "placeholder",
4980
+ "summary": "placeholder​",
4981
+ "description": "Instructional text that shows before the input has a value. This property applies only when the type property is set to \"email\", \"number\", \"password\", \"search\", \"tel\", \"text\", or \"url\", otherwise it is ignored.",
4982
+ "schema": {
4983
+ "type": "string"
4984
+ }
4985
+ },
4986
+ {
4987
+ "name": "readonly",
4988
+ "summary": "readonly​",
4989
+ "description": "If true, the user cannot modify the value.",
4990
+ "schema": {
4991
+ "type": "boolean"
4992
+ }
4993
+ },
4994
+ {
4995
+ "name": "required",
4996
+ "summary": "required​",
4997
+ "description": "If true, the user must fill in a value before submitting a form.",
4998
+ "schema": {
4999
+ "type": "boolean"
5000
+ }
5001
+ },
5002
+ {
5003
+ "name": "shape",
5004
+ "summary": "shape​",
5005
+ "description": "The shape of the input. If \"round\" it will have an increased border radius.",
5006
+ "schema": {
5007
+ "type": "string"
5008
+ }
5009
+ },
5010
+ {
5011
+ "name": "spellcheck",
5012
+ "summary": "spellcheck​",
5013
+ "description": "If true, the element will have its spelling and grammar checked.",
5014
+ "schema": {
5015
+ "type": "boolean"
5016
+ }
5017
+ },
5018
+ {
5019
+ "name": "step",
5020
+ "summary": "step​",
5021
+ "description": "Works with the min and max attributes to limit the increments at which a value can be set. Possible values are: \"any\" or a positive floating point number.",
5022
+ "schema": {
5023
+ "type": "string"
5024
+ }
5025
+ },
5026
+ {
5027
+ "name": "type",
5028
+ "summary": "type​",
5029
+ "description": "The type of control to display. The default type is text.",
5030
+ "schema": {
5031
+ "type": "string"
5032
+ }
5033
+ },
5034
+ {
5035
+ "name": "value",
5036
+ "summary": "value​",
5037
+ "description": "The value of the input.",
5038
+ "schema": {
5039
+ "type": "string"
5040
+ }
5041
+ }
5042
+ ],
5043
+ "x-events": [
5044
+ {
5045
+ "name": "click",
5046
+ "summary": "Click",
5047
+ "description": "Click event.",
5048
+ "required": false,
5049
+ "schema": {
5050
+ "type": "array",
5051
+ "items": {
5052
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5053
+ }
5054
+ }
5055
+ },
5056
+ {
5057
+ "name": "ionBlur",
5058
+ "summary": "ionBlur",
5059
+ "description": "Emitted when the input loses focus.",
5060
+ "required": false,
5061
+ "schema": {
5062
+ "type": "array",
5063
+ "items": {
5064
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5065
+ }
5066
+ }
5067
+ },
5068
+ {
5069
+ "name": "ionChange",
5070
+ "summary": "ionChange",
5071
+ "description": "The ionChange event is fired when the user modifies the input's value. Unlike the ionInput event, the ionChange event is only fired when changes are committed, not as the user types.Depending on the way the users interacts with the element, the ionChange event fires at a different moment: - When the user commits the change explicitly (e.g. by selecting a date from a date picker for <ion-input type=\"date\">, pressing the \"Enter\" key, etc.). - When the element loses focus after its value has changed: for elements where the user's interaction is typing.This event will not emit when programmatically setting the value property.",
5072
+ "required": false,
5073
+ "schema": {
5074
+ "type": "array",
5075
+ "items": {
5076
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5077
+ }
5078
+ }
5079
+ },
5080
+ {
5081
+ "name": "ionFocus",
5082
+ "summary": "ionFocus",
5083
+ "description": "Emitted when the input has focus.",
5084
+ "required": false,
5085
+ "schema": {
5086
+ "type": "array",
5087
+ "items": {
5088
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5089
+ }
5090
+ }
5091
+ },
5092
+ {
5093
+ "name": "ionInput",
5094
+ "summary": "ionInput",
5095
+ "description": "The ionInput event is fired each time the user modifies the input's value. Unlike the ionChange event, the ionInput event is fired for each alteration to the input's value. This typically happens for each keystroke as the user types.For elements that accept text input (type=text, type=tel, etc.), the interface is InputEvent; for others, the interface is Event. If the input is cleared on edit, the type is null.",
5096
+ "required": false,
5097
+ "schema": {
5098
+ "type": "array",
5099
+ "items": {
5100
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5101
+ }
5102
+ }
5103
+ }
5104
+ ]
5105
+ }
5106
+ },
5107
+ "/ion-password-toggle": {
5108
+ "post": {
5109
+ "tags": ["web", "needPins"],
5110
+ "summary": "ion-password-toggle",
5111
+ "parameters": [
5112
+ {
5113
+ "name": "class",
5114
+ "summary": "Class",
5115
+ "description": "Class of the element.",
5116
+ "required": false,
5117
+ "schema": {
5118
+ "type": "string"
5119
+ }
5120
+ },
5121
+ {
5122
+ "name": "style",
5123
+ "summary": "Style",
5124
+ "description": "CSS style of the element.",
5125
+ "required": false,
5126
+ "schema": {
5127
+ "type": "string"
5128
+ }
5129
+ },
5130
+ {
5131
+ "name": "id",
5132
+ "summary": "Id",
5133
+ "description": "Id of the element.",
5134
+ "required": false,
5135
+ "schema": {
5136
+ "type": "string"
5137
+ }
5138
+ },
5139
+ {
5140
+ "name": "textContent",
5141
+ "summary": "Text Content",
5142
+ "description": "Text content of the element.",
5143
+ "required": false,
5144
+ "schema": {
5145
+ "type": "string"
5146
+ }
5147
+ },
5148
+ {
5149
+ "name": "innerHTML",
5150
+ "summary": "Inner HTML",
5151
+ "description": "Inner HTML of the element.",
5152
+ "required": false,
5153
+ "schema": {
5154
+ "type": "string"
5155
+ }
5156
+ },
5157
+ {
5158
+ "name": "slot",
5159
+ "summary": "Slot",
5160
+ "description": "Slot of the element.",
5161
+ "required": false,
5162
+ "schema": {
5163
+ "type": "string"
5164
+ }
5165
+ },
5166
+ {
5167
+ "name": "color",
5168
+ "summary": "color​",
5169
+ "description": "The color to use from your application's color palette. Default options are: \"primary\", \"secondary\", \"tertiary\", \"success\", \"warning\", \"danger\", \"light\", \"medium\", and \"dark\". For more information on colors, see theming.",
5170
+ "schema": {
5171
+ "type": "string"
5172
+ }
5173
+ },
5174
+ {
5175
+ "name": "hide-icon",
5176
+ "summary": "hideIcon​",
5177
+ "description": "The icon that can be used to represent hiding a password. If not set, the \"eyeOff\" Ionicon will be used.",
5178
+ "schema": {
5179
+ "type": "string"
5180
+ }
5181
+ },
5182
+ {
5183
+ "name": "mode",
5184
+ "summary": "mode​",
5185
+ "description": "The mode determines which platform styles to use.",
5186
+ "schema": {
5187
+ "type": "string"
5188
+ }
5189
+ },
5190
+ {
5191
+ "name": "show-icon",
5192
+ "summary": "showIcon​",
5193
+ "description": "The icon that can be used to represent showing a password. If not set, the \"eye\" Ionicon will be used.",
5194
+ "schema": {
5195
+ "type": "string"
5196
+ }
5197
+ }
5198
+ ],
5199
+ "x-events": [
5200
+ {
5201
+ "name": "click",
5202
+ "summary": "Click",
5203
+ "description": "Click event.",
5204
+ "required": false,
5205
+ "schema": {
5206
+ "type": "array",
5207
+ "items": {
5208
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5209
+ }
5210
+ }
5211
+ }
5212
+ ]
5213
+ }
5214
+ },
5215
+ "/ion-textarea": {
5216
+ "post": {
5217
+ "tags": ["web", "needPins"],
5218
+ "summary": "ion-textarea",
5219
+ "parameters": [
5220
+ {
5221
+ "name": "class",
5222
+ "summary": "Class",
5223
+ "description": "Class of the element.",
5224
+ "required": false,
5225
+ "schema": {
5226
+ "type": "string"
5227
+ }
5228
+ },
5229
+ {
5230
+ "name": "style",
5231
+ "summary": "Style",
5232
+ "description": "CSS style of the element.",
5233
+ "required": false,
5234
+ "schema": {
5235
+ "type": "string"
5236
+ }
5237
+ },
5238
+ {
5239
+ "name": "id",
5240
+ "summary": "Id",
5241
+ "description": "Id of the element.",
5242
+ "required": false,
5243
+ "schema": {
5244
+ "type": "string"
5245
+ }
5246
+ },
5247
+ {
5248
+ "name": "textContent",
5249
+ "summary": "Text Content",
5250
+ "description": "Text content of the element.",
5251
+ "required": false,
5252
+ "schema": {
5253
+ "type": "string"
5254
+ }
5255
+ },
5256
+ {
5257
+ "name": "innerHTML",
5258
+ "summary": "Inner HTML",
5259
+ "description": "Inner HTML of the element.",
5260
+ "required": false,
5261
+ "schema": {
5262
+ "type": "string"
5263
+ }
5264
+ },
5265
+ {
5266
+ "name": "slot",
5267
+ "summary": "Slot",
5268
+ "description": "Slot of the element.",
5269
+ "required": false,
5270
+ "schema": {
5271
+ "type": "string"
5272
+ }
5273
+ },
5274
+ {
5275
+ "name": "auto-grow",
5276
+ "summary": "autoGrow​",
5277
+ "description": "If true, the textarea container will grow and shrink based on the contents of the textarea.",
5278
+ "schema": {
5279
+ "type": "boolean"
5280
+ }
5281
+ },
5282
+ {
5283
+ "name": "autocapitalize",
5284
+ "summary": "autocapitalize​",
5285
+ "description": "Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user. Available options: \"off\", \"none\", \"on\", \"sentences\", \"words\", \"characters\".",
5286
+ "schema": {
5287
+ "type": "string"
5288
+ }
5289
+ },
5290
+ {
5291
+ "name": "autofocus",
5292
+ "summary": "autofocus​",
5293
+ "description": "Sets the autofocus attribute on the native input element.This may not be sufficient for the element to be focused on page load. See managing focus for more information.",
5294
+ "schema": {
5295
+ "type": "boolean"
5296
+ }
5297
+ },
5298
+ {
5299
+ "name": "clear-on-edit",
5300
+ "summary": "clearOnEdit​",
5301
+ "description": "If true, the value will be cleared after focus upon edit.",
5302
+ "schema": {
5303
+ "type": "boolean"
5304
+ }
5305
+ },
5306
+ {
5307
+ "name": "color",
5308
+ "summary": "color​",
5309
+ "description": "The color to use from your application's color palette. Default options are: \"primary\", \"secondary\", \"tertiary\", \"success\", \"warning\", \"danger\", \"light\", \"medium\", and \"dark\". For more information on colors, see theming.",
5310
+ "schema": {
5311
+ "type": "string"
5312
+ }
5313
+ },
5314
+ {
5315
+ "name": "cols",
5316
+ "summary": "cols​",
5317
+ "description": "The visible width of the text control, in average character widths. If it is specified, it must be a positive integer.",
5318
+ "schema": {
5319
+ "type": "number"
5320
+ }
5321
+ },
5322
+ {
5323
+ "name": "counter",
5324
+ "summary": "counter​",
5325
+ "description": "If true, a character counter will display the ratio of characters used and the total character limit. Developers must also set the maxlength property for the counter to be calculated correctly.",
5326
+ "schema": {
5327
+ "type": "boolean"
5328
+ }
5329
+ },
5330
+ {
5331
+ "name": "debounce",
5332
+ "summary": "debounce​",
5333
+ "description": "Set the amount of time, in milliseconds, to wait to trigger the ionInput event after each keystroke.",
5334
+ "schema": {
5335
+ "type": "number"
5336
+ }
5337
+ },
5338
+ {
5339
+ "name": "disabled",
5340
+ "summary": "disabled​",
5341
+ "description": "If true, the user cannot interact with the textarea.",
5342
+ "schema": {
5343
+ "type": "boolean"
5344
+ }
5345
+ },
5346
+ {
5347
+ "name": "enterkeyhint",
5348
+ "summary": "enterkeyhint​",
5349
+ "description": "A hint to the browser for which enter key to display. Possible values: \"enter\", \"done\", \"go\", \"next\", \"previous\", \"search\", and \"send\".",
5350
+ "schema": {
5351
+ "type": "string"
5352
+ }
5353
+ },
5354
+ {
5355
+ "name": "error-text",
5356
+ "summary": "errorText​",
5357
+ "description": "Text that is placed under the textarea and displayed when an error is detected.",
5358
+ "schema": {
5359
+ "type": "string"
5360
+ }
5361
+ },
5362
+ {
5363
+ "name": "fill",
5364
+ "summary": "fill​",
5365
+ "description": "The fill for the item. If \"solid\" the item will have a background. If \"outline\" the item will be transparent with a border. Only available in md mode.",
5366
+ "schema": {
5367
+ "type": "string"
5368
+ }
5369
+ },
5370
+ {
5371
+ "name": "helper-text",
5372
+ "summary": "helperText​",
5373
+ "description": "Text that is placed under the textarea and displayed when no error is detected.",
5374
+ "schema": {
5375
+ "type": "string"
5376
+ }
5377
+ },
5378
+ {
5379
+ "name": "inputmode",
5380
+ "summary": "inputmode​",
5381
+ "description": "A hint to the browser for which keyboard to display. Possible values: \"none\", \"text\", \"tel\", \"url\", \"email\", \"numeric\", \"decimal\", and \"search\".",
5382
+ "schema": {
5383
+ "type": "string"
5384
+ }
5385
+ },
5386
+ {
5387
+ "name": "label",
5388
+ "summary": "label​",
5389
+ "description": "The visible label associated with the textarea.Use this if you need to render a plaintext label.The label property will take priority over the label slot if both are used.",
5390
+ "schema": {
5391
+ "type": "string"
5392
+ }
5393
+ },
5394
+ {
5395
+ "name": "label-placement",
5396
+ "summary": "labelPlacement​",
5397
+ "description": "Where to place the label relative to the textarea. \"start\": The label will appear to the left of the textarea in LTR and to the right in RTL. \"end\": The label will appear to the right of the textarea in LTR and to the left in RTL. \"floating\": The label will appear smaller and above the textarea when the textarea is focused or it has a value. Otherwise it will appear on top of the textarea. \"stacked\": The label will appear smaller and above the textarea regardless even when the textarea is blurred or has no value. \"fixed\": The label has the same behavior as \"start\" except it also has a fixed width. Long text will be truncated with ellipses (\"...\").",
5398
+ "schema": {
5399
+ "type": "string"
5400
+ }
5401
+ },
5402
+ {
5403
+ "name": "maxlength",
5404
+ "summary": "maxlength​",
5405
+ "description": "This attribute specifies the maximum number of characters that the user can enter.",
5406
+ "schema": {
5407
+ "type": "number"
5408
+ }
5409
+ },
5410
+ {
5411
+ "name": "minlength",
5412
+ "summary": "minlength​",
5413
+ "description": "This attribute specifies the minimum number of characters that the user can enter.",
5414
+ "schema": {
5415
+ "type": "number"
5416
+ }
5417
+ },
5418
+ {
5419
+ "name": "mode",
5420
+ "summary": "mode​",
5421
+ "description": "The mode determines which platform styles to use.",
5422
+ "schema": {
5423
+ "type": "string"
5424
+ }
5425
+ },
5426
+ {
5427
+ "name": "name",
5428
+ "summary": "name​",
5429
+ "description": "The name of the control, which is submitted with the form data.",
5430
+ "schema": {
5431
+ "type": "string"
5432
+ }
5433
+ },
5434
+ {
5435
+ "name": "placeholder",
5436
+ "summary": "placeholder​",
5437
+ "description": "Instructional text that shows before the input has a value.",
5438
+ "schema": {
5439
+ "type": "string"
5440
+ }
5441
+ },
5442
+ {
5443
+ "name": "readonly",
5444
+ "summary": "readonly​",
5445
+ "description": "If true, the user cannot modify the value.",
5446
+ "schema": {
5447
+ "type": "boolean"
5448
+ }
5449
+ },
5450
+ {
5451
+ "name": "required",
5452
+ "summary": "required​",
5453
+ "description": "If true, the user must fill in a value before submitting a form.",
5454
+ "schema": {
5455
+ "type": "boolean"
5456
+ }
5457
+ },
5458
+ {
5459
+ "name": "rows",
5460
+ "summary": "rows​",
5461
+ "description": "The number of visible text lines for the control.",
5462
+ "schema": {
5463
+ "type": "number"
5464
+ }
5465
+ },
5466
+ {
5467
+ "name": "shape",
5468
+ "summary": "shape​",
5469
+ "description": "The shape of the textarea. If \"round\" it will have an increased border radius.",
5470
+ "schema": {
5471
+ "type": "string"
5472
+ }
5473
+ },
5474
+ {
5475
+ "name": "spellcheck",
5476
+ "summary": "spellcheck​",
5477
+ "description": "If true, the element will have its spelling and grammar checked.",
5478
+ "schema": {
5479
+ "type": "boolean"
5480
+ }
5481
+ },
5482
+ {
5483
+ "name": "value",
5484
+ "summary": "value​",
5485
+ "description": "The value of the textarea.",
5486
+ "schema": {
5487
+ "type": "string"
5488
+ }
5489
+ },
5490
+ {
5491
+ "name": "wrap",
5492
+ "summary": "wrap​",
5493
+ "description": "Indicates how the control wraps text.",
5494
+ "schema": {
5495
+ "type": "string"
5496
+ }
5497
+ }
5498
+ ],
5499
+ "x-events": [
5500
+ {
5501
+ "name": "click",
5502
+ "summary": "Click",
5503
+ "description": "Click event.",
5504
+ "required": false,
5505
+ "schema": {
5506
+ "type": "array",
5507
+ "items": {
5508
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5509
+ }
5510
+ }
5511
+ },
5512
+ {
5513
+ "name": "ionBlur",
5514
+ "summary": "ionBlur",
5515
+ "description": "Emitted when the input loses focus.",
5516
+ "required": false,
5517
+ "schema": {
5518
+ "type": "array",
5519
+ "items": {
5520
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5521
+ }
5522
+ }
5523
+ },
5524
+ {
5525
+ "name": "ionChange",
5526
+ "summary": "ionChange",
5527
+ "description": "The ionChange event is fired when the user modifies the textarea's value. Unlike the ionInput event, the ionChange event is fired when the element loses focus after its value has been modified.This event will not emit when programmatically setting the value property.",
5528
+ "required": false,
5529
+ "schema": {
5530
+ "type": "array",
5531
+ "items": {
5532
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5533
+ }
5534
+ }
5535
+ },
5536
+ {
5537
+ "name": "ionFocus",
5538
+ "summary": "ionFocus",
5539
+ "description": "Emitted when the input has focus.",
5540
+ "required": false,
5541
+ "schema": {
5542
+ "type": "array",
5543
+ "items": {
5544
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5545
+ }
5546
+ }
5547
+ },
5548
+ {
5549
+ "name": "ionInput",
5550
+ "summary": "ionInput",
5551
+ "description": "The ionInput event is fired each time the user modifies the textarea's value. Unlike the ionChange event, the ionInput event is fired for each alteration to the textarea's value. This typically happens for each keystroke as the user types.When clearOnEdit is enabled, the ionInput event will be fired when the user clears the textarea by performing a keydown event.",
5552
+ "required": false,
5553
+ "schema": {
5554
+ "type": "array",
5555
+ "items": {
5556
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5557
+ }
5558
+ }
5559
+ }
5560
+ ]
5561
+ }
5562
+ },
5563
+ "/ion-item": {
5564
+ "post": {
5565
+ "tags": ["web", "needPins"],
5566
+ "summary": "ion-item",
5567
+ "parameters": [
5568
+ {
5569
+ "name": "class",
5570
+ "summary": "Class",
5571
+ "description": "Class of the element.",
5572
+ "required": false,
5573
+ "schema": {
5574
+ "type": "string"
5575
+ }
5576
+ },
5577
+ {
5578
+ "name": "style",
5579
+ "summary": "Style",
5580
+ "description": "CSS style of the element.",
5581
+ "required": false,
5582
+ "schema": {
5583
+ "type": "string"
5584
+ }
5585
+ },
5586
+ {
5587
+ "name": "id",
5588
+ "summary": "Id",
5589
+ "description": "Id of the element.",
5590
+ "required": false,
5591
+ "schema": {
5592
+ "type": "string"
5593
+ }
5594
+ },
5595
+ {
5596
+ "name": "textContent",
5597
+ "summary": "Text Content",
5598
+ "description": "Text content of the element.",
5599
+ "required": false,
5600
+ "schema": {
5601
+ "type": "string"
5602
+ }
5603
+ },
5604
+ {
5605
+ "name": "innerHTML",
5606
+ "summary": "Inner HTML",
5607
+ "description": "Inner HTML of the element.",
5608
+ "required": false,
5609
+ "schema": {
5610
+ "type": "string"
5611
+ }
5612
+ },
5613
+ {
5614
+ "name": "slot",
5615
+ "summary": "Slot",
5616
+ "description": "Slot of the element.",
5617
+ "required": false,
5618
+ "schema": {
5619
+ "type": "string"
5620
+ }
5621
+ },
5622
+ {
5623
+ "name": "button",
5624
+ "summary": "button​",
5625
+ "description": "If true, a button tag will be rendered and the item will be tappable.",
5626
+ "schema": {
5627
+ "type": "boolean"
5628
+ }
5629
+ },
5630
+ {
5631
+ "name": "color",
5632
+ "summary": "color​",
5633
+ "description": "The color to use from your application's color palette. Default options are: \"primary\", \"secondary\", \"tertiary\", \"success\", \"warning\", \"danger\", \"light\", \"medium\", and \"dark\". For more information on colors, see theming.",
5634
+ "schema": {
5635
+ "type": "string"
5636
+ }
5637
+ },
5638
+ {
5639
+ "name": "detail",
5640
+ "summary": "detail​",
5641
+ "description": "If true, a detail arrow will appear on the item. Defaults to false unless the mode is ios and an href or button property is present.",
5642
+ "schema": {
5643
+ "type": "boolean"
5644
+ }
5645
+ },
5646
+ {
5647
+ "name": "detail-icon",
5648
+ "summary": "detailIcon​",
5649
+ "description": "The icon to use when detail is set to true.",
5650
+ "schema": {
5651
+ "type": "string"
5652
+ }
5653
+ },
5654
+ {
5655
+ "name": "disabled",
5656
+ "summary": "disabled​",
5657
+ "description": "If true, the user cannot interact with the item.",
5658
+ "schema": {
5659
+ "type": "boolean"
5660
+ }
5661
+ },
5662
+ {
5663
+ "name": "download",
5664
+ "summary": "download​",
5665
+ "description": "This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).",
5666
+ "schema": {
5667
+ "type": "string"
5668
+ }
5669
+ },
5670
+ {
5671
+ "name": "href",
5672
+ "summary": "href​",
5673
+ "description": "Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.",
5674
+ "schema": {
5675
+ "type": "string"
5676
+ }
5677
+ },
5678
+ {
5679
+ "name": "lines",
5680
+ "summary": "lines​",
5681
+ "description": "How the bottom border should be displayed on the item.",
5682
+ "schema": {
5683
+ "type": "string"
5684
+ }
5685
+ },
5686
+ {
5687
+ "name": "mode",
5688
+ "summary": "mode​",
5689
+ "description": "The mode determines which platform styles to use.",
5690
+ "schema": {
5691
+ "type": "string"
5692
+ }
5693
+ },
5694
+ {
5695
+ "name": "rel",
5696
+ "summary": "rel​",
5697
+ "description": "Specifies the relationship of the target object to the link object. The value is a space-separated list of link types.",
5698
+ "schema": {
5699
+ "type": "string"
5700
+ }
5701
+ },
5702
+ {
5703
+ "name": "router-direction",
5704
+ "summary": "routerDirection​",
5705
+ "description": "When using a router, it specifies the transition direction when navigating to another page using href.",
5706
+ "schema": {
5707
+ "type": "string"
5708
+ }
5709
+ },
5710
+ {
5711
+ "name": "target",
5712
+ "summary": "target​",
5713
+ "description": "Specifies where to display the linked URL. Only applies when an href is provided. Special keywords: \"_blank\", \"_self\", \"_parent\", \"_top\".",
5714
+ "schema": {
5715
+ "type": "string"
5716
+ }
5717
+ },
5718
+ {
5719
+ "name": "type",
5720
+ "summary": "type​",
5721
+ "description": "The type of the button. Only used when an onclick or button property is present.",
5722
+ "schema": {
5723
+ "type": "string"
5724
+ }
5725
+ }
5726
+ ],
5727
+ "x-events": [
5728
+ {
5729
+ "name": "click",
5730
+ "summary": "Click",
5731
+ "description": "Click event.",
5732
+ "required": false,
5733
+ "schema": {
5734
+ "type": "array",
5735
+ "items": {
5736
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5737
+ }
5738
+ }
5739
+ }
5740
+ ]
5741
+ }
5742
+ },
5743
+ "/ion-item-divider": {
5744
+ "post": {
5745
+ "tags": ["web", "needPins"],
5746
+ "summary": "ion-item-divider",
5747
+ "parameters": [
5748
+ {
5749
+ "name": "class",
5750
+ "summary": "Class",
5751
+ "description": "Class of the element.",
5752
+ "required": false,
5753
+ "schema": {
5754
+ "type": "string"
5755
+ }
5756
+ },
5757
+ {
5758
+ "name": "style",
5759
+ "summary": "Style",
5760
+ "description": "CSS style of the element.",
5761
+ "required": false,
5762
+ "schema": {
5763
+ "type": "string"
5764
+ }
5765
+ },
5766
+ {
5767
+ "name": "id",
5768
+ "summary": "Id",
5769
+ "description": "Id of the element.",
5770
+ "required": false,
5771
+ "schema": {
5772
+ "type": "string"
5773
+ }
5774
+ },
5775
+ {
5776
+ "name": "textContent",
5777
+ "summary": "Text Content",
5778
+ "description": "Text content of the element.",
5779
+ "required": false,
5780
+ "schema": {
5781
+ "type": "string"
5782
+ }
5783
+ },
5784
+ {
5785
+ "name": "innerHTML",
5786
+ "summary": "Inner HTML",
5787
+ "description": "Inner HTML of the element.",
5788
+ "required": false,
5789
+ "schema": {
5790
+ "type": "string"
5791
+ }
5792
+ },
5793
+ {
5794
+ "name": "slot",
5795
+ "summary": "Slot",
5796
+ "description": "Slot of the element.",
5797
+ "required": false,
5798
+ "schema": {
5799
+ "type": "string"
5800
+ }
5801
+ },
5802
+ {
5803
+ "name": "color",
5804
+ "summary": "color​",
5805
+ "description": "The color to use from your application's color palette. Default options are: \"primary\", \"secondary\", \"tertiary\", \"success\", \"warning\", \"danger\", \"light\", \"medium\", and \"dark\". For more information on colors, see theming.",
5806
+ "schema": {
5807
+ "type": "string"
5808
+ }
5809
+ },
5810
+ {
5811
+ "name": "mode",
5812
+ "summary": "mode​",
5813
+ "description": "The mode determines which platform styles to use.",
5814
+ "schema": {
5815
+ "type": "string"
5816
+ }
5817
+ },
5818
+ {
5819
+ "name": "sticky",
5820
+ "summary": "sticky​",
5821
+ "description": "When it's set to true, the item-divider will stay visible when it reaches the top of the viewport until the next ion-item-divider replaces it.This feature relies in position:sticky: https://caniuse.com/#feat=css-sticky",
5822
+ "schema": {
5823
+ "type": "boolean"
5824
+ }
5825
+ }
5826
+ ],
5827
+ "x-events": [
5828
+ {
5829
+ "name": "click",
5830
+ "summary": "Click",
5831
+ "description": "Click event.",
5832
+ "required": false,
5833
+ "schema": {
5834
+ "type": "array",
5835
+ "items": {
5836
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5837
+ }
5838
+ }
5839
+ }
5840
+ ]
5841
+ }
5842
+ },
5843
+ "/ion-item-group": {
5844
+ "post": {
5845
+ "tags": ["web", "needPins"],
5846
+ "summary": "ion-item-group",
5847
+ "parameters": [
5848
+ {
5849
+ "name": "class",
5850
+ "summary": "Class",
5851
+ "description": "Class of the element.",
5852
+ "required": false,
5853
+ "schema": {
5854
+ "type": "string"
5855
+ }
5856
+ },
5857
+ {
5858
+ "name": "style",
5859
+ "summary": "Style",
5860
+ "description": "CSS style of the element.",
5861
+ "required": false,
5862
+ "schema": {
5863
+ "type": "string"
5864
+ }
5865
+ },
5866
+ {
5867
+ "name": "id",
5868
+ "summary": "Id",
5869
+ "description": "Id of the element.",
5870
+ "required": false,
5871
+ "schema": {
5872
+ "type": "string"
5873
+ }
5874
+ },
5875
+ {
5876
+ "name": "textContent",
5877
+ "summary": "Text Content",
5878
+ "description": "Text content of the element.",
5879
+ "required": false,
5880
+ "schema": {
5881
+ "type": "string"
5882
+ }
5883
+ },
5884
+ {
5885
+ "name": "innerHTML",
5886
+ "summary": "Inner HTML",
5887
+ "description": "Inner HTML of the element.",
5888
+ "required": false,
5889
+ "schema": {
5890
+ "type": "string"
5891
+ }
5892
+ },
5893
+ {
5894
+ "name": "slot",
5895
+ "summary": "Slot",
5896
+ "description": "Slot of the element.",
5897
+ "required": false,
5898
+ "schema": {
5899
+ "type": "string"
5900
+ }
5901
+ }
5902
+ ],
5903
+ "x-events": [
5904
+ {
5905
+ "name": "click",
5906
+ "summary": "Click",
5907
+ "description": "Click event.",
5908
+ "required": false,
5909
+ "schema": {
5910
+ "type": "array",
5911
+ "items": {
5912
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5913
+ }
5914
+ }
5915
+ }
5916
+ ]
5917
+ }
5918
+ },
5919
+ "/ion-item-sliding": {
5920
+ "post": {
5921
+ "tags": ["web", "needPins"],
5922
+ "summary": "ion-item-sliding",
5923
+ "parameters": [
5924
+ {
5925
+ "name": "class",
5926
+ "summary": "Class",
5927
+ "description": "Class of the element.",
5928
+ "required": false,
5929
+ "schema": {
5930
+ "type": "string"
5931
+ }
5932
+ },
5933
+ {
5934
+ "name": "style",
5935
+ "summary": "Style",
5936
+ "description": "CSS style of the element.",
5937
+ "required": false,
5938
+ "schema": {
5939
+ "type": "string"
5940
+ }
5941
+ },
5942
+ {
5943
+ "name": "id",
5944
+ "summary": "Id",
5945
+ "description": "Id of the element.",
5946
+ "required": false,
5947
+ "schema": {
5948
+ "type": "string"
5949
+ }
5950
+ },
5951
+ {
5952
+ "name": "textContent",
5953
+ "summary": "Text Content",
5954
+ "description": "Text content of the element.",
5955
+ "required": false,
5956
+ "schema": {
5957
+ "type": "string"
5958
+ }
5959
+ },
5960
+ {
5961
+ "name": "innerHTML",
5962
+ "summary": "Inner HTML",
5963
+ "description": "Inner HTML of the element.",
5964
+ "required": false,
5965
+ "schema": {
5966
+ "type": "string"
5967
+ }
5968
+ },
5969
+ {
5970
+ "name": "slot",
5971
+ "summary": "Slot",
5972
+ "description": "Slot of the element.",
5973
+ "required": false,
5974
+ "schema": {
5975
+ "type": "string"
5976
+ }
5977
+ },
5978
+ {
5979
+ "name": "disabled",
5980
+ "summary": "disabled​",
5981
+ "description": "If true, the user cannot interact with the sliding item.",
5982
+ "schema": {
5983
+ "type": "boolean"
5984
+ }
5985
+ }
5986
+ ],
5987
+ "x-events": [
5988
+ {
5989
+ "name": "click",
5990
+ "summary": "Click",
5991
+ "description": "Click event.",
5992
+ "required": false,
5993
+ "schema": {
5994
+ "type": "array",
5995
+ "items": {
5996
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
5997
+ }
5998
+ }
5999
+ },
6000
+ {
6001
+ "name": "ionDrag",
6002
+ "summary": "ionDrag",
6003
+ "description": "Emitted when the sliding position changes.",
6004
+ "required": false,
6005
+ "schema": {
6006
+ "type": "array",
6007
+ "items": {
6008
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
6009
+ }
6010
+ }
6011
+ }
6012
+ ]
6013
+ }
6014
+ },
6015
+ "/ion-item-options": {
6016
+ "post": {
6017
+ "tags": ["web", "needPins"],
6018
+ "summary": "ion-item-options",
6019
+ "parameters": [
6020
+ {
6021
+ "name": "class",
6022
+ "summary": "Class",
6023
+ "description": "Class of the element.",
6024
+ "required": false,
6025
+ "schema": {
6026
+ "type": "string"
6027
+ }
6028
+ },
6029
+ {
6030
+ "name": "style",
6031
+ "summary": "Style",
6032
+ "description": "CSS style of the element.",
6033
+ "required": false,
6034
+ "schema": {
6035
+ "type": "string"
6036
+ }
6037
+ },
6038
+ {
6039
+ "name": "id",
6040
+ "summary": "Id",
6041
+ "description": "Id of the element.",
6042
+ "required": false,
6043
+ "schema": {
6044
+ "type": "string"
6045
+ }
6046
+ },
6047
+ {
6048
+ "name": "textContent",
6049
+ "summary": "Text Content",
6050
+ "description": "Text content of the element.",
6051
+ "required": false,
6052
+ "schema": {
6053
+ "type": "string"
6054
+ }
6055
+ },
6056
+ {
6057
+ "name": "innerHTML",
6058
+ "summary": "Inner HTML",
6059
+ "description": "Inner HTML of the element.",
6060
+ "required": false,
6061
+ "schema": {
6062
+ "type": "string"
6063
+ }
6064
+ },
6065
+ {
6066
+ "name": "slot",
6067
+ "summary": "Slot",
6068
+ "description": "Slot of the element.",
6069
+ "required": false,
6070
+ "schema": {
6071
+ "type": "string"
6072
+ }
6073
+ },
6074
+ {
6075
+ "name": "side",
6076
+ "summary": "side​",
6077
+ "description": "The side the option button should be on. Possible values: \"start\" and \"end\". If you have multiple ion-item-options, a side must be provided for each.",
6078
+ "schema": {
6079
+ "type": "string"
6080
+ }
6081
+ }
6082
+ ],
6083
+ "x-events": [
6084
+ {
6085
+ "name": "click",
6086
+ "summary": "Click",
6087
+ "description": "Click event.",
6088
+ "required": false,
6089
+ "schema": {
6090
+ "type": "array",
6091
+ "items": {
6092
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
6093
+ }
6094
+ }
6095
+ },
6096
+ {
6097
+ "name": "ionSwipe",
6098
+ "summary": "ionSwipe",
6099
+ "description": "Emitted when the item has been fully swiped.",
6100
+ "required": false,
6101
+ "schema": {
6102
+ "type": "array",
6103
+ "items": {
6104
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
6105
+ }
6106
+ }
6107
+ }
6108
+ ]
6109
+ }
6110
+ },
6111
+ "/ion-item-option": {
6112
+ "post": {
6113
+ "tags": ["web", "needPins"],
6114
+ "summary": "ion-item-option",
6115
+ "parameters": [
6116
+ {
6117
+ "name": "class",
6118
+ "summary": "Class",
6119
+ "description": "Class of the element.",
6120
+ "required": false,
6121
+ "schema": {
6122
+ "type": "string"
6123
+ }
6124
+ },
6125
+ {
6126
+ "name": "style",
6127
+ "summary": "Style",
6128
+ "description": "CSS style of the element.",
6129
+ "required": false,
6130
+ "schema": {
6131
+ "type": "string"
6132
+ }
6133
+ },
6134
+ {
6135
+ "name": "id",
6136
+ "summary": "Id",
6137
+ "description": "Id of the element.",
6138
+ "required": false,
6139
+ "schema": {
6140
+ "type": "string"
6141
+ }
6142
+ },
6143
+ {
6144
+ "name": "textContent",
6145
+ "summary": "Text Content",
6146
+ "description": "Text content of the element.",
6147
+ "required": false,
6148
+ "schema": {
6149
+ "type": "string"
6150
+ }
6151
+ },
6152
+ {
6153
+ "name": "innerHTML",
6154
+ "summary": "Inner HTML",
6155
+ "description": "Inner HTML of the element.",
6156
+ "required": false,
6157
+ "schema": {
6158
+ "type": "string"
6159
+ }
6160
+ },
6161
+ {
6162
+ "name": "slot",
6163
+ "summary": "Slot",
6164
+ "description": "Slot of the element.",
6165
+ "required": false,
6166
+ "schema": {
6167
+ "type": "string"
6168
+ }
6169
+ },
6170
+ {
6171
+ "name": "color",
6172
+ "summary": "color​",
6173
+ "description": "The color to use from your application's color palette. Default options are: \"primary\", \"secondary\", \"tertiary\", \"success\", \"warning\", \"danger\", \"light\", \"medium\", and \"dark\". For more information on colors, see theming.",
6174
+ "schema": {
6175
+ "type": "string"
6176
+ }
6177
+ },
6178
+ {
6179
+ "name": "disabled",
6180
+ "summary": "disabled​",
6181
+ "description": "If true, the user cannot interact with the item option.",
6182
+ "schema": {
6183
+ "type": "boolean"
6184
+ }
6185
+ },
6186
+ {
6187
+ "name": "download",
6188
+ "summary": "download​",
6189
+ "description": "This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).",
6190
+ "schema": {
6191
+ "type": "string"
6192
+ }
6193
+ },
6194
+ {
6195
+ "name": "expandable",
6196
+ "summary": "expandable​",
6197
+ "description": "If true, the option will expand to take up the available width and cover any other options.",
6198
+ "schema": {
6199
+ "type": "boolean"
6200
+ }
6201
+ },
6202
+ {
6203
+ "name": "href",
6204
+ "summary": "href​",
6205
+ "description": "Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.",
6206
+ "schema": {
6207
+ "type": "string"
6208
+ }
6209
+ },
6210
+ {
6211
+ "name": "mode",
6212
+ "summary": "mode​",
6213
+ "description": "The mode determines which platform styles to use.",
6214
+ "schema": {
6215
+ "type": "string"
6216
+ }
6217
+ },
6218
+ {
6219
+ "name": "rel",
6220
+ "summary": "rel​",
6221
+ "description": "Specifies the relationship of the target object to the link object. The value is a space-separated list of link types.",
6222
+ "schema": {
6223
+ "type": "string"
6224
+ }
6225
+ },
6226
+ {
6227
+ "name": "target",
6228
+ "summary": "target​",
6229
+ "description": "Specifies where to display the linked URL. Only applies when an href is provided. Special keywords: \"_blank\", \"_self\", \"_parent\", \"_top\".",
6230
+ "schema": {
6231
+ "type": "string"
6232
+ }
6233
+ },
6234
+ {
6235
+ "name": "type",
6236
+ "summary": "type​",
6237
+ "description": "The type of the button.",
6238
+ "schema": {
6239
+ "type": "string"
6240
+ }
6241
+ }
6242
+ ],
6243
+ "x-events": [
6244
+ {
6245
+ "name": "click",
6246
+ "summary": "Click",
6247
+ "description": "Click event.",
6248
+ "required": false,
6249
+ "schema": {
6250
+ "type": "array",
6251
+ "items": {
6252
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
6253
+ }
6254
+ }
6255
+ }
6256
+ ]
6257
+ }
6258
+ },
6259
+ "/ion-label": {
6260
+ "post": {
6261
+ "tags": ["web", "needPins"],
6262
+ "summary": "ion-label",
6263
+ "parameters": [
6264
+ {
6265
+ "name": "class",
6266
+ "summary": "Class",
6267
+ "description": "Class of the element.",
6268
+ "required": false,
6269
+ "schema": {
6270
+ "type": "string"
6271
+ }
6272
+ },
6273
+ {
6274
+ "name": "style",
6275
+ "summary": "Style",
6276
+ "description": "CSS style of the element.",
6277
+ "required": false,
6278
+ "schema": {
6279
+ "type": "string"
6280
+ }
6281
+ },
6282
+ {
6283
+ "name": "id",
6284
+ "summary": "Id",
6285
+ "description": "Id of the element.",
6286
+ "required": false,
6287
+ "schema": {
6288
+ "type": "string"
6289
+ }
6290
+ },
6291
+ {
6292
+ "name": "textContent",
6293
+ "summary": "Text Content",
6294
+ "description": "Text content of the element.",
6295
+ "required": false,
6296
+ "schema": {
6297
+ "type": "string"
6298
+ }
6299
+ },
6300
+ {
6301
+ "name": "innerHTML",
6302
+ "summary": "Inner HTML",
6303
+ "description": "Inner HTML of the element.",
6304
+ "required": false,
6305
+ "schema": {
6306
+ "type": "string"
6307
+ }
6308
+ },
6309
+ {
6310
+ "name": "slot",
6311
+ "summary": "Slot",
6312
+ "description": "Slot of the element.",
6313
+ "required": false,
6314
+ "schema": {
6315
+ "type": "string"
6316
+ }
6317
+ },
6318
+ {
6319
+ "name": "color",
6320
+ "summary": "color​",
6321
+ "description": "The color to use from your application's color palette. Default options are: \"primary\", \"secondary\", \"tertiary\", \"success\", \"warning\", \"danger\", \"light\", \"medium\", and \"dark\". For more information on colors, see theming.",
6322
+ "schema": {
6323
+ "type": "string"
6324
+ }
6325
+ },
6326
+ {
6327
+ "name": "mode",
6328
+ "summary": "mode​",
6329
+ "description": "The mode determines which platform styles to use.",
6330
+ "schema": {
6331
+ "type": "string"
6332
+ }
6333
+ },
6334
+ {
6335
+ "name": "position",
6336
+ "summary": "position​",
6337
+ "description": "The position determines where and how the label behaves inside an item.",
6338
+ "schema": {
6339
+ "type": "string"
6340
+ }
6341
+ }
6342
+ ],
6343
+ "x-events": [
6344
+ {
6345
+ "name": "click",
6346
+ "summary": "Click",
6347
+ "description": "Click event.",
6348
+ "required": false,
6349
+ "schema": {
6350
+ "type": "array",
6351
+ "items": {
6352
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
6353
+ }
6354
+ }
6355
+ }
6356
+ ]
6357
+ }
6358
+ },
6359
+ "/ion-note": {
6360
+ "post": {
6361
+ "tags": ["web", "needPins"],
6362
+ "summary": "ion-note",
6363
+ "parameters": [
6364
+ {
6365
+ "name": "class",
6366
+ "summary": "Class",
6367
+ "description": "Class of the element.",
6368
+ "required": false,
6369
+ "schema": {
6370
+ "type": "string"
6371
+ }
6372
+ },
6373
+ {
6374
+ "name": "style",
6375
+ "summary": "Style",
6376
+ "description": "CSS style of the element.",
6377
+ "required": false,
6378
+ "schema": {
6379
+ "type": "string"
6380
+ }
6381
+ },
6382
+ {
6383
+ "name": "id",
6384
+ "summary": "Id",
6385
+ "description": "Id of the element.",
6386
+ "required": false,
6387
+ "schema": {
6388
+ "type": "string"
6389
+ }
6390
+ },
6391
+ {
6392
+ "name": "textContent",
6393
+ "summary": "Text Content",
6394
+ "description": "Text content of the element.",
6395
+ "required": false,
6396
+ "schema": {
6397
+ "type": "string"
6398
+ }
6399
+ },
6400
+ {
6401
+ "name": "innerHTML",
6402
+ "summary": "Inner HTML",
6403
+ "description": "Inner HTML of the element.",
6404
+ "required": false,
6405
+ "schema": {
6406
+ "type": "string"
6407
+ }
6408
+ },
6409
+ {
6410
+ "name": "slot",
6411
+ "summary": "Slot",
6412
+ "description": "Slot of the element.",
6413
+ "required": false,
6414
+ "schema": {
6415
+ "type": "string"
6416
+ }
6417
+ },
6418
+ {
6419
+ "name": "color",
6420
+ "summary": "color​",
6421
+ "description": "The color to use from your application's color palette. Default options are: \"primary\", \"secondary\", \"tertiary\", \"success\", \"warning\", \"danger\", \"light\", \"medium\", and \"dark\". For more information on colors, see theming.",
6422
+ "schema": {
6423
+ "type": "string"
6424
+ }
6425
+ },
6426
+ {
6427
+ "name": "mode",
6428
+ "summary": "mode​",
6429
+ "description": "The mode determines which platform styles to use.",
6430
+ "schema": {
6431
+ "type": "string"
6432
+ }
6433
+ }
6434
+ ],
6435
+ "x-events": [
6436
+ {
6437
+ "name": "click",
6438
+ "summary": "Click",
6439
+ "description": "Click event.",
6440
+ "required": false,
6441
+ "schema": {
6442
+ "type": "array",
6443
+ "items": {
6444
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
6445
+ }
6446
+ }
6447
+ }
6448
+ ]
6449
+ }
6450
+ },
6451
+ "/ion-list": {
6452
+ "post": {
6453
+ "tags": ["web", "needPins"],
6454
+ "summary": "ion-list",
6455
+ "parameters": [
6456
+ {
6457
+ "name": "class",
6458
+ "summary": "Class",
6459
+ "description": "Class of the element.",
6460
+ "required": false,
6461
+ "schema": {
6462
+ "type": "string"
6463
+ }
6464
+ },
6465
+ {
6466
+ "name": "style",
6467
+ "summary": "Style",
6468
+ "description": "CSS style of the element.",
6469
+ "required": false,
6470
+ "schema": {
6471
+ "type": "string"
6472
+ }
6473
+ },
6474
+ {
6475
+ "name": "id",
6476
+ "summary": "Id",
6477
+ "description": "Id of the element.",
6478
+ "required": false,
6479
+ "schema": {
6480
+ "type": "string"
6481
+ }
6482
+ },
6483
+ {
6484
+ "name": "textContent",
6485
+ "summary": "Text Content",
6486
+ "description": "Text content of the element.",
6487
+ "required": false,
6488
+ "schema": {
6489
+ "type": "string"
6490
+ }
6491
+ },
6492
+ {
6493
+ "name": "innerHTML",
6494
+ "summary": "Inner HTML",
6495
+ "description": "Inner HTML of the element.",
6496
+ "required": false,
6497
+ "schema": {
6498
+ "type": "string"
6499
+ }
6500
+ },
6501
+ {
6502
+ "name": "slot",
6503
+ "summary": "Slot",
6504
+ "description": "Slot of the element.",
6505
+ "required": false,
6506
+ "schema": {
6507
+ "type": "string"
6508
+ }
6509
+ },
6510
+ {
6511
+ "name": "inset",
6512
+ "summary": "inset​",
6513
+ "description": "If true, the list will have margin around it and rounded corners.",
6514
+ "schema": {
6515
+ "type": "boolean"
6516
+ }
6517
+ },
6518
+ {
6519
+ "name": "lines",
6520
+ "summary": "lines​",
6521
+ "description": "How the bottom border should be displayed on all items.",
6522
+ "schema": {
6523
+ "type": "string"
6524
+ }
6525
+ },
6526
+ {
6527
+ "name": "mode",
6528
+ "summary": "mode​",
6529
+ "description": "The mode determines which platform styles to use.",
6530
+ "schema": {
6531
+ "type": "string"
6532
+ }
6533
+ }
6534
+ ],
6535
+ "x-events": [
6536
+ {
6537
+ "name": "click",
6538
+ "summary": "Click",
6539
+ "description": "Click event.",
6540
+ "required": false,
6541
+ "schema": {
6542
+ "type": "array",
6543
+ "items": {
6544
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
6545
+ }
6546
+ }
6547
+ }
6548
+ ]
6549
+ }
6550
+ },
6551
+ "/ion-list-header": {
6552
+ "post": {
6553
+ "tags": ["web", "needPins"],
6554
+ "summary": "ion-list-header",
6555
+ "parameters": [
6556
+ {
6557
+ "name": "class",
6558
+ "summary": "Class",
6559
+ "description": "Class of the element.",
6560
+ "required": false,
6561
+ "schema": {
6562
+ "type": "string"
6563
+ }
6564
+ },
6565
+ {
6566
+ "name": "style",
6567
+ "summary": "Style",
6568
+ "description": "CSS style of the element.",
6569
+ "required": false,
6570
+ "schema": {
6571
+ "type": "string"
6572
+ }
6573
+ },
6574
+ {
6575
+ "name": "id",
6576
+ "summary": "Id",
6577
+ "description": "Id of the element.",
6578
+ "required": false,
6579
+ "schema": {
6580
+ "type": "string"
6581
+ }
6582
+ },
6583
+ {
6584
+ "name": "textContent",
6585
+ "summary": "Text Content",
6586
+ "description": "Text content of the element.",
6587
+ "required": false,
6588
+ "schema": {
6589
+ "type": "string"
6590
+ }
6591
+ },
6592
+ {
6593
+ "name": "innerHTML",
6594
+ "summary": "Inner HTML",
6595
+ "description": "Inner HTML of the element.",
6596
+ "required": false,
6597
+ "schema": {
6598
+ "type": "string"
6599
+ }
6600
+ },
6601
+ {
6602
+ "name": "slot",
6603
+ "summary": "Slot",
6604
+ "description": "Slot of the element.",
6605
+ "required": false,
6606
+ "schema": {
6607
+ "type": "string"
6608
+ }
6609
+ },
6610
+ {
6611
+ "name": "color",
6612
+ "summary": "color​",
6613
+ "description": "The color to use from your application's color palette. Default options are: \"primary\", \"secondary\", \"tertiary\", \"success\", \"warning\", \"danger\", \"light\", \"medium\", and \"dark\". For more information on colors, see theming.",
6614
+ "schema": {
6615
+ "type": "string"
6616
+ }
6617
+ },
6618
+ {
6619
+ "name": "lines",
6620
+ "summary": "lines​",
6621
+ "description": "How the bottom border should be displayed on the list header.",
6622
+ "schema": {
6623
+ "type": "string"
6624
+ }
6625
+ },
6626
+ {
6627
+ "name": "mode",
6628
+ "summary": "mode​",
6629
+ "description": "The mode determines which platform styles to use.",
6630
+ "schema": {
6631
+ "type": "string"
6632
+ }
6633
+ }
6634
+ ],
6635
+ "x-events": [
6636
+ {
6637
+ "name": "click",
6638
+ "summary": "Click",
6639
+ "description": "Click event.",
6640
+ "required": false,
6641
+ "schema": {
6642
+ "type": "array",
6643
+ "items": {
6644
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
6645
+ }
6646
+ }
6647
+ }
6648
+ ]
6649
+ }
6650
+ },
6651
+ "/ion-avatar": {
6652
+ "post": {
6653
+ "tags": ["web", "needPins"],
6654
+ "summary": "ion-avatar",
6655
+ "parameters": [
6656
+ {
6657
+ "name": "class",
6658
+ "summary": "Class",
6659
+ "description": "Class of the element.",
6660
+ "required": false,
6661
+ "schema": {
6662
+ "type": "string"
6663
+ }
6664
+ },
6665
+ {
6666
+ "name": "style",
6667
+ "summary": "Style",
6668
+ "description": "CSS style of the element.",
6669
+ "required": false,
6670
+ "schema": {
6671
+ "type": "string"
6672
+ }
6673
+ },
6674
+ {
6675
+ "name": "id",
6676
+ "summary": "Id",
6677
+ "description": "Id of the element.",
6678
+ "required": false,
6679
+ "schema": {
6680
+ "type": "string"
6681
+ }
6682
+ },
6683
+ {
6684
+ "name": "textContent",
6685
+ "summary": "Text Content",
6686
+ "description": "Text content of the element.",
6687
+ "required": false,
6688
+ "schema": {
6689
+ "type": "string"
6690
+ }
6691
+ },
6692
+ {
6693
+ "name": "innerHTML",
6694
+ "summary": "Inner HTML",
6695
+ "description": "Inner HTML of the element.",
6696
+ "required": false,
6697
+ "schema": {
6698
+ "type": "string"
6699
+ }
6700
+ },
6701
+ {
6702
+ "name": "slot",
6703
+ "summary": "Slot",
6704
+ "description": "Slot of the element.",
6705
+ "required": false,
6706
+ "schema": {
6707
+ "type": "string"
6708
+ }
6709
+ }
6710
+ ],
6711
+ "x-events": [
6712
+ {
6713
+ "name": "click",
6714
+ "summary": "Click",
6715
+ "description": "Click event.",
6716
+ "required": false,
6717
+ "schema": {
6718
+ "type": "array",
6719
+ "items": {
6720
+ "$ref": "https://schemas.digipair.ai/pinsSettings"
6721
+ }
6722
+ }
6723
+ }
6724
+ ]
6725
+ }
6726
+ },
4711
6727
  "/ion-img": {
4712
6728
  "post": {
4713
6729
  "tags": ["web", "needPins"],