@evercam/ui 0.0.55-beta.39 → 0.0.55-beta.40
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/dist/attributes.json +143 -0
- package/dist/index.mjs +2490 -2171
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +12 -12
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/EGlobalSearch.vue.d.ts +29 -0
- package/dist/src/components/EInput.vue.d.ts +3 -0
- package/dist/src/components/EZoomable.vue.d.ts +1 -1
- package/dist/src/components/styles/input.d.ts +140 -0
- package/dist/src/constants.d.ts +1 -0
- package/dist/src/index.d.ts +26 -52
- package/dist/src/mixins/inactivity-listener.d.ts +6 -5
- package/dist/src/types.d.ts +11 -0
- package/dist/src/utils.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/styles.css +269 -4
- package/dist/tags.json +39 -0
- package/dist/web-types.json +281 -5
- package/package.json +1 -1
- package/dist/src/components/EExpandableMenu.vue.d.ts +0 -56
package/dist/attributes.json
CHANGED
|
@@ -481,5 +481,148 @@
|
|
|
481
481
|
"type": "string|number|boolean",
|
|
482
482
|
"description": "",
|
|
483
483
|
"default": null
|
|
484
|
+
},
|
|
485
|
+
"EInput/type": {
|
|
486
|
+
"type": "string",
|
|
487
|
+
"description": "",
|
|
488
|
+
"default": "text"
|
|
489
|
+
},
|
|
490
|
+
"EInput/dark": {
|
|
491
|
+
"type": "boolean",
|
|
492
|
+
"description": "",
|
|
493
|
+
"default": false
|
|
494
|
+
},
|
|
495
|
+
"EInput/id": {
|
|
496
|
+
"type": "string",
|
|
497
|
+
"description": "",
|
|
498
|
+
"default": null
|
|
499
|
+
},
|
|
500
|
+
"EInput/name": {
|
|
501
|
+
"type": "string",
|
|
502
|
+
"description": "",
|
|
503
|
+
"default": null
|
|
504
|
+
},
|
|
505
|
+
"EInput/placeholder": {
|
|
506
|
+
"type": "string",
|
|
507
|
+
"description": "",
|
|
508
|
+
"default": null
|
|
509
|
+
},
|
|
510
|
+
"EInput/required": {
|
|
511
|
+
"type": "boolean",
|
|
512
|
+
"description": "",
|
|
513
|
+
"default": false
|
|
514
|
+
},
|
|
515
|
+
"EInput/disabled": {
|
|
516
|
+
"type": "boolean",
|
|
517
|
+
"description": "",
|
|
518
|
+
"default": false
|
|
519
|
+
},
|
|
520
|
+
"EInput/autofocus": {
|
|
521
|
+
"type": "boolean",
|
|
522
|
+
"description": "",
|
|
523
|
+
"default": false
|
|
524
|
+
},
|
|
525
|
+
"EInput/autofocus-delay": {
|
|
526
|
+
"type": "number",
|
|
527
|
+
"description": "",
|
|
528
|
+
"default": 100
|
|
529
|
+
},
|
|
530
|
+
"EInput/icon": {
|
|
531
|
+
"type": "string",
|
|
532
|
+
"description": "",
|
|
533
|
+
"default": null
|
|
534
|
+
},
|
|
535
|
+
"EInput/trailing": {
|
|
536
|
+
"type": "boolean",
|
|
537
|
+
"description": "",
|
|
538
|
+
"default": false
|
|
539
|
+
},
|
|
540
|
+
"EInput/leading": {
|
|
541
|
+
"type": "boolean",
|
|
542
|
+
"description": "",
|
|
543
|
+
"default": false
|
|
544
|
+
},
|
|
545
|
+
"EInput/rounded": {
|
|
546
|
+
"type": "boolean",
|
|
547
|
+
"description": "",
|
|
548
|
+
"default": true
|
|
549
|
+
},
|
|
550
|
+
"EInput/loading": {
|
|
551
|
+
"type": "boolean",
|
|
552
|
+
"description": "",
|
|
553
|
+
"default": false
|
|
554
|
+
},
|
|
555
|
+
"EInput/loading-position": {
|
|
556
|
+
"type": "string",
|
|
557
|
+
"description": "",
|
|
558
|
+
"default": "right"
|
|
559
|
+
},
|
|
560
|
+
"EInput/padded": {
|
|
561
|
+
"type": "boolean",
|
|
562
|
+
"description": "",
|
|
563
|
+
"default": true
|
|
564
|
+
},
|
|
565
|
+
"EInput/size": {
|
|
566
|
+
"type": "string",
|
|
567
|
+
"description": "",
|
|
568
|
+
"default": "sm"
|
|
569
|
+
},
|
|
570
|
+
"EInput/color": {
|
|
571
|
+
"type": "string",
|
|
572
|
+
"description": "",
|
|
573
|
+
"default": "default"
|
|
574
|
+
},
|
|
575
|
+
"EInput/variant": {
|
|
576
|
+
"type": "string",
|
|
577
|
+
"description": ""
|
|
578
|
+
},
|
|
579
|
+
"EInput/input-class": {
|
|
580
|
+
"type": "string",
|
|
581
|
+
"description": "",
|
|
582
|
+
"default": null
|
|
583
|
+
},
|
|
584
|
+
"EInput/model-value": {
|
|
585
|
+
"type": "string|number",
|
|
586
|
+
"description": "",
|
|
587
|
+
"default": null
|
|
588
|
+
},
|
|
589
|
+
"EGlobalSearch/dark": {
|
|
590
|
+
"type": "boolean",
|
|
591
|
+
"description": "",
|
|
592
|
+
"default": false
|
|
593
|
+
},
|
|
594
|
+
"EGlobalSearch/items": {
|
|
595
|
+
"type": "array",
|
|
596
|
+
"description": ""
|
|
597
|
+
},
|
|
598
|
+
"EGlobalSearch/timezone": {
|
|
599
|
+
"type": "string",
|
|
600
|
+
"description": "",
|
|
601
|
+
"default": "Europe/Dublin"
|
|
602
|
+
},
|
|
603
|
+
"EGlobalSearch/converted-date-format": {
|
|
604
|
+
"type": "string",
|
|
605
|
+
"description": "",
|
|
606
|
+
"default": "YYYY-MM-DDTHH:mm:ss"
|
|
607
|
+
},
|
|
608
|
+
"EGlobalSearch/current-date-format": {
|
|
609
|
+
"type": "string",
|
|
610
|
+
"description": "",
|
|
611
|
+
"default": "YYYY-MM-DDTHH:mm:ssZ"
|
|
612
|
+
},
|
|
613
|
+
"EGlobalSearch/is-fixed-position": {
|
|
614
|
+
"type": "boolean",
|
|
615
|
+
"description": "",
|
|
616
|
+
"default": true
|
|
617
|
+
},
|
|
618
|
+
"EGlobalSearch/is-hidden": {
|
|
619
|
+
"type": "boolean",
|
|
620
|
+
"description": "",
|
|
621
|
+
"default": true
|
|
622
|
+
},
|
|
623
|
+
"EGlobalSearch/deep": {
|
|
624
|
+
"type": "boolean",
|
|
625
|
+
"description": "",
|
|
626
|
+
"default": true
|
|
484
627
|
}
|
|
485
628
|
}
|