@ayasofyazilim/ui 0.0.5 → 0.0.6

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 (1) hide show
  1. package/package.json +13 -84
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ayasofyazilim/ui",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -143,81 +143,20 @@
143
143
  "./src/aria/*.tsx"
144
144
  ]
145
145
  },
146
- "./custom/schema-form": {
147
- "types": "./src/custom/schema-form/index.tsx",
148
- "default": [
149
- "./dist/custom/schema-form/index.js",
150
- "./src/custom/schema-form/index.tsx"
151
- ]
152
- },
153
- "./custom/master-data-grid": {
154
- "types": "./src/custom/master-data-grid/index.ts",
155
- "default": [
156
- "./dist/custom/master-data-grid/index.js",
157
- "./src/custom/master-data-grid/index.ts"
158
- ]
159
- },
160
- "./custom/filter-component": {
161
- "types": "./src/custom/filter-component/index.tsx",
162
- "default": [
163
- "./dist/custom/filter-component/index.js",
164
- "./src/custom/filter-component/index.tsx"
165
- ]
166
- },
167
- "./custom/tanstack-table": {
168
- "types": "./src/custom/tanstack-table/index.tsx",
169
- "default": [
170
- "./dist/custom/tanstack-table/index.js",
171
- "./src/custom/tanstack-table/index.tsx"
172
- ]
173
- },
174
- "./custom/tscanify": {
175
- "types": "./src/custom/tscanify/index.ts",
176
- "default": [
177
- "./dist/custom/tscanify/index.js",
178
- "./src/custom/tscanify/index.ts"
179
- ]
180
- },
181
- "./custom/email-input": {
182
- "types": "./src/custom/email-input/index.tsx",
183
- "default": [
184
- "./dist/custom/email-input/index.js",
185
- "./src/custom/email-input/index.tsx"
186
- ]
187
- },
188
- "./custom/document-viewer": {
189
- "types": "./src/custom/document-viewer/index.tsx",
190
- "default": [
191
- "./dist/custom/document-viewer/index.js",
192
- "./src/custom/document-viewer/index.tsx"
193
- ]
194
- },
195
- "./custom/document-scanner": {
196
- "types": "./src/custom/document-scanner/index.tsx",
197
- "default": [
198
- "./dist/custom/document-scanner/index.js",
199
- "./src/custom/document-scanner/index.tsx"
200
- ]
201
- },
202
- "./custom/charts": {
203
- "types": "./src/custom/charts/index.tsx",
204
- "default": [
205
- "./dist/custom/charts/index.js",
206
- "./src/custom/charts/index.tsx"
207
- ]
208
- },
209
- "./custom/date-picker": {
210
- "types": "./src/custom/date-picker/index.tsx",
211
- "default": [
212
- "./dist/custom/date-picker/index.js",
213
- "./src/custom/date-picker/index.tsx"
214
- ]
215
- },
216
146
  "./custom/*": {
217
- "types": "./src/custom/*.tsx",
147
+ "types": [
148
+ "./src/custom/*.tsx",
149
+ "./src/custom/*/index.tsx",
150
+ "./src/custom/*.ts",
151
+ "./src/custom/*/index.ts"
152
+ ],
218
153
  "default": [
219
154
  "./dist/custom/*.js",
220
- "./src/custom/*.tsx"
155
+ "./dist/custom/*/index.js",
156
+ "./src/custom/*.tsx",
157
+ "./src/custom/*/index.tsx",
158
+ "./src/custom/*.ts",
159
+ "./src/custom/*/index.ts"
221
160
  ]
222
161
  },
223
162
  "./hooks/*": {
@@ -233,17 +172,7 @@
233
172
  "lib/*": ["./src/lib/*"],
234
173
  "components/*": ["./src/components/*"],
235
174
  "aria/*": ["./src/aria/*"],
236
- "custom/schema-form": ["./src/custom/schema-form/index"],
237
- "custom/master-data-grid": ["./src/custom/master-data-grid/index"],
238
- "custom/filter-component": ["./src/custom/filter-component/index"],
239
- "custom/tanstack-table": ["./src/custom/tanstack-table/index"],
240
- "custom/tscanify": ["./src/custom/tscanify/index"],
241
- "custom/email-input": ["./src/custom/email-input/index"],
242
- "custom/document-viewer": ["./src/custom/document-viewer/index"],
243
- "custom/document-scanner": ["./src/custom/document-scanner/index"],
244
- "custom/charts": ["./src/custom/charts/index"],
245
- "custom/date-picker": ["./src/custom/date-picker/index"],
246
- "custom/*": ["./src/custom/*"],
175
+ "custom/*": ["./src/custom/*", "./src/custom/*/index"],
247
176
  "hooks/*": ["./src/hooks/*"]
248
177
  }
249
178
  }