@nanoporetech-digital/components-vue 6.8.5 → 7.0.1
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/CHANGELOG.md +16 -0
- package/dist/web-types.json +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [7.0.1](https://git.oxfordnanolabs.local/Digital/nano-components/compare/v7.0.0...v7.0.1) (2025-01-08)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @nanoporetech-digital/components-vue
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [7.0.0](https://git.oxfordnanolabs.local/Digital/nano-components/compare/v6.8.5...v7.0.0) (2025-01-07)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @nanoporetech-digital/components-vue
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [6.8.5](https://git.oxfordnanolabs.local/Digital/nano-components/compare/v6.8.4...v6.8.5) (2024-11-15)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @nanoporetech-digital/components-vue
|
package/dist/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@nanoporetech-digital/components-vue",
|
|
5
|
-
"version": "
|
|
5
|
+
"version": "7.0.0",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -5848,7 +5848,7 @@
|
|
|
5848
5848
|
"name": "createKeyboardHandle",
|
|
5849
5849
|
"description": "A function that should attach a keyboard accessible control.\nWhen a `handleSelector` is not used - to allow keyboard accessibility -\n`createKeyboardHandle` should render a focusable element.\n\nIf your sortable item is itself focusable,\nyou must use this function to render a control *outside* of the focusable element.",
|
|
5850
5850
|
"required": false,
|
|
5851
|
-
"default": "(_number: number, _element: Element) => {\n const handleTpl = /* html */ `\n <nano-icon-button\n slot=\"end\"\n icon-name=\"light/arrows\"\n class=\"nano-sortable__keyboard-handle visually-hidden\"\n label=\"Re-order this item\"\n ></nano-icon-button>`;\n const div = document.createElement('div');\n div.innerHTML = handleTpl;\n\n const handle = div.children[0] as HTMLElement;\n _element.append(handle);\n return handle;\n }",
|
|
5851
|
+
"default": "(_number: number, _element: Element) => {\n const handleTpl = /* html */ `\n <nano-icon-button\n slot=\"end\"\n icon-name=\"light/arrows-up-down-left-right\"\n class=\"nano-sortable__keyboard-handle visually-hidden\"\n label=\"Re-order this item\"\n ></nano-icon-button>`;\n const div = document.createElement('div');\n div.innerHTML = handleTpl;\n\n const handle = div.children[0] as HTMLElement;\n _element.append(handle);\n return handle;\n }",
|
|
5852
5852
|
"value": {
|
|
5853
5853
|
"kind": "expression",
|
|
5854
5854
|
"type": "(_number: number, _element: Element) => HTMLElement"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nanoporetech-digital/components-vue",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.1",
|
|
4
4
|
"description": "Vue 3 wrapper for Nano Components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"vue-tsc": "^2.1.6"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@nanoporetech-digital/components": "^
|
|
62
|
+
"@nanoporetech-digital/components": "^7.0.1"
|
|
63
63
|
},
|
|
64
64
|
"jest": {
|
|
65
65
|
"preset": "ts-jest",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "fec2e4fe117471d484f3bca6a1fbf014f00a4d5f",
|
|
82
82
|
"vetur": {
|
|
83
83
|
"tags": "dist/vetur/tags.json",
|
|
84
84
|
"attributes": "dist/vetur/attributes.json"
|