@nanoporetech-digital/components-vue 7.9.2 → 8.0.0-alpha.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/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, ref, getCurrentInstance, inject, h } from 'vue';
2
- import { getTagPrefix, componentPrefix } from '@nanoporetech-digital/components';
2
+ import { getTagPrefix, transformTag, componentPrefix } from '@nanoporetech-digital/components';
3
3
  import { defineCustomElements } from '@nanoporetech-digital/components/loader';
4
4
 
5
5
  /* eslint-disable import-x/no-unresolved */
@@ -78,6 +78,14 @@ const defineContainer = (name, defineCustomElement, componentAttrs = {}, compone
78
78
  if (e.target !== vnode.el)
79
79
  return;
80
80
  modelPropValue = (e === null || e === void 0 ? void 0 : e.target)[modelProp];
81
+ // dealing with Vue's `true-value` and `false-value` properties
82
+ // e.g. https://vuejs.org/guide/essentials/forms#checkbox-1
83
+ if (modelPropValue === true && e.target._trueValue !== undefined) {
84
+ modelPropValue = e.target._trueValue;
85
+ }
86
+ else if (modelPropValue === false && e.target._falseValue !== undefined) {
87
+ modelPropValue = e.target._falseValue;
88
+ }
81
89
  emit(UPDATE_VALUE_EVENT, modelPropValue);
82
90
  /**
83
91
  * We need to emit the change event here
@@ -118,7 +126,7 @@ const defineContainer = (name, defineCustomElement, componentAttrs = {}, compone
118
126
  }
119
127
  };
120
128
  return () => {
121
- var _a;
129
+ var _a, _b;
122
130
  modelPropValue = props[modelProp];
123
131
  getComponentClasses(attrs.class).forEach((value) => {
124
132
  classes.add(value);
@@ -169,7 +177,15 @@ const defineContainer = (name, defineCustomElement, componentAttrs = {}, compone
169
177
  * was set as a static value (i.e. no v-model).
170
178
  */
171
179
  if (props[MODEL_VALUE] !== EMPTY_PROP) {
172
- propsToAdd = Object.assign(Object.assign({}, propsToAdd), { [modelProp]: props[MODEL_VALUE] });
180
+ let thisModelProp = modelProp;
181
+ const element = (_a = currentInstance.vnode) === null || _a === void 0 ? void 0 : _a.el;
182
+ // dealing with Vue's `true-value` and `false-value` properties
183
+ // e.g. https://vuejs.org/guide/essentials/forms#checkbox-1
184
+ if (((element === null || element === void 0 ? void 0 : element._trueValue) && element._trueValue === props[MODEL_VALUE]) ||
185
+ ((element === null || element === void 0 ? void 0 : element._falseValue) && element._falseValue === props[MODEL_VALUE])) {
186
+ thisModelProp = 'value';
187
+ }
188
+ propsToAdd = Object.assign(Object.assign({}, propsToAdd), { [thisModelProp]: props[MODEL_VALUE] });
173
189
  }
174
190
  else if (modelPropValue !== EMPTY_PROP) {
175
191
  propsToAdd = Object.assign(Object.assign({}, propsToAdd), { [modelProp]: modelPropValue });
@@ -182,8 +198,8 @@ const defineContainer = (name, defineCustomElement, componentAttrs = {}, compone
182
198
  currentInstance.vnode.el[componentProp] !== propsToAdd[componentProp])
183
199
  currentInstance.vnode.el[componentProp] = propsToAdd[componentProp];
184
200
  });
185
- name = ((_a = currentInstance === null || currentInstance === void 0 ? void 0 : currentInstance.type) === null || _a === void 0 ? void 0 : _a.name) || name;
186
- name = getTagPrefix() ? `${getTagPrefix()}-${name}` : name;
201
+ name = ((_b = currentInstance === null || currentInstance === void 0 ? void 0 : currentInstance.type) === null || _b === void 0 ? void 0 : _b.name) || name;
202
+ name = getTagPrefix() ? transformTag(name) : name;
187
203
  return h(name, propsToAdd, (slots === null || slots === void 0 ? void 0 : slots.default) && slots.default());
188
204
  };
189
205
  });
