qstd 0.2.6 → 0.2.8
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/CHANGELOG.md +21 -1
- package/dist/client/index.cjs +11 -11
- package/dist/client/index.d.cts +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.js +11 -11
- package/dist/{log-DPBPow2d.d.cts → log-TRYALTmf.d.cts} +5 -5
- package/dist/{log-DPBPow2d.d.ts → log-TRYALTmf.d.ts} +5 -5
- package/dist/preset/index.cjs +7 -5
- package/dist/preset/index.js +7 -5
- package/dist/react/index.cjs +163 -158
- package/dist/react/index.css +5 -8
- package/dist/react/index.d.cts +17 -12
- package/dist/react/index.d.ts +17 -12
- package/dist/react/index.js +159 -154
- package/dist/server/index.cjs +11 -11
- package/dist/server/index.d.cts +1 -1
- package/dist/server/index.d.ts +1 -1
- package/dist/server/index.js +11 -11
- package/package.json +9 -6
package/dist/react/index.css
CHANGED
|
@@ -1024,6 +1024,9 @@
|
|
|
1024
1024
|
.rg_14 {
|
|
1025
1025
|
row-gap: 14px;
|
|
1026
1026
|
}
|
|
1027
|
+
.place-i_true {
|
|
1028
|
+
place-items: center;
|
|
1029
|
+
}
|
|
1027
1030
|
.pos_absolute {
|
|
1028
1031
|
position: absolute;
|
|
1029
1032
|
}
|
|
@@ -1033,8 +1036,8 @@
|
|
|
1033
1036
|
.fs_16 {
|
|
1034
1037
|
font-size: 16px;
|
|
1035
1038
|
}
|
|
1036
|
-
.
|
|
1037
|
-
color:
|
|
1039
|
+
.c_currentColor {
|
|
1040
|
+
color: currentColor;
|
|
1038
1041
|
}
|
|
1039
1042
|
.cursor_not-allowed {
|
|
1040
1043
|
cursor: not-allowed;
|
|
@@ -1133,9 +1136,6 @@
|
|
|
1133
1136
|
border-top-left-radius: 9999px;
|
|
1134
1137
|
border-bottom-left-radius: 9999px;
|
|
1135
1138
|
}
|
|
1136
|
-
.place-i_true {
|
|
1137
|
-
place-items: center;
|
|
1138
|
-
}
|
|
1139
1139
|
.white-space_nowrap {
|
|
1140
1140
|
white-space: nowrap;
|
|
1141
1141
|
}
|
|
@@ -1403,9 +1403,6 @@
|
|
|
1403
1403
|
.after\:z_-1::after {
|
|
1404
1404
|
z-index: -1;
|
|
1405
1405
|
}
|
|
1406
|
-
[data-theme=dark] .dark\:c_neutral\.300 {
|
|
1407
|
-
color: var(--colors-neutral-300);
|
|
1408
|
-
}
|
|
1409
1406
|
[data-theme=dark] .dark\:c_blue\.400 {
|
|
1410
1407
|
color: var(--colors-blue-400);
|
|
1411
1408
|
}
|
package/dist/react/index.d.cts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import React__default, { ElementType, ComponentType, Component, JSX, ComponentPropsWithRef } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
+
import * as framer_motion from 'framer-motion';
|
|
5
|
+
import { Target, VariantLabels, TargetAndTransition, Variants, Transition } from 'framer-motion';
|
|
4
6
|
import { IconName, SizeProp } from '@fortawesome/fontawesome-svg-core';
|
|
5
7
|
import { IconDefinition } from '@fortawesome/free-solid-svg-icons';
|
|
6
8
|
import { Placement as Placement$1 } from '@floating-ui/react';
|
|
@@ -8,8 +10,6 @@ import { IconType } from 'react-icons/lib';
|
|
|
8
10
|
import * as Panda from '@pandacss/dev';
|
|
9
11
|
import * as react_loader_spinner from 'react-loader-spinner';
|
|
10
12
|
import { BeatLoader } from 'react-spinners';
|
|
11
|
-
import * as framer_motion from 'framer-motion';
|
|
12
|
-
import { Transition } from 'framer-motion';
|
|
13
13
|
|
|
14
14
|
/* eslint-disable */
|
|
15
15
|
interface ConditionOptions {
|
|
@@ -20485,6 +20485,11 @@ declare const loadingIconsMap: {
|
|
|
20485
20485
|
readonly oval: React.FunctionComponent<react_loader_spinner.OvalProps>;
|
|
20486
20486
|
};
|
|
20487
20487
|
|
|
20488
|
+
/**
|
|
20489
|
+
* Export file types for consumers
|
|
20490
|
+
* Import these in your project if you need ImageFile, AudioFile, VideoFile types
|
|
20491
|
+
*/
|
|
20492
|
+
|
|
20488
20493
|
interface AudioMetadataSource {
|
|
20489
20494
|
format: {
|
|
20490
20495
|
container?: string;
|
|
@@ -20562,18 +20567,18 @@ type LoadingProps = {
|
|
|
20562
20567
|
isLoading?: boolean;
|
|
20563
20568
|
};
|
|
20564
20569
|
type BlockMotionProps = {
|
|
20565
|
-
initial?:
|
|
20566
|
-
animate?:
|
|
20567
|
-
exit?:
|
|
20568
|
-
variants?:
|
|
20569
|
-
whileHover?:
|
|
20570
|
-
whileTap?:
|
|
20571
|
-
whileFocus?:
|
|
20572
|
-
layout?:
|
|
20573
|
-
_motion?:
|
|
20570
|
+
initial?: Target | VariantLabels | boolean;
|
|
20571
|
+
animate?: TargetAndTransition | VariantLabels | boolean;
|
|
20572
|
+
exit?: TargetAndTransition | VariantLabels;
|
|
20573
|
+
variants?: Variants;
|
|
20574
|
+
whileHover?: TargetAndTransition | VariantLabels;
|
|
20575
|
+
whileTap?: TargetAndTransition | VariantLabels;
|
|
20576
|
+
whileFocus?: TargetAndTransition | VariantLabels;
|
|
20577
|
+
layout?: boolean | "position" | "size" | "preserve-aspect";
|
|
20578
|
+
_motion?: Transition;
|
|
20574
20579
|
};
|
|
20575
20580
|
interface SharedBlockProps extends JsxStyleProps, BlockMotionProps, IconProps {
|
|
20576
|
-
tooltip?:
|
|
20581
|
+
tooltip?: React.ReactNode | string;
|
|
20577
20582
|
portalContainer?: Element | DocumentFragment;
|
|
20578
20583
|
filepicker?: boolean;
|
|
20579
20584
|
portal?: boolean;
|
package/dist/react/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import React__default, { ElementType, ComponentType, Component, JSX, ComponentPropsWithRef } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
+
import * as framer_motion from 'framer-motion';
|
|
5
|
+
import { Target, VariantLabels, TargetAndTransition, Variants, Transition } from 'framer-motion';
|
|
4
6
|
import { IconName, SizeProp } from '@fortawesome/fontawesome-svg-core';
|
|
5
7
|
import { IconDefinition } from '@fortawesome/free-solid-svg-icons';
|
|
6
8
|
import { Placement as Placement$1 } from '@floating-ui/react';
|
|
@@ -8,8 +10,6 @@ import { IconType } from 'react-icons/lib';
|
|
|
8
10
|
import * as Panda from '@pandacss/dev';
|
|
9
11
|
import * as react_loader_spinner from 'react-loader-spinner';
|
|
10
12
|
import { BeatLoader } from 'react-spinners';
|
|
11
|
-
import * as framer_motion from 'framer-motion';
|
|
12
|
-
import { Transition } from 'framer-motion';
|
|
13
13
|
|
|
14
14
|
/* eslint-disable */
|
|
15
15
|
interface ConditionOptions {
|
|
@@ -20485,6 +20485,11 @@ declare const loadingIconsMap: {
|
|
|
20485
20485
|
readonly oval: React.FunctionComponent<react_loader_spinner.OvalProps>;
|
|
20486
20486
|
};
|
|
20487
20487
|
|
|
20488
|
+
/**
|
|
20489
|
+
* Export file types for consumers
|
|
20490
|
+
* Import these in your project if you need ImageFile, AudioFile, VideoFile types
|
|
20491
|
+
*/
|
|
20492
|
+
|
|
20488
20493
|
interface AudioMetadataSource {
|
|
20489
20494
|
format: {
|
|
20490
20495
|
container?: string;
|
|
@@ -20562,18 +20567,18 @@ type LoadingProps = {
|
|
|
20562
20567
|
isLoading?: boolean;
|
|
20563
20568
|
};
|
|
20564
20569
|
type BlockMotionProps = {
|
|
20565
|
-
initial?:
|
|
20566
|
-
animate?:
|
|
20567
|
-
exit?:
|
|
20568
|
-
variants?:
|
|
20569
|
-
whileHover?:
|
|
20570
|
-
whileTap?:
|
|
20571
|
-
whileFocus?:
|
|
20572
|
-
layout?:
|
|
20573
|
-
_motion?:
|
|
20570
|
+
initial?: Target | VariantLabels | boolean;
|
|
20571
|
+
animate?: TargetAndTransition | VariantLabels | boolean;
|
|
20572
|
+
exit?: TargetAndTransition | VariantLabels;
|
|
20573
|
+
variants?: Variants;
|
|
20574
|
+
whileHover?: TargetAndTransition | VariantLabels;
|
|
20575
|
+
whileTap?: TargetAndTransition | VariantLabels;
|
|
20576
|
+
whileFocus?: TargetAndTransition | VariantLabels;
|
|
20577
|
+
layout?: boolean | "position" | "size" | "preserve-aspect";
|
|
20578
|
+
_motion?: Transition;
|
|
20574
20579
|
};
|
|
20575
20580
|
interface SharedBlockProps extends JsxStyleProps, BlockMotionProps, IconProps {
|
|
20576
|
-
tooltip?:
|
|
20581
|
+
tooltip?: React.ReactNode | string;
|
|
20577
20582
|
portalContainer?: Element | DocumentFragment;
|
|
20578
20583
|
filepicker?: boolean;
|
|
20579
20584
|
portal?: boolean;
|