@frontify/guideline-blocks-settings 0.37.4 → 0.37.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/components/Link/LinkInput.es.js.map +1 -1
- package/dist/components/RichTextEditor/plugins/ButtonPlugin/components/FloatingButton/InsertButtonModal/useInsertModal.es.js +14 -14
- package/dist/components/RichTextEditor/plugins/ButtonPlugin/components/FloatingButton/InsertButtonModal/useInsertModal.es.js.map +1 -1
- package/dist/components/RichTextEditor/plugins/LinkPlugin/FloatingLink/InsertLinkModal/useInsertModal.es.js +22 -22
- package/dist/components/RichTextEditor/plugins/LinkPlugin/FloatingLink/InsertLinkModal/useInsertModal.es.js.map +1 -1
- package/dist/index.cjs.js +8 -8
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/settings/border.es.js +15 -11
- package/dist/settings/border.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { AppBridgeBlock } from '@frontify/app-bridge';
|
|
2
|
-
import { AppBridgeTheme } from '@frontify/app-bridge';
|
|
3
2
|
import { Asset } from '@frontify/app-bridge';
|
|
4
3
|
import { AssetInputBlock as AssetInputBlock_2 } from '@frontify/sidebar-settings';
|
|
5
4
|
import { BaseBlock as BaseBlock_2 } from '@frontify/sidebar-settings';
|
|
@@ -685,7 +684,7 @@ declare type LinkInputProps = {
|
|
|
685
684
|
onUrlChange?: (value: string) => void;
|
|
686
685
|
onToggleTab?: (checked: boolean) => void;
|
|
687
686
|
isValidUrlOrEmpty?: (url: string) => boolean;
|
|
688
|
-
appBridge: AppBridgeBlock
|
|
687
|
+
appBridge: AppBridgeBlock;
|
|
689
688
|
clearable?: boolean;
|
|
690
689
|
placeholder?: string;
|
|
691
690
|
buttonSize?: ButtonSize;
|