@bethinkpl/design-system 31.0.2 → 32.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/design-system.css +1 -1
  2. package/dist/design-system.js +14296 -10517
  3. package/dist/design-system.js.map +1 -1
  4. package/dist/lib/js/components/Buttons/IconButton/IconButton.vue.d.ts +2 -0
  5. package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +2 -0
  6. package/dist/lib/js/components/Chip/Chip.vue.d.ts +4 -0
  7. package/dist/lib/js/components/DatePickers/DateBox/DateBox.vue.d.ts +2 -0
  8. package/dist/lib/js/components/DatePickers/DatePicker/DatePicker.vue.d.ts +2 -0
  9. package/dist/lib/js/components/DatePickers/DateRangePicker/DateRangePicker.vue.d.ts +2 -0
  10. package/dist/lib/js/components/Drawer/DrawerHeader/DrawerHeader.vue.d.ts +8 -0
  11. package/dist/lib/js/components/Drawer/DrawerListItem/DrawerListItem.vue.d.ts +2 -0
  12. package/dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts +6 -0
  13. package/dist/lib/js/components/Form/RadioButton/RadioButton.vue.d.ts +2 -0
  14. package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +4 -0
  15. package/dist/lib/js/components/Headers/SectionHeader/SectionHeader.vue.d.ts +4 -0
  16. package/dist/lib/js/components/Icons/Icon/Icon.consts.d.ts +2 -0
  17. package/dist/lib/js/components/Modal/Modal.vue.d.ts +2 -0
  18. package/dist/lib/js/components/Modals/Modal/Modal.vue.d.ts +4 -0
  19. package/dist/lib/js/components/Modals/ModalDialog/ModalDialog.vue.d.ts +4 -0
  20. package/dist/lib/js/components/Pagination/Pagination.vue.d.ts +6 -0
  21. package/dist/lib/js/components/ProgressBar/ProgressBar.vue.d.ts +2 -0
  22. package/dist/lib/js/components/ProgressDonutChart/ProgressDonutChart.vue.d.ts +2 -0
  23. package/dist/lib/js/components/RichList/BasicRichListItem/BasicRichListItem.vue.d.ts +146 -262
  24. package/dist/lib/js/components/RichList/RichListItem/RichListItem.vue.d.ts +2 -0
  25. package/dist/lib/js/components/SelectList/SelectListItem/SelectListItem.vue.d.ts +2 -0
  26. package/dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts +2 -0
  27. package/dist/lib/js/components/Statuses/AccessStatus/AccessStatus.vue.d.ts +2 -0
  28. package/dist/lib/js/components/Statuses/BlockadeStatus/BlockadeStatus.vue.d.ts +2 -0
  29. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +6 -0
  30. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +6 -0
  31. package/dist/lib/js/components/Switch/Switch.vue.d.ts +2 -0
  32. package/dist/lib/js/components/TextGroup/TextGroup.consts.d.ts +4 -3
  33. package/dist/lib/js/components/TextGroup/TextGroup.vue.d.ts +58 -302
  34. package/dist/lib/js/components/Tile/Tile.sb.shared.d.ts +2 -0
  35. package/dist/lib/js/components/Toggles/ToggleButton/ToggleButton.vue.d.ts +2 -0
  36. package/dist/lib/js/icons/fontawesome.d.ts +2 -0
  37. package/lib/js/components/TextGroup/TextGroup.consts.ts +5 -3
  38. package/lib/js/components/TextGroup/TextGroup.stories.ts +13 -6
  39. package/lib/js/components/TextGroup/TextGroup.vue +172 -105
  40. package/lib/js/icons/fontawesome.ts +4 -0
  41. package/lib/styles/mixins/_background-mask.scss +2 -2
  42. package/package.json +4 -1
@@ -286,306 +286,188 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
286
286
  isEyebrowUppercase: boolean;
287
287
  isTextGroupSelected: boolean;
