@reshape-biotech/design-system 0.0.31 → 0.0.32

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.
@@ -19,3 +19,4 @@ export const cursors: string[];
19
19
  export const misc: string[];
20
20
  export const daisyui: string[];
21
21
  export const safelist: string[];
22
+ export const responsive: string[];
@@ -126,23 +126,43 @@ export const display = [
126
126
  'py-1'
127
127
  ];
128
128
 
129
- export const rounded = ['rounded-full', 'rounded'];
129
+ export const rounded = [
130
+ 'rounded',
131
+ 'rounded-full',
132
+ 'rounded-lg',
133
+ 'rounded-xl',
134
+ 'rounded-2xl',
135
+ 'rounded-md'
136
+ ];
130
137
 
131
138
  export const tables = ['table-fixed', 'table-auto'];
132
139
 
133
140
  export const flexLayout = [
134
141
  'flex',
135
142
  'inline-flex',
143
+ 'block',
144
+ 'inline-block',
136
145
  'items-center',
146
+ 'items-start',
147
+ 'items-end',
137
148
  'justify-center',
138
149
  'justify-between',
139
150
  'justify-start',
151
+ 'justify-end',
140
152
  'flex-1',
141
153
  'flex-row',
142
154
  'flex-col',
155
+ 'gap-1',
143
156
  'gap-2',
144
157
  'gap-3',
158
+ 'gap-4',
159
+ 'space-x-1',
160
+ 'space-x-2',
161
+ 'space-x-3',
162
+ 'space-x-4',
163
+ 'space-y-1',
145
164
  'space-y-2',
165
+ 'space-y-3',
146
166
  'space-y-4'
147
167
  ];
148
168
 
@@ -169,6 +189,7 @@ export const sizing = [
169
189
  'h-4',
170
190
  'h-5',
171
191
  'h-6',
192
+ 'h-7',
172
193
  'h-8',
173
194
  'h-10',
174
195
  'h-11',
@@ -184,7 +205,10 @@ export const sizing = [
184
205
  'w-full',
185
206
  'min-w-5',
186
207
  'min-w-7',
187
- 'size-5'
208
+ 'size-4',
209
+ 'size-5',
210
+ 'size-6',
211
+ 'sm:w-[460px]'
188
212
  ];
189
213
 
190
214
  export const positioning = ['absolute', 'relative', 'top-20', 'left-18', 'z-10', 'z-[1]'];
@@ -383,3 +407,5 @@ export const safelist = [
383
407
  ...misc,
384
408
  ...daisyui
385
409
  ];
410
+
411
+ export const responsive = ['sm:w-[460px]', 'md:flex', 'lg:block', 'sm:gap-2'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reshape-biotech/design-system",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",