@useinsider/ab-components 0.0.82-beta.3 → 0.0.82
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/ab-components.cjs.js +1 -1
- package/dist/ab-components.cjs.js.map +1 -1
- package/dist/ab-components.css +1 -1
- package/dist/ab-components.es.js +14 -19
- package/dist/ab-components.es.js.map +1 -1
- package/dist/ab-components.iife.js +3 -3
- package/dist/ab-components.iife.js.map +1 -1
- package/dist/ab-components.umd.js +3 -3
- package/dist/ab-components.umd.js.map +1 -1
- package/dist/icons.svg +1 -1
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/icons.svg
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" style="display:none !important">
|
|
2
2
|
<symbol width="24" height="25" viewBox="0 0 24 25" id="icon-info-box-error">
|
|
3
3
|
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
4
4
|
d="M12 22.2022C17.5228 22.2022 22 17.725 22 12.2021C22 6.6793 17.5228 2.20215 12 2.20215C6.47715 2.20215 2 6.6793 2 12.2021C2 17.725 6.47715 22.2022 12 22.2022ZM24 12.2021C24 18.8296 18.6274 24.2022 12 24.2022C5.37258 24.2022 0 18.8296 0 12.2021C0 5.57473 5.37258 0.202148 12 0.202148C18.6274 0.202148 24 5.57473 24 12.2021Z" />
|
package/dist/index.d.ts
CHANGED
|
@@ -533,12 +533,12 @@ export declare const InBasicTextInput: __VLS_WithTemplateSlots_4<typeof __VLS_co
|
|
|
533
533
|
declare interface InBasicTextInputProps {
|
|
534
534
|
id: string;
|
|
535
535
|
name: string;
|
|
536
|
-
theme?:
|
|
536
|
+
theme?: "grey" | "white";
|
|
537
537
|
modelValue?: string | number;
|
|
538
538
|
labelStatus?: boolean;
|
|
539
539
|
labelText?: string;
|
|
540
|
-
type?:
|
|
541
|
-
states?:
|
|
540
|
+
type?: "text" | "number";
|
|
541
|
+
states?: "default" | "error" | "warning";
|
|
542
542
|
placeholderText: string;
|
|
543
543
|
disabledStatus?: boolean;
|
|
544
544
|
readonly?: boolean;
|