@atlaskit/adf-schema 30.0.3 → 30.0.4
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 +6 -0
- package/dist/cjs/index.js +1 -1
- package/dist/es2019/index.js +1 -1
- package/dist/esm/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/cjs/index.js
CHANGED
@@ -1044,7 +1044,7 @@ var _schema = require("./schema");
|
|
1044
1044
|
var _utils = require("./utils");
|
1045
1045
|
var buildFilesList = function buildFilesList(dirPath) {
|
1046
1046
|
return _fs.default.readdirSync(dirPath).filter(function (node) {
|
1047
|
-
return !node.startsWith('.') && node
|
1047
|
+
return !node.startsWith('.') && !node.startsWith('index');
|
1048
1048
|
}).map(function (node) {
|
1049
1049
|
return _path.default.basename(node, _path.default.extname(node));
|
1050
1050
|
});
|
package/dist/es2019/index.js
CHANGED
@@ -3,7 +3,7 @@ import path from 'path';
|
|
3
3
|
export { PanelType, AnnotationTypes, alignment, alignmentPositionMap, annotation, blockCard, blockquote, bodiedExtension, breakout, bulletList, bulletListSelector, caption, code, codeBlock, codeBlockToJSON, colorPalette, /** @deprecated [ED-15849] The extended palette is now rolled into the main one. Use `colorPalette` instead. */
|
4
4
|
colorPaletteExtended, confluenceInlineComment, confluenceJiraIssue, confluenceUnsupportedBlock, confluenceUnsupportedInline, copyPrivateMediaAttributes, createSchema, dataConsumer, dataConsumerToJSON, date, decisionItem, decisionList, decisionListSelector, doc, em, embedCard, emoji, expand, expandToJSON, extension, fragment, fragmentToJSON, hardBreak, heading, image, indentation, inlineCard, inlineExtension, inlineNodes, layoutColumn, layoutSection, link, linkToJSON, listItem, media, mediaGroup, mediaSingle, mediaSingleWithCaption, mediaSingleWithWidthType, mediaSingleFull, mediaSingleSpec, mediaInline, mediaSingleToJSON, mediaToJSON, mention, mentionToJSON, nestedExpand, orderedList, orderedListSelector, orderedListWithOrder, panel, paragraph, placeholder, rule, sanitizeNodes, getCellAttrs, getCellDomAttrs, status, strike, strong, subsup, table, tableWithCustomWidth, tableBackgroundBorderColor, tableBackgroundColorNames, tableBackgroundColorPalette, tableCell, tableCellContentDomSelector, tableCellContentWrapperSelector, tableCellSelector, tableHeader, tableHeaderSelector, tablePrefixSelector, tableRow, tableToJSON, taskItem, taskList, taskListSelector, text, textColor, toJSONTableCell, toJSONTableHeader, typeAheadQuery, underline, unknownBlock, unsupportedBlock, unsupportedInline, unsupportedNodeTypesForMediaCards, buildAnnotationMarkDataAttributes, AnnotationMarkStates, unsupportedMark, unsupportedNodeAttribute, border, borderColorPalette } from './schema';
|
5
5
|
export { B100, B400, B50, B500, B75, G200, G300, G400, G50, G500, G75, N0, N20, N200, N30, N300, N40, N50, N500, N60, N80, N800, N90, P100, P300, P400, P50, P500, P75, R100, R300, R400, R50, R500, R75, T100, T300, T50, T500, T75, Y200, Y400, Y50, Y500, Y75, acNameToEmoji, acShortcutToEmoji, emojiIdToAcName, generateUuid, getEmojiAcName, getLinkMatch, hexToRgb, hexToRgba, isHex, isRgb, isSafeUrl, linkify, linkifyMatch, normalizeHexColor, normalizeUrl, rgbToHex, uuid } from './utils';
|
6
|
-
const buildFilesList = dirPath => fs.readdirSync(dirPath).filter(node => !node.startsWith('.') && node
|
6
|
+
const buildFilesList = dirPath => fs.readdirSync(dirPath).filter(node => !node.startsWith('.') && !node.startsWith('index')).map(node => path.basename(node, path.extname(node)));
|
7
7
|
const nodes = buildFilesList(path.join(__dirname, './schema/nodes'));
|
8
8
|
const marks = buildFilesList(path.join(__dirname, './schema/marks'));
|
9
9
|
export { nodes, marks };
|
package/dist/esm/index.js
CHANGED
@@ -5,7 +5,7 @@ colorPaletteExtended, confluenceInlineComment, confluenceJiraIssue, confluenceUn
|
|
5
5
|
export { B100, B400, B50, B500, B75, G200, G300, G400, G50, G500, G75, N0, N20, N200, N30, N300, N40, N50, N500, N60, N80, N800, N90, P100, P300, P400, P50, P500, P75, R100, R300, R400, R50, R500, R75, T100, T300, T50, T500, T75, Y200, Y400, Y50, Y500, Y75, acNameToEmoji, acShortcutToEmoji, emojiIdToAcName, generateUuid, getEmojiAcName, getLinkMatch, hexToRgb, hexToRgba, isHex, isRgb, isSafeUrl, linkify, linkifyMatch, normalizeHexColor, normalizeUrl, rgbToHex, uuid } from './utils';
|
6
6
|
var buildFilesList = function buildFilesList(dirPath) {
|
7
7
|
return fs.readdirSync(dirPath).filter(function (node) {
|
8
|
-
return !node.startsWith('.') && node
|
8
|
+
return !node.startsWith('.') && !node.startsWith('index');
|
9
9
|
}).map(function (node) {
|
10
10
|
return path.basename(node, path.extname(node));
|
11
11
|
});
|
package/package.json
CHANGED