thailife-react 0.0.17 → 0.0.19
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/README.md +93 -66
- package/dist/components/Button/Button.d.ts.map +1 -1
- package/dist/components/Checkbox/Checkbox.d.ts.map +1 -1
- package/dist/components/Input/Input.d.ts.map +1 -1
- package/dist/components/InputFile/InputFile.d.ts +7 -7
- package/dist/components/InputFile/InputFile.d.ts.map +1 -1
- package/dist/components/Radio/Radio.d.ts.map +1 -1
- package/dist/components/Select/Select.d.ts.map +1 -1
- package/dist/components/Textarea/Textarea.d.ts.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +208 -905
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +208 -906
- package/dist/index.js.map +1 -1
- package/dist/styles/index.css +601 -0
- package/dist/styles/index.d.ts +76 -3
- package/dist/styles/index.d.ts.map +1 -1
- package/package.json +5 -7
- package/dist/styles/ThemeProvider.d.ts +0 -7
- package/dist/styles/ThemeProvider.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -1,81 +1,122 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Thailand Life React UI Library
|
|
2
2
|
|
|
3
|
-
A modern
|
|
3
|
+
A modern UI library built with React and CSS.
|
|
4
4
|
|
|
5
|
-
## 🚀
|
|
6
|
-
|
|
7
|
-
- **Modern React**: Built with React 18+ and TypeScript
|
|
8
|
-
- **Tailwind CSS**: Utility-first CSS framework for rapid UI development
|
|
9
|
-
- **Accessible**: Components follow accessibility best practices
|
|
10
|
-
- **TypeScript**: Full TypeScript support with proper type definitions
|
|
11
|
-
- **Customizable**: Easy to customize and extend
|
|
12
|
-
|
|
13
|
-
## 📦 Installation
|
|
5
|
+
## 🚀 Installation
|
|
14
6
|
|
|
15
7
|
```bash
|
|
16
8
|
npm install thailife-react
|
|
17
|
-
# or
|
|
18
|
-
yarn add thailife-react
|
|
19
|
-
# or
|
|
20
|
-
pnpm add thailife-react
|
|
21
9
|
```
|
|
22
10
|
|
|
23
|
-
##
|
|
24
|
-
|
|
25
|
-
### Tailwind CSS
|
|
11
|
+
## 📦 Usage
|
|
26
12
|
|
|
27
|
-
|
|
13
|
+
### 1. Import CSS
|
|
28
14
|
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
|
|
15
|
+
```typescript
|
|
16
|
+
// Import the CSS file for styling
|
|
17
|
+
import "thailife-react/dist/styles/index.css";
|
|
32
18
|
```
|
|
33
19
|
|
|
34
|
-
|
|
20
|
+
### 2. Use Components
|
|
21
|
+
|
|
22
|
+
```tsx
|
|
23
|
+
import { Button, Input, Checkbox } from "thailife-react";
|
|
24
|
+
|
|
25
|
+
function App() {
|
|
26
|
+
return (
|
|
27
|
+
<div>
|
|
28
|
+
<Button variant="contained" color="primary">
|
|
29
|
+
Click me
|
|
30
|
+
</Button>
|
|
31
|
+
|
|
32
|
+
<Input label="Email" placeholder="Enter your email" />
|
|
35
33
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
};
|
|
34
|
+
<Checkbox label="I agree to terms" />
|
|
35
|
+
</div>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
41
38
|
```
|
|
42
39
|
|
|
43
|
-
|
|
40
|
+
### 3. Access CSS Classes
|
|
44
41
|
|
|
45
|
-
```
|
|
46
|
-
|
|
42
|
+
```tsx
|
|
43
|
+
import { cssClasses } from "thailife-react";
|
|
44
|
+
|
|
45
|
+
// Use predefined CSS classes
|
|
46
|
+
<div className={cssClasses.button}>Custom Button</div>
|
|
47
|
+
<div className={cssClasses.inputContainer}>Custom Input Container</div>
|
|
47
48
|
```
|
|
48
49
|
|
|
49
|
-
##
|
|
50
|
+
## 🎨 Available Components
|
|
50
51
|
|
|
51
|
-
|
|
52
|
+
- **Button** - Various button variants and sizes
|
|
53
|
+
- **Input** - Text input with validation states
|
|
54
|
+
- **Checkbox** - Checkbox with label and helper text
|
|
55
|
+
- **Radio** - Radio button with label and helper text
|
|
56
|
+
- **Select** - Dropdown select with options
|
|
57
|
+
- **Textarea** - Multi-line text input
|
|
58
|
+
- **InputFile** - File upload component
|
|
52
59
|
|
|
53
|
-
|
|
54
|
-
import { Button } from "thailife-react";
|
|
60
|
+
## 🎯 CSS Architecture
|
|
55
61
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
+
The library uses:
|
|
63
|
+
|
|
64
|
+
- **CSS Variables** for theming
|
|
65
|
+
- **BEM Methodology** for naming conventions
|
|
66
|
+
- **Component-based** CSS structure
|
|
67
|
+
- **Utility classes** for common patterns
|
|
68
|
+
|
|
69
|
+
## 🔧 Customization
|
|
70
|
+
|
|
71
|
+
### Override CSS Variables
|
|
72
|
+
|
|
73
|
+
```css
|
|
74
|
+
:root {
|
|
75
|
+
--color-primary: #your-custom-color;
|
|
76
|
+
--spacing-4: 1.5rem;
|
|
77
|
+
--font-size-base: 1.1rem;
|
|
62
78
|
}
|
|
63
79
|
```
|
|
64
80
|
|
|
65
|
-
###
|
|
81
|
+
### Custom Component Styles
|
|
66
82
|
|
|
67
|
-
```
|
|
68
|
-
|
|
83
|
+
```css
|
|
84
|
+
/* Override button styles */
|
|
85
|
+
.btn {
|
|
86
|
+
border-radius: 8px;
|
|
87
|
+
font-weight: 600;
|
|
88
|
+
}
|
|
69
89
|
|
|
70
|
-
|
|
71
|
-
|
|
90
|
+
/* Add custom variants */
|
|
91
|
+
.btn--custom {
|
|
92
|
+
background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
|
|
93
|
+
color: white;
|
|
72
94
|
}
|
|
73
95
|
```
|
|
74
96
|
|
|
75
|
-
##
|
|
97
|
+
## 📁 Project Structure
|
|
76
98
|
|
|
77
|
-
|
|
78
|
-
|
|
99
|
+
```
|
|
100
|
+
src/
|
|
101
|
+
├── components/ # React components
|
|
102
|
+
│ ├── Button/
|
|
103
|
+
│ ├── Input/
|
|
104
|
+
│ ├── Checkbox/
|
|
105
|
+
│ ├── Radio/
|
|
106
|
+
│ ├── Select/
|
|
107
|
+
│ ├── Textarea/
|
|
108
|
+
│ └── InputFile/
|
|
109
|
+
├── styles/
|
|
110
|
+
│ ├── index.css # Main CSS file
|
|
111
|
+
│ └── index.ts # CSS classes export
|
|
112
|
+
└── index.ts # Main library export
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
## 🚨 Important Notes
|
|
116
|
+
|
|
117
|
+
1. **CSS Import Required** - You must import the CSS file for components to work
|
|
118
|
+
2. **Browser Support** - CSS variables require modern browsers (IE11+)
|
|
119
|
+
3. **No Runtime Dependencies** - Pure CSS, no JavaScript overhead
|
|
79
120
|
|
|
80
121
|
## 🔧 Development
|
|
81
122
|
|
|
@@ -83,27 +124,13 @@ function App() {
|
|
|
83
124
|
# Install dependencies
|
|
84
125
|
npm install
|
|
85
126
|
|
|
86
|
-
# Build
|
|
127
|
+
# Build library
|
|
87
128
|
npm run build
|
|
88
129
|
|
|
89
130
|
# Start Storybook
|
|
90
131
|
npm run storybook
|
|
91
|
-
|
|
92
|
-
# Run tests
|
|
93
|
-
npm test
|
|
94
|
-
|
|
95
|
-
# Lint code
|
|
96
|
-
npm run lint
|
|
97
132
|
```
|
|
98
133
|
|
|
99
|
-
##
|
|
100
|
-
|
|
101
|
-
MIT License - see [LICENSE](LICENSE) for details.
|
|
102
|
-
|
|
103
|
-
## 🤝 Contributing
|
|
104
|
-
|
|
105
|
-
Contributions are welcome! Please read our contributing guidelines before submitting a pull request.
|
|
106
|
-
|
|
107
|
-
## 📞 Support
|
|
134
|
+
## 📄 License
|
|
108
135
|
|
|
109
|
-
|
|
136
|
+
MIT License - see LICENSE file for details.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,WAAY,SAAQ,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC;IAChF,OAAO,CAAC,EAAE,WAAW,GAAG,UAAU,GAAG,MAAM,CAAC;IAC5C,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,oBAAoB;IACpB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC;CAChD;AAED,QAAA,MAAM,MAAM,uFAgBX,CAAC;AAIF,OAAO,EAAE,MAAM,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../src/components/Checkbox/Checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../src/components/Checkbox/Checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,aAAc,SAAQ,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvG,6BAA6B;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,6BAA6B;IAC7B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,2BAA2B;IAC3B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,kDAAkD;IAClD,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,0BAA0B;IAC1B,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,QAAA,MAAM,QAAQ,wFA4BZ,CAAC;AAIH,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/components/Input/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/components/Input/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,UAAW,SAAQ,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC3F,0BAA0B;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,6BAA6B;IAC7B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,wBAAwB;IACxB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,+CAA+C;IAC/C,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,QAAA,MAAM,KAAK,qFAmBT,CAAC;AAIH,OAAO,EAAE,KAAK,EAAE,CAAC"}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
export interface InputFileProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "type" | "size"> {
|
|
3
|
-
/** Label for the input */
|
|
3
|
+
/** Label for the file input */
|
|
4
4
|
label?: string;
|
|
5
5
|
/** Error message to display */
|
|
6
6
|
error?: string;
|
|
7
7
|
/** Helper text to display */
|
|
8
8
|
helperText?: string;
|
|
9
|
-
/** Size of the input */
|
|
9
|
+
/** Size of the file input */
|
|
10
10
|
size?: "sm" | "md" | "lg";
|
|
11
|
-
/** Whether the input should take full width */
|
|
11
|
+
/** Whether the file input should take full width */
|
|
12
12
|
fullWidth?: boolean;
|
|
13
|
-
/**
|
|
14
|
-
accept?: string;
|
|
15
|
-
/** Multiple file selection */
|
|
13
|
+
/** Whether to allow multiple file selection */
|
|
16
14
|
multiple?: boolean;
|
|
17
|
-
/**
|
|
15
|
+
/** Accepted file types */
|
|
16
|
+
accept?: string;
|
|
17
|
+
/** Button text to display */
|
|
18
18
|
buttonText?: string;
|
|
19
19
|
}
|
|
20
20
|
declare const InputFile: React.ForwardRefExoticComponent<InputFileProps & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InputFile.d.ts","sourceRoot":"","sources":["../../../src/components/InputFile/InputFile.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"InputFile.d.ts","sourceRoot":"","sources":["../../../src/components/InputFile/InputFile.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,cAAe,SAAQ,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxG,+BAA+B;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,6BAA6B;IAC7B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,6BAA6B;IAC7B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,oDAAoD;IACpD,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,+CAA+C;IAC/C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,0BAA0B;IAC1B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,6BAA6B;IAC7B,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,QAAA,MAAM,SAAS,yFA2Bd,CAAC;AAIF,OAAO,EAAE,SAAS,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Radio.d.ts","sourceRoot":"","sources":["../../../src/components/Radio/Radio.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Radio.d.ts","sourceRoot":"","sources":["../../../src/components/Radio/Radio.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,UAAW,SAAQ,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACpG,iCAAiC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,6BAA6B;IAC7B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,+BAA+B;IAC/B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,+CAA+C;IAC/C,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,QAAA,MAAM,KAAK,qFAsBT,CAAC;AAIH,OAAO,EAAE,KAAK,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../src/components/Select/Select.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../src/components/Select/Select.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,WAAY,SAAQ,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC9F,2BAA2B;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,6BAA6B;IAC7B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,yBAAyB;IACzB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,gDAAgD;IAChD,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,6BAA6B;IAC7B,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,uBAAuB;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,QAAA,MAAM,MAAM,uFAqCV,CAAC;AAIH,OAAO,EAAE,MAAM,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Textarea.d.ts","sourceRoot":"","sources":["../../../src/components/Textarea/Textarea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Textarea.d.ts","sourceRoot":"","sources":["../../../src/components/Textarea/Textarea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,aAAc,SAAQ,IAAI,CAAC,KAAK,CAAC,sBAAsB,CAAC,mBAAmB,CAAC,EAAE,MAAM,CAAC;IACpG,6BAA6B;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,6BAA6B;IAC7B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,2BAA2B;IAC3B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;IAC1B,kDAAkD;IAClD,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,gCAAgC;IAChC,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,QAAA,MAAM,QAAQ,2FAmBZ,CAAC;AAIH,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -13,8 +13,8 @@ export { Radio } from "./components/Radio/Radio";
|
|
|
13
13
|
export type { RadioProps } from "./components/Radio/Radio";
|
|
14
14
|
export { Select } from "./components/Select/Select";
|
|
15
15
|
export type { SelectProps, SelectOption } from "./components/Select/Select";
|
|
16
|
-
export {
|
|
17
|
-
export type {
|
|
16
|
+
export { cssClasses } from "./styles";
|
|
17
|
+
export type { CSSClasses } from "./styles";
|
|
18
18
|
export { React };
|
|
19
19
|
export default React;
|
|
20
20
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAE9D,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAE3D,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAEpE,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,YAAY,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAEvE,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAEpE,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAE3D,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAkB5E,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAE9D,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAE3D,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAEpE,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,YAAY,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAEvE,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAEpE,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAE3D,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAkB5E,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,YAAY,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAG3C,OAAO,EAAE,KAAK,EAAE,CAAC;AAGjB,eAAe,KAAK,CAAC"}
|