@innovastudio/contentbuilder 1.4.64 → 1.4.66

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbuilder",
3
3
  "type": "module",
4
- "version": "1.4.64",
4
+ "version": "1.4.66",
5
5
  "description": "",
6
6
  "main": "public/contentbuilder/contentbuilder.esm.js",
7
7
  "files": [
@@ -77305,6 +77305,10 @@ class Dictation {
77305
77305
  this.util = util;
77306
77306
  const builderStuff = this.builder.builderStuff;
77307
77307
  this.builderStuff = builderStuff;
77308
+ if (localStorage.getItem('_mic') === null) {
77309
+ localStorage.setItem('_mic', '0'); // make mic disable by default
77310
+ }
77311
+
77308
77312
  const commandInfo = this.builder.commandInfo;
77309
77313
  let htmlList = '';
77310
77314
  for (const key in commandInfo) {
@@ -77369,34 +77373,25 @@ class Dictation {
77369
77373
  margin-bottom: 2.2rem;
77370
77374
  display: flex;
77371
77375
  flex: none;
77372
- width: 255px;
77376
+ width: 350px;
77373
77377
  height: auto;
77374
77378
  flex-direction: column;
77375
77379
  justify-content: space-between;
77376
77380
  border-radius: 0.25rem;
77377
77381
  border: 1px solid rgb(156 163 175/.75);
77378
77382
  padding: 1.5rem 2rem;
77383
+ box-sizing: border-box;
77379
77384
  letter-spacing: .025em;
77380
77385
  box-shadow: 5px 5px 0px rgb(0 0 0 / 3%);
77381
- font-size: 20px;
77386
+ font-size: 19px;
77382
77387
  font-weight: 300;
77383
77388
  font-family: sans-serif;
77384
77389
  line-height: 1.3;
77385
77390
  cursor:pointer;
77386
77391
  transition: all 0.3s ease;
77387
77392
  }
77388
- /*
77389
- .is-modal.commandlist .is-modal-content > div > div:focus {
77390
- outline: #5fa1f0 2px solid;
77391
- outline-offset: 2px;
77392
- }
77393
- */
77394
77393
  .is-modal.commandlist .is-modal-content > div > div:hover {
77395
77394
  background: rgba(0, 0, 0, 0.03);
77396
- /*
77397
- outline: #5fa1f0 2px solid;
77398
- border: 1px solid transparent;
77399
- */
77400
77395
  }
77401
77396
  .dark .is-modal.commandlist .is-modal-content > div > div:hover {
77402
77397
  background: rgba(255, 255, 255, 0.05);