@vygruppen/spor-react 9.6.1 → 9.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -464,6 +464,42 @@ declare const Card: _chakra_ui_system_dist_system_types.ComponentWithAs<As, Card
464
464
  */
465
465
  declare const StaticCard: ({ colorScheme, ...props }: any) => React.JSX.Element;
466
466
 
467
+ type PressableCardProps = Omit<BoxProps, "as"> & {
468
+ variant: "floating" | "accent" | "base";
469
+ size?: "sm" | "lg";
470
+ as: "button" | "a" | "label";
471
+ };
472
+ /**
473
+ * Renders a Pressable card.
474
+ *
475
+ * The most basic version looks like this:
476
+ *
477
+ * ```tsx
478
+ * <PressableCard>
479
+ * Content
480
+ * </PressableCard>
481
+ * ```
482
+ *
483
+ * There are lots of color schemes available. You can also set the size as either `sm` or `lg`. The default is `sm`.
484
+ *
485
+ * ```tsx
486
+ * <PressableCard colorScheme="orange" size="lg">
487
+ * A smaller card
488
+ * </PressableCard>
489
+ * ```
490
+ *
491
+ * Pressable cards can also be rendered as button, link or label – like a li (list item) or an article.
492
+ * You do this by specifying the `as` prop. If no `as` is specified, button is chosen as default:
493
+ *
494
+ *
495
+ * ```tsx
496
+ * <PressableCard colorScheme="green" as="section">
497
+ * This is now a <section /> element
498
+ * </PressableCard>
499
+ * ```
500
+ */
501
+ declare const PressableCard: ({ children, as, size, variant, ...props }: PressableCardProps) => React.JSX.Element;
502
+
467
503
  /**
468
504
  * A date picker component.
469
505
  *
@@ -6357,15 +6393,19 @@ declare const theme: {
6357
6393
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
6358
6394
  table: {
6359
6395
  width: string;
6396
+ minWidth: string;
6360
6397
  color: string;
6361
6398
  borderCollapse: string;
6362
6399
  };
6363
6400
  th: {
6364
6401
  fontWeight: string;
6365
6402
  textAlign: string;
6403
+ verticalAlign: string;
6404
+ minWidth: string;
6366
6405
  };
6367
6406
  td: {
6368
6407
  textAlign: string;
6408
+ verticalAlign: string;
6369
6409
  };
6370
6410
  tfoot: {
6371
6411
  tr: {
@@ -6942,6 +6982,15 @@ declare const theme: {
6942
6982
  display: string;
6943
6983
  borderRadius: string;
6944
6984
  color: string;
6985
+ } | {
6986
+ color: string;
6987
+ backgroundColor: string;
6988
+ appearance: string;
6989
+ border: string;
6990
+ overflow: string;
6991
+ fontSize: string;
6992
+ display: string;
6993
+ borderRadius: string;
6945
6994
  }) | undefined;
6946
6995
  sizes?: {
6947
6996
  [key: string]: _chakra_ui_styled_system.SystemStyleInterpolation;
@@ -6955,6 +7004,654 @@ declare const theme: {
6955
7004
  colorScheme?: string | undefined;
6956
7005
  } | undefined;
6957
7006
  };
7007
+ PressableCard: {
7008
+ baseStyle?: ((props: any) => {
7009
+ _hover: {
7010
+ outline: string;
7011
+ outlineColor: string;
7012
+ backgroundColor: string;
7013
+ } | {
7014
+ _hover: {
7015
+ backgroundColor: string;
7016
+ };
7017
+ _active: {
7018
+ backgroundColor: string;
7019
+ };
7020
+ color: string;
7021
+ backgroundColor: string;
7022
+ };
7023
+ _disabled: {
7024
+ pointerEvents: string;
7025
+ color: string;
7026
+ outlineWidth: string;
7027
+ outlineColor: string;
7028
+ outlineStyle: string;
7029
+ outlineOffset: string;
7030
+ backgroundColor: string;
7031
+ } | {
7032
+ pointerEvents: string;
7033
+ color: string;
7034
+ outline: string;
7035
+ outlineColor: string;
7036
+ backgroundColor: string;
7037
+ };
7038
+ outline: string;
7039
+ outlineColor: string;
7040
+ backgroundColor: string;
7041
+ _focusVisible: {
7042
+ outlineWidth: string;
7043
+ outlineColor: string;
7044
+ outlineStyle: string;
7045
+ outlineOffset: string;
7046
+ };
7047
+ color: string;
7048
+ outlineWidth: string;
7049
+ outlineStyle: string;
7050
+ outlineOffset: string;
7051
+ appearance: string;
7052
+ border: string;
7053
+ overflow: string;
7054
+ fontSize: string;
7055
+ display: string;
7056
+ borderRadius: string;
7057
+ } | {
7058
+ _hover: {
7059
+ outline: string;
7060
+ outlineColor: string;
7061
+ backgroundColor: string;
7062
+ } | {
7063
+ _hover: {
7064
+ backgroundColor: string;
7065
+ };
7066
+ _active: {
7067
+ backgroundColor: string;
7068
+ };
7069
+ color: string;
7070
+ backgroundColor: string;
7071
+ };
7072
+ _disabled: {
7073
+ pointerEvents: string;
7074
+ color: string;
7075
+ outlineWidth: string;
7076
+ outlineColor: string;
7077
+ outlineStyle: string;
7078
+ outlineOffset: string;
7079
+ backgroundColor: string;
7080
+ } | {
7081
+ pointerEvents: string;
7082
+ color: string;
7083
+ outline: string;
7084
+ outlineColor: string;
7085
+ backgroundColor: string;
7086
+ };
7087
+ _active: {
7088
+ backgroundColor: string;
7089
+ };
7090
+ color: string;
7091
+ backgroundColor: string;
7092
+ _focusVisible: {
7093
+ outlineWidth: string;
7094
+ outlineColor: string;
7095
+ outlineStyle: string;
7096
+ outlineOffset: string;
7097
+ };
7098
+ outline: string;
7099
+ outlineColor: string;
7100
+ outlineWidth: string;
7101
+ outlineStyle: string;
7102
+ outlineOffset: string;
7103
+ appearance: string;
7104
+ border: string;
7105
+ overflow: string;
7106
+ fontSize: string;
7107
+ display: string;
7108
+ borderRadius: string;
7109
+ } | {
7110
+ _hover: {
7111
+ outline: string;
7112
+ outlineColor: string;
7113
+ backgroundColor: string;
7114
+ } | {
7115
+ _hover: {
7116
+ backgroundColor: string;
7117
+ };
7118
+ _active: {
7119
+ backgroundColor: string;
7120
+ };
7121
+ color: string;
7122
+ backgroundColor: string;
7123
+ };
7124
+ _disabled: {
7125
+ pointerEvents: string;
7126
+ color: string;
7127
+ outlineWidth: string;
7128
+ outlineColor: string;
7129
+ outlineStyle: string;
7130
+ outlineOffset: string;
7131
+ backgroundColor: string;
7132
+ } | {
7133
+ pointerEvents: string;
7134
+ color: string;
7135
+ outline: string;
7136
+ outlineColor: string;
7137
+ backgroundColor: string;
7138
+ };
7139
+ outline: string;
7140
+ outlineColor: string;
7141
+ backgroundColor: string;
7142
+ _focusVisible: {
7143
+ outlineWidth: string;
7144
+ outlineColor: string;
7145
+ outlineStyle: string;
7146
+ outlineOffset: string;
7147
+ };
7148
+ _active: {
7149
+ backgroundColor: string;
7150
+ };
7151
+ color: string;
7152
+ outlineWidth: string;
7153
+ outlineStyle: string;
7154
+ outlineOffset: string;
7155
+ appearance: string;
7156
+ border: string;
7157
+ overflow: string;
7158
+ fontSize: string;
7159
+ display: string;
7160
+ borderRadius: string;
7161
+ } | {
7162
+ _hover: {
7163
+ outline: string;
7164
+ outlineColor: string;
7165
+ backgroundColor: string;
7166
+ } | {
7167
+ _hover: {
7168
+ backgroundColor: string;
7169
+ };
7170
+ _active: {
7171
+ backgroundColor: string;
7172
+ };
7173
+ color: string;
7174
+ backgroundColor: string;
7175
+ };
7176
+ _disabled: {
7177
+ pointerEvents: string;
7178
+ color: string;
7179
+ outlineWidth: string;
7180
+ outlineColor: string;
7181
+ outlineStyle: string;
7182
+ outlineOffset: string;
7183
+ backgroundColor: string;
7184
+ } | {
7185
+ pointerEvents: string;
7186
+ color: string;
7187
+ outline: string;
7188
+ outlineColor: string;
7189
+ backgroundColor: string;
7190
+ };
7191
+ _active: {
7192
+ backgroundColor: string;
7193
+ };
7194
+ color: string;
7195
+ backgroundColor: string;
7196
+ _focusVisible: {
7197
+ outlineWidth: string;
7198
+ outlineColor: string;
7199
+ outlineStyle: string;
7200
+ outlineOffset: string;
7201
+ };
7202
+ outlineWidth: string;
7203
+ outlineColor: string;
7204
+ outlineStyle: string;
7205
+ outlineOffset: string;
7206
+ appearance: string;
7207
+ border: string;
7208
+ overflow: string;
7209
+ fontSize: string;
7210
+ display: string;
7211
+ borderRadius: string;
7212
+ } | {
7213
+ _hover: {
7214
+ outline: string;
7215
+ outlineColor: string;
7216
+ backgroundColor: string;
7217
+ } | {
7218
+ _hover: {
7219
+ backgroundColor: string;
7220
+ };
7221
+ _active: {
7222
+ backgroundColor: string;
7223
+ };
7224
+ color: string;
7225
+ backgroundColor: string;
7226
+ };
7227
+ _disabled: {
7228
+ pointerEvents: string;
7229
+ color: string;
7230
+ outlineWidth: string;
7231
+ outlineColor: string;
7232
+ outlineStyle: string;
7233
+ outlineOffset: string;
7234
+ backgroundColor: string;
7235
+ } | {
7236
+ pointerEvents: string;
7237
+ color: string;
7238
+ outline: string;
7239
+ outlineColor: string;
7240
+ backgroundColor: string;
7241
+ };
7242
+ outline: string;
7243
+ outlineColor: string;
7244
+ backgroundColor: string;
7245
+ _focusVisible: {
7246
+ outlineWidth: string;
7247
+ outlineColor: string;
7248
+ outlineStyle: string;
7249
+ outlineOffset: string;
7250
+ };
7251
+ color: string;
7252
+ appearance: string;
7253
+ border: string;
7254
+ overflow: string;
7255
+ fontSize: string;
7256
+ display: string;
7257
+ borderRadius: string;
7258
+ } | {
7259
+ _hover: {
7260
+ outline: string;
7261
+ outlineColor: string;
7262
+ backgroundColor: string;
7263
+ } | {
7264
+ _hover: {
7265
+ backgroundColor: string;
7266
+ };
7267
+ _active: {
7268
+ backgroundColor: string;
7269
+ };
7270
+ color: string;
7271
+ backgroundColor: string;
7272
+ };
7273
+ _disabled: {
7274
+ pointerEvents: string;
7275
+ color: string;
7276
+ outlineWidth: string;
7277
+ outlineColor: string;
7278
+ outlineStyle: string;
7279
+ outlineOffset: string;
7280
+ backgroundColor: string;
7281
+ } | {
7282
+ pointerEvents: string;
7283
+ color: string;
7284
+ outline: string;
7285
+ outlineColor: string;
7286
+ backgroundColor: string;
7287
+ };
7288
+ _active: {
7289
+ backgroundColor: string;
7290
+ };
7291
+ color: string;
7292
+ backgroundColor: string;
7293
+ _focusVisible: {
7294
+ outlineWidth: string;
7295
+ outlineColor: string;
7296
+ outlineStyle: string;
7297
+ outlineOffset: string;
7298
+ };
7299
+ outline: string;
7300
+ outlineColor: string;
7301
+ appearance: string;
7302
+ border: string;
7303
+ overflow: string;
7304
+ fontSize: string;
7305
+ display: string;
7306
+ borderRadius: string;
7307
+ } | {
7308
+ _hover: {
7309
+ outline: string;
7310
+ outlineColor: string;
7311
+ backgroundColor: string;
7312
+ } | {
7313
+ _hover: {
7314
+ backgroundColor: string;
7315
+ };
7316
+ _active: {
7317
+ backgroundColor: string;
7318
+ };
7319
+ color: string;
7320
+ backgroundColor: string;
7321
+ };
7322
+ _disabled: {
7323
+ pointerEvents: string;
7324
+ color: string;
7325
+ outlineWidth: string;
7326
+ outlineColor: string;
7327
+ outlineStyle: string;
7328
+ outlineOffset: string;
7329
+ backgroundColor: string;
7330
+ } | {
7331
+ pointerEvents: string;
7332
+ color: string;
7333
+ outline: string;
7334
+ outlineColor: string;
7335
+ backgroundColor: string;
7336
+ };
7337
+ outline: string;
7338
+ outlineColor: string;
7339
+ backgroundColor: string;
7340
+ _focusVisible: {
7341
+ outlineWidth: string;
7342
+ outlineColor: string;
7343
+ outlineStyle: string;
7344
+ outlineOffset: string;
7345
+ };
7346
+ _active: {
7347
+ backgroundColor: string;
7348
+ };
7349
+ color: string;
7350
+ appearance: string;
7351
+ border: string;
7352
+ overflow: string;
7353
+ fontSize: string;
7354
+ display: string;
7355
+ borderRadius: string;
7356
+ } | {
7357
+ _hover: {
7358
+ outline: string;
7359
+ outlineColor: string;
7360
+ backgroundColor: string;
7361
+ } | {
7362
+ _hover: {
7363
+ backgroundColor: string;
7364
+ };
7365
+ _active: {
7366
+ backgroundColor: string;
7367
+ };
7368
+ color: string;
7369
+ backgroundColor: string;
7370
+ };
7371
+ _disabled: {
7372
+ pointerEvents: string;
7373
+ color: string;
7374
+ outlineWidth: string;
7375
+ outlineColor: string;
7376
+ outlineStyle: string;
7377
+ outlineOffset: string;
7378
+ backgroundColor: string;
7379
+ } | {
7380
+ pointerEvents: string;
7381
+ color: string;
7382
+ outline: string;
7383
+ outlineColor: string;
7384
+ backgroundColor: string;
7385
+ };
7386
+ _active: {
7387
+ backgroundColor: string;
7388
+ };
7389
+ color: string;
7390
+ backgroundColor: string;
7391
+ _focusVisible: {
7392
+ outlineWidth: string;
7393
+ outlineColor: string;
7394
+ outlineStyle: string;
7395
+ outlineOffset: string;
7396
+ };
7397
+ outline: string;
7398
+ outlineColor: string;
7399
+ appearance: string;
7400
+ border: string;
7401
+ overflow: string;
7402
+ fontSize: string;
7403
+ display: string;
7404
+ borderRadius: string;
7405
+ } | {
7406
+ _hover: {
7407
+ outline: string;
7408
+ outlineColor: string;
7409
+ backgroundColor: string;
7410
+ } | {
7411
+ _hover: {
7412
+ backgroundColor: string;
7413
+ };
7414
+ _active: {
7415
+ backgroundColor: string;
7416
+ };
7417
+ color: string;
7418
+ backgroundColor: string;
7419
+ };
7420
+ _disabled: {
7421
+ pointerEvents: string;
7422
+ color: string;
7423
+ outlineWidth: string;
7424
+ outlineColor: string;
7425
+ outlineStyle: string;
7426
+ outlineOffset: string;
7427
+ backgroundColor: string;
7428
+ } | {
7429
+ pointerEvents: string;
7430
+ color: string;
7431
+ outline: string;
7432
+ outlineColor: string;
7433
+ backgroundColor: string;
7434
+ };
7435
+ outline: string;
7436
+ outlineColor: string;
7437
+ backgroundColor: string;
7438
+ _focusVisible: {
7439
+ outlineWidth: string;
7440
+ outlineColor: string;
7441
+ outlineStyle: string;
7442
+ outlineOffset: string;
7443
+ };
7444
+ _active: {
7445
+ backgroundColor: string;
7446
+ };
7447
+ color: string;
7448
+ appearance: string;
7449
+ border: string;
7450
+ overflow: string;
7451
+ fontSize: string;
7452
+ display: string;
7453
+ borderRadius: string;
7454
+ } | {
7455
+ _hover: {
7456
+ outline: string;
7457
+ outlineColor: string;
7458
+ backgroundColor: string;
7459
+ } | {
7460
+ _hover: {
7461
+ backgroundColor: string;
7462
+ };
7463
+ _active: {
7464
+ backgroundColor: string;
7465
+ };
7466
+ color: string;
7467
+ backgroundColor: string;
7468
+ };
7469
+ _disabled: {
7470
+ pointerEvents: string;
7471
+ color: string;
7472
+ outlineWidth: string;
7473
+ outlineColor: string;
7474
+ outlineStyle: string;
7475
+ outlineOffset: string;
7476
+ backgroundColor: string;
7477
+ } | {
7478
+ pointerEvents: string;
7479
+ color: string;
7480
+ outline: string;
7481
+ outlineColor: string;
7482
+ backgroundColor: string;
7483
+ };
7484
+ _active: {
7485
+ backgroundColor: string;
7486
+ };
7487
+ color: string;
7488
+ backgroundColor: string;
7489
+ _focusVisible: {
7490
+ outlineWidth: string;
7491
+ outlineColor: string;
7492
+ outlineStyle: string;
7493
+ outlineOffset: string;
7494
+ };
7495
+ outline: string;
7496
+ outlineColor: string;
7497
+ appearance: string;
7498
+ border: string;
7499
+ overflow: string;
7500
+ fontSize: string;
7501
+ display: string;
7502
+ borderRadius: string;
7503
+ } | {
7504
+ _hover: {
7505
+ outline: string;
7506
+ outlineColor: string;
7507
+ backgroundColor: string;
7508
+ } | {
7509
+ _hover: {
7510
+ backgroundColor: string;
7511
+ };
7512
+ _active: {
7513
+ backgroundColor: string;
7514
+ };
7515
+ color: string;
7516
+ backgroundColor: string;
7517
+ };
7518
+ _disabled: {
7519
+ pointerEvents: string;
7520
+ color: string;
7521
+ outlineWidth: string;
7522
+ outlineColor: string;
7523
+ outlineStyle: string;
7524
+ outlineOffset: string;
7525
+ backgroundColor: string;
7526
+ } | {
7527
+ pointerEvents: string;
7528
+ color: string;
7529
+ outline: string;
7530
+ outlineColor: string;
7531
+ backgroundColor: string;
7532
+ };
7533
+ outline: string;
7534
+ outlineColor: string;
7535
+ backgroundColor: string;
7536
+ _focusVisible: {
7537
+ outlineWidth: string;
7538
+ outlineColor: string;
7539
+ outlineStyle: string;
7540
+ outlineOffset: string;
7541
+ };
7542
+ _active: {
7543
+ backgroundColor: string;
7544
+ };
7545
+ color: string;
7546
+ appearance: string;
7547
+ border: string;
7548
+ overflow: string;
7549
+ fontSize: string;
7550
+ display: string;
7551
+ borderRadius: string;
7552
+ } | {
7553
+ _hover: {
7554
+ outline: string;
7555
+ outlineColor: string;
7556
+ backgroundColor: string;
7557
+ } | {
7558
+ _hover: {
7559
+ backgroundColor: string;
7560
+ };
7561
+ _active: {
7562
+ backgroundColor: string;
7563
+ };
7564
+ color: string;
7565
+ backgroundColor: string;
7566
+ };
7567
+ _disabled: {
7568
+ pointerEvents: string;
7569
+ color: string;
7570
+ outlineWidth: string;
7571
+ outlineColor: string;
7572
+ outlineStyle: string;
7573
+ outlineOffset: string;
7574
+ backgroundColor: string;
7575
+ } | {
7576
+ pointerEvents: string;
7577
+ color: string;
7578
+ outline: string;
7579
+ outlineColor: string;
7580
+ backgroundColor: string;
7581
+ };
7582
+ _active: {
7583
+ backgroundColor: string;
7584
+ };
7585
+ color: string;
7586
+ backgroundColor: string;
7587
+ _focusVisible: {
7588
+ outlineWidth: string;
7589
+ outlineColor: string;
7590
+ outlineStyle: string;
7591
+ outlineOffset: string;
7592
+ };
7593
+ appearance: string;
7594
+ border: string;
7595
+ overflow: string;
7596
+ fontSize: string;
7597
+ display: string;
7598
+ borderRadius: string;
7599
+ }) | undefined;
7600
+ sizes?: {
7601
+ sm: {
7602
+ boxShadow: string;
7603
+ _hover: {
7604
+ boxShadow: string;
7605
+ };
7606
+ _active: {
7607
+ boxShadow: string;
7608
+ };
7609
+ };
7610
+ lg: {
7611
+ boxShadow: string;
7612
+ _hover: {
7613
+ boxShadow: string;
7614
+ };
7615
+ _active: {
7616
+ boxShadow: string;
7617
+ };
7618
+ };
7619
+ } | undefined;
7620
+ variants?: {
7621
+ base: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
7622
+ _hover: {
7623
+ backgroundColor: string;
7624
+ };
7625
+ _active: {
7626
+ backgroundColor: string;
7627
+ };
7628
+ backgroundColor: string;
7629
+ };
7630
+ accent: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
7631
+ _hover: {
7632
+ backgroundColor: string;
7633
+ };
7634
+ _active: {
7635
+ backgroundColor: string;
7636
+ };
7637
+ backgroundColor: string;
7638
+ };
7639
+ floating: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
7640
+ _hover: {
7641
+ backgroundColor: string;
7642
+ };
7643
+ _active: {
7644
+ backgroundColor: string;
7645
+ };
7646
+ backgroundColor: string;
7647
+ };
7648
+ } | undefined;
7649
+ defaultProps?: {
7650
+ size?: "sm" | "lg" | undefined;
7651
+ variant?: "base" | "floating" | "accent" | undefined;
7652
+ colorScheme?: string | undefined;
7653
+ } | undefined;
7654
+ };
6958
7655
  TravelTag: {
6959
7656
  baseStyle?: ((props: _chakra_ui_styled_system.StyleFunctionProps) => {
6960
7657
  container: {
@@ -9040,4 +9737,4 @@ declare const Text: _chakra_ui_system_dist_system_types.ComponentWithAs<"p", Tex
9040
9737
  **/