@@ -208,24 +224,25 @@ const defineContainer = (name, defineCustomElement, componentAttrs = {}, compone
208
224
  /* eslint-disable */
209
225
  /* tslint:disable */
210
226
  /* auto-generated vue proxies */
211
- const NanoAccordion = /*@__PURE__*/ defineContainer('nano-accordion', undefined, {
212
- color: 'color'
213
- }, [
214
- 'color',
227
+ const NanoAccordion = /*@__PURE__*/ defineContainer('nano-accordion', undefined, {}, [
215
228
  'nanoToggle'
216
229
  ]);
217
230
  const NanoAlert = /*@__PURE__*/ defineContainer('nano-alert', undefined, {
218
231
  open: 'open',
219
232
  closable: 'closable',
220
233
  color: 'color',
234
+ theme: 'theme',
221
235
  duration: 'duration',
222
- hoist: 'hoist'
236
+ hoist: 'hoist',
237
+ countdown: 'countdown'
223
238
  }, [
224
239
  'open',
225
240
  'closable',
226
241
  'color',
242
+ 'theme',
227
243
  'duration',
228
244
  'hoist',
245
+ 'countdown',
229
246
  'nanoShow',
230
247
  'nanoAfterShow',
231
248
  'nanoHide',
@@ -236,10 +253,13 @@ const NanoAlgolia = /*@__PURE__*/ defineContainer('nano-algolia', undefined, {
236
253
  resultsPage: 'results-page',
237
254
  appId: 'app-id',
238
255
  apiKey: 'api-key',
256
+ searchIndex: 'search-index',
239
257
  searchIndexName: 'search-index-name',
240
258
  listenTo: 'listen-to',
241
259
  query: 'query',
242
260
  operator: 'operator',
261
+ filters: 'filters',
262
+ tplRenderFn: 'tpl-render-fn',
243
263
  replicaIndex: 'replica-index',
244
264
  browseIndex: 'browse-index',
245
265
  minChars: 'min-chars',
@@ -309,6 +329,7 @@ const NanoAnimation = /*@__PURE__*/ defineContainer('nano-animation', undefined,
309
329
  fill: 'fill',
310
330
  iterations: 'iterations',
311
331
  iterationStart: 'iteration-start',
332
+ keyframes: 'keyframes',
312
333
  playbackRate: 'playback-rate',
313
334
  currentTime: 'current-time'
314
335
  }, [
@@ -329,6 +350,39 @@ const NanoAnimation = /*@__PURE__*/ defineContainer('nano-animation', undefined,
329
350
  'nanoFinish',
330
351
  'nanoStart'
331
352
  ]);
353
+ const NanoAvatar = /*@__PURE__*/ defineContainer('nano-avatar', undefined, {
354
+ initials: 'initials'
355
+ }, [
356
+ 'initials'
357
+ ]);
358
+ const NanoBadge = /*@__PURE__*/ defineContainer('nano-badge', undefined, {
359
+ theme: 'theme',
360
+ strength: 'strength',
361
+ pulse: 'pulse'
362
+ }, [
363
+ 'theme',
364
+ 'strength',
365
+ 'pulse'
366
+ ]);
367
+ const NanoBreadcrumb = /*@__PURE__*/ defineContainer('nano-breadcrumb', undefined, {
368
+ breadcrumbs: 'breadcrumbs'
369
+ }, [
370
+ 'breadcrumbs'
371
+ ]);
372
+ const NanoCard = /*@__PURE__*/ defineContainer('nano-card', undefined, {
373
+ layout: 'layout',
374
+ variant: 'variant',
375
+ size: 'size'
376
+ }, [
377
+ 'layout',
378
+ 'variant',
379
+ 'size'
380
+ ]);
381
+ const NanoCardCarousel = /*@__PURE__*/ defineContainer('nano-card-carousel', undefined, {
382
+ carouselTitle: 'carousel-title'
383
+ }, [
384
+ 'carouselTitle'
385
+ ]);
332
386
  const NanoCheckbox = /*@__PURE__*/ defineContainer('nano-checkbox', undefined, {
333
387
  hasFocus: 'has-focus',
334
388
  checked: 'checked',
@@ -338,10 +392,10 @@ const NanoCheckbox = /*@__PURE__*/ defineContainer('nano-checkbox', undefined, {
338
392
  required: 'required',
339
393
  type: 'type',
340
394
  label: 'label',
395
+ hideLabel: 'hide-label',
341
396
  indeterminate: 'indeterminate',
342
397
  invalid: 'invalid',
343
398
  validityMessage: 'validity-message',
344
- color: 'color',
345
399
  form: 'form'
346
400
  }, [
347
401
  'hasFocus',
@@ -352,10 +406,10 @@ const NanoCheckbox = /*@__PURE__*/ defineContainer('nano-checkbox', undefined, {
352
406
  'required',
353
407
  'type',
354
408
  'label',
409
+ 'hideLabel',
355
410
  'indeterminate',
356
411
  'invalid',
357
412
  'validityMessage',
358
- 'color',
359
413
  'form',
360
414
  'nanoChange',
361
415
  'nanoFocus',
@@ -386,9 +440,89 @@ const NanoCheckboxGroup = /*@__PURE__*/ defineContainer('nano-checkbox-group', u
386
440
  'nanoChange',
387
441
  'nanoValidate'
388
442
  ], 'value', 'v-nano-change', 'nanoChange');
443
+ const NanoCollapsibleComparison = /*@__PURE__*/ defineContainer('nano-collapsible-comparison', undefined, {
444
+ open: 'open'
445
+ }, [
446
+ 'open',
447
+ 'nanoToggle'
448
+ ]);
449
+ const NanoContentLinks = /*@__PURE__*/ defineContainer('nano-content-links', undefined);
450
+ const NanoCta = /*@__PURE__*/ defineContainer('nano-cta', undefined, {
451
+ theme: 'theme',
452
+ secondary: 'secondary',
453
+ size: 'size',
454
+ loading: 'loading',
455
+ icon: 'icon',
456
+ group: 'group'
457
+ }, [
458
+ 'theme',
459
+ 'secondary',
460
+ 'size',
461
+ 'loading',
462
+ 'icon',
463
+ 'group'
464
+ ]);
465
+ const NanoDataTable = /*@__PURE__*/ defineContainer('nano-data-table', undefined, {
466
+ customRenderer: 'custom-renderer',
467
+ scrollable: 'scrollable',
468
+ caption: 'caption',
469
+ showCaption: 'show-caption',
470
+ loading: 'loading',
471
+ placeholderSize: 'placeholder-size',
472
+ rows: 'rows',
473
+ columns: 'columns',
474
+ headRender: 'head-render',
475
+ rowRender: 'row-render',
476
+ footRender: 'foot-render',
477
+ showFooter: 'show-footer',
478
+ perBlock: 'per-block',
479
+ blocksLength: 'blocks-length',
480
+ searchTerm: 'search-term',
481
+ customFilterFn: 'custom-filter-fn',
482
+ customSortFn: 'custom-sort-fn',
483
+ defaultSort: 'default-sort',
484
+ showPaginateSpinner: 'show-paginate-spinner',
485
+ virtualTotalItems: 'virtual-total-items',
486
+ appliedFilters: 'applied-filters'
487
+ }, [
488
+ 'customRenderer',
489
+ 'scrollable',
490
+ 'caption',
491
+ 'showCaption',
492
+ 'loading',
493
+ 'placeholderSize',
494
+ 'rows',
495
+ 'columns',
496
+ 'headRender',
497
+ 'rowRender',
498
+ 'footRender',
499
+ 'showFooter',
500
+ 'perBlock',
501
+ 'blocksLength',
502
+ 'searchTerm',
503
+ 'customFilterFn',
504
+ 'customSortFn',
505
+ 'defaultSort',
506
+ 'showPaginateSpinner',
507
+ 'virtualTotalItems',
508
+ 'appliedFilters',
509
+ 'nanoTblReady',
510
+ 'nanoTblBlockRendered',
511
+ 'nanoTblBeforeSort',
512
+ 'nanoTblAfterSort',
513
+ 'nanoTblBeforeFilter',
514
+ 'nanoTblAfterFilter',
515
+ 'nanoTblBeforeSearch',
516
+ 'nanoTblAfterSearch',
517
+ 'nanoTblBeforeEdit'
518
+ ]);
389
519
  const NanoDatalist = /*@__PURE__*/ defineContainer('nano-datalist', undefined, {
520
+ selected: 'selected',
521
+ dropDownConfig: 'drop-down-config',
522
+ options: 'options',
390
523
  input: 'input',
391
524
  type: 'type',
525
+ activeOptions: 'active-options',
392
526
  open: 'open',
393
527
  disableFilter: 'disable-filter',
394
528
  disabled: 'disabled'
@@ -410,16 +544,18 @@ const NanoDateInput = /*@__PURE__*/ defineContainer('nano-date-input', undefined
410
544
  invalid: 'invalid',
411
545
  validityMessage: 'validity-message',
412
546
  helperText: 'helper-text',
547
+ helperTextFormat: 'helper-text-format',
413
548
  floatLabel: 'float-label',
414
549
  name: 'name',
415
550
  readonly: 'readonly',
416
551
  size: 'size',
417
552
  form: 'form',
418
553
  firstDayOfWeek: 'first-day-of-week',
554
+ localization: 'localization',
419
555
  disabled: 'disabled',
420
556
  color: 'color',
421
557
  autofocus: 'autofocus',
422
- clearInput: 'clear-input',
558
+ clearable: 'clearable',
423
559
  label: 'label',
424
560
  placeholder: 'placeholder',
425
561
  value: 'value',
@@ -433,7 +569,10 @@ const NanoDateInput = /*@__PURE__*/ defineContainer('nano-date-input', undefined
433
569
  picker: 'picker',
434
570
  initialPickerDate: 'initial-picker-date',
435
571
  pickerOpen: 'picker-open',
436
- closeAfterPicked: 'close-after-picked'
572
+ closeAfterPicked: 'close-after-picked',
573
+ dropDownConfig: 'drop-down-config',
574
+ dateValue: 'date-value',
575
+ isDateDisabled: 'is-date-disabled'
437
576
  }, [
438
577
  'invalid',
439
578
  'validityMessage',
@@ -449,7 +588,7 @@ const NanoDateInput = /*@__PURE__*/ defineContainer('nano-date-input', undefined
449
588
  'disabled',
450
589
  'color',
451
590
  'autofocus',
452
- 'clearInput',
591
+ 'clearable',
453
592
  'label',
454
593
  'placeholder',
455
594
  'value',
@@ -475,15 +614,16 @@ const NanoDatePicker = /*@__PURE__*/ defineContainer('nano-date-picker', undefin
475
614
  min: 'min',
476
615
  max: 'max',
477
616
  firstDayOfWeek: 'first-day-of-week',
478
- color: 'color',
479
- isModal: 'is-modal'
617
+ localization: 'localization',
618
+ isDateDisabled: 'is-date-disabled',
619
+ isModal: 'is-modal',
620
+ firstFocusEle: 'first-focus-ele'
480
621
  }, [
481
622
  'selectedDate',
482
623
  'min',
483
624
  'max',
484
625
  'firstDayOfWeek',
485
626
  'localization',
486
- 'color',
487
627
  'isDateDisabled',
488
628
  'isModal',
489
629
  'firstFocusEle',
@@ -493,27 +633,22 @@ const NanoDetails = /*@__PURE__*/ defineContainer('nano-details', undefined, {
493
633
  label: 'label',
494
634
  open: 'open',
495
635
  disabled: 'disabled',
496
- noHandle: 'no-handle',
497
- iconRotation: 'icon-rotation',
498
- useCacheHeight: 'use-cache-height'
636
+ size: 'size'
499
637
  }, [
500
638
  'label',
501
639
  'open',
502
640
  'disabled',
503
- 'noHandle',
504
- 'iconRotation',
505
- 'useCacheHeight',
506
- 'nanoOpened',
507
- 'nanoClosed',
508
- 'nanoAfterOpened',
509
- 'nanoAfterClosed'
641
+ 'size',
642
+ 'nanoOpen',
643
+ 'nanoClose',
644
+ 'nanoAfterOpen',
645
+ 'nanoAfterClose'
510
646
  ]);
511
647
  const NanoDialog = /*@__PURE__*/ defineContainer('nano-dialog', undefined, {
512
648
  showRibbon: 'show-ribbon',
513
649
  open: 'open',
514
650
  label: 'label',
515
651
  noHeader: 'no-header',
516
- noFooter: 'no-footer',
517
652
  noUserDismiss: 'no-user-dismiss',
518
653
  storeId: 'store-id',
519
654
  storeMethod: 'store-method',
@@ -523,7 +658,6 @@ const NanoDialog = /*@__PURE__*/ defineContainer('nano-dialog', undefined, {
523
658
  'open',
524
659
  'label',
525
660
  'noHeader',
526
- 'noFooter',
527
661
  'noUserDismiss',
528
662
  'storeId',
529
663
  'storeMethod',
@@ -544,7 +678,8 @@ const NanoDrawer = /*@__PURE__*/ defineContainer('nano-drawer', undefined, {
544
678
  storeId: 'store-id',
545
679
  storeMethod: 'store-method',
546
680
  noUserDismiss: 'no-user-dismiss',
547
- hoist: 'hoist'
681
+ hoist: 'hoist',
682
+ resizable: 'resizable'
548
683
  }, [
549
684
  'open',
550
685
  'label',
@@ -555,22 +690,26 @@ const NanoDrawer = /*@__PURE__*/ defineContainer('nano-drawer', undefined, {
555
690
  'storeMethod',
556
691
  'noUserDismiss',
557
692
  'hoist',
693
+ 'resizable',
558
694
  'nanoShow',
559
695
  'nanoHide',
560
696
  'nanoAfterHide',
561
697
  'nanoAfterShow',
562
698
  'nanoInitialFocus',
563
- 'nanoRquestClose'
699
+ 'nanoRequestClose'
564
700
  ]);
565
701
  const NanoDropdown = /*@__PURE__*/ defineContainer('nano-dropdown', undefined, {
566
702
  autoOpen: 'auto-open',
567
703
  open: 'open',
568
704
  closeOnSelect: 'close-on-select',
705
+ containingElement: 'containing-element',
706
+ tetherTo: 'tether-to',
569
707
  placement: 'placement',
570
708
  distance: 'distance',
571
709
  skidding: 'skidding',
572
710
  hoist: 'hoist',
573
- dialogTitle: 'dialog-title'
711
+ dialogTitle: 'dialog-title',
712
+ eventType: 'event-type'
574
713
  }, [
575
714
  'autoOpen',
576
715
  'open',
@@ -593,8 +732,12 @@ const NanoFieldValidator = /*@__PURE__*/ defineContainer('nano-field-validator',
593
732
  scrollToInvalid: 'scroll-to-invalid',
594
733
  dirty: 'dirty',
595
734
  valid: 'valid',
735
+ store: 'store',
736
+ payload: 'payload',
596
737
  showValidation: 'show-validation',
597
- extraFieldSelector: 'extra-field-selector'
738
+ validationState: 'validation-state',
739
+ extraFieldSelector: 'extra-field-selector',
740
+ validation: 'validation'
598
741
  }, [
599
742
  'validateOn',
600
743
  'scrollToInvalid',
@@ -627,6 +770,7 @@ const NanoFileUpload = /*@__PURE__*/ defineContainer('nano-file-upload', undefin
627
770
  form: 'form',
628
771
  invalid: 'invalid',
629
772
  validityMessage: 'validity-message',
773
+ files: 'files',
630
774
  value: 'value'
631
775
  }, [
632
776
  'name',
@@ -652,53 +796,42 @@ const NanoFileUpload = /*@__PURE__*/ defineContainer('nano-file-upload', undefin
652
796
  'nanoBlur',
653
797
  'nanoValidate'
654
798
  ], 'files', 'v-nano-change', 'nanoChange');
799
+ const NanoFooter = /*@__PURE__*/ defineContainer('nano-footer', undefined);
655
800
  const NanoGlobalNav = /*@__PURE__*/ defineContainer('nano-global-nav', undefined, {
656
- env: 'env',
657
- ssoDataUrl: 'sso-data-url',
658
- ssoRedirect: 'sso-redirect',
659
- getMyAccountData: 'get-my-account-data',
660
- showSearch: 'show-search',
661
- showLogo: 'show-logo',
662
801
  logoUrl: 'logo-url',
663
- searchAppId: 'search-app-id',
664
- searchApiKey: 'search-api-key',
665
- searchValue: 'search-value',
666
- searchIndex: 'search-index',
802
+ cartUrl: 'cart-url',
803
+ msgUrl: 'msg-url',
804
+ loginUrl: 'login-url',
805
+ logoutUrl: 'logout-url',
806
+ contactUrl: 'contact-url',
807
+ sessionRedirect: 'session-redirect',
667
808
  cartCount: 'cart-count',
668
809
  msgCount: 'msg-count',
669
- cartUrl: 'cart-url',
670
- msgUrl: 'msg-url'
810
+ myAccountUrl: 'my-account-url',
811
+ myAccountData: 'my-account-data',
812
+ myAccountUser: 'my-account-user',
813
+ searchIndex: 'search-index',
814
+ searchValue: 'search-value'
671
815
  }, [
672
- 'env',
673
- 'ssoDataUrl',
674
- 'myAccountData',
675
- 'ssoRedirect',
676
- 'getMyAccountData',
677
- 'activeMyAccountSections',
678
- 'showSearch',
679
- 'showLogo',
680
816
  'logoUrl',
681
- 'searchIndeces',
682
- 'myAccountUser',
683
- 'searchAppId',
684
- 'searchApiKey',
685
- 'searchValue',
686
- 'searchIndex',
687
- 'cartCount',
688
- 'msgCount',
689
817
  'cartUrl',
690
818
  'msgUrl',
691
- 'nanoIsReady',
819
+ 'loginUrl',
820
+ 'logoutUrl',
821
+ 'contactUrl',
822
+ 'sessionRedirect',
823
+ 'cartCount',
824
+ 'msgCount',
825
+ 'myAccountUrl',
826
+ 'myAccountData',
827
+ 'myAccountUser',
828
+ 'searchIndex',
829
+ 'searchValue',
830
+ 'nanoUserData',
692
831
  'nanoSearchResult',
693
832
  'nanoSearchError',
694
833
  'nanoSearchReset'
695
834
  ]);
696
- const NanoGlobalNavUserProfile = /*@__PURE__*/ defineContainer('nano-global-nav-user-profile', undefined, {
697
- userProfileUrl: 'user-profile-url'
698
- }, [
699
- 'myAccountUser',
700
- 'userProfileUrl'
701
- ]);
702
835
  const NanoGlobalSearchResults = /*@__PURE__*/ defineContainer('nano-global-search-results', undefined, {}, [
703
836
  'nanoSearchGoBack'
704
837
  ]);
@@ -768,7 +901,9 @@ const NanoIcon = /*@__PURE__*/ defineContainer('nano-icon', undefined, {
768
901
  'src',
769
902
  'icon',
770
903
  'size',
771
- 'lazy'
904
+ 'lazy',
905
+ 'nanoLoad',
906
+ 'nanoError'
772
907
  ]);
773
908
  const NanoIconButton = /*@__PURE__*/ defineContainer('nano-icon-button', undefined, {
774
909
  iconName: 'icon-name',
@@ -797,6 +932,13 @@ const NanoIconButton = /*@__PURE__*/ defineContainer('nano-icon-button', undefin
797
932
  'target',
798
933
  'form'
799
934
  ]);
935
+ const NanoIconItem = /*@__PURE__*/ defineContainer('nano-icon-item', undefined, {
936
+ layout: 'layout',
937
+ size: 'size'
938
+ }, [
939
+ 'layout',
940
+ 'size'
941
+ ]);
800
942
  const NanoImg = /*@__PURE__*/ defineContainer('nano-img', undefined, {
801
943
  alt: 'alt',
802
944
  src: 'src',
@@ -815,16 +957,22 @@ const NanoImg = /*@__PURE__*/ defineContainer('nano-img', undefined, {
815
957
  'nanoImgDidLoad',
816
958
  'nanoImgError'
817
959
  ]);
960
+ const NanoInPageNav = /*@__PURE__*/ defineContainer('nano-in-page-nav', undefined, {
961
+ breakpoint: 'breakpoint',
962
+ stickyHeaders: 'sticky-headers'
963
+ }, [
964
+ 'breakpoint',
965
+ 'stickyHeaders'
966
+ ]);
818
967
  const NanoInput = /*@__PURE__*/ defineContainer('nano-input', undefined, {
819
968
  invalid: 'invalid',
820
969
  validityMessage: 'validity-message',
821
- color: 'color',
822
970
  accept: 'accept',
823
971
  autocapitalise: 'autocapitalise',
824
972
  autocomplete: 'autocomplete',
825
973
  autocorrect: 'autocorrect',
826
974
  autofocus: 'autofocus',
827
- clearInput: 'clear-input',
975
+ clearable: 'clearable',
828
976
  clearOnEdit: 'clear-on-edit',
829
977
  debounce: 'debounce',
830
978
  disabled: 'disabled',
@@ -832,6 +980,7 @@ const NanoInput = /*@__PURE__*/ defineContainer('nano-input', undefined, {
832
980
  validateOn: 'validate-on',
833
981
  showInlineError: 'show-inline-error',
834
982
  label: 'label',
983
+ alwaysShowPlaceholder: 'always-show-placeholder',
835
984
  hideLabel: 'hide-label',
836
985
  floatLabel: 'float-label',
837
986
  max: 'max',
@@ -850,19 +999,25 @@ const NanoInput = /*@__PURE__*/ defineContainer('nano-input', undefined, {
850
999
  type: 'type',
851
1000
  form: 'form',
852
1001
  value: 'value',
1002
+ valueAsNumber: 'value-as-number',
1003
+ valueAsDate: 'value-as-date',
1004
+ showCharCount: 'show-char-count',
853
1005
  resize: 'resize',
854
1006
  rows: 'rows',
855
- showCharCount: 'show-char-count'
1007
+ showPicker: 'show-picker',
1008
+ isDateDisabled: 'is-date-disabled',
1009
+ initialPickerDate: 'initial-picker-date',
1010
+ closeAfterPicked: 'close-after-picked',
1011
+ pickerOptions: 'picker-options'
856
1012
  }, [
857
1013
  'invalid',
858
1014
  'validityMessage',
859
- 'color',
860
1015
  'accept',
861
1016
  'autocapitalise',
862
1017
  'autocomplete',
863
1018
  'autocorrect',
864
1019
  'autofocus',
865
- 'clearInput',
1020
+ 'clearable',
866
1021
  'clearOnEdit',
867
1022
  'debounce',
868
1023
  'disabled',
@@ -870,6 +1025,7 @@ const NanoInput = /*@__PURE__*/ defineContainer('nano-input', undefined, {
870
1025
  'validateOn',
871
1026
  'showInlineError',
872
1027
  'label',
1028
+ 'alwaysShowPlaceholder',
873
1029
  'hideLabel',
874
1030
  'floatLabel',
875
1031
  'max',
@@ -888,9 +1044,16 @@ const NanoInput = /*@__PURE__*/ defineContainer('nano-input', undefined, {
888
1044
  'type',
889
1045
  'form',
890
1046
  'value',
1047
+ 'valueAsNumber',
1048
+ 'valueAsDate',
1049
+ 'showCharCount',
891
1050
  'resize',
892
1051
  'rows',
893
- 'showCharCount',
1052
+ 'showPicker',
1053
+ 'isDateDisabled',
1054
+ 'initialPickerDate',
1055
+ 'closeAfterPicked',
1056
+ 'pickerOptions',
894
1057
  'nanoInput',
895
1058
  'nanoChange',
896
1059
  'nanoBlur',
@@ -911,6 +1074,25 @@ const NanoIntersectionObserve = /*@__PURE__*/ defineContainer('nano-intersection
911
1074
  'nanoIntersecting',
912
1075
  'nanoNotIntersecting'
913
1076
  ]);
1077
+ const NanoMaskedOverflow = /*@__PURE__*/ defineContainer('nano-masked-overflow', undefined, {
1078
+ label: 'label',
1079
+ scrollControls: 'scroll-controls',
1080
+ orientation: 'orientation',
1081
+ showIndicator: 'show-indicator',
1082
+ hideScrollbars: 'hide-scrollbars',
1083
+ activeHandler: 'active-handler',
1084
+ inactiveHandler: 'inactive-handler',
1085
+ isActiveHandler: 'is-active-handler'
1086
+ }, [
1087
+ 'label',
1088
+ 'scrollControls',
1089
+ 'orientation',
1090
+ 'showIndicator',
1091
+ 'hideScrollbars',
1092
+ 'activeHandler',
1093
+ 'inactiveHandler',
1094
+ 'isActiveHandler'
1095
+ ]);
914
1096
  const NanoMenu = /*@__PURE__*/ defineContainer('nano-menu', undefined, {
915
1097
  hasFocus: 'has-focus',
916
1098
  type: 'type',
@@ -951,7 +1133,7 @@ const NanoNavItem = /*@__PURE__*/ defineContainer('nano-nav-item', undefined, {
951
1133
  disabled: 'disabled',
952
1134
  open: 'open',
953
1135
  selected: 'selected',
954
- secondaryActiveWidth: 'secondary-active-width',
1136
+ checkbox: 'checkbox',
955
1137
  closeOnBlur: 'close-on-blur',
956
1138
  notification: 'notification'
957
1139
  }, [
@@ -960,41 +1142,30 @@ const NanoNavItem = /*@__PURE__*/ defineContainer('nano-nav-item', undefined, {
960
1142
  'disabled',
961
1143
  'open',
962
1144
  'selected',
963
- 'secondaryActiveWidth',
964
- 'secondaryFallback',
1145
+ 'checkbox',
965
1146
  'closeOnBlur',
966
1147
  'notification',
967
1148
  'nanoClose',
968
1149
  'nanoOpen',
969
1150
  'nanoOpening',
970
- 'nanoClosing',
971
- 'nanoBlur',
972
- 'nanoFocus'
1151
+ 'nanoClosing'
973
1152
  ]);
974
1153
  const NanoOption = /*@__PURE__*/ defineContainer('nano-option', undefined, {
975
1154
  value: 'value',
976
1155
  label: 'label',
977
1156
  selected: 'selected',
978
1157
  disabled: 'disabled',
979
- filterMeta: 'filter-meta'
1158
+ filterMeta: 'filter-meta',
1159
+ href: 'href'
980
1160
  }, [
981
1161
  'value',
982
1162
  'label',
983
1163
  'selected',
984
1164
  'disabled',
985
1165
  'filterMeta',
1166
+ 'href',
986
1167
  'nanoSelect'
987
1168
  ]);
988
- const NanoOverflowNav = /*@__PURE__*/ defineContainer('nano-overflow-nav', undefined, {
989
- scrollControls: 'scroll-controls',
990
- orientation: 'orientation'
991
- }, [
992
- 'scrollControls',
993
- 'orientation',
994
- 'activeHandler',
995
- 'inActiveHandler',
996
- 'isActiveHandler'
997
- ]);
998
1169
  const NanoProgressBar = /*@__PURE__*/ defineContainer('nano-progress-bar', undefined, {
999
1170
  value: 'value',
1000
1171
  indeterminate: 'indeterminate',
@@ -1042,7 +1213,8 @@ const NanoRating = /*@__PURE__*/ defineContainer('nano-rating', undefined, {
1042
1213
  readonly: 'readonly',
1043
1214
  disabled: 'disabled',
1044
1215
  name: 'name',
1045
- symbolName: 'symbol-name'
1216
+ symbolName: 'symbol-name',
1217
+ symbol: 'symbol'
1046
1218
  }, [
1047
1219
  'value',
1048
1220
  'max',
@@ -1070,7 +1242,6 @@ const NanoResizeObserve = /*@__PURE__*/ defineContainer('nano-resize-observe', u
1070
1242
  const NanoSelect = /*@__PURE__*/ defineContainer('nano-select', undefined, {
1071
1243
  invalid: 'invalid',
1072
1244
  validityMessage: 'validity-message',
1073
- color: 'color',
1074
1245
  autofocus: 'autofocus',
1075
1246
  disabled: 'disabled',
1076
1247
  validateOn: 'validate-on',
@@ -1090,13 +1261,15 @@ const NanoSelect = /*@__PURE__*/ defineContainer('nano-select', undefined, {
1090
1261
  form: 'form',
1091
1262
  allowCustomValues: 'allow-custom-values',
1092
1263
  value: 'value',
1093
- clearSelect: 'clear-select',
1264
+ options: 'options',
1265
+ clearable: 'clearable',
1094
1266
  mask: 'mask',
1095
- debounce: 'debounce'
1267
+ debounce: 'debounce',
1268
+ dropDownConfig: 'drop-down-config',
1269
+ valueTagTemplate: 'value-tag-template'
1096
1270
  }, [
1097
1271
  'invalid',
1098
1272
  'validityMessage',
1099
- 'color',
1100
1273
  'autofocus',
1101
1274
  'disabled',
1102
1275
  'validateOn',
@@ -1117,7 +1290,7 @@ const NanoSelect = /*@__PURE__*/ defineContainer('nano-select', undefined, {
1117
1290
  'allowCustomValues',
1118
1291
  'value',
1119
1292
  'options',
1120
- 'clearSelect',
1293
+ 'clearable',
1121
1294
  'mask',
1122
1295
  'debounce',
1123
1296
  'dropDownConfig',
@@ -1142,6 +1315,7 @@ const NanoSlide = /*@__PURE__*/ defineContainer('nano-slide', undefined, {
1142
1315
  'nanoSlideReady'
1143
1316
  ]);
1144
1317
  const NanoSlides = /*@__PURE__*/ defineContainer('nano-slides', undefined, {
1318
+ options: 'options',
1145
1319
  navbtns: 'navbtns',
1146
1320
  pager: 'pager',
1147
1321
  fullscreenbtn: 'fullscreenbtn',
@@ -1177,6 +1351,12 @@ const NanoSortable = /*@__PURE__*/ defineContainer('nano-sortable', undefined, {
1177
1351
  handleSelector: 'handle-selector',
1178
1352
  dropzoneSelector: 'dropzone-selector',
1179
1353
  helperText: 'helper-text',
1354
+ itemDescriptor: 'item-descriptor',
1355
+ grabbedHelperText: 'grabbed-helper-text',
1356
+ droppedHelperText: 'dropped-helper-text',
1357
+ reorderHelperText: 'reorder-helper-text',
1358
+ createKeyboardHandle: 'create-keyboard-handle',
1359
+ sortableHostElement: 'sortable-host-element',
1180
1360
  animationEnabled: 'animation-enabled',
1181
1361
  draggedClass: 'dragged-class',
1182
1362
  handleDraggedClass: 'handle-dragged-class',
@@ -1245,6 +1425,7 @@ const NanoSticker = /*@__PURE__*/ defineContainer('nano-sticker', undefined, {
1245
1425
  hideOnNewStickers: 'hide-on-new-stickers',
1246
1426
  breakPointMax: 'break-point-max',
1247
1427
  breakPointMin: 'break-point-min',
1428
+ scrollParent: 'scroll-parent',
1248
1429
  stickTo: 'stick-to'
1249
1430
  }, [
1250
1431
  'autoResize',
@@ -1284,14 +1465,16 @@ const NanoTabContent = /*@__PURE__*/ defineContainer('nano-tab-content', undefin
1284
1465
  const NanoTabGroup = /*@__PURE__*/ defineContainer('nano-tab-group', undefined, {
1285
1466
  placement: 'placement',
1286
1467
  noScrollControls: 'no-scroll-controls',
1287
- color: 'color',
1468
+ equalTabSize: 'equal-tab-size',
1469
+ size: 'size',
1288
1470
  storeId: 'store-id',
1289
1471
  storeMethod: 'store-method',
1290
1472
  disableSwipe: 'disable-swipe'
1291
1473
  }, [
1292
1474
  'placement',
1293
1475
  'noScrollControls',
1294
- 'color',
1476
+ 'equalTabSize',
1477
+ 'size',
1295
1478
  'storeId',
1296
1479
  'storeMethod',
1297
1480
  'disableSwipe',
@@ -1301,47 +1484,21 @@ const NanoTabGroup = /*@__PURE__*/ defineContainer('nano-tab-group', undefined,
1301
1484
  'nanoTabClose'
1302
1485
  ]);
1303
1486
  const NanoTable = /*@__PURE__*/ defineContainer('nano-table', undefined, {
1304
- type: 'type',
1305
- caption: 'caption',
1306
- showCaption: 'show-caption',
1307
- loading: 'loading',
1308
- placeholderSize: 'placeholder-size',
1309
- showFooter: 'show-footer',
1310
- perBlock: 'per-block',
1311
- blocksLength: 'blocks-length',
1312
- searchTerm: 'search-term',
1313
- defaultSort: 'default-sort',
1314
- virtualTotalItems: 'virtual-total-items'
1487
+ compact: 'compact',
1488
+ scrollable: 'scrollable',
1489
+ hideCaption: 'hide-caption'
1315
1490
  }, [
1316
- 'customRenderer',
1317
- 'type',
1318
- 'caption',
1319
- 'showCaption',
1320
- 'loading',
1321
- 'placeholderSize',
1322
- 'rows',
1323
- 'columns',
1324
- 'headRender',
1325
- 'rowRender',
1326
- 'footRender',
1327
- 'showFooter',
1328
- 'perBlock',
1329
- 'blocksLength',
1330
- 'searchTerm',
1331
- 'customFilterFn',
1332
- 'customSortFn',
1333
- 'defaultSort',
1334
- 'virtualTotalItems',
1335
- 'appliedFilters',
1336
- 'nanoTblReady',
1337
- 'nanoTblBlockRendered',
1338
- 'nanoTblBeforeSort',
1339
- 'nanoTblAfterSort',
1340
- 'nanoTblBeforeFilter',
1341
- 'nanoTblAfterFilter',
1342
- 'nanoTblBeforeSearch',
1343
- 'nanoTblAfterSearch',
1344
- 'nanoTblBeforeEdit'
1491
+ 'compact',
1492
+ 'scrollable',
1493
+ 'hideCaption'
1494
+ ]);
1495
+ const NanoTag = /*@__PURE__*/ defineContainer('nano-tag', undefined, {
1496
+ closable: 'closable',
1497
+ size: 'size'
1498
+ }, [
1499
+ 'closable',
1500
+ 'size',
1501
+ 'nanoClose'
1345
1502
  ]);
1346
1503
  const NanoTooltip = /*@__PURE__*/ defineContainer('nano-tooltip', undefined, {
1347
1504
  content: 'content',
@@ -1376,8 +1533,17 @@ var proxies = /*#__PURE__*/Object.freeze({
1376
1533
  NanoAlgoliaPagination: NanoAlgoliaPagination,
1377
1534
  NanoAlgoliaResults: NanoAlgoliaResults,
1378
1535
  NanoAnimation: NanoAnimation,
1536
+ NanoAvatar: NanoAvatar,
1537
+ NanoBadge: NanoBadge,
1538
+ NanoBreadcrumb: NanoBreadcrumb,
1539
+ NanoCard: NanoCard,
1540
+ NanoCardCarousel: NanoCardCarousel,
1379
1541
  NanoCheckbox: NanoCheckbox,
1380
1542
  NanoCheckboxGroup: NanoCheckboxGroup,
1543
+ NanoCollapsibleComparison: NanoCollapsibleComparison,
1544
+ NanoContentLinks: NanoContentLinks,
1545
+ NanoCta: NanoCta,
1546
+ NanoDataTable: NanoDataTable,
1381
1547
  NanoDatalist: NanoDatalist,
1382
1548
  NanoDateInput: NanoDateInput,
1383
1549
  NanoDatePicker: NanoDatePicker,
@@ -1387,23 +1553,25 @@ var proxies = /*#__PURE__*/Object.freeze({
1387
1553
  NanoDropdown: NanoDropdown,
1388
1554
  NanoFieldValidator: NanoFieldValidator,
1389
1555
  NanoFileUpload: NanoFileUpload,
1556
+ NanoFooter: NanoFooter,
1390
1557
  NanoGlobalNav: NanoGlobalNav,
1391
- NanoGlobalNavUserProfile: NanoGlobalNavUserProfile,
1392
1558
  NanoGlobalSearchResults: NanoGlobalSearchResults,
1393
1559
  NanoGrid: NanoGrid,
1394
1560
  NanoGridItem: NanoGridItem,
1395
1561
  NanoHero: NanoHero,
1396
1562
  NanoIcon: NanoIcon,
1397
1563
  NanoIconButton: NanoIconButton,
1564
+ NanoIconItem: NanoIconItem,
1398
1565
  NanoImg: NanoImg,
1566
+ NanoInPageNav: NanoInPageNav,
1399
1567
  NanoInput: NanoInput,
1400
1568
  NanoIntersectionObserve: NanoIntersectionObserve,
1569
+ NanoMaskedOverflow: NanoMaskedOverflow,
1401
1570
  NanoMenu: NanoMenu,
1402
1571
  NanoMenuDrawer: NanoMenuDrawer,
1403
1572
  NanoMoreLess: NanoMoreLess,
1404
1573
  NanoNavItem: NanoNavItem,
1405
1574
  NanoOption: NanoOption,
1406
- NanoOverflowNav: NanoOverflowNav,
1407
1575
  NanoProgressBar: NanoProgressBar,
1408
1576
  NanoRange: NanoRange,
1409
1577
  NanoRating: NanoRating,
@@ -1420,6 +1588,7 @@ var proxies = /*#__PURE__*/Object.freeze({
1420
1588
  NanoTabContent: NanoTabContent,
1421
1589
  NanoTabGroup: NanoTabGroup,
1422
1590
  NanoTable: NanoTable,
1591
+ NanoTag: NanoTag,
1423
1592
  NanoTooltip: NanoTooltip
1424
1593
  });
1425
1594
 
@@ -1499,5 +1668,5 @@ const NanoVue = (resourcesUrl, globalInstall, prefix) => {
1499
1668
  };
1500
1669
  };
1501
1670
 
1502
- export { NanoAccordion, NanoAlert, NanoAlgolia, NanoAlgoliaFilter, NanoAlgoliaPagination, NanoAlgoliaResults, NanoAnimation, NanoCheckbox, NanoCheckboxGroup, NanoDatalist, NanoDateInput, NanoDatePicker, NanoDetails, NanoDialog, NanoDrawer, NanoDropdown, NanoFieldValidator, NanoFileUpload, NanoGlobalNav, NanoGlobalNavUserProfile, NanoGlobalSearchResults, NanoGrid, NanoGridItem, NanoHero, NanoIcon, NanoIconButton, NanoImg, NanoInput, NanoIntersectionObserve, NanoMenu, NanoMenuDrawer, NanoMoreLess, NanoNavItem, NanoOption, NanoOverflowNav, NanoProgressBar, NanoRange, NanoRating, NanoResizeObserve, NanoSelect, NanoSkeleton, NanoSlide, NanoSlides, NanoSortable, NanoSpinner, NanoSplitPane, NanoSticker, NanoTab, NanoTabContent, NanoTabGroup, NanoTable, NanoTooltip, NanoVue };
1671
+ export { NanoAccordion, NanoAlert, NanoAlgolia, NanoAlgoliaFilter, NanoAlgoliaPagination, NanoAlgoliaResults, NanoAnimation, NanoAvatar, NanoBadge, NanoBreadcrumb, NanoCard, NanoCardCarousel, NanoCheckbox, NanoCheckboxGroup, NanoCollapsibleComparison, NanoContentLinks, NanoCta, NanoDataTable, NanoDatalist, NanoDateInput, NanoDatePicker, NanoDetails, NanoDialog, NanoDrawer, NanoDropdown, NanoFieldValidator, NanoFileUpload, NanoFooter, NanoGlobalNav, NanoGlobalSearchResults, NanoGrid, NanoGridItem, NanoHero, NanoIcon, NanoIconButton, NanoIconItem, NanoImg, NanoInPageNav, NanoInput, NanoIntersectionObserve, NanoMaskedOverflow, NanoMenu, NanoMenuDrawer, NanoMoreLess, NanoNavItem, NanoOption, NanoProgressBar, NanoRange, NanoRating, NanoResizeObserve, NanoSelect, NanoSkeleton, NanoSlide, NanoSlides, NanoSortable, NanoSpinner, NanoSplitPane, NanoSticker, NanoTab, NanoTabContent, NanoTabGroup, NanoTable, NanoTag, NanoTooltip, NanoVue };
1503
1672
  //# sourceMappingURL=index.js.map