@looker/code-editor 0.1.23 → 0.1.25
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 +24 -0
- package/lib/Markdown/common.js +23 -8
- package/lib/Markdown/common.js.map +1 -1
- package/lib/esm/Markdown/common.js +23 -8
- package/lib/esm/Markdown/common.js.map +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### [0.1.25](https://www.github.com/looker-open-source/sdk-codegen/compare/code-editor-v0.1.24...code-editor-v0.1.25) (2022-10-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* devDependencies
|
|
10
|
+
* @looker/sdk-codegen bumped from ^21.7.1 to ^21.7.2
|
|
11
|
+
|
|
12
|
+
### [0.1.24](https://www.github.com/looker-open-source/sdk-codegen/compare/code-editor-v0.1.23...code-editor-v0.1.24) (2022-09-21)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* error document retrieval in API Explorer ([#1161](https://www.github.com/looker-open-source/sdk-codegen/issues/1161)) ([89a94e1](https://www.github.com/looker-open-source/sdk-codegen/commit/89a94e167b8a3e1aa662c0b5de7c585b3eac2f13))
|
|
18
|
+
* error documentation redirect and support for detailed error content ([#1167](https://www.github.com/looker-open-source/sdk-codegen/issues/1167)) ([5b4fc5b](https://www.github.com/looker-open-source/sdk-codegen/commit/5b4fc5b91e05ed4ccd9090724e4ac3f506b541fd))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Dependencies
|
|
22
|
+
|
|
23
|
+
* The following workspace dependencies were updated
|
|
24
|
+
* devDependencies
|
|
25
|
+
* @looker/sdk-codegen bumped from ^21.7.0 to ^21.7.1
|
|
26
|
+
|
|
3
27
|
### [0.1.23](https://www.github.com/looker-open-source/sdk-codegen/compare/code-editor-v0.1.22...code-editor-v0.1.23) (2022-07-29)
|
|
4
28
|
|
|
5
29
|
|
package/lib/Markdown/common.js
CHANGED
|
@@ -52,18 +52,28 @@ exports.MDParagraph = MDParagraph;
|
|
|
52
52
|
var OListInternal = _styledComponents.default.ol.withConfig({
|
|
53
53
|
displayName: "common__OListInternal",
|
|
54
54
|
componentId: "i00oep-2"
|
|
55
|
-
})(["max-width:600px;margin-bottom:20px;"]
|
|
55
|
+
})(["color:", ";max-width:600px;margin-bottom:20px;"], _ref4 => {
|
|
56
|
+
var {
|
|
57
|
+
theme
|
|
58
|
+
} = _ref4;
|
|
59
|
+
return theme.colors.text5;
|
|
60
|
+
});
|
|
56
61
|
|
|
57
62
|
var UListInternal = _styledComponents.default.ul.withConfig({
|
|
58
63
|
displayName: "common__UListInternal",
|
|
59
64
|
componentId: "i00oep-3"
|
|
60
|
-
})(["max-width:600px;margin-bottom:20px;"]
|
|
65
|
+
})(["color:", ";max-width:600px;margin-bottom:20px;"], _ref5 => {
|
|
66
|
+
var {
|
|
67
|
+
theme
|
|
68
|
+
} = _ref5;
|
|
69
|
+
return theme.colors.text5;
|
|
70
|
+
});
|
|
61
71
|
|
|
62
|
-
var MDList =
|
|
72
|
+
var MDList = _ref6 => {
|
|
63
73
|
var {
|
|
64
74
|
ordered
|
|
65
|
-
} =
|
|
66
|
-
rest = _objectWithoutProperties(
|
|
75
|
+
} = _ref6,
|
|
76
|
+
rest = _objectWithoutProperties(_ref6, ["ordered"]);
|
|
67
77
|
|
|
68
78
|
return ordered ? _react.default.createElement(OListInternal, rest) : _react.default.createElement(UListInternal, rest);
|
|
69
79
|
};
|
|
@@ -73,13 +83,18 @@ exports.MDList = MDList;
|
|
|
73
83
|
var MDListItem = _styledComponents.default.li.withConfig({
|
|
74
84
|
displayName: "common__MDListItem",
|
|
75
85
|
componentId: "i00oep-4"
|
|
76
|
-
})(["max-width:600px;margin-bottom:4px;"]
|
|
86
|
+
})(["color:", ";max-width:600px;margin-bottom:4px;line-height:1.5;"], _ref7 => {
|
|
87
|
+
var {
|
|
88
|
+
theme
|
|
89
|
+
} = _ref7;
|
|
90
|
+
return theme.colors.text5;
|
|
91
|
+
});
|
|
77
92
|
|
|
78
93
|
exports.MDListItem = MDListItem;
|
|
79
|
-
var MDTable = (0, _styledComponents.default)(_components.Table).attrs(
|
|
94
|
+
var MDTable = (0, _styledComponents.default)(_components.Table).attrs(_ref8 => {
|
|
80
95
|
var {
|
|
81
96
|
mb = 'large'
|
|
82
|
-
} =
|
|
97
|
+
} = _ref8;
|
|
83
98
|
return {
|
|
84
99
|
mb
|
|
85
100
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Markdown/common.tsx"],"names":["MDHeading","Heading","attrs","mb","pt","MDParagraph","Paragraph","theme","colors","text5","OListInternal","styled","ol","UListInternal","ul","MDList","ordered","rest","MDListItem","li","MDTable","Table"],"mappings":";;;;;;;AAyBA;;AACA;;AACA;;;;;;;;AAWO,IAAMA,SAAS,GAAG,+BAAOC,mBAAP,EAAgBC,KAAhB,CACvB;AAAA,MAAC;AAAEC,IAAAA,EAAE,GAAG,QAAP;AAAiBC,IAAAA,EAAE,GAAG;AAAtB,GAAD;AAAA,SAAqD;AAAED,IAAAA,EAAF;AAAMC,IAAAA;AAAN,GAArD;AAAA,CADuB,CAAH;AAAA;AAAA;AAAA,QAAf;;AAIA,IAAMC,WAAW,GAAG,+BAAOC,qBAAP,EAAkBJ,KAAlB,CACzB;AAAA,MAAC;AAAEC,IAAAA,EAAE,GAAG;AAAP,GAAD;AAAA,SAAuC;AACrCA,IAAAA;AADqC,GAAvC;AAAA,CADyB,CAAH;AAAA;AAAA;AAAA,oCAKb;AAAA,MAAC;AAAEI,IAAAA;AAAF,GAAD;AAAA,SAAeA,KAAK,CAACC,MAAN,CAAaC,KAA5B;AAAA,CALa,CAAjB;;;AASP,IAAMC,aAAa,GAAGC,0BAAOC,EAAV;AAAA;AAAA;AAAA,
|
|
1
|
+
{"version":3,"sources":["../../src/Markdown/common.tsx"],"names":["MDHeading","Heading","attrs","mb","pt","MDParagraph","Paragraph","theme","colors","text5","OListInternal","styled","ol","UListInternal","ul","MDList","ordered","rest","MDListItem","li","MDTable","Table"],"mappings":";;;;;;;AAyBA;;AACA;;AACA;;;;;;;;AAWO,IAAMA,SAAS,GAAG,+BAAOC,mBAAP,EAAgBC,KAAhB,CACvB;AAAA,MAAC;AAAEC,IAAAA,EAAE,GAAG,QAAP;AAAiBC,IAAAA,EAAE,GAAG;AAAtB,GAAD;AAAA,SAAqD;AAAED,IAAAA,EAAF;AAAMC,IAAAA;AAAN,GAArD;AAAA,CADuB,CAAH;AAAA;AAAA;AAAA,QAAf;;AAIA,IAAMC,WAAW,GAAG,+BAAOC,qBAAP,EAAkBJ,KAAlB,CACzB;AAAA,MAAC;AAAEC,IAAAA,EAAE,GAAG;AAAP,GAAD;AAAA,SAAuC;AACrCA,IAAAA;AADqC,GAAvC;AAAA,CADyB,CAAH;AAAA;AAAA;AAAA,oCAKb;AAAA,MAAC;AAAEI,IAAAA;AAAF,GAAD;AAAA,SAAeA,KAAK,CAACC,MAAN,CAAaC,KAA5B;AAAA,CALa,CAAjB;;;AASP,IAAMC,aAAa,GAAGC,0BAAOC,EAAV;AAAA;AAAA;AAAA,uDACR;AAAA,MAAC;AAAEL,IAAAA;AAAF,GAAD;AAAA,SAAeA,KAAK,CAACC,MAAN,CAAaC,KAA5B;AAAA,CADQ,CAAnB;;AAMA,IAAMI,aAAa,GAAGF,0BAAOG,EAAV;AAAA;AAAA;AAAA,uDACR;AAAA,MAAC;AAAEP,IAAAA;AAAF,GAAD;AAAA,SAAeA,KAAK,CAACC,MAAN,CAAaC,KAA5B;AAAA,CADQ,CAAnB;;AAMO,IAAMM,MAAqB,GAAG,SAA0B;AAAA,MAAzB;AAAEC,IAAAA;AAAF,GAAyB;AAAA,MAAXC,IAAW;;AAC7D,SAAOD,OAAO,GAAG,6BAAC,aAAD,EAAmBC,IAAnB,CAAH,GAAiC,6BAAC,aAAD,EAAmBA,IAAnB,CAA/C;AACD,CAFM;;;;AAIA,IAAMC,UAAU,GAAGP,0BAAOQ,EAAV;AAAA;AAAA;AAAA,sEACZ;AAAA,MAAC;AAAEZ,IAAAA;AAAF,GAAD;AAAA,SAAeA,KAAK,CAACC,MAAN,CAAaC,KAA5B;AAAA,CADY,CAAhB;;;AAOA,IAAMW,OAAO,GAAG,+BAAOC,iBAAP,EAAcnB,KAAd,CAAoB;AAAA,MAAC;AAAEC,IAAAA,EAAE,GAAG;AAAP,GAAD;AAAA,SAAmC;AAC5EA,IAAAA;AAD4E,GAAnC;AAAA,CAApB,CAAH;AAAA;AAAA;AAAA,QAAb","sourcesContent":["/*\n\n MIT License\n\n Copyright (c) 2021 Looker Data Sciences, Inc.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\n */\nimport React from 'react'\nimport styled from 'styled-components'\nimport { Paragraph, Table, Heading } from '@looker/components'\nimport type {\n HeadingProps,\n ParagraphProps,\n TableProps,\n} from '@looker/components'\n\n/**\n * Common styled components used by DocMarkdown\n */\n\nexport const MDHeading = styled(Heading).attrs(\n ({ mb = 'xsmall', pt = 'xsmall' }: HeadingProps) => ({ mb, pt })\n)<HeadingProps>``\n\nexport const MDParagraph = styled(Paragraph).attrs(\n ({ mb = 'large' }: ParagraphProps) => ({\n mb,\n })\n)`\n color: ${({ theme }) => theme.colors.text5};\n max-width: 600px;\n`\n\nconst OListInternal = styled.ol`\n color: ${({ theme }) => theme.colors.text5};\n max-width: 600px;\n margin-bottom: 20px;\n`\n\nconst UListInternal = styled.ul`\n color: ${({ theme }) => theme.colors.text5};\n max-width: 600px;\n margin-bottom: 20px;\n`\n\nexport const MDList: React.FC<any> = ({ ordered, ...rest }) => {\n return ordered ? <OListInternal {...rest} /> : <UListInternal {...rest} />\n}\n\nexport const MDListItem = styled.li`\n color: ${({ theme }) => theme.colors.text5};\n max-width: 600px;\n margin-bottom: 4px;\n line-height: 1.5;\n`\n\nexport const MDTable = styled(Table).attrs(({ mb = 'large' }: TableProps) => ({\n mb,\n}))``\n"],"file":"common.js"}
|
|
@@ -37,27 +37,42 @@ export var MDParagraph = styled(Paragraph).attrs(_ref2 => {
|
|
|
37
37
|
var OListInternal = styled.ol.withConfig({
|
|
38
38
|
displayName: "common__OListInternal",
|
|
39
39
|
componentId: "i00oep-2"
|
|
40
|
-
})(["max-width:600px;margin-bottom:20px;"]
|
|
40
|
+
})(["color:", ";max-width:600px;margin-bottom:20px;"], _ref4 => {
|
|
41
|
+
var {
|
|
42
|
+
theme
|
|
43
|
+
} = _ref4;
|
|
44
|
+
return theme.colors.text5;
|
|
45
|
+
});
|
|
41
46
|
var UListInternal = styled.ul.withConfig({
|
|
42
47
|
displayName: "common__UListInternal",
|
|
43
48
|
componentId: "i00oep-3"
|
|
44
|
-
})(["max-width:600px;margin-bottom:20px;"]
|
|
45
|
-
|
|
49
|
+
})(["color:", ";max-width:600px;margin-bottom:20px;"], _ref5 => {
|
|
50
|
+
var {
|
|
51
|
+
theme
|
|
52
|
+
} = _ref5;
|
|
53
|
+
return theme.colors.text5;
|
|
54
|
+
});
|
|
55
|
+
export var MDList = _ref6 => {
|
|
46
56
|
var {
|
|
47
57
|
ordered
|
|
48
|
-
} =
|
|
49
|
-
rest = _objectWithoutProperties(
|
|
58
|
+
} = _ref6,
|
|
59
|
+
rest = _objectWithoutProperties(_ref6, ["ordered"]);
|
|
50
60
|
|
|
51
61
|
return ordered ? React.createElement(OListInternal, rest) : React.createElement(UListInternal, rest);
|
|
52
62
|
};
|
|
53
63
|
export var MDListItem = styled.li.withConfig({
|
|
54
64
|
displayName: "common__MDListItem",
|
|
55
65
|
componentId: "i00oep-4"
|
|
56
|
-
})(["max-width:600px;margin-bottom:4px;"]
|
|
57
|
-
|
|
66
|
+
})(["color:", ";max-width:600px;margin-bottom:4px;line-height:1.5;"], _ref7 => {
|
|
67
|
+
var {
|
|
68
|
+
theme
|
|
69
|
+
} = _ref7;
|
|
70
|
+
return theme.colors.text5;
|
|
71
|
+
});
|
|
72
|
+
export var MDTable = styled(Table).attrs(_ref8 => {
|
|
58
73
|
var {
|
|
59
74
|
mb = 'large'
|
|
60
|
-
} =
|
|
75
|
+
} = _ref8;
|
|
61
76
|
return {
|
|
62
77
|
mb
|
|
63
78
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/Markdown/common.tsx"],"names":["React","styled","Paragraph","Table","Heading","MDHeading","attrs","mb","pt","MDParagraph","theme","colors","text5","OListInternal","ol","UListInternal","ul","MDList","ordered","rest","MDListItem","li","MDTable"],"mappings":";;;;AAyBA,OAAOA,KAAP,MAAkB,OAAlB;AACA,OAAOC,MAAP,MAAmB,mBAAnB;AACA,SAASC,SAAT,EAAoBC,KAApB,EAA2BC,OAA3B,QAA0C,oBAA1C;AAWA,OAAO,IAAMC,SAAS,GAAGJ,MAAM,CAACG,OAAD,CAAN,CAAgBE,KAAhB,CACvB;AAAA,MAAC;AAAEC,IAAAA,EAAE,GAAG,QAAP;AAAiBC,IAAAA,EAAE,GAAG;AAAtB,GAAD;AAAA,SAAqD;AAAED,IAAAA,EAAF;AAAMC,IAAAA;AAAN,GAArD;AAAA,CADuB,CAAH;AAAA;AAAA;AAAA,QAAf;AAIP,OAAO,IAAMC,WAAW,GAAGR,MAAM,CAACC,SAAD,CAAN,CAAkBI,KAAlB,CACzB;AAAA,MAAC;AAAEC,IAAAA,EAAE,GAAG;AAAP,GAAD;AAAA,SAAuC;AACrCA,IAAAA;AADqC,GAAvC;AAAA,CADyB,CAAH;AAAA;AAAA;AAAA,oCAKb;AAAA,MAAC;AAAEG,IAAAA;AAAF,GAAD;AAAA,SAAeA,KAAK,CAACC,MAAN,CAAaC,KAA5B;AAAA,CALa,CAAjB;AASP,IAAMC,aAAa,GAAGZ,MAAM,CAACa,EAAV;AAAA;AAAA;AAAA,
|
|
1
|
+
{"version":3,"sources":["../../../src/Markdown/common.tsx"],"names":["React","styled","Paragraph","Table","Heading","MDHeading","attrs","mb","pt","MDParagraph","theme","colors","text5","OListInternal","ol","UListInternal","ul","MDList","ordered","rest","MDListItem","li","MDTable"],"mappings":";;;;AAyBA,OAAOA,KAAP,MAAkB,OAAlB;AACA,OAAOC,MAAP,MAAmB,mBAAnB;AACA,SAASC,SAAT,EAAoBC,KAApB,EAA2BC,OAA3B,QAA0C,oBAA1C;AAWA,OAAO,IAAMC,SAAS,GAAGJ,MAAM,CAACG,OAAD,CAAN,CAAgBE,KAAhB,CACvB;AAAA,MAAC;AAAEC,IAAAA,EAAE,GAAG,QAAP;AAAiBC,IAAAA,EAAE,GAAG;AAAtB,GAAD;AAAA,SAAqD;AAAED,IAAAA,EAAF;AAAMC,IAAAA;AAAN,GAArD;AAAA,CADuB,CAAH;AAAA;AAAA;AAAA,QAAf;AAIP,OAAO,IAAMC,WAAW,GAAGR,MAAM,CAACC,SAAD,CAAN,CAAkBI,KAAlB,CACzB;AAAA,MAAC;AAAEC,IAAAA,EAAE,GAAG;AAAP,GAAD;AAAA,SAAuC;AACrCA,IAAAA;AADqC,GAAvC;AAAA,CADyB,CAAH;AAAA;AAAA;AAAA,oCAKb;AAAA,MAAC;AAAEG,IAAAA;AAAF,GAAD;AAAA,SAAeA,KAAK,CAACC,MAAN,CAAaC,KAA5B;AAAA,CALa,CAAjB;AASP,IAAMC,aAAa,GAAGZ,MAAM,CAACa,EAAV;AAAA;AAAA;AAAA,uDACR;AAAA,MAAC;AAAEJ,IAAAA;AAAF,GAAD;AAAA,SAAeA,KAAK,CAACC,MAAN,CAAaC,KAA5B;AAAA,CADQ,CAAnB;AAMA,IAAMG,aAAa,GAAGd,MAAM,CAACe,EAAV;AAAA;AAAA;AAAA,uDACR;AAAA,MAAC;AAAEN,IAAAA;AAAF,GAAD;AAAA,SAAeA,KAAK,CAACC,MAAN,CAAaC,KAA5B;AAAA,CADQ,CAAnB;AAMA,OAAO,IAAMK,MAAqB,GAAG,SAA0B;AAAA,MAAzB;AAAEC,IAAAA;AAAF,GAAyB;AAAA,MAAXC,IAAW;;AAC7D,SAAOD,OAAO,GAAG,oBAAC,aAAD,EAAmBC,IAAnB,CAAH,GAAiC,oBAAC,aAAD,EAAmBA,IAAnB,CAA/C;AACD,CAFM;AAIP,OAAO,IAAMC,UAAU,GAAGnB,MAAM,CAACoB,EAAV;AAAA;AAAA;AAAA,sEACZ;AAAA,MAAC;AAAEX,IAAAA;AAAF,GAAD;AAAA,SAAeA,KAAK,CAACC,MAAN,CAAaC,KAA5B;AAAA,CADY,CAAhB;AAOP,OAAO,IAAMU,OAAO,GAAGrB,MAAM,CAACE,KAAD,CAAN,CAAcG,KAAd,CAAoB;AAAA,MAAC;AAAEC,IAAAA,EAAE,GAAG;AAAP,GAAD;AAAA,SAAmC;AAC5EA,IAAAA;AAD4E,GAAnC;AAAA,CAApB,CAAH;AAAA;AAAA;AAAA,QAAb","sourcesContent":["/*\n\n MIT License\n\n Copyright (c) 2021 Looker Data Sciences, Inc.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n\n */\nimport React from 'react'\nimport styled from 'styled-components'\nimport { Paragraph, Table, Heading } from '@looker/components'\nimport type {\n HeadingProps,\n ParagraphProps,\n TableProps,\n} from '@looker/components'\n\n/**\n * Common styled components used by DocMarkdown\n */\n\nexport const MDHeading = styled(Heading).attrs(\n ({ mb = 'xsmall', pt = 'xsmall' }: HeadingProps) => ({ mb, pt })\n)<HeadingProps>``\n\nexport const MDParagraph = styled(Paragraph).attrs(\n ({ mb = 'large' }: ParagraphProps) => ({\n mb,\n })\n)`\n color: ${({ theme }) => theme.colors.text5};\n max-width: 600px;\n`\n\nconst OListInternal = styled.ol`\n color: ${({ theme }) => theme.colors.text5};\n max-width: 600px;\n margin-bottom: 20px;\n`\n\nconst UListInternal = styled.ul`\n color: ${({ theme }) => theme.colors.text5};\n max-width: 600px;\n margin-bottom: 20px;\n`\n\nexport const MDList: React.FC<any> = ({ ordered, ...rest }) => {\n return ordered ? <OListInternal {...rest} /> : <UListInternal {...rest} />\n}\n\nexport const MDListItem = styled.li`\n color: ${({ theme }) => theme.colors.text5};\n max-width: 600px;\n margin-bottom: 4px;\n line-height: 1.5;\n`\n\nexport const MDTable = styled(Table).attrs(({ mb = 'large' }: TableProps) => ({\n mb,\n}))``\n"],"file":"common.js"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@looker/code-editor",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.25",
|
|
4
4
|
"description": "A syntax highlighter Viewer and Editor for Looker SDK supported languages.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/esm/index.js",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"watch": "yarn lerna exec --scope @looker/code-editor --stream 'BABEL_ENV=build babel src --root-mode upward --out-dir lib/esm --source-maps --extensions .ts,.tsx --no-comments --watch'"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@looker/components-test-utils": "^1.5.
|
|
33
|
-
"@looker/sdk-codegen": "^21.7.
|
|
32
|
+
"@looker/components-test-utils": "^1.5.26",
|
|
33
|
+
"@looker/sdk-codegen": "^21.7.2",
|
|
34
34
|
"@testing-library/jest-dom": "^5.11.6",
|
|
35
35
|
"@testing-library/react": "^11.2.2",
|
|
36
36
|
"@testing-library/user-event": "^12.6.0",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"webpack-cli": "^3.3.11"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@looker/components": "^
|
|
53
|
-
"@looker/design-tokens": "^2.7.
|
|
52
|
+
"@looker/components": "^3.0.8",
|
|
53
|
+
"@looker/design-tokens": "^2.7.21",
|
|
54
54
|
"prism-react-renderer": "^1.2.0",
|
|
55
55
|
"react": "^16.13.1",
|
|
56
56
|
"react-dom": "^16.13.1",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"react-simple-code-editor": "^0.11.0",
|
|
59
59
|
"styled-components": "^5.2.1"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "051cf862cf3b422bf9bc0a38dcf2d7606f7500d1"
|
|
62
62
|
}
|