@n8n/design-system 2.6.0 → 2.7.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@n8n/design-system",
4
- "version": "2.6.0",
4
+ "version": "2.7.0",
5
5
  "main": "src/index.ts",
6
6
  "import": "src/index.ts",
7
7
  "license": "SEE LICENSE IN LICENSE.md",
@@ -0,0 +1,14 @@
1
+ /* Storybook layout styles for Input component stories */
2
+
3
+ .input-story-container {
4
+ padding: 40px;
5
+ max-width: 400px;
6
+ }
7
+
8
+ .input-story-value {
9
+ margin-top: 16px;
10
+ }
11
+
12
+ .input-story-section {
13
+ margin-top: 16px;
14
+ }
package/src/index.ts CHANGED
@@ -14,8 +14,6 @@ export { default as N8nCheckbox } from './v2/components/Checkbox/Checkbox.vue';
14
14
  export type * from './v2/components/Checkbox/Checkbox.types';
15
15
  export { default as N8nPagination2 } from './v2/components/Pagination/Pagination.vue';
16
16
  export type * from './v2/components/Pagination/Pagination.types';
17
- export { default as N8nInput2 } from './v2/components/Input/Input.vue';
18
- export type * from './v2/components/Input/Input.types';
19
17
  export { default as N8nLoading2 } from './v2/components/Loading/Loading.vue';
20
18
  export type * from './v2/components/Loading/Loading.types';
21
19
  export { default as N8nInputNumber2 } from './v2/components/InputNumber/InputNumber.vue';