vueless 0.0.413 → 0.0.415
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/package.json +1 -1
- package/ui.dropdown-list/UDropdownList.vue +2 -2
- package/ui.form-calendar/UCalendar.vue +9 -9
- package/ui.form-calendar/UCalendarMonthView.vue +3 -1
- package/ui.form-calendar/UCalendarYearView.vue +3 -1
- package/ui.form-date-picker/UDatePicker.vue +54 -54
- package/ui.form-date-picker/config.js +1 -1
- package/ui.form-date-picker/storybook/Docs.mdx +3 -2
- package/ui.form-date-picker-range/UDatePickerRange.vue +20 -19
- package/ui.form-date-picker-range/UDatePickerRangePeriodMenu.vue +3 -3
- package/ui.form-date-picker-range/config.js +12 -8
- package/ui.form-date-picker-range/storybook/stories.js +11 -16
- package/ui.form-select/USelect.vue +28 -25
- package/ui.form-select/config.js +7 -6
- package/ui.form-select/storybook/stories.js +2 -2
- package/ui.form-select/useAttrs.js +16 -8
- package/web-types.json +103 -100
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
3
|
"name": "vueless",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.415",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -889,7 +889,7 @@
|
|
|
889
889
|
"attributes": [
|
|
890
890
|
{
|
|
891
891
|
"name": "modelValue",
|
|
892
|
-
"description": "Calendar value
|
|
892
|
+
"description": "Calendar value (JavaScript Date object or string formatted in given `dateFormat`).",
|
|
893
893
|
"value": {
|
|
894
894
|
"kind": "expression",
|
|
895
895
|
"type": "string|object"
|
|
@@ -898,7 +898,7 @@
|
|
|
898
898
|
},
|
|
899
899
|
{
|
|
900
900
|
"name": "view",
|
|
901
|
-
"description": "Calendar view.",
|
|
901
|
+
"description": "Calendar view variant.",
|
|
902
902
|
"value": {
|
|
903
903
|
"kind": "expression",
|
|
904
904
|
"type": "'day' | 'month' | 'year'"
|
|
@@ -907,7 +907,7 @@
|
|
|
907
907
|
},
|
|
908
908
|
{
|
|
909
909
|
"name": "range",
|
|
910
|
-
"description": "Enable range selection.",
|
|
910
|
+
"description": "Enable date range selection.",
|
|
911
911
|
"value": {
|
|
912
912
|
"kind": "expression",
|
|
913
913
|
"type": "boolean"
|
|
@@ -916,7 +916,7 @@
|
|
|
916
916
|
},
|
|
917
917
|
{
|
|
918
918
|
"name": "timepicker",
|
|
919
|
-
"description": "
|
|
919
|
+
"description": "Show timepicker.",
|
|
920
920
|
"value": {
|
|
921
921
|
"kind": "expression",
|
|
922
922
|
"type": "boolean"
|
|
@@ -925,7 +925,7 @@
|
|
|
925
925
|
},
|
|
926
926
|
{
|
|
927
927
|
"name": "dateFormat",
|
|
928
|
-
"description": "Date format.",
|
|
928
|
+
"description": "Date string format.",
|
|
929
929
|
"value": {
|
|
930
930
|
"kind": "expression",
|
|
931
931
|
"type": "string"
|
|
@@ -941,7 +941,7 @@
|
|
|
941
941
|
},
|
|
942
942
|
{
|
|
943
943
|
"name": "userDateFormat",
|
|
944
|
-
"description": "User
|
|
944
|
+
"description": "User-friendly date format (it will be shown in UI).",
|
|
945
945
|
"value": {
|
|
946
946
|
"kind": "expression",
|
|
947
947
|
"type": "string"
|
|
@@ -959,7 +959,7 @@
|
|
|
959
959
|
},
|
|
960
960
|
{
|
|
961
961
|
"name": "minDate",
|
|
962
|
-
"description": "Min date
|
|
962
|
+
"description": "Min date (JavaScript Date object or string formatted in given `dateFormat`).",
|
|
963
963
|
"value": {
|
|
964
964
|
"kind": "expression",
|
|
965
965
|
"type": "date|string"
|
|
@@ -967,7 +967,7 @@
|
|
|
967
967
|
},
|
|
968
968
|
{
|
|
969
969
|
"name": "maxDate",
|
|
970
|
-
"description": "Max date
|
|
970
|
+
"description": "Max date (JavaScript Date object or string formatted in given `dateFormat`).",
|
|
971
971
|
"value": {
|
|
972
972
|
"kind": "expression",
|
|
973
973
|
"type": "date|string"
|
|
@@ -1039,7 +1039,7 @@
|
|
|
1039
1039
|
},
|
|
1040
1040
|
{
|
|
1041
1041
|
"name": "userDateChange",
|
|
1042
|
-
"description": "Triggers when the date input value
|
|
1042
|
+
"description": "Triggers when the user changes the date input value.",
|
|
1043
1043
|
"properties": [
|
|
1044
1044
|
{
|
|
1045
1045
|
"type": [
|
|
@@ -2319,6 +2319,15 @@
|
|
|
2319
2319
|
"name": "UDatePicker",
|
|
2320
2320
|
"description": "",
|
|
2321
2321
|
"attributes": [
|
|
2322
|
+
{
|
|
2323
|
+
"name": "modelValue",
|
|
2324
|
+
"description": "Datepicker value (JavaScript Date object or string formatted in given `dateFormat`).",
|
|
2325
|
+
"value": {
|
|
2326
|
+
"kind": "expression",
|
|
2327
|
+
"type": "object|string"
|
|
2328
|
+
},
|
|
2329
|
+
"default": "null"
|
|
2330
|
+
},
|
|
2322
2331
|
{
|
|
2323
2332
|
"name": "label",
|
|
2324
2333
|
"description": "Datepicker label.",
|
|
@@ -2330,7 +2339,7 @@
|
|
|
2330
2339
|
},
|
|
2331
2340
|
{
|
|
2332
2341
|
"name": "labelAlign",
|
|
2333
|
-
"description": "
|
|
2342
|
+
"description": "Datepicker label placement.",
|
|
2334
2343
|
"value": {
|
|
2335
2344
|
"kind": "expression",
|
|
2336
2345
|
"type": "'top' | 'topInside' | 'topWithDesc' | 'left' | 'right'"
|
|
@@ -2347,13 +2356,31 @@
|
|
|
2347
2356
|
"default": "\"\""
|
|
2348
2357
|
},
|
|
2349
2358
|
{
|
|
2350
|
-
"name": "
|
|
2351
|
-
"description": "Datepicker
|
|
2359
|
+
"name": "description",
|
|
2360
|
+
"description": "Datepicker description.",
|
|
2352
2361
|
"value": {
|
|
2353
2362
|
"kind": "expression",
|
|
2354
|
-
"type": "
|
|
2363
|
+
"type": "string"
|
|
2355
2364
|
},
|
|
2356
|
-
"default": "
|
|
2365
|
+
"default": "\"\""
|
|
2366
|
+
},
|
|
2367
|
+
{
|
|
2368
|
+
"name": "error",
|
|
2369
|
+
"description": "Datepicker error message.",
|
|
2370
|
+
"value": {
|
|
2371
|
+
"kind": "expression",
|
|
2372
|
+
"type": "string"
|
|
2373
|
+
},
|
|
2374
|
+
"default": "\"\""
|
|
2375
|
+
},
|
|
2376
|
+
{
|
|
2377
|
+
"name": "size",
|
|
2378
|
+
"description": "Datepicker size.",
|
|
2379
|
+
"value": {
|
|
2380
|
+
"kind": "expression",
|
|
2381
|
+
"type": "'sm' | 'md' | 'lg'"
|
|
2382
|
+
},
|
|
2383
|
+
"default": "md"
|
|
2357
2384
|
},
|
|
2358
2385
|
{
|
|
2359
2386
|
"name": "openDirectionX",
|
|
@@ -2375,7 +2402,7 @@
|
|
|
2375
2402
|
},
|
|
2376
2403
|
{
|
|
2377
2404
|
"name": "minDate",
|
|
2378
|
-
"description": "Min date
|
|
2405
|
+
"description": "Min date (JavaScript Date object or string formatted in given `dateFormat`).",
|
|
2379
2406
|
"value": {
|
|
2380
2407
|
"kind": "expression",
|
|
2381
2408
|
"type": "string|date"
|
|
@@ -2383,56 +2410,45 @@
|
|
|
2383
2410
|
},
|
|
2384
2411
|
{
|
|
2385
2412
|
"name": "maxDate",
|
|
2386
|
-
"description": "Max date
|
|
2413
|
+
"description": "Max date (JavaScript Date object or string formatted in given `dateFormat`).",
|
|
2387
2414
|
"value": {
|
|
2388
2415
|
"kind": "expression",
|
|
2389
2416
|
"type": "string|date"
|
|
2390
2417
|
}
|
|
2391
2418
|
},
|
|
2392
2419
|
{
|
|
2393
|
-
"name": "
|
|
2394
|
-
"description": "
|
|
2395
|
-
"value": {
|
|
2396
|
-
"kind": "expression",
|
|
2397
|
-
"type": "boolean"
|
|
2398
|
-
},
|
|
2399
|
-
"default": "false"
|
|
2400
|
-
},
|
|
2401
|
-
{
|
|
2402
|
-
"name": "timepicker",
|
|
2403
|
-
"description": "Enable timepicker.",
|
|
2420
|
+
"name": "dateFormat",
|
|
2421
|
+
"description": "Date string format.",
|
|
2404
2422
|
"value": {
|
|
2405
2423
|
"kind": "expression",
|
|
2406
|
-
"type": "
|
|
2407
|
-
}
|
|
2408
|
-
"default": "false"
|
|
2424
|
+
"type": "string"
|
|
2425
|
+
}
|
|
2409
2426
|
},
|
|
2410
2427
|
{
|
|
2411
|
-
"name": "
|
|
2412
|
-
"description": "
|
|
2428
|
+
"name": "dateTimeFormat",
|
|
2429
|
+
"description": "Same as date format, but used when timepicker is enabled.",
|
|
2413
2430
|
"value": {
|
|
2414
2431
|
"kind": "expression",
|
|
2415
2432
|
"type": "string"
|
|
2416
|
-
}
|
|
2417
|
-
"default": "\"\""
|
|
2433
|
+
}
|
|
2418
2434
|
},
|
|
2419
2435
|
{
|
|
2420
|
-
"name": "
|
|
2421
|
-
"description": "
|
|
2436
|
+
"name": "userDateFormat",
|
|
2437
|
+
"description": "User-friendly date format (it will be shown in UI).",
|
|
2422
2438
|
"value": {
|
|
2423
2439
|
"kind": "expression",
|
|
2424
2440
|
"type": "string"
|
|
2425
2441
|
},
|
|
2426
|
-
"default": "
|
|
2442
|
+
"default": "j F, Y"
|
|
2427
2443
|
},
|
|
2428
2444
|
{
|
|
2429
|
-
"name": "
|
|
2430
|
-
"description": "
|
|
2445
|
+
"name": "userDateTimeFormat",
|
|
2446
|
+
"description": "Same as user format, but used when timepicker is enabled.",
|
|
2431
2447
|
"value": {
|
|
2432
2448
|
"kind": "expression",
|
|
2433
|
-
"type": "
|
|
2449
|
+
"type": "string"
|
|
2434
2450
|
},
|
|
2435
|
-
"default": "
|
|
2451
|
+
"default": "j F, Y - H:i:S"
|
|
2436
2452
|
},
|
|
2437
2453
|
{
|
|
2438
2454
|
"name": "leftIcon",
|
|
@@ -2453,38 +2469,22 @@
|
|
|
2453
2469
|
"default": "\"\""
|
|
2454
2470
|
},
|
|
2455
2471
|
{
|
|
2456
|
-
"name": "
|
|
2457
|
-
"description": "
|
|
2458
|
-
"value": {
|
|
2459
|
-
"kind": "expression",
|
|
2460
|
-
"type": "string"
|
|
2461
|
-
}
|
|
2462
|
-
},
|
|
2463
|
-
{
|
|
2464
|
-
"name": "dateTimeFormat",
|
|
2465
|
-
"description": "Same as date format, but used when timepicker is enabled.",
|
|
2466
|
-
"value": {
|
|
2467
|
-
"kind": "expression",
|
|
2468
|
-
"type": "string"
|
|
2469
|
-
}
|
|
2470
|
-
},
|
|
2471
|
-
{
|
|
2472
|
-
"name": "userDateFormat",
|
|
2473
|
-
"description": "User friendly date format.",
|
|
2472
|
+
"name": "disabled",
|
|
2473
|
+
"description": "Make datepicker disabled.",
|
|
2474
2474
|
"value": {
|
|
2475
2475
|
"kind": "expression",
|
|
2476
|
-
"type": "
|
|
2476
|
+
"type": "boolean"
|
|
2477
2477
|
},
|
|
2478
|
-
"default": "
|
|
2478
|
+
"default": "false"
|
|
2479
2479
|
},
|
|
2480
2480
|
{
|
|
2481
|
-
"name": "
|
|
2482
|
-
"description": "
|
|
2481
|
+
"name": "timepicker",
|
|
2482
|
+
"description": "Show timepicker.",
|
|
2483
2483
|
"value": {
|
|
2484
2484
|
"kind": "expression",
|
|
2485
|
-
"type": "
|
|
2485
|
+
"type": "boolean"
|
|
2486
2486
|
},
|
|
2487
|
-
"default": "
|
|
2487
|
+
"default": "false"
|
|
2488
2488
|
},
|
|
2489
2489
|
{
|
|
2490
2490
|
"name": "id",
|
|
@@ -2569,7 +2569,7 @@
|
|
|
2569
2569
|
"attributes": [
|
|
2570
2570
|
{
|
|
2571
2571
|
"name": "modelValue",
|
|
2572
|
-
"description": "Datepicker value
|
|
2572
|
+
"description": "Datepicker value (JavaScript Date object or string formatted in given `dateFormat`).",
|
|
2573
2573
|
"value": {
|
|
2574
2574
|
"kind": "expression",
|
|
2575
2575
|
"type": "object"
|
|
@@ -2614,7 +2614,7 @@
|
|
|
2614
2614
|
},
|
|
2615
2615
|
{
|
|
2616
2616
|
"name": "minDate",
|
|
2617
|
-
"description": "Min date
|
|
2617
|
+
"description": "Min date (JavaScript Date object or string formatted in given `dateFormat`).",
|
|
2618
2618
|
"value": {
|
|
2619
2619
|
"kind": "expression",
|
|
2620
2620
|
"type": "string|date"
|
|
@@ -2622,12 +2622,20 @@
|
|
|
2622
2622
|
},
|
|
2623
2623
|
{
|
|
2624
2624
|
"name": "maxDate",
|
|
2625
|
-
"description": "Max date
|
|
2625
|
+
"description": "Max date (JavaScript Date object or string formatted in given `dateFormat`).",
|
|
2626
2626
|
"value": {
|
|
2627
2627
|
"kind": "expression",
|
|
2628
2628
|
"type": "string|date"
|
|
2629
2629
|
}
|
|
2630
2630
|
},
|
|
2631
|
+
{
|
|
2632
|
+
"name": "dateFormat",
|
|
2633
|
+
"description": "Date string format.",
|
|
2634
|
+
"value": {
|
|
2635
|
+
"kind": "expression",
|
|
2636
|
+
"type": "string"
|
|
2637
|
+
}
|
|
2638
|
+
},
|
|
2631
2639
|
{
|
|
2632
2640
|
"name": "size",
|
|
2633
2641
|
"description": "Datepicker size.",
|
|
@@ -2657,7 +2665,7 @@
|
|
|
2657
2665
|
},
|
|
2658
2666
|
{
|
|
2659
2667
|
"name": "label",
|
|
2660
|
-
"description": "Label text for input type.",
|
|
2668
|
+
"description": "Label text for an input type.",
|
|
2661
2669
|
"value": {
|
|
2662
2670
|
"kind": "expression",
|
|
2663
2671
|
"type": "string"
|
|
@@ -2666,7 +2674,7 @@
|
|
|
2666
2674
|
},
|
|
2667
2675
|
{
|
|
2668
2676
|
"name": "placeholder",
|
|
2669
|
-
"description": "Input placeholder for input type.",
|
|
2677
|
+
"description": "Input placeholder for an input type.",
|
|
2670
2678
|
"value": {
|
|
2671
2679
|
"kind": "expression",
|
|
2672
2680
|
"type": "string"
|
|
@@ -2675,7 +2683,7 @@
|
|
|
2675
2683
|
},
|
|
2676
2684
|
{
|
|
2677
2685
|
"name": "description",
|
|
2678
|
-
"description": "Datepicker description for input type.",
|
|
2686
|
+
"description": "Datepicker description for an input type.",
|
|
2679
2687
|
"value": {
|
|
2680
2688
|
"kind": "expression",
|
|
2681
2689
|
"type": "string"
|
|
@@ -2684,7 +2692,7 @@
|
|
|
2684
2692
|
},
|
|
2685
2693
|
{
|
|
2686
2694
|
"name": "error",
|
|
2687
|
-
"description": "Error message for input type.",
|
|
2695
|
+
"description": "Error message for an input type.",
|
|
2688
2696
|
"value": {
|
|
2689
2697
|
"kind": "expression",
|
|
2690
2698
|
"type": "string"
|
|
@@ -2700,14 +2708,6 @@
|
|
|
2700
2708
|
},
|
|
2701
2709
|
"default": "false"
|
|
2702
2710
|
},
|
|
2703
|
-
{
|
|
2704
|
-
"name": "dateFormat",
|
|
2705
|
-
"description": "Date format.",
|
|
2706
|
-
"value": {
|
|
2707
|
-
"kind": "expression",
|
|
2708
|
-
"type": "string"
|
|
2709
|
-
}
|
|
2710
|
-
},
|
|
2711
2711
|
{
|
|
2712
2712
|
"name": "id",
|
|
2713
2713
|
"description": "Unique element id.",
|
|
@@ -2743,9 +2743,9 @@
|
|
|
2743
2743
|
"properties": [
|
|
2744
2744
|
{
|
|
2745
2745
|
"type": [
|
|
2746
|
-
"
|
|
2746
|
+
"object"
|
|
2747
2747
|
],
|
|
2748
|
-
"name": "
|
|
2748
|
+
"name": "range"
|
|
2749
2749
|
}
|
|
2750
2750
|
]
|
|
2751
2751
|
}
|
|
@@ -3715,7 +3715,7 @@
|
|
|
3715
3715
|
],
|
|
3716
3716
|
"events": [
|
|
3717
3717
|
{
|
|
3718
|
-
"name": "
|
|
3718
|
+
"name": "add",
|
|
3719
3719
|
"description": "Triggers when option is added."
|
|
3720
3720
|
},
|
|
3721
3721
|
{
|
|
@@ -7617,13 +7617,13 @@
|
|
|
7617
7617
|
"default": "8"
|
|
7618
7618
|
},
|
|
7619
7619
|
{
|
|
7620
|
-
"name": "
|
|
7620
|
+
"name": "clearable",
|
|
7621
7621
|
"description": "Allow clearing selected value.",
|
|
7622
7622
|
"value": {
|
|
7623
7623
|
"kind": "expression",
|
|
7624
7624
|
"type": "boolean"
|
|
7625
7625
|
},
|
|
7626
|
-
"default": "
|
|
7626
|
+
"default": "true"
|
|
7627
7627
|
},
|
|
7628
7628
|
{
|
|
7629
7629
|
"name": "multiple",
|
|
@@ -7692,7 +7692,7 @@
|
|
|
7692
7692
|
"events": [
|
|
7693
7693
|
{
|
|
7694
7694
|
"name": "open",
|
|
7695
|
-
"description": "Triggers when dropdown list is opened.",
|
|
7695
|
+
"description": "Triggers when a dropdown list is opened.",
|
|
7696
7696
|
"properties": [
|
|
7697
7697
|
{
|
|
7698
7698
|
"type": [
|
|
@@ -7704,7 +7704,7 @@
|
|
|
7704
7704
|
},
|
|
7705
7705
|
{
|
|
7706
7706
|
"name": "close",
|
|
7707
|
-
"description": "Triggers when dropdown list is closed.",
|
|
7707
|
+
"description": "Triggers when a dropdown list is closed.",
|
|
7708
7708
|
"properties": [
|
|
7709
7709
|
{
|
|
7710
7710
|
"type": [
|
|
@@ -7716,7 +7716,7 @@
|
|
|
7716
7716
|
},
|
|
7717
7717
|
{
|
|
7718
7718
|
"name": "searchChange",
|
|
7719
|
-
"description": "Triggers when the
|
|
7719
|
+
"description": "Triggers when the search value is changed."
|
|
7720
7720
|
},
|
|
7721
7721
|
{
|
|
7722
7722
|
"name": "remove",
|
|
@@ -7749,8 +7749,8 @@
|
|
|
7749
7749
|
]
|
|
7750
7750
|
},
|
|
7751
7751
|
{
|
|
7752
|
-
"name": "
|
|
7753
|
-
"description": "Triggers
|
|
7752
|
+
"name": "add",
|
|
7753
|
+
"description": "Triggers on click on add new option button in the dropdown."
|
|
7754
7754
|
},
|
|
7755
7755
|
{
|
|
7756
7756
|
"name": "change",
|
|
@@ -7760,12 +7760,12 @@
|
|
|
7760
7760
|
"slots": [
|
|
7761
7761
|
{
|
|
7762
7762
|
"name": "right",
|
|
7763
|
-
"description": "Use it to add something
|
|
7763
|
+
"description": "Use it to add something right."
|
|
7764
7764
|
},
|
|
7765
7765
|
{
|
|
7766
7766
|
"name": "right-icon",
|
|
7767
7767
|
"scoped": true,
|
|
7768
|
-
"description": "Use it to add icon
|
|
7768
|
+
"description": "Use it to add icon right.",
|
|
7769
7769
|
"bindings": [
|
|
7770
7770
|
{
|
|
7771
7771
|
"type": "string",
|
|
@@ -7802,6 +7802,7 @@
|
|
|
7802
7802
|
"name": "icon-size"
|
|
7803
7803
|
},
|
|
7804
7804
|
{
|
|
7805
|
+
"type": "boolean",
|
|
7805
7806
|
"name": "opened"
|
|
7806
7807
|
}
|
|
7807
7808
|
]
|
|
@@ -7835,7 +7836,7 @@
|
|
|
7835
7836
|
{
|
|
7836
7837
|
"name": "left-icon",
|
|
7837
7838
|
"scoped": true,
|
|
7838
|
-
"description": "Use it to add icon
|
|
7839
|
+
"description": "Use it to add icon left.",
|
|
7839
7840
|
"bindings": [
|
|
7840
7841
|
{
|
|
7841
7842
|
"type": "string",
|
|
@@ -7849,12 +7850,12 @@
|
|
|
7849
7850
|
},
|
|
7850
7851
|
{
|
|
7851
7852
|
"name": "left",
|
|
7852
|
-
"description": "Use it to add something
|
|
7853
|
+
"description": "Use it to add something left."
|
|
7853
7854
|
},
|
|
7854
7855
|
{
|
|
7855
7856
|
"name": "selected-label",
|
|
7856
7857
|
"scoped": true,
|
|
7857
|
-
"description": "Use it to
|
|
7858
|
+
"description": "Use it to customise selected value label.",
|
|
7858
7859
|
"bindings": [
|
|
7859
7860
|
{
|
|
7860
7861
|
"type": "string",
|
|
@@ -7898,10 +7899,11 @@
|
|
|
7898
7899
|
"description": "Use it to add something before option.",
|
|
7899
7900
|
"bindings": [
|
|
7900
7901
|
{
|
|
7901
|
-
"type": "
|
|
7902
|
+
"type": "object",
|
|
7902
7903
|
"name": "option"
|
|
7903
7904
|
},
|
|
7904
7905
|
{
|
|
7906
|
+
"type": "number",
|
|
7905
7907
|
"name": "index"
|
|
7906
7908
|
}
|
|
7907
7909
|
]
|
|
@@ -7909,10 +7911,10 @@
|
|
|
7909
7911
|
{
|
|
7910
7912
|
"name": "option",
|
|
7911
7913
|
"scoped": true,
|
|
7912
|
-
"description": "Use it to
|
|
7914
|
+
"description": "Use it to customise the option.",
|
|
7913
7915
|
"bindings": [
|
|
7914
7916
|
{
|
|
7915
|
-
"type": "
|
|
7917
|
+
"type": "object",
|
|
7916
7918
|
"name": "option"
|
|
7917
7919
|
},
|
|
7918
7920
|
{
|
|
@@ -7927,10 +7929,11 @@
|
|
|
7927
7929
|
"description": "Use it to add something after option.",
|
|
7928
7930
|
"bindings": [
|
|
7929
7931
|
{
|
|
7930
|
-
"type": "
|
|
7932
|
+
"type": "object",
|
|
7931
7933
|
"name": "option"
|
|
7932
7934
|
},
|
|
7933
7935
|
{
|
|
7936
|
+
"type": "number",
|
|
7934
7937
|
"name": "index"
|
|
7935
7938
|
}
|
|
7936
7939
|
]
|