@nexxtmove/ui 1.18.0 → 1.20.0
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/atoms/Slider/Slider.vue.d.ts +11 -0
- package/dist/components/editor/molecules/EditorGap/EditorGap.vue.d.ts +43 -0
- package/dist/components/editor/molecules/EditorPadding/EditorPadding.vue.d.ts +47 -0
- package/dist/components/editor/molecules/EditorPadding/_PaddingField.vue.d.ts +18 -0
- package/dist/components/editor/molecules/EditorPadding/_PaddingIcon.vue.d.ts +14 -0
- package/dist/components/organisms/ColorPicker/ColorPicker.vue.d.ts +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +664 -365
- package/dist/nuxt.js +3 -1
- package/package.json +1 -1
- package/src/components/atoms/Slider/Slider.vue +22 -1
- package/src/components/editor/molecules/EditorGap/EditorGap.vue +115 -0
- package/src/components/editor/molecules/EditorPadding/EditorPadding.vue +310 -0
- package/src/components/editor/molecules/EditorPadding/_PaddingField.vue +56 -0
- package/src/components/editor/molecules/EditorPadding/_PaddingIcon.vue +85 -0
- package/src/components.json +3 -1
- package/src/index.ts +7 -0
- package/tailwind/nexxtmove.tailwind.custom.css +5 -0
|
@@ -42,6 +42,11 @@
|
|
|
42
42
|
(app/assets/css/main.css); the app drops its copies once it adopts the
|
|
43
43
|
version that ships these. */
|
|
44
44
|
@theme {
|
|
45
|
+
/* Strong ease-out (`ease-out-strong`): starts fast and settles slowly, so a
|
|
46
|
+
panel that grows or shrinks reads as one motion instead of a jump. Used by
|
|
47
|
+
NexxtEditorPadding; Tailwind's own `ease-out` is too shallow at 200ms. */
|
|
48
|
+
--ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
|
|
49
|
+
|
|
45
50
|
--spacing-8xl: 100rem;
|
|
46
51
|
--spacing-full-width: 116rem; /* 1920px (full hd) minus the sidebar: max app width */
|
|
47
52
|
}
|