@aotearoan/neon 22.5.2 → 23.0.1
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/components/feedback/alert/container/NeonAlertContainer.vue.cjs.js +1 -1
- package/dist/components/feedback/alert/container/NeonAlertContainer.vue.cjs.js.map +1 -1
- package/dist/components/feedback/alert/container/NeonAlertContainer.vue.es.js +30 -29
- package/dist/components/feedback/alert/container/NeonAlertContainer.vue.es.js.map +1 -1
- package/dist/components/layout/card-list/NeonCardList.vue.cjs.js +1 -1
- package/dist/components/layout/card-list/NeonCardList.vue.cjs.js.map +1 -1
- package/dist/components/layout/card-list/NeonCardList.vue.es.js +8 -6
- package/dist/components/layout/card-list/NeonCardList.vue.es.js.map +1 -1
- package/dist/components/navigation/link/NeonLink.cjs.js +1 -1
- package/dist/components/navigation/link/NeonLink.cjs.js.map +1 -1
- package/dist/components/navigation/link/NeonLink.es.js +6 -6
- package/dist/components/navigation/link/NeonLink.es.js.map +1 -1
- package/dist/components/navigation/menu/NeonMenu.vue.cjs.js +1 -1
- package/dist/components/navigation/menu/NeonMenu.vue.cjs.js.map +1 -1
- package/dist/components/navigation/menu/NeonMenu.vue.es.js +2 -2
- package/dist/components/navigation/menu/NeonMenu.vue.es.js.map +1 -1
- package/dist/components/navigation/mobile-menu/NeonMobileMenu.vue.cjs.js +1 -1
- package/dist/components/navigation/mobile-menu/NeonMobileMenu.vue.cjs.js.map +1 -1
- package/dist/components/navigation/mobile-menu/NeonMobileMenu.vue.es.js +1 -1
- package/dist/components/navigation/mobile-menu/NeonMobileMenu.vue.es.js.map +1 -1
- package/dist/components/navigation/tree-menu/NeonTreeMenu.vue.cjs.js +1 -1
- package/dist/components/navigation/tree-menu/NeonTreeMenu.vue.cjs.js.map +1 -1
- package/dist/components/navigation/tree-menu/NeonTreeMenu.vue.es.js +8 -7
- package/dist/components/navigation/tree-menu/NeonTreeMenu.vue.es.js.map +1 -1
- package/dist/components/presentation/image-carousel/NeonImageCarousel.vue.cjs.js +1 -1
- package/dist/components/presentation/image-carousel/NeonImageCarousel.vue.cjs.js.map +1 -1
- package/dist/components/presentation/image-carousel/NeonImageCarousel.vue.es.js +1 -0
- package/dist/components/presentation/image-carousel/NeonImageCarousel.vue.es.js.map +1 -1
- package/dist/components/user-input/button/NeonButton.vue.cjs.js +1 -1
- package/dist/components/user-input/button/NeonButton.vue.cjs.js.map +1 -1
- package/dist/components/user-input/button/NeonButton.vue.es.js +1 -0
- package/dist/components/user-input/button/NeonButton.vue.es.js.map +1 -1
- package/dist/components/user-input/filter-list/NeonFilterList.vue.cjs.js +1 -1
- package/dist/components/user-input/filter-list/NeonFilterList.vue.cjs.js.map +1 -1
- package/dist/components/user-input/filter-list/NeonFilterList.vue.es.js +1 -0
- package/dist/components/user-input/filter-list/NeonFilterList.vue.es.js.map +1 -1
- package/dist/components/user-input/input/NeonInput.cjs.js +1 -1
- package/dist/components/user-input/input/NeonInput.cjs.js.map +1 -1
- package/dist/components/user-input/input/NeonInput.es.js +62 -69
- package/dist/components/user-input/input/NeonInput.es.js.map +1 -1
- package/dist/src/common/models/NeonAlertMessage.d.ts +4 -0
- package/dist/src/components/feedback/alert/NeonAlert.d.ts +8 -0
- package/dist/src/components/feedback/dialog/NeonDialog.d.ts +24 -8
- package/dist/src/components/feedback/note/NeonNote.d.ts +8 -8
- package/dist/src/components/layout/card-list/NeonCardList.d.ts +8 -2
- package/dist/src/components/navigation/dropdown-menu/NeonDropdownMenu.d.ts +33 -33
- package/dist/src/components/navigation/link/NeonLink.d.ts +4 -4
- package/dist/src/components/navigation/menu/NeonMenu.d.ts +33 -33
- package/dist/src/components/navigation/mobile-menu/NeonMobileMenu.d.ts +33 -33
- package/dist/src/components/presentation/badge/NeonBadge.d.ts +29 -67
- package/dist/src/components/presentation/dropdown/NeonDropdown.d.ts +49 -29
- package/dist/src/components/user-input/color/NeonColor.d.ts +3 -3
- package/dist/src/components/user-input/date-picker/NeonDatePicker.d.ts +38 -94
- package/dist/src/components/user-input/file/NeonFile.d.ts +29 -77
- package/dist/src/components/user-input/filter-list/NeonFilterList.d.ts +6 -0
- package/dist/src/components/user-input/input/NeonInput.d.ts +3 -3
- package/dist/src/components/user-input/number/NeonNumber.d.ts +15 -7
- package/dist/src/components/user-input/password/NeonPassword.d.ts +3 -3
- package/dist/src/components/user-input/search/NeonSearch.d.ts +218 -92
- package/dist/src/components/user-input/select/NeonSelect.d.ts +51 -213
- package/package.json +1 -1
- package/src/sass/components/_action-menu.scss +1 -0
- package/src/sass/components/_alert-container.scss +45 -48
- package/src/sass/components/_button.scss +10 -3
- package/src/sass/components/_card-list.scss +0 -11
- package/src/sass/components/_drawer.scss +2 -1
- package/src/sass/components/_dropdown.scss +1 -0
- package/src/sass/components/_field-group.scss +15 -4
- package/src/sass/components/_link.scss +36 -52
- package/src/sass/components/_number.scss +6 -6
- package/src/sass/components/_tabs.scss +2 -24
- package/src/sass/components/_toast-container.scss +15 -23
- package/src/sass/components/_toggle-chip.scss +7 -6
- package/src/sass/global/_base-html.scss +2 -30
- package/src/sass/includes/_outline.scss +6 -6
- package/src/sass/variables.scss +76 -34
|
@@ -413,7 +413,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
413
413
|
default: NeonInputMode;
|
|
414
414
|
};
|
|
415
415
|
autocomplete: {
|
|
416
|
-
type:
|
|
416
|
+
type: StringConstructor;
|
|
417
417
|
default: string;
|
|
418
418
|
};
|
|
419
419
|
state: {
|
|
@@ -429,6 +429,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
429
429
|
default: null;
|
|
430
430
|
};
|
|
431
431
|
iconReadonly: {
|
|
432
|
+
/**
|
|
433
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
434
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
435
|
+
*/
|
|
432
436
|
type: BooleanConstructor;
|
|
433
437
|
default: boolean;
|
|
434
438
|
};
|
|
@@ -441,7 +445,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
441
445
|
default: number;
|
|
442
446
|
};
|
|
443
447
|
disabled: {
|
|
444
|
-
type: BooleanConstructor;
|
|
448
|
+
type: BooleanConstructor; /**
|
|
449
|
+
* Placement of the dropdown contents.
|
|
450
|
+
*/
|
|
445
451
|
default: boolean;
|
|
446
452
|
};
|
|
447
453
|
stateHighlight: {
|
|
@@ -500,7 +506,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
500
506
|
inputmode: NeonInputMode;
|
|
501
507
|
modelValue: string;
|
|
502
508
|
state: import("../../../neon").NeonState;
|
|
503
|
-
autocomplete:
|
|
509
|
+
autocomplete: string;
|
|
504
510
|
rows: number;
|
|
505
511
|
iconReadonly: boolean;
|
|
506
512
|
hideIcon: boolean;
|
|
@@ -599,7 +605,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
599
605
|
default: NeonInputMode;
|
|
600
606
|
};
|
|
601
607
|
autocomplete: {
|
|
602
|
-
type:
|
|
608
|
+
type: StringConstructor;
|
|
603
609
|
default: string;
|
|
604
610
|
};
|
|
605
611
|
state: {
|
|
@@ -615,6 +621,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
615
621
|
default: null;
|
|
616
622
|
};
|
|
617
623
|
iconReadonly: {
|
|
624
|
+
/**
|
|
625
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
626
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
627
|
+
*/
|
|
618
628
|
type: BooleanConstructor;
|
|
619
629
|
default: boolean;
|
|
620
630
|
};
|
|
@@ -627,7 +637,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
627
637
|
default: number;
|
|
628
638
|
};
|
|
629
639
|
disabled: {
|
|
630
|
-
type: BooleanConstructor;
|
|
640
|
+
type: BooleanConstructor; /**
|
|
641
|
+
* Placement of the dropdown contents.
|
|
642
|
+
*/
|
|
631
643
|
default: boolean;
|
|
632
644
|
};
|
|
633
645
|
stateHighlight: {
|
|
@@ -686,7 +698,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
686
698
|
inputmode: NeonInputMode;
|
|
687
699
|
modelValue: string;
|
|
688
700
|
state: import("../../../neon").NeonState;
|
|
689
|
-
autocomplete:
|
|
701
|
+
autocomplete: string;
|
|
690
702
|
rows: number;
|
|
691
703
|
iconReadonly: boolean;
|
|
692
704
|
hideIcon: boolean;
|
|
@@ -724,7 +736,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
724
736
|
default: NeonInputMode;
|
|
725
737
|
};
|
|
726
738
|
autocomplete: {
|
|
727
|
-
type:
|
|
739
|
+
type: StringConstructor;
|
|
728
740
|
default: string;
|
|
729
741
|
};
|
|
730
742
|
state: {
|
|
@@ -740,6 +752,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
740
752
|
default: null;
|
|
741
753
|
};
|
|
742
754
|
iconReadonly: {
|
|
755
|
+
/**
|
|
756
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
757
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
758
|
+
*/
|
|
743
759
|
type: BooleanConstructor;
|
|
744
760
|
default: boolean;
|
|
745
761
|
};
|
|
@@ -752,7 +768,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
752
768
|
default: number;
|
|
753
769
|
};
|
|
754
770
|
disabled: {
|
|
755
|
-
type: BooleanConstructor;
|
|
771
|
+
type: BooleanConstructor; /**
|
|
772
|
+
* Placement of the dropdown contents.
|
|
773
|
+
*/
|
|
756
774
|
default: boolean;
|
|
757
775
|
};
|
|
758
776
|
stateHighlight: {
|
|
@@ -811,7 +829,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
811
829
|
inputmode: NeonInputMode;
|
|
812
830
|
modelValue: string;
|
|
813
831
|
state: import("../../../neon").NeonState;
|
|
814
|
-
autocomplete:
|
|
832
|
+
autocomplete: string;
|
|
815
833
|
rows: number;
|
|
816
834
|
iconReadonly: boolean;
|
|
817
835
|
hideIcon: boolean;
|
|
@@ -910,7 +928,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
910
928
|
default: NeonInputMode;
|
|
911
929
|
};
|
|
912
930
|
autocomplete: {
|
|
913
|
-
type:
|
|
931
|
+
type: StringConstructor;
|
|
914
932
|
default: string;
|
|
915
933
|
};
|
|
916
934
|
state: {
|
|
@@ -926,6 +944,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
926
944
|
default: null;
|
|
927
945
|
};
|
|
928
946
|
iconReadonly: {
|
|
947
|
+
/**
|
|
948
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
949
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
950
|
+
*/
|
|
929
951
|
type: BooleanConstructor;
|
|
930
952
|
default: boolean;
|
|
931
953
|
};
|
|
@@ -938,7 +960,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
938
960
|
default: number;
|
|
939
961
|
};
|
|
940
962
|
disabled: {
|
|
941
|
-
type: BooleanConstructor;
|
|
963
|
+
type: BooleanConstructor; /**
|
|
964
|
+
* Placement of the dropdown contents.
|
|
965
|
+
*/
|
|
942
966
|
default: boolean;
|
|
943
967
|
};
|
|
944
968
|
stateHighlight: {
|
|
@@ -997,7 +1021,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
997
1021
|
inputmode: NeonInputMode;
|
|
998
1022
|
modelValue: string;
|
|
999
1023
|
state: import("../../../neon").NeonState;
|
|
1000
|
-
autocomplete:
|
|
1024
|
+
autocomplete: string;
|
|
1001
1025
|
rows: number;
|
|
1002
1026
|
iconReadonly: boolean;
|
|
1003
1027
|
hideIcon: boolean;
|
|
@@ -1420,10 +1444,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1420
1444
|
};
|
|
1421
1445
|
}>, {
|
|
1422
1446
|
neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
|
|
1423
|
-
routerUrl: import("vue").ComputedRef<string | undefined>;
|
|
1424
|
-
* The HTML autocomplete mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values">here</a>.
|
|
1425
|
-
* NOTE: No enum is provided in Neon as some values can be used in combination, please refer to the full list of values in the preceding link.
|
|
1426
|
-
*/
|
|
1447
|
+
routerUrl: import("vue").ComputedRef<string | undefined>;
|
|
1427
1448
|
sanitizedAttributes: import("vue").ComputedRef<{
|
|
1428
1449
|
[x: string]: unknown;
|
|
1429
1450
|
}>;
|
|
@@ -1541,7 +1562,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1541
1562
|
default: NeonInputMode;
|
|
1542
1563
|
};
|
|
1543
1564
|
autocomplete: {
|
|
1544
|
-
type:
|
|
1565
|
+
type: StringConstructor;
|
|
1545
1566
|
default: string;
|
|
1546
1567
|
};
|
|
1547
1568
|
state: {
|
|
@@ -1557,6 +1578,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1557
1578
|
default: null;
|
|
1558
1579
|
};
|
|
1559
1580
|
iconReadonly: {
|
|
1581
|
+
/**
|
|
1582
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
1583
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
1584
|
+
*/
|
|
1560
1585
|
type: BooleanConstructor;
|
|
1561
1586
|
default: boolean;
|
|
1562
1587
|
};
|
|
@@ -1569,7 +1594,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1569
1594
|
default: number;
|
|
1570
1595
|
};
|
|
1571
1596
|
disabled: {
|
|
1572
|
-
type: BooleanConstructor;
|
|
1597
|
+
type: BooleanConstructor; /**
|
|
1598
|
+
* Placement of the dropdown contents.
|
|
1599
|
+
*/
|
|
1573
1600
|
default: boolean;
|
|
1574
1601
|
};
|
|
1575
1602
|
stateHighlight: {
|
|
@@ -1640,7 +1667,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1640
1667
|
default: NeonInputMode;
|
|
1641
1668
|
};
|
|
1642
1669
|
autocomplete: {
|
|
1643
|
-
type:
|
|
1670
|
+
type: StringConstructor;
|
|
1644
1671
|
default: string;
|
|
1645
1672
|
};
|
|
1646
1673
|
state: {
|
|
@@ -1656,6 +1683,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1656
1683
|
default: null;
|
|
1657
1684
|
};
|
|
1658
1685
|
iconReadonly: {
|
|
1686
|
+
/**
|
|
1687
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
1688
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
1689
|
+
*/
|
|
1659
1690
|
type: BooleanConstructor;
|
|
1660
1691
|
default: boolean;
|
|
1661
1692
|
};
|
|
@@ -1668,7 +1699,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1668
1699
|
default: number;
|
|
1669
1700
|
};
|
|
1670
1701
|
disabled: {
|
|
1671
|
-
type: BooleanConstructor;
|
|
1702
|
+
type: BooleanConstructor; /**
|
|
1703
|
+
* Placement of the dropdown contents.
|
|
1704
|
+
*/
|
|
1672
1705
|
default: boolean;
|
|
1673
1706
|
};
|
|
1674
1707
|
stateHighlight: {
|
|
@@ -1709,7 +1742,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1709
1742
|
inputmode: NeonInputMode;
|
|
1710
1743
|
modelValue: string;
|
|
1711
1744
|
state: import("../../../neon").NeonState;
|
|
1712
|
-
autocomplete:
|
|
1745
|
+
autocomplete: string;
|
|
1713
1746
|
rows: number;
|
|
1714
1747
|
iconReadonly: boolean;
|
|
1715
1748
|
hideIcon: boolean;
|
|
@@ -2244,10 +2277,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2244
2277
|
};
|
|
2245
2278
|
}>, {
|
|
2246
2279
|
neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
|
|
2247
|
-
routerUrl: import("vue").ComputedRef<string | undefined>;
|
|
2248
|
-
* The HTML autocomplete mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values">here</a>.
|
|
2249
|
-
* NOTE: No enum is provided in Neon as some values can be used in combination, please refer to the full list of values in the preceding link.
|
|
2250
|
-
*/
|
|
2280
|
+
routerUrl: import("vue").ComputedRef<string | undefined>;
|
|
2251
2281
|
sanitizedAttributes: import("vue").ComputedRef<{
|
|
2252
2282
|
[x: string]: unknown;
|
|
2253
2283
|
}>;
|
|
@@ -2823,7 +2853,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2823
2853
|
default: NeonInputMode;
|
|
2824
2854
|
};
|
|
2825
2855
|
autocomplete: {
|
|
2826
|
-
type:
|
|
2856
|
+
type: StringConstructor;
|
|
2827
2857
|
default: string;
|
|
2828
2858
|
};
|
|
2829
2859
|
state: {
|
|
@@ -2839,6 +2869,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2839
2869
|
default: null;
|
|
2840
2870
|
};
|
|
2841
2871
|
iconReadonly: {
|
|
2872
|
+
/**
|
|
2873
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
2874
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
2875
|
+
*/
|
|
2842
2876
|
type: BooleanConstructor;
|
|
2843
2877
|
default: boolean;
|
|
2844
2878
|
};
|
|
@@ -2851,7 +2885,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2851
2885
|
default: number;
|
|
2852
2886
|
};
|
|
2853
2887
|
disabled: {
|
|
2854
|
-
type: BooleanConstructor;
|
|
2888
|
+
type: BooleanConstructor; /**
|
|
2889
|
+
* Placement of the dropdown contents.
|
|
2890
|
+
*/
|
|
2855
2891
|
default: boolean;
|
|
2856
2892
|
};
|
|
2857
2893
|
stateHighlight: {
|
|
@@ -2910,7 +2946,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2910
2946
|
inputmode: NeonInputMode;
|
|
2911
2947
|
modelValue: string;
|
|
2912
2948
|
state: import("../../../neon").NeonState;
|
|
2913
|
-
autocomplete:
|
|
2949
|
+
autocomplete: string;
|
|
2914
2950
|
rows: number;
|
|
2915
2951
|
iconReadonly: boolean;
|
|
2916
2952
|
hideIcon: boolean;
|
|
@@ -3009,7 +3045,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3009
3045
|
default: NeonInputMode;
|
|
3010
3046
|
};
|
|
3011
3047
|
autocomplete: {
|
|
3012
|
-
type:
|
|
3048
|
+
type: StringConstructor;
|
|
3013
3049
|
default: string;
|
|
3014
3050
|
};
|
|
3015
3051
|
state: {
|
|
@@ -3025,6 +3061,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3025
3061
|
default: null;
|
|
3026
3062
|
};
|
|
3027
3063
|
iconReadonly: {
|
|
3064
|
+
/**
|
|
3065
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
3066
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
3067
|
+
*/
|
|
3028
3068
|
type: BooleanConstructor;
|
|
3029
3069
|
default: boolean;
|
|
3030
3070
|
};
|
|
@@ -3037,7 +3077,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3037
3077
|
default: number;
|
|
3038
3078
|
};
|
|
3039
3079
|
disabled: {
|
|
3040
|
-
type: BooleanConstructor;
|
|
3080
|
+
type: BooleanConstructor; /**
|
|
3081
|
+
* Placement of the dropdown contents.
|
|
3082
|
+
*/
|
|
3041
3083
|
default: boolean;
|
|
3042
3084
|
};
|
|
3043
3085
|
stateHighlight: {
|
|
@@ -3096,7 +3138,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3096
3138
|
inputmode: NeonInputMode;
|
|
3097
3139
|
modelValue: string;
|
|
3098
3140
|
state: import("../../../neon").NeonState;
|
|
3099
|
-
autocomplete:
|
|
3141
|
+
autocomplete: string;
|
|
3100
3142
|
rows: number;
|
|
3101
3143
|
iconReadonly: boolean;
|
|
3102
3144
|
hideIcon: boolean;
|
|
@@ -3134,7 +3176,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3134
3176
|
default: NeonInputMode;
|
|
3135
3177
|
};
|
|
3136
3178
|
autocomplete: {
|
|
3137
|
-
type:
|
|
3179
|
+
type: StringConstructor;
|
|
3138
3180
|
default: string;
|
|
3139
3181
|
};
|
|
3140
3182
|
state: {
|
|
@@ -3150,6 +3192,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3150
3192
|
default: null;
|
|
3151
3193
|
};
|
|
3152
3194
|
iconReadonly: {
|
|
3195
|
+
/**
|
|
3196
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
3197
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
3198
|
+
*/
|
|
3153
3199
|
type: BooleanConstructor;
|
|
3154
3200
|
default: boolean;
|
|
3155
3201
|
};
|
|
@@ -3162,7 +3208,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3162
3208
|
default: number;
|
|
3163
3209
|
};
|
|
3164
3210
|
disabled: {
|
|
3165
|
-
type: BooleanConstructor;
|
|
3211
|
+
type: BooleanConstructor; /**
|
|
3212
|
+
* Placement of the dropdown contents.
|
|
3213
|
+
*/
|
|
3166
3214
|
default: boolean;
|
|
3167
3215
|
};
|
|
3168
3216
|
stateHighlight: {
|
|
@@ -3221,7 +3269,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3221
3269
|
inputmode: NeonInputMode;
|
|
3222
3270
|
modelValue: string;
|
|
3223
3271
|
state: import("../../../neon").NeonState;
|
|
3224
|
-
autocomplete:
|
|
3272
|
+
autocomplete: string;
|
|
3225
3273
|
rows: number;
|
|
3226
3274
|
iconReadonly: boolean;
|
|
3227
3275
|
hideIcon: boolean;
|
|
@@ -3320,7 +3368,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3320
3368
|
default: NeonInputMode;
|
|
3321
3369
|
};
|
|
3322
3370
|
autocomplete: {
|
|
3323
|
-
type:
|
|
3371
|
+
type: StringConstructor;
|
|
3324
3372
|
default: string;
|
|
3325
3373
|
};
|
|
3326
3374
|
state: {
|
|
@@ -3336,6 +3384,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3336
3384
|
default: null;
|
|
3337
3385
|
};
|
|
3338
3386
|
iconReadonly: {
|
|
3387
|
+
/**
|
|
3388
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
3389
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
3390
|
+
*/
|
|
3339
3391
|
type: BooleanConstructor;
|
|
3340
3392
|
default: boolean;
|
|
3341
3393
|
};
|
|
@@ -3348,7 +3400,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3348
3400
|
default: number;
|
|
3349
3401
|
};
|
|
3350
3402
|
disabled: {
|
|
3351
|
-
type: BooleanConstructor;
|
|
3403
|
+
type: BooleanConstructor; /**
|
|
3404
|
+
* Placement of the dropdown contents.
|
|
3405
|
+
*/
|
|
3352
3406
|
default: boolean;
|
|
3353
3407
|
};
|
|
3354
3408
|
stateHighlight: {
|
|
@@ -3407,7 +3461,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3407
3461
|
inputmode: NeonInputMode;
|
|
3408
3462
|
modelValue: string;
|
|
3409
3463
|
state: import("../../../neon").NeonState;
|
|
3410
|
-
autocomplete:
|
|
3464
|
+
autocomplete: string;
|
|
3411
3465
|
rows: number;
|
|
3412
3466
|
iconReadonly: boolean;
|
|
3413
3467
|
hideIcon: boolean;
|
|
@@ -3830,10 +3884,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3830
3884
|
};
|
|
3831
3885
|
}>, {
|
|
3832
3886
|
neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
|
|
3833
|
-
routerUrl: import("vue").ComputedRef<string | undefined>;
|
|
3834
|
-
* The HTML autocomplete mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values">here</a>.
|
|
3835
|
-
* NOTE: No enum is provided in Neon as some values can be used in combination, please refer to the full list of values in the preceding link.
|
|
3836
|
-
*/
|
|
3887
|
+
routerUrl: import("vue").ComputedRef<string | undefined>;
|
|
3837
3888
|
sanitizedAttributes: import("vue").ComputedRef<{
|
|
3838
3889
|
[x: string]: unknown;
|
|
3839
3890
|
}>;
|
|
@@ -3951,7 +4002,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3951
4002
|
default: NeonInputMode;
|
|
3952
4003
|
};
|
|
3953
4004
|
autocomplete: {
|
|
3954
|
-
type:
|
|
4005
|
+
type: StringConstructor;
|
|
3955
4006
|
default: string;
|
|
3956
4007
|
};
|
|
3957
4008
|
state: {
|
|
@@ -3967,6 +4018,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3967
4018
|
default: null;
|
|
3968
4019
|
};
|
|
3969
4020
|
iconReadonly: {
|
|
4021
|
+
/**
|
|
4022
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
4023
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
4024
|
+
*/
|
|
3970
4025
|
type: BooleanConstructor;
|
|
3971
4026
|
default: boolean;
|
|
3972
4027
|
};
|
|
@@ -3979,7 +4034,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3979
4034
|
default: number;
|
|
3980
4035
|
};
|
|
3981
4036
|
disabled: {
|
|
3982
|
-
type: BooleanConstructor;
|
|
4037
|
+
type: BooleanConstructor; /**
|
|
4038
|
+
* Placement of the dropdown contents.
|
|
4039
|
+
*/
|
|
3983
4040
|
default: boolean;
|
|
3984
4041
|
};
|
|
3985
4042
|
stateHighlight: {
|
|
@@ -4050,7 +4107,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4050
4107
|
default: NeonInputMode;
|
|
4051
4108
|
};
|
|
4052
4109
|
autocomplete: {
|
|
4053
|
-
type:
|
|
4110
|
+
type: StringConstructor;
|
|
4054
4111
|
default: string;
|
|
4055
4112
|
};
|
|
4056
4113
|
state: {
|
|
@@ -4066,6 +4123,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4066
4123
|
default: null;
|
|
4067
4124
|
};
|
|
4068
4125
|
iconReadonly: {
|
|
4126
|
+
/**
|
|
4127
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
4128
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
4129
|
+
*/
|
|
4069
4130
|
type: BooleanConstructor;
|
|
4070
4131
|
default: boolean;
|
|
4071
4132
|
};
|
|
@@ -4078,7 +4139,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4078
4139
|
default: number;
|
|
4079
4140
|
};
|
|
4080
4141
|
disabled: {
|
|
4081
|
-
type: BooleanConstructor;
|
|
4142
|
+
type: BooleanConstructor; /**
|
|
4143
|
+
* Placement of the dropdown contents.
|
|
4144
|
+
*/
|
|
4082
4145
|
default: boolean;
|
|
4083
4146
|
};
|
|
4084
4147
|
stateHighlight: {
|
|
@@ -4119,7 +4182,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4119
4182
|
inputmode: NeonInputMode;
|
|
4120
4183
|
modelValue: string;
|
|
4121
4184
|
state: import("../../../neon").NeonState;
|
|
4122
|
-
autocomplete:
|
|
4185
|
+
autocomplete: string;
|
|
4123
4186
|
rows: number;
|
|
4124
4187
|
iconReadonly: boolean;
|
|
4125
4188
|
hideIcon: boolean;
|
|
@@ -4654,10 +4717,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4654
4717
|
};
|
|
4655
4718
|
}>, {
|
|
4656
4719
|
neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
|
|
4657
|
-
routerUrl: import("vue").ComputedRef<string | undefined>;
|
|
4658
|
-
* The HTML autocomplete mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values">here</a>.
|
|
4659
|
-
* NOTE: No enum is provided in Neon as some values can be used in combination, please refer to the full list of values in the preceding link.
|
|
4660
|
-
*/
|
|
4720
|
+
routerUrl: import("vue").ComputedRef<string | undefined>;
|
|
4661
4721
|
sanitizedAttributes: import("vue").ComputedRef<{
|
|
4662
4722
|
[x: string]: unknown;
|
|
4663
4723
|
}>;
|
|
@@ -4937,7 +4997,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4937
4997
|
default: NeonInputMode;
|
|
4938
4998
|
};
|
|
4939
4999
|
autocomplete: {
|
|
4940
|
-
type:
|
|
5000
|
+
type: StringConstructor;
|
|
4941
5001
|
default: string;
|
|
4942
5002
|
};
|
|
4943
5003
|
state: {
|
|
@@ -4953,6 +5013,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4953
5013
|
default: null;
|
|
4954
5014
|
};
|
|
4955
5015
|
iconReadonly: {
|
|
5016
|
+
/**
|
|
5017
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
5018
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
5019
|
+
*/
|
|
4956
5020
|
type: BooleanConstructor;
|
|
4957
5021
|
default: boolean;
|
|
4958
5022
|
};
|
|
@@ -4965,7 +5029,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4965
5029
|
default: number;
|
|
4966
5030
|
};
|
|
4967
5031
|
disabled: {
|
|
4968
|
-
type: BooleanConstructor;
|
|
5032
|
+
type: BooleanConstructor; /**
|
|
5033
|
+
* Placement of the dropdown contents.
|
|
5034
|
+
*/
|
|
4969
5035
|
default: boolean;
|
|
4970
5036
|
};
|
|
4971
5037
|
stateHighlight: {
|
|
@@ -5024,7 +5090,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5024
5090
|
inputmode: NeonInputMode;
|
|
5025
5091
|
modelValue: string;
|
|
5026
5092
|
state: import("../../../neon").NeonState;
|
|
5027
|
-
autocomplete:
|
|
5093
|
+
autocomplete: string;
|
|
5028
5094
|
rows: number;
|
|
5029
5095
|
iconReadonly: boolean;
|
|
5030
5096
|
hideIcon: boolean;
|
|
@@ -5123,7 +5189,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5123
5189
|
default: NeonInputMode;
|
|
5124
5190
|
};
|
|
5125
5191
|
autocomplete: {
|
|
5126
|
-
type:
|
|
5192
|
+
type: StringConstructor;
|
|
5127
5193
|
default: string;
|
|
5128
5194
|
};
|
|
5129
5195
|
state: {
|
|
@@ -5139,6 +5205,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5139
5205
|
default: null;
|
|
5140
5206
|
};
|
|
5141
5207
|
iconReadonly: {
|
|
5208
|
+
/**
|
|
5209
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
5210
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
5211
|
+
*/
|
|
5142
5212
|
type: BooleanConstructor;
|
|
5143
5213
|
default: boolean;
|
|
5144
5214
|
};
|
|
@@ -5151,7 +5221,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5151
5221
|
default: number;
|
|
5152
5222
|
};
|
|
5153
5223
|
disabled: {
|
|
5154
|
-
type: BooleanConstructor;
|
|
5224
|
+
type: BooleanConstructor; /**
|
|
5225
|
+
* Placement of the dropdown contents.
|
|
5226
|
+
*/
|
|
5155
5227
|
default: boolean;
|
|
5156
5228
|
};
|
|
5157
5229
|
stateHighlight: {
|
|
@@ -5210,7 +5282,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5210
5282
|
inputmode: NeonInputMode;
|
|
5211
5283
|
modelValue: string;
|
|
5212
5284
|
state: import("../../../neon").NeonState;
|
|
5213
|
-
autocomplete:
|
|
5285
|
+
autocomplete: string;
|
|
5214
5286
|
rows: number;
|
|
5215
5287
|
iconReadonly: boolean;
|
|
5216
5288
|
hideIcon: boolean;
|
|
@@ -5248,7 +5320,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5248
5320
|
default: NeonInputMode;
|
|
5249
5321
|
};
|
|
5250
5322
|
autocomplete: {
|
|
5251
|
-
type:
|
|
5323
|
+
type: StringConstructor;
|
|
5252
5324
|
default: string;
|
|
5253
5325
|
};
|
|
5254
5326
|
state: {
|
|
@@ -5264,6 +5336,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5264
5336
|
default: null;
|
|
5265
5337
|
};
|
|
5266
5338
|
iconReadonly: {
|
|
5339
|
+
/**
|
|
5340
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
5341
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
5342
|
+
*/
|
|
5267
5343
|
type: BooleanConstructor;
|
|
5268
5344
|
default: boolean;
|
|
5269
5345
|
};
|
|
@@ -5276,7 +5352,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5276
5352
|
default: number;
|
|
5277
5353
|
};
|
|
5278
5354
|
disabled: {
|
|
5279
|
-
type: BooleanConstructor;
|
|
5355
|
+
type: BooleanConstructor; /**
|
|
5356
|
+
* Placement of the dropdown contents.
|
|
5357
|
+
*/
|
|
5280
5358
|
default: boolean;
|
|
5281
5359
|
};
|
|
5282
5360
|
stateHighlight: {
|
|
@@ -5335,7 +5413,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5335
5413
|
inputmode: NeonInputMode;
|
|
5336
5414
|
modelValue: string;
|
|
5337
5415
|
state: import("../../../neon").NeonState;
|
|
5338
|
-
autocomplete:
|
|
5416
|
+
autocomplete: string;
|
|
5339
5417
|
rows: number;
|
|
5340
5418
|
iconReadonly: boolean;
|
|
5341
5419
|
hideIcon: boolean;
|
|
@@ -5434,7 +5512,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5434
5512
|
default: NeonInputMode;
|
|
5435
5513
|
};
|
|
5436
5514
|
autocomplete: {
|
|
5437
|
-
type:
|
|
5515
|
+
type: StringConstructor;
|
|
5438
5516
|
default: string;
|
|
5439
5517
|
};
|
|
5440
5518
|
state: {
|
|
@@ -5450,6 +5528,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5450
5528
|
default: null;
|
|
5451
5529
|
};
|
|
5452
5530
|
iconReadonly: {
|
|
5531
|
+
/**
|
|
5532
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
5533
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
5534
|
+
*/
|
|
5453
5535
|
type: BooleanConstructor;
|
|
5454
5536
|
default: boolean;
|
|
5455
5537
|
};
|
|
@@ -5462,7 +5544,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5462
5544
|
default: number;
|
|
5463
5545
|
};
|
|
5464
5546
|
disabled: {
|
|
5465
|
-
type: BooleanConstructor;
|
|
5547
|
+
type: BooleanConstructor; /**
|
|
5548
|
+
* Placement of the dropdown contents.
|
|
5549
|
+
*/
|
|
5466
5550
|
default: boolean;
|
|
5467
5551
|
};
|
|
5468
5552
|
stateHighlight: {
|
|
@@ -5521,7 +5605,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5521
5605
|
inputmode: NeonInputMode;
|
|
5522
5606
|
modelValue: string;
|
|
5523
5607
|
state: import("../../../neon").NeonState;
|
|
5524
|
-
autocomplete:
|
|
5608
|
+
autocomplete: string;
|
|
5525
5609
|
rows: number;
|
|
5526
5610
|
iconReadonly: boolean;
|
|
5527
5611
|
hideIcon: boolean;
|
|
@@ -6157,7 +6241,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6157
6241
|
default: NeonInputMode;
|
|
6158
6242
|
};
|
|
6159
6243
|
autocomplete: {
|
|
6160
|
-
type:
|
|
6244
|
+
type: StringConstructor;
|
|
6161
6245
|
default: string;
|
|
6162
6246
|
};
|
|
6163
6247
|
state: {
|
|
@@ -6173,6 +6257,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6173
6257
|
default: null;
|
|
6174
6258
|
};
|
|
6175
6259
|
iconReadonly: {
|
|
6260
|
+
/**
|
|
6261
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
6262
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
6263
|
+
*/
|
|
6176
6264
|
type: BooleanConstructor;
|
|
6177
6265
|
default: boolean;
|
|
6178
6266
|
};
|
|
@@ -6185,7 +6273,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6185
6273
|
default: number;
|
|
6186
6274
|
};
|
|
6187
6275
|
disabled: {
|
|
6188
|
-
type: BooleanConstructor;
|
|
6276
|
+
type: BooleanConstructor; /**
|
|
6277
|
+
* Placement of the dropdown contents.
|
|
6278
|
+
*/
|
|
6189
6279
|
default: boolean;
|
|
6190
6280
|
};
|
|
6191
6281
|
stateHighlight: {
|
|
@@ -6244,7 +6334,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6244
6334
|
inputmode: NeonInputMode;
|
|
6245
6335
|
modelValue: string;
|
|
6246
6336
|
state: import("../../../neon").NeonState;
|
|
6247
|
-
autocomplete:
|
|
6337
|
+
autocomplete: string;
|
|
6248
6338
|
rows: number;
|
|
6249
6339
|
iconReadonly: boolean;
|
|
6250
6340
|
hideIcon: boolean;
|
|
@@ -6343,7 +6433,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6343
6433
|
default: NeonInputMode;
|
|
6344
6434
|
};
|
|
6345
6435
|
autocomplete: {
|
|
6346
|
-
type:
|
|
6436
|
+
type: StringConstructor;
|
|
6347
6437
|
default: string;
|
|
6348
6438
|
};
|
|
6349
6439
|
state: {
|
|
@@ -6359,6 +6449,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6359
6449
|
default: null;
|
|
6360
6450
|
};
|
|
6361
6451
|
iconReadonly: {
|
|
6452
|
+
/**
|
|
6453
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
6454
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
6455
|
+
*/
|
|
6362
6456
|
type: BooleanConstructor;
|
|
6363
6457
|
default: boolean;
|
|
6364
6458
|
};
|
|
@@ -6371,7 +6465,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6371
6465
|
default: number;
|
|
6372
6466
|
};
|
|
6373
6467
|
disabled: {
|
|
6374
|
-
type: BooleanConstructor;
|
|
6468
|
+
type: BooleanConstructor; /**
|
|
6469
|
+
* Placement of the dropdown contents.
|
|
6470
|
+
*/
|
|
6375
6471
|
default: boolean;
|
|
6376
6472
|
};
|
|
6377
6473
|
stateHighlight: {
|
|
@@ -6430,7 +6526,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6430
6526
|
inputmode: NeonInputMode;
|
|
6431
6527
|
modelValue: string;
|
|
6432
6528
|
state: import("../../../neon").NeonState;
|
|
6433
|
-
autocomplete:
|
|
6529
|
+
autocomplete: string;
|
|
6434
6530
|
rows: number;
|
|
6435
6531
|
iconReadonly: boolean;
|
|
6436
6532
|
hideIcon: boolean;
|
|
@@ -6468,7 +6564,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6468
6564
|
default: NeonInputMode;
|
|
6469
6565
|
};
|
|
6470
6566
|
autocomplete: {
|
|
6471
|
-
type:
|
|
6567
|
+
type: StringConstructor;
|
|
6472
6568
|
default: string;
|
|
6473
6569
|
};
|
|
6474
6570
|
state: {
|
|
@@ -6484,6 +6580,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6484
6580
|
default: null;
|
|
6485
6581
|
};
|
|
6486
6582
|
iconReadonly: {
|
|
6583
|
+
/**
|
|
6584
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
6585
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
6586
|
+
*/
|
|
6487
6587
|
type: BooleanConstructor;
|
|
6488
6588
|
default: boolean;
|
|
6489
6589
|
};
|
|
@@ -6496,7 +6596,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6496
6596
|
default: number;
|
|
6497
6597
|
};
|
|
6498
6598
|
disabled: {
|
|
6499
|
-
type: BooleanConstructor;
|
|
6599
|
+
type: BooleanConstructor; /**
|
|
6600
|
+
* Placement of the dropdown contents.
|
|
6601
|
+
*/
|
|
6500
6602
|
default: boolean;
|
|
6501
6603
|
};
|
|
6502
6604
|
stateHighlight: {
|
|
@@ -6555,7 +6657,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6555
6657
|
inputmode: NeonInputMode;
|
|
6556
6658
|
modelValue: string;
|
|
6557
6659
|
state: import("../../../neon").NeonState;
|
|
6558
|
-
autocomplete:
|
|
6660
|
+
autocomplete: string;
|
|
6559
6661
|
rows: number;
|
|
6560
6662
|
iconReadonly: boolean;
|
|
6561
6663
|
hideIcon: boolean;
|
|
@@ -6654,7 +6756,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6654
6756
|
default: NeonInputMode;
|
|
6655
6757
|
};
|
|
6656
6758
|
autocomplete: {
|
|
6657
|
-
type:
|
|
6759
|
+
type: StringConstructor;
|
|
6658
6760
|
default: string;
|
|
6659
6761
|
};
|
|
6660
6762
|
state: {
|
|
@@ -6670,6 +6772,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6670
6772
|
default: null;
|
|
6671
6773
|
};
|
|
6672
6774
|
iconReadonly: {
|
|
6775
|
+
/**
|
|
6776
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
6777
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
6778
|
+
*/
|
|
6673
6779
|
type: BooleanConstructor;
|
|
6674
6780
|
default: boolean;
|
|
6675
6781
|
};
|
|
@@ -6682,7 +6788,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6682
6788
|
default: number;
|
|
6683
6789
|
};
|
|
6684
6790
|
disabled: {
|
|
6685
|
-
type: BooleanConstructor;
|
|
6791
|
+
type: BooleanConstructor; /**
|
|
6792
|
+
* Placement of the dropdown contents.
|
|
6793
|
+
*/
|
|
6686
6794
|
default: boolean;
|
|
6687
6795
|
};
|
|
6688
6796
|
stateHighlight: {
|
|
@@ -6741,7 +6849,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6741
6849
|
inputmode: NeonInputMode;
|
|
6742
6850
|
modelValue: string;
|
|
6743
6851
|
state: import("../../../neon").NeonState;
|
|
6744
|
-
autocomplete:
|
|
6852
|
+
autocomplete: string;
|
|
6745
6853
|
rows: number;
|
|
6746
6854
|
iconReadonly: boolean;
|
|
6747
6855
|
hideIcon: boolean;
|
|
@@ -7164,10 +7272,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7164
7272
|
};
|
|
7165
7273
|
}>, {
|
|
7166
7274
|
neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
|
|
7167
|
-
routerUrl: import("vue").ComputedRef<string | undefined>;
|
|
7168
|
-
* The HTML autocomplete mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values">here</a>.
|
|
7169
|
-
* NOTE: No enum is provided in Neon as some values can be used in combination, please refer to the full list of values in the preceding link.
|
|
7170
|
-
*/
|
|
7275
|
+
routerUrl: import("vue").ComputedRef<string | undefined>;
|
|
7171
7276
|
sanitizedAttributes: import("vue").ComputedRef<{
|
|
7172
7277
|
[x: string]: unknown;
|
|
7173
7278
|
}>;
|
|
@@ -7285,7 +7390,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7285
7390
|
default: NeonInputMode;
|
|
7286
7391
|
};
|
|
7287
7392
|
autocomplete: {
|
|
7288
|
-
type:
|
|
7393
|
+
type: StringConstructor;
|
|
7289
7394
|
default: string;
|
|
7290
7395
|
};
|
|
7291
7396
|
state: {
|
|
@@ -7301,6 +7406,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7301
7406
|
default: null;
|
|
7302
7407
|
};
|
|
7303
7408
|
iconReadonly: {
|
|
7409
|
+
/**
|
|
7410
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
7411
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
7412
|
+
*/
|
|
7304
7413
|
type: BooleanConstructor;
|
|
7305
7414
|
default: boolean;
|
|
7306
7415
|
};
|
|
@@ -7313,7 +7422,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7313
7422
|
default: number;
|
|
7314
7423
|
};
|
|
7315
7424
|
disabled: {
|
|
7316
|
-
type: BooleanConstructor;
|
|
7425
|
+
type: BooleanConstructor; /**
|
|
7426
|
+
* Placement of the dropdown contents.
|
|
7427
|
+
*/
|
|
7317
7428
|
default: boolean;
|
|
7318
7429
|
};
|
|
7319
7430
|
stateHighlight: {
|
|
@@ -7384,7 +7495,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7384
7495
|
default: NeonInputMode;
|
|
7385
7496
|
};
|
|
7386
7497
|
autocomplete: {
|
|
7387
|
-
type:
|
|
7498
|
+
type: StringConstructor;
|
|
7388
7499
|
default: string;
|
|
7389
7500
|
};
|
|
7390
7501
|
state: {
|
|
@@ -7400,6 +7511,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7400
7511
|
default: null;
|
|
7401
7512
|
};
|
|
7402
7513
|
iconReadonly: {
|
|
7514
|
+
/**
|
|
7515
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
7516
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
7517
|
+
*/
|
|
7403
7518
|
type: BooleanConstructor;
|
|
7404
7519
|
default: boolean;
|
|
7405
7520
|
};
|
|
@@ -7412,7 +7527,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7412
7527
|
default: number;
|
|
7413
7528
|
};
|
|
7414
7529
|
disabled: {
|
|
7415
|
-
type: BooleanConstructor;
|
|
7530
|
+
type: BooleanConstructor; /**
|
|
7531
|
+
* Placement of the dropdown contents.
|
|
7532
|
+
*/
|
|
7416
7533
|
default: boolean;
|
|
7417
7534
|
};
|
|
7418
7535
|
stateHighlight: {
|
|
@@ -7453,7 +7570,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7453
7570
|
inputmode: NeonInputMode;
|
|
7454
7571
|
modelValue: string;
|
|
7455
7572
|
state: import("../../../neon").NeonState;
|
|
7456
|
-
autocomplete:
|
|
7573
|
+
autocomplete: string;
|
|
7457
7574
|
rows: number;
|
|
7458
7575
|
iconReadonly: boolean;
|
|
7459
7576
|
hideIcon: boolean;
|
|
@@ -7988,10 +8105,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7988
8105
|
};
|
|
7989
8106
|
}>, {
|
|
7990
8107
|
neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
|
|
7991
|
-
routerUrl: import("vue").ComputedRef<string | undefined>;
|
|
7992
|
-
* The HTML autocomplete mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete#values">here</a>.
|
|
7993
|
-
* NOTE: No enum is provided in Neon as some values can be used in combination, please refer to the full list of values in the preceding link.
|
|
7994
|
-
*/
|
|
8108
|
+
routerUrl: import("vue").ComputedRef<string | undefined>;
|
|
7995
8109
|
sanitizedAttributes: import("vue").ComputedRef<{
|
|
7996
8110
|
[x: string]: unknown;
|
|
7997
8111
|
}>;
|
|
@@ -8203,7 +8317,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8203
8317
|
default: NeonInputMode;
|
|
8204
8318
|
};
|
|
8205
8319
|
autocomplete: {
|
|
8206
|
-
type:
|
|
8320
|
+
type: StringConstructor;
|
|
8207
8321
|
default: string;
|
|
8208
8322
|
};
|
|
8209
8323
|
state: {
|
|
@@ -8219,6 +8333,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8219
8333
|
default: null;
|
|
8220
8334
|
};
|
|
8221
8335
|
iconReadonly: {
|
|
8336
|
+
/**
|
|
8337
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
8338
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
8339
|
+
*/
|
|
8222
8340
|
type: BooleanConstructor;
|
|
8223
8341
|
default: boolean;
|
|
8224
8342
|
};
|
|
@@ -8231,7 +8349,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8231
8349
|
default: number;
|
|
8232
8350
|
};
|
|
8233
8351
|
disabled: {
|
|
8234
|
-
type: BooleanConstructor;
|
|
8352
|
+
type: BooleanConstructor; /**
|
|
8353
|
+
* Placement of the dropdown contents.
|
|
8354
|
+
*/
|
|
8235
8355
|
default: boolean;
|
|
8236
8356
|
};
|
|
8237
8357
|
stateHighlight: {
|
|
@@ -8302,7 +8422,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8302
8422
|
default: NeonInputMode;
|
|
8303
8423
|
};
|
|
8304
8424
|
autocomplete: {
|
|
8305
|
-
type:
|
|
8425
|
+
type: StringConstructor;
|
|
8306
8426
|
default: string;
|
|
8307
8427
|
};
|
|
8308
8428
|
state: {
|
|
@@ -8318,6 +8438,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8318
8438
|
default: null;
|
|
8319
8439
|
};
|
|
8320
8440
|
iconReadonly: {
|
|
8441
|
+
/**
|
|
8442
|
+
* The HTML input mode as specified <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode">here</a>.
|
|
8443
|
+
* This can be used to simplify populating the filter field, e.g. providing the user's country from their address.
|
|
8444
|
+
*/
|
|
8321
8445
|
type: BooleanConstructor;
|
|
8322
8446
|
default: boolean;
|
|
8323
8447
|
};
|
|
@@ -8330,7 +8454,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8330
8454
|
default: number;
|
|
8331
8455
|
};
|
|
8332
8456
|
disabled: {
|
|
8333
|
-
type: BooleanConstructor;
|
|
8457
|
+
type: BooleanConstructor; /**
|
|
8458
|
+
* Placement of the dropdown contents.
|
|
8459
|
+
*/
|
|
8334
8460
|
default: boolean;
|
|
8335
8461
|
};
|
|
8336
8462
|
stateHighlight: {
|
|
@@ -8371,7 +8497,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8371
8497
|
inputmode: NeonInputMode;
|
|
8372
8498
|
modelValue: string;
|
|
8373
8499
|
state: import("../../../neon").NeonState;
|
|
8374
|
-
autocomplete:
|
|
8500
|
+
autocomplete: string;
|
|
8375
8501
|
rows: number;
|
|
8376
8502
|
iconReadonly: boolean;
|
|
8377
8503
|
hideIcon: boolean;
|