@adminforth/list-in-place-edit 1.0.3 → 1.0.5

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.
package/build.log CHANGED
@@ -7,5 +7,5 @@ custom/
7
7
  custom/InPlaceEdit.vue
8
8
  custom/tsconfig.json
9
9
 
10
- sent 5,343 bytes received 58 bytes 10,802.00 bytes/sec
11
- total size is 5,128 speedup is 0.95
10
+ sent 5,347 bytes received 58 bytes 10,810.00 bytes/sec
11
+ total size is 5,132 speedup is 0.95
@@ -13,10 +13,10 @@
13
13
  </div>
14
14
 
15
15
  <!-- Edit mode -->
16
- <div v-else class="flex items-center gap-2 min-w-[200px]">
16
+ <div v-else class="flex items-center gap-2 min-w-[200px] w-full">
17
17
  <ColumnValueInputWrapper
18
18
  ref="input"
19
- class="flex-grow"
19
+ class="flex-grow w-full"
20
20
  :source="'edit'"
21
21
  :column="column"
22
22
  :currentValues="currentValues"
@@ -1,19 +1,27 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "baseUrl": ".", // This should point to your project root
3
+ "baseUrl": ".",
4
4
  "paths": {
5
5
  "@/*": [
6
- // "node_modules/adminforth/dist/spa/src/*"
7
- "../../../spa/src/*"
6
+ "../../../adminforth/spa/src/*"
8
7
  ],
9
8
  "*": [
10
- // "node_modules/adminforth/dist/spa/node_modules/*"
11
- "../../../spa/node_modules/*"
9
+ "../../../adminforth/spa/node_modules/*"
12
10
  ],
13
11
  "@@/*": [
14
- // "node_modules/adminforth/dist/spa/src/*"
15
12
  "."
16
13
  ]
17
14
  }
18
- }
15
+ },
16
+ "include": [
17
+ "./**/*.ts",
18
+ "./**/*.tsx",
19
+ "./**/*.vue",
20
+ "../**/*.ts",
21
+ "../**/*.tsx",
22
+ "../**/*.vue",
23
+ "../*.vue",
24
+ "../*.ts",
25
+ "../*.tsx"
26
+ ]
19
27
  }
@@ -13,10 +13,10 @@
13
13
  </div>
14
14
 
15
15
  <!-- Edit mode -->
16
- <div v-else class="flex items-center gap-2 min-w-[200px]">
16
+ <div v-else class="flex items-center gap-2 min-w-[200px] w-full">
17
17
  <ColumnValueInputWrapper
18
18
  ref="input"
19
- class="flex-grow"
19
+ class="flex-grow w-full"
20
20
  :source="'edit'"
21
21
  :column="column"
22
22
  :currentValues="currentValues"
@@ -1,19 +1,27 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "baseUrl": ".", // This should point to your project root
3
+ "baseUrl": ".",
4
4
  "paths": {
5
5
  "@/*": [
6
- // "node_modules/adminforth/dist/spa/src/*"
7
- "../../../spa/src/*"
6
+ "../../../adminforth/spa/src/*"
8
7
  ],
9
8
  "*": [
10
- // "node_modules/adminforth/dist/spa/node_modules/*"
11
- "../../../spa/node_modules/*"
9
+ "../../../adminforth/spa/node_modules/*"
12
10
  ],
13
11
  "@@/*": [
14
- // "node_modules/adminforth/dist/spa/src/*"
15
12
  "."
16
13
  ]
17
14
  }
18
- }
15
+ },
16
+ "include": [
17
+ "./**/*.ts",
18
+ "./**/*.tsx",
19
+ "./**/*.vue",
20
+ "../**/*.ts",
21
+ "../**/*.tsx",
22
+ "../**/*.vue",
23
+ "../*.vue",
24
+ "../*.ts",
25
+ "../*.tsx"
26
+ ]
19
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/list-in-place-edit",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",