@lets-events/react 8.0.0 → 9.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.
- package/.eslintrc.json +2 -2
- package/.turbo/turbo-build.log +18 -19
- package/CHANGELOG.md +13 -1
- package/dist/index.d.mts +377 -6
- package/dist/index.d.ts +377 -6
- package/dist/index.js +277 -734
- package/dist/index.mjs +213 -671
- package/package.json +3 -1
- package/src/components/Alert.tsx +303 -303
- package/src/components/Avatar.tsx +55 -55
- package/src/components/Badge.tsx +128 -128
- package/src/components/Box.tsx +3 -3
- package/src/components/Button/index.tsx +12 -12
- package/src/components/Button/styledComponents.ts +250 -250
- package/src/components/ButtonGroup.tsx +484 -484
- package/src/components/Calendar/index.tsx +136 -132
- package/src/components/Calendar/styledComponents.ts +208 -208
- package/src/components/Card.tsx +69 -69
- package/src/components/CheckboxGroup.tsx +214 -214
- package/src/components/Container.tsx +39 -39
- package/src/components/Dropdown.tsx +167 -167
- package/src/components/Filter.tsx +164 -164
- package/src/components/Flex.tsx +118 -118
- package/src/components/Grid.tsx +137 -137
- package/src/components/Icon.tsx +47 -47
- package/src/components/Modal.tsx +103 -109
- package/src/components/RadioGroup.tsx +210 -210
- package/src/components/Section.tsx +33 -33
- package/src/components/Step.tsx +164 -164
- package/src/components/Switch.tsx +108 -108
- package/src/components/Text.tsx +30 -30
- package/src/components/TextField.tsx +299 -299
- package/src/components/TextareaField.tsx +101 -101
- package/src/components/TimePicker.tsx +239 -213
- package/src/hooks/useOnClickOutside.tsx +20 -20
- package/src/index.tsx +31 -31
- package/src/styles/index.ts +38 -38
- package/src/types/typographyValues.ts +178 -178
- package/tsconfig.json +3 -3
package/.eslintrc.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "@lets-events/eslint-config"
|
|
1
|
+
{
|
|
2
|
+
"extends": "@lets-events/eslint-config"
|
|
3
3
|
}
|
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
[34mCLI[39m
|
|
7
|
-
[34mCLI[39m
|
|
8
|
-
[34mCLI[39m
|
|
9
|
-
[
|
|
10
|
-
[
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
[32mCJS[39m
|
|
14
|
-
[
|
|
15
|
-
[
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
DTS dist/index.d.ts 345.85 KB
|
|
1
|
+
|
|
2
|
+
> @lets-events/react@9.0.0 build
|
|
3
|
+
> tsup src/index.tsx --format esm,cjs --dts --external react
|
|
4
|
+
|
|
5
|
+
[34mCLI[39m Building entry: src/index.tsx
|
|
6
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
+
[34mCLI[39m tsup v8.4.0
|
|
8
|
+
[34mCLI[39m Target: es6
|
|
9
|
+
[34mESM[39m Build start
|
|
10
|
+
[34mCJS[39m Build start
|
|
11
|
+
[32mESM[39m [1mdist\index.mjs [22m[32m265.84 KB[39m
|
|
12
|
+
[32mESM[39m ⚡️ Build success in 216ms
|
|
13
|
+
[32mCJS[39m [1mdist\index.js [22m[32m273.58 KB[39m
|
|
14
|
+
[32mCJS[39m ⚡️ Build success in 217ms
|
|
15
|
+
[34mDTS[39m Build start
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 4839ms
|
|
17
|
+
[32mDTS[39m [1mdist\index.d.mts [22m[32m355.13 KB[39m
|
|
18
|
+
[32mDTS[39m [1mdist\index.d.ts [22m[32m355.13 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,22 @@
|
|
|
1
1
|
# @lets-events/react
|
|
2
2
|
|
|
3
|
+
## 9.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- Modal Refacotr
|
|
8
|
+
|
|
3
9
|
## 8.0.0
|
|
4
10
|
|
|
5
11
|
### Major Changes
|
|
6
12
|
|
|
7
|
-
-
|
|
13
|
+
- Modal refactor
|
|
14
|
+
|
|
15
|
+
## 7.2.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Button attribute type correction
|
|
8
20
|
|
|
9
21
|
## 7.2.0
|
|
10
22
|
|
package/dist/index.d.mts
CHANGED
|
@@ -7,9 +7,10 @@ import * as _stitches_react_types_css_util from '@stitches/react/types/css-util'
|
|
|
7
7
|
import * as react from 'react';
|
|
8
8
|
import react__default, { ComponentProps, ElementType, ReactNode } from 'react';
|
|
9
9
|
import * as _radix_ui_themes from '@radix-ui/themes';
|
|
10
|
-
import { TextField as TextField$1, RadioGroup as RadioGroup$1, CheckboxGroup as CheckboxGroup$1, DropdownMenu as DropdownMenu$1,
|
|
10
|
+
import { TextField as TextField$1, RadioGroup as RadioGroup$1, CheckboxGroup as CheckboxGroup$1, DropdownMenu as DropdownMenu$1, AlertDialog, Switch as Switch$1 } from '@radix-ui/themes';
|
|
11
11
|
import { CSS } from '@stitches/react';
|
|
12
12
|
import { MaskOptions, format, unformat } from '@react-input/mask';
|
|
13
|
+
import { Dialog } from 'radix-ui';
|
|
13
14
|
|
|
14
15
|
interface IconProps extends Omit<FontAwesomeIconProps, "icon" | "size"> {
|
|
15
16
|
name: IconName;
|
|
@@ -4636,7 +4637,7 @@ declare const ModalStyled: _stitches_react_types_styled_component.StyledComponen
|
|
|
4636
4637
|
transition: "transitions";
|
|
4637
4638
|
zIndex: "zIndices";
|
|
4638
4639
|
}, {}>>;
|
|
4639
|
-
declare const ModalContentStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<Dialog.
|
|
4640
|
+
declare const ModalContentStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<Dialog.DialogContentProps & react.RefAttributes<HTMLDivElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
4640
4641
|
colors: {
|
|
4641
4642
|
brand50: string;
|
|
4642
4643
|
brand100: string;
|
|
@@ -5006,7 +5007,7 @@ declare const ModalContentStyled: _stitches_react_types_styled_component.StyledC
|
|
|
5006
5007
|
transition: "transitions";
|
|
5007
5008
|
zIndex: "zIndices";
|
|
5008
5009
|
}, {}>>;
|
|
5009
|
-
declare const ModalTitleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<Dialog.
|
|
5010
|
+
declare const ModalTitleStyled: _stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<Dialog.DialogTitleProps & react.RefAttributes<HTMLHeadingElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
5010
5011
|
colors: {
|
|
5011
5012
|
brand50: string;
|
|
5012
5013
|
brand100: string;
|
|
@@ -5376,7 +5377,7 @@ declare const ModalTitleStyled: _stitches_react_types_styled_component.StyledCom
|
|
|
5376
5377
|
transition: "transitions";
|
|
5377
5378
|
zIndex: "zIndices";
|
|
5378
5379
|
}, {}>>;
|
|
5379
|
-
type ModalProps = ComponentProps<typeof
|
|
5380
|
+
type ModalProps = ComponentProps<typeof Dialog.Root> & {
|
|
5380
5381
|
trigger: React.ReactNode;
|
|
5381
5382
|
title?: string;
|
|
5382
5383
|
children: React.ReactNode;
|
|
@@ -5386,7 +5387,7 @@ type ModalProps = ComponentProps<typeof ModalStyled> & {
|
|
|
5386
5387
|
actionText?: string;
|
|
5387
5388
|
onAction?: () => void;
|
|
5388
5389
|
};
|
|
5389
|
-
declare function Modal({ children, title, trigger,
|
|
5390
|
+
declare function Modal({ children, title, trigger, onAction, ...props }: ModalProps): react_jsx_runtime.JSX.Element;
|
|
5390
5391
|
|
|
5391
5392
|
declare const CalendarStyled: _stitches_react_types_styled_component.StyledComponent<"div", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
5392
5393
|
colors: {
|
|
@@ -7249,6 +7250,376 @@ declare const TimerPickerContentStyled: _stitches_react_types_styled_component.S
|
|
|
7249
7250
|
transition: "transitions";
|
|
7250
7251
|
zIndex: "zIndices";
|
|
7251
7252
|
}, {}>>;
|
|
7253
|
+
declare const InputStyled: _stitches_react_types_styled_component.StyledComponent<"input", {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
7254
|
+
colors: {
|
|
7255
|
+
brand50: string;
|
|
7256
|
+
brand100: string;
|
|
7257
|
+
brand200: string;
|
|
7258
|
+
brand300: string;
|
|
7259
|
+
brand400: string;
|
|
7260
|
+
brand500: string;
|
|
7261
|
+
brand600: string;
|
|
7262
|
+
brand700: string;
|
|
7263
|
+
brand800: string;
|
|
7264
|
+
brand900: string;
|
|
7265
|
+
brand950: string;
|
|
7266
|
+
blue50: string;
|
|
7267
|
+
blue100: string;
|
|
7268
|
+
blue200: string;
|
|
7269
|
+
blue300: string;
|
|
7270
|
+
blue400: string;
|
|
7271
|
+
blue500: string;
|
|
7272
|
+
blue600: string;
|
|
7273
|
+
blue700: string;
|
|
7274
|
+
blue800: string;
|
|
7275
|
+
blue900: string;
|
|
7276
|
+
blue950: string;
|
|
7277
|
+
red50: string;
|
|
7278
|
+
red100: string;
|
|
7279
|
+
red200: string;
|
|
7280
|
+
red300: string;
|
|
7281
|
+
red400: string;
|
|
7282
|
+
red500: string;
|
|
7283
|
+
red600: string;
|
|
7284
|
+
red700: string;
|
|
7285
|
+
red800: string;
|
|
7286
|
+
red900: string;
|
|
7287
|
+
red950: string;
|
|
7288
|
+
purple50: string;
|
|
7289
|
+
purple100: string;
|
|
7290
|
+
purple200: string;
|
|
7291
|
+
purple300: string;
|
|
7292
|
+
purple400: string;
|
|
7293
|
+
purple500: string;
|
|
7294
|
+
purple600: string;
|
|
7295
|
+
purple700: string;
|
|
7296
|
+
purple800: string;
|
|
7297
|
+
purple900: string;
|
|
7298
|
+
purple950: string;
|
|
7299
|
+
yellow50: string;
|
|
7300
|
+
yellow100: string;
|
|
7301
|
+
yellow200: string;
|
|
7302
|
+
yellow300: string;
|
|
7303
|
+
yellow400: string;
|
|
7304
|
+
yellow500: string;
|
|
7305
|
+
yellow600: string;
|
|
7306
|
+
yellow700: string;
|
|
7307
|
+
yellow800: string;
|
|
7308
|
+
yellow900: string;
|
|
7309
|
+
yellow950: string;
|
|
7310
|
+
dark50: string;
|
|
7311
|
+
dark100: string;
|
|
7312
|
+
dark200: string;
|
|
7313
|
+
dark300: string;
|
|
7314
|
+
dark400: string;
|
|
7315
|
+
dark500: string;
|
|
7316
|
+
dark600: string;
|
|
7317
|
+
dark700: string;
|
|
7318
|
+
dark800: string;
|
|
7319
|
+
dark900: string;
|
|
7320
|
+
dark950: string;
|
|
7321
|
+
neutral50: string;
|
|
7322
|
+
neutral100: string;
|
|
7323
|
+
neutral200: string;
|
|
7324
|
+
neutral300: string;
|
|
7325
|
+
neutral400: string;
|
|
7326
|
+
neutral500: string;
|
|
7327
|
+
neutral600: string;
|
|
7328
|
+
neutral700: string;
|
|
7329
|
+
neutral800: string;
|
|
7330
|
+
neutral900: string;
|
|
7331
|
+
neutral950: string;
|
|
7332
|
+
green50: string;
|
|
7333
|
+
green100: string;
|
|
7334
|
+
green200: string;
|
|
7335
|
+
green300: string;
|
|
7336
|
+
green400: string;
|
|
7337
|
+
green500: string;
|
|
7338
|
+
green600: string;
|
|
7339
|
+
green700: string;
|
|
7340
|
+
green800: string;
|
|
7341
|
+
green900: string;
|
|
7342
|
+
green950: string;
|
|
7343
|
+
grey50: string;
|
|
7344
|
+
grey100: string;
|
|
7345
|
+
grey200: string;
|
|
7346
|
+
grey300: string;
|
|
7347
|
+
grey400: string;
|
|
7348
|
+
grey500: string;
|
|
7349
|
+
grey600: string;
|
|
7350
|
+
grey700: string;
|
|
7351
|
+
grey800: string;
|
|
7352
|
+
grey900: string;
|
|
7353
|
+
grey950: string;
|
|
7354
|
+
error50: string;
|
|
7355
|
+
error100: string;
|
|
7356
|
+
error200: string;
|
|
7357
|
+
error300: string;
|
|
7358
|
+
error400: string;
|
|
7359
|
+
error500: string;
|
|
7360
|
+
error600: string;
|
|
7361
|
+
error700: string;
|
|
7362
|
+
error800: string;
|
|
7363
|
+
error900: string;
|
|
7364
|
+
error950: string;
|
|
7365
|
+
success50: string;
|
|
7366
|
+
success100: string;
|
|
7367
|
+
success200: string;
|
|
7368
|
+
success300: string;
|
|
7369
|
+
success400: string;
|
|
7370
|
+
success500: string;
|
|
7371
|
+
success600: string;
|
|
7372
|
+
success700: string;
|
|
7373
|
+
success800: string;
|
|
7374
|
+
success900: string;
|
|
7375
|
+
success950: string;
|
|
7376
|
+
warning50: string;
|
|
7377
|
+
warning100: string;
|
|
7378
|
+
warning200: string;
|
|
7379
|
+
warning300: string;
|
|
7380
|
+
warning400: string;
|
|
7381
|
+
warning500: string;
|
|
7382
|
+
warning600: string;
|
|
7383
|
+
warning700: string;
|
|
7384
|
+
warning800: string;
|
|
7385
|
+
warning900: string;
|
|
7386
|
+
warning950: string;
|
|
7387
|
+
info50: string;
|
|
7388
|
+
info100: string;
|
|
7389
|
+
info200: string;
|
|
7390
|
+
info300: string;
|
|
7391
|
+
info400: string;
|
|
7392
|
+
info500: string;
|
|
7393
|
+
info600: string;
|
|
7394
|
+
info700: string;
|
|
7395
|
+
info800: string;
|
|
7396
|
+
info900: string;
|
|
7397
|
+
info950: string;
|
|
7398
|
+
};
|
|
7399
|
+
fontSizes: {
|
|
7400
|
+
2: string;
|
|
7401
|
+
4: string;
|
|
7402
|
+
6: string;
|
|
7403
|
+
8: string;
|
|
7404
|
+
10: string;
|
|
7405
|
+
12: string;
|
|
7406
|
+
13: string;
|
|
7407
|
+
14: string;
|
|
7408
|
+
16: string;
|
|
7409
|
+
18: string;
|
|
7410
|
+
20: string;
|
|
7411
|
+
22: string;
|
|
7412
|
+
24: string;
|
|
7413
|
+
32: string;
|
|
7414
|
+
36: string;
|
|
7415
|
+
40: string;
|
|
7416
|
+
48: string;
|
|
7417
|
+
56: string;
|
|
7418
|
+
64: string;
|
|
7419
|
+
72: string;
|
|
7420
|
+
80: string;
|
|
7421
|
+
xs: string;
|
|
7422
|
+
sm: string;
|
|
7423
|
+
md: string;
|
|
7424
|
+
lg: string;
|
|
7425
|
+
'2xl': string;
|
|
7426
|
+
'3xl': string;
|
|
7427
|
+
'4xl': string;
|
|
7428
|
+
full: string;
|
|
7429
|
+
};
|
|
7430
|
+
fonts: {
|
|
7431
|
+
default: string;
|
|
7432
|
+
};
|
|
7433
|
+
fontWeights: {
|
|
7434
|
+
regular: string;
|
|
7435
|
+
medium: string;
|
|
7436
|
+
semibold: string;
|
|
7437
|
+
bold: string;
|
|
7438
|
+
};
|
|
7439
|
+
lineHeights: {
|
|
7440
|
+
smaller: string;
|
|
7441
|
+
shorter: string;
|
|
7442
|
+
short: string;
|
|
7443
|
+
base: string;
|
|
7444
|
+
tall: string;
|
|
7445
|
+
};
|
|
7446
|
+
radii: {
|
|
7447
|
+
'3xs': string;
|
|
7448
|
+
'2xs': string;
|
|
7449
|
+
xs: string;
|
|
7450
|
+
sm: string;
|
|
7451
|
+
md: string;
|
|
7452
|
+
lg: string;
|
|
7453
|
+
xl: string;
|
|
7454
|
+
'2xl': string;
|
|
7455
|
+
'3xl': string;
|
|
7456
|
+
'4xl': string;
|
|
7457
|
+
'5xl': string;
|
|
7458
|
+
'6xl': string;
|
|
7459
|
+
'7xl': string;
|
|
7460
|
+
'8xl': string;
|
|
7461
|
+
'9xl': string;
|
|
7462
|
+
'10xl': string;
|
|
7463
|
+
'11xl': string;
|
|
7464
|
+
'12xl': string;
|
|
7465
|
+
'13xl': string;
|
|
7466
|
+
'14xl': string;
|
|
7467
|
+
full: string;
|
|
7468
|
+
};
|
|
7469
|
+
space: {
|
|
7470
|
+
2: string;
|
|
7471
|
+
4: string;
|
|
7472
|
+
6: string;
|
|
7473
|
+
8: string;
|
|
7474
|
+
10: string;
|
|
7475
|
+
12: string;
|
|
7476
|
+
13: string;
|
|
7477
|
+
14: string;
|
|
7478
|
+
16: string;
|
|
7479
|
+
18: string;
|
|
7480
|
+
20: string;
|
|
7481
|
+
22: string;
|
|
7482
|
+
24: string;
|
|
7483
|
+
32: string;
|
|
7484
|
+
36: string;
|
|
7485
|
+
40: string;
|
|
7486
|
+
48: string;
|
|
7487
|
+
56: string;
|
|
7488
|
+
64: string;
|
|
7489
|
+
72: string;
|
|
7490
|
+
80: string;
|
|
7491
|
+
full: string;
|
|
7492
|
+
};
|
|
7493
|
+
}, {
|
|
7494
|
+
height: "space";
|
|
7495
|
+
width: "space";
|
|
7496
|
+
gap: "space";
|
|
7497
|
+
gridGap: "space";
|
|
7498
|
+
columnGap: "space";
|
|
7499
|
+
gridColumnGap: "space";
|
|
7500
|
+
rowGap: "space";
|
|
7501
|
+
gridRowGap: "space";
|
|
7502
|
+
inset: "space";
|
|
7503
|
+
insetBlock: "space";
|
|
7504
|
+
insetBlockEnd: "space";
|
|
7505
|
+
insetBlockStart: "space";
|
|
7506
|
+
insetInline: "space";
|
|
7507
|
+
insetInlineEnd: "space";
|
|
7508
|
+
insetInlineStart: "space";
|
|
7509
|
+
margin: "space";
|
|
7510
|
+
marginTop: "space";
|
|
7511
|
+
marginRight: "space";
|
|
7512
|
+
marginBottom: "space";
|
|
7513
|
+
marginLeft: "space";
|
|
7514
|
+
marginBlock: "space";
|
|
7515
|
+
marginBlockEnd: "space";
|
|
7516
|
+
marginBlockStart: "space";
|
|
7517
|
+
marginInline: "space";
|
|
7518
|
+
marginInlineEnd: "space";
|
|
7519
|
+
marginInlineStart: "space";
|
|
7520
|
+
padding: "space";
|
|
7521
|
+
paddingTop: "space";
|
|
7522
|
+
paddingRight: "space";
|
|
7523
|
+
paddingBottom: "space";
|
|
7524
|
+
paddingLeft: "space";
|
|
7525
|
+
paddingBlock: "space";
|
|
7526
|
+
paddingBlockEnd: "space";
|
|
7527
|
+
paddingBlockStart: "space";
|
|
7528
|
+
paddingInline: "space";
|
|
7529
|
+
paddingInlineEnd: "space";
|
|
7530
|
+
paddingInlineStart: "space";
|
|
7531
|
+
scrollMargin: "space";
|
|
7532
|
+
scrollMarginTop: "space";
|
|
7533
|
+
scrollMarginRight: "space";
|
|
7534
|
+
scrollMarginBottom: "space";
|
|
7535
|
+
scrollMarginLeft: "space";
|
|
7536
|
+
scrollMarginBlock: "space";
|
|
7537
|
+
scrollMarginBlockEnd: "space";
|
|
7538
|
+
scrollMarginBlockStart: "space";
|
|
7539
|
+
scrollMarginInline: "space";
|
|
7540
|
+
scrollMarginInlineEnd: "space";
|
|
7541
|
+
scrollMarginInlineStart: "space";
|
|
7542
|
+
scrollPadding: "space";
|
|
7543
|
+
scrollPaddingTop: "space";
|
|
7544
|
+
scrollPaddingRight: "space";
|
|
7545
|
+
scrollPaddingBottom: "space";
|
|
7546
|
+
scrollPaddingLeft: "space";
|
|
7547
|
+
scrollPaddingBlock: "space";
|
|
7548
|
+
scrollPaddingBlockEnd: "space";
|
|
7549
|
+
scrollPaddingBlockStart: "space";
|
|
7550
|
+
scrollPaddingInline: "space";
|
|
7551
|
+
scrollPaddingInlineEnd: "space";
|
|
7552
|
+
scrollPaddingInlineStart: "space";
|
|
7553
|
+
top: "space";
|
|
7554
|
+
right: "space";
|
|
7555
|
+
bottom: "space";
|
|
7556
|
+
left: "space";
|
|
7557
|
+
fontSize: "fontSizes";
|
|
7558
|
+
background: "colors";
|
|
7559
|
+
backgroundColor: "colors";
|
|
7560
|
+
backgroundImage: "colors";
|
|
7561
|
+
borderImage: "colors";
|
|
7562
|
+
border: "colors";
|
|
7563
|
+
borderBlock: "colors";
|
|
7564
|
+
borderBlockEnd: "colors";
|
|
7565
|
+
borderBlockStart: "colors";
|
|
7566
|
+
borderBottom: "colors";
|
|
7567
|
+
borderBottomColor: "colors";
|
|
7568
|
+
borderColor: "colors";
|
|
7569
|
+
borderInline: "colors";
|
|
7570
|
+
borderInlineEnd: "colors";
|
|
7571
|
+
borderInlineStart: "colors";
|
|
7572
|
+
borderLeft: "colors";
|
|
7573
|
+
borderLeftColor: "colors";
|
|
7574
|
+
borderRight: "colors";
|
|
7575
|
+
borderRightColor: "colors";
|
|
7576
|
+
borderTop: "colors";
|
|
7577
|
+
borderTopColor: "colors";
|
|
7578
|
+
caretColor: "colors";
|
|
7579
|
+
color: "colors";
|
|
7580
|
+
columnRuleColor: "colors";
|
|
7581
|
+
outline: "colors";
|
|
7582
|
+
outlineColor: "colors";
|
|
7583
|
+
fill: "colors";
|
|
7584
|
+
stroke: "colors";
|
|
7585
|
+
textDecorationColor: "colors";
|
|
7586
|
+
fontFamily: "fonts";
|
|
7587
|
+
fontWeight: "fontWeights";
|
|
7588
|
+
lineHeight: "lineHeights";
|
|
7589
|
+
letterSpacing: "letterSpacings";
|
|
7590
|
+
blockSize: "sizes";
|
|
7591
|
+
minBlockSize: "sizes";
|
|
7592
|
+
maxBlockSize: "sizes";
|
|
7593
|
+
inlineSize: "sizes";
|
|
7594
|
+
minInlineSize: "sizes";
|
|
7595
|
+
maxInlineSize: "sizes";
|
|
7596
|
+
minWidth: "sizes";
|
|
7597
|
+
maxWidth: "sizes";
|
|
7598
|
+
minHeight: "sizes";
|
|
7599
|
+
maxHeight: "sizes";
|
|
7600
|
+
flexBasis: "sizes";
|
|
7601
|
+
gridTemplateColumns: "sizes";
|
|
7602
|
+
gridTemplateRows: "sizes";
|
|
7603
|
+
borderWidth: "borderWidths";
|
|
7604
|
+
borderTopWidth: "borderWidths";
|
|
7605
|
+
borderLeftWidth: "borderWidths";
|
|
7606
|
+
borderRightWidth: "borderWidths";
|
|
7607
|
+
borderBottomWidth: "borderWidths";
|
|
7608
|
+
borderStyle: "borderStyles";
|
|
7609
|
+
borderTopStyle: "borderStyles";
|
|
7610
|
+
borderLeftStyle: "borderStyles";
|
|
7611
|
+
borderRightStyle: "borderStyles";
|
|
7612
|
+
borderBottomStyle: "borderStyles";
|
|
7613
|
+
borderRadius: "radii";
|
|
7614
|
+
borderTopLeftRadius: "radii";
|
|
7615
|
+
borderTopRightRadius: "radii";
|
|
7616
|
+
borderBottomRightRadius: "radii";
|
|
7617
|
+
borderBottomLeftRadius: "radii";
|
|
7618
|
+
boxShadow: "shadows";
|
|
7619
|
+
textShadow: "shadows";
|
|
7620
|
+
transition: "transitions";
|
|
7621
|
+
zIndex: "zIndices";
|
|
7622
|
+
}, {}>>;
|
|
7252
7623
|
type TimePickerProps = {
|
|
7253
7624
|
selected: string | undefined;
|
|
7254
7625
|
setSelected: react__default.Dispatch<react__default.SetStateAction<string | undefined>>;
|
|
@@ -13299,4 +13670,4 @@ type SectionProps = ComponentProps<typeof SectionStyled> & {
|
|
|
13299
13670
|
};
|
|
13300
13671
|
declare function Section({ children, ...props }: SectionProps): react_jsx_runtime.JSX.Element;
|
|
13301
13672
|
|
|
13302
|
-
export { Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, Calendar, type CalendarProps, Card, CardContainer, type CardProps, CardStyled, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Grid, type GridProps, GridStyled, Icon, Modal, ModalContentStyled, type ModalProps, ModalStyled, ModalTitleStyled, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, type TextProps, TextStyle, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, maskFormat, maskUnformat };
|
|
13673
|
+
export { Alert, AlertDialogCompleteStyled, AlertDialogDescriptionStyled, AlertDialogRowStyled, AlertDialogSimpleStyled, AlertDialogSubtitleStyled, AlertDialogTitleStyled, AlertDialoghrStyled, type AlertProps, Avatar, type AvatarProps, AvatarStyled, Badge, type BadgeProps, BadgeStyled, Box, Button, ButtonGroup, type ButtonGroupProps, ButtonGroupStyled, ButtonItem, type ButtonItemProps, ButtonItemStyled, type ButtonProps, Calendar, type CalendarProps, Card, CardContainer, type CardProps, CardStyled, CheckboxGroup, type CheckboxGroupProps, CheckboxGroupStyled, CheckboxItem, type CheckboxItemProps, Container, type ContainerProps, ContainerStyled, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, type DropdownMenuProps, Filter, FilterItem, type FilterItemProps, type FilterProps, Flex, type FlexProps, FlexStyled, Grid, type GridProps, GridStyled, Icon, InputStyled, Modal, ModalContentStyled, type ModalProps, ModalStyled, ModalTitleStyled, RadioGroup, type RadioGroupProps, RadioGroupStyled, RadioItem, type RadioItemProps, Section, type SectionProps, SectionStyled, Step, StepContent, StepList, type StepProps, StepStyled, StepTrigger, StepWrapper, Switch, type SwitchProps, SwitchStyled, Text, TextField, type TextFieldProps, TextFieldSlot, type TextFieldSlotProps, TextFieldSlotStyled, TextFieldStyled, type TextProps, TextStyle, TextareaField, type TextareaFieldProps, TextareaFieldStyle, TimePicker, TimePickerDropdownStyled, TimePickerFooterStyled, type TimePickerProps, TimePickerStyled, TimerPickerContentStyled, maskFormat, maskUnformat };
|