@ayasofyazilim/ui 0.0.8 → 0.0.9

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 +31 -61
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ayasofyazilim/ui",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -124,108 +124,78 @@
124
124
  "./postcss.config": "./postcss.config.mjs",
125
125
  "./lib/*": {
126
126
  "types": "./src/lib/*.ts",
127
- "default": [
128
- "./dist/lib/*.js",
129
- "./src/lib/*.ts"
130
- ]
127
+ "import": "./dist/lib/*.js",
128
+ "default": "./dist/lib/*.js"
131
129
  },
132
130
  "./components/*": {
133
131
  "types": "./src/components/*.tsx",
134
- "default": [
135
- "./dist/components/*.js",
136
- "./src/components/*.tsx"
137
- ]
132
+ "import": "./dist/components/*.js",
133
+ "default": "./dist/components/*.js"
138
134
  },
139
135
  "./aria/*": {
140
136
  "types": "./src/aria/*.tsx",
141
- "default": [
142
- "./dist/aria/*.js",
143
- "./src/aria/*.tsx"
144
- ]
137
+ "import": "./dist/aria/*.js",
138
+ "default": "./dist/aria/*.js"
145
139
  },
146
140
  "./custom/schema-form": {
147
141
  "types": "./src/custom/schema-form/index.tsx",
148
- "default": [
149
- "./dist/custom/schema-form/index.js",
150
- "./src/custom/schema-form/index.tsx"
151
- ]
142
+ "import": "./dist/custom/schema-form/index.js",
143
+ "default": "./dist/custom/schema-form/index.js"
152
144
  },
153
145
  "./custom/master-data-grid": {
154
146
  "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
- ]
147
+ "import": "./dist/custom/master-data-grid/index.js",
148
+ "default": "./dist/custom/master-data-grid/index.js"
159
149
  },
160
150
  "./custom/filter-component": {
161
151
  "types": "./src/custom/filter-component/index.tsx",
162
- "default": [
163
- "./dist/custom/filter-component/index.js",
164
- "./src/custom/filter-component/index.tsx"
165
- ]
152
+ "import": "./dist/custom/filter-component/index.js",
153
+ "default": "./dist/custom/filter-component/index.js"
166
154
  },
167
155
  "./custom/tanstack-table": {
168
156
  "types": "./src/custom/tanstack-table/index.tsx",
169
- "default": [
170
- "./dist/custom/tanstack-table/index.js",
171
- "./src/custom/tanstack-table/index.tsx"
172
- ]
157
+ "import": "./dist/custom/tanstack-table/index.js",
158
+ "default": "./dist/custom/tanstack-table/index.js"
173
159
  },
174
160
  "./custom/tscanify": {
175
161
  "types": "./src/custom/tscanify/index.ts",
176
- "default": [
177
- "./dist/custom/tscanify/index.js",
178
- "./src/custom/tscanify/index.ts"
179
- ]
162
+ "import": "./dist/custom/tscanify/index.js",
163
+ "default": "./dist/custom/tscanify/index.js"
180
164
  },
181
165
  "./custom/email-input": {
182
166
  "types": "./src/custom/email-input/index.tsx",
183
- "default": [
184
- "./dist/custom/email-input/index.js",
185
- "./src/custom/email-input/index.tsx"
186
- ]
167
+ "import": "./dist/custom/email-input/index.js",
168
+ "default": "./dist/custom/email-input/index.js"
187
169
  },
188
170
  "./custom/document-viewer": {
189
171
  "types": "./src/custom/document-viewer/index.tsx",
190
- "default": [
191
- "./dist/custom/document-viewer/index.js",
192
- "./src/custom/document-viewer/index.tsx"
193
- ]
172
+ "import": "./dist/custom/document-viewer/index.js",
173
+ "default": "./dist/custom/document-viewer/index.js"
194
174
  },
195
175
  "./custom/document-scanner": {
196
176
  "types": "./src/custom/document-scanner/index.tsx",
197
- "default": [
198
- "./dist/custom/document-scanner/index.js",
199
- "./src/custom/document-scanner/index.tsx"
200
- ]
177
+ "import": "./dist/custom/document-scanner/index.js",
178
+ "default": "./dist/custom/document-scanner/index.js"
201
179
  },
202
180
  "./custom/charts": {
203
181
  "types": "./src/custom/charts/index.tsx",
204
- "default": [
205
- "./dist/custom/charts/index.js",
206
- "./src/custom/charts/index.tsx"
207
- ]
182
+ "import": "./dist/custom/charts/index.js",
183
+ "default": "./dist/custom/charts/index.js"
208
184
  },
209
185
  "./custom/date-picker": {
210
186
  "types": "./src/custom/date-picker/index.tsx",
211
- "default": [
212
- "./dist/custom/date-picker/index.js",
213
- "./src/custom/date-picker/index.tsx"
214
- ]
187
+ "import": "./dist/custom/date-picker/index.js",
188
+ "default": "./dist/custom/date-picker/index.js"
215
189
  },
216
190
  "./custom/*": {
217
191
  "types": "./src/custom/*.tsx",
218
- "default": [
219
- "./dist/custom/*.js",
220
- "./src/custom/*.tsx"
221
- ]
192
+ "import": "./dist/custom/*.js",
193
+ "default": "./dist/custom/*.js"
222
194
  },
223
195
  "./hooks/*": {
224
196
  "types": "./src/hooks/*.ts",
225
- "default": [
226
- "./dist/hooks/*.js",
227
- "./src/hooks/*.ts"
228
- ]
197
+ "import": "./dist/hooks/*.js",
198
+ "default": "./dist/hooks/*.js"
229
199
  }
230
200
  },
231
201
  "typesVersions": {