@bigbinary/neeto-molecules 3.7.18 → 3.7.20
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/DynamicVariables.js +3 -0
- package/dist/DynamicVariables.js.map +1 -1
- package/dist/ProductEmbed.js +12 -6
- package/dist/ProductEmbed.js.map +1 -1
- package/dist/ToggleFeatureCard.js +7 -10
- package/dist/ToggleFeatureCard.js.map +1 -1
- package/dist/cjs/DynamicVariables.js +3 -0
- package/dist/cjs/DynamicVariables.js.map +1 -1
- package/dist/cjs/ProductEmbed.js +12 -6
- package/dist/cjs/ProductEmbed.js.map +1 -1
- package/dist/cjs/ToggleFeatureCard.js +7 -11
- package/dist/cjs/ToggleFeatureCard.js.map +1 -1
- package/package.json +1 -1
- package/src/translations/en.json +0 -5
- package/types/ProductEmbed.d.ts +1 -0
- package/types/ToggleFeatureCard.d.ts +2 -1
package/src/translations/en.json
CHANGED
|
@@ -573,11 +573,6 @@
|
|
|
573
573
|
"commaSeparatedEmails": "Use comma (‘) to add multiple email addresses"
|
|
574
574
|
}
|
|
575
575
|
},
|
|
576
|
-
"toggleFeatureCard": {
|
|
577
|
-
"input": {
|
|
578
|
-
"editButtonDefaultTooltip": "Edit"
|
|
579
|
-
}
|
|
580
|
-
},
|
|
581
576
|
"calendarView": {
|
|
582
577
|
"allDay": "All Day",
|
|
583
578
|
"weekly": "Weekly",
|
package/types/ProductEmbed.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { InputProps, SwitchProps as NeetoUISwitchProps } from "neetoui";
|
|
2
|
+
import { InputProps, SwitchProps as NeetoUISwitchProps, ButtonProps } from "neetoui";
|
|
3
3
|
type TooltipProps = {
|
|
4
4
|
enabledSwitchText?: string;
|
|
5
5
|
disabledSwitchText?: string;
|
|
@@ -29,5 +29,6 @@ const ToggleFeatureCard: React.FC<{
|
|
|
29
29
|
children?: React.ReactNode | null;
|
|
30
30
|
inputProps?: InputProps;
|
|
31
31
|
switchProps?: SwitchProps;
|
|
32
|
+
editButtonProps?: ButtonProps;
|
|
32
33
|
}>;
|
|
33
34
|
export default ToggleFeatureCard;
|