@visitwonders/assembly 0.5.0 → 0.6.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.
@@ -15,14 +15,14 @@
15
15
  .textarea_eb3566bbf {
16
16
  box-sizing: border-box;
17
17
  width: 100%;
18
- padding: var(--spacing-2);
18
+ padding: var(--spacing-2) var(--input-padding-horizontal-md);
19
19
  border: var(--border-width-1) solid var(--color-border-control);
20
20
  border-radius: var(--radius-md);
21
21
  background-color: var(--color-bg);
22
22
  color: var(--color-text);
23
23
  font-family: inherit;
24
24
  font-size: var(--font-size-13);
25
- line-height: var(--line-height-tight);
25
+ line-height: var(--line-height-normal);
26
26
  transition:
27
27
  border-color var(--transition-fast),
28
28
  box-shadow var(--transition-fast);
@@ -51,7 +51,7 @@
51
51
  }
52
52
 
53
53
  .textarea-wrapper_eb3566bbf[data-size="md"] .textarea_eb3566bbf {
54
- padding: var(--spacing-2);
54
+ padding: var(--spacing-2) var(--input-padding-horizontal-md);
55
55
  font-size: var(--font-size-13);
56
56
  }
57
57
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visitwonders/assembly",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "The default blueprint for Embroider v2 addons.",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -77,6 +77,21 @@
77
77
  "declarations",
78
78
  "dist"
79
79
  ],
80
+ "scripts": {
81
+ "build": "rollup --config",
82
+ "format": "prettier . --cache --write",
83
+ "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
84
+ "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto && pnpm run format",
85
+ "lint:format": "prettier . --cache --check",
86
+ "lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
87
+ "lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
88
+ "lint:js": "eslint . --cache",
89
+ "lint:js:fix": "eslint . --fix",
90
+ "lint:types": "glint",
91
+ "prepack": "rollup --config",
92
+ "start": "rollup --config --watch",
93
+ "test": "echo 'A v2 addon does not have tests, run tests in showcase'"
94
+ },
80
95
  "dependencies": {
81
96
  "@arthur5005/dnd-kit-ember": "^0.1.2",
82
97
  "@embroider/addon-shim": "^1.8.9",
@@ -207,19 +222,5 @@
207
222
  "./typography/heading.js": "./dist/_app_/typography/heading.js",
208
223
  "./typography/text.js": "./dist/_app_/typography/text.js"
209
224
  }
210
- },
211
- "scripts": {
212
- "build": "rollup --config",
213
- "format": "prettier . --cache --write",
214
- "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
215
- "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto && pnpm run format",
216
- "lint:format": "prettier . --cache --check",
217
- "lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
218
- "lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
219
- "lint:js": "eslint . --cache",
220
- "lint:js:fix": "eslint . --fix",
221
- "lint:types": "glint",
222
- "start": "rollup --config --watch",
223
- "test": "echo 'A v2 addon does not have tests, run tests in showcase'"
224
225
  }
225
- }
226
+ }