@nurihaus/web-design-system 0.0.28 → 1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nurihaus/web-design-system",
3
- "version": "0.0.28",
3
+ "version": "1.0.0",
4
4
  "private": false,
5
5
  "description": "nurilounge-admin-design-system",
6
6
  "main": "dist/index.js",
@@ -40,15 +40,10 @@
40
40
  "webpack-dev-server": "^5.1.0"
41
41
  },
42
42
  "dependencies": {
43
- "@emotion/react": "^11.14.0",
44
- "@emotion/styled": "^11.14.0",
45
- "@mui/material": "^6.4.0",
46
43
  "css-loader": "^7.1.2",
47
- "mini-css-extract-plugin": "^2.9.2",
48
44
  "react": "^18.3.1",
49
45
  "react-dom": "^18.3.1",
50
46
  "react-router-dom": "^6.26.2",
51
- "style-loader": "^4.0.0",
52
- "styled-components": "^6.1.14"
47
+ "style-loader": "^4.0.0"
53
48
  }
54
49
  }
@@ -1,27 +0,0 @@
1
- import "./badge.css";
2
- import { colors } from "../../styles/token/colors";
3
- import "../../styles/token/color.css";
4
- import "../../styles/token/font.css";
5
- import { ReactNode } from "react";
6
- interface BaseBadgeProps extends React.HTMLAttributes<HTMLDivElement> {
7
- borderColor?: keyof typeof colors;
8
- textColor?: keyof typeof colors;
9
- backgroundColor?: keyof typeof colors;
10
- size?: "l" | "m" | "r" | "s" | "sm";
11
- asChild?: boolean;
12
- children?: ReactNode;
13
- }
14
- export declare const BaseBadge: (props: BaseBadgeProps) => import("react/jsx-runtime").JSX.Element;
15
- export declare const OptionBadge: (props: Omit<BaseBadgeProps, "asChild" | "children"> & {
16
- option: ReactNode;
17
- }) => import("react/jsx-runtime").JSX.Element;
18
- export declare const IconTextBadge: (props: Omit<BaseBadgeProps, "asChild" | "children"> & {
19
- icon: ReactNode;
20
- text: ReactNode;
21
- }) => import("react/jsx-runtime").JSX.Element;
22
- export declare const IconTextOptionBadge: (props: Omit<BaseBadgeProps, "asChild" | "children"> & {
23
- icon: ReactNode;
24
- text: ReactNode;
25
- option: ReactNode;
26
- }) => import("react/jsx-runtime").JSX.Element;
27
- export {};