@mdtl/uikit 0.0.67 → 0.0.68
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/uikit.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mdtl/uikit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.68",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/uikit.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -16,9 +16,7 @@
|
|
|
16
16
|
"lint:fix": "eslint \"lib/**/*.{ts,tsx,js,jsx,json,md}\" --ext .ts,.tsx,.js,.jsx --fix",
|
|
17
17
|
"preview": "vite preview",
|
|
18
18
|
"prepare": "husky",
|
|
19
|
-
"pub": "npm publish --access public"
|
|
20
|
-
"storybook": "storybook dev -p 6006",
|
|
21
|
-
"build-storybook": "storybook build"
|
|
19
|
+
"pub": "npm publish --access public"
|
|
22
20
|
},
|
|
23
21
|
"peerDependencies": {
|
|
24
22
|
"@emotion/react": "^11.14.0",
|
|
@@ -80,18 +78,6 @@
|
|
|
80
78
|
"vite-plugin-checker": "^0.6.2",
|
|
81
79
|
"vite-plugin-circular-dependency": "^0.2.1",
|
|
82
80
|
"vite-plugin-dts": "^4.5.4",
|
|
83
|
-
"storybook": "^10.1.11",
|
|
84
|
-
"@storybook/react-vite": "^10.1.11",
|
|
85
|
-
"@chromatic-com/storybook": "^5.0.0",
|
|
86
|
-
"@storybook/addon-vitest": "^10.1.11",
|
|
87
|
-
"@storybook/addon-a11y": "^10.1.11",
|
|
88
|
-
"@storybook/addon-docs": "^10.1.11",
|
|
89
|
-
"@storybook/addon-onboarding": "^10.1.11",
|
|
90
|
-
"eslint-plugin-storybook": "^10.1.11",
|
|
91
|
-
"vitest": "^4.0.17",
|
|
92
|
-
"playwright": "^1.57.0",
|
|
93
|
-
"@vitest/browser-playwright": "^4.0.17",
|
|
94
|
-
"@vitest/coverage-v8": "^4.0.17",
|
|
95
81
|
"vite-plugin-html": "^3.2.0",
|
|
96
82
|
"date-fns": "^4.1.0",
|
|
97
83
|
"@tanstack/react-table": "^8.21.3",
|
|
@@ -101,4 +87,4 @@
|
|
|
101
87
|
"@dnd-kit/sortable": "^8.0.0",
|
|
102
88
|
"@dnd-kit/utilities": "^3.2.2"
|
|
103
89
|
}
|
|
104
|
-
}
|
|
90
|
+
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { StoryObj } from '@storybook/react-vite';
|
|
2
|
-
import { Checkbox } from '@mui/material';
|
|
3
|
-
declare const meta: {
|
|
4
|
-
title: string;
|
|
5
|
-
component: typeof Checkbox;
|
|
6
|
-
parameters: {
|
|
7
|
-
layout: string;
|
|
8
|
-
};
|
|
9
|
-
tags: string[];
|
|
10
|
-
args: {};
|
|
11
|
-
};
|
|
12
|
-
export default meta;
|
|
13
|
-
type Story = StoryObj<typeof meta>;
|
|
14
|
-
export declare const Primary: Story;
|