@nanoporetech-digital/components-vue 1.15.3 → 2.0.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,56 @@
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
+ # [2.0.0](https://git.oxfordnanolabs.local/Digital/nano-components/compare/v1.15.6...v2.0.0) (2022-02-08)
7
+
8
+
9
+ ### Code Refactoring
10
+
11
+ * cleanup / document new code. ([ac4865c](https://git.oxfordnanolabs.local/Digital/nano-components/commits/ac4865c780cb018e0b4551e5a2ee1d7d24801d86))
12
+
13
+
14
+ ### Features
15
+
16
+ * **option:** new component for use in `nano-datalist`. Allows for custom content. ([b5c60fd](https://git.oxfordnanolabs.local/Digital/nano-components/commits/b5c60fd967a3626d11664d40b94d65836a5014b1))
17
+ * **tabs:** added `closable` prop and `nanoTabWillClose` and `nanoTabClose` events. Added `disableSwipe` prop. Made styling more flexible ([5032153](https://git.oxfordnanolabs.local/Digital/nano-components/commits/50321536a96f4049c810967ae4d87ba669d98f43))
18
+
19
+
20
+ ### BREAKING CHANGES
21
+
22
+ * removed 'legacy' slot from `nano-select` and `nano-input`
23
+ * **option:** `nano-select-option` has been removed. Users must update their code to use `nano-option` instead.
24
+
25
+
26
+
27
+
28
+
29
+ ## [1.15.6](https://git.oxfordnanolabs.local/Digital/nano-components/compare/v1.15.5...v1.15.6) (2022-01-18)
30
+
31
+ **Note:** Version bump only for package @nanoporetech-digital/components-vue
32
+
33
+
34
+
35
+
36
+
37
+ ## [1.15.5](https://git.oxfordnanolabs.local/Digital/nano-components/compare/v1.15.4...v1.15.5) (2022-01-07)
38
+
39
+ **Note:** Version bump only for package @nanoporetech-digital/components-vue
40
+
41
+
42
+
43
+
44
+
45
+ ## [1.15.4](https://git.oxfordnanolabs.local/Digital/nano-components/compare/v1.15.3...v1.15.4) (2021-11-29)
46
+
47
+
48
+ ### Bug Fixes
49
+
50
+ * **vue3-wrapper:** make all events work whist inside vue3 or when consuming via vue3 ([a79e73f](https://git.oxfordnanolabs.local/Digital/nano-components/commits/a79e73ff30c6d0bb9fe02276dbe73d6ba52a62c6))
51
+
52
+
53
+
54
+
55
+
6
56
  ## [1.15.3](https://git.oxfordnanolabs.local/Digital/nano-components/compare/v1.15.2...v1.15.3) (2021-11-25)
7
57
 
8
58
  **Note:** Version bump only for package @nanoporetech-digital/components-vue
package/dist/nano-vue.js CHANGED
@@ -1,13 +1,28 @@
1
1
  import { defineCustomElements, applyPolyfills } from '@nanoporetech-digital/components/loader';
2
2
  const needsKebabCase = (version) => !['3.0.0', '3.0.1', '3.0.2', '3.0.3', '3.0.4', '3.0.5'].includes(version);
3
+ const eventIgnoreList = ['nanoTplUpdated', 'openWormhole', 'nanoComponentsReady'];
3
4
  /**
4
5
  * We need to make sure that the web component fires an event
5
6
  * that will not conflict with the user's @ionChange binding,
6
7
  * otherwise the binding's callback will fire before any
7
8
  * v-model values have been updated.
8
9
  */
9
- const toLowerCase = (eventName) => eventName === 'nanoChange' ? 'v-nanochange' : eventName.toLowerCase();
10
- const toKebabCase = (eventName) => eventName === 'nanoChange' ? 'v-nano-change' : eventName.replace(/([a-z0-9]|(?=[A-Z]))([A-Z])/g, '$1-$2').toLowerCase();
10
+ const toLowerCase = (eventName) => {
11
+ if (eventName === 'nanoChange')
12
+ return 'v-nanochange';
13
+ else if (eventIgnoreList.includes(eventName))
14
+ return eventName;
15
+ else
16
+ return eventName.toLowerCase();
17
+ };
18
+ const toKebabCase = (eventName) => {
19
+ if (eventName === 'nanoChange')
20
+ return 'v-nano-change';
21
+ else if (eventIgnoreList.includes(eventName))
22
+ return eventName;
23
+ else
24
+ return eventName.replace(/([a-z0-9]|(?=[A-Z]))([A-Z])/g, '$1-$2').toLowerCase();
25
+ };
11
26
  /**
12
27
  * Vue 3.0.6 fixed a bug where events on custom elements
13
28
  * were always converted to lower case, so "ionRefresh"
@@ -1 +1 @@
1
- {"version":3,"file":"nano-vue.js","sourceRoot":"","sources":["../src/nano-vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,cAAc,EAAE,MAAM,yCAAyC,CAAC;AAE/F,MAAM,cAAc,GAAG,CAAC,OAAe,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC;AAEtH;;;;;EAKE;AACF,MAAM,WAAW,GAAG,CAAC,SAAiB,EAAE,EAAE,CAAC,SAAS,KAAK,YAAY,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC,WAAW,EAAE,CAAC;AACjH,MAAM,WAAW,GAAG,CAAC,SAAiB,EAAE,EAAE,CAAC,SAAS,KAAK,YAAY,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC,OAAO,CAAC,8BAA8B,EAAE,OAAO,CAAC,CAAC,WAAW,EAAE,CAAC;AAEnK;;;;;;;GAOG;AACH,MAAM,kBAAkB,GAAG,CAAC,cAAc,GAAG,IAAI,EAAE,EAAE;IACnD,MAAM,YAAY,GAAG,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,WAAW,CAAC;IAClE,OAAO;QACH,GAAG,EAAE,CAAC,EAAO,EAAE,SAAiB,EAAE,EAAO,EAAE,IAAS,EAAE,EAAE,CAAC,EAAE,CAAC,gBAAgB,CAAC,YAAY,CAAC,SAAS,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC;QAC/G,GAAG,EAAE,CAAC,EAAO,EAAE,SAAiB,EAAE,EAAO,EAAE,IAAS,EAAE,EAAE,CAAC,EAAE,CAAC,mBAAmB,CAAC,YAAY,CAAC,SAAS,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC;QAClH,EAAE,EAAE,CAAC,SAAiB,EAAE,IAAS,EAAE,EAAE,CAAC,IAAI,WAAW,CAAC,YAAY,CAAC,SAAS,CAAC,EAAE,IAAI,CAAC;KACvF,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,GAAQ,EAAiB,EAAE;IACvD,IAAI,OAAQ,MAAc,KAAK,WAAW,EAAE;QAC1C,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,kBAAkB,CAAC,cAAc,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC;QACzE,MAAM,cAAc,EAAE,CAAC;QACvB,MAAM,oBAAoB,CAAC,MAAM,EAAE;YACjC,EAAE;YACF,GAAG;YACH,GAAG;SACG,CAAC,CAAC;KACX;AACH,CAAC,CAAA"}
1
+ {"version":3,"file":"nano-vue.js","sourceRoot":"","sources":["../src/nano-vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,cAAc,EAAE,MAAM,yCAAyC,CAAC;AAE/F,MAAM,cAAc,GAAG,CAAC,OAAe,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC;AAEtH,MAAM,eAAe,GAAG,CAAC,gBAAgB,EAAE,cAAc,EAAE,qBAAqB,CAAC,CAAA;AAEjF;;;;;EAKE;AACF,MAAM,WAAW,GAAG,CAAC,SAAiB,EAAE,EAAE;IACxC,IAAI,SAAS,KAAK,YAAY;QAAE,OAAO,cAAc,CAAC;SACjD,IAAI,eAAe,CAAC,QAAQ,CAAC,SAAS,CAAC;QAAE,OAAO,SAAS,CAAC;;QAC1D,OAAO,SAAS,CAAC,WAAW,EAAE,CAAC;AACtC,CAAC,CAAA;AAED,MAAM,WAAW,GAAG,CAAC,SAAiB,EAAE,EAAE;IACxC,IAAI,SAAS,KAAK,YAAY;QAAE,OAAO,eAAe,CAAC;SAClD,IAAI,eAAe,CAAC,QAAQ,CAAC,SAAS,CAAC;QAAE,OAAO,SAAS,CAAC;;QAC1D,OAAO,SAAS,CAAC,OAAO,CAAC,8BAA8B,EAAE,OAAO,CAAC,CAAC,WAAW,EAAE,CAAC;AACvF,CAAC,CAAA;AAED;;;;;;;GAOG;AACH,MAAM,kBAAkB,GAAG,CAAC,cAAc,GAAG,IAAI,EAAE,EAAE;IACnD,MAAM,YAAY,GAAG,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,WAAW,CAAC;IAClE,OAAO;QACH,GAAG,EAAE,CAAC,EAAO,EAAE,SAAiB,EAAE,EAAO,EAAE,IAAS,EAAE,EAAE,CAAC,EAAE,CAAC,gBAAgB,CAAC,YAAY,CAAC,SAAS,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC;QAC/G,GAAG,EAAE,CAAC,EAAO,EAAE,SAAiB,EAAE,EAAO,EAAE,IAAS,EAAE,EAAE,CAAC,EAAE,CAAC,mBAAmB,CAAC,YAAY,CAAC,SAAS,CAAC,EAAE,EAAE,EAAE,IAAI,CAAC;QAClH,EAAE,EAAE,CAAC,SAAiB,EAAE,IAAS,EAAE,EAAE,CAAC,IAAI,WAAW,CAAC,YAAY,CAAC,SAAS,CAAC,EAAE,IAAI,CAAC;KACvF,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,OAAO,GAAG,KAAK,EAAE,GAAQ,EAAiB,EAAE;IACvD,IAAI,OAAQ,MAAc,KAAK,WAAW,EAAE;QAC1C,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,kBAAkB,CAAC,cAAc,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAC;QACzE,MAAM,cAAc,EAAE,CAAC;QACvB,MAAM,oBAAoB,CAAC,MAAM,EAAE;YACjC,EAAE;YACF,GAAG;YACH,GAAG;SACG,CAAC,CAAC;KACX;AACH,CAAC,CAAA"}
package/dist/proxies.js CHANGED
@@ -37,7 +37,8 @@ export const NanoAlgolia = /*@__PURE__*/ defineContainer('nano-algolia', undefin
37
37
  'nanoDidLoad',
38
38
  'nanoResultsShown',
39
39
  'nanoBeforeQuery',
40
- 'nanoAfterQuery'
40
+ 'nanoAfterQuery',
41
+ 'nanoNewResults'
41
42
  ]);
42
43
  export const NanoAlgoliaFilter = /*@__PURE__*/ defineContainer('nano-algolia-filter', undefined, [
43
44
  'filterName',
@@ -102,6 +103,20 @@ export const NanoCheckboxGroup = /*@__PURE__*/ defineContainer('nano-checkbox-gr
102
103
  'invalid',
103
104
  'nanoValidate'
104
105
  ]);
106
+ export const NanoDatalist = /*@__PURE__*/ defineContainer('nano-datalist', undefined, [
107
+ 'selected',
108
+ 'dropDownConfig',
109
+ 'options',
110
+ 'input',
111
+ 'type',
112
+ 'activeOptions',
113
+ 'open',
114
+ 'disableFilter',
115
+ 'disabled',
116
+ 'nanoSelect',
117
+ 'nanoDeselect',
118
+ 'nanoOptionsUpdated'
119
+ ]);
105
120
  export const NanoDateInput = /*@__PURE__*/ defineContainer('nano-date-input', undefined, [
106
121
  'invalid',
107
122
  'helperText',
@@ -259,7 +274,8 @@ export const NanoGrid = /*@__PURE__*/ defineContainer('nano-grid', undefined, [
259
274
  'xxlCols',
260
275
  'showHelper',
261
276
  'contentPanel',
262
- 'fullHeight'
277
+ 'fullHeight',
278
+ 'nanoBpChange'
263
279
  ]);
264
280
  export const NanoGridItem = /*@__PURE__*/ defineContainer('nano-grid-item', undefined, [
265
281
  'gridStates'
@@ -349,6 +365,9 @@ export const NanoInput = /*@__PURE__*/ defineContainer('nano-input', undefined,
349
365
  'nanoValidate'
350
366
  ], 'value', 'v-nano-change', 'nanoChange');
351
367
  export const NanoMenu = /*@__PURE__*/ defineContainer('nano-menu', undefined, [
368
+ 'hasFocus',
369
+ 'type',
370
+ 'label',
352
371
  'nanoFocus',
353
372
  'nanoBlur',
354
373
  'nanoSelect'
@@ -375,6 +394,14 @@ export const NanoNavItem = /*@__PURE__*/ defineContainer('nano-nav-item', undefi
375
394
  'nanoBlur',
376
395
  'nanoFocus'
377
396
  ]);
397
+ export const NanoOption = /*@__PURE__*/ defineContainer('nano-option', undefined, [
398
+ 'value',
399
+ 'label',
400
+ 'selected',
401
+ 'disabled',
402
+ 'filterMeta',
403
+ 'nanoSelect'
404
+ ]);
378
405
  export const NanoRange = /*@__PURE__*/ defineContainer('nano-range', undefined, [
379
406
  'color',
380
407
  'debounce',
@@ -435,7 +462,7 @@ export const NanoSelect = /*@__PURE__*/ defineContainer('nano-select', undefined
435
462
  'clearSelect',
436
463
  'mask',
437
464
  'debounce',
438
- 'native',
465
+ 'dropDownConfig',
439
466
  'nanoChange',
440
467
  'nanoBlur',
441
468
  'nanoFocus',
@@ -444,12 +471,6 @@ export const NanoSelect = /*@__PURE__*/ defineContainer('nano-select', undefined
444
471
  'nanoSearchChange',
445
472
  'nanoValidate'
446
473
  ], 'value', 'v-nano-change', 'nanoChange');
447
- export const NanoSelectOption = /*@__PURE__*/ defineContainer('nano-select-option', undefined, [
448
- 'label',
449
- 'value',
450
- 'selected',
451
- 'disabled'
452
- ]);
453
474
  export const NanoSkeleton = /*@__PURE__*/ defineContainer('nano-skeleton', undefined, [
454
475
  'animated'
455
476
  ]);
@@ -502,7 +523,9 @@ export const NanoSticker = /*@__PURE__*/ defineContainer('nano-sticker', undefin
502
523
  export const NanoTab = /*@__PURE__*/ defineContainer('nano-tab', undefined, [
503
524
  'panel',
504
525
  'active',
505
- 'disabled'
526
+ 'disabled',
527
+ 'closable',
528
+ 'nanoTabClose'
506
529
  ]);
507
530
  export const NanoTabContent = /*@__PURE__*/ defineContainer('nano-tab-content', undefined, [
508
531
  'name',
@@ -514,8 +537,11 @@ export const NanoTabGroup = /*@__PURE__*/ defineContainer('nano-tab-group', unde
514
537
  'color',
515
538
  'storeId',
516
539
  'storeMethod',
540
+ 'disableSwipe',
517
541
  'nanoTabShow',
518
- 'nanoTabHide'
542
+ 'nanoTabHide',
543
+ 'nanoTabWillClose',
544
+ 'nanoTabClose'
519
545
  ]);
520
546
  export const NanoTooltip = /*@__PURE__*/ defineContainer('nano-tooltip', undefined, [
521
547
  'content',
@@ -1 +1 @@
1
- {"version":3,"file":"proxies.js","sourceRoot":"","sources":["../src/proxies.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"proxies.js","sourceRoot":"","sources":["../src/proxies.ts"],"names":[],"mappings":"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"}
@@ -9,6 +9,7 @@ export declare const NanoAlgoliaResults: import("vue").DefineComponent<JSX.NanoA
9
9
  export declare const NanoAspectRatio: import("vue").DefineComponent<JSX.NanoAspectRatio & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoAspectRatio & import("./vue-component-lib/utils").InputProps>, {}>;
10
10
  export declare const NanoCheckbox: import("vue").DefineComponent<JSX.NanoCheckbox & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoCheckbox & import("./vue-component-lib/utils").InputProps>, {}>;
11
11
  export declare const NanoCheckboxGroup: import("vue").DefineComponent<JSX.NanoCheckboxGroup & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoCheckboxGroup & import("./vue-component-lib/utils").InputProps>, {}>;
12
+ export declare const NanoDatalist: import("vue").DefineComponent<JSX.NanoDatalist & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoDatalist & import("./vue-component-lib/utils").InputProps>, {}>;
12
13
  export declare const NanoDateInput: import("vue").DefineComponent<JSX.NanoDateInput & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoDateInput & import("./vue-component-lib/utils").InputProps>, {}>;
13
14
  export declare const NanoDatePicker: import("vue").DefineComponent<JSX.NanoDatePicker & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoDatePicker & import("./vue-component-lib/utils").InputProps>, {}>;
14
15
  export declare const NanoDetails: import("vue").DefineComponent<JSX.NanoDetails & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoDetails & import("./vue-component-lib/utils").InputProps>, {}>;
@@ -30,11 +31,11 @@ export declare const NanoInput: import("vue").DefineComponent<JSX.NanoInput & im
30
31
  export declare const NanoMenu: import("vue").DefineComponent<JSX.NanoMenu & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoMenu & import("./vue-component-lib/utils").InputProps>, {}>;
31
32
  export declare const NanoMenuDrawer: import("vue").DefineComponent<JSX.NanoMenuDrawer & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoMenuDrawer & import("./vue-component-lib/utils").InputProps>, {}>;
32
33
  export declare const NanoNavItem: import("vue").DefineComponent<JSX.NanoNavItem & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoNavItem & import("./vue-component-lib/utils").InputProps>, {}>;
34
+ export declare const NanoOption: import("vue").DefineComponent<JSX.NanoOption & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoOption & import("./vue-component-lib/utils").InputProps>, {}>;
33
35
  export declare const NanoRange: import("vue").DefineComponent<JSX.NanoRange & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoRange & import("./vue-component-lib/utils").InputProps>, {}>;
34
36
  export declare const NanoRating: import("vue").DefineComponent<JSX.NanoRating & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoRating & import("./vue-component-lib/utils").InputProps>, {}>;
35
37
  export declare const NanoResizeObserve: import("vue").DefineComponent<JSX.NanoResizeObserve & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoResizeObserve & import("./vue-component-lib/utils").InputProps>, {}>;
36
38
  export declare const NanoSelect: import("vue").DefineComponent<JSX.NanoSelect & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoSelect & import("./vue-component-lib/utils").InputProps>, {}>;
37
- export declare const NanoSelectOption: import("vue").DefineComponent<JSX.NanoSelectOption & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoSelectOption & import("./vue-component-lib/utils").InputProps>, {}>;
38
39
  export declare const NanoSkeleton: import("vue").DefineComponent<JSX.NanoSkeleton & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoSkeleton & import("./vue-component-lib/utils").InputProps>, {}>;
39
40
  export declare const NanoSlide: import("vue").DefineComponent<JSX.NanoSlide & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoSlide & import("./vue-component-lib/utils").InputProps>, {}>;
40
41
  export declare const NanoSlides: import("vue").DefineComponent<JSX.NanoSlides & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoSlides & import("./vue-component-lib/utils").InputProps>, {}>;
@@ -17,6 +17,6 @@ export interface InputProps extends Object {
17
17
  */
18
18
  export declare const defineContainer: <Props>(name: string, customElement: any, componentProps?: string[], modelProp?: string, modelUpdateEvent?: string, externalModelUpdateEvent?: string) => import("vue").DefineComponent<Props & InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<Props & InputProps extends import("vue").ComponentPropsOptions<{
19
19
  [x: string]: unknown;
20
- }> ? import("vue").ExtractPropTypes<string[] & Props & InputProps> | import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
20
+ }> ? import("vue").ExtractPropTypes<import("vue").ComponentPropsOptions<{
21
21
  [x: string]: unknown;
22
22
  }> & Props & InputProps> : Props & InputProps>, import("vue").ExtractDefaultPropTypes<Props & InputProps>>;
@@ -359,6 +359,66 @@
359
359
  "submitThenDirty"
360
360
  ]
361
361
  },
362
+ "nano-datalist/active-options": {
363
+ "type": "HTMLNanoOptionElement[]",
364
+ "description": "return all the active options currently within the datalist. Can be useful for validation",
365
+ "options": []
366
+ },
367
+ "nano-datalist/disable-filter": {
368
+ "type": "boolean",
369
+ "description": "Use this option to disable to default filtering. This is useful if filtering happens\nexternally via another method (e.g. via ajax)",
370
+ "options": []
371
+ },
372
+ "nano-datalist/disabled": {
373
+ "type": "boolean",
374
+ "description": "Activate / deactivate the datalist control",
375
+ "options": []
376
+ },
377
+ "nano-datalist/drop-down-config": {
378
+ "type": "{ host?: HTMLNanoDropdownElement; autoOpen?: boolean; open?: boolean; handleOpenChange?: () => void; closeOnSelect?: boolean; containingElement?: HTMLElement; tetherTo?: HTMLElement; handleTetherToChange?: () => void; placement?: \"top\" | \"top-start\" | \"top-end\" | \"bottom\" | \"bottom-start\" | \"bottom-end\" | \"right\" | \"right-start\" | \"right-end\" | \"left\" | \"left-start\" | \"left-end\"; distance?: number; skidding?: number; hoist?: boolean; handlePopoverOptionsChange?: () => void; dialogTitle?: string; nanoShow?: EventEmitter<any>; nanoAfterShow?: EventEmitter<any>; nanoHide?: EventEmitter<any>; nanoAfterHide?: EventEmitter<any>; secondaryOpen?: (ev: CustomEvent<any>) => void; secondaryClose?: (ev: CustomEvent<any>) => void; handlePanelSelect?: (event: CustomEvent<any>) => void; show?: () => Promise<void>; hide?: () => Promise<void>; connectedCallback?: () => void; componentDidLoad?: () => void; disconnectedCallback?: () => void; render?: () => any; }",
379
+ "description": "nano-dropdown config options you can pass to the nested dropdown component",
380
+ "options": [
381
+ "top-start",
382
+ "top-end",
383
+ "bottom",
384
+ "bottom-start",
385
+ "bottom-end",
386
+ "right",
387
+ "right-start",
388
+ "right-end",
389
+ "left",
390
+ "left-start"
391
+ ]
392
+ },
393
+ "nano-datalist/input": {
394
+ "type": "HTMLInputElement | string",
395
+ "description": "A selector to a HTMLInputElement",
396
+ "options": []
397
+ },
398
+ "nano-datalist/open": {
399
+ "type": "boolean",
400
+ "description": "Force datalist open",
401
+ "options": []
402
+ },
403
+ "nano-datalist/options": {
404
+ "type": "OptionInterface[]",
405
+ "description": "Provide an option list.\nOptions can be defined declaratively by nesting `<nano-option>` elements or imperatively using this prop",
406
+ "options": []
407
+ },
408
+ "nano-datalist/selected": {
409
+ "type": "string[]",
410
+ "description": "By default, items in the list will appear 'selected' when the value in the linked input control matches.\nHowever you can add other selected options via the the selected prop.",
411
+ "options": []
412
+ },
413
+ "nano-datalist/type": {
414
+ "type": "\"input\" | \"selctMulti\" | \"select\"",
415
+ "description": "Tweaks the datalist behaviour and linked control semantics and behaviour.\ne.g. 'select' will make the linked input control readonly.",
416
+ "options": [
417
+ "input",
418
+ "selctMulti",
419
+ "select"
420
+ ]
421
+ },
362
422
  "nano-date-input/autofocus": {
363
423
  "type": "boolean",
364
424
  "description": "This Boolean attribute lets you specify that a form control should have input focus when the page loads.",
@@ -1397,6 +1457,24 @@
1397
1457
  "description": "The value of the input.",
1398
1458
  "options": []
1399
1459
  },
1460
+ "nano-menu/has-focus": {
1461
+ "type": "boolean",
1462
+ "description": "get the focus state of the menu @readonly",
1463
+ "options": []
1464
+ },
1465
+ "nano-menu/label": {
1466
+ "type": "string",
1467
+ "description": "an accessible label",
1468
+ "options": []
1469
+ },
1470
+ "nano-menu/type": {
1471
+ "type": "\"listbox\" | \"menu\"",
1472
+ "description": "changes the role of the underlying control - sometimes required for semantics",
1473
+ "options": [
1474
+ "listbox",
1475
+ "menu"
1476
+ ]
1477
+ },
1400
1478
  "nano-menu-drawer/hide-height": {
1401
1479
  "type": "boolean",
1402
1480
  "description": "Should element hide and move items into the nano-global-nav when items are cut off\n(this will only work when nano-menu-drawer is displayed at full screen)",
@@ -1462,6 +1540,31 @@
1462
1540
  "_top"
1463
1541
  ]
1464
1542
  },
1543
+ "nano-option/disabled": {
1544
+ "type": "boolean",
1545
+ "description": "Whether this option should be disabled",
1546
+ "options": []
1547
+ },
1548
+ "nano-option/filter-meta": {
1549
+ "type": "string",
1550
+ "description": "You can add extra meta for this option. When displayed in a list, users\nsearch / filter via extra related terms. Another usecase is 'endonyms'",
1551
+ "options": []
1552
+ },
1553
+ "nano-option/label": {
1554
+ "type": "string",
1555
+ "description": "Label of the option",
1556
+ "options": []
1557
+ },
1558
+ "nano-option/selected": {
1559
+ "type": "boolean",
1560
+ "description": "Whether this option is selected",
1561
+ "options": []
1562
+ },
1563
+ "nano-option/value": {
1564
+ "type": "string",
1565
+ "description": "Value of the option",
1566
+ "options": []
1567
+ },
1465
1568
  "nano-range/color": {
1466
1569
  "type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\"",
1467
1570
  "description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`",
@@ -1617,6 +1720,22 @@
1617
1720
  "description": "If `true`, the user cannot interact with the select.",
1618
1721
  "options": []
1619
1722
  },
1723
+ "nano-select/drop-down-config": {
1724
+ "type": "{ host?: HTMLNanoDropdownElement; autoOpen?: boolean; open?: boolean; handleOpenChange?: () => void; closeOnSelect?: boolean; containingElement?: HTMLElement; tetherTo?: HTMLElement; handleTetherToChange?: () => void; placement?: \"top\" | \"top-start\" | \"top-end\" | \"bottom\" | \"bottom-start\" | \"bottom-end\" | \"right\" | \"right-start\" | \"right-end\" | \"left\" | \"left-start\" | \"left-end\"; distance?: number; skidding?: number; hoist?: boolean; handlePopoverOptionsChange?: () => void; dialogTitle?: string; nanoShow?: EventEmitter<any>; nanoAfterShow?: EventEmitter<any>; nanoHide?: EventEmitter<any>; nanoAfterHide?: EventEmitter<any>; secondaryOpen?: (ev: CustomEvent<any>) => void; secondaryClose?: (ev: CustomEvent<any>) => void; handlePanelSelect?: (event: CustomEvent<any>) => void; show?: () => Promise<void>; hide?: () => Promise<void>; connectedCallback?: () => void; componentDidLoad?: () => void; disconnectedCallback?: () => void; render?: () => any; }",
1725
+ "description": "nano-dropdown config options you can pass to the nested dropdown component",
1726
+ "options": [
1727
+ "top-start",
1728
+ "top-end",
1729
+ "bottom",
1730
+ "bottom-start",
1731
+ "bottom-end",
1732
+ "right",
1733
+ "right-start",
1734
+ "right-end",
1735
+ "left",
1736
+ "left-start"
1737
+ ]
1738
+ },
1620
1739
  "nano-select/float-label": {
1621
1740
  "type": "boolean",
1622
1741
  "description": "Enable floating label behaviour. Will disable placeholder if set.",
@@ -1639,7 +1758,7 @@
1639
1758
  },
1640
1759
  "nano-select/label": {
1641
1760
  "type": "string",
1642
- "description": "String to place within a label element.",
1761
+ "description": "String to place within a label element. Alternatively use the 'label' slot",
1643
1762
  "options": []
1644
1763
  },
1645
1764
  "nano-select/mask": {
@@ -1667,14 +1786,9 @@
1667
1786
  "description": "The name of the control, which is submitted with the form data.",
1668
1787
  "options": []
1669
1788
  },
1670
- "nano-select/native": {
1671
- "type": "boolean",
1672
- "description": "Whether to use native <select> elements. Setting to false will use a similar UI as multiple=\"true\"",
1673
- "options": []
1674
- },
1675
1789
  "nano-select/options": {
1676
- "type": "(string | { label: string; value?: string; })[]",
1677
- "description": "You can set options via js. domElement.options = ['option 1', 'option 2'] or [{label: 'option 1', value: 'opt-1'}]",
1790
+ "type": "(string | OptionInterface)[]",
1791
+ "description": "You can set options via js as an array of strings: `domElement.options = ['option 1', 'option 2']` or\nobjects `domElement.options = [{label: 'option 1', value: 'opt-1'}]`. See `nano-option` docs for all available properties.\nAlternatively, you can nest `<nano-option>` elements within a `<nano-select>`\nRegardless - reading `options` will return the current component options - slotted or otherwise",
1678
1792
  "options": []
1679
1793
  },
1680
1794
  "nano-select/placeholder": {
@@ -1716,26 +1830,6 @@
1716
1830
  "description": "The value of the select.",
1717
1831
  "options": []
1718
1832
  },
1719
- "nano-select-option/disabled": {
1720
- "type": "boolean",
1721
- "description": "Whether this option should be disabled",
1722
- "options": []
1723
- },
1724
- "nano-select-option/label": {
1725
- "type": "string",
1726
- "description": "Label of the option",
1727
- "options": []
1728
- },
1729
- "nano-select-option/selected": {
1730
- "type": "boolean",
1731
- "description": "Whether this option is selected",
1732
- "options": []
1733
- },
1734
- "nano-select-option/value": {
1735
- "type": "string",
1736
- "description": "Value of the option",
1737
- "options": []
1738
- },
1739
1833
  "nano-skeleton/animated": {
1740
1834
  "type": "boolean",
1741
1835
  "description": "When `true`, the skeleton will animate.",
@@ -1864,6 +1958,11 @@
1864
1958
  "description": "The active, selected tab. If none active, the first will automatically be selected.",
1865
1959
  "options": []
1866
1960
  },
1961
+ "nano-tab/closable": {
1962
+ "type": "boolean",
1963
+ "description": "When true, the tab will be rendered with a close icon.",
1964
+ "options": []
1965
+ },
1867
1966
  "nano-tab/disabled": {
1868
1967
  "type": "boolean",
1869
1968
  "description": "Set to true to draw the tab in an active state.",
@@ -1899,6 +1998,11 @@
1899
1998
  "warning"
1900
1999
  ]
1901
2000
  },
2001
+ "nano-tab-group/disable-swipe": {
2002
+ "type": "boolean",
2003
+ "description": "Disable 'swipe to change tab' on devices with touch",
2004
+ "options": []
2005
+ },
1902
2006
  "nano-tab-group/no-scroll-controls": {
1903
2007
  "type": "boolean",
1904
2008
  "description": "Disables the scroll arrows that appear when tabs overflow.",
@@ -107,6 +107,20 @@
107
107
  "validate-on"
108
108
  ]
109
109
  },
110
+ "nano-datalist": {
111
+ "description": "`nano-datalist` a visually consistent and more flexible replacement for a native\n[datalist](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist). Can be nested within a `nano-input`\nor linked to any input control via the `input` prop. Is used internally within `nano-select`.\nOptions can be defined declaratively by nesting `<nano-option>` elements or imperatively using the `options` prop",
112
+ "attributes": [
113
+ "active-options",
114
+ "disable-filter",
115
+ "disabled",
116
+ "drop-down-config",
117
+ "input",
118
+ "open",
119
+ "options",
120
+ "selected",
121
+ "type"
122
+ ]
123
+ },
110
124
  "nano-date-input": {
111
125
  "description": "The date-input component combines `nano-dropdown`, `nano-input` and `nano-date-picker` components to make a fully featured date form field. It has specific options for localisation, date formatting and validation.",
112
126
  "attributes": [
@@ -189,7 +203,7 @@
189
203
  ]
190
204
  },
191
205
  "nano-dropdown": {
192
- "description": "Dropdowns show additional content in a panel.\nDesigned to work well with nano-menu components to provide a list of options (works well with nano-nav-items).",
206
+ "description": "Dropdowns show additional content in a panel.\nDesigned to work well with nano-menu components to provide a list of options (`nano-nav-items` / `nano-option`).",
193
207
  "attributes": [
194
208
  "auto-open",
195
209
  "close-on-select",
@@ -363,8 +377,12 @@
363
377
  ]
364
378
  },
365
379
  "nano-menu": {
366
- "description": "",
367
- "attributes": []
380
+ "description": "Menu element. Commonly wrapped by `nano-dropdown` with `nano-option` and `nano-nav-item` elements nested.\nManages focus state / active.",
381
+ "attributes": [
382
+ "has-focus",
383
+ "label",
384
+ "type"
385
+ ]
368
386
  },
369
387
  "nano-menu-drawer": {
370
388
  "description": "Menu drawer - digital specific navigation strip designed to be open (default) or closed.\nShows menu item logos only on minimised, expands to show entire menu item.\nUsed in conjunction with the [Globla-Nav](/story/compounds-global-nav) element -> it should be a direct descendent.\nOnly one nano-menu-drawer element should be present on any page. It is fixed to a side on larger screens and items are added to the global nav 'burger' on smaller screens.",
@@ -388,6 +406,16 @@
388
406
  "target"
389
407
  ]
390
408
  },
409
+ "nano-option": {
410
+ "description": "Select options to be used with [nano-select](/story/nano-components-select) or [nano-datalist](/story/nano-components-select)",
411
+ "attributes": [
412
+ "disabled",
413
+ "filter-meta",
414
+ "label",
415
+ "selected",
416
+ "value"
417
+ ]
418
+ },
391
419
  "nano-range": {
392
420
  "description": "The Range slider lets users select from a range of values by moving\nthe slider knob. It can accept dual knobs, but by default one knob controls the value of the range.\n\nLabels can be placed on either side of the range by adding the\n`slot=\"start\"` or `slot=\"end\"` to the element.",
393
421
  "attributes": [
@@ -433,6 +461,7 @@
433
461
  "color",
434
462
  "debounce",
435
463
  "disabled",
464
+ "drop-down-config",
436
465
  "float-label",
437
466
  "form",
438
467
  "hide-label",
@@ -443,7 +472,6 @@
443
472
  "min",
444
473
  "multiple",
445
474
  "name",
446
- "native",
447
475
  "options",
448
476
  "placeholder",
449
477
  "readonly",
@@ -454,15 +482,6 @@
454
482
  "value"
455
483
  ]
456
484
  },
457
- "nano-select-option": {
458
- "description": "Select options to be used with [select](/story/nano-components-select) elements",
459
- "attributes": [
460
- "disabled",
461
- "label",
462
- "selected",
463
- "value"
464
- ]
465
- },
466
485
  "nano-skeleton": {
467
486
  "description": "Skeletons are used to show where content will eventually be drawn.\nSimple containers for scaffolding layouts that mimic what users will see when content has finished loading.\nPrevents large areas of empty space during asynchronous operations.",
468
487
  "attributes": [
@@ -514,6 +533,7 @@
514
533
  "description": "",
515
534
  "attributes": [
516
535
  "active",
536
+ "closable",
517
537
  "disabled",
518
538
  "panel"
519
539
  ]
@@ -529,6 +549,7 @@
529
549
  "description": "A tradtional tab implementation. It nests `nano-tab` and `nano-tab-content` sub-components.\n\nTabs can be stacked vertically or horizontally (which presents different styling variations) using the `placement` attribute.\nHorizonal tabs that don't fit will overflow and scroll appropriately.\nTab-content can also be swiped to change tabs.",
530
550
  "attributes": [
531
551
  "color",
552
+ "disable-swipe",
532
553
  "no-scroll-controls",
533
554
  "placement",
534
555
  "store-id",
@@ -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": "1.15.2",
5
+ "version": "1.15.6",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nanoporetech-digital/components-vue",
3
- "version": "1.15.3",
3
+ "version": "2.0.0",
4
4
  "description": "Vue 3 wrapper for Nano Components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,7 +17,8 @@
17
17
  "clean": "rm -rf dist",
18
18
  "compile": "npm run tsc",
19
19
  "tsc": "tsc -p .",
20
- "demo": "vite --force"
20
+ "demo.build": "vite build",
21
+ "demo": "vite --force --config ./vite.config.ts"
21
22
  },
22
23
  "main": "./dist/index.js",
23
24
  "types": "./dist/types/index.d.ts",
@@ -48,7 +49,7 @@
48
49
  "vue-tsc": "^0.0.24"
49
50
  },
50
51
  "dependencies": {
51
- "@nanoporetech-digital/components": "^1.15.3"
52
+ "@nanoporetech-digital/components": "^2.0.0"
52
53
  },
53
54
  "peerDependencies": {
54
55
  "vue": "3.1.4"
@@ -70,7 +71,7 @@
70
71
  }
71
72
  }
72
73
  },
73
- "gitHead": "8d4ea94ef0e18791d36d2580503cda8461ae8ad4",
74
+ "gitHead": "63ad5263a45cdb8aab03cad158932760b836d767",
74
75
  "vetur": {
75
76
  "tags": "dist/vetur/tags.json",
76
77
  "attributes": "dist/vetur/attributes.json"