generic-ui-core 1.6.0-rc3 → 1.6.0-rc4
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 +5 -1
- package/dist/index.d.ts +0 -1
- package/dist/main.js +1606 -1604
- package/package.json +21 -21
package/README.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
# Generic UI Core
|
|
1
|
+
# Generic UI Core
|
|
2
2
|
|
|
3
3
|
A support library for generic UI components.
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/generic-ui-core)
|
|
6
|
+
[](https://www.npmjs.com/package/generic-ui-core)
|
|
7
|
+

|
|
8
|
+
|
|
5
9
|
## Installation
|
|
6
10
|
|
|
7
11
|
You can install `generic-ui-core` using npm:
|
package/dist/index.d.ts
CHANGED
|
@@ -120,7 +120,6 @@ declare module 'generic-ui-core' {
|
|
|
120
120
|
export function getUnitSystem(externalUnits?: Record<string, any>): any[];
|
|
121
121
|
export function genUnit(type: string, unit: string): Record<string, string>;
|
|
122
122
|
export function genUnits(type: string): Array<Record<string, string>>;
|
|
123
|
-
export function unitConvertToBase(value: number, fromUnit: string): number;
|
|
124
123
|
export function unitConversion(
|
|
125
124
|
value: number,
|
|
126
125
|
fromUnit: string,
|