@aotearoan/neon 28.5.0 → 28.6.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.
Files changed (92) hide show
  1. package/dist/components/layout/basic-layout/NeonBasicLayout.cjs.js +2 -0
  2. package/dist/components/layout/basic-layout/NeonBasicLayout.cjs.js.map +1 -0
  3. package/dist/components/layout/basic-layout/NeonBasicLayout.es.js +40 -0
  4. package/dist/components/layout/basic-layout/NeonBasicLayout.es.js.map +1 -0
  5. package/dist/components/layout/basic-layout/NeonBasicLayout.vue.cjs.js +2 -0
  6. package/dist/components/layout/basic-layout/NeonBasicLayout.vue.cjs.js.map +1 -0
  7. package/dist/components/layout/basic-layout/NeonBasicLayout.vue.es.js +41 -0
  8. package/dist/components/layout/basic-layout/NeonBasicLayout.vue.es.js.map +1 -0
  9. package/dist/components/layout/card-list/NeonCardList.cjs.js +1 -1
  10. package/dist/components/layout/card-list/NeonCardList.cjs.js.map +1 -1
  11. package/dist/components/layout/card-list/NeonCardList.es.js +47 -45
  12. package/dist/components/layout/card-list/NeonCardList.es.js.map +1 -1
  13. package/dist/components/layout/card-list/NeonCardList.vue.cjs.js +1 -1
  14. package/dist/components/layout/card-list/NeonCardList.vue.cjs.js.map +1 -1
  15. package/dist/components/layout/card-list/NeonCardList.vue.es.js +48 -50
  16. package/dist/components/layout/card-list/NeonCardList.vue.es.js.map +1 -1
  17. package/dist/components/layout/list-layout/NeonListLayout.cjs.js +1 -1
  18. package/dist/components/layout/list-layout/NeonListLayout.cjs.js.map +1 -1
  19. package/dist/components/layout/list-layout/NeonListLayout.es.js +16 -11
  20. package/dist/components/layout/list-layout/NeonListLayout.es.js.map +1 -1
  21. package/dist/components/layout/list-layout/NeonListLayout.vue.cjs.js +1 -1
  22. package/dist/components/layout/list-layout/NeonListLayout.vue.cjs.js.map +1 -1
  23. package/dist/components/layout/list-layout/NeonListLayout.vue.es.js +10 -9
  24. package/dist/components/layout/list-layout/NeonListLayout.vue.es.js.map +1 -1
  25. package/dist/components/presentation/avatar/NeonAvatar.cjs.js +2 -0
  26. package/dist/components/presentation/avatar/NeonAvatar.cjs.js.map +1 -0
  27. package/dist/components/presentation/avatar/NeonAvatar.es.js +66 -0
  28. package/dist/components/presentation/avatar/NeonAvatar.es.js.map +1 -0
  29. package/dist/components/presentation/avatar/NeonAvatar.vue.cjs.js +2 -0
  30. package/dist/components/presentation/avatar/NeonAvatar.vue.cjs.js.map +1 -0
  31. package/dist/components/presentation/avatar/NeonAvatar.vue.es.js +25 -0
  32. package/dist/components/presentation/avatar/NeonAvatar.vue.es.js.map +1 -0
  33. package/dist/components/presentation/header/NeonHeader.vue.cjs.js +1 -1
  34. package/dist/components/presentation/header/NeonHeader.vue.cjs.js.map +1 -1
  35. package/dist/components/presentation/header/NeonHeader.vue.es.js +31 -29
  36. package/dist/components/presentation/header/NeonHeader.vue.es.js.map +1 -1
  37. package/dist/model/layout/card-list/NeonCardListStyle.cjs.js +2 -0
  38. package/dist/model/layout/card-list/NeonCardListStyle.cjs.js.map +1 -0
  39. package/dist/model/layout/card-list/NeonCardListStyle.es.js +5 -0
  40. package/dist/model/layout/card-list/NeonCardListStyle.es.js.map +1 -0
  41. package/dist/model/presentation/badge/NeonBadgeSize.cjs.js +1 -1
  42. package/dist/model/presentation/badge/NeonBadgeSize.cjs.js.map +1 -1
  43. package/dist/model/presentation/badge/NeonBadgeSize.es.js +1 -1
  44. package/dist/model/presentation/badge/NeonBadgeSize.es.js.map +1 -1
  45. package/dist/neon.cjs.js +1 -1
  46. package/dist/neon.es.js +265 -259
  47. package/dist/neon.es.js.map +1 -1
  48. package/dist/src/components/layout/basic-layout/NeonBasicLayout.d.ts +427 -0
  49. package/dist/src/components/layout/basic-layout/NeonBasicLayout.vue.d.ts +2 -0
  50. package/dist/src/components/layout/card-list/NeonCardList.d.ts +47 -60
  51. package/dist/src/components/layout/list-layout/NeonListLayout.d.ts +304 -250
  52. package/dist/src/components/presentation/avatar/NeonAvatar.d.ts +1806 -0
  53. package/dist/src/components/presentation/avatar/NeonAvatar.vue.d.ts +2 -0
  54. package/dist/src/model/layout/card-list/NeonCardListStyle.d.ts +13 -0
  55. package/dist/src/model/layout/card-list/NeonLoadOnDemandModel.d.ts +4 -8
  56. package/dist/src/model/presentation/badge/NeonBadgeSize.d.ts +3 -1
  57. package/dist/src/neon.d.ts +4 -1
  58. package/dist/src/utils/common/http/NeonHttpUtils.d.ts +23 -0
  59. package/dist/utils/common/http/NeonHttpUtils.cjs.js +2 -0
  60. package/dist/utils/common/http/NeonHttpUtils.cjs.js.map +1 -0
  61. package/dist/utils/common/http/NeonHttpUtils.es.js +31 -0
  62. package/dist/utils/common/http/NeonHttpUtils.es.js.map +1 -0
  63. package/package.json +1 -1
  64. package/src/sass/components/_badge.scss +2 -2
  65. package/src/sass/components/{_page-container.scss → _basic-layout.scss} +12 -33
  66. package/src/sass/components/_card-list.scss +30 -5
  67. package/src/sass/components/_date-picker.scss +2 -0
  68. package/src/sass/components/_drawer.scss +1 -0
  69. package/src/sass/components/_field-group.scss +5 -1
  70. package/src/sass/components/_header.scss +2 -1
  71. package/src/sass/components/_input.scss +6 -0
  72. package/src/sass/components/_link.scss +1 -0
  73. package/src/sass/components/_modal.scss +1 -0
  74. package/src/sass/components/_page.scss +1 -0
  75. package/src/sass/components/_range-slider.scss +4 -0
  76. package/src/sass/components/_sticky-buttons.scss +1 -1
  77. package/src/sass/components/components.scss +1 -1
  78. package/src/sass/includes/_dependencies.scss +1 -1
  79. package/src/sass/theme.scss +4 -4
  80. package/src/sass/variables-dark.scss +7 -0
  81. package/src/sass/variables-global.scss +21 -7
  82. package/src/sass/variables-light.scss +7 -0
  83. package/dist/components/layout/page-container/NeonPageContainer.cjs.js +0 -2
  84. package/dist/components/layout/page-container/NeonPageContainer.cjs.js.map +0 -1
  85. package/dist/components/layout/page-container/NeonPageContainer.es.js +0 -26
  86. package/dist/components/layout/page-container/NeonPageContainer.es.js.map +0 -1
  87. package/dist/components/layout/page-container/NeonPageContainer.vue.cjs.js +0 -2
  88. package/dist/components/layout/page-container/NeonPageContainer.vue.cjs.js.map +0 -1
  89. package/dist/components/layout/page-container/NeonPageContainer.vue.es.js +0 -31
  90. package/dist/components/layout/page-container/NeonPageContainer.vue.es.js.map +0 -1
  91. package/dist/src/components/layout/page-container/NeonPageContainer.d.ts +0 -98
  92. package/dist/src/components/layout/page-container/NeonPageContainer.vue.d.ts +0 -2
