qumra-cli 2.4.5 → 2.4.7
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/dist/cli.js +58 -49
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -278807,59 +278807,65 @@ const ansiRegex$1 = ansiRegex$2;
|
|
|
278807
278807
|
|
|
278808
278808
|
var stripAnsi$3 = string => typeof string === 'string' ? string.replace(ansiRegex$1(), '') : string;
|
|
278809
278809
|
|
|
278810
|
-
var isFullwidthCodePoint$
|
|
278810
|
+
var isFullwidthCodePoint$1 = {exports: {}};
|
|
278811
278811
|
|
|
278812
278812
|
/* eslint-disable yoda */
|
|
278813
278813
|
|
|
278814
|
-
|
|
278815
|
-
if (Number.isNaN(codePoint)) {
|
|
278816
|
-
return false;
|
|
278817
|
-
}
|
|
278814
|
+
var hasRequiredIsFullwidthCodePoint;
|
|
278818
278815
|
|
|
278819
|
-
|
|
278820
|
-
|
|
278821
|
-
|
|
278822
|
-
codePoint >= 0x1100 && (
|
|
278823
|
-
codePoint <= 0x115F || // Hangul Jamo
|
|
278824
|
-
codePoint === 0x2329 || // LEFT-POINTING ANGLE BRACKET
|
|
278825
|
-
codePoint === 0x232A || // RIGHT-POINTING ANGLE BRACKET
|
|
278826
|
-
// CJK Radicals Supplement .. Enclosed CJK Letters and Months
|
|
278827
|
-
(0x2E80 <= codePoint && codePoint <= 0x3247 && codePoint !== 0x303F) ||
|
|
278828
|
-
// Enclosed CJK Letters and Months .. CJK Unified Ideographs Extension A
|
|
278829
|
-
(0x3250 <= codePoint && codePoint <= 0x4DBF) ||
|
|
278830
|
-
// CJK Unified Ideographs .. Yi Radicals
|
|
278831
|
-
(0x4E00 <= codePoint && codePoint <= 0xA4C6) ||
|
|
278832
|
-
// Hangul Jamo Extended-A
|
|
278833
|
-
(0xA960 <= codePoint && codePoint <= 0xA97C) ||
|
|
278834
|
-
// Hangul Syllables
|
|
278835
|
-
(0xAC00 <= codePoint && codePoint <= 0xD7A3) ||
|
|
278836
|
-
// CJK Compatibility Ideographs
|
|
278837
|
-
(0xF900 <= codePoint && codePoint <= 0xFAFF) ||
|
|
278838
|
-
// Vertical Forms
|
|
278839
|
-
(0xFE10 <= codePoint && codePoint <= 0xFE19) ||
|
|
278840
|
-
// CJK Compatibility Forms .. Small Form Variants
|
|
278841
|
-
(0xFE30 <= codePoint && codePoint <= 0xFE6B) ||
|
|
278842
|
-
// Halfwidth and Fullwidth Forms
|
|
278843
|
-
(0xFF01 <= codePoint && codePoint <= 0xFF60) ||
|
|
278844
|
-
(0xFFE0 <= codePoint && codePoint <= 0xFFE6) ||
|
|
278845
|
-
// Kana Supplement
|
|
278846
|
-
(0x1B000 <= codePoint && codePoint <= 0x1B001) ||
|
|
278847
|
-
// Enclosed Ideographic Supplement
|
|
278848
|
-
(0x1F200 <= codePoint && codePoint <= 0x1F251) ||
|
|
278849
|
-
// CJK Unified Ideographs Extension B .. Tertiary Ideographic Plane
|
|
278850
|
-
(0x20000 <= codePoint && codePoint <= 0x3FFFD)
|
|
278851
|
-
)
|
|
278852
|
-
) {
|
|
278853
|
-
return true;
|
|
278854
|
-
}
|
|
278816
|
+
function requireIsFullwidthCodePoint () {
|
|
278817
|
+
if (hasRequiredIsFullwidthCodePoint) return isFullwidthCodePoint$1.exports;
|
|
278818
|
+
hasRequiredIsFullwidthCodePoint = 1;
|
|
278855
278819
|
|
|
278856
|
-
|
|
278857
|
-
|
|
278820
|
+
const isFullwidthCodePoint = codePoint => {
|
|
278821
|
+
if (Number.isNaN(codePoint)) {
|
|
278822
|
+
return false;
|
|
278823
|
+
}
|
|
278858
278824
|
|
|
278859
|
-
|
|
278860
|
-
|
|
278825
|
+
// Code points are derived from:
|
|
278826
|
+
// http://www.unix.org/Public/UNIDATA/EastAsianWidth.txt
|
|
278827
|
+
if (
|
|
278828
|
+
codePoint >= 0x1100 && (
|
|
278829
|
+
codePoint <= 0x115F || // Hangul Jamo
|
|
278830
|
+
codePoint === 0x2329 || // LEFT-POINTING ANGLE BRACKET
|
|
278831
|
+
codePoint === 0x232A || // RIGHT-POINTING ANGLE BRACKET
|
|
278832
|
+
// CJK Radicals Supplement .. Enclosed CJK Letters and Months
|
|
278833
|
+
(0x2E80 <= codePoint && codePoint <= 0x3247 && codePoint !== 0x303F) ||
|
|
278834
|
+
// Enclosed CJK Letters and Months .. CJK Unified Ideographs Extension A
|
|
278835
|
+
(0x3250 <= codePoint && codePoint <= 0x4DBF) ||
|
|
278836
|
+
// CJK Unified Ideographs .. Yi Radicals
|
|
278837
|
+
(0x4E00 <= codePoint && codePoint <= 0xA4C6) ||
|
|
278838
|
+
// Hangul Jamo Extended-A
|
|
278839
|
+
(0xA960 <= codePoint && codePoint <= 0xA97C) ||
|
|
278840
|
+
// Hangul Syllables
|
|
278841
|
+
(0xAC00 <= codePoint && codePoint <= 0xD7A3) ||
|
|
278842
|
+
// CJK Compatibility Ideographs
|
|
278843
|
+
(0xF900 <= codePoint && codePoint <= 0xFAFF) ||
|
|
278844
|
+
// Vertical Forms
|
|
278845
|
+
(0xFE10 <= codePoint && codePoint <= 0xFE19) ||
|
|
278846
|
+
// CJK Compatibility Forms .. Small Form Variants
|
|
278847
|
+
(0xFE30 <= codePoint && codePoint <= 0xFE6B) ||
|
|
278848
|
+
// Halfwidth and Fullwidth Forms
|
|
278849
|
+
(0xFF01 <= codePoint && codePoint <= 0xFF60) ||
|
|
278850
|
+
(0xFFE0 <= codePoint && codePoint <= 0xFFE6) ||
|
|
278851
|
+
// Kana Supplement
|
|
278852
|
+
(0x1B000 <= codePoint && codePoint <= 0x1B001) ||
|
|
278853
|
+
// Enclosed Ideographic Supplement
|
|
278854
|
+
(0x1F200 <= codePoint && codePoint <= 0x1F251) ||
|
|
278855
|
+
// CJK Unified Ideographs Extension B .. Tertiary Ideographic Plane
|
|
278856
|
+
(0x20000 <= codePoint && codePoint <= 0x3FFFD)
|
|
278857
|
+
)
|
|
278858
|
+
) {
|
|
278859
|
+
return true;
|
|
278860
|
+
}
|
|
278861
278861
|
|
|
278862
|
-
|
|
278862
|
+
return false;
|
|
278863
|
+
};
|
|
278864
|
+
|
|
278865
|
+
isFullwidthCodePoint$1.exports = isFullwidthCodePoint;
|
|
278866
|
+
isFullwidthCodePoint$1.exports.default = isFullwidthCodePoint;
|
|
278867
|
+
return isFullwidthCodePoint$1.exports;
|
|
278868
|
+
}
|
|
278863
278869
|
|
|
278864
278870
|
var emojiRegex$2 = function () {
|
|
278865
278871
|
// https://mths.be/emoji
|
|
@@ -278867,7 +278873,7 @@ var emojiRegex$2 = function () {
|
|
|
278867
278873
|
};
|
|
278868
278874
|
|
|
278869
278875
|
const stripAnsi$2 = stripAnsi$3;
|
|
278870
|
-
const isFullwidthCodePoint =
|
|
278876
|
+
const isFullwidthCodePoint = requireIsFullwidthCodePoint();
|
|
278871
278877
|
const emojiRegex$1 = emojiRegex$2;
|
|
278872
278878
|
|
|
278873
278879
|
const stringWidth$2 = string => {
|
|
@@ -279155,7 +279161,7 @@ function requireStringWidth () {
|
|
|
279155
279161
|
if (hasRequiredStringWidth) return stringWidth.exports;
|
|
279156
279162
|
hasRequiredStringWidth = 1;
|
|
279157
279163
|
const stripAnsi = requireStripAnsi();
|
|
279158
|
-
const isFullwidthCodePoint =
|
|
279164
|
+
const isFullwidthCodePoint = requireIsFullwidthCodePoint();
|
|
279159
279165
|
const emojiRegex = requireEmojiRegex();
|
|
279160
279166
|
|
|
279161
279167
|
const stringWidth$1 = string => {
|
|
@@ -304360,7 +304366,7 @@ class SectionBuilder {
|
|
|
304360
304366
|
}
|
|
304361
304367
|
}
|
|
304362
304368
|
|
|
304363
|
-
var version$2 = "2.4.
|
|
304369
|
+
var version$2 = "2.4.7";
|
|
304364
304370
|
var pkg = {
|
|
304365
304371
|
version: version$2};
|
|
304366
304372
|
|
|
@@ -360190,6 +360196,9 @@ let ThemeWatcherService = class ThemeWatcherService {
|
|
|
360190
360196
|
if (parsedSchema.presets)
|
|
360191
360197
|
variables.input.presets = parsedSchema.presets;
|
|
360192
360198
|
variables.input.name = (_b = parsedSchema.name) !== null && _b !== void 0 ? _b : '';
|
|
360199
|
+
variables.input.allowAdd = parsedSchema.allowAdd;
|
|
360200
|
+
variables.input.allowRemove = parsedSchema.allowRemove;
|
|
360201
|
+
variables.input.allowReorder = parsedSchema.allowReorder;
|
|
360193
360202
|
}
|
|
360194
360203
|
await this.graphql.request(mutation, variables);
|
|
360195
360204
|
}
|