mhz-ui 1.4.16 → 1.4.18

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.
@@ -13114,7 +13114,7 @@ var ig = K.create({
13114
13114
  key: e,
13115
13115
  appendTransaction: (n, r, i) => {
13116
13116
  let { doc: a, tr: o, schema: s } = i, c = e.getState(i), l = a.content.size, u = s.nodes[t];
13117
- if (c) return o.insert(l, u.create());
13117
+ if (!n.some((e) => e.getMeta("skipTrailingNode")) && c) return o.insert(l, u.create());
13118
13118
  },
13119
13119
  state: {
13120
13120
  init: (e, t) => {
@@ -0,0 +1,25 @@
1
+ export { default as UiBreadcrumbs } from './UiBreadcrumbs/UiBreadcrumbs';
2
+ export { default as UiButton } from './UiButton/UiButton';
3
+ export { default as UiButtongroup } from './UiButtongroup/UiButtongroup';
4
+ export { default as UiCalendar } from './UiCalendar/UiCalendar';
5
+ export { default as UiChart } from './UiChart/UiChart';
6
+ export { default as UiCheckbox } from './UiCheckbox/UiCheckbox';
7
+ export { default as UiChip } from './UiChip/UiChip';
8
+ export { default as UiClose } from './UiClose/UiClose';
9
+ export { default as UiEditor } from './UiEditor/UiEditor';
10
+ export { default as UiField } from './UiField/UiField';
11
+ export { default as UiFlex } from './UiFlex/UiFlex';
12
+ export { default as UiInput } from './UiInput/UiInput';
13
+ export { default as UiModal } from './UiModal/UiModal';
14
+ export { default as UiPagination } from './UiPagination/UiPagination';
15
+ export { default as UiRange } from './UiRange/UiRange';
16
+ export { default as UiSearch } from './UiSearch/UiSearch';
17
+ export { default as UiSelect } from './UiSelect/UiSelect';
18
+ export { default as UiSpoiler } from './UiSpoiler/UiSpoiler';
19
+ export { default as UiSlider } from './UiSlider/UiSlider';
20
+ export { default as UiTable } from './UiTable/UiTable';
21
+ export { default as UiTabs } from './UiTabs/UiTabs';
22
+ export { default as UiTextarea } from './UiTextarea/UiTextarea';
23
+ export { default as UiUpload } from './UiUpload/UiUpload';
24
+ export { default as toast } from './toast/toast';
25
+ export { uiStubs } from './stubs/stubs';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mhz-ui",
3
3
  "description": "Mhz ui kit",
4
- "version": "1.4.16",
4
+ "version": "1.4.18",
5
5
  "author": "Alexandr Dergunov <dergunovs@mail.ru> (https://github.com/dergunovs)",
6
6
  "license": "MIT",
7
7
  "type": "module",
@@ -21,34 +21,34 @@
21
21
  "dev": "storybook dev -p 6006 --no-open",
22
22
  "lint": "eslint **/*.{js,ts,vue} && stylelint src/**/*.{scss,vue}",
23
23
  "ts": "vue-tsc --noEmit",
24
- "test": "vitest run",
25
- "test:cov": "vitest run --coverage"
24
+ "test": "NODE_OPTIONS='--no-experimental-webstorage' vitest run",
25
+ "test:cov": "NODE_OPTIONS='--no-experimental-webstorage' vitest run --coverage"
26
26
  },
27
27
  "dependencies": {
28
- "@tiptap/pm": "3.20.4",
29
- "@tiptap/starter-kit": "3.20.4",
30
- "@tiptap/vue-3": "3.20.4",
28
+ "@tiptap/pm": "3.20.5",
29
+ "@tiptap/starter-kit": "3.20.5",
30
+ "@tiptap/vue-3": "3.20.5",
31
31
  "@vueform/slider": "2.1.10",
32
32
  "@vueuse/core": "14.2.1",
33
33
  "@vueuse/integrations": "14.2.1",
34
34
  "chart.js": "4.5.1",
35
35
  "mhz-helpers": "*",
36
36
  "perfect-debounce": "2.1.0",
37
- "vue": "3.6.0-beta.8",
37
+ "vue": "3.6.0-beta.9",
38
38
  "vue-chartjs": "5.3.3",
39
39
  "vue-router": "5.0.4"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@eslint/js": "10.0.1",
43
- "@storybook/addon-docs": "10.3.1",
44
- "@storybook/addon-themes": "10.3.1",
45
- "@storybook/vue3": "10.3.1",
46
- "@storybook/vue3-vite": "10.3.1",
43
+ "@storybook/addon-docs": "10.3.3",
44
+ "@storybook/addon-themes": "10.3.3",
45
+ "@storybook/vue3": "10.3.3",
46
+ "@storybook/vue3-vite": "10.3.3",
47
47
  "@types/node": "25.5.0",
48
48
  "@vitejs/plugin-vue": "6.0.5",
49
- "@vitest/coverage-v8": "4.1.0",
49
+ "@vitest/coverage-v8": "4.1.1",
50
50
  "@vue/test-utils": "2.4.6",
51
- "eslint": "10.0.3",
51
+ "eslint": "10.1.0",
52
52
  "eslint-config-prettier": "10.1.8",
53
53
  "eslint-import-resolver-typescript": "4.4.4",
54
54
  "eslint-plugin-import-x": "4.16.2",
@@ -57,12 +57,12 @@
57
57
  "eslint-plugin-unicorn": "63.0.0",
58
58
  "eslint-plugin-vue": "10.8.0",
59
59
  "globals": "17.4.0",
60
- "happy-dom": "20.8.4",
60
+ "happy-dom": "20.8.8",
61
61
  "postcss-html": "1.8.1",
62
62
  "postcss-scss": "4.0.9",
63
63
  "prettier": "3.8.1",
64
64
  "sass-embedded": "1.98.0",
65
- "storybook": "10.3.1",
65
+ "storybook": "10.3.3",
66
66
  "stylelint": "17.5.0",
67
67
  "stylelint-config-recess-order": "7.7.0",
68
68
  "stylelint-config-recommended-scss": "17.0.0",
@@ -70,18 +70,18 @@
70
70
  "stylelint-order": "8.1.1",
71
71
  "stylelint-prettier": "5.0.3",
72
72
  "typescript": "5.9.3",
73
- "typescript-eslint": "8.57.1",
74
- "vite": "8.0.1",
73
+ "typescript-eslint": "8.57.2",
74
+ "vite": "8.0.3",
75
75
  "vite-plugin-dts": "4.5.4",
76
- "vite-plugin-static-copy": "3.3.0",
76
+ "vite-plugin-static-copy": "4.0.0",
77
77
  "vite-svg-loader": "5.1.1",
78
- "vitest": "4.1.0",
78
+ "vitest": "4.1.1",
79
79
  "vue-eslint-parser": "10.4.0",
80
- "vue-linters-config": "0.5.5",
80
+ "vue-linters-config": "0.5.7",
81
81
  "vue-tsc": "3.2.6"
82
82
  },
83
83
  "peerDependencies": {
84
- "vue": "3.6.0-beta.8",
84
+ "vue": "3.6.0-beta.9",
85
85
  "vue-router": "5.0.4"
86
86
  },
87
87
  "engines": {
File without changes