@things-factory/font-ui 3.6.13 → 3.6.19

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.
@@ -1,15 +1,16 @@
1
+ import './font-creation-card'
2
+
3
+ import { HeadroomStyles, ScrollbarStyles } from '@things-factory/styles'
4
+ import { LitElement, css, html } from 'lit-element'
5
+ import { client, store } from '@things-factory/shell'
6
+ import { createFont, deleteFont, fetchFontList, updateFont } from '@things-factory/font-base'
1
7
  import { i18next, localize } from '@things-factory/i18n-base'
2
- import { css, html, LitElement } from 'lit-element'
8
+
9
+ import Headroom from '@operato/headroom'
3
10
  import { connect } from 'pwa-helpers/connect-mixin.js'
4
11
  import gql from 'graphql-tag'
5
- import uuid from 'uuid/v4'
6
- import Headroom from 'headroom.js'
7
-
8
- import { store, client } from '@things-factory/shell'
9
12
  import { pulltorefresh } from '@things-factory/utils'
10
- import { ScrollbarStyles, HeadroomStyles } from '@things-factory/styles'
11
- import { fetchFontList, createFont, updateFont, deleteFont } from '@things-factory/font-base'
12
- import './font-creation-card'
13
+ import uuid from 'uuid/v4'
13
14
 
14
15
  export class FontSelector extends localize(i18next)(connect(store)(LitElement)) {
15
16
  static get styles() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/font-ui",
3
- "version": "3.6.13",
3
+ "version": "3.6.19",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -24,10 +24,11 @@
24
24
  "migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
25
25
  },
26
26
  "dependencies": {
27
- "@things-factory/attachment-ui": "^3.6.13",
28
- "@things-factory/font-base": "^3.6.13",
29
- "@things-factory/layout-base": "^3.6.13",
27
+ "@operato/headroom": "^0.1.7",
28
+ "@things-factory/attachment-ui": "^3.6.19",
29
+ "@things-factory/font-base": "^3.6.19",
30
+ "@things-factory/layout-base": "^3.6.19",
30
31
  "uuid": "^8.3.2"
31
32
  },
32
- "gitHead": "ea358da2f9aa7d1dc27422f863c9ccf4aeb457a8"
33
+ "gitHead": "e8a5ade8e7c470c6e51dca428409c405b7cccf3a"
33
34
  }