myshell-react-lib 0.1.4 → 0.1.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myshell-react-lib",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "type": "module",
5
5
  "description": "React component library with Tailwind CSS integration",
6
6
  "main": "./dist/index.cjs",
@@ -13,6 +13,8 @@ export const iconButtonVariants = cva(
13
13
  'text-Colors-Text-Static-White bg-Colors-Beta-White-30 border border-Colors-Beta-White-12 shadow-none hover:bg-Colors-Beta-White-40 focus:shadow-cc-Focus-Rings-Brand-default active:bg-Colors-Beta-White-50 disabled:bg-Colors-Beta-White-60 disabled:text-Colors-Beta-White-80',
14
14
  solid:
15
15
  'shadow-none text-Colors-Text-Subtle bg-cc-Button-Solid-bg-default border border-cc-Button-Solid-border-default hover:bg-cc-Button-Solid-bg-hover hover:border-cc-Button-Solid-border-alt active:bg-cc-Button-Solid-bg-active disabled:text-cc-Button-Solid-fg-alt',
16
+ static:
17
+ 'text-cc-Button-Static-fg-default border-cc-Button-Static-border-default bg-cc-Button-Static-bg-default hover:bg-cc-Button-Static-bg-hover active:bg-cc-Button-Static-bg-active disabled:bg-cc-Button-Static-bg-disabled disabled:text-cc-Button-Static-fg-alt',
16
18
  },
17
19
  color: {
18
20
  default: '',
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { cva } from 'class-variance-authority';
2
3
  import RCImage, { ImagePreviewType } from 'rc-image';
3
4
  import { ReactElement, SyntheticEvent } from 'react';
@@ -1,7 +1,7 @@
1
1
  import ArrowsUpDownIcon from '@heroicons/react/24/outline/esm/ArrowsUpDownIcon';
2
2
  import type { Meta, StoryObj } from '@storybook/react';
3
3
 
4
- import { IconButton } from '@/components/button';
4
+ import { IconButton } from '../components/button/icon-button';
5
5
  import React from 'react';
6
6
 
7
7
  // More on how to set up stories at: https://storybook.js.org/docs/writing-stories#default-export