9041
9738
  declare function slugify(text: string | string[], maxLength?: number): string;
9042
9739
 
9043
- export { Accordion, AccordionProps, AttachedInputs, Badge, BadgeProps, Brand, Breadcrumb, BreadcrumbItem, BreadcrumbLink, Button, ButtonGroup, ButtonGroupProps, ButtonProps, Card, CardProps, CardSelect, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChoiceChip, ChoiceChipProps, ClosableAlert, CloseButton, CloseButtonProps, Code, CodeProps, ColorInlineLoader, ColorInlineLoaderProps, ColorSpinner, ColorSpinnerProps, Combobox, ComboboxProps, ContentLoader, ContentLoaderProps, DarkFullScreenLoader, DarkInlineLoader, DarkInlineLoaderProps, DarkSpinner, DarkSpinnerProps, DatePicker, DateRangePicker, Divider, DividerProps, Drawer, DrawerContent, ModalHeader as DrawerHeader, Expandable, ExpandableAlert, ExpandableItem, ExpandableItemProps, FloatingActionButton, FormControl, FormControlProps, FormErrorMessage, FormErrorMessageProps, FormLabel, FormLabelProps, FullScreenDrawer, Heading, HeadingProps, IconButton, IconButtonProps, InfoSelect, InfoTag, InfoTagProps, Input, InputElementProps, InputLeftElement, InputProps, InputRightElement, ItemDescription, ItemLabel, JumpButton, Language, LanguageProvider, LightFullScreenLoader, LightInlineLoader, LightInlineLoaderProps, LightSpinner, LightSpinnerProps, LineIcon, LineIconProps, ListBox, ModalHeader, ModalHeaderProps, NativeSelect, NativeSelectProps, Nudge, NudgeProps, NumericStepper, Pagination, PasswordInput, PasswordInputProps, PhoneNumberInput, PlayPauseButton, ProgressBar, ProgressIndicator, ProgressLoader, Radio, RadioGroup, RadioGroupProps, RadioProps, SearchInput, SearchInputProps, SimpleDrawer, SimpleDrawerProps, Skeleton, SkeletonCircle, SkeletonCircleProps, SkeletonProps, SkeletonText, SkeletonTextProps, SkipButton, SpinnerProps, SporProvider, Stack, StackProps, StaticAlert, StaticCard, Stepper, StepperStep, Switch, SwitchProps, Table, TableProps, Tabs, TabsProps, Text, TextLink, TextProps, Textarea, TextareaProps, TimePicker, ToastOptions, Tooltip, TooltipProps, Translations, TravelTag, TravelTagProps, VyLogo, VyLogoProps, WizardNudge, WizardNudgeProps, brandTheme, createTexts, fontFaces, slugify, theme, useToast, useTranslation };
9740
+ export { Accordion, AccordionProps, AttachedInputs, Badge, BadgeProps, Brand, Breadcrumb, BreadcrumbItem, BreadcrumbLink, Button, ButtonGroup, ButtonGroupProps, ButtonProps, Card, CardProps, CardSelect, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, ChoiceChip, ChoiceChipProps, ClosableAlert, CloseButton, CloseButtonProps, Code, CodeProps, ColorInlineLoader, ColorInlineLoaderProps, ColorSpinner, ColorSpinnerProps, Combobox, ComboboxProps, ContentLoader, ContentLoaderProps, DarkFullScreenLoader, DarkInlineLoader, DarkInlineLoaderProps, DarkSpinner, DarkSpinnerProps, DatePicker, DateRangePicker, Divider, DividerProps, Drawer, DrawerContent, ModalHeader as DrawerHeader, Expandable, ExpandableAlert, ExpandableItem, ExpandableItemProps, FloatingActionButton, FormControl, FormControlProps, FormErrorMessage, FormErrorMessageProps, FormLabel, FormLabelProps, FullScreenDrawer, Heading, HeadingProps, IconButton, IconButtonProps, InfoSelect, InfoTag, InfoTagProps, Input, InputElementProps, InputLeftElement, InputProps, InputRightElement, ItemDescription, ItemLabel, JumpButton, Language, LanguageProvider, LightFullScreenLoader, LightInlineLoader, LightInlineLoaderProps, LightSpinner, LightSpinnerProps, LineIcon, LineIconProps, ListBox, ModalHeader, ModalHeaderProps, NativeSelect, NativeSelectProps, Nudge, NudgeProps, NumericStepper, Pagination, PasswordInput, PasswordInputProps, PhoneNumberInput, PlayPauseButton, PressableCard, ProgressBar, ProgressIndicator, ProgressLoader, Radio, RadioGroup, RadioGroupProps, RadioProps, SearchInput, SearchInputProps, SimpleDrawer, SimpleDrawerProps, Skeleton, SkeletonCircle, SkeletonCircleProps, SkeletonProps, SkeletonText, SkeletonTextProps, SkipButton, SpinnerProps, SporProvider, Stack, StackProps, StaticAlert, StaticCard, Stepper, StepperStep, Switch, SwitchProps, Table, TableProps, Tabs, TabsProps, Text, TextLink, TextProps, Textarea, TextareaProps, TimePicker, ToastOptions, Tooltip, TooltipProps, Translations, TravelTag, TravelTagProps, VyLogo, VyLogoProps, WizardNudge, WizardNudgeProps, brandTheme, createTexts, fontFaces, slugify, theme, useToast, useTranslation };