288
288
  }, {}, {
289
- DsTextGroup: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
289
+ DsTextGroup: {
290
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
291
+ size: {
292
+ type: PropType<string>;
293
+ };
294
+ prominence: {
295
+ type: PropType<import('../../TextGroup').TextGroupProminence>;
296
+ };
297
+ eyebrowText: {
298
+ type: PropType<string | null>;
299
+ };
300
+ eyebrowTextEllipsis: {
301
+ type: PropType<boolean>;
302
+ };
303
+ isEyebrowTextUppercase: {
304
+ type: PropType<boolean>;
305
+ };
306
+ hasEyebrowMask: {
307
+ type: PropType<boolean>;
308
+ };
309
+ mainText: {
310
+ type: PropType<string | null>;
311
+ };
312
+ mainTextEllipsis: {
313
+ type: PropType<boolean>;
314
+ };
315
+ supportingText: {
316
+ type: PropType<string | null>;
317
+ };
318
+ supportingTextEllipsis: {
319
+ type: PropType<boolean>;
320
+ };
321
+ isInteractive: {
322
+ type: PropType<boolean>;
323
+ };
324
+ skeletonLoadingSize: {
325
+ type: PropType<string>;
326
+ };
327
+ isSelected: {
328
+ type: PropType<boolean>;
329
+ };
330
+ state: {
331
+ type: PropType<TextGroupState>;
332
+ };
333
+ isSupportingTextTooltipEnabled: {
334
+ type: PropType<boolean>;
335
+ };
336
+ isSupportingTextTooltipEnabledOnMobile: {
337
+ type: PropType<boolean>;
338
+ };
339
+ isSupportingTextTooltipAutoFilledWithContent: {
340
+ type: PropType<boolean>;
341
+ };
342
+ supportingTextTooltipContent: {
343
+ type: PropType<string>;
344
+ };
345
+ }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
346
+ P: {};
347
+ B: {};
348
+ D: {};
349
+ C: {};
350
+ M: {};
351
+ Defaults: {};
352
+ }, Readonly<import('vue').ExtractPropTypes<{
353
+ size: {
354
+ type: PropType<string>;
355
+ };
356
+ prominence: {
357
+ type: PropType<import('../../TextGroup').TextGroupProminence>;
358
+ };
359
+ eyebrowText: {
360
+ type: PropType<string | null>;
361
+ };
362
+ eyebrowTextEllipsis: {
363
+ type: PropType<boolean>;
364
+ };
365
+ isEyebrowTextUppercase: {
366
+ type: PropType<boolean>;
367
+ };
368
+ hasEyebrowMask: {
369
+ type: PropType<boolean>;
370
+ };
371
+ mainText: {
372
+ type: PropType<string | null>;
373
+ };
374
+ mainTextEllipsis: {
375
+ type: PropType<boolean>;
376
+ };
377
+ supportingText: {
378
+ type: PropType<string | null>;
379
+ };
380
+ supportingTextEllipsis: {
381
+ type: PropType<boolean>;
382
+ };
383
+ isInteractive: {
384
+ type: PropType<boolean>;
385
+ };
386
+ skeletonLoadingSize: {
387
+ type: PropType<string>;
388
+ };
389
+ isSelected: {
390
+ type: PropType<boolean>;
391
+ };
392
+ state: {
393
+ type: PropType<TextGroupState>;
394
+ };
395
+ isSupportingTextTooltipEnabled: {
396
+ type: PropType<boolean>;
397
+ };
398
+ isSupportingTextTooltipEnabledOnMobile: {
399
+ type: PropType<boolean>;
400
+ };
401
+ isSupportingTextTooltipAutoFilledWithContent: {
402
+ type: PropType<boolean>;
403
+ };
404
+ supportingTextTooltipContent: {
405
+ type: PropType<string>;
406
+ };
407
+ }>> & Readonly<{}>, {}, {}, {}, {}, {}>;
408
+ __isFragment?: never;
409
+ __isTeleport?: never;
410
+ __isSuspense?: never;
411
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
290
412
  size: {
291
- type: PropType<TextGroupSize>;
292
- default: string;
413
+ type: PropType<string>;
293
414
  };
