@thecb/components 10.6.0-beta.4 → 10.6.0-beta.6
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/index.cjs.js +473 -149
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.esm.js +470 -149
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/icons/DisabledAccountsAddIcon.js +200 -0
- package/src/components/atoms/icons/DisabledPaymentMethodsAddIcon.js +62 -0
- package/src/components/atoms/icons/DisabledPropertiesAddIcon.js +54 -0
- package/src/components/atoms/icons/PropertiesAddIcon.js +1 -0
- package/src/components/atoms/icons/icons.stories.js +9 -1
- package/src/components/atoms/icons/index.js +7 -1
- package/src/components/atoms/placeholder/Placeholder.js +85 -26
- package/src/components/atoms/placeholder/Placeholder.stories.js +2 -0
- package/src/components/atoms/placeholder/Placeholder.theme.js +8 -2
- package/src/components/atoms/spinner/index.d.ts +4 -0
- package/src/components/atoms/wallet-name/WalletName.js +18 -22
- package/src/components/atoms/wallet-name/index.d.ts +4 -3
- package/src/components/molecules/editable-list/EditableList.js +3 -1
- package/src/components/molecules/editable-list/EditableList.stories.js +1 -3
- package/src/components/molecules/partial-amount-form/PartialAmountField.js +49 -0
- package/src/components/molecules/partial-amount-form/PartialAmountForm.js +8 -22
- package/src/components/molecules/radio-section/InnerRadioSection.js +7 -2
- package/src/components/atoms/wallet-name/WalletName.theme.js +0 -25
package/dist/index.d.ts
CHANGED
|
@@ -1014,6 +1014,10 @@ declare const SearchableSelect: React.FC<Expand<SearchableSelectProps> &
|
|
|
1014
1014
|
interface SpinnerProps {
|
|
1015
1015
|
size?: string;
|
|
1016
1016
|
centerSpinner?: boolean;
|
|
1017
|
+
cx?: string;
|
|
1018
|
+
cy?: string;
|
|
1019
|
+
radius?: string;
|
|
1020
|
+
strokeWidth?: string;
|
|
1017
1021
|
}
|
|
1018
1022
|
|
|
1019
1023
|
declare const Spinner: React.FC<Expand<SpinnerProps> &
|