@operato/font 1.0.0-beta.8 → 1.0.1
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.
- package/CHANGELOG.md +367 -0
- package/custom-elements.json +855 -0
- package/dist/src/font-creation-card.d.ts +18 -0
- package/dist/src/font-creation-card.js +258 -0
- package/dist/src/font-creation-card.js.map +1 -0
- package/dist/src/font-graphql-client.d.ts +20 -0
- package/dist/src/font-graphql-client.js +109 -0
- package/dist/src/font-graphql-client.js.map +1 -0
- package/dist/src/font-selector.d.ts +36 -0
- package/dist/src/font-selector.js +285 -0
- package/dist/src/font-selector.js.map +1 -0
- package/dist/src/index.d.ts +5 -0
- package/dist/src/index.js +6 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/ox-file-selector.d.ts +12 -0
- package/dist/src/ox-file-selector.js +129 -0
- package/dist/src/ox-file-selector.js.map +1 -0
- package/dist/src/ox-font-selector.d.ts +15 -0
- package/dist/src/ox-font-selector.js +88 -0
- package/dist/src/ox-font-selector.js.map +1 -0
- package/dist/src/ox-property-editor-font-selector.d.ts +8 -0
- package/dist/src/ox-property-editor-font-selector.js +13 -0
- package/dist/src/ox-property-editor-font-selector.js.map +1 -0
- package/dist/src/redux-font-actions.d.ts +7 -0
- package/dist/src/redux-font-actions.js +19 -0
- package/dist/src/redux-font-actions.js.map +1 -0
- package/dist/src/redux-font-reducers.d.ts +12 -0
- package/dist/src/redux-font-reducers.js +70 -0
- package/dist/src/redux-font-reducers.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +65 -20
- package/src/font-creation-card.ts +260 -0
- package/src/{graphql-client.js → font-graphql-client.ts} +35 -26
- package/src/font-selector.ts +284 -0
- package/src/index.ts +6 -0
- package/src/ox-file-selector.ts +114 -0
- package/src/ox-font-selector.ts +94 -0
- package/src/ox-property-editor-font-selector.ts +17 -0
- package/src/redux-font-actions.ts +21 -0
- package/src/redux-font-reducers.ts +88 -0
- package/src/font-creation-card.js +0 -311
- package/src/font-selector.js +0 -465
- package/src/index.js +0 -3
- package/src/ox-font-selector.js +0 -102
- package/src/ox-property-editor-font-selector.js +0 -25
- package/things-factory.config.js +0 -5
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare type Font = {
|
|
2
|
+
name: string;
|
|
3
|
+
provider: string;
|
|
4
|
+
uri: string;
|
|
5
|
+
active: boolean;
|
|
6
|
+
files: Array<{
|
|
7
|
+
name: string;
|
|
8
|
+
fullpath: string;
|
|
9
|
+
}>;
|
|
10
|
+
};
|
|
11
|
+
declare const ReducerFont: (state: never[] | undefined, action: any) => Font[];
|
|
12
|
+
export default ReducerFont;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { CLEAR_FONT_LIST, UPDATE_FONT_LIST } from './redux-font-actions.js';
|
|
2
|
+
import WebFont from 'webfontloader';
|
|
3
|
+
const ReducerFont = (state = [], action) => {
|
|
4
|
+
switch (action.type) {
|
|
5
|
+
case UPDATE_FONT_LIST:
|
|
6
|
+
let newState = action.list;
|
|
7
|
+
let activatedFonts = newState.filter(font => font.active);
|
|
8
|
+
let googles = [];
|
|
9
|
+
let customs = [];
|
|
10
|
+
let customFontCSS = '';
|
|
11
|
+
activatedFonts.forEach(font => {
|
|
12
|
+
const { name, provider, files, uri } = font;
|
|
13
|
+
if (provider === 'google') {
|
|
14
|
+
googles.push(name);
|
|
15
|
+
}
|
|
16
|
+
else if (provider === 'custom') {
|
|
17
|
+
customs.push(name);
|
|
18
|
+
if (files && files.length > 0) {
|
|
19
|
+
customFontCSS += files
|
|
20
|
+
.map(file => {
|
|
21
|
+
const { name: filename, fullpath } = file;
|
|
22
|
+
const bold = filename.toUpperCase().indexOf('BOLD') !== -1;
|
|
23
|
+
return `@font-face {
|
|
24
|
+
font-family: '${name}';
|
|
25
|
+
src: local('${name}'), url(${fullpath});
|
|
26
|
+
font-weight: ${bold ? 'bold' : 'normal'};
|
|
27
|
+
}
|
|
28
|
+
`;
|
|
29
|
+
})
|
|
30
|
+
.join('\n');
|
|
31
|
+
}
|
|
32
|
+
else {
|
|
33
|
+
customFontCSS += `@font-face {
|
|
34
|
+
font-family: '${name}';
|
|
35
|
+
src: local('${name}')${uri ? `, url(${uri})` : ''};
|
|
36
|
+
}
|
|
37
|
+
`;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
let style = document.head.querySelector('#custom-fonts');
|
|
42
|
+
if (!style) {
|
|
43
|
+
style = document.createElement('style');
|
|
44
|
+
style.id = 'custom-fonts';
|
|
45
|
+
document.head.appendChild(style);
|
|
46
|
+
}
|
|
47
|
+
style.innerHTML = customFontCSS;
|
|
48
|
+
// TODO: typekit 등 타 서비스 지원
|
|
49
|
+
let WebFontConfig = {};
|
|
50
|
+
if (googles.length) {
|
|
51
|
+
WebFontConfig.google = {
|
|
52
|
+
families: googles
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
if (customs.length) {
|
|
56
|
+
WebFontConfig.custom = {
|
|
57
|
+
families: customs
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
if (Object.keys(WebFontConfig).length)
|
|
61
|
+
WebFont.load(WebFontConfig);
|
|
62
|
+
return newState;
|
|
63
|
+
case CLEAR_FONT_LIST:
|
|
64
|
+
return [];
|
|
65
|
+
default:
|
|
66
|
+
return state;
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
export default ReducerFont;
|
|
70
|
+
//# sourceMappingURL=redux-font-reducers.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"redux-font-reducers.js","sourceRoot":"","sources":["../../src/redux-font-reducers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAA;AAG3E,OAAO,OAAO,MAAM,eAAe,CAAA;AAUnC,MAAM,WAAW,GAAG,CAAC,KAAK,GAAG,EAAE,EAAE,MAAW,EAAE,EAAE;IAC9C,QAAQ,MAAM,CAAC,IAAI,EAAE;QACnB,KAAK,gBAAgB;YACnB,IAAI,QAAQ,GAAG,MAAM,CAAC,IAAmB,CAAA;YACzC,IAAI,cAAc,GAAG,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;YAEzD,IAAI,OAAO,GAAG,EAAmB,CAAA;YACjC,IAAI,OAAO,GAAG,EAAmB,CAAA;YACjC,IAAI,aAAa,GAAG,EAAE,CAAA;YAEtB,cAAc,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;gBAC5B,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,IAAI,CAAA;gBAE3C,IAAI,QAAQ,KAAK,QAAQ,EAAE;oBACzB,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;iBACnB;qBAAM,IAAI,QAAQ,KAAK,QAAQ,EAAE;oBAChC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;oBAElB,IAAI,KAAK,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE;wBAC7B,aAAa,IAAI,KAAK;6BACnB,GAAG,CAAC,IAAI,CAAC,EAAE;4BACV,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,GAAG,IAAI,CAAA;4BACzC,MAAM,IAAI,GAAG,QAAQ,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAA;4BAE1D,OAAO;gCACS,IAAI;8BACN,IAAI,WAAW,QAAQ;+BACtB,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,QAAQ;;eAExC,CAAA;wBACD,CAAC,CAAC;6BACD,IAAI,CAAC,IAAI,CAAC,CAAA;qBACd;yBAAM;wBACL,aAAa,IAAI;8BACC,IAAI;4BACN,IAAI,KAAK,GAAG,CAAC,CAAC,CAAC,SAAS,GAAG,GAAG,CAAC,CAAC,CAAC,EAAE;;aAElD,CAAA;qBACF;iBACF;YACH,CAAC,CAAC,CAAA;YAEF,IAAI,KAAK,GAAG,QAAQ,CAAC,IAAI,CAAC,aAAa,CAAC,eAAe,CAAqB,CAAA;YAC5E,IAAI,CAAC,KAAK,EAAE;gBACV,KAAK,GAAG,QAAQ,CAAC,aAAa,CAAC,OAAO,CAAC,CAAA;gBACvC,KAAK,CAAC,EAAE,GAAG,cAAc,CAAA;gBACzB,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAA;aACjC;YACD,KAAK,CAAC,SAAS,GAAG,aAAa,CAAA;YAE/B,2BAA2B;YAC3B,IAAI,aAAa,GAAG,EAAS,CAAA;YAC7B,IAAI,OAAO,CAAC,MAAM,EAAE;gBAClB,aAAa,CAAC,MAAM,GAAG;oBACrB,QAAQ,EAAE,OAAO;iBAClB,CAAA;aACF;YACD,IAAI,OAAO,CAAC,MAAM,EAAE;gBAClB,aAAa,CAAC,MAAM,GAAG;oBACrB,QAAQ,EAAE,OAAO;iBAClB,CAAA;aACF;YACD,IAAI,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,MAAM;gBAAE,OAAO,CAAC,IAAI,CAAC,aAAa,CAAC,CAAA;YAElE,OAAO,QAAQ,CAAA;QAEjB,KAAK,eAAe;YAClB,OAAO,EAAE,CAAA;QAEX;YACE,OAAO,KAAK,CAAA;KACf;AACH,CAAC,CAAA;AAED,eAAe,WAAW,CAAA","sourcesContent":["import { CLEAR_FONT_LIST, UPDATE_FONT_LIST } from './redux-font-actions.js'\n\nimport { Action } from 'redux'\nimport WebFont from 'webfontloader'\n\ntype Font = {\n name: string\n provider: string\n uri: string\n active: boolean\n files: Array<{ name: string; fullpath: string }>\n}\n\nconst ReducerFont = (state = [], action: any) => {\n switch (action.type) {\n case UPDATE_FONT_LIST:\n let newState = action.list as Array<Font>\n let activatedFonts = newState.filter(font => font.active)\n\n let googles = [] as Array<string>\n let customs = [] as Array<string>\n let customFontCSS = ''\n\n activatedFonts.forEach(font => {\n const { name, provider, files, uri } = font\n\n if (provider === 'google') {\n googles.push(name)\n } else if (provider === 'custom') {\n customs.push(name)\n\n if (files && files.length > 0) {\n customFontCSS += files\n .map(file => {\n const { name: filename, fullpath } = file\n const bold = filename.toUpperCase().indexOf('BOLD') !== -1\n\n return `@font-face {\n font-family: '${name}';\n src: local('${name}'), url(${fullpath});\n font-weight: ${bold ? 'bold' : 'normal'};\n }\n `\n })\n .join('\\n')\n } else {\n customFontCSS += `@font-face {\n font-family: '${name}';\n src: local('${name}')${uri ? `, url(${uri})` : ''};\n }\n `\n }\n }\n })\n\n let style = document.head.querySelector('#custom-fonts') as HTMLStyleElement\n if (!style) {\n style = document.createElement('style')\n style.id = 'custom-fonts'\n document.head.appendChild(style)\n }\n style.innerHTML = customFontCSS\n\n // TODO: typekit 등 타 서비스 지원\n let WebFontConfig = {} as any\n if (googles.length) {\n WebFontConfig.google = {\n families: googles\n }\n }\n if (customs.length) {\n WebFontConfig.custom = {\n families: customs\n }\n }\n if (Object.keys(WebFontConfig).length) WebFont.load(WebFontConfig)\n\n return newState\n\n case CLEAR_FONT_LIST:\n return []\n\n default:\n return state\n }\n}\n\nexport default ReducerFont\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit/index.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button-base.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button.d.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../src/ox-file-selector.ts","../../../node_modules/i18next/index.d.ts","../../i18n/dist/src/config.d.ts","../../i18n/dist/src/localize.d.ts","../../i18n/dist/src/ox-i18n.d.ts","../../i18n/dist/src/ox-i18n-selector.d.ts","../../i18n/dist/src/index.d.ts","../src/font-creation-card.ts","../../graphql/dist/src/gql-context.d.ts","../../../node_modules/graphql/version.d.ts","../../../node_modules/graphql/jsutils/maybe.d.ts","../../../node_modules/graphql/language/source.d.ts","../../../node_modules/graphql/jsutils/objmap.d.ts","../../../node_modules/graphql/jsutils/path.d.ts","../../../node_modules/graphql/jsutils/promiseorvalue.d.ts","../../../node_modules/graphql/language/kinds.d.ts","../../../node_modules/graphql/language/tokenkind.d.ts","../../../node_modules/graphql/language/ast.d.ts","../../../node_modules/graphql/language/location.d.ts","../../../node_modules/graphql/error/graphqlerror.d.ts","../../../node_modules/graphql/language/directivelocation.d.ts","../../../node_modules/graphql/type/directives.d.ts","../../../node_modules/graphql/type/schema.d.ts","../../../node_modules/graphql/type/definition.d.ts","../../../node_modules/graphql/execution/execute.d.ts","../../../node_modules/graphql/graphql.d.ts","../../../node_modules/graphql/type/scalars.d.ts","../../../node_modules/graphql/type/introspection.d.ts","../../../node_modules/graphql/type/validate.d.ts","../../../node_modules/graphql/type/assertname.d.ts","../../../node_modules/graphql/type/index.d.ts","../../../node_modules/graphql/language/printlocation.d.ts","../../../node_modules/graphql/language/lexer.d.ts","../../../node_modules/graphql/language/parser.d.ts","../../../node_modules/graphql/language/printer.d.ts","../../../node_modules/graphql/language/visitor.d.ts","../../../node_modules/graphql/language/predicates.d.ts","../../../node_modules/graphql/language/index.d.ts","../../../node_modules/graphql/execution/subscribe.d.ts","../../../node_modules/graphql/execution/values.d.ts","../../../node_modules/graphql/execution/index.d.ts","../../../node_modules/graphql/subscription/index.d.ts","../../../node_modules/graphql/utilities/typeinfo.d.ts","../../../node_modules/graphql/validation/validationcontext.d.ts","../../../node_modules/graphql/validation/validate.d.ts","../../../node_modules/graphql/validation/specifiedrules.d.ts","../../../node_modules/graphql/validation/rules/executabledefinitionsrule.d.ts","../../../node_modules/graphql/validation/rules/fieldsoncorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/fragmentsoncompositetypesrule.d.ts","../../../node_modules/graphql/validation/rules/knownargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowndirectivesrule.d.ts","../../../node_modules/graphql/validation/rules/knownfragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/knowntypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/loneanonymousoperationrule.d.ts","../../../node_modules/graphql/validation/rules/nofragmentcyclesrule.d.ts","../../../node_modules/graphql/validation/rules/noundefinedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedfragmentsrule.d.ts","../../../node_modules/graphql/validation/rules/nounusedvariablesrule.d.ts","../../../node_modules/graphql/validation/rules/overlappingfieldscanbemergedrule.d.ts","../../../node_modules/graphql/validation/rules/possiblefragmentspreadsrule.d.ts","../../../node_modules/graphql/validation/rules/providedrequiredargumentsrule.d.ts","../../../node_modules/graphql/validation/rules/scalarleafsrule.d.ts","../../../node_modules/graphql/validation/rules/singlefieldsubscriptionsrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivesperlocationrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefragmentnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueinputfieldnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquevariablenamesrule.d.ts","../../../node_modules/graphql/validation/rules/valuesofcorrecttyperule.d.ts","../../../node_modules/graphql/validation/rules/variablesareinputtypesrule.d.ts","../../../node_modules/graphql/validation/rules/variablesinallowedpositionrule.d.ts","../../../node_modules/graphql/validation/rules/loneschemadefinitionrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueoperationtypesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquetypenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueenumvaluenamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquefielddefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniqueargumentdefinitionnamesrule.d.ts","../../../node_modules/graphql/validation/rules/uniquedirectivenamesrule.d.ts","../../../node_modules/graphql/validation/rules/possibletypeextensionsrule.d.ts","../../../node_modules/graphql/validation/rules/custom/nodeprecatedcustomrule.d.ts","../../../node_modules/graphql/validation/rules/custom/noschemaintrospectioncustomrule.d.ts","../../../node_modules/graphql/validation/index.d.ts","../../../node_modules/graphql/error/syntaxerror.d.ts","../../../node_modules/graphql/error/locatederror.d.ts","../../../node_modules/graphql/error/index.d.ts","../../../node_modules/graphql/utilities/getintrospectionquery.d.ts","../../../node_modules/graphql/utilities/getoperationast.d.ts","../../../node_modules/graphql/utilities/getoperationroottype.d.ts","../../../node_modules/graphql/utilities/introspectionfromschema.d.ts","../../../node_modules/graphql/utilities/buildclientschema.d.ts","../../../node_modules/graphql/utilities/buildastschema.d.ts","../../../node_modules/graphql/utilities/extendschema.d.ts","../../../node_modules/graphql/utilities/lexicographicsortschema.d.ts","../../../node_modules/graphql/utilities/printschema.d.ts","../../../node_modules/graphql/utilities/typefromast.d.ts","../../../node_modules/graphql/utilities/valuefromast.d.ts","../../../node_modules/graphql/utilities/valuefromastuntyped.d.ts","../../../node_modules/graphql/utilities/astfromvalue.d.ts","../../../node_modules/graphql/utilities/coerceinputvalue.d.ts","../../../node_modules/graphql/utilities/concatast.d.ts","../../../node_modules/graphql/utilities/separateoperations.d.ts","../../../node_modules/graphql/utilities/stripignoredcharacters.d.ts","../../../node_modules/graphql/utilities/typecomparators.d.ts","../../../node_modules/graphql/utilities/assertvalidname.d.ts","../../../node_modules/graphql/utilities/findbreakingchanges.d.ts","../../../node_modules/graphql/utilities/typedquerydocumentnode.d.ts","../../../node_modules/graphql/utilities/index.d.ts","../../../node_modules/graphql/index.d.ts","../../../node_modules/ts-invariant/lib/invariant.d.ts","../../../node_modules/@apollo/client/utilities/globals/dev.d.ts","../../../node_modules/@apollo/client/utilities/globals/maybe.d.ts","../../../node_modules/@apollo/client/utilities/globals/global.d.ts","../../../node_modules/@apollo/client/utilities/globals/index.d.ts","../../../node_modules/@apollo/client/utilities/graphql/directives.d.ts","../../../node_modules/@apollo/client/utilities/graphql/fragments.d.ts","../../../node_modules/@apollo/client/utilities/graphql/getfromast.d.ts","../../../node_modules/@apollo/client/utilities/graphql/storeutils.d.ts","../../../node_modules/@apollo/client/utilities/graphql/transform.d.ts","../../../node_modules/@graphql-typed-document-node/core/dist/index.d.ts","../../../node_modules/@wry/trie/lib/trie.d.ts","../../../node_modules/@apollo/client/cache/core/types/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/entitystore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/types.d.ts","../../../node_modules/@apollo/client/cache/inmemory/fixpolyfills.d.ts","../../../node_modules/@apollo/client/cache/inmemory/reactivevars.d.ts","../../../node_modules/@apollo/client/cache/inmemory/inmemorycache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/object-canon.d.ts","../../../node_modules/@apollo/client/cache/inmemory/readfromstore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/writetostore.d.ts","../../../node_modules/@apollo/client/cache/inmemory/policies.d.ts","../../../node_modules/@apollo/client/cache/core/types/common.d.ts","../../../node_modules/@apollo/client/cache/core/types/dataproxy.d.ts","../../../node_modules/@apollo/client/cache/core/cache.d.ts","../../../node_modules/@apollo/client/cache/inmemory/helpers.d.ts","../../../node_modules/@apollo/client/cache/index.d.ts","../../../node_modules/@apollo/client/utilities/policies/pagination.d.ts","../../../node_modules/zen-observable-ts/module.d.ts","../../../node_modules/@apollo/client/node_modules/symbol-observable/index.d.ts","../../../node_modules/@apollo/client/utilities/observables/observable.d.ts","../../../node_modules/@apollo/client/utilities/common/objects.d.ts","../../../node_modules/@apollo/client/utilities/common/mergedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/clonedeep.d.ts","../../../node_modules/@apollo/client/utilities/common/maybedeepfreeze.d.ts","../../../node_modules/@apollo/client/utilities/observables/iteration.d.ts","../../../node_modules/@apollo/client/utilities/observables/asyncmap.d.ts","../../../node_modules/@apollo/client/utilities/observables/concast.d.ts","../../../node_modules/@apollo/client/utilities/observables/subclassing.d.ts","../../../node_modules/@apollo/client/utilities/common/arrays.d.ts","../../../node_modules/@apollo/client/utilities/common/errorhandling.d.ts","../../../node_modules/@apollo/client/utilities/common/canuse.d.ts","../../../node_modules/@apollo/client/utilities/common/compact.d.ts","../../../node_modules/@apollo/client/utilities/common/makeuniqueid.d.ts","../../../node_modules/@apollo/client/utilities/common/stringifyfordisplay.d.ts","../../../node_modules/@apollo/client/utilities/common/mergeoptions.d.ts","../../../node_modules/@apollo/client/utilities/types/isstrictlyany.d.ts","../../../node_modules/@apollo/client/utilities/index.d.ts","../../../node_modules/@apollo/client/link/core/types.d.ts","../../../node_modules/@apollo/client/link/core/apollolink.d.ts","../../../node_modules/@apollo/client/link/core/empty.d.ts","../../../node_modules/@apollo/client/link/core/from.d.ts","../../../node_modules/@apollo/client/link/core/split.d.ts","../../../node_modules/@apollo/client/link/core/concat.d.ts","../../../node_modules/@apollo/client/link/core/execute.d.ts","../../../node_modules/@apollo/client/link/core/index.d.ts","../../../node_modules/@apollo/client/link/http/parseandcheckhttpresponse.d.ts","../../../node_modules/@apollo/client/link/http/serializefetchparameter.d.ts","../../../node_modules/@apollo/client/link/http/selecthttpoptionsandbody.d.ts","../../../node_modules/@apollo/client/link/http/checkfetcher.d.ts","../../../node_modules/@apollo/client/link/http/createsignalifsupported.d.ts","../../../node_modules/@apollo/client/link/http/selecturi.d.ts","../../../node_modules/@apollo/client/link/http/createhttplink.d.ts","../../../node_modules/@apollo/client/link/http/httplink.d.ts","../../../node_modules/@apollo/client/link/http/rewriteuriforget.d.ts","../../../node_modules/@apollo/client/link/http/index.d.ts","../../../node_modules/@apollo/client/core/networkstatus.d.ts","../../../node_modules/@apollo/client/link/utils/fromerror.d.ts","../../../node_modules/@apollo/client/link/utils/topromise.d.ts","../../../node_modules/@apollo/client/link/utils/frompromise.d.ts","../../../node_modules/@apollo/client/link/utils/throwservererror.d.ts","../../../node_modules/@apollo/client/link/utils/validateoperation.d.ts","../../../node_modules/@apollo/client/link/utils/createoperation.d.ts","../../../node_modules/@apollo/client/link/utils/transformoperation.d.ts","../../../node_modules/@apollo/client/link/utils/index.d.ts","../../../node_modules/@apollo/client/errors/index.d.ts","../../../node_modules/@apollo/client/core/queryinfo.d.ts","../../../node_modules/@apollo/client/core/localstate.d.ts","../../../node_modules/@apollo/client/core/types.d.ts","../../../node_modules/@apollo/client/core/watchqueryoptions.d.ts","../../../node_modules/@apollo/client/core/querymanager.d.ts","../../../node_modules/@apollo/client/core/observablequery.d.ts","../../../node_modules/@apollo/client/core/apolloclient.d.ts","../../../node_modules/graphql-tag/lib/index.d.ts","../../../node_modules/@apollo/client/core/index.d.ts","../../graphql/dist/src/graphql-client.d.ts","../../graphql/dist/src/json-to-grqphql-query.d.ts","../../graphql/dist/src/index.d.ts","../src/font-graphql-client.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../headroom/dist/src/headroom.d.ts","../../headroom/dist/src/index.d.ts","../../pull-to-refresh/dist/src/pull-to-refresh-control.d.ts","../../pull-to-refresh/dist/src/pull-to-refresh.d.ts","../../pull-to-refresh/dist/src/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../shell/dist/src/store.d.ts","../../shell/dist/src/actions/app.d.ts","../../shell/dist/src/actions/route.d.ts","../../shell/dist/src/actions/index.d.ts","../../shell/dist/src/app/pages/page-view.d.ts","../../shell/dist/src/index.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/index.d.ts","../src/redux-font-actions.ts","../src/font-selector.ts","../../layout/dist/src/initializer.d.ts","../../popup/dist/src/ox-popup.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../../../node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-button.d.ts","../../layout/dist/src/layouts/ox-snack-bar.d.ts","../../layout/dist/src/components/ox-resize-splitter.d.ts","../../layout/dist/src/layouts/ox-header-bar.d.ts","../../layout/dist/src/layouts/ox-nav-bar.d.ts","../../layout/dist/src/layouts/ox-aside-bar.d.ts","../../layout/dist/src/layouts/ox-footer-bar.d.ts","../../layout/dist/src/actions/layout.d.ts","../../layout/dist/src/actions/snackbar.d.ts","../../layout/dist/src/index.d.ts","../src/ox-font-selector.ts","../../property-editor/dist/src/types.d.ts","../../property-editor/dist/src/ox-property-editor.d.ts","../../property-editor/dist/src/index.d.ts","../src/ox-property-editor-font-selector.ts","../../../node_modules/@types/webfontloader/index.d.ts","../src/redux-font-reducers.ts","../src/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","52dd370c807255c61765347fc90a9bee3c522b8744dc222714e2bf6b5be3a823","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","13bb750b495c48fd60d7b5e09f65d4a7b010ab7e09a8943a6d54511e7d184f84","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"3f30c6b57bf5eb7a7d4298506b78b18d428a39a409e1eadd93a3fdd0299d2687","8be48c7828a22d50f128f317cdd8ac25ef0ee54c877b8b5c464887234f619783","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","a5a7c7d197c7b1918bddb0dd30bf8979a38828b24467ec45db093bf4621507ef",{"version":"afcd875785333f656f79bf1b3a445ceecc6aaf8e2b7cde59309a8778f41de613","affectsGlobalScope":true},"241000969e5367a9a9b9a4f57963e54e5a012c9d89c273526c0115650a7b9e5f","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","097a7e3badfd1c4b35f72aa0f722f5714a4f6a84e53fca5a79dcfebbfc5e718d","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","0a478dcb6e6bd8a5d871165659c79cee7b8c3b7a87289118d22e1a04d171e252","e385eb01000d045ea07cea09c488f66e051709a9ac460bf271623f9984e0c419","bf69beba89702c85d84546269e0d4e8b128d32e26b314ee9b501b0b32c82490b","46f3a421b048670d16a3c02589261f17c1cea687f2602eed31e1335b53aed785","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","c784eab1cf838d9d6527bce3d9f2d373145606666b68f7610291a7adf6e6bda9","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a",{"version":"1cedf457fc86fac950c3200d6d450195cdd8b1095bcfd55189090a4bcde7b3ff","signature":"12ad9329886b0764414ac0c3a50cc4d68b9d0c43b1b555f0d2af5e5027b967ea"},"bae42767ebbb6b7946e71af64f5c2c2a3f49eb1e29aee03293427881fcd7b215","0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","7b542379501867f7d2418681fbea38f75c756c2dd67e00e14ab1e125ae604095","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","a616e1b4eed03c1feb2a6fba721e5cbcb9c23cbe29c1858949a361f80719c0e8","48ba49f8bfce8c08ad1e7e54f0b85da9db7317ca76835d1c2640567e3fbd50c6",{"version":"e84eae78d66683004da65fb65dac1ed1b12415fc74a98a37dec902a5a46d6e44","signature":"bf865da40b7c88af30ccd782cda30cb26ac07e34db2f8e2de1a7ff18415140d6"},"7d54d48a4365f355a7759b1e29f43dea9163a9445d3f26e1234dea0af3e6a16d","78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","f473be7c909dbd10c40f013e70da40f24648b2abb01025436fe0a0eecd0e83be","c98583f02275727ead0256c97298c15fb77a1c1e473b03c3b61291c63c66d385","9a7904e39add402d71343ac8de5303e990d9abb1fc703c64991c655b718267a5","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","7920b8aa27a7b6a90bf9f5dc21eedac7f38ca8717ebe70495ab616eb52b3247b","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","391d72e39677e72ba87f890f7a6e53a1830a07bf3fdd6128fe59ac028d7817a1","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","0a13027e3939d08a00e8bf5a99500c9bcafed3d58d7da856093af83add1fb102","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","c62947664e97a5f6502834551b0a66873f5580019e1a00500fa02c2f52ef3d0e","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","08b603e3737ff32a685eefca3e7f21324b8b868f3322416cef759f8a54d234ef","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","200a7b7eb3163da4327412c650e43fbe66c73604a23a694f95ede53c250bfc3b","f254a186c5fc9355b388d5e1643b9f85cb3a84c03d48b0ce7297a352db0b367d","a960dc35ca7a0854d06432d698547debe3a4760438deea197fde8a3ff2101180","5b3386f2d01b9af3d84e1854845ef04b26f742c6337fd0e855a987333f8240df","45f238c699f946ac07f7e7eb7f1ae65b7da6323b8146a7cf5b3fd775b8c00b11","fd7059d47830c465f3a32f1928bd61f7ccb62dac8089ecea0c5b2b365afd9b64","f26f3b22a0ce930bf8e6eb27806db849f616784527a93269c2e3861e875815e8","2c309164cb0e2c526d1d275589679024e669a77ada61d5ec7a3ec93b8cbd542c","353ff6badc7a53ba2487f4eb074bd5d0b41db4984134e507b1f6f766780b82fb","55ac490a5bdc6da1941875c26371e1e94a73b0593ae26509df4c0b6616ad674f","233fc0209343fa04c2a458537b4aaed00bed49f5db212a1fe5200dcee6e2fa4e","b830de197c8889ab5f03fc2211c2e1cee4478c4a5ceb05af2eaea23d9af3af0a","b62564be4535552ed34c9cececa78a0da7dd5447351e195e8cefaada1ba21129","4c9d4f0962f0caf85200c783d97f7049c5e58a48c6a5825e51fc6f0b974b0e9d","d737fc71b51b3e6c591e3edba25062644bbc95696240460adf5c9109df763fe5","b3dec0879e876086c6bd5d93b671bf3a034da7712ea60b6e815f1de987df060a","50134fabe24e7eb552897d84d2eaefc923d7577a5fef9427e268c469d8cdc7e1","00d3b08e4ea2d4d02e180810c9f6b03be1977d9d2ea5389141d3363efcd58f3c","5c7b4d69e9d49382954fb7c46b9e368b517b11a5f55f34e66b8fd9951fed6d34","47ca4f700d7cbd844259cb0fb35fbe484fdef7b794a6c60c3c8dfe02ad4be3b2","a34a4b7870a629ef38a8912c8ed915d7300fc555ebb75eaae4e1c502222628bb","f91a4509eb86e40562a7befcfbe7fe10776612196f44a4c9e0aada159b903b6d","f8555900075ce2073dedb0818960ea42b52d18e5729b44a6dc75c43bbd088ed1","dbd825417d2051294de6b53445bef43b0527e200d78e1a8ae6cfaf818da50278","c2bbb1290dfda842dc0b66a9d50da29972b5bcafd3d4b124a74cef3d3d2af610","efba682f8523e9957fe6a8c0a2630b2e24f45d53e448cd60500269e5cbf3d251","b2c46988d6d7d3d0da5cc2fa0c80e8a4adcb309071d4264ba6d30f2d67cd642c","ab218a7d41436bd2cae6bcbf7371bc9321786471de9997816e549184c3bdc335","9b51dd74a388c13e157c457cc39d59dc2aae2134f6a21cc6b695219932cb8817",{"version":"db06f4cdf70e3689f0cd5a96a6836f34024ad61e8dd01473560ebbcae09c532b","affectsGlobalScope":true},"6c71a186369074378653c84fe944b269db54501e33e790791d59a106482aae86","41db1e358120ce74584d9cf596344db2702f305b649c6c8c55ad4e27c440eaf1","ffb162ad0b1e5c1d9882a81a6af2ee94db93dc4f9fcfeb5e5a7a1025a40c1a24","d18cafabd6456b23ebcf11198c9c056a56361facb07977c653cce50a6ba184f9","29cce97240f57803d3ebbd2dce484634ff8646088287203d461dd97ae29cc692","29bfbafb7d1b80882c83b108f5242bd78aaad7fefc464fda5f571ffe6d8c5a99","a93475d7baca260e4db85215cfa6e59b2357e1f526b056b18ed9c4493e7b80c3","eaed3a7faeb31229dc14e0c13c30b7ce6ee625be2c684e13dbaf46f19b5cad50","820a5ca18bb09bc50ebd1856794e9dfbc5a7f855f610e6f9d59cbe3b9e1a7c8f","364524cd4d5db23c9d6aaaa9a8fb2f6d067fb39122728b78efed43055677bdbe","746b1ad552967231e762f8742671ad1f700e3dc3e259aa5def3a1f7f31135aff","e11cf956b17e2f7287e14c05d3790f34afc54d1d54b4c74b69b8c1849109feed","3e79b1b6beb23ce850766d185e632d24442afbd54667891c2e052c3ba93062d1","25978fa21b2728d3277888d33df9272738605df94140b4b0c883cf352ec31ca6","c9e5c708eb84894b985071080652da531d4b27ca8cb60963521270239cfe8c20","37d03426db10f974cc01937c9d121c99d9272ffa801d18fe90c4c91c6c98311b","89561071bc9d84d0d763b929dc34b0920365cd79d5f2a264b4b22a1f211c61d4","d762a442207965c55ed3185731d4a66fafdc0262c623d16ffb214acac18e3b4a","63d3ddfad484b1e3c3e4a3890fa312721064c8570c437081e597b8941a9b0be3","074d0c29700bd9667bc549f460ce2097132e13b2cfafac16be9dbe38756adc17","d20248b40c769f2957741b1fde5580cb2d4cb4c28651f7fd250eb02fa6c98f09","514791e8c0e59bd61576e76f61db12272e949bab76a3af11ccedfb75be3d4794","ad17364042b079f3c14b7d29eac304bcfe25cceb3565b4973f387bf1d5d27782","fccb69b68f78d7fbba625c31a5622a0682dbf8e88b51fd03ea50e721ca596296","2daed8a6f384d9bbfda7a08ad51f194ea391e1a4a581ab8c6af08822d2e1d86e","2f2dca6bd4f2f67a44848a53407e8b19ad36d0fe78b938b612494794d15e4139","b7ebd94ed755d68d46fdb6f1e3c031eb72c8942a08dc9bf4afbc5586d3efbb27","ff5fad599a44994948615b02ab9a4b10215fb631ecbc4d6e0fc8943ba8452d5a","363ae6ba6e8903b1972f9d9b9a57e69df939b2b7294a760ea4bccf2756e48f74","59e117fad3dc25be31325b8595d65e4fad0a323519b244f7095735b29740798e","3245a023245b2174422c427b2826ec5d28e689665b32dfe717b9921f13503c40","ba1380651f4f31c52a3b68dfbd2e820de6bb64de494930b6e990e99f1296edc9","e4dca3b5d2b2f31cfbbeeeefa2a5d2e909c61c00f17aa7be9fc396170981e368","131fdc917c4eec9e3b03d1ccd9a1154ca03cce5c9b3abc5e12677a5234c1ece8","e32e499cdb189c52a79433d0715e822419b6581199df2e93974378269ea7d528","b0b83a5d3e15193408b4145b8e27ffea7666c0a163e9f5f7e95ef960363d9fe1","c754af99b43287268ab8d94c69f0f9005ef3b029a0d35001d2af3297f8cf9f28","dfa584f5099cb5deee0c65137055b520473a23d9e20041bcbc107f2e9592cf14","f5800d0a2b11c8338d1205543f7352850deb101ba2372eb395839a60f9132d94","228700f3848072c320cf259ad6092013128639fd4f28d50a009f7409329865aa","3e7f64156b20e71249be6e8ce2f4ec5eaf265bd82156b75623a9c1044b11ddf5","70d7baad641e61f0e2f32dfb089aae0ffee36080ba0d1405c8be8b740421ea92","0e96ef72a2d31523a5eed98ceccd861e08ec69469fc269e7248e45c4fc66bcf8","6e83430621d62e7a87b205819bcb5ed54bc356e83f20a8654f12e3d43613acce","c18aa3cdf4ca66da764a7bb6a51118674cfcfe18b7dae7024b5080d03fb9e5a5","e20cf252e9c517654604ac4ceea19a0fc1259f24cc89c5e656ea33faa523aedb","95fe56d192ce6f1ca4948005eb47d0cfb68bd6227346a9aa12e7b838c553557e","b1f1ebc4e1589420d6a0586b1d8612802efd03f8a54b375fd1917fdf5a637581","95328498dcf755c3919f360e07c000018c1b54da1bbcc2b36c993364148fc00e","a5a16e2cf88ada37ed679ba577123f9711dc3ae44eb9edd6a4b91a0b896f1b07","66f9b646daa404710fa555328e9f161c87120a7b2c9dd2c5ef034acf8615b316","19cef1c1bd6bc0a7a0f67902cb46deb38371207ede06e87fe1df0d7c48dd7b3a","9b482c62894ce3717b901074eba991994a31aa8fa42f8e0df11a3d7302154303","5dcd41aeb5f7119177adab46147589a1618f2b35bd976e6c3a20ec328f58d1bd","18093dd86562c6177af8fb0a5d711ce38a642a944c2f2ba8f876fa7d53aba928","7f1cf2dab123e185e96bf46e7380fbb3946b8a8710263e2032429303496c2a34","3a33dc0aaca86bfc68a58b603aeada539a0e47bce983d88473c7076318b91c9f","e30056a44fcf06d1124d8b0d370a67e4f0d65f81563614f0aecdecc07c7ccdb1",{"version":"a1035aec1036ece8dc003205782b82383ba92510a633c2fa0e2deff0259ca353","signature":"44675e7025fe8e0aba9d9bf727d3a7c1636aa438994f585c0a8bb6b1cb1dd871"},{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","769c966ef166205a08c0382a298a6c5877951599d805931a963ae5650ee46391","35c1202e93852c1c233191971b8c4aefe5d3f9df287991585fe305078c0880e6","690a59ec8ef431839c447cd88fbb0bd0ce59c037736d8748737d4e0f2ed57077","4a2a6bd6a36b058effc58d1aab136cdbd66188773470885a4b414098a0d76821","b12f96f442196be954b8fa982f179527fff05a796962fecfb6e12b0a2c1b6867","701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","6d0c23f8c9efcd67b96bae7e7140cd9fdfeacc314c79220f48aaa5086585e31d","0dd5f5946c922d5bcf94d0b088bfed3f6a4dd3331e9fce9423d0adbb60c889c1","6bf72b2541469cac7a7882468d25a04fdff489625452ff7d3e670c764e5a9ba1","5257b95e47714b754c367ce742ada7042aade5bf8c88bc7dd5a23194e3a50fb0","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","0929ec89582904044a56ca8220114b7256450a197da22eb5c9b630be69a41372",{"version":"e663af8800ffc286c5a05720dad511a9eeb81d8aa7d2639583c9dfcc3e978354","signature":"bd37687f12187ddee43eeca6ead3450afb208ad08c2d8c81ffae934c3dc84bd8"},{"version":"d18bbe8a26e833dbe4c9fd784b70c5eab5caa12e9991cb0279316255d60121f9","signature":"bc5751041df5f2d3734a4a5b43583f3c1f257fd19321d1bcc8d8607e18e32d32"},"60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","b19e95136dd01ce850d7f05e05d594afecc4510fd1b44cdc049e4b7ce4d18e35","415ae3a9be423d2db81b7e16a6c053c83d3f83b1af03a2827aea3de084b70742","79be55362c82b8aa2f5dc063b51dbbc8f38f009d81c494aac4f671ff23fefb86","10cbee260a09cb62cc5516ea65aa7504f21ec98048a324e789d04d40d9057513","4d50db18bdcae4a401e888ac0f6b456d44405a860d38b90773158e2f11b1aa24","2fa8eeba1b6d29551683794e35cc3ea7bf2351f425f5023f0c1db691f551010c","73b33f358af52e1fa1942be3b8262e3c97ef189370feea3f43acfd883c1f8639","147cb5b590b77c8c58e4ef0af1ff11ee90ee2b34262816df0665b6ff8fd50aad","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},"67eee3f60d04105614d4bed2b3eef28dc7a3a746dcf59dffcc4254d7fd023762","628e5558b3df3fff39a900912739dffd7da24afb87821adffdc2df20cf834c52","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","ab5812bd79ae1dc511fd9e24271a7583ea9cfbba0982a72e3f076796f6ebb034","c44f30a25bfb7a67ca410fbf603979501133e5b5bd8741ecb389e60503a1cb82","62358f906a13ad95a4d41a589c4ef4c0edfd4cf313ba0cff057b5ac0bd5c2f06",{"version":"87ad2b857e68151fff37d8ced05814af6ec122cfeff25e5112fc7014eaa45b20","signature":"d07f1e592e0663a70d0eec9f3f74ada99df2f867384ca91e1870f61e83b5d088"},"7a286c7ce1f424de104823da3c89ebe10847fb084b98f55e175040ffefb727d1","fbda38155a615eafbfd0b5d5165ebb91873084ca1bff6f865aaaec11f0ca2395","4b19ef22586a488de7412e25b5490ace2562e86cfdb3e1c9a22cad11ecb9fd5e",{"version":"7fd7344eed23a0dba5a2651fabdc5e0db707008b2383b4b149af86966d508394","signature":"84921acdf0983e70391ef4f877620bfe61de9b1907ed5242da67a6943fc753e6"},"bb3378facb78384a76536ebbc67b36c808b4781a595fc80f41d80041af0b9b12",{"version":"8a0b51e85253c3146a320009bfe0b2aa157784e395f7d2c269c2b81cdb1eae3a","signature":"7f3d12b126981064b5af1762215ecfcd239afa7cd6ec6e02a461aba46d7b1d03"},{"version":"e65fde7a73ee5aaf8c57c422d07a0f501a614aebc48bb6ec9e818a427179c70b","signature":"18eda1c68b0e5225722d5d20a100bb685f14b0f5d5e5d74b64d8a44634610316"},"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"3e4624c306340ad303cc536a07004e81336c3f088308a9e4a9f4c957a3cda2fd","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","34ec1daf3566f26c43dbab380af0de1aac29166e57e4f9ef379a2f154e0cb290","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"249a2b90439cdfd51709539fbfa4dfe0791cbae6efce1e9b327ba8f8cd703f49","affectsGlobalScope":true},"2f60ac046e587e917d739f1edc77540eb0ec34f83090dae4ebd5f96c1c9578d4","a9b6b0f7b1e30359283b131ba6d1c51ee2d3601a2f12e1623141e6a1a60c92a5","aeee0090b38de0dd47ca9a79ad5c2d156e3e09d92306719b0b45a3e96098e564","7bac475dcdd9f7e4e9da934d32c305bc889c4ce3c8ac0ef45a93a8d670fff607","09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"3b145a2351f5cf16abf999c8d5f4481c74dffdc54ec1e9a89992e2622e1226c5","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","d270fd4b565eda11a0a737c181892316b7a1ace06c7988d0246219c3df11db06","4275d5f964e7fc7afc18538e26b3748c207dd772998346d17f409749aa1f3a63",{"version":"59a638a504490fecaacf0020b9814b6abee37edb66047eb1ab9f7c2274bf1da0","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","12a70315c8281e46d65696086dd25827408e967b305a22276ae2779fe519e0fe","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","29d613c3964ea75b2b4e0d17098245c34529282e9cc72b7e4eeb2a7b12c27cb7",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","dfe08140492cdc135fb7fd9c4a652c05207b61a436906079b87da1d3111314bf","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","089e1f8603cbc35ab977c8dcc662eb754b82fca32ed1dfb16bd682726c2d5432","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"82fc37849846a3a0264047621d5beb6ce2ddeb2f83bdee2c79523af3c3282d97",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[185,198,209,233,371],[208,209,210,371],[185,207,233,371],[185,196,208,371],[190,198,199,200,202,203,204,207,208,209,210,211,233,371],[197,198,200,207,208,233,371],[371],[185,200,207,233,371],[185,198,200,202,207,210,233,371],[190,371],[185,200,203,206,208,233,371],[270,371],[185,198,200,203,204,208,233,371],[185,199,207,208,210,233,371],[185,200,203,205,233,270,371],[185,212,233,241,251,263,264,265,267,371],[186,200,212,233,241,251,252,260,261,263,264,265,267,268,269,371],[185,212,233,241,264,268,371],[208,212,233,252,261,262,264,265,266,371],[185,212,233,241,252,261,264,265,266,267,371],[185,212,233,241,252,262,263,264,265,267,268,371],[185,196,212,233,241,252,261,262,263,265,267,371],[185,196,212,241,264,267,371],[185,190,251,260,371],[233,234,371],[235,371],[190,234,235,236,237,238,239,240,371],[185,233,371],[190,241,244,371],[241,244,371],[190,242,243,244,245,246,247,248,249,250,371],[241,371],[244,371],[185,241,371],[233,371],[190,253,254,255,256,257,258,259,371],[218,371],[185,371],[217,371],[186,187,188,189,371],[185,192,371],[190,191,192,193,194,195,213,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,371],[216,371],[214,215,371],[212,371],[45,371],[66,371],[45,66,371],[45,66,74,371],[43,44,371],[51,53,54,55,371],[51,52,61,62,63,307,371],[51,308,371],[51,61,62,63,371],[51,64,371],[51,371],[51,54,56,58,59,371],[51,60,371],[54,371],[55,57,371],[53,58,371],[327,371],[330,371],[331,336,371],[332,342,343,350,359,370,371],[332,333,342,350,371],[334,371],[335,336,343,351,371],[336,359,367,371],[337,339,342,350,371],[338,371],[339,340,371],[341,342,371],[342,371],[342,343,344,359,370,371],[342,343,344,359,362,371],[371,375],[345,350,359,370,371],[342,343,345,346,350,359,367,370,371],[345,347,359,367,370,371],[327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377],[342,348,371],[349,370,371],[339,342,350,359,371],[351,371],[352,371],[330,353,371],[354,369,371,375],[355,371],[356,371],[342,357,371],[357,358,371,373],[342,359,360,361,362,371],[359,361,371],[359,360,371],[362,371],[363,371],[342,365,366,371],[365,366,371],[336,350,359,367,371],[368,371],[350,369,371],[331,345,356,370,371],[336,371],[359,371,372],[371,373],[371,374],[331,336,342,344,353,359,370,371,373,375],[359,371,376],[46,371],[94,269,371],[87,88,94,95,371],[96,160,161,371],[87,94,96,371],[88,96,371],[87,89,90,91,94,96,99,100,371],[90,101,115,116,371],[87,94,99,100,101,371],[87,89,94,96,98,99,100,371],[87,88,99,100,101,371],[86,102,107,114,117,118,159,162,184,371],[87,371],[88,92,93,371],[88,92,93,94,95,97,108,109,110,111,112,113,371],[88,93,94,371],[88,371],[87,88,93,94,96,109,371],[94,371],[88,94,95,371],[92,94,371],[101,115,371],[87,89,90,91,94,99,371],[87,94,97,100,371],[90,98,99,100,103,104,105,106,371],[100,371],[87,89,94,96,98,100,371],[96,99,371],[96,371],[87,94,100,371],[88,94,99,110,371],[99,163,371],[96,100,371],[94,99,371],[99,371],[87,97,371],[87,94,371],[94,99,100,371],[119,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,371],[99,100,371],[89,94,371],[87,94,98,99,100,112,371],[87,89,94,100,371],[87,89,94,371],[120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,371],[112,120,371],[120,371],[87,94,96,99,119,120,371],[87,94,96,98,99,100,112,119,371],[45,49,371],[49,371],[48,49,371],[47,48,371],[67,68,69,70,71,72,73,74,75,371],[306,371],[45,49,50,371],[275,371],[42,51,76,77,83,371],[42,269,273,371],[42,51,76,83,84,274,276,278,281,288,295,296,371],[42,296,297,319,323,325,371],[42,51,52,65,76,371],[42,51,52,76,83,297,318,371],[42,51,319,322,371],[42,274,371],[42,275,296,324,371],[214,270,371],[85,271,272,371],[277,371],[78,371],[79,80,81,82,371],[51,78,371],[49,51,371],[51,305,371],[298,305,310,312,313,314,315,316,317,371],[288,371],[311,371],[52,309,371],[299,300,301,302,304,371],[51,303,371],[49,51,52,371],[49,51,52,299,371],[49,51,299,371],[49,51,301,371],[320,321,371],[51,320,371],[280,371],[279,371],[284,285,371],[283,286,287,371],[275,282,371],[289,290,291,292,293,294,371],[49,51,77],[49,51,84],[296,297,319,323,325],[49,51,52,65],[49,51,52,297],[49,319,322]],"referencedMap":[[210,1],[198,2],[208,3],[209,4],[212,5],[199,6],[201,7],[211,8],[203,9],[204,10],[207,11],[202,12],[205,13],[200,14],[206,15],[268,16],[270,17],[263,18],[252,7],[267,19],[262,20],[266,21],[264,22],[265,23],[261,24],[235,25],[239,26],[236,26],[240,26],[237,26],[241,27],[238,26],[234,28],[245,7],[248,29],[246,7],[249,30],[251,31],[242,32],[250,33],[244,34],[247,32],[243,10],[258,32],[253,35],[255,35],[260,36],[256,7],[254,35],[259,32],[257,32],[215,7],[225,7],[227,7],[219,7],[228,37],[226,38],[229,7],[220,10],[218,39],[231,12],[217,7],[230,7],[187,7],[189,7],[190,40],[188,7],[191,38],[192,38],[193,38],[194,41],[195,38],[233,42],[222,43],[223,43],[221,43],[216,44],[224,43],[213,45],[232,7],[196,38],[43,7],[66,46],[67,47],[70,48],[68,48],[72,48],[75,49],[74,7],[73,48],[71,48],[69,47],[44,7],[45,50],[53,7],[55,7],[62,7],[56,51],[54,7],[308,52],[309,53],[64,54],[65,55],[52,56],[60,57],[61,58],[63,59],[58,60],[59,61],[57,7],[379,7],[327,62],[328,62],[330,63],[331,64],[332,65],[333,66],[334,67],[335,68],[336,69],[337,70],[338,71],[339,72],[340,72],[341,73],[342,74],[343,75],[344,76],[329,77],[377,7],[345,78],[346,79],[347,80],[378,81],[348,82],[349,83],[350,84],[351,85],[352,86],[353,87],[354,88],[355,89],[356,90],[357,91],[358,92],[359,93],[361,94],[360,95],[362,96],[363,97],[364,7],[365,98],[366,99],[367,100],[368,101],[369,102],[370,103],[371,104],[372,105],[373,106],[374,107],[375,108],[376,109],[47,110],[46,7],[324,7],[197,7],[269,111],[96,112],[162,113],[161,114],[160,115],[101,116],[117,117],[115,118],[116,119],[102,120],[185,121],[87,7],[89,7],[90,122],[91,7],[94,123],[97,7],[114,124],[92,7],[109,125],[95,126],[110,127],[113,128],[111,128],[108,129],[88,7],[93,7],[112,130],[118,131],[106,7],[100,132],[98,133],[107,134],[104,135],[103,135],[99,136],[105,137],[181,138],[175,139],[168,140],[167,141],[176,142],[177,128],[169,143],[182,144],[163,145],[164,146],[165,147],[184,148],[166,141],[170,144],[171,149],[178,150],[179,126],[180,149],[183,128],[172,147],[119,151],[173,152],[174,153],[159,154],[157,155],[158,155],[123,155],[124,155],[125,155],[126,155],[127,155],[128,155],[129,155],[130,155],[149,155],[131,155],[132,155],[133,155],[134,155],[135,155],[136,155],[156,155],[137,155],[138,155],[139,155],[154,155],[140,155],[155,155],[141,155],[152,155],[153,155],[142,155],[143,155],[144,155],[150,155],[151,155],[145,155],[146,155],[147,155],[148,155],[122,156],[121,157],[120,158],[86,7],[78,7],[50,159],[48,160],[306,161],[49,162],[76,163],[307,164],[51,165],[276,166],[282,166],[275,7],[186,7],[42,7],[8,7],[10,7],[9,7],[2,7],[11,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[3,7],[4,7],[22,7],[19,7],[20,7],[21,7],[23,7],[24,7],[25,7],[5,7],[26,7],[27,7],[28,7],[29,7],[6,7],[30,7],[31,7],[32,7],[33,7],[7,7],[34,7],[39,7],[40,7],[35,7],[36,7],[37,7],[38,7],[1,7],[41,7],[214,7],[84,167],[274,168],[297,169],[326,170],[77,171],[319,172],[323,173],[296,174],[325,175],[85,7],[271,176],[273,177],[272,7],[277,7],[278,178],[79,179],[83,180],[80,181],[82,182],[81,182],[316,183],[317,166],[311,182],[318,184],[298,185],[314,186],[315,186],[312,186],[313,186],[310,187],[305,188],[304,189],[303,190],[300,191],[301,192],[302,193],[299,182],[322,194],[321,195],[320,7],[281,196],[279,182],[280,197],[284,7],[286,198],[285,7],[287,56],[288,199],[283,200],[293,7],[294,56],[289,56],[295,201],[290,56],[291,56],[292,56]],"exportedModulesMap":[[210,1],[198,2],[208,3],[209,4],[212,5],[199,6],[201,7],[211,8],[203,9],[204,10],[207,11],[202,12],[205,13],[200,14],[206,15],[268,16],[270,17],[263,18],[252,7],[267,19],[262,20],[266,21],[264,22],[265,23],[261,24],[235,25],[239,26],[236,26],[240,26],[237,26],[241,27],[238,26],[234,28],[245,7],[248,29],[246,7],[249,30],[251,31],[242,32],[250,33],[244,34],[247,32],[243,10],[258,32],[253,35],[255,35],[260,36],[256,7],[254,35],[259,32],[257,32],[215,7],[225,7],[227,7],[219,7],[228,37],[226,38],[229,7],[220,10],[218,39],[231,12],[217,7],[230,7],[187,7],[189,7],[190,40],[188,7],[191,38],[192,38],[193,38],[194,41],[195,38],[233,42],[222,43],[223,43],[221,43],[216,44],[224,43],[213,45],[232,7],[196,38],[43,7],[66,46],[67,47],[70,48],[68,48],[72,48],[75,49],[74,7],[73,48],[71,48],[69,47],[44,7],[45,50],[53,7],[55,7],[62,7],[56,51],[54,7],[308,52],[309,53],[64,54],[65,55],[52,56],[60,57],[61,58],[63,59],[58,60],[59,61],[57,7],[379,7],[327,62],[328,62],[330,63],[331,64],[332,65],[333,66],[334,67],[335,68],[336,69],[337,70],[338,71],[339,72],[340,72],[341,73],[342,74],[343,75],[344,76],[329,77],[377,7],[345,78],[346,79],[347,80],[378,81],[348,82],[349,83],[350,84],[351,85],[352,86],[353,87],[354,88],[355,89],[356,90],[357,91],[358,92],[359,93],[361,94],[360,95],[362,96],[363,97],[364,7],[365,98],[366,99],[367,100],[368,101],[369,102],[370,103],[371,104],[372,105],[373,106],[374,107],[375,108],[376,109],[47,110],[46,7],[324,7],[197,7],[269,111],[96,112],[162,113],[161,114],[160,115],[101,116],[117,117],[115,118],[116,119],[102,120],[185,121],[87,7],[89,7],[90,122],[91,7],[94,123],[97,7],[114,124],[92,7],[109,125],[95,126],[110,127],[113,128],[111,128],[108,129],[88,7],[93,7],[112,130],[118,131],[106,7],[100,132],[98,133],[107,134],[104,135],[103,135],[99,136],[105,137],[181,138],[175,139],[168,140],[167,141],[176,142],[177,128],[169,143],[182,144],[163,145],[164,146],[165,147],[184,148],[166,141],[170,144],[171,149],[178,150],[179,126],[180,149],[183,128],[172,147],[119,151],[173,152],[174,153],[159,154],[157,155],[158,155],[123,155],[124,155],[125,155],[126,155],[127,155],[128,155],[129,155],[130,155],[149,155],[131,155],[132,155],[133,155],[134,155],[135,155],[136,155],[156,155],[137,155],[138,155],[139,155],[154,155],[140,155],[155,155],[141,155],[152,155],[153,155],[142,155],[143,155],[144,155],[150,155],[151,155],[145,155],[146,155],[147,155],[148,155],[122,156],[121,157],[120,158],[86,7],[78,7],[50,159],[48,160],[306,161],[49,162],[76,163],[307,164],[51,165],[276,166],[282,166],[275,7],[186,7],[42,7],[8,7],[10,7],[9,7],[2,7],[11,7],[12,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[3,7],[4,7],[22,7],[19,7],[20,7],[21,7],[23,7],[24,7],[25,7],[5,7],[26,7],[27,7],[28,7],[29,7],[6,7],[30,7],[31,7],[32,7],[33,7],[7,7],[34,7],[39,7],[40,7],[35,7],[36,7],[37,7],[38,7],[1,7],[41,7],[214,7],[84,202],[297,203],[326,204],[77,205],[319,206],[323,207],[85,7],[271,176],[273,177],[272,7],[277,7],[278,178],[79,179],[83,180],[80,181],[82,182],[81,182],[316,183],[317,166],[311,182],[318,184],[298,185],[314,186],[315,186],[312,186],[313,186],[310,187],[305,188],[304,189],[303,190],[300,191],[301,192],[302,193],[299,182],[322,194],[321,195],[320,7],[281,196],[279,182],[280,197],[284,7],[286,198],[285,7],[287,56],[288,199],[283,200],[293,7],[294,56],[289,56],[295,201],[290,56],[291,56],[292,56]],"semanticDiagnosticsPerFile":[210,198,208,209,212,199,201,211,203,204,207,202,205,200,206,268,270,263,252,267,262,266,264,265,261,235,239,236,240,237,241,238,234,245,248,246,249,251,242,250,244,247,243,258,253,255,260,256,254,259,257,215,225,227,219,228,226,229,220,218,231,217,230,187,189,190,188,191,192,193,194,195,233,222,223,221,216,224,213,232,196,43,66,67,70,68,72,75,74,73,71,69,44,45,53,55,62,56,54,308,309,64,65,52,60,61,63,58,59,57,379,327,328,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,329,377,345,346,347,378,348,349,350,351,352,353,354,355,356,357,358,359,361,360,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,47,46,324,197,269,96,162,161,160,101,117,115,116,102,185,87,89,90,91,94,97,114,92,109,95,110,113,111,108,88,93,112,118,106,100,98,107,104,103,99,105,181,175,168,167,176,177,169,182,163,164,165,184,166,170,171,178,179,180,183,172,119,173,174,159,157,158,123,124,125,126,127,128,129,130,149,131,132,133,134,135,136,156,137,138,139,154,140,155,141,152,153,142,143,144,150,151,145,146,147,148,122,121,120,86,78,50,48,306,49,76,307,51,276,282,275,186,42,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,1,41,214,84,274,297,326,77,319,323,296,325,85,271,273,272,277,278,79,83,80,82,81,316,317,311,318,298,314,315,312,313,310,305,304,303,300,301,302,299,322,321,320,281,279,280,284,286,285,287,288,283,293,294,289,295,290,291,292]},"version":"4.7.4"}
|
package/package.json
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
"description": "User interface to select font and create font.",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "heartyoh",
|
|
6
|
-
"version": "1.0.
|
|
7
|
-
"main": "src/index.js",
|
|
8
|
-
"module": "src/index.js",
|
|
6
|
+
"version": "1.0.1",
|
|
7
|
+
"main": "dist/src/index.js",
|
|
8
|
+
"module": "dist/src/index.js",
|
|
9
9
|
"exports": {
|
|
10
|
-
".": "./src/index.js",
|
|
11
|
-
"./font-selector.js": "./src/font-selector.js",
|
|
12
|
-
"./ox-font-selector.js": "./src/ox-font-selector.js",
|
|
13
|
-
"./ox-property-editor-font-selector.js": "./src/ox-property-editor-font-selector.js"
|
|
10
|
+
".": "./dist/src/index.js",
|
|
11
|
+
"./font-selector.js": "./dist/src/font-selector.js",
|
|
12
|
+
"./ox-font-selector.js": "./dist/src/ox-font-selector.js",
|
|
13
|
+
"./ox-property-editor-font-selector.js": "./dist/src/ox-property-editor-font-selector.js"
|
|
14
14
|
},
|
|
15
15
|
"publishConfig": {
|
|
16
16
|
"access": "public",
|
|
@@ -21,18 +21,63 @@
|
|
|
21
21
|
"url": "git+https://github.com/hatiolab/operato.git",
|
|
22
22
|
"directory": "webcomponents/font"
|
|
23
23
|
},
|
|
24
|
-
"scripts": {
|
|
24
|
+
"scripts": {
|
|
25
|
+
"analyze": "cem analyze --litelement",
|
|
26
|
+
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
|
|
27
|
+
"build": "tsc && npm run analyze -- --exclude dist",
|
|
28
|
+
"prepublish": "tsc && npm run analyze -- --exclude dist",
|
|
29
|
+
"lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
|
|
30
|
+
"format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
|
|
31
|
+
"test": "tsc && wtr --coverage",
|
|
32
|
+
"test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\"",
|
|
33
|
+
"storybook": "tsc && npm run analyze -- --exclude dist && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds -c .storybook/server.mjs\"",
|
|
34
|
+
"storybook:build": "tsc && npm run analyze -- --exclude dist && build-storybook"
|
|
35
|
+
},
|
|
25
36
|
"dependencies": {
|
|
26
|
-
"@material/mwc-icon": "^0.
|
|
27
|
-
"@operato/attachment": "^1.0.
|
|
28
|
-
"@operato/headroom": "^1.0.0
|
|
29
|
-
"@operato/i18n": "^1.0.0
|
|
30
|
-
"@operato/layout": "^1.0.
|
|
31
|
-
"@operato/property-editor": "^1.0.
|
|
32
|
-
"@operato/pull-to-refresh": "^1.0.0
|
|
33
|
-
"@operato/shell": "^1.0.
|
|
34
|
-
"@operato/utils": "^1.0.
|
|
35
|
-
"
|
|
36
|
-
},
|
|
37
|
-
"
|
|
37
|
+
"@material/mwc-icon": "^0.26.1",
|
|
38
|
+
"@operato/attachment": "^1.0.1",
|
|
39
|
+
"@operato/headroom": "^1.0.0",
|
|
40
|
+
"@operato/i18n": "^1.0.0",
|
|
41
|
+
"@operato/layout": "^1.0.1",
|
|
42
|
+
"@operato/property-editor": "^1.0.1",
|
|
43
|
+
"@operato/pull-to-refresh": "^1.0.0",
|
|
44
|
+
"@operato/shell": "^1.0.1",
|
|
45
|
+
"@operato/utils": "^1.0.1",
|
|
46
|
+
"webfontloader": "^1.6.28"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@custom-elements-manifest/analyzer": "^0.4.17",
|
|
50
|
+
"@hatiolab/prettier-config": "^1.0.0",
|
|
51
|
+
"@open-wc/eslint-config": "^4.3.0",
|
|
52
|
+
"@open-wc/testing": "^3.0.4",
|
|
53
|
+
"@types/webfontloader": "^1.6.34",
|
|
54
|
+
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
55
|
+
"@typescript-eslint/parser": "^4.33.0",
|
|
56
|
+
"@web/dev-server": "^0.1.29",
|
|
57
|
+
"@web/dev-server-storybook": "^0.5.0",
|
|
58
|
+
"@web/test-runner": "next",
|
|
59
|
+
"concurrently": "^5.3.0",
|
|
60
|
+
"eslint": "^7.32.0",
|
|
61
|
+
"eslint-config-prettier": "^8.3.0",
|
|
62
|
+
"husky": "^7.0.2",
|
|
63
|
+
"json5": "^2.2.0",
|
|
64
|
+
"lint-staged": "^10.5.4",
|
|
65
|
+
"prettier": "^2.4.1",
|
|
66
|
+
"tslib": "^2.3.1",
|
|
67
|
+
"typescript": "^4.5.2"
|
|
68
|
+
},
|
|
69
|
+
"customElements": "custom-elements.json",
|
|
70
|
+
"prettier": "@hatiolab/prettier-config",
|
|
71
|
+
"husky": {
|
|
72
|
+
"hooks": {
|
|
73
|
+
"pre-commit": "lint-staged"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"lint-staged": {
|
|
77
|
+
"*.ts": [
|
|
78
|
+
"eslint --fix",
|
|
79
|
+
"prettier --write"
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
"gitHead": "4518c7ee134a20627d81d0a41e071e4b50cf173d"
|
|
38
83
|
}
|
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
import './ox-file-selector'
|
|
2
|
+
|
|
3
|
+
import { LitElement, css, html } from 'lit'
|
|
4
|
+
import { customElement, property } from 'lit/decorators.js'
|
|
5
|
+
import { i18next, localize } from '@operato/i18n'
|
|
6
|
+
|
|
7
|
+
@customElement('font-creation-card')
|
|
8
|
+
export class FontCreationCard extends localize(i18next)(LitElement) {
|
|
9
|
+
static styles = [
|
|
10
|
+
css`
|
|
11
|
+
:host {
|
|
12
|
+
position: relative;
|
|
13
|
+
|
|
14
|
+
padding: 0;
|
|
15
|
+
margin: 0;
|
|
16
|
+
height: 100%;
|
|
17
|
+
|
|
18
|
+
-webkit-transform-style: preserve-3d;
|
|
19
|
+
transform-style: preserve-3d;
|
|
20
|
+
-webkit-transition: all 0.5s ease-in-out;
|
|
21
|
+
transition: all 0.5s ease-in-out;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
:host(.flipped) {
|
|
25
|
+
-webkit-transform: var(--card-list-flip-transform);
|
|
26
|
+
transform: var(--card-list-flip-transform);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
[front],
|
|
30
|
+
[back] {
|
|
31
|
+
position: absolute;
|
|
32
|
+
|
|
33
|
+
width: 100%;
|
|
34
|
+
height: 100%;
|
|
35
|
+
margin: 0;
|
|
36
|
+
padding: 0;
|
|
37
|
+
|
|
38
|
+
border: var(--card-list-create-border);
|
|
39
|
+
border-radius: var(--card-list-create-border-radius);
|
|
40
|
+
|
|
41
|
+
background-color: #fff;
|
|
42
|
+
|
|
43
|
+
-webkit-backface-visibility: hidden;
|
|
44
|
+
backface-visibility: hidden;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
[front] {
|
|
48
|
+
display: flex;
|
|
49
|
+
flex-direction: column;
|
|
50
|
+
align-items: center;
|
|
51
|
+
justify-content: center;
|
|
52
|
+
|
|
53
|
+
text-align: center;
|
|
54
|
+
font-size: 0.8em;
|
|
55
|
+
color: var(--card-list-create-color);
|
|
56
|
+
text-transform: capitalize;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
[front] mwc-icon {
|
|
60
|
+
font-size: 3.5em;
|
|
61
|
+
color: var(--card-list-create-icon-color);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
[back] {
|
|
65
|
+
-webkit-transform: var(--card-list-flip-transform);
|
|
66
|
+
transform: var(--card-list-flip-transform);
|
|
67
|
+
box-sizing: border-box;
|
|
68
|
+
display: grid;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
[back] form {
|
|
72
|
+
padding: var(--card-list-create-form-padding);
|
|
73
|
+
width: 100%;
|
|
74
|
+
height: 100%;
|
|
75
|
+
box-sizing: border-box;
|
|
76
|
+
display: grid;
|
|
77
|
+
grid-template-columns: 1fr;
|
|
78
|
+
grid-template-rows: auto 1fr auto;
|
|
79
|
+
justify-content: center;
|
|
80
|
+
align-items: center;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
[back] form .props {
|
|
84
|
+
width: 100%;
|
|
85
|
+
height: 100%;
|
|
86
|
+
box-sizing: border-box;
|
|
87
|
+
display: grid;
|
|
88
|
+
grid-template-columns: repeat(10, 1fr);
|
|
89
|
+
grid-row-gap: 7px;
|
|
90
|
+
justify-content: center;
|
|
91
|
+
align-items: center;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
[back] form .props label {
|
|
95
|
+
grid-column: span 4;
|
|
96
|
+
font: var(--card-list-create-label-font);
|
|
97
|
+
color: var(--card-list-create-label-color);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
[back] form .props input,
|
|
101
|
+
[back] form .props select {
|
|
102
|
+
grid-column: span 6;
|
|
103
|
+
background-color: #fff;
|
|
104
|
+
border: var(--card-list-create-input-border);
|
|
105
|
+
border-radius: var(--card-list-create-input-border-radius);
|
|
106
|
+
font: var(--card-list-create-input-font);
|
|
107
|
+
color: var(--card-list-create-input-color);
|
|
108
|
+
width: -moz-available;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
ox-file-selector {
|
|
112
|
+
grid-column: span 6;
|
|
113
|
+
font: var(--card-list-create-input-font);
|
|
114
|
+
border: none;
|
|
115
|
+
box-sizing: border-box;
|
|
116
|
+
padding: 0;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
[back] input[type='submit'] {
|
|
120
|
+
background-color: var(--button-background-color) !important;
|
|
121
|
+
font: var(--button-font);
|
|
122
|
+
color: var(--button-color) !important;
|
|
123
|
+
border-radius: var(--button-radius);
|
|
124
|
+
border: var(--button-border);
|
|
125
|
+
grid-column: span 10;
|
|
126
|
+
grid-row: auto / -1;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.hidden {
|
|
130
|
+
display: none !important;
|
|
131
|
+
}
|
|
132
|
+
`
|
|
133
|
+
]
|
|
134
|
+
|
|
135
|
+
@property({ type: String }) provider: string = 'google'
|
|
136
|
+
@property({ type: Array }) googleFonts: Array<string> = []
|
|
137
|
+
@property({ type: Array }) files?: Array<any>
|
|
138
|
+
|
|
139
|
+
providers: Array<{ value: string; display: string }> = [
|
|
140
|
+
{ value: 'google', display: 'Google' },
|
|
141
|
+
// TODO 구글 외 폰트 서비스 구현
|
|
142
|
+
// { value: 'typekit', display: 'Typekit' },
|
|
143
|
+
{ value: 'custom', display: 'Custom' }
|
|
144
|
+
]
|
|
145
|
+
|
|
146
|
+
render() {
|
|
147
|
+
let isProviderGoogle = this.provider == 'google' && this.googleFonts.length > 0
|
|
148
|
+
let isFileAttached = this.files && this.files.length > 0 ? true : false
|
|
149
|
+
|
|
150
|
+
return html`
|
|
151
|
+
<div @click=${(e: Event) => this.onClickFlip(e)} front><mwc-icon>add_circle_outline</mwc-icon>create font</div>
|
|
152
|
+
|
|
153
|
+
<div @click=${(e: Event) => this.onClickFlip(e)} back>
|
|
154
|
+
<form @submit=${(e: Event) => this.onClickSubmit(e)}>
|
|
155
|
+
<div class="props">
|
|
156
|
+
<label>${i18next.t('label.provider')}</label>
|
|
157
|
+
<select
|
|
158
|
+
name="provider"
|
|
159
|
+
@change=${(e: Event) => {
|
|
160
|
+
this.provider = (e.target as HTMLInputElement).value
|
|
161
|
+
if (this.provider === 'google') {
|
|
162
|
+
fetch(`/all-google-fonts`).then(async response => {
|
|
163
|
+
if (response.ok) this.googleFonts = await response.json()
|
|
164
|
+
else {
|
|
165
|
+
console.warn(
|
|
166
|
+
`(${response.url}) ${response.status} ${response.statusText}. Could not load Google fonts.`
|
|
167
|
+
)
|
|
168
|
+
}
|
|
169
|
+
})
|
|
170
|
+
}
|
|
171
|
+
}}
|
|
172
|
+
>
|
|
173
|
+
${this.providers.map(
|
|
174
|
+
p => html` <option value=${p.value} ?selected=${this.provider == p.value}>${p.display}</option> `
|
|
175
|
+
)}
|
|
176
|
+
</select>
|
|
177
|
+
|
|
178
|
+
<label>${i18next.t('label.name')}</label>
|
|
179
|
+
<input type="text" name="${isProviderGoogle ? '' : 'name'}" ?hidden=${isProviderGoogle} />
|
|
180
|
+
<select name="${isProviderGoogle ? 'name' : ''}" ?hidden=${!isProviderGoogle}>
|
|
181
|
+
<option value=""> </option>
|
|
182
|
+
${isProviderGoogle && this.googleFonts.map(f => html` <option value=${f}>${f}</option> `)}
|
|
183
|
+
</select>
|
|
184
|
+
|
|
185
|
+
<label ?hidden=${this.provider != 'custom'}>${i18next.t('label.uri')}</label>
|
|
186
|
+
<input
|
|
187
|
+
?hidden=${this.provider != 'custom'}
|
|
188
|
+
?disabled=${isFileAttached}
|
|
189
|
+
.value=${isFileAttached ? this.files![0].name : ''}
|
|
190
|
+
type="text"
|
|
191
|
+
name="uri"
|
|
192
|
+
/>
|
|
193
|
+
<!-- display when attachment module is imported -->
|
|
194
|
+
<label ?hidden=${this.provider != 'custom'}>${i18next.t('label.file')}</label>
|
|
195
|
+
<ox-file-selector
|
|
196
|
+
class="${this.provider != 'custom' ? 'hidden' : ''}"
|
|
197
|
+
name="file"
|
|
198
|
+
label="${i18next.t('label.select file')}"
|
|
199
|
+
accept=".ttf,.otf,.woff,.woff2,.eot,.svg,.svgz"
|
|
200
|
+
multiple
|
|
201
|
+
@file-change=${(e: CustomEvent) => {
|
|
202
|
+
this.files = Array.from(e.detail.files)
|
|
203
|
+
}}
|
|
204
|
+
></ox-file-selector>
|
|
205
|
+
<!------------------------------------------------>
|
|
206
|
+
|
|
207
|
+
<label for="checkbox-active" @click=${(e: Event) => e.stopPropagation()}>
|
|
208
|
+
${i18next.t('label.active')}
|
|
209
|
+
</label>
|
|
210
|
+
<input id="checkbox-active" type="checkbox" name="active" checked />
|
|
211
|
+
</div>
|
|
212
|
+
<div></div>
|
|
213
|
+
<input type="submit" value=${i18next.t('button.create')} />
|
|
214
|
+
</form>
|
|
215
|
+
</div>
|
|
216
|
+
`
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
onClickFlip(e: Event) {
|
|
220
|
+
const target = e.target as HTMLElement
|
|
221
|
+
const currentTarget = e.currentTarget as HTMLElement
|
|
222
|
+
|
|
223
|
+
if (!['INPUT', 'SELECT', 'OPTION'].find(tagName => tagName === target.tagName)) {
|
|
224
|
+
if (currentTarget.hasAttribute('front')) this.reset() // 입력 폼으로 뒤집기 전에 한 번 리셋
|
|
225
|
+
this.classList.toggle('flipped')
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
async onClickSubmit(e: Event) {
|
|
230
|
+
e.preventDefault()
|
|
231
|
+
e.stopPropagation()
|
|
232
|
+
|
|
233
|
+
var form = e.target as HTMLFormElement
|
|
234
|
+
|
|
235
|
+
var detail = {} as any
|
|
236
|
+
|
|
237
|
+
detail.name = (form.elements.namedItem('name') as HTMLInputElement).value
|
|
238
|
+
detail.provider = (form.elements.namedItem('provider') as HTMLInputElement).value
|
|
239
|
+
detail.active = (form.elements.namedItem('active') as HTMLInputElement).checked
|
|
240
|
+
|
|
241
|
+
if (this.provider === 'custom') {
|
|
242
|
+
detail.uri = (form.elements.namedItem('uri') as HTMLInputElement).value
|
|
243
|
+
if (this.files && this.files.length > 0) {
|
|
244
|
+
detail.files = this.files
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
this.dispatchEvent(new CustomEvent('create-font', { detail }))
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
reset() {
|
|
252
|
+
var form = this.renderRoot.querySelector('form')
|
|
253
|
+
if (form) {
|
|
254
|
+
form.reset()
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
this.files = []
|
|
258
|
+
this.classList.remove('flipped')
|
|
259
|
+
}
|
|
260
|
+
}
|