294
- color: {
295
- type: PropType<import('../../TextGroup').TextGroupColor>;
296
- default: "neutral";
415
+ prominence: {
416
+ type: PropType<import('../../TextGroup').TextGroupProminence>;
297
417
  };
298
418
  eyebrowText: {
299
419
  type: PropType<string | null>;
300
- default: null;
301
420
  };
302
421
  eyebrowTextEllipsis: {
303
- type: BooleanConstructor;
304
- default: boolean;
422
+ type: PropType<boolean>;
305
423
  };
306
424
  isEyebrowTextUppercase: {
307
- type: BooleanConstructor;
308
- default: boolean;
309
- };
310
- mainText: {
311
- type: PropType<string | null>;
312
- default: null;
313
- };
314
- mainTextEllipsis: {
315
- type: BooleanConstructor;
316
- default: boolean;
317
- };
318
- supportingText: {
319
- type: PropType<string | null>;
320
- default: null;
321
- };
322
- supportingTextEllipsis: {
323
- type: BooleanConstructor;
324
- default: boolean;
325
- };
326
- isInteractive: {
327
- type: BooleanConstructor;
328
- default: boolean;
329
- };
330
- skeletonLoadingSize: {
331
- type: PropType<import('../../TextGroup').TextGroupLoadingSize>;
332
- default: string;
333
- };
334
- isSelected: {
335
- type: BooleanConstructor;
336
- default: boolean;
337
- };
338
- state: {
339
- type: PropType<TextGroupState>;
340
- default: "default";
341
- };
342
- isSupportingTextTooltipEnabled: {
343
- type: BooleanConstructor;
344
- default: boolean;
345
- };
346
- isSupportingTextTooltipEnabledOnMobile: {
347
- type: BooleanConstructor;
348
- default: boolean;
349
- };
350
- isSupportingTextTooltipAutoFilledWithContent: {
351
- type: BooleanConstructor;
352
- default: boolean;
353
- };
354
- supportingTextTooltipContent: {
355
- type: StringConstructor;
356
- default: null;
357
- };
358
- }>, {}, {
359
- TEXT_GROUP_SIZES: Readonly<{
360
- SMALL: string;
361
- MEDIUM: string;
362
- }>;
363
- TEXT_GROUP_STATES: Readonly<{
364
- readonly DEFAULT: "default";
365
- readonly HOVERED: "hovered";
366
- readonly DISABLED: "disabled";
367
- readonly LOADING: "loading";
368
- }>;
369
- }, {
370
- colorClassName(): string;
371
- isLoading(): boolean;
372
- loadingSizeClassName(): string;
373
- }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
374
- size: {
375
- type: PropType<TextGroupSize>;
376
- default: string;
377
- };
378
- color: {
379
- type: PropType<import('../../TextGroup').TextGroupColor>;
380
- default: "neutral";
425
+ type: PropType<boolean>;
381
426
  };
