koval-ui 0.16.12 → 0.17.1
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 +1 -1
- package/dist/favicon.ico +0 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1306 -1303
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +2 -2
- package/dist/index.umd.cjs.map +1 -1
- package/dist/koval-ui/favicon.ico +0 -0
- package/dist/storybook-logo.svg +37 -72
- package/dist/storybook-social.png +0 -0
- package/dist/style.css +1 -1
- package/package.json +56 -57
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
# Koval components library
|
|
10
10
|
|
|
11
|
-
[](#)
|
|
11
|
+
[](#)
|
|
12
12
|
|
|
13
13
|
Koval UI is a React component library built for modern browsers. Each component tries to utilize built-in browser APIs to full extent.
|
|
14
14
|
|
package/dist/favicon.ico
ADDED
|
Binary file
|
package/dist/index.d.ts
CHANGED
|
@@ -1517,6 +1517,10 @@ className?: string | undefined;
|
|
|
1517
1517
|
} & SVGProps<SVGSVGElement>> | undefined;
|
|
1518
1518
|
bars?: number | undefined;
|
|
1519
1519
|
scaleUnit?: string | undefined;
|
|
1520
|
+
/**
|
|
1521
|
+
* Enable to display scale below input
|
|
1522
|
+
*/
|
|
1523
|
+
displayScale?: boolean | undefined;
|
|
1520
1524
|
} & RefAttributes<HTMLInputElement>>;
|
|
1521
1525
|
|
|
1522
1526
|
export declare const InputText: ForwardRefExoticComponent<DataAttributes & AriaAttributes & {
|