@ayasofyazilim/ui 0.0.2 → 0.0.4

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 +125 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ayasofyazilim/ui",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -122,29 +122,129 @@
122
122
  "exports": {
123
123
  "./globals.css": "./src/styles/globals.css",
124
124
  "./postcss.config": "./postcss.config.mjs",
125
- "./lib/*": [
126
- "./dist/lib/*.js",
127
- "./src/lib/*.ts"
128
- ],
129
- "./components/*": [
130
- "./dist/components/*.js",
131
- "./src/components/*.tsx"
132
- ],
133
- "./aria/*": [
134
- "./dist/aria/*.js",
135
- "./src/aria/*.tsx"
136
- ],
137
- "./custom/*": [
138
- "./dist/custom/*.js",
139
- "./dist/custom/*/index.js",
140
- "./src/custom/*.tsx",
141
- "./src/custom/*/index.tsx",
142
- "./src/custom/*.ts",
143
- "./src/custom/*/index.ts"
144
- ],
145
- "./hooks/*": [
146
- "./dist/hooks/*.js",
147
- "./src/hooks/*.ts"
148
- ]
125
+ "./lib/*": {
126
+ "types": "./src/lib/*.ts",
127
+ "default": [
128
+ "./dist/lib/*.js",
129
+ "./src/lib/*.ts"
130
+ ]
131
+ },
132
+ "./components/*": {
133
+ "types": "./src/components/*.tsx",
134
+ "default": [
135
+ "./dist/components/*.js",
136
+ "./src/components/*.tsx"
137
+ ]
138
+ },
139
+ "./aria/*": {
140
+ "types": "./src/aria/*.tsx",
141
+ "default": [
142
+ "./dist/aria/*.js",
143
+ "./src/aria/*.tsx"
144
+ ]
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
+ "./custom/*": {
217
+ "types": "./src/custom/*.tsx",
218
+ "default": [
219
+ "./dist/custom/*.js",
220
+ "./src/custom/*.tsx"
221
+ ]
222
+ },
223
+ "./hooks/*": {
224
+ "types": "./src/hooks/*.ts",
225
+ "default": [
226
+ "./dist/hooks/*.js",
227
+ "./src/hooks/*.ts"
228
+ ]
229
+ }
230
+ },
231
+ "typesVersions": {
232
+ "*": {
233
+ "lib/*": ["./src/lib/*"],
234
+ "components/*": ["./src/components/*"],
235
+ "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/*"],
247
+ "hooks/*": ["./src/hooks/*"]
248
+ }
149
249
  }
150
250
  }