@infonomic/uikit 3.1.0 → 3.3.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 (199) hide show
  1. package/README.md +172 -5
  2. package/dist/components/{input → forms}/@types/checkbox.d.ts.map +1 -1
  3. package/dist/components/{input → forms}/@types/input.d.ts.map +1 -1
  4. package/dist/components/forms/calendar.d.ts.map +1 -0
  5. package/dist/components/forms/calendar.module.js +45 -0
  6. package/dist/components/{calendar → forms}/calendar_module.css +44 -44
  7. package/dist/components/{input → forms}/checkbox-group.d.ts.map +1 -1
  8. package/dist/components/{input → forms}/checkbox.d.ts.map +1 -1
  9. package/dist/components/forms/checkbox.module.js +25 -0
  10. package/dist/components/{input → forms}/checkbox_module.css +29 -29
  11. package/dist/components/{input → forms}/error-text.d.ts.map +1 -1
  12. package/dist/components/{input → forms}/error-text.module.js +1 -1
  13. package/dist/components/{input → forms}/error-text_module.css +2 -2
  14. package/dist/components/{input → forms}/errors.d.ts.map +1 -1
  15. package/dist/components/{input → forms}/help-text.d.ts.map +1 -1
  16. package/dist/components/{input → forms}/help-text.module.js +1 -1
  17. package/dist/components/{input → forms}/help-text_module.css +1 -1
  18. package/dist/components/{input → forms}/input-adornment.d.ts.map +1 -1
  19. package/dist/components/{input → forms}/input-adornment.module.js +3 -3
  20. package/dist/components/{input → forms}/input-adornment_module.css +3 -3
  21. package/dist/components/{input → forms}/input.d.ts.map +1 -1
  22. package/dist/components/forms/input.module.js +27 -0
  23. package/dist/components/{input → forms}/input_module.css +35 -35
  24. package/dist/components/{input → forms}/label.d.ts.map +1 -1
  25. package/dist/components/{input → forms}/label.module.js +2 -2
  26. package/dist/components/{input → forms}/label_module.css +4 -4
  27. package/dist/components/{input → forms}/radio-group.d.ts.map +1 -1
  28. package/dist/components/forms/radio-group.module.js +20 -0
  29. package/dist/components/{input → forms}/radio-group_module.css +23 -23
  30. package/dist/components/{input → forms}/select.d.ts.map +1 -1
  31. package/dist/components/forms/select.module.js +13 -0
  32. package/dist/components/{input → forms}/select_module.css +8 -8
  33. package/dist/components/{input → forms}/text-area.d.ts.map +1 -1
  34. package/dist/components/{input → forms}/text-area.module.js +2 -2
  35. package/dist/components/{input → forms}/text-area_module.css +1 -1
  36. package/dist/components/{input → forms}/utils.d.ts.map +1 -1
  37. package/dist/icons/activity-icon.js +1 -1
  38. package/dist/icons/calendar-icon.js +1 -1
  39. package/dist/icons/check-icon.js +1 -1
  40. package/dist/icons/chevron-down-icon.js +1 -1
  41. package/dist/icons/chevron-left-double-icon.js +1 -1
  42. package/dist/icons/chevron-left-icon.js +1 -1
  43. package/dist/icons/chevron-right-double-icon.js +1 -1
  44. package/dist/icons/chevron-right-icon.js +1 -1
  45. package/dist/icons/chevrons-up-down.js +1 -1
  46. package/dist/icons/dashboard-icon.js +1 -1
  47. package/dist/icons/document-icon.js +1 -1
  48. package/dist/icons/download-icon.js +1 -1
  49. package/dist/icons/edit-icon.js +1 -1
  50. package/dist/icons/ellipsis-icon.js +1 -1
  51. package/dist/icons/email-icon.js +1 -1
  52. package/dist/icons/github-icon.js +1 -1
  53. package/dist/icons/globe-icon.js +1 -1
  54. package/dist/icons/gripper-vertical-icon.js +1 -1
  55. package/dist/icons/history-icon.js +1 -1
  56. package/dist/icons/home-icon.js +1 -1
  57. package/dist/icons/light-icon.js +1 -1
  58. package/dist/icons/moon-icon.js +1 -1
  59. package/dist/icons/plus-icon.js +1 -1
  60. package/dist/icons/refresh-icon.js +1 -1
  61. package/dist/icons/return-icon.js +1 -1
  62. package/dist/icons/roles-icon.js +1 -1
  63. package/dist/icons/search-icon.js +1 -1
  64. package/dist/icons/settings-gear-icon.js +1 -1
  65. package/dist/icons/settings-sliders-icon.js +1 -1
  66. package/dist/icons/sign-out-icon.js +1 -1
  67. package/dist/icons/stopwatch-icon.js +1 -1
  68. package/dist/icons/user-icon.js +1 -1
  69. package/dist/icons/users-icon.js +1 -1
  70. package/dist/icons/wallet-icon.js +1 -1
  71. package/dist/react.d.ts +13 -13
  72. package/dist/react.d.ts.map +1 -1
  73. package/dist/react.js +13 -13
  74. package/dist/widgets/datepicker/datepicker.d.ts +1 -1
  75. package/dist/widgets/datepicker/datepicker.d.ts.map +1 -1
  76. package/dist/widgets/datepicker/datepicker.js +3 -2
  77. package/dist/widgets/search/search.d.ts +1 -1
  78. package/dist/widgets/search/search.d.ts.map +1 -1
  79. package/dist/widgets/search/search.js +2 -1
  80. package/package.json +1 -1
  81. package/src/astro.d.ts +5 -5
  82. package/src/astro.js +5 -5
  83. package/src/components/{calendar → forms}/calendar.stories.tsx +1 -1
  84. package/src/components/{input → forms}/checkbox.stories.tsx +1 -1
  85. package/src/components/{input → forms}/input.stories.tsx +1 -1
  86. package/src/components/{input → forms}/radio-group.stories.tsx +2 -2
  87. package/src/components/{input → forms}/select.stories.tsx +1 -1
  88. package/src/components/{input → forms}/text-area.stories.tsx +1 -1
  89. package/src/components/{input → forms}/utils.ts +2 -2
  90. package/src/icons/activity-icon.tsx +1 -1
  91. package/src/icons/calendar-icon.tsx +1 -1
  92. package/src/icons/check-icon.tsx +1 -1
  93. package/src/icons/chevron-down-icon.tsx +1 -1
  94. package/src/icons/chevron-left-double-icon.tsx +1 -1
  95. package/src/icons/chevron-left-icon.tsx +1 -1
  96. package/src/icons/chevron-right-double-icon.tsx +1 -1
  97. package/src/icons/chevron-right-icon.tsx +1 -1
  98. package/src/icons/chevrons-up-down.tsx +1 -1
  99. package/src/icons/close-icon.astro +1 -1
  100. package/src/icons/dashboard-icon.tsx +1 -1
  101. package/src/icons/document-icon.tsx +1 -1
  102. package/src/icons/download-icon.tsx +1 -1
  103. package/src/icons/edit-icon.tsx +1 -1
  104. package/src/icons/ellipsis-icon.tsx +1 -1
  105. package/src/icons/email-icon.tsx +1 -1
  106. package/src/icons/github-icon.tsx +1 -1
  107. package/src/icons/globe-icon.tsx +1 -1
  108. package/src/icons/gripper-vertical-icon.tsx +1 -1
  109. package/src/icons/history-icon.tsx +1 -1
  110. package/src/icons/home-icon.tsx +1 -1
  111. package/src/icons/light-icon.astro +1 -1
  112. package/src/icons/light-icon.tsx +1 -1
  113. package/src/icons/moon-icon.astro +1 -1
  114. package/src/icons/moon-icon.tsx +1 -1
  115. package/src/icons/plus-icon.tsx +1 -1
  116. package/src/icons/refresh-icon.tsx +1 -1
  117. package/src/icons/return-icon.tsx +1 -1
  118. package/src/icons/roles-icon.tsx +1 -1
  119. package/src/icons/search-icon.astro +1 -1
  120. package/src/icons/search-icon.tsx +1 -1
  121. package/src/icons/settings-gear-icon.tsx +1 -1
  122. package/src/icons/settings-sliders-icon.tsx +1 -1
  123. package/src/icons/sign-out-icon.tsx +1 -1
  124. package/src/icons/stopwatch-icon.tsx +1 -1
  125. package/src/icons/user-icon.tsx +1 -1
  126. package/src/icons/users-icon.tsx +1 -1
  127. package/src/icons/wallet-icon.tsx +1 -1
  128. package/src/react.ts +13 -13
  129. package/src/widgets/datepicker/datepicker.tsx +4 -3
  130. package/src/widgets/search/search.tsx +3 -2
  131. package/dist/components/calendar/calendar.d.ts.map +0 -1
  132. package/dist/components/calendar/calendar.module.js +0 -45
  133. package/dist/components/input/checkbox.module.js +0 -25
  134. package/dist/components/input/index.d.ts +0 -9
  135. package/dist/components/input/index.d.ts.map +0 -1
  136. package/dist/components/input/input.module.js +0 -27
  137. package/dist/components/input/radio-group.module.js +0 -20
  138. package/dist/components/input/select.module.js +0 -13
  139. /package/dist/components/{input → forms}/@types/checkbox.d.ts +0 -0
  140. /package/dist/components/{input → forms}/@types/checkbox.js +0 -0
  141. /package/dist/components/{input → forms}/@types/input.d.ts +0 -0
  142. /package/dist/components/{input → forms}/@types/input.js +0 -0
  143. /package/dist/components/{calendar → forms}/calendar.d.ts +0 -0
  144. /package/dist/components/{calendar → forms}/calendar.js +0 -0
  145. /package/dist/components/{input → forms}/checkbox-group.d.ts +0 -0
  146. /package/dist/components/{input → forms}/checkbox-group.js +0 -0
  147. /package/dist/components/{input → forms}/checkbox.d.ts +0 -0
  148. /package/dist/components/{input → forms}/checkbox.js +0 -0
  149. /package/dist/components/{input → forms}/error-text.d.ts +0 -0
  150. /package/dist/components/{input → forms}/error-text.js +0 -0
  151. /package/dist/components/{input → forms}/errors.d.ts +0 -0
  152. /package/dist/components/{input → forms}/errors.js +0 -0
  153. /package/dist/components/{input → forms}/help-text.d.ts +0 -0
  154. /package/dist/components/{input → forms}/help-text.js +0 -0
  155. /package/dist/components/{input → forms}/index.js +0 -0
  156. /package/dist/components/{input → forms}/input-adornment.d.ts +0 -0
  157. /package/dist/components/{input → forms}/input-adornment.js +0 -0
  158. /package/dist/components/{input → forms}/input.d.ts +0 -0
  159. /package/dist/components/{input → forms}/input.js +0 -0
  160. /package/dist/components/{input → forms}/label.d.ts +0 -0
  161. /package/dist/components/{input → forms}/label.js +0 -0
  162. /package/dist/components/{input → forms}/radio-group.d.ts +0 -0
  163. /package/dist/components/{input → forms}/radio-group.js +0 -0
  164. /package/dist/components/{input → forms}/select.d.ts +0 -0
  165. /package/dist/components/{input → forms}/select.js +0 -0
  166. /package/dist/components/{input → forms}/text-area.d.ts +0 -0
  167. /package/dist/components/{input → forms}/text-area.js +0 -0
  168. /package/dist/components/{input → forms}/utils.d.ts +0 -0
  169. /package/dist/components/{input → forms}/utils.js +0 -0
  170. /package/src/components/{input → forms}/@types/checkbox.ts +0 -0
  171. /package/src/components/{input → forms}/@types/input.ts +0 -0
  172. /package/src/components/{calendar → forms}/calendar.module.css +0 -0
  173. /package/src/components/{calendar → forms}/calendar.tsx +0 -0
  174. /package/src/components/{input → forms}/checkbox-group.tsx +0 -0
  175. /package/src/components/{input → forms}/checkbox.module.css +0 -0
  176. /package/src/components/{input → forms}/checkbox.tsx +0 -0
  177. /package/src/components/{input → forms}/error-text.astro +0 -0
  178. /package/src/components/{input → forms}/error-text.module.css +0 -0
  179. /package/src/components/{input → forms}/error-text.tsx +0 -0
  180. /package/src/components/{input → forms}/errors.tsx +0 -0
  181. /package/src/components/{input → forms}/help-text.astro +0 -0
  182. /package/src/components/{input → forms}/help-text.module.css +0 -0
  183. /package/src/components/{input → forms}/help-text.tsx +0 -0
  184. /package/src/components/{input → forms}/index.tsx +0 -0
  185. /package/src/components/{input → forms}/input-adornment.astro +0 -0
  186. /package/src/components/{input → forms}/input-adornment.module.css +0 -0
  187. /package/src/components/{input → forms}/input-adornment.tsx +0 -0
  188. /package/src/components/{input → forms}/input.astro +0 -0
  189. /package/src/components/{input → forms}/input.module.css +0 -0
  190. /package/src/components/{input → forms}/input.tsx +0 -0
  191. /package/src/components/{input → forms}/label.astro +0 -0
  192. /package/src/components/{input → forms}/label.module.css +0 -0
  193. /package/src/components/{input → forms}/label.tsx +0 -0
  194. /package/src/components/{input → forms}/radio-group.module.css +0 -0
  195. /package/src/components/{input → forms}/radio-group.tsx +0 -0
  196. /package/src/components/{input → forms}/select.module.css +0 -0
  197. /package/src/components/{input → forms}/select.tsx +0 -0
  198. /package/src/components/{input → forms}/text-area.module.css +0 -0
  199. /package/src/components/{input → forms}/text-area.tsx +0 -0
