@finsweet/webflow-apps-utils 1.0.9 → 1.0.11
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/ui/components/LoadingScreen.svelte +6 -2
- package/dist/ui/components/LoadingScreen.svelte.d.ts +1 -0
- package/dist/ui/components/breakpoints/BreakpointItem.svelte +2 -2
- package/dist/ui/components/color-picker/ColorPicker.stories.svelte +42 -0
- package/dist/ui/components/color-picker/ColorPicker.stories.svelte.d.ts +19 -0
- package/dist/ui/components/color-picker/ColorPicker.svelte +155 -0
- package/dist/ui/components/color-picker/ColorPicker.svelte.d.ts +8 -0
- package/dist/ui/components/color-picker/ColorSelect.stories.svelte +61 -0
- package/dist/ui/components/color-picker/ColorSelect.stories.svelte.d.ts +27 -0
- package/dist/ui/components/color-picker/ColorSelect.svelte +940 -0
- package/dist/ui/components/color-picker/ColorSelect.svelte.d.ts +7 -0
- package/dist/ui/components/color-picker/index.d.ts +1 -0
- package/dist/ui/components/color-picker/index.js +1 -0
- package/dist/ui/components/index.d.ts +1 -0
- package/dist/ui/components/index.js +1 -0
- package/dist/ui/components/layout/examples/ExampleLayout.svelte +8 -0
- package/dist/ui/components/notification/Notification.svelte +2 -2
- package/dist/ui/components/tooltip/Tooltip.svelte +0 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ColorPicker } from './ColorPicker.svelte';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ColorPicker } from './ColorPicker.svelte';
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import { CheckCircleIcon, CodeIcon, InfoIcon, SettingsIcon } from '../../../icons';
|
|
7
7
|
import { Button } from '../../button';
|
|
8
|
+
import { ColorPicker } from '../../color-picker';
|
|
8
9
|
import { Input } from '../../input';
|
|
9
10
|
import { Section } from '../../section';
|
|
10
11
|
import { Switch } from '../../switch';
|
|
@@ -268,6 +269,13 @@
|
|
|
268
269
|
width="130px"
|
|
269
270
|
/>
|
|
270
271
|
|
|
272
|
+
<ColorPicker
|
|
273
|
+
color="#8C4C4C"
|
|
274
|
+
onchange={(color) => {
|
|
275
|
+
console.log(color);
|
|
276
|
+
}}
|
|
277
|
+
/>
|
|
278
|
+
|
|
271
279
|
<Input
|
|
272
280
|
value="Error input"
|
|
273
281
|
invalid={true}
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
<DefaultIcon />
|
|
159
159
|
</span>
|
|
160
160
|
|
|
161
|
-
<div class="content">
|
|
161
|
+
<div class="notification-content">
|
|
162
162
|
{#if title}
|
|
163
163
|
<Text
|
|
164
164
|
label={title}
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
flex-shrink: 0;
|
|
223
223
|
}
|
|
224
224
|
|
|
225
|
-
.content {
|
|
225
|
+
.notification-content {
|
|
226
226
|
display: flex;
|
|
227
227
|
padding-right: var(--spacing-24, 24px);
|
|
228
228
|
flex-direction: column;
|