creactive 0.0.203 → 0.0.205
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/build/classic.js +6 -5
- package/build/components/atoms/icon/constants/color.d.ts +29 -0
- package/build/components/atoms/icon/constants/index.d.ts +1 -0
- package/build/components/atoms/icon/constants/size.d.ts +5 -0
- package/build/components/atoms/icon/hooks/index.d.ts +1 -0
- package/build/components/atoms/icon/hooks/use-color.d.ts +2 -0
- package/build/components/atoms/icon/hooks/use-size.d.ts +2 -0
- package/build/components/atoms/icon/icon.context.d.ts +3 -0
- package/build/components/atoms/icon/icon.d.ts +2 -0
- package/build/components/atoms/icon/icon.types.d.ts +17 -0
- package/build/components/atoms/icon/index.d.ts +4 -0
- package/build/components/atoms/index.d.ts +2 -0
- package/build/components/index.d.ts +4 -2
- package/build/components/molecules/index.d.ts +2 -0
- package/build/components/molecules/spinner/constants/color.d.ts +20 -0
- package/build/components/molecules/spinner/constants/index.d.ts +1 -0
- package/build/components/molecules/spinner/hooks/index.d.ts +1 -0
- package/build/components/molecules/spinner/hooks/use-color.d.ts +3 -0
- package/build/components/molecules/spinner/index.d.ts +2 -0
- package/build/components/molecules/spinner/spinner.d.ts +2 -0
- package/build/components/molecules/spinner/spinner.types.d.ts +12 -0
- package/build/constants/border.d.ts +14 -0
- package/build/constants/icon.d.ts +5 -0
- package/build/constants/index.d.ts +2 -1
- package/build/contexts/theme/constants/duration.d.ts +3 -0
- package/build/contexts/theme/constants/index.d.ts +1 -1
- package/build/contexts/theme/theme.types.d.ts +15 -0
- package/build/default.js +1 -1
- package/build/hooks/index.d.ts +1 -0
- package/build/hooks/use-icon.d.ts +2 -0
- package/build/index.d.ts +2 -2
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ export { Media, MediaContextProvider, useMediaContext } from './contexts/media';
|
|
|
2
2
|
export type { MediaComponent, MediaContextProviderComponent, MediaContextValue, MediaProps, } from './contexts/media';
|
|
3
3
|
export { ThemeContextProvider, useThemeContext, useThemeStyleSheet, } from './contexts/theme';
|
|
4
4
|
export type { ThemeContextProviderComponent, ThemeContextProviderProps, ThemeContextValue, } from './contexts/theme';
|
|
5
|
-
export { Gradient, Pressable, Text, Transition, usePressableContext, View, } from './components';
|
|
6
|
-
export type { GradientLinearComponent, GradientLinearProperties, GradientObject, GradientStopComponent, GradientStopProperties, PressableComponent, PressableContextValue, PressablePressEvent, PressableProperties, TextComponent, TextMeasureCallback, TextProperties, TextReference, TransitionComponent, TransitionProperties, ViewComponent, ViewLayoutEvent, ViewProperties, } from './components';
|
|
5
|
+
export { Gradient, Icon, Pressable, Spinner, Text, Transition, useIconContext, usePressableContext, View, } from './components';
|
|
6
|
+
export type { GradientLinearComponent, GradientLinearProperties, GradientObject, GradientStopComponent, GradientStopProperties, IconComponent, IconContextValue, IconProperties, PressableComponent, PressableContextValue, PressablePressEvent, PressableProperties, TextComponent, TextMeasureCallback, TextProperties, TextReference, TransitionComponent, TransitionProperties, SpinnerComponent, SpinnerProperties, ViewComponent, ViewLayoutEvent, ViewProperties, } from './components';
|
|
7
7
|
export { DIMENSION_MAX, DIMENSION_MIN, DIMENSION_NONE, Dimension, FRACTION_MAX, FRACTION_MIN, Fraction, } from './helpers';
|
|
8
8
|
export type { DimensionValue, FractionValue } from './helpers';
|
|
9
9
|
export type { Color, FontWeight } from './types';
|