@@ -5,6 +5,7 @@ import type { NeonPaginationModel } from '@/model/navigation/pagination/NeonPagi
5
5
  import type { NeonCardListModel } from '@/model/layout/card-list/NeonCardListModel';
6
6
  import type { NeonIdentifiable } from '@/model/common/entity/NeonIdentifiable';
7
7
  import type { NeonSelectable } from '@/model/common/entity/NeonSelectable';
8
+ import { NeonCardListStyle } from '@/model/layout/card-list/NeonCardListStyle';
8
9
  /**
9
10
  * A page level layout component for displaying a list with a page header, filter bar, card list, pagination & an empty
10
11
  * state. Use this component directly inside the NeonPage <em>contents</em> slot.
@@ -77,6 +78,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
77
78
  type: BooleanConstructor;
78
79
  default: boolean;
79
80
  };
81
+ /**
82
+ * Specify the card list layout, either a 'List' of cards with 100% width or a responsive 'Grid' of cards.
83
+ */
84
+ listStyle: {
85
+ type: () => NeonCardListStyle;
86
+ default: () => NeonCardListStyle;
87
+ };
80
88
  /**
81
89
  * Model for configuring the on demand loading layout.
82
90
  */
@@ -165,6 +173,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
165
173
  type: BooleanConstructor;
166
174
  default: boolean;
167
175
  };
176
+ /**
177
+ * Specify the card list layout, either a 'List' of cards with 100% width or a responsive 'Grid' of cards.
178
+ */
179
+ listStyle: {
180
+ type: () => NeonCardListStyle;
181
+ default: () => NeonCardListStyle;
182
+ };
168
183
  /**
169
184
  * Model for configuring the on demand loading layout.
170
185
  */
@@ -187,6 +202,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
187
202
  loading: boolean;
188
203
  backButton: boolean;
189
204
  backLabel: string;
205
+ listStyle: NeonCardListStyle;
190
206
  selectable: boolean;
191
207
  initializing: boolean;
192
208
  }, {}, {
@@ -235,16 +251,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
235
251
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
236
252
  name: {
237
253
  type: StringConstructor;
238
- required: true; /**
239
- * Breadcrumbs to display above the header.
240
- */
254
+ required: true;
241
255
  };
242
256
  id: {
243
257
  type: StringConstructor;
244
258
  default: null;
245
259
  };
246
260
  color: {
247
- type: () => NeonFunctionalColor;
261
+ type: () => NeonFunctionalColor; /**
262
+ * Items to display as cards. Each item should be a NeonCardListModel.
263
+ */
248
264
  default: null;
249
265
  };
250
266
  inverse: {
@@ -254,7 +270,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
254
270
  disabled: {
255
271
  type: BooleanConstructor;
256
272
  default: boolean;
257
- };
273
+ }; /**
274
+ * Loading state for the initial load.
275
+ */
258
276
  }>, {
259
277
  sanitizedAttributes: import("vue").ComputedRef<{
260
278
  [x: string]: unknown;
@@ -263,16 +281,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
263
281
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
264
282
  name: {
265
283
  type: StringConstructor;
266
- required: true; /**
267
- * Breadcrumbs to display above the header.
268
- */
284
+ required: true;
269
285
  };
270
286
  id: {
271
287
  type: StringConstructor;
272
288
  default: null;
273
289
  };
274
290
  color: {
275
- type: () => NeonFunctionalColor;
291
+ type: () => NeonFunctionalColor; /**
292
+ * Items to display as cards. Each item should be a NeonCardListModel.
293
+ */
276
294
  default: null;
277
295
  };
278
296
  inverse: {
@@ -282,7 +300,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
282
300
  disabled: {
283
301
  type: BooleanConstructor;
284
302
  default: boolean;
285
- };
303
+ }; /**
304
+ * Loading state for the initial load.
305
+ */
286
306
  }>> & Readonly<{}>, {
287
307
  color: NeonFunctionalColor;
288
308
  id: string;
@@ -299,20 +319,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
299
319
  default: () => import("../../../neon").NeonEmptyStateType;
300
320
  };
301
321
  imageColor: {
302
- type: () => NeonFunctionalColor;
303
- /**
304
- * Breadcrumbs to display above the header.
322
+ type: () => NeonFunctionalColor; /**
323
+ * The subtitle of the header.
305
324
  */
306
325
  default: () => NeonFunctionalColor;
307
326
  };
308
327
  title: {
309
328
  type: StringConstructor;
310
- required: true; /**
311
- * Whether to display a back button
312
- */
313
- }; /**
314
- * Whether to display a back button
315
- */
329
+ required: true;
330
+ };
316
331
  subtitle: {
317
332
  type: StringConstructor;
318
333
  };
@@ -333,20 +348,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
333
348
  default: () => import("../../../neon").NeonEmptyStateType;
334
349
  };
335
350
  imageColor: {
336
- type: () => NeonFunctionalColor;
337
- /**
338
- * Breadcrumbs to display above the header.
351
+ type: () => NeonFunctionalColor; /**
352
+ * The subtitle of the header.
339
353
  */
340
354
  default: () => NeonFunctionalColor;
341
355
  };
342
356
  title: {
343
357
  type: StringConstructor;
344
- required: true; /**
345
- * Whether to display a back button
346
- */
347
- }; /**
348
- * Whether to display a back button
349
- */
358
+ required: true;
359
+ };
350
360
  subtitle: {
351
361
  type: StringConstructor;
352
362
  };
@@ -379,7 +389,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
379
389
  default: NeonFunctionalColor;
380
390
  };
381
391
  inverse: {
382
- type: BooleanConstructor;
392
+ type: BooleanConstructor; /**
393
+ * Override the label for the back button
394
+ */
383
395
  default: boolean;
384
396
  };
385
397
  alternateColor: {
@@ -416,10 +428,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
416
428
  transparent: {
417
429
  type: BooleanConstructor;
418
430
  default: boolean;
419
- }; /**
420
- * Emitted when in selectable mode and the selected state of a card is toggled.
421
- * @type {string, boolean} - the id of the card which is toggled & the new selected state.
422
- */
431
+ };
423
432
  outline: {
424
433
  type: BooleanConstructor;
425
434
  default: boolean;
@@ -481,7 +490,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
481
490
  default: NeonFunctionalColor;
482
491
  };
483
492
  inverse: {
484
- type: BooleanConstructor;
493
+ type: BooleanConstructor; /**
494
+ * Override the label for the back button
495
+ */
485
496
  default: boolean;
486
497
  };
