@kalink-ui/seedly 0.4.0 → 0.5.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @kalink-ui/seedly
2
2
 
3
+ ## 0.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 73cbf48: Remove alias usage in source files
8
+
3
9
  ## 0.4.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kalink-ui/seedly",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "sideEffects": false,
5
5
  "license": "MIT",
6
6
  "exports": {
@@ -1,8 +1,8 @@
1
1
  import { createVar } from '@vanilla-extract/css';
2
2
  import { recipe, type RecipeVariants } from '@vanilla-extract/recipes';
3
3
 
4
- import { sys } from '@/styles/system-contract.css';
5
- import { mapContractVars } from '@/utils/map-contract-vars';
4
+ import { sys } from '../../styles/system-contract.css';
5
+ import { mapContractVars } from '../../utils/map-contract-vars';
6
6
 
7
7
  export const colorForeground = createVar();
8
8
  export const colorBackground = createVar();
@@ -1,9 +1,10 @@
1
1
  import { clsx } from 'clsx';
2
2
 
3
- import type { PolymorphicComponentProps } from '@/types/utils.types.js';
4
-
5
3
  import { boxRecipe, type BoxVariants } from './box.css';
6
4
 
5
+ import type { PolymorphicComponentProps } from '../../types/utils.types.js';
6
+
7
+
7
8
  type BoxProps<TUse extends React.ElementType> =
8
9
  PolymorphicComponentProps<TUse> & {
9
10
  /**
@@ -1,7 +1,7 @@
1
1
  import { createTheme } from '@vanilla-extract/css';
2
2
  import { recipe, type RecipeVariants } from '@vanilla-extract/recipes';
3
3
 
4
- import { sys } from '@/styles/system-contract.css';
4
+ import { sys } from '../../styles/system-contract.css';
5
5
 
6
6
  export const [buttonTheme, buttonsys] = createTheme({
7
7
  color: {
@@ -1,10 +1,12 @@
1
1
  import { clsx } from 'clsx';
2
2
 
3
- import { Box } from '@/components/box';
4
- import type { PolymorphicComponentProps } from '@/types/utils.types';
3
+ import { Box } from '../box';
5
4
 
6
5
  import { buttonRecipe, type ButtonVariants } from './button.css';
7
6
 
7
+ import type { PolymorphicComponentProps } from '../../types/utils.types';
8
+
9
+
8
10
  type ButtonProps<TUse extends React.ElementType> =
9
11
  PolymorphicComponentProps<TUse> & {
10
12
  /**
@@ -1,7 +1,7 @@
1
1
  import { recipe, type RecipeVariants } from '@vanilla-extract/recipes';
2
2
 
3
- import { sys } from '@/styles/system-contract.css';
4
- import { mapContractVars } from '@/utils/map-contract-vars';
3
+ import { sys } from '../../styles/system-contract.css';
4
+ import { mapContractVars } from '../../utils/map-contract-vars';
5
5
 
6
6
  export const centerRecipe = recipe({
7
7
  base: {
@@ -1,7 +1,7 @@
1
1
  import { clsx } from 'clsx';
2
2
  import { ElementType } from 'react';
3
3
 
4
- import { PolymorphicComponentProps } from '@/types/utils.types';
4
+ import { PolymorphicComponentProps } from '../../types/utils.types';
5
5
 
6
6
  import { centerRecipe, CenterVariants } from './center.css';
7
7
 
@@ -1,7 +1,7 @@
1
1
  import { recipe, type RecipeVariants } from '@vanilla-extract/recipes';
2
2
 
3
- import { sys } from '@/styles/system-contract.css';
4
- import { mapContractVars } from '@/utils/map-contract-vars';
3
+ import { sys } from '../../styles/system-contract.css';
4
+ import { mapContractVars } from '../../utils/map-contract-vars';
5
5
 
6
6
  export const clusterRecipe = recipe({
7
7
  base: {
@@ -1,7 +1,7 @@
1
1
  import { clsx } from 'clsx';
2
2
  import { ElementType } from 'react';
3
3
 
4
- import { PolymorphicComponentProps } from '@/types/utils.types';
4
+ import { PolymorphicComponentProps } from '../../types/utils.types';
5
5
 
6
6
  import { clusterRecipe, ClusterVariants } from './cluster.css';
7
7
 
@@ -1,8 +1,8 @@
1
1
  import { createVar, globalStyle } from '@vanilla-extract/css';
2
2
  import { recipe, type RecipeVariants } from '@vanilla-extract/recipes';
3
3
 
4
- import { sys } from '@/styles/system-contract.css';
5
- import { mapContractVars } from '@/utils/map-contract-vars';
4
+ import { sys } from '../../styles/system-contract.css';
5
+ import { mapContractVars } from '../../utils/map-contract-vars';
6
6
 
7
7
  const spaceVar = createVar();
8
8
  export const minSizeVar = createVar();
@@ -4,7 +4,7 @@ import { assignInlineVars } from '@vanilla-extract/dynamic';
4
4
  import { clsx } from 'clsx';
5
5
  import { ElementType } from 'react';
6
6
 
7
- import { PolymorphicComponentProps } from '@/types/utils.types';
7
+ import { PolymorphicComponentProps } from '../../types/utils.types';
8
8
 
9
9
  import { coverRecipe, CoverVariants, minSizeVar } from './cover.css';
10
10
 
@@ -1,7 +1,7 @@
1
1
  import { clsx } from 'clsx';
2
2
  import { ElementType } from 'react';
3
3
 
4
- import { PolymorphicComponentProps } from '@/types/utils.types';
4
+ import { PolymorphicComponentProps } from '../../types/utils.types';
5
5
 
6
6
  import { frameRecipe, FrameVariants } from './frame.css';
7
7
 
@@ -1,8 +1,8 @@
1
1
  import { createVar } from '@vanilla-extract/css';
2
2
  import { recipe, type RecipeVariants } from '@vanilla-extract/recipes';
3
3
 
4
- import { sys } from '@/styles/system-contract.css';
5
- import { mapContractVars } from '@/utils/map-contract-vars';
4
+ import { sys } from '../../styles/system-contract.css';
5
+ import { mapContractVars } from '../../utils/map-contract-vars';
6
6
 
7
7
  export const minSizeVar = createVar();
8
8
 
@@ -4,7 +4,7 @@ import { assignInlineVars } from '@vanilla-extract/dynamic';
4
4
  import { clsx } from 'clsx';
5
5
  import { ElementType } from 'react';
6
6
 
7
- import { PolymorphicComponentProps } from '@/types/utils.types';
7
+ import { PolymorphicComponentProps } from '../../types/utils.types';
8
8
 
9
9
  import { gridRecipe, GridVariants, minSizeVar } from './grid.css';
10
10
 
@@ -1,8 +1,8 @@
1
1
  import { createVar, globalStyle } from '@vanilla-extract/css';
2
2
  import { recipe, type RecipeVariants } from '@vanilla-extract/recipes';
3
3
 
4
- import { sys } from '@/styles/system-contract.css';
5
- import { mapContractVars } from '@/utils/map-contract-vars';
4
+ import { sys } from '../../styles/system-contract.css';
5
+ import { mapContractVars } from '../../utils/map-contract-vars';
6
6
 
7
7
  export const sideWidthVar = createVar();
8
8
  export const contentMinWidthVar = createVar();
@@ -4,7 +4,7 @@ import { assignInlineVars } from '@vanilla-extract/dynamic';
4
4
  import { clsx } from 'clsx';
5
5
  import { ElementType } from 'react';
6
6
 
7
- import { PolymorphicComponentProps } from '@/types/utils.types';
7
+ import { PolymorphicComponentProps } from '../../types/utils.types';
8
8
 
9
9
  import {
10
10
  contentMinWidthVar,
@@ -1,8 +1,8 @@
1
1
  import { createVar, globalStyle } from '@vanilla-extract/css';
2
2
  import { recipe, type RecipeVariants } from '@vanilla-extract/recipes';
3
3
 
4
- import { sys } from '@/styles/system-contract.css';
5
- import { mapContractVars } from '@/utils/map-contract-vars';
4
+ import { sys } from '../../styles/system-contract.css';
5
+ import { mapContractVars } from '../../utils/map-contract-vars';
6
6
 
7
7
  const spacing = createVar();
8
8
 
@@ -1,7 +1,7 @@
1
1
  import { clsx } from 'clsx';
2
2
  import { ElementType } from 'react';
3
3
 
4
- import { PolymorphicComponentProps } from '@/types/utils.types';
4
+ import { PolymorphicComponentProps } from '../../types/utils.types';
5
5
 
6
6
  import { stackRecipe, StackVariants } from './stack.css';
7
7
 
@@ -1,8 +1,8 @@
1
1
  import { createVar, globalStyle } from '@vanilla-extract/css';
2
2
  import { recipe, type RecipeVariants } from '@vanilla-extract/recipes';
3
3
 
4
- import { sys } from '@/styles/system-contract.css';
5
- import { mapContractVars } from '@/utils/map-contract-vars';
4
+ import { sys } from '../../styles/system-contract.css';
5
+ import { mapContractVars } from '../../utils/map-contract-vars';
6
6
 
7
7
  export const thresholdVar = createVar();
8
8
  export const limitVar = createVar();
@@ -4,7 +4,7 @@ import { assignInlineVars } from '@vanilla-extract/dynamic';
4
4
  import { clsx } from 'clsx';
5
5
  import { ElementType } from 'react';
6
6
 
7
- import { PolymorphicComponentProps } from '@/types/utils.types';
7
+ import { PolymorphicComponentProps } from '../../types/utils.types';
8
8
 
9
9
  import { switcherRecipe, SwitcherVariants, thresholdVar } from './switcher.css';
10
10
 
@@ -1,12 +1,12 @@
1
1
  import { clsx } from 'clsx';
2
2
 
3
- import type { PolymorphicComponentProps } from '@/types/utils.types';
4
3
  import {
5
4
  extractSprinklesProps,
6
5
  type GetSprinkles,
7
6
  type SprinklesFnBase,
8
- } from '@/utils/extract-sprinkles-props';
7
+ } from '../../utils/extract-sprinkles-props';
9
8
 
9
+ import type { PolymorphicComponentProps } from '../../types/utils.types';
10
10
  import type { ElementType } from 'react';
11
11
 
12
12
  /**