@readme/markdown 9.4.1 → 9.6.0
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/README.md +16 -0
- package/components/Callout/style.scss +50 -19
- package/dist/example/Header.d.ts +5 -1
- package/dist/index.d.ts +1 -0
- package/dist/lib/owlmoji.d.ts +9 -0
- package/dist/main.css +1 -1
- package/dist/main.css.map +1 -1
- package/dist/main.js +42 -2
- package/dist/main.node.js +42 -2
- package/dist/main.node.js.map +1 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -11685,6 +11685,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11685
11685
|
// EXPORTS
|
|
11686
11686
|
__webpack_require__.d(__webpack_exports__, {
|
|
11687
11687
|
Components: () => (/* reexport */ components_namespaceObject),
|
|
11688
|
+
Owlmoji: () => (/* reexport */ Owlmoji),
|
|
11688
11689
|
compile: () => (/* reexport */ lib_compile),
|
|
11689
11690
|
exports: () => (/* reexport */ lib_exports),
|
|
11690
11691
|
hast: () => (/* reexport */ lib_hast),
|
|
@@ -57999,18 +58000,56 @@ const emojiToName = {
|
|
|
57999
58000
|
|
|
58000
58001
|
;// ./lib/owlmoji.ts
|
|
58001
58002
|
|
|
58002
|
-
const owlmoji = [
|
|
58003
|
+
const owlmoji = [
|
|
58004
|
+
{
|
|
58005
|
+
emoji: '', // This `emoji` property doesn't get consumed, but is required for type consistency
|
|
58006
|
+
names: ['owlbert'],
|
|
58007
|
+
tags: ['owlbert'],
|
|
58008
|
+
description: 'an owlbert for any occasion',
|
|
58009
|
+
category: 'ReadMe',
|
|
58010
|
+
},
|
|
58011
|
+
{
|
|
58012
|
+
emoji: '',
|
|
58013
|
+
names: ['owlbert-books'],
|
|
58014
|
+
tags: ['owlbert'],
|
|
58015
|
+
description: 'owlbert carrying books',
|
|
58016
|
+
category: 'ReadMe',
|
|
58017
|
+
},
|
|
58018
|
+
{
|
|
58019
|
+
emoji: '',
|
|
58020
|
+
names: ['owlbert-mask'],
|
|
58021
|
+
tags: ['owlbert'],
|
|
58022
|
+
description: 'owlbert with a respirator',
|
|
58023
|
+
category: 'ReadMe',
|
|
58024
|
+
},
|
|
58025
|
+
{
|
|
58026
|
+
emoji: '',
|
|
58027
|
+
names: ['owlbert-reading'],
|
|
58028
|
+
tags: ['owlbert'],
|
|
58029
|
+
description: 'owlbert reading',
|
|
58030
|
+
category: 'ReadMe',
|
|
58031
|
+
},
|
|
58032
|
+
{
|
|
58033
|
+
emoji: '',
|
|
58034
|
+
names: ['owlbert-thinking'],
|
|
58035
|
+
tags: ['owlbert'],
|
|
58036
|
+
description: 'owlbert thinking',
|
|
58037
|
+
category: 'ReadMe',
|
|
58038
|
+
},
|
|
58039
|
+
];
|
|
58040
|
+
const owlmojiNames = owlmoji.flatMap(emoji => emoji.names);
|
|
58003
58041
|
class Owlmoji {
|
|
58004
58042
|
static kind = (name) => {
|
|
58005
58043
|
if (name in nameToEmoji)
|
|
58006
58044
|
return 'gemoji';
|
|
58007
58045
|
else if (name.match(/^fa-/))
|
|
58008
58046
|
return 'fontawesome';
|
|
58009
|
-
else if (
|
|
58047
|
+
else if (owlmojiNames.includes(name))
|
|
58010
58048
|
return 'owlmoji';
|
|
58011
58049
|
return null;
|
|
58012
58050
|
};
|
|
58013
58051
|
static nameToEmoji = nameToEmoji;
|
|
58052
|
+
static owlmoji = gemoji.concat(owlmoji).sort((a, b) => a.names[0].localeCompare(b.names[0]));
|
|
58014
58053
|
}
|
|
58015
58054
|
|
|
58016
58055
|
;// ./processor/transform/gemoji+.ts
|
|
@@ -88641,6 +88680,7 @@ const utils = {
|
|
|
88641
88680
|
|
|
88642
88681
|
|
|
88643
88682
|
|
|
88683
|
+
|
|
88644
88684
|
})();
|
|
88645
88685
|
|
|
88646
88686
|
/******/ return __webpack_exports__;
|
package/dist/main.node.js
CHANGED
|
@@ -16118,6 +16118,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16118
16118
|
// EXPORTS
|
|
16119
16119
|
__webpack_require__.d(__webpack_exports__, {
|
|
16120
16120
|
Components: () => (/* reexport */ components_namespaceObject),
|
|
16121
|
+
Owlmoji: () => (/* reexport */ Owlmoji),
|
|
16121
16122
|
compile: () => (/* reexport */ lib_compile),
|
|
16122
16123
|
exports: () => (/* reexport */ lib_exports),
|
|
16123
16124
|
hast: () => (/* reexport */ lib_hast),
|
|
@@ -74909,18 +74910,56 @@ const emojiToName = {
|
|
|
74909
74910
|
|
|
74910
74911
|
;// ./lib/owlmoji.ts
|
|
74911
74912
|
|
|
74912
|
-
const owlmoji = [
|
|
74913
|
+
const owlmoji = [
|
|
74914
|
+
{
|
|
74915
|
+
emoji: '', // This `emoji` property doesn't get consumed, but is required for type consistency
|
|
74916
|
+
names: ['owlbert'],
|
|
74917
|
+
tags: ['owlbert'],
|
|
74918
|
+
description: 'an owlbert for any occasion',
|
|
74919
|
+
category: 'ReadMe',
|
|
74920
|
+
},
|
|
74921
|
+
{
|
|
74922
|
+
emoji: '',
|
|
74923
|
+
names: ['owlbert-books'],
|
|
74924
|
+
tags: ['owlbert'],
|
|
74925
|
+
description: 'owlbert carrying books',
|
|
74926
|
+
category: 'ReadMe',
|
|
74927
|
+
},
|
|
74928
|
+
{
|
|
74929
|
+
emoji: '',
|
|
74930
|
+
names: ['owlbert-mask'],
|
|
74931
|
+
tags: ['owlbert'],
|
|
74932
|
+
description: 'owlbert with a respirator',
|
|
74933
|
+
category: 'ReadMe',
|
|
74934
|
+
},
|
|
74935
|
+
{
|
|
74936
|
+
emoji: '',
|
|
74937
|
+
names: ['owlbert-reading'],
|
|
74938
|
+
tags: ['owlbert'],
|
|
74939
|
+
description: 'owlbert reading',
|
|
74940
|
+
category: 'ReadMe',
|
|
74941
|
+
},
|
|
74942
|
+
{
|
|
74943
|
+
emoji: '',
|
|
74944
|
+
names: ['owlbert-thinking'],
|
|
74945
|
+
tags: ['owlbert'],
|
|
74946
|
+
description: 'owlbert thinking',
|
|
74947
|
+
category: 'ReadMe',
|
|
74948
|
+
},
|
|
74949
|
+
];
|
|
74950
|
+
const owlmojiNames = owlmoji.flatMap(emoji => emoji.names);
|
|
74913
74951
|
class Owlmoji {
|
|
74914
74952
|
static kind = (name) => {
|
|
74915
74953
|
if (name in nameToEmoji)
|
|
74916
74954
|
return 'gemoji';
|
|
74917
74955
|
else if (name.match(/^fa-/))
|
|
74918
74956
|
return 'fontawesome';
|
|
74919
|
-
else if (
|
|
74957
|
+
else if (owlmojiNames.includes(name))
|
|
74920
74958
|
return 'owlmoji';
|
|
74921
74959
|
return null;
|
|
74922
74960
|
};
|
|
74923
74961
|
static nameToEmoji = nameToEmoji;
|
|
74962
|
+
static owlmoji = gemoji.concat(owlmoji).sort((a, b) => a.names[0].localeCompare(b.names[0]));
|
|
74924
74963
|
}
|
|
74925
74964
|
|
|
74926
74965
|
;// ./processor/transform/gemoji+.ts
|
|
@@ -105551,6 +105590,7 @@ const utils = {
|
|
|
105551
105590
|
|
|
105552
105591
|
|
|
105553
105592
|
|
|
105593
|
+
|
|
105554
105594
|
})();
|
|
105555
105595
|
|
|
105556
105596
|
module.exports = __webpack_exports__;
|