@operato/font 1.0.0-beta.17 → 1.0.0-beta.18

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.
Files changed (46) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/custom-elements.json +841 -0
  3. package/dist/src/font-creation-card.d.ts +18 -0
  4. package/dist/src/font-creation-card.js +258 -0
  5. package/dist/src/font-creation-card.js.map +1 -0
  6. package/dist/src/font-selector.d.ts +36 -0
  7. package/dist/src/font-selector.js +285 -0
  8. package/dist/src/font-selector.js.map +1 -0
  9. package/dist/src/graphql-client.d.ts +20 -0
  10. package/dist/src/graphql-client.js +109 -0
  11. package/dist/src/graphql-client.js.map +1 -0
  12. package/dist/src/index.d.ts +5 -0
  13. package/dist/src/index.js +6 -0
  14. package/dist/src/index.js.map +1 -0
  15. package/dist/src/ox-file-selector.d.ts +12 -0
  16. package/dist/src/ox-file-selector.js +129 -0
  17. package/dist/src/ox-file-selector.js.map +1 -0
  18. package/dist/src/ox-font-selector.d.ts +15 -0
  19. package/dist/src/ox-font-selector.js +88 -0
  20. package/dist/src/ox-font-selector.js.map +1 -0
  21. package/dist/src/ox-property-editor-font-selector.d.ts +8 -0
  22. package/dist/src/ox-property-editor-font-selector.js +13 -0
  23. package/dist/src/ox-property-editor-font-selector.js.map +1 -0
  24. package/dist/src/redux-font-actions.d.ts +7 -0
  25. package/dist/src/redux-font-actions.js +19 -0
  26. package/dist/src/redux-font-actions.js.map +1 -0
  27. package/dist/src/redux-font-reducers.d.ts +12 -0
  28. package/dist/src/redux-font-reducers.js +70 -0
  29. package/dist/src/redux-font-reducers.js.map +1 -0
  30. package/dist/tsconfig.tsbuildinfo +1 -0
  31. package/package.json +30 -18
  32. package/src/font-creation-card.ts +260 -0
  33. package/src/font-selector.ts +284 -0
  34. package/src/{graphql-client.js → graphql-client.ts} +5 -6
  35. package/src/index.ts +6 -0
  36. package/src/ox-file-selector.ts +114 -0
  37. package/src/{ox-font-selector.js → ox-font-selector.ts} +32 -36
  38. package/src/{ox-property-editor-font-selector.js → ox-property-editor-font-selector.ts} +1 -2
  39. package/src/redux-font-actions.ts +21 -0
  40. package/src/{redux-font-reducers.js → redux-font-reducers.ts} +17 -9
  41. package/src/font-creation-card.js +0 -270
  42. package/src/font-selector.js +0 -287
  43. package/src/index.js +0 -6
  44. package/src/ox-file-selector.js +0 -138
  45. package/src/redux-font-actions.js +0 -20
  46. package/things-factory.config.js +0 -5
@@ -1,20 +0,0 @@
1
- import * as client from './graphql-client'
2
-
3
- export const UPDATE_FONT_LIST = 'UPDATE_FONT_LIST'
4
- export const CLEAR_FONT_LIST = 'CLEAR_FONT_LIST'
5
-
6
- export const actionUpdateFontList = listParams => async dispatch => {
7
- try {
8
- const fonts = await client.fetchFontList(listParams || { filters: [] })
9
-
10
- dispatch({
11
- type: UPDATE_FONT_LIST,
12
- list: fonts && fonts.items
13
- })
14
- } catch (error) {
15
- console.error(error)
16
- dispatch({
17
- type: CLEAR_FONT_LIST
18
- })
19
- }
20
- }
@@ -1,5 +0,0 @@
1
- import bootstrap from './client/bootstrap'
2
-
3
- export default {
4
- bootstrap
5
- }