487
498
  alternateColor: {
@@ -518,10 +529,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
518
529
  transparent: {
519
530
  type: BooleanConstructor;
520
531
  default: boolean;
521
- }; /**
522
- * Emitted when in selectable mode and the selected state of a card is toggled.
523
- * @type {string, boolean} - the id of the card which is toggled & the new selected state.
524
- */
532
+ };
525
533
  outline: {
526
534
  type: BooleanConstructor;
527
535
  default: boolean;
@@ -607,16 +615,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
607
615
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
608
616
  name: {
609
617
  type: StringConstructor;
610
- required: true; /**
611
- * Breadcrumbs to display above the header.
612
- */
618
+ required: true;
613
619
  };
614
620
  id: {
615
621
  type: StringConstructor;
616
622
  default: null;
617
623
  };
618
624
  color: {
619
- type: () => NeonFunctionalColor;
625
+ type: () => NeonFunctionalColor; /**
626
+ * Items to display as cards. Each item should be a NeonCardListModel.
627
+ */
620
628
  default: null;
621
629
  };
622
630
  inverse: {
@@ -626,7 +634,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
626
634
  disabled: {
627
635
  type: BooleanConstructor;
628
636
  default: boolean;
629
- };
637
+ }; /**
638
+ * Loading state for the initial load.
639
+ */
630
640
  }>, {
631
641
  sanitizedAttributes: import("vue").ComputedRef<{
632
642
  [x: string]: unknown;
@@ -635,16 +645,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
635
645
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
636
646
  name: {
637
647
  type: StringConstructor;
638
- required: true; /**
639
- * Breadcrumbs to display above the header.
640
- */
648
+ required: true;
641
649
  };
642
650
  id: {
643
651
  type: StringConstructor;
644
652
  default: null;
645
653
  };
646
654
  color: {
647
- type: () => NeonFunctionalColor;
655
+ type: () => NeonFunctionalColor; /**
656
+ * Items to display as cards. Each item should be a NeonCardListModel.
657
+ */
648
658
  default: null;
649
659
  };
650
660
  inverse: {
@@ -654,7 +664,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
654
664
  disabled: {
655
665
  type: BooleanConstructor;
656
666
  default: boolean;
657
- };
667
+ }; /**
668
+ * Loading state for the initial load.
669
+ */
658
670
  }>> & Readonly<{}>, {
659
671
  color: NeonFunctionalColor;
660
672
  id: string;
@@ -680,18 +692,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
680
692
  };
681
693
  }>, {
682
694
  neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
683
- routerUrl: import("vue").ComputedRef<string | undefined>; /**
684
- * Make cards selectable.
685
- */
695
+ routerUrl: import("vue").ComputedRef<string | undefined>;
686
696
  sanitizedAttributes: import("vue").ComputedRef<{
687
697
  [x: string]: unknown;
688
698
  }>;
689
699
  activeRoute: import("vue").ComputedRef<boolean | "" | undefined>;
690
700
  exactRoute: import("vue").ComputedRef<boolean | "" | undefined>;
691
- onClick: () => void;
692
- onSpace: () => Promise<void>; /**
693
- * Model for configuring the on demand loading layout.
701
+ onClick: () => void; /**
702
+ * Make cards selectable.
694
703
  */
704
+ onSpace: () => Promise<void>;
695
705
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
696
706
  href: {
697
707
  type: StringConstructor;
@@ -720,16 +730,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
720
730
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
721
731
  name: {
722
732
  type: StringConstructor;
723
- required: true; /**
724
- * Breadcrumbs to display above the header.
725
- */
733
+ required: true;
726
734
  };
727
735
  id: {
728
736
  type: StringConstructor;
729
737
  default: null;
730
738
  };
731
739
  color: {
732
- type: () => NeonFunctionalColor;
740
+ type: () => NeonFunctionalColor; /**
741
+ * Items to display as cards. Each item should be a NeonCardListModel.
742
+ */
733
743
  default: null;
734
744
  };
735
745
  inverse: {
@@ -739,7 +749,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
739
749
  disabled: {
740
750
  type: BooleanConstructor;
741
751
  default: boolean;
742
- };
752
+ }; /**
753
+ * Loading state for the initial load.
754
+ */
743
755
  }>, {
744
756
  sanitizedAttributes: import("vue").ComputedRef<{
745
757
  [x: string]: unknown;
@@ -748,16 +760,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
748
760
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
749
761
  name: {
750
762
  type: StringConstructor;
751
- required: true; /**
752
- * Breadcrumbs to display above the header.
753
- */
763
+ required: true;
754
764
  };
755
765
  id: {
756
766
  type: StringConstructor;
757
767
  default: null;
758
768
  };
759
769
  color: {
760
- type: () => NeonFunctionalColor;
770
+ type: () => NeonFunctionalColor; /**
771
+ * Items to display as cards. Each item should be a NeonCardListModel.
772
+ */
761
773
  default: null;
762
774
  };
763
775
  inverse: {
@@ -767,7 +779,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
767
779
  disabled: {
768
780
  type: BooleanConstructor;
769
781
  default: boolean;
770
- };
782
+ }; /**
783
+ * Loading state for the initial load.
784
+ */
771
785
  }>> & Readonly<{}>, {
772
786
  color: NeonFunctionalColor;
773
787
  id: string;
@@ -779,16 +793,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
779
793
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
780
794
  name: {
781
795
  type: StringConstructor;
782
- required: true; /**
783
- * Breadcrumbs to display above the header.
784
- */
796
+ required: true;
785
797
  };
786
798
  id: {
787
799
  type: StringConstructor;
788
800
  default: null;
789
801
  };
790
802
  color: {
791
- type: () => NeonFunctionalColor;
803
+ type: () => NeonFunctionalColor; /**
804
+ * Items to display as cards. Each item should be a NeonCardListModel.
805
+ */
792
806
  default: null;
793
807
  };
794
808
  inverse: {
@@ -798,7 +812,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
798
812
  disabled: {
799
813
  type: BooleanConstructor;
800
814
  default: boolean;
801
- };
815
+ }; /**
816
+ * Loading state for the initial load.
817
+ */
802
818
  }>, {
803
819
  sanitizedAttributes: import("vue").ComputedRef<{
804
820
  [x: string]: unknown;
@@ -807,16 +823,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
807
823
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
808
824
  name: {
809
825
  type: StringConstructor;
810
- required: true; /**
811
- * Breadcrumbs to display above the header.
812
- */
826
+ required: true;
813
827
  };
814
828
  id: {
815
829
  type: StringConstructor;
816
830
  default: null;
817
831
  };
818
832
  color: {
819
- type: () => NeonFunctionalColor;
833
+ type: () => NeonFunctionalColor; /**
834
+ * Items to display as cards. Each item should be a NeonCardListModel.
835
+ */
820
836
  default: null;
821
837
  };
822
838
  inverse: {
@@ -826,7 +842,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
826
842
  disabled: {
827
843
  type: BooleanConstructor;
828
844
  default: boolean;
829
- };
845
+ }; /**
846
+ * Loading state for the initial load.
847
+ */
830
848
  }>> & Readonly<{}>, {
831
849
  color: NeonFunctionalColor;
832
850
  id: string;
@@ -875,6 +893,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
875
893
  type: () => NeonFunctionalColor;
876
894
  default: null;
877
895
  };
896
+ listStyle: {
897
+ type: () => NeonCardListStyle;
898
+ default: () => NeonCardListStyle;
899
+ };
878
900
  selectable: {
879
901
  type: BooleanConstructor;
880
902
  default: boolean;
@@ -894,15 +916,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
894
916
  NeonButtonStyle: typeof import("../../../neon").NeonButtonStyle;
895
917
  NeonFunctionalColor: typeof NeonFunctionalColor;
896
918
  NeonSize: typeof import("../../../neon").NeonSize;
897
- ofLabel: import("vue").ComputedRef<string | undefined>;
898
919
  showMoreLabel: import("vue").ComputedRef<string | undefined>;
899
- endOfResultsLabel: import("vue").ComputedRef<string | undefined>;
920
+ resultCountLabel: import("vue").ComputedRef<string | undefined>;
900
921
  total: import("vue").ComputedRef<number>;
901
922
  slots: Readonly<{
902
923
  [name: string]: import("vue").Slot<any> | undefined;
903
924
  }>;
904
925
  cards: import("vue").Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
905
926
  onPageChange: (newPage: number) => void;
927
+ NeonState: typeof import("../../../neon").NeonState;
906
928
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("page-change" | "show-more" | "toggle-selected")[], "page-change" | "show-more" | "toggle-selected", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
907
929
  items: {
908
930
  type: () => NeonCardListModel<NeonIdentifiable | (NeonIdentifiable & NeonSelectable)>[];
@@ -912,6 +934,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
912
934
  type: () => NeonFunctionalColor;
913
935
  default: null;
914
936
  };
937
+ listStyle: {
938
+ type: () => NeonCardListStyle;
939
+ default: () => NeonCardListStyle;
940
+ };
915
941
  selectable: {
916
942
  type: BooleanConstructor;
917
943
  default: boolean;
@@ -932,15 +958,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
932
958
  }>, {
933
959
  color: NeonFunctionalColor;
934
960
  loading: boolean;
961
+ listStyle: NeonCardListStyle;
935
962
  selectable: boolean;
936
963
  }, {}, {
937
964
  NeonSelectableCard: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
938
965
  modelValue: {
939
966
  type: BooleanConstructor;
940
- /**
941
- * A page level layout component for displaying a list with a page header, filter bar, card list, pagination & an empty
942
- * state. Use this component directly inside the NeonPage <em>contents</em> slot.
943
- */
944
967
  required: true;
945
968
  };
946
969
  color: {
@@ -958,10 +981,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
958
981
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
959
982
  modelValue: {
960
983
  type: BooleanConstructor;
961
- /**
962
- * A page level layout component for displaying a list with a page header, filter bar, card list, pagination & an empty
963
- * state. Use this component directly inside the NeonPage <em>contents</em> slot.
964
- */
965
984
  required: true;
966
985
  };
967
986
  color: {
@@ -998,11 +1017,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
998
1017
  noBreak: {
999
1018
  type: BooleanConstructor;
1000
1019
  default: boolean;
1001
- };
1020
+ }; /**
1021
+ * The subtitle of the header.
1022
+ */
1002
1023
  }>, {
1003
1024
  attrs: {
1004
1025
  [x: string]: unknown;
1005
1026
  };
1027
+ /**
1028
+ * Breadcrumbs to display above the header.
1029
+ */
1006
1030
  NeonOrientation: typeof import("../../../neon").NeonOrientation;
1007
1031
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1008
1032
  orientation: {
@@ -1024,7 +1048,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1024
1048
  noBreak: {
1025
1049
  type: BooleanConstructor;
1026
1050
  default: boolean;
1027
- };
1051
+ }; /**
1052
+ * The subtitle of the header.
1053
+ */
1028
1054
  }>> & Readonly<{}>, {
1029
1055
  size: import("../../../neon").NeonSize;
1030
1056
  orientation: import("../../../neon").NeonOrientation;
@@ -1042,6 +1068,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1042
1068
  type: StringConstructor;
1043
1069
  default: null;
1044
1070
  };
1071
+ /**
1072
+ * A page level layout component for displaying a list with a page header, filter bar, card list, pagination & an empty
1073
+ * state. Use this component directly inside the NeonPage <em>contents</em> slot.
1074
+ */
1045
1075
  indeterminate: {
1046
1076
  type: BooleanConstructor;
1047
1077
  default: boolean;
@@ -1052,7 +1082,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1052
1082
  };
1053
1083
  color: {
1054
1084
  type: () => NeonFunctionalColor;
1055
- default: () => NeonFunctionalColor;
1085
+ default: () => NeonFunctionalColor; /**
1086
+ * The title of the header.
1087
+ */
1056
1088
  };
1057
1089
  switchStyle: {
1058
1090
  type: () => import("../../../neon").NeonSwitchStyle;
@@ -1064,12 +1096,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1064
1096
  };
1065
1097
  disabled: {
1066
1098
  type: BooleanConstructor;
1067
- default: boolean; /**
1068
- * Items to display as cards. Each item should be a NeonCardListModel.
1069
- */
1070
- }; /**
1071
- * Items to display as cards. Each item should be a NeonCardListModel.
1072
- */
1099
+ default: boolean;
1100
+ };
1073
1101
  }>, {
1074
1102
  checkbox: import("vue").Ref<HTMLInputElement | null, HTMLInputElement | null>;
1075
1103
  sanitizedAttributes: import("vue").ComputedRef<{
@@ -1085,6 +1113,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1085
1113
  type: StringConstructor;
1086
1114
  default: null;
1087
1115
  };
1116
+ /**
1117
+ * A page level layout component for displaying a list with a page header, filter bar, card list, pagination & an empty
1118
+ * state. Use this component directly inside the NeonPage <em>contents</em> slot.
1119
+ */
1088
1120
  indeterminate: {
1089
1121
  type: BooleanConstructor;
1090
1122
  default: boolean;
@@ -1095,7 +1127,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1095
1127
  };
1096
1128
  color: {
1097
1129
  type: () => NeonFunctionalColor;
1098
- default: () => NeonFunctionalColor;
1130
+ default: () => NeonFunctionalColor; /**
1131
+ * The title of the header.
1132
+ */
1099
1133
  };
1100
1134
  switchStyle: {
1101
1135
  type: () => import("../../../neon").NeonSwitchStyle;
@@ -1107,12 +1141,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1107
1141
  };
1108
1142
  disabled: {
1109
1143
  type: BooleanConstructor;
1110
- default: boolean; /**
1111
- * Items to display as cards. Each item should be a NeonCardListModel.
1112
- */
1113
- }; /**
1114
- * Items to display as cards. Each item should be a NeonCardListModel.
1115
- */
1144
+ default: boolean;
1145
+ };
1116
1146
  }>> & Readonly<{
1117
1147
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1118
1148
  "onIndeterminate-change"?: ((...args: any[]) => any) | undefined;
@@ -1128,16 +1158,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1128
1158
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1129
1159
  name: {
1130
1160
  type: StringConstructor;
1131
- required: true; /**
1132
- * Breadcrumbs to display above the header.
1133
- */
1161
+ required: true;
1134
1162
  };
1135
1163
  id: {
1136
1164
  type: StringConstructor;
1137
1165
  default: null;
1138
1166
  };
1139
1167
  color: {
1140
- type: () => NeonFunctionalColor;
1168
+ type: () => NeonFunctionalColor; /**
1169
+ * Items to display as cards. Each item should be a NeonCardListModel.
1170
+ */
1141
1171
  default: null;
1142
1172
  };
1143
1173
  inverse: {
@@ -1147,7 +1177,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1147
1177
  disabled: {
1148
1178
  type: BooleanConstructor;
1149
1179
  default: boolean;
1150
- };
1180
+ }; /**
1181
+ * Loading state for the initial load.
1182
+ */
1151
1183
  }>, {
1152
1184
  sanitizedAttributes: import("vue").ComputedRef<{
1153
1185
  [x: string]: unknown;
@@ -1156,16 +1188,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1156
1188
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1157
1189
  name: {
1158
1190
  type: StringConstructor;
1159
- required: true; /**
1160
- * Breadcrumbs to display above the header.
1161
- */
1191
+ required: true;
1162
1192
  };
1163
1193
  id: {
1164
1194
  type: StringConstructor;
1165
1195
  default: null;
1166
1196
  };
1167
1197
  color: {
1168
- type: () => NeonFunctionalColor;
1198
+ type: () => NeonFunctionalColor; /**
1199
+ * Items to display as cards. Each item should be a NeonCardListModel.
1200
+ */
1169
1201
  default: null;
1170
1202
  };
1171
1203
  inverse: {
@@ -1175,7 +1207,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1175
1207
  disabled: {
1176
1208
  type: BooleanConstructor;
1177
1209
  default: boolean;
1178
- };
1210
+ }; /**
1211
+ * Loading state for the initial load.
1212
+ */
1179
1213
  }>> & Readonly<{}>, {
1180
1214
  color: NeonFunctionalColor;
1181
1215
  id: string;
@@ -1269,7 +1303,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1269
1303
  default: NeonFunctionalColor;
1270
1304
  };
1271
1305
  inverse: {
1272
- type: BooleanConstructor;
1306
+ type: BooleanConstructor; /**
1307
+ * Override the label for the back button
1308
+ */
1273
1309
  default: boolean;
1274
1310
  };
1275
1311
  alternateColor: {
@@ -1306,10 +1342,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1306
1342
  transparent: {
1307
1343
  type: BooleanConstructor;
1308
1344
  default: boolean;
1309
- }; /**
1310
- * Emitted when in selectable mode and the selected state of a card is toggled.
1311
- * @type {string, boolean} - the id of the card which is toggled & the new selected state.
1312
- */
1345
+ };
1313
1346
  outline: {
1314
1347
  type: BooleanConstructor;
1315
1348
  default: boolean;
@@ -1371,7 +1404,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1371
1404
  default: NeonFunctionalColor;
1372
1405
  };
1373
1406
  inverse: {
1374
- type: BooleanConstructor;
1407
+ type: BooleanConstructor; /**
1408
+ * Override the label for the back button
1409
+ */
1375
1410
  default: boolean;
1376
1411
  };
1377
1412
  alternateColor: {
@@ -1408,10 +1443,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1408
1443
  transparent: {
1409
1444
  type: BooleanConstructor;
1410
1445
  default: boolean;
1411
- }; /**
1412
- * Emitted when in selectable mode and the selected state of a card is toggled.
1413
- * @type {string, boolean} - the id of the card which is toggled & the new selected state.
1414
- */
1446
+ };
1415
1447
  outline: {
1416
1448
  type: BooleanConstructor;
1417
1449
  default: boolean;
@@ -1497,16 +1529,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1497
1529
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1498
1530
  name: {
1499
1531
  type: StringConstructor;
1500
- required: true; /**
1501
- * Breadcrumbs to display above the header.
1502
- */
1532
+ required: true;
1503
1533
  };
1504
1534
  id: {
1505
1535
  type: StringConstructor;
1506
1536
  default: null;
1507
1537
  };
1508
1538
  color: {
1509
- type: () => NeonFunctionalColor;
1539
+ type: () => NeonFunctionalColor; /**
1540
+ * Items to display as cards. Each item should be a NeonCardListModel.
1541
+ */
1510
1542
  default: null;
1511
1543
  };
1512
1544
  inverse: {
@@ -1516,7 +1548,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1516
1548
  disabled: {
1517
1549
  type: BooleanConstructor;
1518
1550
  default: boolean;
1519
- };
1551
+ }; /**
1552
+ * Loading state for the initial load.
1553
+ */
1520
1554
  }>, {
1521
1555
  sanitizedAttributes: import("vue").ComputedRef<{
1522
1556
  [x: string]: unknown;
@@ -1525,16 +1559,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1525
1559
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1526
1560
  name: {
1527
1561
  type: StringConstructor;
1528
- required: true; /**
1529
- * Breadcrumbs to display above the header.
1530
- */
1562
+ required: true;
1531
1563
  };
1532
1564
  id: {
1533
1565
  type: StringConstructor;
1534
1566
  default: null;
1535
1567
  };
1536
1568
  color: {
1537
- type: () => NeonFunctionalColor;
1569
+ type: () => NeonFunctionalColor; /**
1570
+ * Items to display as cards. Each item should be a NeonCardListModel.
1571
+ */
1538
1572
  default: null;
1539
1573
  };
1540
1574
  inverse: {
@@ -1544,7 +1578,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1544
1578
  disabled: {
1545
1579
  type: BooleanConstructor;
1546
1580
  default: boolean;
1547
- };
1581
+ }; /**
1582
+ * Loading state for the initial load.
1583
+ */
1548
1584
  }>> & Readonly<{}>, {
1549
1585
  color: NeonFunctionalColor;
1550
1586
  id: string;
@@ -1570,18 +1606,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1570
1606
  };
1571
1607
  }>, {
1572
1608
  neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
1573
- routerUrl: import("vue").ComputedRef<string | undefined>; /**
1574
- * Make cards selectable.
1575
- */
1609
+ routerUrl: import("vue").ComputedRef<string | undefined>;
1576
1610
  sanitizedAttributes: import("vue").ComputedRef<{
1577
1611
  [x: string]: unknown;
1578
1612
  }>;
1579
1613
  activeRoute: import("vue").ComputedRef<boolean | "" | undefined>;
1580
1614
  exactRoute: import("vue").ComputedRef<boolean | "" | undefined>;
1581
- onClick: () => void;
1582
- onSpace: () => Promise<void>; /**
1583
- * Model for configuring the on demand loading layout.
1615
+ onClick: () => void; /**
1616
+ * Make cards selectable.
1584
1617
  */
1618
+ onSpace: () => Promise<void>;
1585
1619
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1586
1620
  href: {
1587
1621
  type: StringConstructor;
@@ -1610,16 +1644,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1610
1644
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1611
1645
  name: {
1612
1646
  type: StringConstructor;
1613
- required: true; /**
1614
- * Breadcrumbs to display above the header.
1615
- */
1647
+ required: true;
1616
1648
  };
1617
1649
  id: {
1618
1650
  type: StringConstructor;
1619
1651
  default: null;
1620
1652
  };
1621
1653
  color: {
1622
- type: () => NeonFunctionalColor;
1654
+ type: () => NeonFunctionalColor; /**
1655
+ * Items to display as cards. Each item should be a NeonCardListModel.
1656
+ */
1623
1657
  default: null;
1624
1658
  };
1625
1659
  inverse: {
@@ -1629,7 +1663,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1629
1663
  disabled: {
1630
1664
  type: BooleanConstructor;
1631
1665
  default: boolean;
1632
- };
1666
+ }; /**
1667
+ * Loading state for the initial load.
1668
+ */
1633
1669
  }>, {
1634
1670
  sanitizedAttributes: import("vue").ComputedRef<{
1635
1671
  [x: string]: unknown;
@@ -1638,16 +1674,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1638
1674
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1639
1675
  name: {
1640
1676
  type: StringConstructor;
1641
- required: true; /**
1642
- * Breadcrumbs to display above the header.
1643
- */
1677
+ required: true;
1644
1678
  };
1645
1679
  id: {
1646
1680
  type: StringConstructor;
1647
1681
  default: null;
1648
1682
  };
1649
1683
  color: {
1650
- type: () => NeonFunctionalColor;
1684
+ type: () => NeonFunctionalColor; /**
1685
+ * Items to display as cards. Each item should be a NeonCardListModel.
1686
+ */
1651
1687
  default: null;
1652
1688
  };
1653
1689
  inverse: {
@@ -1657,7 +1693,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1657
1693
  disabled: {
1658
1694
  type: BooleanConstructor;
1659
1695
  default: boolean;
1660
- };
1696
+ }; /**
1697
+ * Loading state for the initial load.
1698
+ */
1661
1699
  }>> & Readonly<{}>, {
1662
1700
  color: NeonFunctionalColor;
1663
1701
  id: string;
@@ -1669,16 +1707,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1669
1707
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1670
1708
  name: {
1671
1709
  type: StringConstructor;
1672
- required: true; /**
1673
- * Breadcrumbs to display above the header.
1674
- */
1710
+ required: true;
1675
1711
  };
1676
1712
  id: {
1677
1713
  type: StringConstructor;
1678
1714
  default: null;
1679
1715
  };
1680
1716
  color: {
1681
- type: () => NeonFunctionalColor;
1717
+ type: () => NeonFunctionalColor; /**
1718
+ * Items to display as cards. Each item should be a NeonCardListModel.
1719
+ */
1682
1720
  default: null;
1683
1721
  };
1684
1722
  inverse: {
@@ -1688,7 +1726,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1688
1726
  disabled: {
1689
1727
  type: BooleanConstructor;
1690
1728
  default: boolean;
1691
- };
1729
+ }; /**
1730
+ * Loading state for the initial load.
1731
+ */
1692
1732
  }>, {
1693
1733
  sanitizedAttributes: import("vue").ComputedRef<{
1694
1734
  [x: string]: unknown;
@@ -1697,16 +1737,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1697
1737
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1698
1738
  name: {
1699
1739
  type: StringConstructor;
1700
- required: true; /**
1701
- * Breadcrumbs to display above the header.
1702
- */
1740
+ required: true;
1703
1741
  };
1704
1742
  id: {
1705
1743
  type: StringConstructor;
1706
1744
  default: null;
1707
1745
  };
1708
1746
  color: {
1709
- type: () => NeonFunctionalColor;
1747
+ type: () => NeonFunctionalColor; /**
1748
+ * Items to display as cards. Each item should be a NeonCardListModel.
1749
+ */
1710
1750
  default: null;
1711
1751
  };
1712
1752
  inverse: {
@@ -1716,7 +1756,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1716
1756
  disabled: {
1717
1757
  type: BooleanConstructor;
1718
1758
  default: boolean;
1719
- };
1759
+ }; /**
1760
+ * Loading state for the initial load.
1761
+ */
1720
1762
  }>> & Readonly<{}>, {
1721
1763
  color: NeonFunctionalColor;
1722
1764
  id: string;
@@ -1742,7 +1784,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1742
1784
  default: NeonFunctionalColor;
1743
1785
  };
1744
1786
  inverse: {
1745
- type: BooleanConstructor;
1787
+ type: BooleanConstructor; /**
1788
+ * Override the label for the back button
1789
+ */
1746
1790
  default: boolean;
1747
1791
  };
1748
1792
  alternateColor: {
@@ -1779,10 +1823,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1779
1823
  transparent: {
1780
1824
  type: BooleanConstructor;
1781
1825
  default: boolean;
1782
- }; /**
1783
- * Emitted when in selectable mode and the selected state of a card is toggled.
1784
- * @type {string, boolean} - the id of the card which is toggled & the new selected state.
1785
- */
1826
+ };
1786
1827
  outline: {
1787
1828
  type: BooleanConstructor;
1788
1829
  default: boolean;
@@ -1844,7 +1885,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1844
1885
  default: NeonFunctionalColor;
1845
1886
  };
1846
1887
  inverse: {
1847
- type: BooleanConstructor;
1888
+ type: BooleanConstructor; /**
1889
+ * Override the label for the back button
1890
+ */
1848
1891
  default: boolean;
1849
1892
  };
1850
1893
  alternateColor: {
@@ -1881,10 +1924,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1881
1924
  transparent: {
1882
1925
  type: BooleanConstructor;
1883
1926
  default: boolean;
1884
- }; /**
1885
- * Emitted when in selectable mode and the selected state of a card is toggled.
1886
- * @type {string, boolean} - the id of the card which is toggled & the new selected state.
1887
- */
1927
+ };
1888
1928
  outline: {
1889
1929
  type: BooleanConstructor;
1890
1930
  default: boolean;
@@ -1970,16 +2010,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1970
2010
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1971
2011
  name: {
1972
2012
  type: StringConstructor;
1973
- required: true; /**
1974
- * Breadcrumbs to display above the header.
1975
- */
2013
+ required: true;
1976
2014
  };
1977
2015
  id: {
1978
2016
  type: StringConstructor;
1979
2017
  default: null;
1980
2018
  };
1981
2019
  color: {
1982
- type: () => NeonFunctionalColor;
2020
+ type: () => NeonFunctionalColor; /**
2021
+ * Items to display as cards. Each item should be a NeonCardListModel.
2022
+ */
1983
2023
  default: null;
1984
2024
  };
1985
2025
  inverse: {
@@ -1989,7 +2029,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1989
2029
  disabled: {
1990
2030
  type: BooleanConstructor;
1991
2031
  default: boolean;
1992
- };
2032
+ }; /**
2033
+ * Loading state for the initial load.
2034
+ */
1993
2035
  }>, {
1994
2036
  sanitizedAttributes: import("vue").ComputedRef<{
1995
2037
  [x: string]: unknown;
@@ -1998,16 +2040,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1998
2040
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1999
2041
  name: {
2000
2042
  type: StringConstructor;
2001
- required: true; /**
2002
- * Breadcrumbs to display above the header.
2003
- */
2043
+ required: true;
2004
2044
  };
2005
2045
  id: {
2006
2046
  type: StringConstructor;
2007
2047
  default: null;
2008
2048
  };
2009
2049
  color: {
2010
- type: () => NeonFunctionalColor;
2050
+ type: () => NeonFunctionalColor; /**
2051
+ * Items to display as cards. Each item should be a NeonCardListModel.
2052
+ */
2011
2053
  default: null;
2012
2054
  };
2013
2055
  inverse: {
@@ -2017,7 +2059,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2017
2059
  disabled: {
2018
2060
  type: BooleanConstructor;
2019
2061
  default: boolean;
2020
- };
2062
+ }; /**
2063
+ * Loading state for the initial load.
2064
+ */
2021
2065
  }>> & Readonly<{}>, {
2022
2066
  color: NeonFunctionalColor;
2023
2067
  id: string;
@@ -2043,18 +2087,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2043
2087
  };
2044
2088
  }>, {
2045
2089
  neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
2046
- routerUrl: import("vue").ComputedRef<string | undefined>; /**
2047
- * Make cards selectable.
2048
- */
2090
+ routerUrl: import("vue").ComputedRef<string | undefined>;
2049
2091
  sanitizedAttributes: import("vue").ComputedRef<{
2050
2092
  [x: string]: unknown;
2051
2093
  }>;
2052
2094
  activeRoute: import("vue").ComputedRef<boolean | "" | undefined>;
2053
2095
  exactRoute: import("vue").ComputedRef<boolean | "" | undefined>;
2054
- onClick: () => void;
2055
- onSpace: () => Promise<void>; /**
2056
- * Model for configuring the on demand loading layout.
2096
+ onClick: () => void; /**
2097
+ * Make cards selectable.
2057
2098
  */
2099
+ onSpace: () => Promise<void>;
2058
2100
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2059
2101
  href: {
2060
2102
  type: StringConstructor;
@@ -2083,16 +2125,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2083
2125
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2084
2126
  name: {
2085
2127
  type: StringConstructor;
2086
- required: true; /**
2087
- * Breadcrumbs to display above the header.
2088
- */
2128
+ required: true;
2089
2129
  };
2090
2130
  id: {
2091
2131
  type: StringConstructor;
2092
2132
  default: null;
2093
2133
  };
2094
2134
  color: {
2095
- type: () => NeonFunctionalColor;
2135
+ type: () => NeonFunctionalColor; /**
2136
+ * Items to display as cards. Each item should be a NeonCardListModel.
2137
+ */
2096
2138
  default: null;
2097
2139
  };
2098
2140
  inverse: {
@@ -2102,7 +2144,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2102
2144
  disabled: {
2103
2145
  type: BooleanConstructor;
2104
2146
  default: boolean;
2105
- };
2147
+ }; /**
2148
+ * Loading state for the initial load.
2149
+ */
2106
2150
  }>, {
2107
2151
  sanitizedAttributes: import("vue").ComputedRef<{
2108
2152
  [x: string]: unknown;
@@ -2111,16 +2155,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2111
2155
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2112
2156
  name: {
2113
2157
  type: StringConstructor;
2114
- required: true; /**
2115
- * Breadcrumbs to display above the header.
2116
- */
2158
+ required: true;
2117
2159
  };
2118
2160
  id: {
2119
2161
  type: StringConstructor;
2120
2162
  default: null;
2121
2163
  };
2122
2164
  color: {
2123
- type: () => NeonFunctionalColor;
2165
+ type: () => NeonFunctionalColor; /**
2166
+ * Items to display as cards. Each item should be a NeonCardListModel.
2167
+ */
2124
2168
  default: null;
2125
2169
  };
2126
2170
  inverse: {
@@ -2130,7 +2174,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2130
2174
  disabled: {
2131
2175
  type: BooleanConstructor;
2132
2176
  default: boolean;
2133
- };
2177
+ }; /**
2178
+ * Loading state for the initial load.
2179
+ */
2134
2180
  }>> & Readonly<{}>, {
2135
2181
  color: NeonFunctionalColor;
2136
2182
  id: string;
@@ -2177,18 +2223,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2177
2223
  };
2178
2224
  }>, {
2179
2225
  neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
2180
- routerUrl: import("vue").ComputedRef<string | undefined>; /**
2181
- * Make cards selectable.
2182
- */
2226
+ routerUrl: import("vue").ComputedRef<string | undefined>;
2183
2227
  sanitizedAttributes: import("vue").ComputedRef<{
2184
2228
  [x: string]: unknown;
2185
2229
  }>;
2186
2230
  activeRoute: import("vue").ComputedRef<boolean | "" | undefined>;
2187
2231
  exactRoute: import("vue").ComputedRef<boolean | "" | undefined>;
2188
- onClick: () => void;
2189
- onSpace: () => Promise<void>; /**
2190
- * Model for configuring the on demand loading layout.
2232
+ onClick: () => void; /**
2233
+ * Make cards selectable.
2191
2234
  */
2235
+ onSpace: () => Promise<void>;
2192
2236
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2193
2237
  href: {
2194
2238
  type: StringConstructor;
@@ -2217,16 +2261,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2217
2261
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2218
2262
  name: {
2219
2263
  type: StringConstructor;
2220
- required: true; /**
2221
- * Breadcrumbs to display above the header.
2222
- */
2264
+ required: true;
2223
2265
  };
2224
2266
  id: {
2225
2267
  type: StringConstructor;
2226
2268
  default: null;
2227
2269
  };
2228
2270
  color: {
2229
- type: () => NeonFunctionalColor;
2271
+ type: () => NeonFunctionalColor; /**
2272
+ * Items to display as cards. Each item should be a NeonCardListModel.
2273
+ */
2230
2274
  default: null;
2231
2275
  };
2232
2276
  inverse: {
@@ -2236,7 +2280,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2236
2280
  disabled: {
2237
2281
  type: BooleanConstructor;
2238
2282
  default: boolean;
2239
- };
2283
+ }; /**
2284
+ * Loading state for the initial load.
2285
+ */
2240
2286
  }>, {
2241
2287
  sanitizedAttributes: import("vue").ComputedRef<{
2242
2288
  [x: string]: unknown;
@@ -2245,16 +2291,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2245
2291
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2246
2292
  name: {
2247
2293
  type: StringConstructor;
2248
- required: true; /**
2249
- * Breadcrumbs to display above the header.
2250
- */
2294
+ required: true;
2251
2295
  };
2252
2296
  id: {
2253
2297
  type: StringConstructor;
2254
2298
  default: null;
2255
2299
  };
2256
2300
  color: {
2257
- type: () => NeonFunctionalColor;
2301
+ type: () => NeonFunctionalColor; /**
2302
+ * Items to display as cards. Each item should be a NeonCardListModel.
2303
+ */
2258
2304
  default: null;
2259
2305
  };
2260
2306
  inverse: {
@@ -2264,7 +2310,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2264
2310
  disabled: {
2265
2311
  type: BooleanConstructor;
2266
2312
  default: boolean;
2267
- };
2313
+ }; /**
2314
+ * Loading state for the initial load.
2315
+ */
2268
2316
  }>> & Readonly<{}>, {
2269
2317
  color: NeonFunctionalColor;
2270
2318
  id: string;
@@ -2364,16 +2412,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2364
2412
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2365
2413
  name: {
2366
2414
  type: StringConstructor;
2367
- required: true; /**
2368
- * Breadcrumbs to display above the header.
2369
- */
2415
+ required: true;
2370
2416
  };
2371
2417
  id: {
2372
2418
  type: StringConstructor;
2373
2419
  default: null;
2374
2420
  };
2375
2421
  color: {
2376
- type: () => NeonFunctionalColor;
2422
+ type: () => NeonFunctionalColor; /**
2423
+ * Items to display as cards. Each item should be a NeonCardListModel.
2424
+ */
2377
2425
  default: null;
2378
2426
  };
2379
2427
  inverse: {
@@ -2383,7 +2431,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2383
2431
  disabled: {
2384
2432
  type: BooleanConstructor;
2385
2433
  default: boolean;
2386
- };
2434
+ }; /**
2435
+ * Loading state for the initial load.
2436
+ */
2387
2437
  }>, {
2388
2438
  sanitizedAttributes: import("vue").ComputedRef<{
2389
2439
  [x: string]: unknown;
@@ -2392,16 +2442,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2392
2442
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2393
2443
  name: {
2394
2444
  type: StringConstructor;
2395
- required: true; /**
2396
- * Breadcrumbs to display above the header.
2397
- */
2445
+ required: true;
2398
2446
  };
2399
2447
  id: {
2400
2448
  type: StringConstructor;
2401
2449
  default: null;
2402
2450
  };
2403
2451
  color: {
2404
- type: () => NeonFunctionalColor;
2452
+ type: () => NeonFunctionalColor; /**
2453
+ * Items to display as cards. Each item should be a NeonCardListModel.
2454
+ */
2405
2455
  default: null;
2406
2456
  };
2407
2457
  inverse: {
@@ -2411,7 +2461,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2411
2461
  disabled: {
2412
2462
  type: BooleanConstructor;
2413
2463
  default: boolean;
2414
- };
2464
+ }; /**
2465
+ * Loading state for the initial load.
2466
+ */
2415
2467
  }>> & Readonly<{}>, {
2416
2468
  color: NeonFunctionalColor;
2417
2469
  id: string;
@@ -2441,9 +2493,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2441
2493
  default: boolean;
2442
2494
  };
2443
2495
  backLabel: {
2444
- type: StringConstructor; /**
2445
- * Whether to display a back button
2446
- */
2496
+ type: StringConstructor;
2447
2497
  default: string;
2448
2498
  };
2449
2499
  }>, {
@@ -2473,9 +2523,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2473
2523
  default: boolean;
2474
2524
  };
2475
2525
  backLabel: {
2476
- type: StringConstructor; /**
2477
- * Whether to display a back button
2478
- */
2526
+ type: StringConstructor;
2479
2527
  default: string;
2480
2528
  };
2481
2529
  }>> & Readonly<{}>, {
@@ -2530,16 +2578,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2530
2578
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2531
2579
  name: {
2532
2580
  type: StringConstructor;
2533
- required: true; /**
2534
- * Breadcrumbs to display above the header.
2535
- */
2581
+ required: true;
2536
2582
  };
2537
2583
  id: {
2538
2584
  type: StringConstructor;
2539
2585
  default: null;
2540
2586
  };
2541
2587
  color: {
2542
- type: () => NeonFunctionalColor;
2588
+ type: () => NeonFunctionalColor; /**
2589
+ * Items to display as cards. Each item should be a NeonCardListModel.
2590
+ */
2543
2591
  default: null;
2544
2592
  };
2545
2593
  inverse: {
@@ -2549,7 +2597,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2549
2597
  disabled: {
2550
2598
  type: BooleanConstructor;
2551
2599
  default: boolean;
2552
- };
2600
+ }; /**
2601
+ * Loading state for the initial load.
2602
+ */
2553
2603
  }>, {
2554
2604
  sanitizedAttributes: import("vue").ComputedRef<{
2555
2605
  [x: string]: unknown;
@@ -2558,16 +2608,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2558
2608
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2559
2609
  name: {
2560
2610
  type: StringConstructor;
2561
- required: true; /**
2562
- * Breadcrumbs to display above the header.
2563
- */
2611
+ required: true;
2564
2612
  };
2565
2613
  id: {
2566
2614
  type: StringConstructor;
2567
2615
  default: null;
2568
2616
  };
2569
2617
  color: {
2570
- type: () => NeonFunctionalColor;
2618
+ type: () => NeonFunctionalColor; /**
2619
+ * Items to display as cards. Each item should be a NeonCardListModel.
2620
+ */
2571
2621
  default: null;
2572
2622
  };
2573
2623
  inverse: {
@@ -2577,7 +2627,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2577
2627
  disabled: {
2578
2628
  type: BooleanConstructor;
2579
2629
  default: boolean;
2580
- };
2630
+ }; /**
2631
+ * Loading state for the initial load.
2632
+ */
2581
2633
  }>> & Readonly<{}>, {
2582
2634
  color: NeonFunctionalColor;
2583
2635
  id: string;
@@ -2603,18 +2655,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2603
2655
  };
2604
2656
  }>, {
2605
2657
  neonLink: import("vue").Ref<HTMLAnchorElement | null, HTMLAnchorElement | null>;
2606
- routerUrl: import("vue").ComputedRef<string | undefined>; /**
2607
- * Make cards selectable.
2608
- */
2658
+ routerUrl: import("vue").ComputedRef<string | undefined>;
2609
2659
  sanitizedAttributes: import("vue").ComputedRef<{
2610
2660
  [x: string]: unknown;
2611
2661
  }>;
2612
2662
  activeRoute: import("vue").ComputedRef<boolean | "" | undefined>;
2613
2663
  exactRoute: import("vue").ComputedRef<boolean | "" | undefined>;
2614
- onClick: () => void;
2615
- onSpace: () => Promise<void>; /**
2616
- * Model for configuring the on demand loading layout.
2664
+ onClick: () => void; /**
2665
+ * Make cards selectable.
2617
2666
  */
2667
+ onSpace: () => Promise<void>;
2618
2668
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2619
2669
  href: {
2620
2670
  type: StringConstructor;
@@ -2643,16 +2693,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2643
2693
  NeonIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2644
2694
  name: {
2645
2695
  type: StringConstructor;
2646
- required: true; /**
2647
- * Breadcrumbs to display above the header.
2648
- */
2696
+ required: true;
2649
2697
  };
2650
2698
  id: {
2651
2699
  type: StringConstructor;
2652
2700
  default: null;
2653
2701
  };
2654
2702
  color: {
2655
- type: () => NeonFunctionalColor;
2703
+ type: () => NeonFunctionalColor; /**
2704
+ * Items to display as cards. Each item should be a NeonCardListModel.
2705
+ */
2656
2706
  default: null;
2657
2707
  };
2658
2708
  inverse: {
@@ -2662,7 +2712,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2662
2712
  disabled: {
2663
2713
  type: BooleanConstructor;
2664
2714
  default: boolean;
2665
- };
2715
+ }; /**
2716
+ * Loading state for the initial load.
2717
+ */
2666
2718
  }>, {
2667
2719
  sanitizedAttributes: import("vue").ComputedRef<{
2668
2720
  [x: string]: unknown;
@@ -2671,16 +2723,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2671
2723
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2672
2724
  name: {
2673
2725
  type: StringConstructor;
2674
- required: true; /**
2675
- * Breadcrumbs to display above the header.
2676
- */
2726
+ required: true;
2677
2727
  };
2678
2728
  id: {
2679
2729
  type: StringConstructor;
2680
2730
  default: null;
2681
2731
  };
2682
2732
  color: {
2683
- type: () => NeonFunctionalColor;
2733
+ type: () => NeonFunctionalColor; /**
2734
+ * Items to display as cards. Each item should be a NeonCardListModel.
2735
+ */
2684
2736
  default: null;
2685
2737
  };
2686
2738
  inverse: {
@@ -2690,7 +2742,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2690
2742
  disabled: {
2691
2743
  type: BooleanConstructor;
2692
2744
  default: boolean;
2693
- };
2745
+ }; /**
2746
+ * Loading state for the initial load.
2747
+ */
2694
2748
  }>> & Readonly<{}>, {
2695
2749
  color: NeonFunctionalColor;
2696
2750
  id: string;