@movable/ui 0.1.1 → 0.1.2

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.
@@ -14,31 +14,13 @@ jobs:
14
14
  steps:
15
15
  - uses: actions/checkout@v2
16
16
  with:
17
- fetch-depth: 0 # Necessary to generate changelog from commit history
18
- - uses: volta-cli/action@v1
19
-
17
+ fetch-depth: 0
20
18
  - name: git config
21
19
  run: |
22
20
  git config user.name "${GITHUB_ACTOR}"
23
21
  git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
24
-
25
- - name: Get yarn cache directory path
26
- id: yarn-cache-dir-path
27
- run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
28
- - uses: actions/cache@v2
29
- with:
30
- path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
31
- key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
32
- restore-keys: |
33
- ${{ runner.os }}-yarn-
34
-
35
- - run: yarn install --immutable
36
-
37
- - name: Configure NPM with auth token
38
- run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
22
+ - run: npm install
23
+ - run: npm run release
39
24
  env:
40
25
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
41
-
42
- - run: yarn release ${{ github.event.inputs.increment }}
43
- env:
44
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package/CHANGELOG.md CHANGED
@@ -1,10 +1,16 @@
1
1
 
2
2
 
3
+ ## [0.1.2](https://github.com/movableink/ui/compare/0.1.1...0.1.2) (2023-10-18)
4
+
5
+
6
+ ### Style
7
+
8
+ * add text field style overrides ([bdc5370](https://github.com/movableink/ui/commit/bdc5370f47b9c092a825ae78e297c6637d98de6b))
9
+
3
10
  ## [0.1.1](https://github.com/movableink/ui/compare/0.1.0-alpha.1...0.1.1) (2023-10-13)
4
11
 
5
12
  ## [0.1.0-alpha.1](https://github.com/movableink/ui/compare/0.1.0-alpha.0...0.1.0-alpha.1) (2023-09-19)
6
13
 
7
-
8
14
  ### Features
9
15
 
10
- * added theme from DV team ([d692875](https://github.com/movableink/ui/commit/d692875be6b3f7ffd6c018d50f77702d3f6a7626))
16
+ - added theme from DV team ([d692875](https://github.com/movableink/ui/commit/d692875be6b3f7ffd6c018d50f77702d3f6a7626))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movable/ui",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Movable Ink's shared MUI components and MUI theme for our vite applications",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.esm.js",
package/src/theme.ts CHANGED
@@ -239,7 +239,15 @@ const theme = createTheme({
239
239
  },
240
240
  styleOverrides: {
241
241
  root: {
242
- backgroundColor: grey[100],
242
+ '.MuiInputBase-root': {
243
+ backgroundColor: grey[100],
244
+ },
245
+ '.MuiInputBase-input': {
246
+ backgroundColor: grey[100],
247
+ },
248
+ '.MuiFormHelperText-root': {
249
+ marginLeft: 0,
250
+ },
243
251
  },
244
252
  },
245
253
  },
@@ -406,4 +414,4 @@ const theme = createTheme({
406
414
  },
407
415
  } as ThemeOptions);
408
416
 
409
- export default theme;
417
+ export default theme;