@digipair/skill-web-editor 0.4.24 → 0.4.26
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.
- package/index.cjs2.js +7 -376
- package/index.esm2.js +7 -376
- package/libs/skill-web-editor/src/lib/schemas/web.schema.d.ts +0 -196
- package/package.json +1 -1
package/index.cjs2.js
CHANGED
|
@@ -3017,397 +3017,28 @@ const schemas = {
|
|
|
3017
3017
|
summary: 'Section',
|
|
3018
3018
|
parameters: [
|
|
3019
3019
|
{
|
|
3020
|
-
name: '
|
|
3021
|
-
|
|
3022
|
-
description: '',
|
|
3023
|
-
schema: {
|
|
3024
|
-
type: 'string'
|
|
3025
|
-
}
|
|
3026
|
-
},
|
|
3027
|
-
{
|
|
3028
|
-
name: 'textContent',
|
|
3029
|
-
in: 'query',
|
|
3030
|
-
description: '',
|
|
3031
|
-
schema: {
|
|
3032
|
-
type: 'string'
|
|
3033
|
-
}
|
|
3034
|
-
}
|
|
3035
|
-
]
|
|
3036
|
-
}
|
|
3037
|
-
},
|
|
3038
|
-
'/h1': {
|
|
3039
|
-
post: {
|
|
3040
|
-
tags: [
|
|
3041
|
-
'web'
|
|
3042
|
-
],
|
|
3043
|
-
summary: 'h1',
|
|
3044
|
-
parameters: [
|
|
3045
|
-
{
|
|
3046
|
-
name: 'textContent',
|
|
3047
|
-
in: 'query',
|
|
3048
|
-
description: '',
|
|
3049
|
-
schema: {
|
|
3050
|
-
type: 'string'
|
|
3051
|
-
}
|
|
3052
|
-
}
|
|
3053
|
-
],
|
|
3054
|
-
'x-events': [
|
|
3055
|
-
{
|
|
3056
|
-
name: 'click',
|
|
3057
|
-
summary: "Clique sur l'élément",
|
|
3058
|
-
required: false,
|
|
3059
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3060
|
-
schema: {
|
|
3061
|
-
type: 'array',
|
|
3062
|
-
items: {
|
|
3063
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3064
|
-
}
|
|
3065
|
-
}
|
|
3066
|
-
}
|
|
3067
|
-
]
|
|
3068
|
-
}
|
|
3069
|
-
},
|
|
3070
|
-
'/nav': {
|
|
3071
|
-
post: {
|
|
3072
|
-
tags: [
|
|
3073
|
-
'needPins',
|
|
3074
|
-
'web'
|
|
3075
|
-
],
|
|
3076
|
-
summary: 'nav',
|
|
3077
|
-
parameters: [
|
|
3078
|
-
{
|
|
3079
|
-
name: 'class',
|
|
3080
|
-
in: 'query',
|
|
3081
|
-
description: '',
|
|
3082
|
-
schema: {
|
|
3083
|
-
type: 'string'
|
|
3084
|
-
}
|
|
3085
|
-
}
|
|
3086
|
-
]
|
|
3087
|
-
}
|
|
3088
|
-
},
|
|
3089
|
-
'/a': {
|
|
3090
|
-
post: {
|
|
3091
|
-
tags: [
|
|
3092
|
-
'needPins',
|
|
3093
|
-
'web'
|
|
3094
|
-
],
|
|
3095
|
-
summary: 'a',
|
|
3096
|
-
parameters: [
|
|
3097
|
-
{
|
|
3098
|
-
name: 'class',
|
|
3099
|
-
in: 'query',
|
|
3100
|
-
description: '',
|
|
3101
|
-
schema: {
|
|
3102
|
-
type: 'string'
|
|
3103
|
-
}
|
|
3104
|
-
},
|
|
3105
|
-
{
|
|
3106
|
-
name: 'href',
|
|
3107
|
-
in: 'query',
|
|
3108
|
-
description: '',
|
|
3109
|
-
schema: {
|
|
3110
|
-
type: 'string'
|
|
3111
|
-
}
|
|
3112
|
-
},
|
|
3113
|
-
{
|
|
3114
|
-
name: 'textContent',
|
|
3115
|
-
in: 'query',
|
|
3116
|
-
description: '',
|
|
3117
|
-
schema: {
|
|
3118
|
-
type: 'string'
|
|
3119
|
-
}
|
|
3120
|
-
},
|
|
3121
|
-
{
|
|
3122
|
-
name: 'id',
|
|
3123
|
-
in: 'query',
|
|
3124
|
-
description: '',
|
|
3125
|
-
schema: {
|
|
3126
|
-
type: 'string'
|
|
3127
|
-
}
|
|
3128
|
-
},
|
|
3129
|
-
{
|
|
3130
|
-
name: 'role',
|
|
3131
|
-
in: 'query',
|
|
3132
|
-
description: '',
|
|
3133
|
-
schema: {
|
|
3134
|
-
type: 'string'
|
|
3135
|
-
}
|
|
3136
|
-
},
|
|
3137
|
-
{
|
|
3138
|
-
name: 'data-toggle',
|
|
3139
|
-
in: 'query',
|
|
3140
|
-
description: '',
|
|
3141
|
-
schema: {
|
|
3142
|
-
type: 'string'
|
|
3143
|
-
}
|
|
3144
|
-
},
|
|
3145
|
-
{
|
|
3146
|
-
name: 'aria-haspopup',
|
|
3147
|
-
in: 'query',
|
|
3148
|
-
description: '',
|
|
3149
|
-
schema: {
|
|
3150
|
-
type: 'string'
|
|
3151
|
-
}
|
|
3152
|
-
},
|
|
3153
|
-
{
|
|
3154
|
-
name: 'aria-expanded',
|
|
3155
|
-
in: 'query',
|
|
3156
|
-
description: '',
|
|
3157
|
-
schema: {
|
|
3158
|
-
type: 'string'
|
|
3159
|
-
}
|
|
3160
|
-
}
|
|
3161
|
-
],
|
|
3162
|
-
'x-events': [
|
|
3163
|
-
{
|
|
3164
|
-
name: 'click',
|
|
3165
|
-
summary: "Clique sur l'élément",
|
|
3166
|
-
required: false,
|
|
3167
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3168
|
-
schema: {
|
|
3169
|
-
type: 'array',
|
|
3170
|
-
items: {
|
|
3171
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3172
|
-
}
|
|
3173
|
-
}
|
|
3174
|
-
}
|
|
3175
|
-
]
|
|
3176
|
-
}
|
|
3177
|
-
},
|
|
3178
|
-
'/button': {
|
|
3179
|
-
post: {
|
|
3180
|
-
tags: [
|
|
3181
|
-
'needPins',
|
|
3182
|
-
'web'
|
|
3183
|
-
],
|
|
3184
|
-
summary: 'button',
|
|
3185
|
-
parameters: [
|
|
3186
|
-
{
|
|
3187
|
-
name: 'class',
|
|
3188
|
-
in: 'query',
|
|
3189
|
-
description: '',
|
|
3190
|
-
schema: {
|
|
3191
|
-
type: 'string'
|
|
3192
|
-
}
|
|
3193
|
-
},
|
|
3194
|
-
{
|
|
3195
|
-
name: 'type',
|
|
3196
|
-
in: 'query',
|
|
3197
|
-
description: '',
|
|
3198
|
-
schema: {
|
|
3199
|
-
type: 'string'
|
|
3200
|
-
}
|
|
3201
|
-
},
|
|
3202
|
-
{
|
|
3203
|
-
name: 'data-toggle',
|
|
3204
|
-
in: 'query',
|
|
3205
|
-
description: '',
|
|
3206
|
-
schema: {
|
|
3207
|
-
type: 'string'
|
|
3208
|
-
}
|
|
3209
|
-
},
|
|
3210
|
-
{
|
|
3211
|
-
name: 'data-target',
|
|
3212
|
-
in: 'query',
|
|
3213
|
-
description: '',
|
|
3214
|
-
schema: {
|
|
3215
|
-
type: 'string'
|
|
3216
|
-
}
|
|
3217
|
-
},
|
|
3218
|
-
{
|
|
3219
|
-
name: 'aria-controls',
|
|
3220
|
-
in: 'query',
|
|
3221
|
-
description: '',
|
|
3222
|
-
schema: {
|
|
3223
|
-
type: 'string'
|
|
3224
|
-
}
|
|
3225
|
-
},
|
|
3226
|
-
{
|
|
3227
|
-
name: 'aria-expanded',
|
|
3228
|
-
in: 'query',
|
|
3229
|
-
description: '',
|
|
3020
|
+
name: 'style',
|
|
3021
|
+
summary: 'Style CSS',
|
|
3022
|
+
description: 'Style de la section',
|
|
3230
3023
|
schema: {
|
|
3231
3024
|
type: 'string'
|
|
3232
3025
|
}
|
|
3233
3026
|
},
|
|
3234
|
-
{
|
|
3235
|
-
name: 'aria-label',
|
|
3236
|
-
in: 'query',
|
|
3237
|
-
description: '',
|
|
3238
|
-
schema: {
|
|
3239
|
-
type: 'string'
|
|
3240
|
-
}
|
|
3241
|
-
},
|
|
3242
|
-
{
|
|
3243
|
-
name: 'textContent',
|
|
3244
|
-
in: 'query',
|
|
3245
|
-
description: '',
|
|
3246
|
-
schema: {
|
|
3247
|
-
type: 'string'
|
|
3248
|
-
}
|
|
3249
|
-
}
|
|
3250
|
-
],
|
|
3251
|
-
'x-events': [
|
|
3252
|
-
{
|
|
3253
|
-
name: 'click',
|
|
3254
|
-
summary: "Clique sur l'élément",
|
|
3255
|
-
required: false,
|
|
3256
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3257
|
-
schema: {
|
|
3258
|
-
type: 'array',
|
|
3259
|
-
items: {
|
|
3260
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3261
|
-
}
|
|
3262
|
-
}
|
|
3263
|
-
}
|
|
3264
|
-
]
|
|
3265
|
-
}
|
|
3266
|
-
},
|
|
3267
|
-
'/span': {
|
|
3268
|
-
post: {
|
|
3269
|
-
tags: [
|
|
3270
|
-
'needPins',
|
|
3271
|
-
'web'
|
|
3272
|
-
],
|
|
3273
|
-
summary: 'span',
|
|
3274
|
-
parameters: [
|
|
3275
|
-
{
|
|
3276
|
-
name: 'class',
|
|
3277
|
-
in: 'query',
|
|
3278
|
-
description: '',
|
|
3279
|
-
schema: {
|
|
3280
|
-
type: 'string'
|
|
3281
|
-
}
|
|
3282
|
-
}
|
|
3283
|
-
],
|
|
3284
|
-
'x-events': [
|
|
3285
|
-
{
|
|
3286
|
-
name: 'click',
|
|
3287
|
-
summary: "Clique sur l'élément",
|
|
3288
|
-
required: false,
|
|
3289
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3290
|
-
schema: {
|
|
3291
|
-
type: 'array',
|
|
3292
|
-
items: {
|
|
3293
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3294
|
-
}
|
|
3295
|
-
}
|
|
3296
|
-
}
|
|
3297
|
-
]
|
|
3298
|
-
}
|
|
3299
|
-
},
|
|
3300
|
-
'/div': {
|
|
3301
|
-
post: {
|
|
3302
|
-
tags: [
|
|
3303
|
-
'needPins',
|
|
3304
|
-
'web'
|
|
3305
|
-
],
|
|
3306
|
-
summary: 'div',
|
|
3307
|
-
parameters: [
|
|
3308
3027
|
{
|
|
3309
3028
|
name: 'class',
|
|
3310
|
-
|
|
3311
|
-
description: '',
|
|
3029
|
+
summary: 'Classe CSS',
|
|
3030
|
+
description: 'Classe de la section',
|
|
3312
3031
|
schema: {
|
|
3313
3032
|
type: 'string'
|
|
3314
3033
|
}
|
|
3315
3034
|
},
|
|
3316
3035
|
{
|
|
3317
3036
|
name: 'id',
|
|
3318
|
-
|
|
3319
|
-
description: '',
|
|
3037
|
+
summary: 'Identifiant',
|
|
3038
|
+
description: 'Identifiant de la section',
|
|
3320
3039
|
schema: {
|
|
3321
3040
|
type: 'string'
|
|
3322
3041
|
}
|
|
3323
|
-
},
|
|
3324
|
-
{
|
|
3325
|
-
name: 'aria-labelledby',
|
|
3326
|
-
in: 'query',
|
|
3327
|
-
description: '',
|
|
3328
|
-
schema: {
|
|
3329
|
-
type: 'string'
|
|
3330
|
-
}
|
|
3331
|
-
}
|
|
3332
|
-
],
|
|
3333
|
-
'x-events': [
|
|
3334
|
-
{
|
|
3335
|
-
name: 'click',
|
|
3336
|
-
summary: "Clique sur l'élément",
|
|
3337
|
-
required: false,
|
|
3338
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3339
|
-
schema: {
|
|
3340
|
-
type: 'array',
|
|
3341
|
-
items: {
|
|
3342
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3343
|
-
}
|
|
3344
|
-
}
|
|
3345
|
-
}
|
|
3346
|
-
]
|
|
3347
|
-
}
|
|
3348
|
-
},
|
|
3349
|
-
'/ul': {
|
|
3350
|
-
post: {
|
|
3351
|
-
tags: [
|
|
3352
|
-
'needPins',
|
|
3353
|
-
'web'
|
|
3354
|
-
],
|
|
3355
|
-
summary: 'ul',
|
|
3356
|
-
parameters: [
|
|
3357
|
-
{
|
|
3358
|
-
name: 'class',
|
|
3359
|
-
in: 'query',
|
|
3360
|
-
description: '',
|
|
3361
|
-
schema: {
|
|
3362
|
-
type: 'string'
|
|
3363
|
-
}
|
|
3364
|
-
}
|
|
3365
|
-
],
|
|
3366
|
-
'x-events': [
|
|
3367
|
-
{
|
|
3368
|
-
name: 'click',
|
|
3369
|
-
summary: "Clique sur l'élément",
|
|
3370
|
-
required: false,
|
|
3371
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3372
|
-
schema: {
|
|
3373
|
-
type: 'array',
|
|
3374
|
-
items: {
|
|
3375
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3376
|
-
}
|
|
3377
|
-
}
|
|
3378
|
-
}
|
|
3379
|
-
]
|
|
3380
|
-
}
|
|
3381
|
-
},
|
|
3382
|
-
'/li': {
|
|
3383
|
-
post: {
|
|
3384
|
-
tags: [
|
|
3385
|
-
'needPins',
|
|
3386
|
-
'web'
|
|
3387
|
-
],
|
|
3388
|
-
summary: 'li',
|
|
3389
|
-
parameters: [
|
|
3390
|
-
{
|
|
3391
|
-
name: 'class',
|
|
3392
|
-
in: 'query',
|
|
3393
|
-
description: '',
|
|
3394
|
-
schema: {
|
|
3395
|
-
type: 'string'
|
|
3396
|
-
}
|
|
3397
|
-
}
|
|
3398
|
-
],
|
|
3399
|
-
'x-events': [
|
|
3400
|
-
{
|
|
3401
|
-
name: 'click',
|
|
3402
|
-
summary: "Clique sur l'élément",
|
|
3403
|
-
required: false,
|
|
3404
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3405
|
-
schema: {
|
|
3406
|
-
type: 'array',
|
|
3407
|
-
items: {
|
|
3408
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3409
|
-
}
|
|
3410
|
-
}
|
|
3411
3042
|
}
|
|
3412
3043
|
]
|
|
3413
3044
|
}
|
package/index.esm2.js
CHANGED
|
@@ -3015,397 +3015,28 @@ const schemas = {
|
|
|
3015
3015
|
summary: 'Section',
|
|
3016
3016
|
parameters: [
|
|
3017
3017
|
{
|
|
3018
|
-
name: '
|
|
3019
|
-
|
|
3020
|
-
description: '',
|
|
3021
|
-
schema: {
|
|
3022
|
-
type: 'string'
|
|
3023
|
-
}
|
|
3024
|
-
},
|
|
3025
|
-
{
|
|
3026
|
-
name: 'textContent',
|
|
3027
|
-
in: 'query',
|
|
3028
|
-
description: '',
|
|
3029
|
-
schema: {
|
|
3030
|
-
type: 'string'
|
|
3031
|
-
}
|
|
3032
|
-
}
|
|
3033
|
-
]
|
|
3034
|
-
}
|
|
3035
|
-
},
|
|
3036
|
-
'/h1': {
|
|
3037
|
-
post: {
|
|
3038
|
-
tags: [
|
|
3039
|
-
'web'
|
|
3040
|
-
],
|
|
3041
|
-
summary: 'h1',
|
|
3042
|
-
parameters: [
|
|
3043
|
-
{
|
|
3044
|
-
name: 'textContent',
|
|
3045
|
-
in: 'query',
|
|
3046
|
-
description: '',
|
|
3047
|
-
schema: {
|
|
3048
|
-
type: 'string'
|
|
3049
|
-
}
|
|
3050
|
-
}
|
|
3051
|
-
],
|
|
3052
|
-
'x-events': [
|
|
3053
|
-
{
|
|
3054
|
-
name: 'click',
|
|
3055
|
-
summary: "Clique sur l'élément",
|
|
3056
|
-
required: false,
|
|
3057
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3058
|
-
schema: {
|
|
3059
|
-
type: 'array',
|
|
3060
|
-
items: {
|
|
3061
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3062
|
-
}
|
|
3063
|
-
}
|
|
3064
|
-
}
|
|
3065
|
-
]
|
|
3066
|
-
}
|
|
3067
|
-
},
|
|
3068
|
-
'/nav': {
|
|
3069
|
-
post: {
|
|
3070
|
-
tags: [
|
|
3071
|
-
'needPins',
|
|
3072
|
-
'web'
|
|
3073
|
-
],
|
|
3074
|
-
summary: 'nav',
|
|
3075
|
-
parameters: [
|
|
3076
|
-
{
|
|
3077
|
-
name: 'class',
|
|
3078
|
-
in: 'query',
|
|
3079
|
-
description: '',
|
|
3080
|
-
schema: {
|
|
3081
|
-
type: 'string'
|
|
3082
|
-
}
|
|
3083
|
-
}
|
|
3084
|
-
]
|
|
3085
|
-
}
|
|
3086
|
-
},
|
|
3087
|
-
'/a': {
|
|
3088
|
-
post: {
|
|
3089
|
-
tags: [
|
|
3090
|
-
'needPins',
|
|
3091
|
-
'web'
|
|
3092
|
-
],
|
|
3093
|
-
summary: 'a',
|
|
3094
|
-
parameters: [
|
|
3095
|
-
{
|
|
3096
|
-
name: 'class',
|
|
3097
|
-
in: 'query',
|
|
3098
|
-
description: '',
|
|
3099
|
-
schema: {
|
|
3100
|
-
type: 'string'
|
|
3101
|
-
}
|
|
3102
|
-
},
|
|
3103
|
-
{
|
|
3104
|
-
name: 'href',
|
|
3105
|
-
in: 'query',
|
|
3106
|
-
description: '',
|
|
3107
|
-
schema: {
|
|
3108
|
-
type: 'string'
|
|
3109
|
-
}
|
|
3110
|
-
},
|
|
3111
|
-
{
|
|
3112
|
-
name: 'textContent',
|
|
3113
|
-
in: 'query',
|
|
3114
|
-
description: '',
|
|
3115
|
-
schema: {
|
|
3116
|
-
type: 'string'
|
|
3117
|
-
}
|
|
3118
|
-
},
|
|
3119
|
-
{
|
|
3120
|
-
name: 'id',
|
|
3121
|
-
in: 'query',
|
|
3122
|
-
description: '',
|
|
3123
|
-
schema: {
|
|
3124
|
-
type: 'string'
|
|
3125
|
-
}
|
|
3126
|
-
},
|
|
3127
|
-
{
|
|
3128
|
-
name: 'role',
|
|
3129
|
-
in: 'query',
|
|
3130
|
-
description: '',
|
|
3131
|
-
schema: {
|
|
3132
|
-
type: 'string'
|
|
3133
|
-
}
|
|
3134
|
-
},
|
|
3135
|
-
{
|
|
3136
|
-
name: 'data-toggle',
|
|
3137
|
-
in: 'query',
|
|
3138
|
-
description: '',
|
|
3139
|
-
schema: {
|
|
3140
|
-
type: 'string'
|
|
3141
|
-
}
|
|
3142
|
-
},
|
|
3143
|
-
{
|
|
3144
|
-
name: 'aria-haspopup',
|
|
3145
|
-
in: 'query',
|
|
3146
|
-
description: '',
|
|
3147
|
-
schema: {
|
|
3148
|
-
type: 'string'
|
|
3149
|
-
}
|
|
3150
|
-
},
|
|
3151
|
-
{
|
|
3152
|
-
name: 'aria-expanded',
|
|
3153
|
-
in: 'query',
|
|
3154
|
-
description: '',
|
|
3155
|
-
schema: {
|
|
3156
|
-
type: 'string'
|
|
3157
|
-
}
|
|
3158
|
-
}
|
|
3159
|
-
],
|
|
3160
|
-
'x-events': [
|
|
3161
|
-
{
|
|
3162
|
-
name: 'click',
|
|
3163
|
-
summary: "Clique sur l'élément",
|
|
3164
|
-
required: false,
|
|
3165
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3166
|
-
schema: {
|
|
3167
|
-
type: 'array',
|
|
3168
|
-
items: {
|
|
3169
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3170
|
-
}
|
|
3171
|
-
}
|
|
3172
|
-
}
|
|
3173
|
-
]
|
|
3174
|
-
}
|
|
3175
|
-
},
|
|
3176
|
-
'/button': {
|
|
3177
|
-
post: {
|
|
3178
|
-
tags: [
|
|
3179
|
-
'needPins',
|
|
3180
|
-
'web'
|
|
3181
|
-
],
|
|
3182
|
-
summary: 'button',
|
|
3183
|
-
parameters: [
|
|
3184
|
-
{
|
|
3185
|
-
name: 'class',
|
|
3186
|
-
in: 'query',
|
|
3187
|
-
description: '',
|
|
3188
|
-
schema: {
|
|
3189
|
-
type: 'string'
|
|
3190
|
-
}
|
|
3191
|
-
},
|
|
3192
|
-
{
|
|
3193
|
-
name: 'type',
|
|
3194
|
-
in: 'query',
|
|
3195
|
-
description: '',
|
|
3196
|
-
schema: {
|
|
3197
|
-
type: 'string'
|
|
3198
|
-
}
|
|
3199
|
-
},
|
|
3200
|
-
{
|
|
3201
|
-
name: 'data-toggle',
|
|
3202
|
-
in: 'query',
|
|
3203
|
-
description: '',
|
|
3204
|
-
schema: {
|
|
3205
|
-
type: 'string'
|
|
3206
|
-
}
|
|
3207
|
-
},
|
|
3208
|
-
{
|
|
3209
|
-
name: 'data-target',
|
|
3210
|
-
in: 'query',
|
|
3211
|
-
description: '',
|
|
3212
|
-
schema: {
|
|
3213
|
-
type: 'string'
|
|
3214
|
-
}
|
|
3215
|
-
},
|
|
3216
|
-
{
|
|
3217
|
-
name: 'aria-controls',
|
|
3218
|
-
in: 'query',
|
|
3219
|
-
description: '',
|
|
3220
|
-
schema: {
|
|
3221
|
-
type: 'string'
|
|
3222
|
-
}
|
|
3223
|
-
},
|
|
3224
|
-
{
|
|
3225
|
-
name: 'aria-expanded',
|
|
3226
|
-
in: 'query',
|
|
3227
|
-
description: '',
|
|
3018
|
+
name: 'style',
|
|
3019
|
+
summary: 'Style CSS',
|
|
3020
|
+
description: 'Style de la section',
|
|
3228
3021
|
schema: {
|
|
3229
3022
|
type: 'string'
|
|
3230
3023
|
}
|
|
3231
3024
|
},
|
|
3232
|
-
{
|
|
3233
|
-
name: 'aria-label',
|
|
3234
|
-
in: 'query',
|
|
3235
|
-
description: '',
|
|
3236
|
-
schema: {
|
|
3237
|
-
type: 'string'
|
|
3238
|
-
}
|
|
3239
|
-
},
|
|
3240
|
-
{
|
|
3241
|
-
name: 'textContent',
|
|
3242
|
-
in: 'query',
|
|
3243
|
-
description: '',
|
|
3244
|
-
schema: {
|
|
3245
|
-
type: 'string'
|
|
3246
|
-
}
|
|
3247
|
-
}
|
|
3248
|
-
],
|
|
3249
|
-
'x-events': [
|
|
3250
|
-
{
|
|
3251
|
-
name: 'click',
|
|
3252
|
-
summary: "Clique sur l'élément",
|
|
3253
|
-
required: false,
|
|
3254
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3255
|
-
schema: {
|
|
3256
|
-
type: 'array',
|
|
3257
|
-
items: {
|
|
3258
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3259
|
-
}
|
|
3260
|
-
}
|
|
3261
|
-
}
|
|
3262
|
-
]
|
|
3263
|
-
}
|
|
3264
|
-
},
|
|
3265
|
-
'/span': {
|
|
3266
|
-
post: {
|
|
3267
|
-
tags: [
|
|
3268
|
-
'needPins',
|
|
3269
|
-
'web'
|
|
3270
|
-
],
|
|
3271
|
-
summary: 'span',
|
|
3272
|
-
parameters: [
|
|
3273
|
-
{
|
|
3274
|
-
name: 'class',
|
|
3275
|
-
in: 'query',
|
|
3276
|
-
description: '',
|
|
3277
|
-
schema: {
|
|
3278
|
-
type: 'string'
|
|
3279
|
-
}
|
|
3280
|
-
}
|
|
3281
|
-
],
|
|
3282
|
-
'x-events': [
|
|
3283
|
-
{
|
|
3284
|
-
name: 'click',
|
|
3285
|
-
summary: "Clique sur l'élément",
|
|
3286
|
-
required: false,
|
|
3287
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3288
|
-
schema: {
|
|
3289
|
-
type: 'array',
|
|
3290
|
-
items: {
|
|
3291
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3292
|
-
}
|
|
3293
|
-
}
|
|
3294
|
-
}
|
|
3295
|
-
]
|
|
3296
|
-
}
|
|
3297
|
-
},
|
|
3298
|
-
'/div': {
|
|
3299
|
-
post: {
|
|
3300
|
-
tags: [
|
|
3301
|
-
'needPins',
|
|
3302
|
-
'web'
|
|
3303
|
-
],
|
|
3304
|
-
summary: 'div',
|
|
3305
|
-
parameters: [
|
|
3306
3025
|
{
|
|
3307
3026
|
name: 'class',
|
|
3308
|
-
|
|
3309
|
-
description: '',
|
|
3027
|
+
summary: 'Classe CSS',
|
|
3028
|
+
description: 'Classe de la section',
|
|
3310
3029
|
schema: {
|
|
3311
3030
|
type: 'string'
|
|
3312
3031
|
}
|
|
3313
3032
|
},
|
|
3314
3033
|
{
|
|
3315
3034
|
name: 'id',
|
|
3316
|
-
|
|
3317
|
-
description: '',
|
|
3035
|
+
summary: 'Identifiant',
|
|
3036
|
+
description: 'Identifiant de la section',
|
|
3318
3037
|
schema: {
|
|
3319
3038
|
type: 'string'
|
|
3320
3039
|
}
|
|
3321
|
-
},
|
|
3322
|
-
{
|
|
3323
|
-
name: 'aria-labelledby',
|
|
3324
|
-
in: 'query',
|
|
3325
|
-
description: '',
|
|
3326
|
-
schema: {
|
|
3327
|
-
type: 'string'
|
|
3328
|
-
}
|
|
3329
|
-
}
|
|
3330
|
-
],
|
|
3331
|
-
'x-events': [
|
|
3332
|
-
{
|
|
3333
|
-
name: 'click',
|
|
3334
|
-
summary: "Clique sur l'élément",
|
|
3335
|
-
required: false,
|
|
3336
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3337
|
-
schema: {
|
|
3338
|
-
type: 'array',
|
|
3339
|
-
items: {
|
|
3340
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3341
|
-
}
|
|
3342
|
-
}
|
|
3343
|
-
}
|
|
3344
|
-
]
|
|
3345
|
-
}
|
|
3346
|
-
},
|
|
3347
|
-
'/ul': {
|
|
3348
|
-
post: {
|
|
3349
|
-
tags: [
|
|
3350
|
-
'needPins',
|
|
3351
|
-
'web'
|
|
3352
|
-
],
|
|
3353
|
-
summary: 'ul',
|
|
3354
|
-
parameters: [
|
|
3355
|
-
{
|
|
3356
|
-
name: 'class',
|
|
3357
|
-
in: 'query',
|
|
3358
|
-
description: '',
|
|
3359
|
-
schema: {
|
|
3360
|
-
type: 'string'
|
|
3361
|
-
}
|
|
3362
|
-
}
|
|
3363
|
-
],
|
|
3364
|
-
'x-events': [
|
|
3365
|
-
{
|
|
3366
|
-
name: 'click',
|
|
3367
|
-
summary: "Clique sur l'élément",
|
|
3368
|
-
required: false,
|
|
3369
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3370
|
-
schema: {
|
|
3371
|
-
type: 'array',
|
|
3372
|
-
items: {
|
|
3373
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3374
|
-
}
|
|
3375
|
-
}
|
|
3376
|
-
}
|
|
3377
|
-
]
|
|
3378
|
-
}
|
|
3379
|
-
},
|
|
3380
|
-
'/li': {
|
|
3381
|
-
post: {
|
|
3382
|
-
tags: [
|
|
3383
|
-
'needPins',
|
|
3384
|
-
'web'
|
|
3385
|
-
],
|
|
3386
|
-
summary: 'li',
|
|
3387
|
-
parameters: [
|
|
3388
|
-
{
|
|
3389
|
-
name: 'class',
|
|
3390
|
-
in: 'query',
|
|
3391
|
-
description: '',
|
|
3392
|
-
schema: {
|
|
3393
|
-
type: 'string'
|
|
3394
|
-
}
|
|
3395
|
-
}
|
|
3396
|
-
],
|
|
3397
|
-
'x-events': [
|
|
3398
|
-
{
|
|
3399
|
-
name: 'click',
|
|
3400
|
-
summary: "Clique sur l'élément",
|
|
3401
|
-
required: false,
|
|
3402
|
-
description: "Action déclenchée lors du click sur l'élément",
|
|
3403
|
-
schema: {
|
|
3404
|
-
type: 'array',
|
|
3405
|
-
items: {
|
|
3406
|
-
$ref: 'https://www.pinser.world/schemas/pinsSettings'
|
|
3407
|
-
}
|
|
3408
|
-
}
|
|
3409
3040
|
}
|
|
3410
3041
|
]
|
|
3411
3042
|
}
|
|
@@ -13,207 +13,11 @@ export declare const schemas: {
|
|
|
13
13
|
tags: string[];
|
|
14
14
|
summary: string;
|
|
15
15
|
parameters: {
|
|
16
|
-
name: string;
|
|
17
|
-
in: string;
|
|
18
|
-
description: string;
|
|
19
|
-
schema: {
|
|
20
|
-
type: string;
|
|
21
|
-
};
|
|
22
|
-
}[];
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
'/h1': {
|
|
26
|
-
post: {
|
|
27
|
-
tags: string[];
|
|
28
|
-
summary: string;
|
|
29
|
-
parameters: {
|
|
30
|
-
name: string;
|
|
31
|
-
in: string;
|
|
32
|
-
description: string;
|
|
33
|
-
schema: {
|
|
34
|
-
type: string;
|
|
35
|
-
};
|
|
36
|
-
}[];
|
|
37
|
-
'x-events': {
|
|
38
|
-
name: string;
|
|
39
|
-
summary: string;
|
|
40
|
-
required: boolean;
|
|
41
|
-
description: string;
|
|
42
|
-
schema: {
|
|
43
|
-
type: string;
|
|
44
|
-
items: {
|
|
45
|
-
$ref: string;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
48
|
-
}[];
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
'/nav': {
|
|
52
|
-
post: {
|
|
53
|
-
tags: string[];
|
|
54
|
-
summary: string;
|
|
55
|
-
parameters: {
|
|
56
|
-
name: string;
|
|
57
|
-
in: string;
|
|
58
|
-
description: string;
|
|
59
|
-
schema: {
|
|
60
|
-
type: string;
|
|
61
|
-
};
|
|
62
|
-
}[];
|
|
63
|
-
};
|
|
64
|
-
};
|
|
65
|
-
'/a': {
|
|
66
|
-
post: {
|
|
67
|
-
tags: string[];
|
|
68
|
-
summary: string;
|
|
69
|
-
parameters: {
|
|
70
|
-
name: string;
|
|
71
|
-
in: string;
|
|
72
|
-
description: string;
|
|
73
|
-
schema: {
|
|
74
|
-
type: string;
|
|
75
|
-
};
|
|
76
|
-
}[];
|
|
77
|
-
'x-events': {
|
|
78
|
-
name: string;
|
|
79
|
-
summary: string;
|
|
80
|
-
required: boolean;
|
|
81
|
-
description: string;
|
|
82
|
-
schema: {
|
|
83
|
-
type: string;
|
|
84
|
-
items: {
|
|
85
|
-
$ref: string;
|
|
86
|
-
};
|
|
87
|
-
};
|
|
88
|
-
}[];
|
|
89
|
-
};
|
|
90
|
-
};
|
|
91
|
-
'/button': {
|
|
92
|
-
post: {
|
|
93
|
-
tags: string[];
|
|
94
|
-
summary: string;
|
|
95
|
-
parameters: {
|
|
96
|
-
name: string;
|
|
97
|
-
in: string;
|
|
98
|
-
description: string;
|
|
99
|
-
schema: {
|
|
100
|
-
type: string;
|
|
101
|
-
};
|
|
102
|
-
}[];
|
|
103
|
-
'x-events': {
|
|
104
|
-
name: string;
|
|
105
|
-
summary: string;
|
|
106
|
-
required: boolean;
|
|
107
|
-
description: string;
|
|
108
|
-
schema: {
|
|
109
|
-
type: string;
|
|
110
|
-
items: {
|
|
111
|
-
$ref: string;
|
|
112
|
-
};
|
|
113
|
-
};
|
|
114
|
-
}[];
|
|
115
|
-
};
|
|
116
|
-
};
|
|
117
|
-
'/span': {
|
|
118
|
-
post: {
|
|
119
|
-
tags: string[];
|
|
120
|
-
summary: string;
|
|
121
|
-
parameters: {
|
|
122
|
-
name: string;
|
|
123
|
-
in: string;
|
|
124
|
-
description: string;
|
|
125
|
-
schema: {
|
|
126
|
-
type: string;
|
|
127
|
-
};
|
|
128
|
-
}[];
|
|
129
|
-
'x-events': {
|
|
130
|
-
name: string;
|
|
131
|
-
summary: string;
|
|
132
|
-
required: boolean;
|
|
133
|
-
description: string;
|
|
134
|
-
schema: {
|
|
135
|
-
type: string;
|
|
136
|
-
items: {
|
|
137
|
-
$ref: string;
|
|
138
|
-
};
|
|
139
|
-
};
|
|
140
|
-
}[];
|
|
141
|
-
};
|
|
142
|
-
};
|
|
143
|
-
'/div': {
|
|
144
|
-
post: {
|
|
145
|
-
tags: string[];
|
|
146
|
-
summary: string;
|
|
147
|
-
parameters: {
|
|
148
|
-
name: string;
|
|
149
|
-
in: string;
|
|
150
|
-
description: string;
|
|
151
|
-
schema: {
|
|
152
|
-
type: string;
|
|
153
|
-
};
|
|
154
|
-
}[];
|
|
155
|
-
'x-events': {
|
|
156
|
-
name: string;
|
|
157
|
-
summary: string;
|
|
158
|
-
required: boolean;
|
|
159
|
-
description: string;
|
|
160
|
-
schema: {
|
|
161
|
-
type: string;
|
|
162
|
-
items: {
|
|
163
|
-
$ref: string;
|
|
164
|
-
};
|
|
165
|
-
};
|
|
166
|
-
}[];
|
|
167
|
-
};
|
|
168
|
-
};
|
|
169
|
-
'/ul': {
|
|
170
|
-
post: {
|
|
171
|
-
tags: string[];
|
|
172
|
-
summary: string;
|
|
173
|
-
parameters: {
|
|
174
|
-
name: string;
|
|
175
|
-
in: string;
|
|
176
|
-
description: string;
|
|
177
|
-
schema: {
|
|
178
|
-
type: string;
|
|
179
|
-
};
|
|
180
|
-
}[];
|
|
181
|
-
'x-events': {
|
|
182
|
-
name: string;
|
|
183
|
-
summary: string;
|
|
184
|
-
required: boolean;
|
|
185
|
-
description: string;
|
|
186
|
-
schema: {
|
|
187
|
-
type: string;
|
|
188
|
-
items: {
|
|
189
|
-
$ref: string;
|
|
190
|
-
};
|
|
191
|
-
};
|
|
192
|
-
}[];
|
|
193
|
-
};
|
|
194
|
-
};
|
|
195
|
-
'/li': {
|
|
196
|
-
post: {
|
|
197
|
-
tags: string[];
|
|
198
|
-
summary: string;
|
|
199
|
-
parameters: {
|
|
200
|
-
name: string;
|
|
201
|
-
in: string;
|
|
202
|
-
description: string;
|
|
203
|
-
schema: {
|
|
204
|
-
type: string;
|
|
205
|
-
};
|
|
206
|
-
}[];
|
|
207
|
-
'x-events': {
|
|
208
16
|
name: string;
|
|
209
17
|
summary: string;
|
|
210
|
-
required: boolean;
|
|
211
18
|
description: string;
|
|
212
19
|
schema: {
|
|
213
20
|
type: string;
|
|
214
|
-
items: {
|
|
215
|
-
$ref: string;
|
|
216
|
-
};
|
|
217
21
|
};
|
|
218
22
|
}[];
|
|
219
23
|
};
|