@nanoporetech-digital/components-vue 8.3.2 → 8.4.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.
@@ -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": "8.3.1",
5
+ "version": "8.3.2",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -16,7 +16,18 @@
16
16
  "module": "@nanoporetech-digital/components/src/components/accordion/accordion.d.ts",
17
17
  "symbol": "Accordion"
18
18
  },
19
- "attributes": [],
19
+ "attributes": [
20
+ {
21
+ "name": "always-open",
22
+ "description": "Force one details element to always be open",
23
+ "required": false,
24
+ "default": "false",
25
+ "value": {
26
+ "kind": "expression",
27
+ "type": "boolean"
28
+ }
29
+ }
30
+ ],
20
31
  "slots": [],
21
32
  "events": [
22
33
  {
@@ -25,7 +36,7 @@
25
36
  "arguments": [
26
37
  {
27
38
  "name": "detail",
28
- "type": "HTMLNanoDetailsElement"
39
+ "type": "{ element: HTMLNanoDetailsElement; index: number; }"
29
40
  }
30
41
  ]
31
42
  }
@@ -3395,6 +3406,10 @@
3395
3406
  "name": "bottom-start",
3396
3407
  "description": "The content for the bottom left section (copyright notice - optional)."
3397
3408
  },
3409
+ {
3410
+ "name": "middle-centre",
3411
+ "description": "The content for the middle centre (socials) section."
3412
+ },
3398
3413
  {
3399
3414
  "name": "middle-end",
3400
3415
  "description": "The content for the middle end (certifications) section."
@@ -3517,7 +3532,7 @@
3517
3532
  },
3518
3533
  {
3519
3534
  "name": "my-account-data",
3520
- "description": "MyAccount data automatically set via `myAccountUrl`.\nAlternatively you can directly provide a JSON object which is useful for SSR\n(ref https://myaccount.nanoporetech.com/nav_bar_data.json)",
3535
+ "description": "MyAccount data is automatically set via `myAccountUrl`.\nAlternatively you can directly provide a JSON object which is useful for SSR\n(ref https://myaccount.nanoporetech.com/nav_bar_data.json)",
3521
3536
  "required": false,
3522
3537
  "value": {
3523
3538
  "kind": "expression",
@@ -7001,6 +7016,99 @@
7001
7016
  }
7002
7017
  ]
7003
7018
  },
7019
+ {
7020
+ "name": "NanoStepAccordion",
7021
+ "doc-url": "https://digital.git.oxfordnanolabs.local/nano-components/?path=/docs/components-step-accordion",
7022
+ "description": "Presents an accordion interface for a multi-step process,\nallowing users to see their progress and navigate back to completed steps.",
7023
+ "source": {
7024
+ "module": "@nanoporetech-digital/components/src/components/step-accordion/step-accordion.d.ts",
7025
+ "symbol": "StepAccordion"
7026
+ },
7027
+ "attributes": [
7028
+ {
7029
+ "name": "active-step",
7030
+ "description": "The currently active step, zero-based index",
7031
+ "required": false,
7032
+ "default": "0",
7033
+ "value": {
7034
+ "kind": "expression",
7035
+ "type": "number"
7036
+ }
7037
+ },
7038
+ {
7039
+ "name": "steps",
7040
+ "description": "An array of steps, each with a title, completion status, and enabled state",
7041
+ "required": false,
7042
+ "default": "[]",
7043
+ "value": {
7044
+ "kind": "expression",
7045
+ "type": "Step[]"
7046
+ }
7047
+ }
7048
+ ],
7049
+ "slots": [
7050
+ {
7051
+ "name": "default",
7052
+ "description": "Dynamic slots. Use `slot=\"step-0\"`, `slot=\"step-1\"`, etc. for each step."
7053
+ }
7054
+ ],
7055
+ "events": [
7056
+ {
7057
+ "name": "nanoStepActive",
7058
+ "description": "Emitted when the active step changes. Prevent default to cancel the change",
7059
+ "arguments": [
7060
+ {
7061
+ "name": "detail",
7062
+ "type": "{ index: number; step: Step; }"
7063
+ }
7064
+ ]
7065
+ }
7066
+ ]
7067
+ },
7068
+ {
7069
+ "name": "NanoStepBreadcrumb",
7070
+ "doc-url": "https://digital.git.oxfordnanolabs.local/nano-components/?path=/docs/components-step-breadcrumb",
7071
+ "description": "Presents a breadcrumb navigation for steps in a process, allowing users to see their progress and navigate back to completed steps.",
7072
+ "source": {
7073
+ "module": "@nanoporetech-digital/components/src/components/step-breadcrumb/step-breadcrumb.d.ts",
7074
+ "symbol": "StepBreadcrumb"
7075
+ },
7076
+ "attributes": [
7077
+ {
7078
+ "name": "active-step",
7079
+ "description": "The currently active step, zero-based index",
7080
+ "required": false,
7081
+ "default": "0",
7082
+ "value": {
7083
+ "kind": "expression",
7084
+ "type": "number"
7085
+ }
7086
+ },
7087
+ {
7088
+ "name": "steps",
7089
+ "description": "An array of steps, each with a title, completion status, and enabled state",
7090
+ "required": false,
7091
+ "default": "[]",
7092
+ "value": {
7093
+ "kind": "expression",
7094
+ "type": "Step[]"
7095
+ }
7096
+ }
7097
+ ],
7098
+ "slots": [],
7099
+ "events": [
7100
+ {
7101
+ "name": "nanoStepActive",
7102
+ "description": "Emitted when the active step changes. Prevent default to cancel the change",
7103
+ "arguments": [
7104
+ {
7105
+ "name": "detail",
7106
+ "type": "{ step: Step; index: number; }"
7107
+ }
7108
+ ]
7109
+ }
7110
+ ]
7111
+ },
7004
7112
  {
7005
7113
  "name": "NanoSticker",
7006
7114
  "doc-url": "https://digital.git.oxfordnanolabs.local/nano-components/?path=/docs/components-sticker",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nanoporetech-digital/components-vue",
3
- "version": "8.3.2",
3
+ "version": "8.4.0",
4
4
  "sideEffects": false,
5
5
  "description": "Vue 3 wrapper for Nano Components",
6
6
  "repository": {
@@ -49,8 +49,8 @@
49
49
  "vue-tsc": "^2.1.6"
50
50
  },
51
51
  "dependencies": {
52
- "@nanoporetech-digital/components": "8.3.2",
53
- "@nanoporetech-digital/style": "8.3.2"
52
+ "@nanoporetech-digital/components": "8.4.0",
53
+ "@nanoporetech-digital/style": "8.4.0"
54
54
  },
55
55
  "gitHead": "cff1d0168dbe2193c1dc1a814ed1cb97b30cfc25",
56
56
  "vetur": {