package/README.md CHANGED
@@ -8,11 +8,17 @@ We created this project because while we appreciate Tailwind CSS for front-end d
8
8
 
9
9
  It just doesn't belong in UI kits and libraries.
10
10
 
11
- ## Design Goals
11
+ ## Rationale
12
+
13
+ In addition to our thoughts above, this kit is built around the philosophy of adopting or 'folding in' best-in-class components, like the ones in well-known 'à la carte' headless component libraries such as [Base UI](https://base-ui.com/), [Radix UI](https://www.radix-ui.com/), and [React Aria](https://react-spectrum.adobe.com/react-aria/index.html) as well as individually well-known components such as [React Day Picker](https://github.com/gpbl/react-day-picker) and more.
14
+
15
+ Having lived through a full generation of 'all-in-one' and difficult to override themed UI kits like Bootstrap and Material UI, the trend towards composable headless (unstyled) component libraries is a welcome one - and one that forms the basis of this kit.
12
16
 
13
- TODO: Rationale behind adopting and 'folding in' best-in-class components, like the ones in well-known 'à la carte' component libraries such as [Base UI](https://base-ui.com/), [Radix](https://www.radix-ui.com/), and others.
17
+ Many of the current components are built on Radix UI. The great thing about wrapping these components in a client-consumable interface and library, is that in theory at least, the consumer of our kit's components won't have to worry about implementation details, or migration from Radix UI to Base UI or other. The 'contract' and core styling semantics will never change.
18
+
19
+ ## Design Goals
14
20
 
15
- We built this with the following goals in mind:
21
+ We built this with the following design goals in mind:
16
22
 
17
23
  1. We'd like a structure and style system that will work with any component framework - [Astro](https://astro.build/), [React](https://react.dev/), [Vue.js](https://vuejs.org/), [Solid](https://www.solidjs.com/), [Svelte](https://svelte.dev/) etc.
18
24
  2. We'd like to be able to easily target various front-end meta frameworks, from [Astro](https://astro.build/), to [Next.js](https://nextjs.org/) to [React Router v7](https://reactrouter.com/) (formerly Remix) - and even plain old HTML/CSS.
@@ -69,11 +75,172 @@ And then in your application in a global.css or other root css file...
69
75
  @import './app.css';
70
76
  ```
71
77
 
72
- Followed by the below in any of your components or routes that want to import a component...
78
+ Followed by the below in any of your components or routes where you'd like to import a component...
73
79
 
74
80
  ```ts
75
81
  import { Button, Card, Container, Section } from '@infonomic/uikit/react
76
82
 
77
83
  ```
78
84
 
79
- At the moment docs are in the main repo and stories are available via Storybook.
85
+ ## Documentation
86
+
87
+ At the moment self-documented component examples are all based on [Storybook](https://storybook.js.org/). For now at least, in order to view our Storybook stories, you'll need to clone this repo, install all dependencies, then change into the packages/ui directory and start Storybook with `pnpm storybook` or `npm run storybook`.
88
+
89
+ ## Tailwind CSS Integration
90
+
91
+ Here's an example Tailwind CSS integration. Note that we have our own reset, and optional typography system and so the order of our imports are a little different from the usual 'Tailwind first' approach. The example below does NOT use the Tailwind CSS rest.
92
+
93
+ ```css
94
+ @layer theme, base, components, utilities;
95
+ @import "tailwindcss/theme.css" layer(theme);
96
+ /* @import "tailwindcss/preflight.css" layer(base); */
97
+ @import "tailwindcss/utilities.css" layer(utilities);
98
+
99
+ @custom-variant dark (&:is(.dark *));
100
+
101
+ /*
102
+ Set the utility class in Tailwind to match our own, as for now
103
+ at least, we add the 'container' class attribute to our container
104
+ component - which conflicts with Tailwind's own container utility.
105
+ */
106
+ @utility container {
107
+ width: 100%;
108
+ padding: 0 16px;
109
+ margin: 0 auto;
110
+ max-width: 960px;
111
+
112
+ /* Large */
113
+ @media (min-width: 1050px) {
114
+ max-width: 1024px;
115
+ }
116
+
117
+ /* X-Large */
118
+ @media (min-width: 1230px) {
119
+ max-width: 1190px;
120
+ }
121
+
122
+ /* 2X-Large */
123
+ @media (min-width: 1500px) {
124
+ max-width: 1400px;
125
+ }
126
+ }
127
+
128
+ @theme {
129
+ --breakpoint-*: initial;
130
+ --breakpoint-sm: 640px;
131
+ --breakpoint-md: 768px;
132
+ --breakpoint-lg: 1050px;
133
+ --breakpoint-xl: 1230px;
134
+ --breakpoint-2xl: 1500px;
135
+
136
+ --font-*: initial;
137
+ --font-sans:
138
+ 'Inter', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',
139
+ 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
140
+ --font-serif: Merriweather, Georgia, Cambria, 'Times New Roman', Times, serif;
141
+ --font-display:
142
+ Roboto, ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
143
+ Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
144
+ --font-mono:
145
+ 'Source Code Pro', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
146
+ 'Liberation Mono', 'Courier New', monospace;
147
+
148
+ --color-theme-25: var(--theme-25);
149
+ --color-theme-50: var(--theme-50);
150
+ --color-theme-100: var(--theme-100);
151
+ --color-theme-200: var(--theme-200);
152
+ --color-theme-300: var(--theme-300);
153
+ --color-theme-400: var(--theme-400);
154
+ --color-theme-500: var(--theme-500);
155
+ --color-theme-600: var(--theme-600);
156
+ --color-theme-700: var(--theme-700);
157
+ --color-theme-800: var(--theme-800);
158
+ --color-theme-900: var(--theme-900);
159
+ --color-theme-950: var(--theme-950);
160
+ --color-primary-25: var(--primary-25);
161
+ --color-primary-50: var(--primary-50);
162
+ --color-primary-100: var(--primary-100);
163
+ --color-primary-200: var(--primary-200);
164
+ --color-primary-300: var(--primary-300);
165
+ --color-primary-400: var(--primary-400);
166
+ --color-primary-500: var(--primary-500);
167
+ --color-primary-600: var(--primary-600);
168
+ --color-primary-700: var(--primary-700);
169
+ --color-primary-800: var(--primary-800);
170
+ --color-primary-900: var(--primary-900);
171
+ --color-primary-950: var(--primary-950);
172
+ --color-secondary-25: var(--secondary-25);
173
+ --color-secondary-50: var(--secondary-50);
174
+ --color-secondary-100: var(--secondary-100);
175
+ --color-secondary-200: var(--secondary-200);
176
+ --color-secondary-300: var(--secondary-300);
177
+ --color-secondary-400: var(--secondary-400);
178
+ --color-secondary-500: var(--secondary-500);
179
+ --color-secondary-600: var(--secondary-600);
180
+ --color-secondary-700: var(--secondary-700);
181
+ --color-secondary-800: var(--secondary-800);
182
+ --color-secondary-900: var(--secondary-900);
183
+ --color-secondary-950: var(--secondary-950);
184
+ --color-accent-25: var(--accent-25);
185
+ --color-accent-50: var(--accent-50);
186
+ --color-accent-100: var(--accent-100);
187
+ --color-accent-200: var(--accent-200);
188
+ --color-accent-300: var(--accent-300);
189
+ --color-accent-400: var(--accent-400);
190
+ --color-accent-500: var(--accent-500);
191
+ --color-accent-600: var(--accent-600);
192
+ --color-accent-700: var(--accent-700);
193
+ --color-accent-800: var(--accent-800);
194
+ --color-accent-900: var(--accent-900);
195
+ --color-accent-950: var(--accent-950);
196
+ --color-gray-25: var(--gray-25);
197
+ --color-gray-50: var(--gray-50);
198
+ --color-gray-100: var(--gray-100);
199
+ --color-gray-200: var(--gray-200);
200
+ --color-gray-300: var(--gray-300);
201
+ --color-gray-400: var(--gray-400);
202
+ --color-gray-500: var(--gray-500);
203
+ --color-gray-600: var(--gray-600);
204
+ --color-gray-700: var(--gray-700);
205
+ --color-gray-800: var(--gray-800);
206
+ --color-gray-900: var(--gray-900);
207
+ --color-gray-950: var(--gray-950);
208
+ --color-canvas-25: var(--canvas-25);
209
+ --color-canvas-50: var(--canvas-50);
210
+ --color-canvas-100: var(--canvas-100);
211
+ --color-canvas-200: var(--canvas-200);
212
+ --color-canvas-300: var(--canvas-300);
213
+ --color-canvas-400: var(--canvas-400);
214
+ --color-canvas-500: var(--canvas-500);
215
+ --color-canvas-600: var(--canvas-600);
216
+ --color-canvas-700: var(--canvas-700);
217
+ --color-canvas-800: var(--canvas-800);
218
+ --color-canvas-900: var(--canvas-900);
219
+ --color-canvas-950: var(--canvas-950);
220
+ --color-background: var(--background);
221
+ --color-foreground: var(--foreground);
222
+
223
+ --grid-template-columns-auto-fit-240: repeat(auto-fit, minmax(240px, 1fr));
224
+ --grid-template-columns-auto-fit-280: repeat(auto-fit, minmax(280px, 1fr));
225
+ --grid-template-columns-auto-fit-320: repeat(auto-fit, minmax(320px, 1fr));
226
+ --grid-template-columns-auto-fit-480: repeat(auto-fit, minmax(480px, 1fr));
227
+
228
+ --shadow-slider: 0 0 0 5px rgba(0, 0, 0, 0.3);
229
+ }
230
+ ```
231
+
232
+ ## Questions or Comments?
233
+
234
+ Feel free to get in touch by reaching out to us at https://infonomic.io, or by posting questions, issues, or PRs to our github repo at https://github.com/infonomic/uikit
235
+
236
+ ## License
237
+
238
+ Infonomic UI Kit is free software licensed under the MIT license.
239
+ For full details, please refer to the [LICENSE](LICENSE) and [COPYRIGHT](COPYRIGHT) files in this repository.
240
+
241
+ Copyright © 2025 Anthony Bouch and contributors.
242
+
243
+ ### Major Contributors
244
+
245
+ * Anthony Bouch https://www.linkedin.com/in/anthonybouch/ anthony@infonomic.io
246
+ * David Lipsky https://www.linkedin.com/in/david-lipsky-4391862a8/ david@infonomic.io
@@ -1 +1 @@
1
- {"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../../src/components/input/@types/checkbox.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAGtC,OAAO,KAAK,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,wBAAwB,CAAA;AAEzD;;GAEG;AAGH,eAAO,MAAM,OAAO,iCAAkC,CAAA;AACtD,MAAM,MAAM,OAAO,GAAG,CAAC,OAAO,OAAO,CAAC,CAAC,MAAM,CAAC,CAAA;AAE9C,eAAO,MAAM,IAAI,6BAA8B,CAAA;AAC/C,MAAM,MAAM,IAAI,GAAG,CAAC,OAAO,IAAI,CAAC,CAAC,MAAM,CAAC,CAAA;AAExC,MAAM,MAAM,MAAM,GAAG,SAAS,GAAG,CAAC,CAAA;AAClC,MAAM,MAAM,SAAS,GAAG,MAAM,CAAA;AAC9B,MAAM,MAAM,QAAQ,GAAG,SAAS,CAAA"}
1
+ {"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/@types/checkbox.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAGtC,OAAO,KAAK,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,wBAAwB,CAAA;AAEzD;;GAEG;AAGH,eAAO,MAAM,OAAO,iCAAkC,CAAA;AACtD,MAAM,MAAM,OAAO,GAAG,CAAC,OAAO,OAAO,CAAC,CAAC,MAAM,CAAC,CAAA;AAE9C,eAAO,MAAM,IAAI,6BAA8B,CAAA;AAC/C,MAAM,MAAM,IAAI,GAAG,CAAC,OAAO,IAAI,CAAC,CAAC,MAAM,CAAC,CAAA;AAExC,MAAM,MAAM,MAAM,GAAG,SAAS,GAAG,CAAC,CAAA;AAClC,MAAM,MAAM,SAAS,GAAG,MAAM,CAAA;AAC9B,MAAM,MAAM,QAAQ,GAAG,SAAS,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../../src/components/input/@types/input.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAGtC,OAAO,KAAK,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,wBAAwB,CAAA;AAEzD;;GAEG;AAGH,eAAO,MAAM,OAAO,+CAAgD,CAAA;AACpE,MAAM,MAAM,OAAO,GAAG,CAAC,OAAO,OAAO,CAAC,CAAC,MAAM,CAAC,CAAA;AAE9C,eAAO,MAAM,IAAI,6BAA8B,CAAA;AAC/C,MAAM,MAAM,IAAI,GAAG,CAAC,OAAO,IAAI,CAAC,CAAC,MAAM,CAAC,CAAA;AAExC,MAAM,MAAM,MAAM,GAAG,SAAS,GAAG,CAAC,CAAA;AAClC,MAAM,MAAM,SAAS,GAAG,MAAM,CAAA;AAC9B,MAAM,MAAM,QAAQ,GAAG,SAAS,CAAA"}
1
+ {"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/@types/input.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAGtC,OAAO,KAAK,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,wBAAwB,CAAA;AAEzD;;GAEG;AAGH,eAAO,MAAM,OAAO,+CAAgD,CAAA;AACpE,MAAM,MAAM,OAAO,GAAG,CAAC,OAAO,OAAO,CAAC,CAAC,MAAM,CAAC,CAAA;AAE9C,eAAO,MAAM,IAAI,6BAA8B,CAAA;AAC/C,MAAM,MAAM,IAAI,GAAG,CAAC,OAAO,IAAI,CAAC,CAAC,MAAM,CAAC,CAAA;AAExC,MAAM,MAAM,MAAM,GAAG,SAAS,GAAG,CAAC,CAAA;AAClC,MAAM,MAAM,SAAS,GAAG,MAAM,CAAA;AAC9B,MAAM,MAAM,QAAQ,GAAG,SAAS,CAAA"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"calendar.d.ts","sourceRoot":"","sources":["../../../src/components/forms/calendar.tsx"],"names":[],"mappings":"AAWA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAEL,KAAK,cAAc,EAEpB,MAAM,kBAAkB,CAAA;AAOzB,MAAM,MAAM,aAAa,GAAG,cAAc,GAAG;IAC3C,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,CAAA;IACrC,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAC3B,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAC7B,mBAAmB,CAAC,EAAE,MAAM,CAAA;IAC5B,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,sBAAsB,CAAC,EAAE,MAAM,CAAA;CAChC,CAAA;AAED,wBAAgB,QAAQ,CAAC,EACvB,GAAG,EACH,SAAS,EACT,UAAU,EACV,cAAc,EACd,eAAsB,EACtB,UAAU,EAAE,gBAAgB,EAC5B,GAAG,KAAK,EACT,EAAE,aAAa,qBAmHf;yBA3He,QAAQ"}
@@ -0,0 +1,45 @@
1
+ import "./calendar_module.css";
2
+ const calendar_module = {
3
+ "day-picker": "day-picker-y7Hl7p",
4
+ dayPicker: "day-picker-y7Hl7p",
5
+ months: "months-b87F7E",
6
+ "months-caption": "months-caption-kDTTdX",
7
+ monthsCaption: "months-caption-kDTTdX",
8
+ dropdowns: "dropdowns-erBLYh",
9
+ "select-trigger": "select-trigger-hOsFML",
10
+ selectTrigger: "select-trigger-hOsFML",
11
+ "select-content": "select-content-_eFzfR",
12
+ selectContent: "select-content-_eFzfR",
13
+ "select-item": "select-item-V5Rg6u",
14
+ selectItem: "select-item-V5Rg6u",
15
+ "select-chevrons": "select-chevrons-kPRdHE",
16
+ selectChevrons: "select-chevrons-kPRdHE",
17
+ "scroll-area": "scroll-area-epmyLI",
18
+ scrollArea: "scroll-area-epmyLI",
19
+ disabled: "disabled-xiZ9Hf",
20
+ hidden: "hidden-UklZZ2",
21
+ outside: "outside-V5MXWM",
22
+ footer: "footer-QtfvNg",
23
+ weekdays: "weekdays-qlRhV0",
24
+ weekday: "weekday-WkecO9",
25
+ "caption-label": "caption-label-s72ral",
26
+ captionLabel: "caption-label-s72ral",
27
+ "month-grid": "month-grid-o9jb0q",
28
+ monthGrid: "month-grid-o9jb0q",
29
+ week: "week-kpm7YL",
30
+ day: "day-iMPvhj",
31
+ today: "today-vDw_Vq",
32
+ "day-selected": "day-selected-zpU4nM",
33
+ daySelected: "day-selected-zpU4nM",
34
+ "day-button": "day-button-Fo6dMw",
35
+ dayButton: "day-button-Fo6dMw",
36
+ "button-range": "button-range-ut02cG",
37
+ buttonRange: "button-range-ut02cG",
38
+ "range-start": "range-start-UCMex_",
39
+ rangeStart: "range-start-UCMex_",
40
+ "range-end": "range-end-JI4MZO",
41
+ rangeEnd: "range-end-JI4MZO",
42
+ "range-middle": "range-middle-ZVXPRk",
43
+ rangeMiddle: "range-middle-ZVXPRk"
44
+ };
45
+ export { calendar_module as default };
@@ -1,18 +1,18 @@
1
1
  @layer infonomic-base, infonomic-utilities, infonomic-theme, infonomic-typography;
2
2
 
3
3
  @layer infonomic-components {
4
- .day-picker-HxQ06v {
4
+ .day-picker-y7Hl7p {
5
5
  padding: var(--spacing-3);
6
6
  }
7
7
 
8
- .months-J7TsUl {
8
+ .months-b87F7E {
9
9
  gap: var(--spacing-4);
10
10
  flex-direction: column;
11
11
  display: flex;
12
12
  position: relative;
13
13
  }
14
14
 
15
- .months-caption-PiBupQ {
15
+ .months-caption-kDTTdX {
16
16
  justify-content: center;
17
17
  align-items: center;
18
18
  height: 1.75rem;
@@ -20,7 +20,7 @@
20
20
  position: relative;
21
21
  }
22
22
 
23
- .dropdowns-VSCOqg {
23
+ .dropdowns-erBLYh {
24
24
  justify-content: center;
25
25
  align-items: center;
26
26
  gap: var(--spacing-2);
@@ -28,19 +28,19 @@
28
28
  display: flex;
29
29
  }
30
30
 
31
- .select-trigger-WeVDcK {
31
+ .select-trigger-hOsFML {
32
32
  width: 100%;
33
33
  height: 2.25rem;
34
34
  font-size: .875rem;
35
35
  }
36
36
 
37
- .select-content-aP7E2D {
37
+ .select-content-_eFzfR {
38
38
  z-index: 100;
39
39
  background-color: var(--background);
40
40
  color: var(--foreground);
41
41
  }
42
42
 
43
- .select-item-cZh04s {
43
+ .select-item-V5Rg6u {
44
44
  cursor: pointer;
45
45
  border: none;
46
46
  justify-content: center;
@@ -51,17 +51,17 @@
51
51
  display: flex;
52
52
  }
53
53
 
54
- .select-item-cZh04s:hover {
54
+ .select-item-V5Rg6u:hover {
55
55
  background-color: var(--gray-50);
56
56
  color: var(--foreground);
57
57
  }
58
58
 
59
- .select-chevrons-dzIT2u {
59
+ .select-chevrons-kPRdHE {
60
60
  stroke: var(--primary-400);
61
61
  opacity: .7;
62
62
  }
63
63
 
64
- .scroll-area-RHBUqm {
64
+ .scroll-area-epmyLI {
65
65
  border: 1px solid var(--border-color);
66
66
  background-color: var(--background);
67
67
  text-align: center;
@@ -69,43 +69,43 @@
69
69
  height: 240px;
70
70
  }
71
71
 
72
- .disabled-LuShHt {
72
+ .disabled-xiZ9Hf {
73
73
  color: var(--muted);
74
74
  opacity: .5;
75
75
  }
76
76
 
77
- .hidden-MqCEoh {
77
+ .hidden-UklZZ2 {
78
78
  visibility: hidden;
79
79
  flex: 1;
80
80
  }
81
81
 
82
- .outside-xAO7ei {
82
+ .outside-V5MXWM {
83
83
  color: var(--muted);
84
84
  opacity: .5;
85
85
  }
86
86
 
87
- .outside-xAO7ei[aria-selected="true"] {
87
+ .outside-V5MXWM[aria-selected="true"] {
88
88
  color: var(--muted);
89
89
  opacity: .3;
90
90
  }
91
91
 
92
- .footer-svWbOa {
92
+ .footer-QtfvNg {
93
93
  padding-top: var(--spacing-3);
94
94
  font-size: .875rem;
95
95
  }
96
96
 
97
- .weekdays-P7Wn2B {
97
+ .weekdays-qlRhV0 {
98
98
  display: flex;
99
99
  }
100
100
 
101
- .weekday-sPtrWT {
101
+ .weekday-WkecO9 {
102
102
  width: 2.25rem;
103
103
  color: var(--muted);
104
104
  font-size: .875rem;
105
105
  font-weight: normal;
106
106
  }
107
107
 
108
- .caption-label-inrEqz {
108
+ .caption-label-s72ral {
109
109
  text-overflow: ellipsis;
110
110
  white-space: nowrap;
111
111
  font-size: .875rem;
@@ -113,20 +113,20 @@
113
113
  overflow: hidden;
114
114
  }
115
115
 
116
- .month-grid-BQtPCl {
116
+ .month-grid-o9jb0q {
117
117
  margin-left: auto;
118
118
  margin-right: auto;
119
119
  margin-top: var(--spacing-4);
120
120
  }
121
121
 
122
- .week-y9eP5X {
122
+ .week-kpm7YL {
123
123
  margin-top: var(--spacing-2);
124
124
  align-items: flex-start;
125
125
  width: max-content;
126
126
  display: flex;
127
127
  }
128
128
 
129
- .day-r6Pemd {
129
+ .day-iMPvhj {
130
130
  flex: 1;
131
131
  justify-content: center;
132
132
  align-items: center;
@@ -137,21 +137,21 @@
137
137
  display: flex;
138
138
  }
139
139
 
140
- .day-r6Pemd > button {
140
+ .day-iMPvhj > button {
141
141
  color: var(--foreground);
142
142
  }
143
143
 
144
- .today-sC2iTu > button {
144
+ .today-vDw_Vq > button {
145
145
  border: solid 1px var(--primary-300);
146
146
  color: var(--foreground);
147
147
  }
148
148
 
149
- .day-r6Pemd > button:hover, .day-selected-tJv7Z9 > button {
149
+ .day-iMPvhj > button:hover, .day-selected-zpU4nM > button {
150
150
  background-color: var(--primary-400);
151
151
  color: #fff;
152
152
  }
153
153
 
154
- .day-button-UTNEY0 {
154
+ .day-button-Fo6dMw {
155
155
  border-radius: var(--border-radius-md);
156
156
  width: 2.25rem;
157
157
  height: 2.25rem;
@@ -160,95 +160,95 @@
160
160
  transition: none;
161
161
  }
162
162
 
163
- .day-button-UTNEY0[aria-selected="true"] {
163
+ .day-button-Fo6dMw[aria-selected="true"] {
164
164
  opacity: 1;
165
165
  }
166
166
 
167
- .button-range-m7XSpc {
167
+ .button-range-ut02cG {
168
168
  background-color: var(--gray-100);
169
169
  color: var(--foreground);
170
170
  }
171
171
 
172
- .button-range-m7XSpc > button {
172
+ .button-range-ut02cG > button {
173
173
  background-color: var(--primary-400);
174
174
  color: #fff;
175
175
  }
176
176
 
177
- .button-range-m7XSpc > button:hover {
177
+ .button-range-ut02cG > button:hover {
178
178
  background-color: var(--primary-400);
179
179
  color: var(--foreground);
180
180
  }
181
181
 
182
- .range-start-LrEVeH {
182
+ .range-start-UCMex_ {
183
183
  border-top-left-radius: var(--border-radius-md);
184
184
  border-bottom-left-radius: var(--border-radius-md);
185
185
  }
186
186
 
187
- .range-end-sbDF9w {
187
+ .range-end-JI4MZO {
188
188
  border-top-right-radius: var(--border-radius-md);
189
189
  border-bottom-right-radius: var(--border-radius-md);
190
190
  }
191
191
 
192
- .range-middle-Ptrd1e {
192
+ .range-middle-ZVXPRk {
193
193
  background-color: var(--gray-50);
194
194
  color: var(--foreground);
195
195
  }
196
196
 
197
- .range-middle-Ptrd1e > button, .range-middle-Ptrd1e > button:hover {
197
+ .range-middle-ZVXPRk > button, .range-middle-ZVXPRk > button:hover {
198
198
  color: var(--foreground);
199
199
  background-color: #0000;
200
200
  }
201
201
 
202
202
  @media (min-width: 640px) {
203
- .months-J7TsUl {
203
+ .months-b87F7E {
204
204
  flex-direction: row;
205
205
  }
206
206
  }
207
207
 
208
- .dark .select-content-aP7E2D, .dark .scroll-area-RHBUqm {
208
+ .dark .select-content-_eFzfR, .dark .scroll-area-epmyLI {
209
209
  background-color: var(--canvas-800);
210
210
  color: var(--foreground);
211
211
  }
212
212
 
213
- .dark .select-item-cZh04s:hover {
213
+ .dark .select-item-V5Rg6u:hover {
214
214
  background-color: var(--primary-400);
215
215
  color: var(--foreground);
216
216
  }
217
217
 
218
- .dark .select-chevrons-dzIT2u {
218
+ .dark .select-chevrons-kPRdHE {
219
219
  stroke: var(--primary-200);
220
220
  opacity: .7;
221
221
  }
222
222
 
223
- .dark .footer-svWbOa {
223
+ .dark .footer-QtfvNg {
224
224
  color: var(--muted);
225
225
  }
226
226
 
227
- .dark .day-r6Pemd > button {
227
+ .dark .day-iMPvhj > button {
228
228
  color: var(--foreground);
229
229
  }
230
230
 
231
- .dark .day-r6Pemd > button:hover, .dark .day-selected-tJv7Z9 > button {
231
+ .dark .day-iMPvhj > button:hover, .dark .day-selected-zpU4nM > button {
232
232
  background-color: var(--primary-400);
233
233
  color: var(--foreground);
234
234
  }
235
235
 
236
- .dark .today-sC2iTu > button {
236
+ .dark .today-vDw_Vq > button {
237
237
  border: solid 1px var(--primary-300);
238
238
  color: var(--foreground);
239
239
  }
240
240
 
241
- .dark .button-range-m7XSpc {
241
+ .dark .button-range-ut02cG {
242
242
  background-color: var(--canvas-700);
243
243
  color: var(--foreground);
244
244
  }
245
245
 
246
- .dark .button-range-m7XSpc > button, .dark .button-range-m7XSpc > button:hover {
246
+ .dark .button-range-ut02cG > button, .dark .button-range-ut02cG > button:hover {
247
247
  background-color: var(--primary-400);
248
248
  color: var(--foreground);
249
249
  }
250
250
 
251
- .dark .range-middle-Ptrd1e, .dark .range-middle-Ptrd1e > button {
251
+ .dark .range-middle-ZVXPRk, .dark .range-middle-ZVXPRk > button {
252
252
  background-color: var(--canvas-700);
253
253
  color: var(--foreground);
254
254
  }
@@ -1 +1 @@
1
- {"version":3,"file":"checkbox-group.d.ts","sourceRoot":"","sources":["../../../src/components/input/checkbox-group.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAK9B,MAAM,WAAW,kBAAkB;IACjC,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAA;IAC3C,aAAa,CAAC,EAAE,MAAM,EAAE,CAAA;IACxB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;CAC7C;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CA6DtD,CAAA"}
1
+ {"version":3,"file":"checkbox-group.d.ts","sourceRoot":"","sources":["../../../src/components/forms/checkbox-group.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAK9B,MAAM,WAAW,kBAAkB;IACjC,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAA;IAC3C,aAAa,CAAC,EAAE,MAAM,EAAE,CAAA;IACxB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;CAC7C;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CA6DtD,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../src/components/input/checkbox.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AAEnC,OAAO,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAA;AAKjE,MAAM,WAAW,KAAM,SAAQ,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC;IAC1E,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,IAAI,CAAA;IACX,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,eAAe,KAAK,IAAI,CAAA;CAC/D;AAED,eAAO,MAAM,QAAQ,GAAqB,6KAkBvC,KAAK,GAAG;IACT,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,iBAAiB,CAAC,CAAA;CACzC,KAAG,KAAK,CAAC,GAAG,CAAC,OA6Cb,CAAA"}
1
+ {"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../src/components/forms/checkbox.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AAEnC,OAAO,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAA;AAKjE,MAAM,WAAW,KAAM,SAAQ,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC;IAC1E,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,IAAI,CAAA;IACX,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,eAAe,KAAK,IAAI,CAAA;CAC/D;AAED,eAAO,MAAM,QAAQ,GAAqB,6KAkBvC,KAAK,GAAG;IACT,GAAG,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,iBAAiB,CAAC,CAAA;CACzC,KAAG,KAAK,CAAC,GAAG,CAAC,OA6Cb,CAAA"}
@@ -0,0 +1,25 @@
1
+ import "./checkbox_module.css";
2
+ const checkbox_module = {
3
+ container: "container-Mu7CJl",
4
+ reverse: "reverse-lTpLV5",
5
+ checkbox: "checkbox-FiKZnf",
6
+ indicator: "indicator-uDQYoF",
7
+ icon: "icon-gwRvT_",
8
+ checkBoxIn: "checkBoxIn-DSnbUl",
9
+ checkBoxOut: "checkBoxOut-lbT33D",
10
+ label: "label-rsCVhp",
11
+ errorText: "errorText-nwgg63",
12
+ sm: "sm-FMFjMf",
13
+ md: "md-iztHYW",
14
+ lg: "lg-GVxECP",
15
+ outlined: "outlined-VB1vGz",
16
+ filled: "filled-aCYMdF",
17
+ primary: "primary-OnpxZl",
18
+ secondary: "secondary-AWuj0h",
19
+ noeffect: "noeffect-iWFjDW",
20
+ success: "success-fdV1Bf",
21
+ info: "info-nDP5Bh",
22
+ warning: "warning-leHmkw",
23
+ danger: "danger-LGwa4G"
24
+ };
25
+ export { checkbox_module as default };