@aotearoan/neon 22.5.1 → 22.5.2
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/user-input/field/NeonField.cjs.js +1 -1
- package/dist/components/user-input/field/NeonField.cjs.js.map +1 -1
- package/dist/components/user-input/field/NeonField.es.js +2 -6
- package/dist/components/user-input/field/NeonField.es.js.map +1 -1
- package/dist/components/user-input/field/NeonField.vue.cjs.js +1 -1
- package/dist/components/user-input/field/NeonField.vue.cjs.js.map +1 -1
- package/dist/components/user-input/field/NeonField.vue.es.js +22 -26
- package/dist/components/user-input/field/NeonField.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 +65 -47
- package/dist/components/user-input/input/NeonInput.es.js.map +1 -1
- package/dist/components/user-input/input/NeonInput.vue.cjs.js +1 -1
- package/dist/components/user-input/input/NeonInput.vue.cjs.js.map +1 -1
- package/dist/components/user-input/input/NeonInput.vue.es.js +35 -31
- package/dist/components/user-input/input/NeonInput.vue.es.js.map +1 -1
- package/dist/src/components/navigation/dropdown-menu/NeonDropdownMenu.d.ts +150 -48
- package/dist/src/components/navigation/menu/NeonMenu.d.ts +150 -48
- package/dist/src/components/navigation/mobile-menu/NeonMobileMenu.d.ts +150 -48
- package/dist/src/components/presentation/badge/NeonBadge.d.ts +104 -28
- package/dist/src/components/presentation/dropdown/NeonDropdown.d.ts +62 -52
- package/dist/src/components/user-input/color/NeonColor.d.ts +14 -4
- package/dist/src/components/user-input/date-picker/NeonDatePicker.d.ts +144 -44
- package/dist/src/components/user-input/field/NeonField.d.ts +1 -122
- package/dist/src/components/user-input/file/NeonFile.d.ts +116 -34
- package/dist/src/components/user-input/input/NeonInput.d.ts +24 -8
- package/dist/src/components/user-input/number/NeonNumber.d.ts +14 -4
- package/dist/src/components/user-input/password/NeonPassword.d.ts +14 -4
- package/dist/src/components/user-input/search/NeonSearch.d.ts +224 -232
- package/dist/src/components/user-input/select/NeonSelect.d.ts +330 -66
- package/package.json +1 -1
- package/src/sass/components/_field.scss +8 -0
- package/src/sass/components/_input.scss +3 -3
- package/src/sass/includes/_dependencies.scss +1 -1
- package/src/sass/includes/_typography.scss +3 -2
- package/src/sass/variables.scss +4 -0
|
@@ -1184,7 +1184,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1184
1184
|
default: import("../../../neon").NeonInputMode;
|
|
1185
1185
|
};
|
|
1186
1186
|
autocomplete: {
|
|
1187
|
-
type:
|
|
1187
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
1188
1188
|
default: string;
|
|
1189
1189
|
};
|
|
1190
1190
|
state: {
|
|
@@ -1197,11 +1197,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1197
1197
|
};
|
|
1198
1198
|
icon: {
|
|
1199
1199
|
type: StringConstructor;
|
|
1200
|
-
default: null;
|
|
1201
|
-
|
|
1200
|
+
default: null; /**
|
|
1201
|
+
* The placement of the dropdown calendar popup.
|
|
1202
|
+
*/
|
|
1203
|
+
}; /**
|
|
1204
|
+
* The placement of the dropdown calendar popup.
|
|
1205
|
+
*/
|
|
1202
1206
|
iconReadonly: {
|
|
1203
1207
|
type: BooleanConstructor;
|
|
1204
|
-
default: boolean;
|
|
1208
|
+
default: boolean; /**
|
|
1209
|
+
* Disabled dates, a list of <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format
|
|
1210
|
+
* dates for which to disable selection.
|
|
1211
|
+
*/
|
|
1205
1212
|
};
|
|
1206
1213
|
hideIcon: {
|
|
1207
1214
|
type: BooleanConstructor;
|
|
@@ -1227,6 +1234,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1227
1234
|
type: NumberConstructor;
|
|
1228
1235
|
default: null;
|
|
1229
1236
|
};
|
|
1237
|
+
maxlengthLabel: {
|
|
1238
|
+
type: StringConstructor;
|
|
1239
|
+
default: string;
|
|
1240
|
+
};
|
|
1230
1241
|
debounce: {
|
|
1231
1242
|
type: NumberConstructor;
|
|
1232
1243
|
default: undefined;
|
|
@@ -1246,12 +1257,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1246
1257
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
1247
1258
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
1248
1259
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
1260
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
1249
1261
|
focus: () => void;
|
|
1250
1262
|
click: () => void;
|
|
1251
1263
|
onFocus: () => void;
|
|
1252
1264
|
onBlur: () => void;
|
|
1253
1265
|
iconClicked: ($event: Event) => void;
|
|
1254
|
-
changeValue: (event:
|
|
1266
|
+
changeValue: (event: InputEvent) => void;
|
|
1255
1267
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
1256
1268
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], import("vue").PublicProps, {
|
|
1257
1269
|
disabled: boolean;
|
|
@@ -1266,13 +1278,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1266
1278
|
inputmode: import("../../../neon").NeonInputMode;
|
|
1267
1279
|
modelValue: string;
|
|
1268
1280
|
state: import("../../../neon").NeonState;
|
|
1269
|
-
autocomplete:
|
|
1281
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
1270
1282
|
rows: number;
|
|
1271
1283
|
iconReadonly: boolean;
|
|
1272
1284
|
hideIcon: boolean;
|
|
1273
1285
|
stateHighlight: boolean;
|
|
1274
1286
|
stateIcon: boolean;
|
|
1275
1287
|
maxlength: number;
|
|
1288
|
+
maxlengthLabel: string;
|
|
1276
1289
|
}, true, {}, {}, {
|
|
1277
1290
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1278
1291
|
name: {
|
|
@@ -1372,7 +1385,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1372
1385
|
default: import("../../../neon").NeonInputMode;
|
|
1373
1386
|
};
|
|
1374
1387
|
autocomplete: {
|
|
1375
|
-
type:
|
|
1388
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
1376
1389
|
default: string;
|
|
1377
1390
|
};
|
|
1378
1391
|
state: {
|
|
@@ -1385,11 +1398,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1385
1398
|
};
|
|
1386
1399
|
icon: {
|
|
1387
1400
|
type: StringConstructor;
|
|
1388
|
-
default: null;
|
|
1389
|
-
|
|
1401
|
+
default: null; /**
|
|
1402
|
+
* The placement of the dropdown calendar popup.
|
|
1403
|
+
*/
|
|
1404
|
+
}; /**
|
|
1405
|
+
* The placement of the dropdown calendar popup.
|
|
1406
|
+
*/
|
|
1390
1407
|
iconReadonly: {
|
|
1391
1408
|
type: BooleanConstructor;
|
|
1392
|
-
default: boolean;
|
|
1409
|
+
default: boolean; /**
|
|
1410
|
+
* Disabled dates, a list of <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format
|
|
1411
|
+
* dates for which to disable selection.
|
|
1412
|
+
*/
|
|
1393
1413
|
};
|
|
1394
1414
|
hideIcon: {
|
|
1395
1415
|
type: BooleanConstructor;
|
|
@@ -1415,6 +1435,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1415
1435
|
type: NumberConstructor;
|
|
1416
1436
|
default: null;
|
|
1417
1437
|
};
|
|
1438
|
+
maxlengthLabel: {
|
|
1439
|
+
type: StringConstructor;
|
|
1440
|
+
default: string;
|
|
1441
|
+
};
|
|
1418
1442
|
debounce: {
|
|
1419
1443
|
type: NumberConstructor;
|
|
1420
1444
|
default: undefined;
|
|
@@ -1434,12 +1458,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1434
1458
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
1435
1459
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
1436
1460
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
1461
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
1437
1462
|
focus: () => void;
|
|
1438
1463
|
click: () => void;
|
|
1439
1464
|
onFocus: () => void;
|
|
1440
1465
|
onBlur: () => void;
|
|
1441
1466
|
iconClicked: ($event: Event) => void;
|
|
1442
|
-
changeValue: (event:
|
|
1467
|
+
changeValue: (event: InputEvent) => void;
|
|
1443
1468
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
1444
1469
|
}, {}, {}, {}, {
|
|
1445
1470
|
disabled: boolean;
|
|
@@ -1454,13 +1479,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1454
1479
|
inputmode: import("../../../neon").NeonInputMode;
|
|
1455
1480
|
modelValue: string;
|
|
1456
1481
|
state: import("../../../neon").NeonState;
|
|
1457
|
-
autocomplete:
|
|
1482
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
1458
1483
|
rows: number;
|
|
1459
1484
|
iconReadonly: boolean;
|
|
1460
1485
|
hideIcon: boolean;
|
|
1461
1486
|
stateHighlight: boolean;
|
|
1462
1487
|
stateIcon: boolean;
|
|
1463
1488
|
maxlength: number;
|
|
1489
|
+
maxlengthLabel: string;
|
|
1464
1490
|
}> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
1465
1491
|
id: {
|
|
1466
1492
|
type: StringConstructor;
|
|
@@ -1491,7 +1517,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1491
1517
|
default: import("../../../neon").NeonInputMode;
|
|
1492
1518
|
};
|
|
1493
1519
|
autocomplete: {
|
|
1494
|
-
type:
|
|
1520
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
1495
1521
|
default: string;
|
|
1496
1522
|
};
|
|
1497
1523
|
state: {
|
|
@@ -1504,11 +1530,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1504
1530
|
};
|
|
1505
1531
|
icon: {
|
|
1506
1532
|
type: StringConstructor;
|
|
1507
|
-
default: null;
|
|
1508
|
-
|
|
1533
|
+
default: null; /**
|
|
1534
|
+
* The placement of the dropdown calendar popup.
|
|
1535
|
+
*/
|
|
1536
|
+
}; /**
|
|
1537
|
+
* The placement of the dropdown calendar popup.
|
|
1538
|
+
*/
|
|
1509
1539
|
iconReadonly: {
|
|
1510
1540
|
type: BooleanConstructor;
|
|
1511
|
-
default: boolean;
|
|
1541
|
+
default: boolean; /**
|
|
1542
|
+
* Disabled dates, a list of <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format
|
|
1543
|
+
* dates for which to disable selection.
|
|
1544
|
+
*/
|
|
1512
1545
|
};
|
|
1513
1546
|
hideIcon: {
|
|
1514
1547
|
type: BooleanConstructor;
|
|
@@ -1534,6 +1567,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1534
1567
|
type: NumberConstructor;
|
|
1535
1568
|
default: null;
|
|
1536
1569
|
};
|
|
1570
|
+
maxlengthLabel: {
|
|
1571
|
+
type: StringConstructor;
|
|
1572
|
+
default: string;
|
|
1573
|
+
};
|
|
1537
1574
|
debounce: {
|
|
1538
1575
|
type: NumberConstructor;
|
|
1539
1576
|
default: undefined;
|
|
@@ -1553,12 +1590,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1553
1590
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
1554
1591
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
1555
1592
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
1593
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
1556
1594
|
focus: () => void;
|
|
1557
1595
|
click: () => void;
|
|
1558
1596
|
onFocus: () => void;
|
|
1559
1597
|
onBlur: () => void;
|
|
1560
1598
|
iconClicked: ($event: Event) => void;
|
|
1561
|
-
changeValue: (event:
|
|
1599
|
+
changeValue: (event: InputEvent) => void;
|
|
1562
1600
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
1563
1601
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], import("vue").PublicProps, {
|
|
1564
1602
|
disabled: boolean;
|
|
@@ -1573,13 +1611,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1573
1611
|
inputmode: import("../../../neon").NeonInputMode;
|
|
1574
1612
|
modelValue: string;
|
|
1575
1613
|
state: import("../../../neon").NeonState;
|
|
1576
|
-
autocomplete:
|
|
1614
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
1577
1615
|
rows: number;
|
|
1578
1616
|
iconReadonly: boolean;
|
|
1579
1617
|
hideIcon: boolean;
|
|
1580
1618
|
stateHighlight: boolean;
|
|
1581
1619
|
stateIcon: boolean;
|
|
1582
1620
|
maxlength: number;
|
|
1621
|
+
maxlengthLabel: string;
|
|
1583
1622
|
}, true, {}, {}, {
|
|
1584
1623
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1585
1624
|
name: {
|
|
@@ -1679,7 +1718,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1679
1718
|
default: import("../../../neon").NeonInputMode;
|
|
1680
1719
|
};
|
|
1681
1720
|
autocomplete: {
|
|
1682
|
-
type:
|
|
1721
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
1683
1722
|
default: string;
|
|
1684
1723
|
};
|
|
1685
1724
|
state: {
|
|
@@ -1692,11 +1731,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1692
1731
|
};
|
|
1693
1732
|
icon: {
|
|
1694
1733
|
type: StringConstructor;
|
|
1695
|
-
default: null;
|
|
1696
|
-
|
|
1734
|
+
default: null; /**
|
|
1735
|
+
* The placement of the dropdown calendar popup.
|
|
1736
|
+
*/
|
|
1737
|
+
}; /**
|
|
1738
|
+
* The placement of the dropdown calendar popup.
|
|
1739
|
+
*/
|
|
1697
1740
|
iconReadonly: {
|
|
1698
1741
|
type: BooleanConstructor;
|
|
1699
|
-
default: boolean;
|
|
1742
|
+
default: boolean; /**
|
|
1743
|
+
* Disabled dates, a list of <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format
|
|
1744
|
+
* dates for which to disable selection.
|
|
1745
|
+
*/
|
|
1700
1746
|
};
|
|
1701
1747
|
hideIcon: {
|
|
1702
1748
|
type: BooleanConstructor;
|
|
@@ -1722,6 +1768,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1722
1768
|
type: NumberConstructor;
|
|
1723
1769
|
default: null;
|
|
1724
1770
|
};
|
|
1771
|
+
maxlengthLabel: {
|
|
1772
|
+
type: StringConstructor;
|
|
1773
|
+
default: string;
|
|
1774
|
+
};
|
|
1725
1775
|
debounce: {
|
|
1726
1776
|
type: NumberConstructor;
|
|
1727
1777
|
default: undefined;
|
|
@@ -1741,12 +1791,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1741
1791
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
1742
1792
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
1743
1793
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
1794
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
1744
1795
|
focus: () => void;
|
|
1745
1796
|
click: () => void;
|
|
1746
1797
|
onFocus: () => void;
|
|
1747
1798
|
onBlur: () => void;
|
|
1748
1799
|
iconClicked: ($event: Event) => void;
|
|
1749
|
-
changeValue: (event:
|
|
1800
|
+
changeValue: (event: InputEvent) => void;
|
|
1750
1801
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
1751
1802
|
}, {}, {}, {}, {
|
|
1752
1803
|
disabled: boolean;
|
|
@@ -1761,13 +1812,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1761
1812
|
inputmode: import("../../../neon").NeonInputMode;
|
|
1762
1813
|
modelValue: string;
|
|
1763
1814
|
state: import("../../../neon").NeonState;
|
|
1764
|
-
autocomplete:
|
|
1815
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
1765
1816
|
rows: number;
|
|
1766
1817
|
iconReadonly: boolean;
|
|
1767
1818
|
hideIcon: boolean;
|
|
1768
1819
|
stateHighlight: boolean;
|
|
1769
1820
|
stateIcon: boolean;
|
|
1770
1821
|
maxlength: number;
|
|
1822
|
+
maxlengthLabel: string;
|
|
1771
1823
|
}> | null>;
|
|
1772
1824
|
files: import("vue").Ref<{
|
|
1773
1825
|
readonly lastModified: number;
|
|
@@ -2317,7 +2369,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2317
2369
|
default: import("../../../neon").NeonInputMode;
|
|
2318
2370
|
};
|
|
2319
2371
|
autocomplete: {
|
|
2320
|
-
type:
|
|
2372
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
2321
2373
|
default: string;
|
|
2322
2374
|
};
|
|
2323
2375
|
state: {
|
|
@@ -2330,11 +2382,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2330
2382
|
};
|
|
2331
2383
|
icon: {
|
|
2332
2384
|
type: StringConstructor;
|
|
2333
|
-
default: null;
|
|
2334
|
-
|
|
2385
|
+
default: null; /**
|
|
2386
|
+
* The placement of the dropdown calendar popup.
|
|
2387
|
+
*/
|
|
2388
|
+
}; /**
|
|
2389
|
+
* The placement of the dropdown calendar popup.
|
|
2390
|
+
*/
|
|
2335
2391
|
iconReadonly: {
|
|
2336
2392
|
type: BooleanConstructor;
|
|
2337
|
-
default: boolean;
|
|
2393
|
+
default: boolean; /**
|
|
2394
|
+
* Disabled dates, a list of <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format
|
|
2395
|
+
* dates for which to disable selection.
|
|
2396
|
+
*/
|
|
2338
2397
|
};
|
|
2339
2398
|
hideIcon: {
|
|
2340
2399
|
type: BooleanConstructor;
|
|
@@ -2360,6 +2419,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2360
2419
|
type: NumberConstructor;
|
|
2361
2420
|
default: null;
|
|
2362
2421
|
};
|
|
2422
|
+
maxlengthLabel: {
|
|
2423
|
+
type: StringConstructor;
|
|
2424
|
+
default: string;
|
|
2425
|
+
};
|
|
2363
2426
|
debounce: {
|
|
2364
2427
|
type: NumberConstructor;
|
|
2365
2428
|
default: undefined;
|
|
@@ -2374,12 +2437,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2374
2437
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
2375
2438
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
2376
2439
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
2440
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
2377
2441
|
focus: () => void;
|
|
2378
2442
|
click: () => void;
|
|
2379
2443
|
onFocus: () => void;
|
|
2380
2444
|
onBlur: () => void;
|
|
2381
2445
|
iconClicked: ($event: Event) => void;
|
|
2382
|
-
changeValue: (event:
|
|
2446
|
+
changeValue: (event: InputEvent) => void;
|
|
2383
2447
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
2384
2448
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], "update:modelValue" | "focus" | "blur" | "icon-click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2385
2449
|
id: {
|
|
@@ -2411,7 +2475,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2411
2475
|
default: import("../../../neon").NeonInputMode;
|
|
2412
2476
|
};
|
|
2413
2477
|
autocomplete: {
|
|
2414
|
-
type:
|
|
2478
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
2415
2479
|
default: string;
|
|
2416
2480
|
};
|
|
2417
2481
|
state: {
|
|
@@ -2424,11 +2488,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2424
2488
|
};
|
|
2425
2489
|
icon: {
|
|
2426
2490
|
type: StringConstructor;
|
|
2427
|
-
default: null;
|
|
2428
|
-
|
|
2491
|
+
default: null; /**
|
|
2492
|
+
* The placement of the dropdown calendar popup.
|
|
2493
|
+
*/
|
|
2494
|
+
}; /**
|
|
2495
|
+
* The placement of the dropdown calendar popup.
|
|
2496
|
+
*/
|
|
2429
2497
|
iconReadonly: {
|
|
2430
2498
|
type: BooleanConstructor;
|
|
2431
|
-
default: boolean;
|
|
2499
|
+
default: boolean; /**
|
|
2500
|
+
* Disabled dates, a list of <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format
|
|
2501
|
+
* dates for which to disable selection.
|
|
2502
|
+
*/
|
|
2432
2503
|
};
|
|
2433
2504
|
hideIcon: {
|
|
2434
2505
|
type: BooleanConstructor;
|
|
@@ -2454,6 +2525,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2454
2525
|
type: NumberConstructor;
|
|
2455
2526
|
default: null;
|
|
2456
2527
|
};
|
|
2528
|
+
maxlengthLabel: {
|
|
2529
|
+
type: StringConstructor;
|
|
2530
|
+
default: string;
|
|
2531
|
+
};
|
|
2457
2532
|
debounce: {
|
|
2458
2533
|
type: NumberConstructor;
|
|
2459
2534
|
default: undefined;
|
|
@@ -2476,13 +2551,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2476
2551
|
inputmode: import("../../../neon").NeonInputMode;
|
|
2477
2552
|
modelValue: string;
|
|
2478
2553
|
state: import("../../../neon").NeonState;
|
|
2479
|
-
autocomplete:
|
|
2554
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
2480
2555
|
rows: number;
|
|
2481
2556
|
iconReadonly: boolean;
|
|
2482
2557
|
hideIcon: boolean;
|
|
2483
2558
|
stateHighlight: boolean;
|
|
2484
2559
|
stateIcon: boolean;
|
|
2485
2560
|
maxlength: number;
|
|
2561
|
+
maxlengthLabel: string;
|
|
2486
2562
|
}, {}, {
|
|
2487
2563
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2488
2564
|
name: {
|
|
@@ -3207,7 +3283,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3207
3283
|
default: import("../../../neon").NeonInputMode;
|
|
3208
3284
|
};
|
|
3209
3285
|
autocomplete: {
|
|
3210
|
-
type:
|
|
3286
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
3211
3287
|
default: string;
|
|
3212
3288
|
};
|
|
3213
3289
|
state: {
|
|
@@ -3220,11 +3296,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3220
3296
|
};
|
|
3221
3297
|
icon: {
|
|
3222
3298
|
type: StringConstructor;
|
|
3223
|
-
default: null;
|
|
3224
|
-
|
|
3299
|
+
default: null; /**
|
|
3300
|
+
* The placement of the dropdown calendar popup.
|
|
3301
|
+
*/
|
|
3302
|
+
}; /**
|
|
3303
|
+
* The placement of the dropdown calendar popup.
|
|
3304
|
+
*/
|
|
3225
3305
|
iconReadonly: {
|
|
3226
3306
|
type: BooleanConstructor;
|
|
3227
|
-
default: boolean;
|
|
3307
|
+
default: boolean; /**
|
|
3308
|
+
* Disabled dates, a list of <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format
|
|
3309
|
+
* dates for which to disable selection.
|
|
3310
|
+
*/
|
|
3228
3311
|
};
|
|
3229
3312
|
hideIcon: {
|
|
3230
3313
|
type: BooleanConstructor;
|
|
@@ -3250,6 +3333,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3250
3333
|
type: NumberConstructor;
|
|
3251
3334
|
default: null;
|
|
3252
3335
|
};
|
|
3336
|
+
maxlengthLabel: {
|
|
3337
|
+
type: StringConstructor;
|
|
3338
|
+
default: string;
|
|
3339
|
+
};
|
|
3253
3340
|
debounce: {
|
|
3254
3341
|
type: NumberConstructor;
|
|
3255
3342
|
default: undefined;
|
|
@@ -3264,12 +3351,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3264
3351
|
iconName: import("vue").ComputedRef<string | undefined>;
|
|
3265
3352
|
iconColor: import("vue").ComputedRef<NeonFunctionalColor>;
|
|
3266
3353
|
computedPlaceholder: import("vue").ComputedRef<string>;
|
|
3354
|
+
counterLabel: import("vue").ComputedRef<string | null>;
|
|
3267
3355
|
focus: () => void;
|
|
3268
3356
|
click: () => void;
|
|
3269
3357
|
onFocus: () => void;
|
|
3270
3358
|
onBlur: () => void;
|
|
3271
3359
|
iconClicked: ($event: Event) => void;
|
|
3272
|
-
changeValue: (event:
|
|
3360
|
+
changeValue: (event: InputEvent) => void;
|
|
3273
3361
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
3274
3362
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "focus" | "blur" | "icon-click")[], "update:modelValue" | "focus" | "blur" | "icon-click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3275
3363
|
id: {
|
|
@@ -3301,7 +3389,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3301
3389
|
default: import("../../../neon").NeonInputMode;
|
|
3302
3390
|
};
|
|
3303
3391
|
autocomplete: {
|
|
3304
|
-
type:
|
|
3392
|
+
type: () => import("../../../neon").NeonInputMode;
|
|
3305
3393
|
default: string;
|
|
3306
3394
|
};
|
|
3307
3395
|
state: {
|
|
@@ -3314,11 +3402,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3314
3402
|
};
|
|
3315
3403
|
icon: {
|
|
3316
3404
|
type: StringConstructor;
|
|
3317
|
-
default: null;
|
|
3318
|
-
|
|
3405
|
+
default: null; /**
|
|
3406
|
+
* The placement of the dropdown calendar popup.
|
|
3407
|
+
*/
|
|
3408
|
+
}; /**
|
|
3409
|
+
* The placement of the dropdown calendar popup.
|
|
3410
|
+
*/
|
|
3319
3411
|
iconReadonly: {
|
|
3320
3412
|
type: BooleanConstructor;
|
|
3321
|
-
default: boolean;
|
|
3413
|
+
default: boolean; /**
|
|
3414
|
+
* Disabled dates, a list of <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> format
|
|
3415
|
+
* dates for which to disable selection.
|
|
3416
|
+
*/
|
|
3322
3417
|
};
|
|
3323
3418
|
hideIcon: {
|
|
3324
3419
|
type: BooleanConstructor;
|
|
@@ -3344,6 +3439,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3344
3439
|
type: NumberConstructor;
|
|
3345
3440
|
default: null;
|
|
3346
3441
|
};
|
|
3442
|
+
maxlengthLabel: {
|
|
3443
|
+
type: StringConstructor;
|
|
3444
|
+
default: string;
|
|
3445
|
+
};
|
|
3347
3446
|
debounce: {
|
|
3348
3447
|
type: NumberConstructor;
|
|
3349
3448
|
default: undefined;
|
|
@@ -3366,13 +3465,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3366
3465
|
inputmode: import("../../../neon").NeonInputMode;
|
|
3367
3466
|
modelValue: string;
|
|
3368
3467
|
state: import("../../../neon").NeonState;
|
|
3369
|
-
autocomplete:
|
|
3468
|
+
autocomplete: import("../../../neon").NeonInputMode;
|
|
3370
3469
|
rows: number;
|
|
3371
3470
|
iconReadonly: boolean;
|
|
3372
3471
|
hideIcon: boolean;
|
|
3373
3472
|
stateHighlight: boolean;
|
|
3374
3473
|
stateIcon: boolean;
|
|
3375
3474
|
maxlength: number;
|
|
3475
|
+
maxlengthLabel: string;
|
|
3376
3476
|
}, {}, {
|
|
3377
3477
|
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3378
3478
|
name: {
|
|
@@ -110,126 +110,5 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
110
110
|
labelFor: string;
|
|
111
111
|
optionalLabel: string;
|
|
112
112
|
messageColor: NeonFunctionalColor;
|
|
113
|
-
}, {}, {
|
|
114
|
-
NeonLabel: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
115
|
-
label: {
|
|
116
|
-
type: StringConstructor;
|
|
117
|
-
required: true;
|
|
118
|
-
};
|
|
119
|
-
icon: {
|
|
120
|
-
type: StringConstructor;
|
|
121
|
-
default: null;
|
|
122
|
-
};
|
|
123
|
-
iconPosition: {
|
|
124
|
-
type: () => import("../../../neon").NeonHorizontalPosition;
|
|
125
|
-
default: import("../../../neon").NeonHorizontalPosition;
|
|
126
|
-
};
|
|
127
|
-
size: {
|
|
128
|
-
type: () => import("../../../neon").NeonLabelSize;
|
|
129
|
-
default: import("../../../neon").NeonLabelSize;
|
|
130
|
-
};
|
|
131
|
-
disabled: {
|
|
132
|
-
type: BooleanConstructor;
|
|
133
|
-
default: boolean;
|
|
134
|
-
};
|
|
135
|
-
color: {
|
|
136
|
-
type: () => NeonFunctionalColor;
|
|
137
|
-
default: NeonFunctionalColor;
|
|
138
|
-
};
|
|
139
|
-
alternateColor: {
|
|
140
|
-
type: () => NeonFunctionalColor;
|
|
141
|
-
default: null;
|
|
142
|
-
};
|
|
143
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
144
|
-
label: {
|
|
145
|
-
type: StringConstructor;
|
|
146
|
-
required: true;
|
|
147
|
-
};
|
|
148
|
-
icon: {
|
|
149
|
-
type: StringConstructor;
|
|
150
|
-
default: null;
|
|
151
|
-
};
|
|
152
|
-
iconPosition: {
|
|
153
|
-
type: () => import("../../../neon").NeonHorizontalPosition;
|
|
154
|
-
default: import("../../../neon").NeonHorizontalPosition;
|
|
155
|
-
};
|
|
156
|
-
size: {
|
|
157
|
-
type: () => import("../../../neon").NeonLabelSize;
|
|
158
|
-
default: import("../../../neon").NeonLabelSize;
|
|
159
|
-
};
|
|
160
|
-
disabled: {
|
|
161
|
-
type: BooleanConstructor;
|
|
162
|
-
default: boolean;
|
|
163
|
-
};
|
|
164
|
-
color: {
|
|
165
|
-
type: () => NeonFunctionalColor;
|
|
166
|
-
default: NeonFunctionalColor;
|
|
167
|
-
};
|
|
168
|
-
alternateColor: {
|
|
169
|
-
type: () => NeonFunctionalColor;
|
|
170
|
-
default: null;
|
|
171
|
-
};
|
|
172
|
-
}>> & Readonly<{}>, {
|
|
173
|
-
disabled: boolean;
|
|
174
|
-
icon: string;
|
|
175
|
-
size: import("../../../neon").NeonLabelSize;
|
|
176
|
-
color: NeonFunctionalColor;
|
|
177
|
-
alternateColor: NeonFunctionalColor;
|
|
178
|
-
iconPosition: import("../../../neon").NeonHorizontalPosition;
|
|
179
|
-
}, {}, {
|
|
180
|
-
NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
181
|
-
name: {
|
|
182
|
-
type: StringConstructor;
|
|
183
|
-
required: true;
|
|
184
|
-
};
|
|
185
|
-
id: {
|
|
186
|
-
type: StringConstructor;
|
|
187
|
-
default: null;
|
|
188
|
-
};
|
|
189
|
-
color: {
|
|
190
|
-
type: () => NeonFunctionalColor;
|
|
191
|
-
default: null;
|
|
192
|
-
};
|
|
193
|
-
inverse: {
|
|
194
|
-
type: BooleanConstructor;
|
|
195
|
-
default: boolean;
|
|
196
|
-
};
|
|
197
|
-
disabled: {
|
|
198
|
-
type: BooleanConstructor;
|
|
199
|
-
default: boolean;
|
|
200
|
-
};
|
|
201
|
-
}>, {
|
|
202
|
-
sanitizedAttributes: import("vue").ComputedRef<{
|
|
203
|
-
[x: string]: unknown;
|
|
204
|
-
}>;
|
|
205
|
-
icon: import("vue").ComputedRef<string | undefined>;
|
|
206
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
207
|
-
name: {
|
|
208
|
-
type: StringConstructor;
|
|
209
|
-
required: true;
|
|
210
|
-
};
|
|
211
|
-
id: {
|
|
212
|
-
type: StringConstructor;
|
|
213
|
-
default: null;
|
|
214
|
-
};
|
|
215
|
-
color: {
|
|
216
|
-
type: () => NeonFunctionalColor;
|
|
217
|
-
default: null;
|
|
218
|
-
};
|
|
219
|
-
inverse: {
|
|
220
|
-
type: BooleanConstructor;
|
|
221
|
-
default: boolean;
|
|
222
|
-
};
|
|
223
|
-
disabled: {
|
|
224
|
-
type: BooleanConstructor;
|
|
225
|
-
default: boolean;
|
|
226
|
-
};
|
|
227
|
-
}>> & Readonly<{}>, {
|
|
228
|
-
disabled: boolean;
|
|
229
|
-
color: NeonFunctionalColor;
|
|
230
|
-
id: string;
|
|
231
|
-
inverse: boolean;
|
|
232
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
233
|
-
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
234
|
-
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
113
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
235
114
|
export default _default;
|