prlg-ui 1.8.143 → 1.8.145
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/icons/index.cjs.js +1 -1
- package/dist/icons/index.es.js +255 -236
- package/dist/icons.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.es.js +25 -9
- package/package.json +1 -1
package/dist/icons.d.ts
CHANGED
|
@@ -175,6 +175,8 @@ export declare const SendIcon: DefineComponent< {}, {}, {}, {}, {}, Component
|
|
|
175
175
|
|
|
176
176
|
export declare const SettingsIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
177
177
|
|
|
178
|
+
export declare const ShieldErrorIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
179
|
+
|
|
178
180
|
export declare const ShoppingCartIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
179
181
|
|
|
180
182
|
export declare const SortDownFillIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1660,6 +1660,7 @@ length: number;
|
|
|
1660
1660
|
error: boolean;
|
|
1661
1661
|
required: boolean;
|
|
1662
1662
|
readonly: boolean;
|
|
1663
|
+
inputmode: "text" | "numeric";
|
|
1663
1664
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1664
1665
|
inputRefs: HTMLInputElement[];
|
|
1665
1666
|
}, HTMLDivElement>;
|
|
@@ -1674,6 +1675,7 @@ declare interface OTPCodeProps {
|
|
|
1674
1675
|
required?: boolean;
|
|
1675
1676
|
size?: 'small' | 'default' | 'large';
|
|
1676
1677
|
variant?: 'outlined' | 'fill';
|
|
1678
|
+
inputmode?: 'text' | 'numeric';
|
|
1677
1679
|
}
|
|
1678
1680
|
|
|
1679
1681
|
export declare const OverlayBadge: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|