@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.
@@ -7,7 +7,6 @@ export declare const checkboxConfig: {
7
7
  disableTouchRipple: boolean;
8
8
  icon: React.ReactNode;
9
9
  checkedIcon: React.ReactNode;
10
- id: string;
11
10
  };
12
11
  variants: ({
13
12
  props: {
@@ -7,7 +7,6 @@ export declare const radioConfig: {
7
7
  disableTouchRipple: boolean;
8
8
  icon: React.ReactNode;
9
9
  checkedIcon: React.ReactNode;
10
- id: string;
11
10
  };
12
11
  variants: ({
13
12
  props: {
@@ -11,7 +11,6 @@ export declare const createCheckConfig: ({ icon, checkedIcon, indeterminateIcon
11
11
  disableTouchRipple: boolean;
12
12
  icon: import('react').ReactNode;
13
13
  checkedIcon: import('react').ReactNode;
14
- id: string;
15
14
  };
16
15
  variants: ({
17
16
  props: {
package/dist/uikit.js CHANGED
@@ -4249,7 +4249,6 @@ const Im = (e) => /* @__PURE__ */ f(mt, { ...e, children: /* @__PURE__ */ f("svg
4249
4249
  disableTouchRipple: !0,
4250
4250
  icon: e,
4251
4251
  checkedIcon: t,
4252
- id: "test-default-props",
4253
4252
  ...n && { indeterminateIcon: n }
4254
4253
  },
4255
4254
  variants: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mdtl/uikit",
3
- "version": "0.0.67",
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;