@plasmicpkgs/antd5 0.0.59 → 0.0.61
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/.tsbuildinfo +1 -1
- package/dist/antd.esm.js +2 -2
- package/dist/antd.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/registerCheckbox.d.ts +1 -1
- package/package.json +3 -3
- package/skinny/registerCheckbox.cjs.js +2 -2
- package/skinny/registerCheckbox.cjs.js.map +1 -1
- package/skinny/registerCheckbox.d.ts +1 -1
- package/skinny/registerCheckbox.esm.js +2 -2
- package/skinny/registerCheckbox.esm.js.map +1 -1
package/dist/index.js
CHANGED
|
@@ -250,7 +250,7 @@ function AntdCheckbox(props) {
|
|
|
250
250
|
AntdCheckbox.__plasmicFormFieldMeta = { valueProp: "checked" };
|
|
251
251
|
const AntdCheckboxGroup = antd.Checkbox.Group;
|
|
252
252
|
const checkboxComponentName = "plasmic-antd5-checkbox";
|
|
253
|
-
const checkboxGroupComponentName = "plasmic-antd5-checkbox";
|
|
253
|
+
const checkboxGroupComponentName = "plasmic-antd5-checkbox-group";
|
|
254
254
|
function registerCheckbox(loader) {
|
|
255
255
|
registerComponentHelper(loader, AntdCheckbox, {
|
|
256
256
|
name: checkboxComponentName,
|
|
@@ -333,7 +333,7 @@ function registerCheckbox(loader) {
|
|
|
333
333
|
},
|
|
334
334
|
children: {
|
|
335
335
|
type: "slot",
|
|
336
|
-
allowedComponents: [
|
|
336
|
+
allowedComponents: [checkboxComponentName]
|
|
337
337
|
// Error right now when using default slot content with stateful instances
|
|
338
338
|
// defaultValue: [
|
|
339
339
|
// {
|