@appkit/dek-ui 0.1.5 → 0.5.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/dist/components/Charts/LineChart/LineChart.d.ts +10 -0
- package/dist/components/ColorPicker/ColorPicker.d.ts +8 -0
- package/dist/components/Dropdown/Dropdown.d.ts +17 -0
- package/dist/components/Dropdown/Dropdown.styled.d.ts +20 -0
- package/dist/components/Grid/Grid.d.ts +15 -4
- package/dist/components/Grid/Grid.styled.d.ts +10 -1
- package/dist/components/HeadingText/HeadingText.d.ts +4 -0
- package/dist/components/MenuBar/MenuBar.d.ts +13 -0
- package/dist/components/MenuBar/MenuBarItem.d.ts +7 -0
- package/dist/components/Slider/Slider.d.ts +11 -0
- package/dist/components/Stack/NonPassiveTouchTarget.d.ts +10 -0
- package/dist/components/Stack/Stack.d.ts +11 -0
- package/dist/components/Stack/Stack.styled.d.ts +292 -0
- package/dist/components/Stack/StackContainer.d.ts +2 -0
- package/dist/components/Stack/StackContainer.styled.d.ts +32 -0
- package/dist/components/Stack/touchWithMouseHOC.d.ts +56 -0
- package/dist/components/Stack/utils.d.ts +9 -0
- package/dist/components/TileChart/TileChart.d.ts +27 -0
- package/dist/components/TitleBar/TitleBar.d.ts +2 -1
- package/dist/components/View/View.d.ts +3 -1
- package/dist/components/View/View.styled.d.ts +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.es.js +22044 -15705
- package/dist/index.umd.js +319 -84
- package/dist/stories/ColorPicker.stories.d.ts +7 -0
- package/dist/stories/Dropdown.stories.d.ts +6 -0
- package/dist/stories/MenuBar.stories.d.ts +7 -0
- package/dist/stories/Slider.stories.d.ts +7 -0
- package/dist/stories/Stack.stories.d.ts +8 -0
- package/dist/stories/TileChart.stories.d.ts +7 -0
- package/dist/stories/TitleBar.stories.d.ts +1 -0
- package/package.json +9 -2
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import ColorPicker from '../components/ColorPicker/ColorPicker';
|
|
3
|
+
declare const meta: Meta<typeof ColorPicker>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof ColorPicker>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Resized: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import MenuBar from '../components/MenuBar/MenuBar';
|
|
3
|
+
declare const meta: Meta<typeof MenuBar>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof MenuBar>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const Horizontal: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import Slider from '../components/Slider/Slider';
|
|
3
|
+
declare const meta: Meta<typeof Slider>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Slider>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const MinMaxStep: Story;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import Stack from '../components/Stack/Stack';
|
|
3
|
+
declare const meta: Meta<typeof Stack>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Stack>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const NoPadding: Story;
|
|
8
|
+
export declare const CustomContent: Story;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import TileChart from '../components/TileChart/TileChart';
|
|
3
|
+
declare const meta: Meta<typeof TileChart>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof TileChart>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
export declare const CardSize: Story;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appkit/dek-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.5.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "tsc && vite build",
|
|
@@ -12,11 +12,17 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"axios": "^1.6.2",
|
|
15
|
+
"chart.js": "^4.4.1",
|
|
15
16
|
"moment": "^2.29.4",
|
|
16
17
|
"react": "^16.8.0 || 17.x || 18.x",
|
|
18
|
+
"react-chartjs-2": "^5.2.0",
|
|
19
|
+
"react-colorful": "^5.6.1",
|
|
17
20
|
"react-dom": "^16.8.0 || 17.x || 18.x",
|
|
21
|
+
"react-dropdown": "^1.11.0",
|
|
18
22
|
"react-icons": "^4.11.0",
|
|
19
|
-
"
|
|
23
|
+
"react-slider": "^2.0.6",
|
|
24
|
+
"styled-components": "^5.0.0 || 6.x",
|
|
25
|
+
"usehooks-ts": "^2.9.1"
|
|
20
26
|
},
|
|
21
27
|
"devDependencies": {
|
|
22
28
|
"@storybook/addon-essentials": "^7.6.3",
|
|
@@ -30,6 +36,7 @@
|
|
|
30
36
|
"@storybook/test": "^7.6.3",
|
|
31
37
|
"@types/react": "^18.2.15",
|
|
32
38
|
"@types/react-dom": "^18.2.7",
|
|
39
|
+
"@types/react-slider": "^1.3.6",
|
|
33
40
|
"@typescript-eslint/eslint-plugin": "^6.9.0",
|
|
34
41
|
"@typescript-eslint/parser": "^6.9.0",
|
|
35
42
|
"@vitejs/plugin-react": "^4.0.3",
|