382
- eyebrowText: {
383
- type: PropType<string | null>;
384
- default: null;
385
- };
386
- eyebrowTextEllipsis: {
387
- type: BooleanConstructor;
388
- default: boolean;
389
- };
390
- isEyebrowTextUppercase: {
391
- type: BooleanConstructor;
392
- default: boolean;
427
+ hasEyebrowMask: {
428
+ type: PropType<boolean>;
393
429
  };
394
430
  mainText: {
395
431
  type: PropType<string | null>;
396
- default: null;
397
432
  };
398
433
  mainTextEllipsis: {
399
- type: BooleanConstructor;
400
- default: boolean;
434
+ type: PropType<boolean>;
401
435
  };
402
436
  supportingText: {
403
437
  type: PropType<string | null>;
404
- default: null;
405
438
  };
406
439
  supportingTextEllipsis: {
407
- type: BooleanConstructor;
408
- default: boolean;
440
+ type: PropType<boolean>;
409
441
  };
410
442
  isInteractive: {
411
- type: BooleanConstructor;
412
- default: boolean;
443
+ type: PropType<boolean>;
413
444
  };
414
445
  skeletonLoadingSize: {
415
- type: PropType<import('../../TextGroup').TextGroupLoadingSize>;
416
- default: string;
446
+ type: PropType<string>;
417
447
  };
418
448
  isSelected: {
419
- type: BooleanConstructor;
420
- default: boolean;
449
+ type: PropType<boolean>;
421
450
  };
422
451
  state: {
423
452
  type: PropType<TextGroupState>;
424
- default: "default";
425
453
  };
426
454
  isSupportingTextTooltipEnabled: {
427
- type: BooleanConstructor;
428
- default: boolean;
455
+ type: PropType<boolean>;
429
456
  };
430
457
  isSupportingTextTooltipEnabledOnMobile: {
431
- type: BooleanConstructor;
432
- default: boolean;
458
+ type: PropType<boolean>;
433
459
  };
434
460
  isSupportingTextTooltipAutoFilledWithContent: {
435
- type: BooleanConstructor;
436
- default: boolean;
461
+ type: PropType<boolean>;
437
462
  };
438
463
  supportingTextTooltipContent: {
439
- type: StringConstructor;
440
- default: null;
464
+ type: PropType<string>;
441
465
  };
442
- }>> & Readonly<{}>, {
443
- size: string;
444
- color: "neutral";
445
- state: TextGroupState;
446
- isInteractive: boolean;
447
- eyebrowText: string | null;
448
- isEyebrowTextUppercase: boolean;
449
- supportingText: string | null;
450
- isSelected: boolean;
451
- eyebrowTextEllipsis: boolean;
452
- mainText: string | null;
453
- mainTextEllipsis: boolean;
454
- supportingTextEllipsis: boolean;
455
- skeletonLoadingSize: string;
456
- isSupportingTextTooltipEnabled: boolean;
457
- isSupportingTextTooltipEnabledOnMobile: boolean;
458
- isSupportingTextTooltipAutoFilledWithContent: boolean;
459
- supportingTextTooltipContent: string;
460
- }, {}, {
461
- DsSkeleton: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
462
- height: {
463
- type: StringConstructor;
464
- default: string;
465
- };
466
- radius: {
467
- type: PropType<import('../../..').SkeletonRadiusSize>;
468
- default: string;
469
- };
470
- width: {
471
- type: StringConstructor;
472
- default: string;
473
- };
474
- }>, {}, {
475
- designTokens: {
476
- animation: {
477
- background: string;
478
- };
479
- background: string;
480
- };
481
- }, {
482
- radiusTranslated(): string;
483
- }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
484
- height: {
485
- type: StringConstructor;
486
- default: string;
487
- };
488
- radius: {
489
- type: PropType<import('../../..').SkeletonRadiusSize>;
490
- default: string;
491
- };
492
- width: {
493
- type: StringConstructor;
494
- default: string;
495
- };
496
- }>> & Readonly<{}>, {
497
- radius: string;
498
- width: string;
499
- height: string;
500
- }, {}, {
501
- PrimeSkeleton: import('@primevue/core').DefineComponent<import('primevue/skeleton').SkeletonProps, import('primevue/skeleton').SkeletonSlots, (e: string, ...args: any[]) => void>;
502
- }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
503
- DsTooltip: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
504
- placement: {
505
- type: PropType<import('../../Tooltip').TooltipPlacement>;
506
- default: "bottom";
507
- validator(placement: import('../../Tooltip').TooltipPlacement): boolean;
508
- };
509
- text: {
510
- type: StringConstructor;
511
- default: string;
512
- };
513
- isDisabled: {
514
- type: BooleanConstructor;
515
- default: boolean;
516
- };
517
- isPointerVisible: {
518
- type: BooleanConstructor;
519
- default: boolean;
520
- };
521
- inline: {
522
- type: BooleanConstructor;
523
- default: boolean;
524
- };
525
- isHiddenOnMobile: {
526
- type: BooleanConstructor;
527
- default: boolean;
528
- };
529
- }>, {}, {}, {
530
- tooltipParams(): {
531
- position: any;
532
- event: string;
533
- };
534
- options(): {
535
- value: any;
536
- disabled: any;
537
- dt: {
538
- shadow: string;
539
- padding: string;
540
- background: string;
541
- color: string;
542
- borderRadius: string;
543
- maxWidth: string;
544
- };
545
- class: string | null;
546
- ptOptions: {
547
- mergeProps: boolean;
548
- };
549
- pt: {
550
- text: string;
551
- arrow: string;
552
- };
553
- };
554
- }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
555
- placement: {
556
- type: PropType<import('../../Tooltip').TooltipPlacement>;
557
- default: "bottom";
558
- validator(placement: import('../../Tooltip').TooltipPlacement): boolean;
559
- };
560
- text: {
561
- type: StringConstructor;
562
- default: string;
563
- };
564
- isDisabled: {
565
- type: BooleanConstructor;
566
- default: boolean;
567
- };
568
- isPointerVisible: {
569
- type: BooleanConstructor;
570
- default: boolean;
571
- };
572
- inline: {
573
- type: BooleanConstructor;
574
- default: boolean;
575
- };
576
- isHiddenOnMobile: {
577
- type: BooleanConstructor;
578
- default: boolean;
579
- };
580
- }>> & Readonly<{}>, {
581
- text: string;
582
- placement: import('../../Tooltip').TooltipPlacement;
583
- isDisabled: boolean;
584
- isPointerVisible: boolean;
585
- inline: boolean;
586
- isHiddenOnMobile: boolean;
587
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
588
- }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
466
+ }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
467
+ $slots: {
468
+ mainText?(_: {}): any;
469
+ };
470
+ });
589
471
  RichListItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
