prlg-ui 1.8.144 → 1.8.146
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/index.d.ts +7 -3
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +1144 -1121
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1373,7 +1373,7 @@ declare type DrawerProps = {
|
|
|
1373
1373
|
export declare const Dropdown: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
1374
1374
|
|
|
1375
1375
|
declare interface DropdownOption {
|
|
1376
|
-
value?: string | number;
|
|
1376
|
+
value?: string | number | null;
|
|
1377
1377
|
label?: string | number;
|
|
1378
1378
|
disabled?: boolean;
|
|
1379
1379
|
[key: string]: any;
|
|
@@ -1600,14 +1600,16 @@ declare type InputTextProps = {
|
|
|
1600
1600
|
disabled?: boolean;
|
|
1601
1601
|
error?: boolean;
|
|
1602
1602
|
errorText?: string;
|
|
1603
|
-
type?:
|
|
1604
|
-
size?:
|
|
1603
|
+
type?: 'text' | 'password';
|
|
1604
|
+
size?: 'small' | 'default' | 'large';
|
|
1605
1605
|
inputId?: string;
|
|
1606
1606
|
variant?: 'empty' | 'outlined' | 'fill';
|
|
1607
1607
|
value?: string;
|
|
1608
1608
|
required?: boolean;
|
|
1609
1609
|
full?: boolean;
|
|
1610
1610
|
readonly?: boolean;
|
|
1611
|
+
maxlength?: number;
|
|
1612
|
+
showMaxLength?: boolean;
|
|
1611
1613
|
};
|
|
1612
1614
|
|
|
1613
1615
|
declare type MenuItem = {
|
|
@@ -1660,6 +1662,7 @@ length: number;
|
|
|
1660
1662
|
error: boolean;
|
|
1661
1663
|
required: boolean;
|
|
1662
1664
|
readonly: boolean;
|
|
1665
|
+
inputmode: "text" | "numeric";
|
|
1663
1666
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1664
1667
|
inputRefs: HTMLInputElement[];
|
|
1665
1668
|
}, HTMLDivElement>;
|
|
@@ -1674,6 +1677,7 @@ declare interface OTPCodeProps {
|
|
|
1674
1677
|
required?: boolean;
|
|
1675
1678
|
size?: 'small' | 'default' | 'large';
|
|
1676
1679
|
variant?: 'outlined' | 'fill';
|
|
1680
|
+
inputmode?: 'text' | 'numeric';
|
|
1677
1681
|
}
|
|
1678
1682
|
|
|
1679
1683
|
export declare const OverlayBadge: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|