@appkit/dek-ui 0.6.0 → 0.8.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.
@@ -28,6 +28,9 @@ declare const _default: {
28
28
  bold: number;
29
29
  xbold: number;
30
30
  xxbold: number;
31
+ heavy: number;
32
+ xheavy: number;
33
+ xxheavy: number;
31
34
  heading: number;
32
35
  };
33
36
  family: {
@@ -0,0 +1,3 @@
1
+ import { TextColor } from '../../components/Text/Text';
2
+ declare function textColorToCSS(color: TextColor | string): string;
3
+ export default textColorToCSS;
@@ -0,0 +1,3 @@
1
+ import { TextFamily } from '../../components/Text/Text';
2
+ declare function textFamilyToCSS(family: TextFamily | string): string;
3
+ export default textFamilyToCSS;
@@ -0,0 +1,3 @@
1
+ import { TextSize } from '../../components/Text/Text';
2
+ declare function textSizeToCSS(size?: TextSize | number): number;
3
+ export default textSizeToCSS;
@@ -0,0 +1,3 @@
1
+ import { TextSize } from '../../components/Text/Text';
2
+ declare function textSizeToLineCSS(size?: TextSize | number): number;
3
+ export default textSizeToLineCSS;
@@ -0,0 +1,3 @@
1
+ import { TextWeight } from '../../components/Text/Text';
2
+ declare function textWeightToCSS(weight?: TextWeight | number): number;
3
+ export default textWeightToCSS;
@@ -4,4 +4,5 @@ declare const meta: Meta<typeof ColorPicker>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof ColorPicker>;
6
6
  export declare const Default: Story;
7
+ export declare const Alpha: Story;
7
8
  export declare const Resized: Story;
@@ -4,3 +4,4 @@ declare const meta: Meta<typeof Dropdown>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof Dropdown>;
6
6
  export declare const Default: Story;
7
+ export declare const Custom: Story;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@appkit/dek-ui",
3
3
  "private": false,
4
- "version": "0.6.0",
4
+ "version": "0.8.0",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "build": "tsc && vite build",
@@ -13,12 +13,15 @@
13
13
  "dependencies": {
14
14
  "axios": "^1.6.2",
15
15
  "chart.js": "^4.4.1",
16
+ "install": "^0.13.0",
16
17
  "moment": "^2.29.4",
18
+ "npm": "^10.2.5",
17
19
  "react": "^16.8.0 || 17.x || 18.x",
18
20
  "react-chartjs-2": "^5.2.0",
19
21
  "react-colorful": "^5.6.1",
20
22
  "react-dom": "^16.8.0 || 17.x || 18.x",
21
23
  "react-dropdown": "^1.11.0",
24
+ "react-google-font-loader": "^1.1.0",
22
25
  "react-icons": "^4.11.0",
23
26
  "react-slider": "^2.0.6",
24
27
  "styled-components": "^5.0.0 || 6.x",