590
472
  type: {
591
473
  type: PropType<RichListItemType>;
@@ -844,8 +726,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
844
726
  readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
845
727
  readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
846
728
  readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
729
+ readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
847
730
  readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
848
731
  readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
732
+ readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
849
733
  readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
850
734
  readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
851
735
  readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -260,8 +260,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
260
260
  readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
261
261
  readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
262
262
  readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
263
+ readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
263
264
  readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
264
265
  readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
266
+ readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
265
267
  readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
266
268
  readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
267
269
  readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -219,8 +219,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
219
219
  readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
220
220
  readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
221
221
  readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
222
+ readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
222
223
  readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
223
224
  readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
225
+ readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
224
226
  readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
225
227
  readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
226
228
  readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -306,8 +306,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
306
306
  readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
307
307
  readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
308
308
  readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
309
+ readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
309
310
  readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
310
311
  readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
312
+ readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
311
313
  readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
312
314
  readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
313
315
  readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -177,8 +177,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
177
177
  readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
178
178
  readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
179
179
  readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
180
+ readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
180
181
  readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
181
182
  readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
183
+ readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
182
184
  readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
183
185
  readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
184
186
  readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -175,8 +175,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
175
175
  readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
176
176
  readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
177
177
  readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
178
+ readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
178
179
  readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
179
180
  readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
181
+ readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
180
182
  readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
181
183
  readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
182
184
  readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -194,8 +194,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
194
194
  readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
195
195
  readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
196
196
  readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
197
+ readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
197
198
  readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
198
199
  readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
200
+ readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
199
201
  readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
200
202
  readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
201
203
  readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -836,8 +838,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
836
838
  readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
837
839
  readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
838
840
  readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
841
+ readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
839
842
  readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
840
843
  readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
844
+ readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
841
845
  readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
842
846
  readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
843
847
  readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1375,8 +1379,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1375
1379
  readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
1376
1380
  readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
1377
1381
  readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1382
+ readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
1378
1383
  readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
1379
1384
  readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
1385
+ readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
1380
1386
  readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
1381
1387
  readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
1382
1388
  readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -213,8 +213,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
213
213
  readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
214
214
  readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
215
215
  readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
216
+ readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
216
217
  readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
217
218
  readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
219
+ readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
218
220
  readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
219
221
  readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
220
222
  readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -809,8 +811,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
809
811
  readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
810
812
  readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
811
813
  readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
814
+ readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
812
815
  readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
813
816
  readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
817
+ readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
814
818
  readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
815
819
  readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
816
820
  readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1521,8 +1525,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
1521
1525
  readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
1522
1526
  readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
1523
1527
  readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
1528
+ readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
1524
1529
  readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
1525
1530
  readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
1531
+ readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
1526
1532
  readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
1527
1533
  readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
1528
1534
  readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -213,8 +213,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
213
213
  readonly FA_LIST: import('@fortawesome/fontawesome-common-types').IconDefinition;
214
214
  readonly FA_LOCATION_DOT: import('@fortawesome/fontawesome-common-types').IconDefinition;
215
215
  readonly FA_LOCK_KEYHOLE: import('@fortawesome/fontawesome-common-types').IconDefinition;
216
+ readonly FA_MAP: import('@fortawesome/fontawesome-common-types').IconDefinition;
216
217
  readonly FA_MAGNIFYING_GLASS: import('@fortawesome/fontawesome-common-types').IconDefinition;
217
218
  readonly FA_MEDAL: import('@fortawesome/fontawesome-common-types').IconDefinition;
219
+ readonly FA_MEMO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
218
220
  readonly FA_MEMO: import('@fortawesome/fontawesome-common-types').IconDefinition;
219
221
  readonly FA_MEMO_CIRCLE_INFO_SOLID: import('@fortawesome/fontawesome-common-types').IconDefinition;
220
222
  readonly FA_MEMO_CIRCLE_INFO: import('@fortawesome/fontawesome-common-types').IconDefinition;
@@ -1,5 +1,6 @@
1
- export declare const TEXT_GROUP_COLORS: {
2
- readonly NEUTRAL: "neutral";
1
+ export declare const TEXT_GROUP_PROMINENCE: {
2
+ readonly DEFAULT: "default";
3
+ readonly STRONG: "strong";
3
4
  };
4
5
  export declare const TEXT_GROUP_LOADING_SIZES: {
5
6
  SMALL: string;
@@ -16,7 +17,7 @@ export declare const TEXT_GROUP_STATES: {
16
17
  readonly DISABLED: "disabled";
17
18
  readonly LOADING: "loading";
18
19
  };
19
- export type TextGroupColor = (typeof TEXT_GROUP_COLORS)[keyof typeof TEXT_GROUP_COLORS];
20
+ export type TextGroupProminence = (typeof TEXT_GROUP_PROMINENCE)[keyof typeof TEXT_GROUP_PROMINENCE];
20
21
  export type TextGroupLoadingSize = (typeof TEXT_GROUP_LOADING_SIZES)[keyof typeof TEXT_GROUP_LOADING_SIZES];
21
22
  export type TextGroupSize = (typeof TEXT_GROUP_SIZES)[keyof typeof TEXT_GROUP_SIZES];
22
23
  export type TextGroupState = (typeof TEXT_GROUP_STATES)[keyof typeof TEXT_GROUP_STATES];