@choosemycompany/ui 0.12.1 → 0.14.0
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/README.md +2 -5
- package/dist/assets/index.css +1 -1
- package/dist/index.d.ts +2 -6
- package/dist/index.js +660 -668
- package/dist/index.umd.js +5 -5
- package/package.json +23 -21
package/dist/index.d.ts
CHANGED
|
@@ -126,6 +126,8 @@ declare type __VLS_Props_6 = {
|
|
|
126
126
|
variant?: inputVariant;
|
|
127
127
|
size?: inputSize;
|
|
128
128
|
description?: string;
|
|
129
|
+
min?: number;
|
|
130
|
+
max?: number;
|
|
129
131
|
};
|
|
130
132
|
|
|
131
133
|
declare type __VLS_Props_7 = {
|
|
@@ -189,9 +191,6 @@ declare function __VLS_template_2(): {
|
|
|
189
191
|
default?(_: {}): any;
|
|
190
192
|
default?(_: {}): any;
|
|
191
193
|
default?(_: {}): any;
|
|
192
|
-
default?(_: {}): any;
|
|
193
|
-
default?(_: {}): any;
|
|
194
|
-
default?(_: {}): any;
|
|
195
194
|
};
|
|
196
195
|
refs: {};
|
|
197
196
|
rootEl: any;
|
|
@@ -408,9 +407,6 @@ export declare const headingLevelOptions: {
|
|
|
408
407
|
readonly h1: "h1";
|
|
409
408
|
readonly h2: "h2";
|
|
410
409
|
readonly h3: "h3";
|
|
411
|
-
readonly h4: "h4";
|
|
412
|
-
readonly h5: "h5";
|
|
413
|
-
readonly h6: "h6";
|
|
414
410
|
};
|
|
415
411
|
|
|
416
412
|
declare type HeadingLevels = keyof typeof headingLevelOptions;
|