prlg-ui 1.8.145 → 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 +5 -3
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +1124 -1117
- 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 = {
|