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