@tunghtml/strapi-plugin-multiselect-checkbox 1.0.2 → 1.0.3
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/dist/admin/index.js +1 -1
- package/dist/admin/index.mjs +1 -1
- package/dist/server/index.js +2 -6
- package/dist/server/index.mjs +2 -6
- package/package.json +1 -1
package/dist/admin/index.js
CHANGED
package/dist/admin/index.mjs
CHANGED
package/dist/server/index.js
CHANGED
|
@@ -19,12 +19,8 @@ const register = ({ strapi }) => {
|
|
|
19
19
|
strapi.customFields.register({
|
|
20
20
|
name: "multiselect-checkbox",
|
|
21
21
|
plugin: "multiselect-checkbox",
|
|
22
|
-
// The data type stored in the database - JSON
|
|
23
|
-
type: "
|
|
24
|
-
inputSize: {
|
|
25
|
-
default: 12,
|
|
26
|
-
isResizable: true
|
|
27
|
-
}
|
|
22
|
+
// The data type stored in the database - text (serialized JSON)
|
|
23
|
+
type: "text"
|
|
28
24
|
});
|
|
29
25
|
};
|
|
30
26
|
const contentAPIRoutes = [];
|
package/dist/server/index.mjs
CHANGED
|
@@ -18,12 +18,8 @@ const register = ({ strapi }) => {
|
|
|
18
18
|
strapi.customFields.register({
|
|
19
19
|
name: "multiselect-checkbox",
|
|
20
20
|
plugin: "multiselect-checkbox",
|
|
21
|
-
// The data type stored in the database - JSON
|
|
22
|
-
type: "
|
|
23
|
-
inputSize: {
|
|
24
|
-
default: 12,
|
|
25
|
-
isResizable: true
|
|
26
|
-
}
|
|
21
|
+
// The data type stored in the database - text (serialized JSON)
|
|
22
|
+
type: "text"
|
|
27
23
|
});
|
|
28
24
|
};
|
|
29
25
|
const contentAPIRoutes = [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tunghtml/strapi-plugin-multiselect-checkbox",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "A Strapi v5 custom field plugin with checkbox UI that stores selected values as an array of strings (JSON type) instead of comma-separated strings.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"strapi",
|