@cntrl-site/sdk-nextjs 0.2.7 → 0.2.9
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/.idea/inspectionProfiles/Project_Default.xml +15 -0
- package/lib/components/Head.js +33 -0
- package/lib/components/Page.js +2 -22
- package/lib/index.js +3 -1
- package/lib/utils/RichTextConverter.js +1 -0
- package/package.json +1 -1
- package/src/components/Head.tsx +48 -0
- package/src/components/Page.tsx +4 -37
- package/src/index.ts +1 -0
- package/src/utils/RichTextConverter.tsx +1 -0
- package/.idea/workspace.xml +0 -218
- package/cntrl-site-sdk-nextjs-0.2.5.tgz +0 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<component name="InspectionProjectProfileManager">
|
|
2
|
+
<profile version="1.0">
|
|
3
|
+
<option name="myName" value="Project Default" />
|
|
4
|
+
<inspection_tool class="HtmlUnknownAttribute" enabled="true" level="WARNING" enabled_by_default="true">
|
|
5
|
+
<option name="myValues">
|
|
6
|
+
<value>
|
|
7
|
+
<list size="1">
|
|
8
|
+
<item index="0" class="java.lang.String" itemvalue="jsx" />
|
|
9
|
+
</list>
|
|
10
|
+
</value>
|
|
11
|
+
</option>
|
|
12
|
+
<option name="myCustomValuesEnabled" value="true" />
|
|
13
|
+
</inspection_tool>
|
|
14
|
+
</profile>
|
|
15
|
+
</component>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.CNTRLHead = void 0;
|
|
7
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
8
|
+
const html_react_parser_1 = __importDefault(require("html-react-parser"));
|
|
9
|
+
const head_1 = __importDefault(require("next/head"));
|
|
10
|
+
const sdk_1 = require("@cntrl-site/sdk");
|
|
11
|
+
const CNTRLHead = ({ meta, project }) => {
|
|
12
|
+
const googleFonts = (0, html_react_parser_1.default)(project.fonts.google);
|
|
13
|
+
const adobeFonts = (0, html_react_parser_1.default)(project.fonts.adobe);
|
|
14
|
+
const parsedFonts = {
|
|
15
|
+
...(typeof googleFonts === 'object' ? googleFonts : {}),
|
|
16
|
+
...(typeof adobeFonts === 'object' ? adobeFonts : {})
|
|
17
|
+
};
|
|
18
|
+
const customFonts = project.fonts.custom;
|
|
19
|
+
const htmlHead = (0, html_react_parser_1.default)(project.html.head);
|
|
20
|
+
const ffGenerator = new sdk_1.FontFaceGenerator(customFonts);
|
|
21
|
+
return ((0, jsx_runtime_1.jsxs)(head_1.default, { children: [(0, jsx_runtime_1.jsx)("title", { children: meta.title }), (0, jsx_runtime_1.jsx)("meta", { name: "description", content: meta.description }), (0, jsx_runtime_1.jsx)("meta", { name: "keywords", content: meta.keywords }), (0, jsx_runtime_1.jsx)("meta", { property: "og:image", content: meta.opengraphThumbnail }), (0, jsx_runtime_1.jsx)("link", { rel: "icon", href: meta.favicon }), customFonts.length > 0 && ((0, jsx_runtime_1.jsx)("style", { dangerouslySetInnerHTML: {
|
|
22
|
+
__html: ffGenerator.generate()
|
|
23
|
+
} })), Object.values(parsedFonts).map((value, i) => {
|
|
24
|
+
if (!value)
|
|
25
|
+
return undefined;
|
|
26
|
+
const rel = value?.rel || value.props?.rel;
|
|
27
|
+
const href = value?.href || value.props?.href;
|
|
28
|
+
if (!rel || !href)
|
|
29
|
+
return undefined;
|
|
30
|
+
return ((0, jsx_runtime_1.jsx)("link", { rel: rel, href: href }, i));
|
|
31
|
+
}), htmlHead] }));
|
|
32
|
+
};
|
|
33
|
+
exports.CNTRLHead = CNTRLHead;
|
package/lib/components/Page.js
CHANGED
|
@@ -6,31 +6,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.Page = void 0;
|
|
7
7
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
8
8
|
const html_react_parser_1 = __importDefault(require("html-react-parser"));
|
|
9
|
-
const sdk_1 = require("@cntrl-site/sdk");
|
|
10
|
-
const head_1 = __importDefault(require("next/head"));
|
|
11
9
|
const Article_1 = require("./Article");
|
|
10
|
+
const Head_1 = require("./Head");
|
|
12
11
|
const Page = ({ article, project, meta }) => {
|
|
13
|
-
const googleFonts = (0, html_react_parser_1.default)(project.fonts.google);
|
|
14
|
-
const adobeFonts = (0, html_react_parser_1.default)(project.fonts.adobe);
|
|
15
|
-
const parsedFonts = {
|
|
16
|
-
...(typeof googleFonts === 'object' ? googleFonts : {}),
|
|
17
|
-
...(typeof adobeFonts === 'object' ? adobeFonts : {})
|
|
18
|
-
};
|
|
19
|
-
const customFonts = project.fonts.custom;
|
|
20
|
-
const htmlHead = (0, html_react_parser_1.default)(project.html.head);
|
|
21
12
|
const afterBodyOpen = (0, html_react_parser_1.default)(project.html.afterBodyOpen);
|
|
22
13
|
const beforeBodyClose = (0, html_react_parser_1.default)(project.html.beforeBodyClose);
|
|
23
|
-
|
|
24
|
-
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)(head_1.default, { children: [(0, jsx_runtime_1.jsx)("title", { children: meta.title }), (0, jsx_runtime_1.jsx)("meta", { name: "description", content: meta.description }), (0, jsx_runtime_1.jsx)("meta", { name: "keywords", content: meta.keywords }), (0, jsx_runtime_1.jsx)("meta", { property: "og:image", content: meta.opengraphThumbnail }), (0, jsx_runtime_1.jsx)("link", { rel: "icon", href: meta.favicon }), customFonts.length > 0 && ((0, jsx_runtime_1.jsx)("style", { dangerouslySetInnerHTML: {
|
|
25
|
-
__html: ffGenerator.generate()
|
|
26
|
-
} })), Object.values(parsedFonts).map((value, i) => {
|
|
27
|
-
if (!value)
|
|
28
|
-
return undefined;
|
|
29
|
-
const rel = value?.rel || value.props?.rel;
|
|
30
|
-
const href = value?.href || value.props?.href;
|
|
31
|
-
if (!rel || !href)
|
|
32
|
-
return undefined;
|
|
33
|
-
return ((0, jsx_runtime_1.jsx)("link", { rel: rel, href: href }, i));
|
|
34
|
-
}), htmlHead] }), afterBodyOpen, (0, jsx_runtime_1.jsx)(Article_1.Article, { article: article, layouts: project.layouts }), beforeBodyClose] }));
|
|
14
|
+
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(Head_1.CNTRLHead, { project: project, meta: meta }), afterBodyOpen, (0, jsx_runtime_1.jsx)(Article_1.Article, { article: article, layouts: project.layouts }), beforeBodyClose] }));
|
|
35
15
|
};
|
|
36
16
|
exports.Page = Page;
|
package/lib/index.js
CHANGED
|
@@ -14,13 +14,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.CustomItems = exports.CntrlProvider = exports.YoutubeEmbedItem = exports.VimeoEmbedItem = exports.LayoutStyle = exports.VideoItem = exports.RichTextItem = exports.RectangleItem = exports.ImageItem = exports.Item = exports.Section = exports.Article = exports.Page = exports.RichTextConverter = void 0;
|
|
17
|
+
exports.CustomItems = exports.CntrlProvider = exports.YoutubeEmbedItem = exports.VimeoEmbedItem = exports.LayoutStyle = exports.VideoItem = exports.RichTextItem = exports.RectangleItem = exports.ImageItem = exports.Item = exports.Section = exports.Article = exports.Head = exports.Page = exports.RichTextConverter = void 0;
|
|
18
18
|
const defaultContext_1 = require("./provider/defaultContext");
|
|
19
19
|
__exportStar(require("@cntrl-site/sdk"), exports);
|
|
20
20
|
var RichTextConverter_1 = require("./utils/RichTextConverter");
|
|
21
21
|
Object.defineProperty(exports, "RichTextConverter", { enumerable: true, get: function () { return RichTextConverter_1.RichTextConverter; } });
|
|
22
22
|
var Page_1 = require("./components/Page");
|
|
23
23
|
Object.defineProperty(exports, "Page", { enumerable: true, get: function () { return Page_1.Page; } });
|
|
24
|
+
var Head_1 = require("./components/Head");
|
|
25
|
+
Object.defineProperty(exports, "Head", { enumerable: true, get: function () { return Head_1.CNTRLHead; } });
|
|
24
26
|
var Article_1 = require("./components/Article");
|
|
25
27
|
Object.defineProperty(exports, "Article", { enumerable: true, get: function () { return Article_1.Article; } });
|
|
26
28
|
var Section_1 = require("./components/Section");
|
package/package.json
CHANGED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import React, { FC } from 'react';
|
|
2
|
+
import HTMLReactParser, { domToReact } from 'html-react-parser';
|
|
3
|
+
import Head from 'next/head';
|
|
4
|
+
import { FontFaceGenerator, TMeta, TProject } from '@cntrl-site/sdk';
|
|
5
|
+
|
|
6
|
+
interface Props {
|
|
7
|
+
project: TProject;
|
|
8
|
+
meta: TMeta;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export const CNTRLHead: FC<Props> = ({ meta, project }) => {
|
|
12
|
+
const googleFonts: ReturnType<typeof domToReact> = HTMLReactParser(project.fonts.google);
|
|
13
|
+
const adobeFonts: ReturnType<typeof domToReact> = HTMLReactParser(project.fonts.adobe);
|
|
14
|
+
const parsedFonts = {
|
|
15
|
+
...(typeof googleFonts === 'object' ? googleFonts : {}),
|
|
16
|
+
...(typeof adobeFonts === 'object' ? adobeFonts : {})
|
|
17
|
+
};
|
|
18
|
+
const customFonts = project.fonts.custom;
|
|
19
|
+
const htmlHead = HTMLReactParser(project.html.head);
|
|
20
|
+
const ffGenerator = new FontFaceGenerator(customFonts);
|
|
21
|
+
return (
|
|
22
|
+
<Head>
|
|
23
|
+
<title>{meta.title}</title>
|
|
24
|
+
<meta name="description" content={meta.description} />
|
|
25
|
+
<meta name="keywords" content={meta.keywords} />
|
|
26
|
+
<meta property="og:image" content={meta.opengraphThumbnail} />
|
|
27
|
+
<link rel="icon" href={meta.favicon} />
|
|
28
|
+
{customFonts.length > 0 && (
|
|
29
|
+
<style
|
|
30
|
+
dangerouslySetInnerHTML={{
|
|
31
|
+
__html: ffGenerator.generate()
|
|
32
|
+
}}
|
|
33
|
+
/>
|
|
34
|
+
)}
|
|
35
|
+
{Object.values(parsedFonts as ReturnType<typeof domToReact>).map((value, i) => {
|
|
36
|
+
if (!value) return undefined;
|
|
37
|
+
const rel = value?.rel || value.props?.rel;
|
|
38
|
+
const href = value?.href || value.props?.href;
|
|
39
|
+
if (!rel || !href) return undefined;
|
|
40
|
+
return (
|
|
41
|
+
<link key={i} rel={rel} href={href} />
|
|
42
|
+
);
|
|
43
|
+
})}
|
|
44
|
+
{htmlHead}
|
|
45
|
+
|
|
46
|
+
</Head>
|
|
47
|
+
);
|
|
48
|
+
};
|
package/src/components/Page.tsx
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React, { FC } from 'react';
|
|
2
|
-
import HTMLReactParser
|
|
3
|
-
import { TArticle, TProject, TMeta
|
|
4
|
-
import Head from 'next/head';
|
|
2
|
+
import HTMLReactParser from 'html-react-parser';
|
|
3
|
+
import { TArticle, TProject, TMeta } from '@cntrl-site/sdk';
|
|
5
4
|
import { Article } from './Article';
|
|
5
|
+
import { CNTRLHead } from './Head';
|
|
6
6
|
|
|
7
7
|
interface Props {
|
|
8
8
|
article: TArticle;
|
|
@@ -11,44 +11,11 @@ interface Props {
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
export const Page: FC<Props> = ({ article, project, meta }) => {
|
|
14
|
-
const googleFonts: ReturnType<typeof domToReact> = HTMLReactParser(project.fonts.google);
|
|
15
|
-
const adobeFonts: ReturnType<typeof domToReact> = HTMLReactParser(project.fonts.adobe);
|
|
16
|
-
const parsedFonts = {
|
|
17
|
-
...(typeof googleFonts === 'object' ? googleFonts : {}),
|
|
18
|
-
...(typeof adobeFonts === 'object' ? adobeFonts : {})
|
|
19
|
-
};
|
|
20
|
-
const customFonts = project.fonts.custom;
|
|
21
|
-
const htmlHead = HTMLReactParser(project.html.head);
|
|
22
14
|
const afterBodyOpen = HTMLReactParser(project.html.afterBodyOpen);
|
|
23
15
|
const beforeBodyClose = HTMLReactParser(project.html.beforeBodyClose);
|
|
24
|
-
const ffGenerator = new FontFaceGenerator(customFonts);
|
|
25
16
|
return (
|
|
26
17
|
<>
|
|
27
|
-
<
|
|
28
|
-
<title>{meta.title}</title>
|
|
29
|
-
<meta name="description" content={meta.description} />
|
|
30
|
-
<meta name="keywords" content={meta.keywords} />
|
|
31
|
-
<meta property="og:image" content={meta.opengraphThumbnail} />
|
|
32
|
-
<link rel="icon" href={meta.favicon} />
|
|
33
|
-
{customFonts.length > 0 && (
|
|
34
|
-
<style
|
|
35
|
-
dangerouslySetInnerHTML={{
|
|
36
|
-
__html: ffGenerator.generate()
|
|
37
|
-
}}
|
|
38
|
-
/>
|
|
39
|
-
)}
|
|
40
|
-
{Object.values(parsedFonts as ReturnType<typeof domToReact>).map((value, i) => {
|
|
41
|
-
if (!value) return undefined;
|
|
42
|
-
const rel = value?.rel || value.props?.rel;
|
|
43
|
-
const href = value?.href || value.props?.href;
|
|
44
|
-
if (!rel || !href) return undefined;
|
|
45
|
-
return (
|
|
46
|
-
<link key={i} rel={rel} href={href} />
|
|
47
|
-
);
|
|
48
|
-
})}
|
|
49
|
-
{htmlHead}
|
|
50
|
-
|
|
51
|
-
</Head>
|
|
18
|
+
<CNTRLHead project={project} meta={meta} />
|
|
52
19
|
{afterBodyOpen}
|
|
53
20
|
<Article article={article} layouts={project.layouts} />
|
|
54
21
|
{beforeBodyClose}
|
package/src/index.ts
CHANGED
|
@@ -4,6 +4,7 @@ export * from '@cntrl-site/sdk';
|
|
|
4
4
|
|
|
5
5
|
export { RichTextConverter } from './utils/RichTextConverter';
|
|
6
6
|
export { Page } from './components/Page';
|
|
7
|
+
export { CNTRLHead as Head } from './components/Head';
|
|
7
8
|
export { Article } from './components/Article';
|
|
8
9
|
export { Section } from './components/Section';
|
|
9
10
|
export { Item } from './components/Item';
|
package/.idea/workspace.xml
DELETED
|
@@ -1,218 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ChangeListManager">
|
|
4
|
-
<list default="true" id="daade3cc-2214-4d1b-a6ad-012b8ae407bf" name="Changes" comment="CNTRL-617 Version bump" />
|
|
5
|
-
<option name="SHOW_DIALOG" value="false" />
|
|
6
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
7
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
8
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
9
|
-
</component>
|
|
10
|
-
<component name="Git.Settings">
|
|
11
|
-
<option name="RECENT_BRANCH_BY_REPOSITORY">
|
|
12
|
-
<map>
|
|
13
|
-
<entry key="$PROJECT_DIR$" value="main" />
|
|
14
|
-
</map>
|
|
15
|
-
</option>
|
|
16
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
17
|
-
</component>
|
|
18
|
-
<component name="MarkdownSettingsMigration">
|
|
19
|
-
<option name="stateVersion" value="1" />
|
|
20
|
-
</component>
|
|
21
|
-
<component name="ProjectId" id="2H4nx2LrD2TTrbJMopYKifu02PK" />
|
|
22
|
-
<component name="ProjectViewState">
|
|
23
|
-
<option name="hideEmptyMiddlePackages" value="true" />
|
|
24
|
-
<option name="showLibraryContents" value="true" />
|
|
25
|
-
</component>
|
|
26
|
-
<component name="PropertiesComponent">{
|
|
27
|
-
"keyToString": {
|
|
28
|
-
"RunOnceActivity.OpenProjectViewOnStart": "true",
|
|
29
|
-
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
30
|
-
"WebServerToolWindowFactoryState": "false",
|
|
31
|
-
"last_opened_file_path": "/Users/admin/Documents/CNTRL/sdk-nextjs",
|
|
32
|
-
"nodejs_package_manager_path": "npm",
|
|
33
|
-
"ts.external.directory.path": "/Users/admin/Documents/CNTRL/sdk-nextjs/node_modules/typescript/lib",
|
|
34
|
-
"vue.rearranger.settings.migration": "true"
|
|
35
|
-
}
|
|
36
|
-
}</component>
|
|
37
|
-
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
|
38
|
-
<component name="TaskManager">
|
|
39
|
-
<task active="true" id="Default" summary="Default task">
|
|
40
|
-
<changelist id="daade3cc-2214-4d1b-a6ad-012b8ae407bf" name="Changes" comment="" />
|
|
41
|
-
<created>1667553465933</created>
|
|
42
|
-
<option name="number" value="Default" />
|
|
43
|
-
<option name="presentableId" value="Default" />
|
|
44
|
-
<updated>1667553465933</updated>
|
|
45
|
-
<workItem from="1667553467855" duration="59000" />
|
|
46
|
-
<workItem from="1667577252000" duration="8061000" />
|
|
47
|
-
<workItem from="1667926766782" duration="2182000" />
|
|
48
|
-
<workItem from="1668162212487" duration="28710000" />
|
|
49
|
-
<workItem from="1669397663981" duration="8121000" />
|
|
50
|
-
<workItem from="1669630429786" duration="4858000" />
|
|
51
|
-
</task>
|
|
52
|
-
<task id="LOCAL-00001" summary="CNTRL-484 - added embed vimeo video">
|
|
53
|
-
<created>1667586762678</created>
|
|
54
|
-
<option name="number" value="00001" />
|
|
55
|
-
<option name="presentableId" value="LOCAL-00001" />
|
|
56
|
-
<option name="project" value="LOCAL" />
|
|
57
|
-
<updated>1667586762678</updated>
|
|
58
|
-
</task>
|
|
59
|
-
<task id="LOCAL-00002" summary="CNTRL-484 - problem fix">
|
|
60
|
-
<created>1667587045426</created>
|
|
61
|
-
<option name="number" value="00002" />
|
|
62
|
-
<option name="presentableId" value="LOCAL-00002" />
|
|
63
|
-
<option name="project" value="LOCAL" />
|
|
64
|
-
<updated>1667587045426</updated>
|
|
65
|
-
</task>
|
|
66
|
-
<task id="LOCAL-00003" summary="CNTRL-484 - version bump">
|
|
67
|
-
<created>1667587257510</created>
|
|
68
|
-
<option name="number" value="00003" />
|
|
69
|
-
<option name="presentableId" value="LOCAL-00003" />
|
|
70
|
-
<option name="project" value="LOCAL" />
|
|
71
|
-
<updated>1667587257510</updated>
|
|
72
|
-
</task>
|
|
73
|
-
<task id="LOCAL-00004" summary="CNTRL-486 - added youtube item">
|
|
74
|
-
<created>1668184730139</created>
|
|
75
|
-
<option name="number" value="00004" />
|
|
76
|
-
<option name="presentableId" value="LOCAL-00004" />
|
|
77
|
-
<option name="project" value="LOCAL" />
|
|
78
|
-
<updated>1668184730139</updated>
|
|
79
|
-
</task>
|
|
80
|
-
<task id="LOCAL-00005" summary="CNTRL-486 - added youtube type">
|
|
81
|
-
<created>1668185842201</created>
|
|
82
|
-
<option name="number" value="00005" />
|
|
83
|
-
<option name="presentableId" value="LOCAL-00005" />
|
|
84
|
-
<option name="project" value="LOCAL" />
|
|
85
|
-
<updated>1668185842201</updated>
|
|
86
|
-
</task>
|
|
87
|
-
<task id="LOCAL-00006" summary="CNTRL-486 - youtube fixes">
|
|
88
|
-
<created>1668193338566</created>
|
|
89
|
-
<option name="number" value="00006" />
|
|
90
|
-
<option name="presentableId" value="LOCAL-00006" />
|
|
91
|
-
<option name="project" value="LOCAL" />
|
|
92
|
-
<updated>1668193338566</updated>
|
|
93
|
-
</task>
|
|
94
|
-
<task id="LOCAL-00007" summary="CNTRL-486 - added mute to video when autoplay On">
|
|
95
|
-
<created>1668504184323</created>
|
|
96
|
-
<option name="number" value="00007" />
|
|
97
|
-
<option name="presentableId" value="LOCAL-00007" />
|
|
98
|
-
<option name="project" value="LOCAL" />
|
|
99
|
-
<updated>1668504184323</updated>
|
|
100
|
-
</task>
|
|
101
|
-
<task id="LOCAL-00008" summary="CNTRL-486 - added search params to Url">
|
|
102
|
-
<created>1668506131079</created>
|
|
103
|
-
<option name="number" value="00008" />
|
|
104
|
-
<option name="presentableId" value="LOCAL-00008" />
|
|
105
|
-
<option name="project" value="LOCAL" />
|
|
106
|
-
<updated>1668506131079</updated>
|
|
107
|
-
</task>
|
|
108
|
-
<task id="LOCAL-00009" summary="CNTRL-486 - version update">
|
|
109
|
-
<created>1668508864371</created>
|
|
110
|
-
<option name="number" value="00009" />
|
|
111
|
-
<option name="presentableId" value="LOCAL-00009" />
|
|
112
|
-
<option name="project" value="LOCAL" />
|
|
113
|
-
<updated>1668508864371</updated>
|
|
114
|
-
</task>
|
|
115
|
-
<task id="LOCAL-00010" summary="CNTRL-486 - version bump">
|
|
116
|
-
<created>1668509275485</created>
|
|
117
|
-
<option name="number" value="00010" />
|
|
118
|
-
<option name="presentableId" value="LOCAL-00010" />
|
|
119
|
-
<option name="project" value="LOCAL" />
|
|
120
|
-
<updated>1668509275485</updated>
|
|
121
|
-
</task>
|
|
122
|
-
<task id="LOCAL-00011" summary="CNTRL-486 - version bump">
|
|
123
|
-
<created>1668509525445</created>
|
|
124
|
-
<option name="number" value="00011" />
|
|
125
|
-
<option name="presentableId" value="LOCAL-00011" />
|
|
126
|
-
<option name="project" value="LOCAL" />
|
|
127
|
-
<updated>1668509525445</updated>
|
|
128
|
-
</task>
|
|
129
|
-
<task id="LOCAL-00012" summary="CNTRL-486 - fixes">
|
|
130
|
-
<created>1669397733023</created>
|
|
131
|
-
<option name="number" value="00012" />
|
|
132
|
-
<option name="presentableId" value="LOCAL-00012" />
|
|
133
|
-
<option name="project" value="LOCAL" />
|
|
134
|
-
<updated>1669397733023</updated>
|
|
135
|
-
</task>
|
|
136
|
-
<task id="LOCAL-00013" summary="CNTRL-486 - fixes">
|
|
137
|
-
<created>1669402876183</created>
|
|
138
|
-
<option name="number" value="00013" />
|
|
139
|
-
<option name="presentableId" value="LOCAL-00013" />
|
|
140
|
-
<option name="project" value="LOCAL" />
|
|
141
|
-
<updated>1669402876183</updated>
|
|
142
|
-
</task>
|
|
143
|
-
<task id="LOCAL-00014" summary="CNTRL-486 - fixes">
|
|
144
|
-
<created>1669402893251</created>
|
|
145
|
-
<option name="number" value="00014" />
|
|
146
|
-
<option name="presentableId" value="LOCAL-00014" />
|
|
147
|
-
<option name="project" value="LOCAL" />
|
|
148
|
-
<updated>1669402893251</updated>
|
|
149
|
-
</task>
|
|
150
|
-
<task id="LOCAL-00015" summary="CNTRL-486 - fixes">
|
|
151
|
-
<created>1669405389296</created>
|
|
152
|
-
<option name="number" value="00015" />
|
|
153
|
-
<option name="presentableId" value="LOCAL-00015" />
|
|
154
|
-
<option name="project" value="LOCAL" />
|
|
155
|
-
<updated>1669405389296</updated>
|
|
156
|
-
</task>
|
|
157
|
-
<task id="LOCAL-00016" summary="CNTRL-486 - fixes">
|
|
158
|
-
<created>1669405966077</created>
|
|
159
|
-
<option name="number" value="00016" />
|
|
160
|
-
<option name="presentableId" value="LOCAL-00016" />
|
|
161
|
-
<option name="project" value="LOCAL" />
|
|
162
|
-
<updated>1669405966077</updated>
|
|
163
|
-
</task>
|
|
164
|
-
<task id="LOCAL-00017" summary="CNTRL-486 - version bump">
|
|
165
|
-
<created>1669408571358</created>
|
|
166
|
-
<option name="number" value="00017" />
|
|
167
|
-
<option name="presentableId" value="LOCAL-00017" />
|
|
168
|
-
<option name="project" value="LOCAL" />
|
|
169
|
-
<updated>1669408571358</updated>
|
|
170
|
-
</task>
|
|
171
|
-
<task id="LOCAL-00018" summary="CNTRL-617 Youtube anf vimeo videos Url update">
|
|
172
|
-
<created>1669635492235</created>
|
|
173
|
-
<option name="number" value="00018" />
|
|
174
|
-
<option name="presentableId" value="LOCAL-00018" />
|
|
175
|
-
<option name="project" value="LOCAL" />
|
|
176
|
-
<updated>1669635492235</updated>
|
|
177
|
-
</task>
|
|
178
|
-
<task id="LOCAL-00019" summary="CNTRL-617 Version bump">
|
|
179
|
-
<created>1669635593460</created>
|
|
180
|
-
<option name="number" value="00019" />
|
|
181
|
-
<option name="presentableId" value="LOCAL-00019" />
|
|
182
|
-
<option name="project" value="LOCAL" />
|
|
183
|
-
<updated>1669635593460</updated>
|
|
184
|
-
</task>
|
|
185
|
-
<option name="localTasksCounter" value="20" />
|
|
186
|
-
<servers />
|
|
187
|
-
</component>
|
|
188
|
-
<component name="TypeScriptGeneratedFilesManager">
|
|
189
|
-
<option name="version" value="3" />
|
|
190
|
-
</component>
|
|
191
|
-
<component name="Vcs.Log.Tabs.Properties">
|
|
192
|
-
<option name="TAB_STATES">
|
|
193
|
-
<map>
|
|
194
|
-
<entry key="MAIN">
|
|
195
|
-
<value>
|
|
196
|
-
<State />
|
|
197
|
-
</value>
|
|
198
|
-
</entry>
|
|
199
|
-
</map>
|
|
200
|
-
</option>
|
|
201
|
-
</component>
|
|
202
|
-
<component name="VcsManagerConfiguration">
|
|
203
|
-
<MESSAGE value="CNTRL-484 - added embed vimeo video" />
|
|
204
|
-
<MESSAGE value="CNTRL-484 - problem fix" />
|
|
205
|
-
<MESSAGE value="CNTRL-484 - version bump" />
|
|
206
|
-
<MESSAGE value="CNTRL-486 - added youtube item" />
|
|
207
|
-
<MESSAGE value="CNTRL-486 - added youtube type" />
|
|
208
|
-
<MESSAGE value="CNTRL-486 - youtube fixes" />
|
|
209
|
-
<MESSAGE value="CNTRL-486 - added mute to video when autoplay On" />
|
|
210
|
-
<MESSAGE value="CNTRL-486 - added search params to Url" />
|
|
211
|
-
<MESSAGE value="CNTRL-486 - version update" />
|
|
212
|
-
<MESSAGE value="CNTRL-486 - fixes" />
|
|
213
|
-
<MESSAGE value="CNTRL-486 - version bump" />
|
|
214
|
-
<MESSAGE value="CNTRL-617 Youtube anf vimeo videos Url update" />
|
|
215
|
-
<MESSAGE value="CNTRL-617 Version bump" />
|
|
216
|
-
<option name="LAST_COMMIT_MESSAGE" value="CNTRL-617 Version bump" />
|
|
217
|
-
</component>
|
|
218
|
-
</project>
|
|
Binary file
|