vinola-cg-uikit 0.1.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.
Files changed (36) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +75 -0
  3. package/dist/App.d.ts +2 -0
  4. package/dist/components/Accordion/Accordion.d.ts +3 -0
  5. package/dist/components/Accordion/Accordion.types.d.ts +15 -0
  6. package/dist/components/Accordion/index.d.ts +2 -0
  7. package/dist/components/Badge/Badge.d.ts +3 -0
  8. package/dist/components/Badge/Badge.types.d.ts +27 -0
  9. package/dist/components/Badge/index.d.ts +2 -0
  10. package/dist/components/Button/Button.d.ts +3 -0
  11. package/dist/components/Button/Button.types.d.ts +7 -0
  12. package/dist/components/Button/index.d.ts +2 -0
  13. package/dist/components/Card/Card.d.ts +3 -0
  14. package/dist/components/Card/Card.types.d.ts +6 -0
  15. package/dist/components/Card/index.d.ts +2 -0
  16. package/dist/components/Input/Input.d.ts +3 -0
  17. package/dist/components/Input/Input.types.d.ts +10 -0
  18. package/dist/components/Input/index.d.ts +2 -0
  19. package/dist/components/Tabs/Tabs.d.ts +3 -0
  20. package/dist/components/Tabs/Tabs.types.d.ts +14 -0
  21. package/dist/components/Tabs/index.d.ts +2 -0
  22. package/dist/components/index.d.ts +6 -0
  23. package/dist/favicon.svg +1 -0
  24. package/dist/foundations/colors.d.ts +306 -0
  25. package/dist/foundations/index.d.ts +4 -0
  26. package/dist/foundations/radius.d.ts +15 -0
  27. package/dist/foundations/shadow.d.ts +1 -0
  28. package/dist/foundations/spacing.d.ts +47 -0
  29. package/dist/foundations/typography.d.ts +264 -0
  30. package/dist/icons.svg +24 -0
  31. package/dist/index.cjs +1 -0
  32. package/dist/index.d.ts +2 -0
  33. package/dist/index.js +875 -0
  34. package/dist/main.d.ts +0 -0
  35. package/dist/vinola-cg-uikit.css +2 -0
  36. package/package.json +65 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Vinola Pinto
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,75 @@
1
+ # React + TypeScript + Vite
2
+
3
+ This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
+
5
+ Currently, two official plugins are available:
6
+
7
+ - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs)
8
+ - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/)
9
+
10
+ ## React Compiler
11
+
12
+ The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
13
+
14
+ ## Expanding the ESLint configuration
15
+
16
+ If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
17
+
18
+ ```js
19
+ export default defineConfig([
20
+ globalIgnores(['dist']),
21
+ {
22
+ files: ['**/*.{ts,tsx}'],
23
+ extends: [
24
+ // Other configs...
25
+
26
+ // Remove tseslint.configs.recommended and replace with this
27
+ tseslint.configs.recommendedTypeChecked,
28
+ // Alternatively, use this for stricter rules
29
+ tseslint.configs.strictTypeChecked,
30
+ // Optionally, add this for stylistic rules
31
+ tseslint.configs.stylisticTypeChecked,
32
+
33
+ // Other configs...
34
+ ],
35
+ languageOptions: {
36
+ parserOptions: {
37
+ project: ['./tsconfig.node.json', './tsconfig.app.json'],
38
+ tsconfigRootDir: import.meta.dirname,
39
+ },
40
+ // other options...
41
+ },
42
+ },
43
+ ])
44
+
45
+ ```
46
+
47
+ You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
48
+
49
+ ```js
50
+ // eslint.config.js
51
+ import reactX from 'eslint-plugin-react-x'
52
+ import reactDom from 'eslint-plugin-react-dom'
53
+
54
+ export default defineConfig([
55
+ globalIgnores(['dist']),
56
+ {
57
+ files: ['**/*.{ts,tsx}'],
58
+ extends: [
59
+ // Other configs...
60
+ // Enable lint rules for React
61
+ reactX.configs['recommended-typescript'],
62
+ // Enable lint rules for React DOM
63
+ reactDom.configs.recommended,
64
+ ],
65
+ languageOptions: {
66
+ parserOptions: {
67
+ project: ['./tsconfig.node.json', './tsconfig.app.json'],
68
+ tsconfigRootDir: import.meta.dirname,
69
+ },
70
+ // other options...
71
+ },
72
+ },
73
+ ])
74
+
75
+ ```
package/dist/App.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ declare function App(): import("react").JSX.Element;
2
+ export default App;
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import { AccordionProps } from './Accordion.types';
3
+ export declare const Accordion: React.ForwardRefExoticComponent<AccordionProps & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,15 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ export interface AccordionItem {
3
+ id: string;
4
+ title: string;
5
+ content: ReactNode;
6
+ disabled?: boolean;
7
+ }
8
+ export interface AccordionProps extends HTMLAttributes<HTMLDivElement> {
9
+ items: AccordionItem[];
10
+ expandedItemIds?: string[];
11
+ onExpandedChange?: (expandedIds: string[]) => void;
12
+ allowMultiple?: boolean;
13
+ variant?: "primary" | "secondary" | "outline" | "ghost" | "danger";
14
+ size?: "sm" | "md" | "lg";
15
+ }
@@ -0,0 +1,2 @@
1
+ export { Accordion } from './Accordion';
2
+ export type { AccordionProps, AccordionItem } from './Accordion.types';
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import { BadgeProps } from './Badge.types';
3
+ export declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLSpanElement>>;
@@ -0,0 +1,27 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ export type BadgeVariant = "filled" | "subtle";
3
+ export type BadgeStatus = "success" | "error" | "warning" | "info" | "neutral";
4
+ export type BadgeSize = "sm" | "lg";
5
+ export interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
6
+ /**
7
+ * Determines if this is a Notification badge.
8
+ * If true, it renders as a circular indicator or count bubble (ignores standard layout).
9
+ */
10
+ isNotification?: boolean;
11
+ /**
12
+ * For standard badges.
13
+ */
14
+ variant?: BadgeVariant;
15
+ status?: BadgeStatus;
16
+ size?: BadgeSize;
17
+ /** Shows a status dot (defaults to true for standard badges). */
18
+ showDot?: boolean;
19
+ /** Custom icon node that replaces the dot. */
20
+ icon?: ReactNode;
21
+ /**
22
+ * For notification badges: the number to display.
23
+ * If undefined, renders as a simple active indicator dot.
24
+ */
25
+ count?: number;
26
+ children?: ReactNode;
27
+ }
@@ -0,0 +1,2 @@
1
+ export { Badge } from './Badge';
2
+ export type { BadgeProps } from './Badge.types';
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import { ButtonProps } from './Button.types';
3
+ export declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
@@ -0,0 +1,7 @@
1
+ import { ButtonHTMLAttributes, ReactNode } from 'react';
2
+ export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
3
+ variant?: "filled" | "outlined" | "neutral" | "text" | "link";
4
+ size?: "sm" | "md" | "lg";
5
+ fullWidth?: boolean;
6
+ children?: ReactNode;
7
+ }
@@ -0,0 +1,2 @@
1
+ export { Button } from './Button';
2
+ export type { ButtonProps } from './Button.types';
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import { CardProps } from './Card.types';
3
+ export declare const Card: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,6 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ export interface CardProps extends HTMLAttributes<HTMLDivElement> {
3
+ variant?: "primary" | "secondary" | "outline" | "ghost" | "danger";
4
+ size?: "sm" | "md" | "lg";
5
+ children?: ReactNode;
6
+ }
@@ -0,0 +1,2 @@
1
+ export { Card } from './Card';
2
+ export type { CardProps } from './Card.types';
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import { InputProps } from './Input.types';
3
+ export declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
@@ -0,0 +1,10 @@
1
+ import { InputHTMLAttributes, ReactNode } from 'react';
2
+ export interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size"> {
3
+ label?: string;
4
+ supportingText?: string;
5
+ errorText?: string;
6
+ status?: "default" | "error";
7
+ size?: "sm" | "lg";
8
+ leadingIcon?: ReactNode;
9
+ trailingIcon?: ReactNode;
10
+ }
@@ -0,0 +1,2 @@
1
+ export { Input } from './Input';
2
+ export type { InputProps } from './Input.types';
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ import { TabsProps } from './Tabs.types';
3
+ export declare const Tabs: React.ForwardRefExoticComponent<TabsProps & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,14 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ export interface TabItem {
3
+ id: string;
4
+ label: string;
5
+ content: ReactNode;
6
+ disabled?: boolean;
7
+ icon?: ReactNode;
8
+ }
9
+ export interface TabsProps extends HTMLAttributes<HTMLDivElement> {
10
+ items: TabItem[];
11
+ activeTabId?: string;
12
+ onTabChange?: (tabId: string) => void;
13
+ variant?: "default" | "border" | "pill" | "neutral";
14
+ }
@@ -0,0 +1,2 @@
1
+ export { Tabs } from './Tabs';
2
+ export type { TabsProps, TabItem } from './Tabs.types';
@@ -0,0 +1,6 @@
1
+ export * from './Button';
2
+ export * from './Input';
3
+ export * from './Card';
4
+ export * from './Badge';
5
+ export * from './Tabs';
6
+ export * from './Accordion';
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="46" fill="none" viewBox="0 0 48 46"><path fill="#863bff" d="M25.946 44.938c-.664.845-2.021.375-2.021-.698V33.937a2.26 2.26 0 0 0-2.262-2.262H10.287c-.92 0-1.456-1.04-.92-1.788l7.48-10.471c1.07-1.497 0-3.578-1.842-3.578H1.237c-.92 0-1.456-1.04-.92-1.788L10.013.474c.214-.297.556-.474.92-.474h28.894c.92 0 1.456 1.04.92 1.788l-7.48 10.471c-1.07 1.498 0 3.579 1.842 3.579h11.377c.943 0 1.473 1.088.89 1.83L25.947 44.94z" style="fill:#863bff;fill:color(display-p3 .5252 .23 1);fill-opacity:1"/><mask id="a" width="48" height="46" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="#000" d="M25.842 44.938c-.664.844-2.021.375-2.021-.698V33.937a2.26 2.26 0 0 0-2.262-2.262H10.183c-.92 0-1.456-1.04-.92-1.788l7.48-10.471c1.07-1.498 0-3.579-1.842-3.579H1.133c-.92 0-1.456-1.04-.92-1.787L9.91.473c.214-.297.556-.474.92-.474h28.894c.92 0 1.456 1.04.92 1.788l-7.48 10.471c-1.07 1.498 0 3.578 1.842 3.578h11.377c.943 0 1.473 1.088.89 1.832L25.843 44.94z" style="fill:#000;fill-opacity:1"/></mask><g mask="url(#a)"><g filter="url(#b)"><ellipse cx="5.508" cy="14.704" fill="#ede6ff" rx="5.508" ry="14.704" style="fill:#ede6ff;fill:color(display-p3 .9275 .9033 1);fill-opacity:1" transform="matrix(.00324 1 1 -.00324 -4.47 31.516)"/></g><g filter="url(#c)"><ellipse cx="10.399" cy="29.851" fill="#ede6ff" rx="10.399" ry="29.851" style="fill:#ede6ff;fill:color(display-p3 .9275 .9033 1);fill-opacity:1" transform="matrix(.00324 1 1 -.00324 -39.328 7.883)"/></g><g filter="url(#d)"><ellipse cx="5.508" cy="30.487" fill="#7e14ff" rx="5.508" ry="30.487" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(89.814 -25.913 -14.639)scale(1 -1)"/></g><g filter="url(#e)"><ellipse cx="5.508" cy="30.599" fill="#7e14ff" rx="5.508" ry="30.599" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(89.814 -32.644 -3.334)scale(1 -1)"/></g><g filter="url(#f)"><ellipse cx="5.508" cy="30.599" fill="#7e14ff" rx="5.508" ry="30.599" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="matrix(.00324 1 1 -.00324 -34.34 30.47)"/></g><g filter="url(#g)"><ellipse cx="14.072" cy="22.078" fill="#ede6ff" rx="14.072" ry="22.078" style="fill:#ede6ff;fill:color(display-p3 .9275 .9033 1);fill-opacity:1" transform="rotate(93.35 24.506 48.493)scale(-1 1)"/></g><g filter="url(#h)"><ellipse cx="3.47" cy="21.501" fill="#7e14ff" rx="3.47" ry="21.501" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(89.009 28.708 47.59)scale(-1 1)"/></g><g filter="url(#i)"><ellipse cx="3.47" cy="21.501" fill="#7e14ff" rx="3.47" ry="21.501" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(89.009 28.708 47.59)scale(-1 1)"/></g><g filter="url(#j)"><ellipse cx=".387" cy="8.972" fill="#7e14ff" rx="4.407" ry="29.108" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(39.51 .387 8.972)"/></g><g filter="url(#k)"><ellipse cx="47.523" cy="-6.092" fill="#7e14ff" rx="4.407" ry="29.108" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(37.892 47.523 -6.092)"/></g><g filter="url(#l)"><ellipse cx="41.412" cy="6.333" fill="#47bfff" rx="5.971" ry="9.665" style="fill:#47bfff;fill:color(display-p3 .2799 .748 1);fill-opacity:1" transform="rotate(37.892 41.412 6.333)"/></g><g filter="url(#m)"><ellipse cx="-1.879" cy="38.332" fill="#7e14ff" rx="4.407" ry="29.108" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(37.892 -1.88 38.332)"/></g><g filter="url(#n)"><ellipse cx="-1.879" cy="38.332" fill="#7e14ff" rx="4.407" ry="29.108" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(37.892 -1.88 38.332)"/></g><g filter="url(#o)"><ellipse cx="35.651" cy="29.907" fill="#7e14ff" rx="4.407" ry="29.108" style="fill:#7e14ff;fill:color(display-p3 .4922 .0767 1);fill-opacity:1" transform="rotate(37.892 35.651 29.907)"/></g><g filter="url(#p)"><ellipse cx="38.418" cy="32.4" fill="#47bfff" rx="5.971" ry="15.297" style="fill:#47bfff;fill:color(display-p3 .2799 .748 1);fill-opacity:1" transform="rotate(37.892 38.418 32.4)"/></g></g><defs><filter id="b" width="60.045" height="41.654" x="-19.77" y="16.149" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="7.659"/></filter><filter id="c" width="90.34" height="51.437" x="-54.613" y="-7.533" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="7.659"/></filter><filter id="d" width="79.355" height="29.4" x="-49.64" y="2.03" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="e" width="79.579" height="29.4" x="-45.045" y="20.029" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="f" width="79.579" height="29.4" x="-43.513" y="21.178" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="g" width="74.749" height="58.852" x="15.756" y="-17.901" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="7.659"/></filter><filter id="h" width="61.377" height="25.362" x="23.548" y="2.284" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="i" width="61.377" height="25.362" x="23.548" y="2.284" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="j" width="56.045" height="63.649" x="-27.636" y="-22.853" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="k" width="54.814" height="64.646" x="20.116" y="-38.415" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="l" width="33.541" height="35.313" x="24.641" y="-11.323" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="m" width="54.814" height="64.646" x="-29.286" y="6.009" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="n" width="54.814" height="64.646" x="-29.286" y="6.009" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="o" width="54.814" height="64.646" x="8.244" y="-2.416" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter><filter id="p" width="39.409" height="43.623" x="18.713" y="10.588" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17158" stdDeviation="4.596"/></filter></defs></svg>
@@ -0,0 +1,306 @@
1
+ /**
2
+ * This file is auto-generated from the design-tokens JSON files.
3
+ * Do not edit this file directly.
4
+ */
5
+ export declare const primitiveColors: {
6
+ readonly primaryColors: {
7
+ readonly "100": "#F5F5F6";
8
+ readonly "150": "#EFEFFF";
9
+ readonly "200": "#C9C9DD";
10
+ readonly "300": "#8080A4";
11
+ readonly "400": "#525283";
12
+ readonly "500": "#252562";
13
+ readonly "600": "#0D0D4A";
14
+ readonly "700": "#0A0A3B";
15
+ readonly "800": "#07072B";
16
+ readonly "900": "#05051C";
17
+ readonly "1000": "#02020C";
18
+ };
19
+ readonly secondaryColors: {
20
+ readonly "100": "#D9E7FF";
21
+ readonly "200": "#A9CAFF";
22
+ readonly "300": "#78ACFF";
23
+ readonly "400": "#488EFF";
24
+ readonly "500": "#1871FF";
25
+ readonly "600": "#0059E7";
26
+ readonly "700": "#0046B7";
27
+ readonly "800": "#003487";
28
+ readonly "900": "#002156";
29
+ readonly "1000": "#000F26";
30
+ };
31
+ readonly tertiaryColors: {
32
+ readonly "100": "#F3FAD9";
33
+ readonly "200": "#E4F4A9";
34
+ readonly "300": "#D5EF78";
35
+ readonly "400": "#C6E948";
36
+ readonly "500": "#B7E318";
37
+ readonly "600": "#9FCB00";
38
+ readonly "700": "#7EA100";
39
+ readonly "800": "#5D7600";
40
+ readonly "900": "#3C4C00";
41
+ readonly "1000": "#1A2200";
42
+ };
43
+ readonly neutralColors: {
44
+ readonly "100": "#FFFFFF";
45
+ readonly "200": "#F8F8F8";
46
+ readonly "250": "#EDEDED";
47
+ readonly "300": "#D1D5DB";
48
+ readonly "400": "#9CA3AF";
49
+ readonly "500": "#6B7280";
50
+ readonly "600": "#4B5563";
51
+ readonly "700": "#374151";
52
+ readonly "800": "#1F2937";
53
+ readonly "900": "#111827";
54
+ readonly "1000": "#030712";
55
+ };
56
+ readonly states: {
57
+ readonly darkOverlay: {
58
+ readonly opacity08: "#000000";
59
+ readonly opacity10: "#000000";
60
+ readonly opacity16: "#000000";
61
+ };
62
+ readonly lightOverlay: {
63
+ readonly opacity08: "#FFFFFF";
64
+ readonly opacity10: "#FFFFFF";
65
+ readonly opacity16: "#FFFFFF";
66
+ };
67
+ };
68
+ readonly statusColors: {
69
+ readonly error: {
70
+ readonly "100": "#FEF2F2";
71
+ readonly "200": "#FEE2E2";
72
+ readonly "300": "#FECACA";
73
+ readonly "400": "#FCA5A5";
74
+ readonly "500": "#F87171";
75
+ readonly "600": "#EF4444";
76
+ readonly "700": "#DC2626";
77
+ readonly "800": "#B91C1C";
78
+ readonly "900": "#991B1B";
79
+ readonly "1000": "#7F1D1D";
80
+ };
81
+ readonly success: {
82
+ readonly "100": "#F0FDF4";
83
+ readonly "200": "#DCFCE7";
84
+ readonly "300": "#BBF7D0";
85
+ readonly "400": "#86EFAC";
86
+ readonly "500": "#4ADE80";
87
+ readonly "600": "#22C55E";
88
+ readonly "700": "#16A34A";
89
+ readonly "800": "#15803D";
90
+ readonly "900": "#166534";
91
+ readonly "1000": "#14532D";
92
+ };
93
+ readonly warning: {
94
+ readonly "100": "#FFFBEB";
95
+ readonly "200": "#FEF3C7";
96
+ readonly "300": "#FDE68A";
97
+ readonly "400": "#FCD34D";
98
+ readonly "500": "#FBBF24";
99
+ readonly "600": "#F59E0B";
100
+ readonly "700": "#D97706";
101
+ readonly "800": "#B45309";
102
+ readonly "900": "#92400E";
103
+ readonly "1000": "#78350F";
104
+ };
105
+ readonly info: {
106
+ readonly "100": "#EFF6FF";
107
+ readonly "200": "#DBEAFE";
108
+ readonly "300": "#BFDBFE";
109
+ readonly "400": "#93C5FD";
110
+ readonly "500": "#60A5FA";
111
+ readonly "600": "#3B82F6";
112
+ readonly "700": "#2563EB";
113
+ readonly "800": "#1D4ED8";
114
+ readonly "900": "#1E40AF";
115
+ readonly "1000": "#1E3A8A";
116
+ };
117
+ };
118
+ };
119
+ export declare const semanticColors: {
120
+ readonly light: {
121
+ readonly brand: {
122
+ readonly primary: "#252562";
123
+ readonly onPrimary: "#F5F5F6";
124
+ readonly onPrimaryVariant2: "#EFEFFF";
125
+ readonly primaryVariant: "#C9C9DD";
126
+ readonly onPrimaryVariant: "#05051C";
127
+ readonly secondary: "#0059E7";
128
+ readonly onSecondary: "#D9E7FF";
129
+ readonly secondaryVariant: "#A9CAFF";
130
+ readonly onSecondaryVariant: "#002156";
131
+ readonly tertiary: "#B7E318";
132
+ readonly onTertiary: "#1A2200";
133
+ readonly tertiaryVariant: "#3C4C00";
134
+ readonly onTertiaryVariant: "#F3FAD9";
135
+ };
136
+ readonly background: {
137
+ readonly background: "#FFFFFF";
138
+ readonly surface: {
139
+ readonly default: "#FFFFFF";
140
+ readonly high: "#F8F8F8";
141
+ readonly highest: "#D1D5DB";
142
+ readonly low: "#374151";
143
+ readonly lowest: "#111827";
144
+ readonly variant1: "#F0FDF4";
145
+ readonly variant2: "#FEF2F2";
146
+ };
147
+ };
148
+ readonly textColor: {
149
+ readonly default: "#374151";
150
+ readonly high: "#1F2937";
151
+ readonly highest: "#1F2937";
152
+ readonly low: "#6B7280";
153
+ readonly lowest: "#FFFFFF";
154
+ readonly variant1: "#166534";
155
+ readonly variant2: "#991B1B";
156
+ readonly variant3: "#0046B7";
157
+ };
158
+ readonly borderColor: {
159
+ readonly border: "#000000";
160
+ readonly borderVariant: "#000000";
161
+ readonly borderVariant2: "#0046B7";
162
+ readonly borderVariant3: "#16A34A";
163
+ readonly borderVariant4: "#FCA5A5";
164
+ readonly borderVariant5: "#6B7280";
165
+ readonly borderVariant6: "#D1D5DB";
166
+ };
167
+ readonly iconColor: {
168
+ readonly default: "#6B7280";
169
+ readonly primary: "#252562";
170
+ readonly secondary: "#0046B7";
171
+ readonly light: "#FFFFFF";
172
+ readonly dark: "#000000";
173
+ readonly varient1: "#C9C9DD";
174
+ readonly variant2: "#166534";
175
+ readonly variant3: "#991B1B";
176
+ };
177
+ readonly disable: {
178
+ readonly disable: "#D1D5DB";
179
+ readonly onDisable: "#9CA3AF";
180
+ };
181
+ readonly status: {
182
+ readonly success: {
183
+ readonly success: "#16A34A";
184
+ readonly onSuccess: "#F0FDF4";
185
+ readonly successVariant: "#166534";
186
+ readonly onSuccessVariant: "#DCFCE7";
187
+ };
188
+ readonly info: {
189
+ readonly info: "#1D4ED8";
190
+ readonly onInfo: "#EFF6FF";
191
+ readonly infoVariant: "#1E3A8A";
192
+ readonly onInfoVariant: "#DBEAFE";
193
+ };
194
+ readonly warning: {
195
+ readonly warning: "#D97706";
196
+ readonly onWarning: "#FFFBEB";
197
+ readonly warningVariant: "#92400E";
198
+ readonly onWarningVariant: "#FEF3C7";
199
+ };
200
+ readonly error: {
201
+ readonly error: "#DC2626";
202
+ readonly onError: "#FEF2F2";
203
+ readonly errorVariant: "#991B1B";
204
+ readonly onErrorVariant: "#FEE2E2";
205
+ };
206
+ };
207
+ readonly fixed: {
208
+ readonly black: "#000000";
209
+ readonly white: "#FFFFFF";
210
+ };
211
+ };
212
+ readonly dark: {
213
+ readonly brand: {
214
+ readonly primary: "#8080A4";
215
+ readonly onPrimary: "#F5F5F6";
216
+ readonly onPrimaryVariant2: "#EFEFFF";
217
+ readonly primaryVariant: "#525283";
218
+ readonly onPrimaryVariant: "#05051C";
219
+ readonly secondary: "#0059E7";
220
+ readonly onSecondary: "#D9E7FF";
221
+ readonly secondaryVariant: "#A9CAFF";
222
+ readonly onSecondaryVariant: "#002156";
223
+ readonly tertiary: "#B7E318";
224
+ readonly onTertiary: "#F3FAD9";
225
+ readonly tertiaryVariant: "#C6E948";
226
+ readonly onTertiaryVariant: "#3C4C00";
227
+ };
228
+ readonly background: {
229
+ readonly background: "#111827";
230
+ readonly surface: {
231
+ readonly default: "#111827";
232
+ readonly high: "#374151";
233
+ readonly highest: "#1F2937";
234
+ readonly low: "#F8F8F8";
235
+ readonly lowest: "#FFFFFF";
236
+ readonly variant1: "#F0FDF4";
237
+ readonly variant2: "#FEF2F2";
238
+ };
239
+ };
240
+ readonly textColor: {
241
+ readonly default: "#D1D5DB";
242
+ readonly high: "#F8F8F8";
243
+ readonly highest: "#FFFFFF";
244
+ readonly low: "#4B5563";
245
+ readonly lowest: "#111827";
246
+ readonly variant1: "#166534";
247
+ readonly variant2: "#991B1B";
248
+ readonly variant3: "#991B1B";
249
+ };
250
+ readonly borderColor: {
251
+ readonly border: "#000000";
252
+ readonly borderVariant: "#000000";
253
+ readonly borderVariant2: "#000000";
254
+ readonly borderVariant3: "#16A34A";
255
+ readonly borderVariant4: "#FCA5A5";
256
+ readonly borderVariant5: "#000000";
257
+ readonly borderVariant6: "#000000";
258
+ };
259
+ readonly iconColor: {
260
+ readonly default: "#1F2937";
261
+ readonly primary: "#252562";
262
+ readonly secondary: "#0046B7";
263
+ readonly light: "#FFFFFF";
264
+ readonly dark: "#FFFFFF";
265
+ readonly varient1: "#FFFFFF";
266
+ readonly variant2: "#166534";
267
+ readonly variant3: "#991B1B";
268
+ };
269
+ readonly disable: {
270
+ readonly disable: "#F8F8F8";
271
+ readonly onDisable: "#9CA3AF";
272
+ };
273
+ readonly status: {
274
+ readonly success: {
275
+ readonly success: "#4ADE80";
276
+ readonly onSuccess: "#4ADE80";
277
+ readonly successVariant: "#BBF7D0";
278
+ readonly onSuccessVariant: "#BBF7D0";
279
+ };
280
+ readonly info: {
281
+ readonly info: "#1D4ED8";
282
+ readonly onInfo: "#DBEAFE";
283
+ readonly infoVariant: "#60A5FA";
284
+ readonly onInfoVariant: "#1E40AF";
285
+ };
286
+ readonly warning: {
287
+ readonly warning: "#FBBF24";
288
+ readonly onWarning: "#FBBF24";
289
+ readonly warningVariant: "#FDE68A";
290
+ readonly onWarningVariant: "#FDE68A";
291
+ };
292
+ readonly error: {
293
+ readonly error: "#F87171";
294
+ readonly onError: "#F87171";
295
+ readonly errorVariant: "#FEF2F2";
296
+ readonly onErrorVariant: "#07072B";
297
+ };
298
+ };
299
+ readonly fixed: {
300
+ readonly black: "#000000";
301
+ readonly white: "#FFFFFF";
302
+ };
303
+ };
304
+ };
305
+ export type PrimitiveColors = typeof primitiveColors;
306
+ export type SemanticColors = typeof semanticColors;
@@ -0,0 +1,4 @@
1
+ export * from './colors';
2
+ export * from './typography';
3
+ export * from './radius';
4
+ export * from './spacing';
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file is auto-generated from the design-tokens JSON files.
3
+ * Do not edit this file directly.
4
+ */
5
+ export declare const radius: {
6
+ readonly rdXxs: 0;
7
+ readonly rdXs: 2;
8
+ readonly rdSm: 4;
9
+ readonly rdMd: 6;
10
+ readonly rdLg: 8;
11
+ readonly rdXl: 10;
12
+ readonly rdXl2: 16;
13
+ readonly full: 1000;
14
+ };
15
+ export type Radius = typeof radius;
@@ -0,0 +1 @@
1
+ export {};