@bitplanet/deva-sdk 0.8.3 → 0.8.5
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/assets/deva-sdk.css +1 -1
- package/dist/components.d.ts +53 -79
- package/dist/components.es.js +16534 -16001
- package/dist/config-CBh0zg_P.js +677 -0
- package/dist/index.d.ts +53 -79
- package/dist/index.es.js +251 -207
- package/package.json +20 -18
- package/dist/config-CL6PuR8K.js +0 -669
package/dist/index.d.ts
CHANGED
|
@@ -6595,23 +6595,55 @@ declare type UserPersonaInfo = components["schemas"]["UserPersonaInfo"];
|
|
|
6595
6595
|
export { }
|
|
6596
6596
|
|
|
6597
6597
|
|
|
6598
|
-
|
|
6599
|
-
|
|
6600
|
-
|
|
6598
|
+
|
|
6599
|
+
declare module 'micromark-util-types' {
|
|
6600
|
+
interface TokenTypeMap {
|
|
6601
|
+
strikethroughSequence: 'strikethroughSequence'
|
|
6602
|
+
strikethroughSequenceTemporary: 'strikethroughSequenceTemporary'
|
|
6603
|
+
strikethrough: 'strikethrough'
|
|
6604
|
+
strikethroughText: 'strikethroughText'
|
|
6605
|
+
}
|
|
6601
6606
|
}
|
|
6602
6607
|
|
|
6603
6608
|
|
|
6604
|
-
declare namespace v5 {
|
|
6605
|
-
var DNS: string;
|
|
6606
|
-
var URL: string;
|
|
6607
|
-
}
|
|
6608
6609
|
|
|
6610
|
+
/**
|
|
6611
|
+
* Augment types.
|
|
6612
|
+
*/
|
|
6613
|
+
declare module 'micromark-util-types' {
|
|
6614
|
+
/**
|
|
6615
|
+
* Compile data.
|
|
6616
|
+
*/
|
|
6617
|
+
interface CompileData {
|
|
6618
|
+
gfmFootnoteDefinitions?: Record<string, string>
|
|
6619
|
+
gfmFootnoteDefinitionStack?: Array<string>
|
|
6620
|
+
gfmFootnoteCallCounts?: Record<string, number>
|
|
6621
|
+
gfmFootnoteCallOrder?: Array<string>
|
|
6622
|
+
}
|
|
6609
6623
|
|
|
6624
|
+
/**
|
|
6625
|
+
* Parse context.
|
|
6626
|
+
*/
|
|
6627
|
+
interface ParseContext {
|
|
6628
|
+
gfmFootnotes?: Array<string>
|
|
6629
|
+
}
|
|
6610
6630
|
|
|
6611
|
-
|
|
6612
|
-
|
|
6613
|
-
|
|
6614
|
-
|
|
6631
|
+
/**
|
|
6632
|
+
* Token types.
|
|
6633
|
+
*/
|
|
6634
|
+
interface TokenTypeMap {
|
|
6635
|
+
gfmFootnoteCall: 'gfmFootnoteCall'
|
|
6636
|
+
gfmFootnoteCallLabelMarker: 'gfmFootnoteCallLabelMarker'
|
|
6637
|
+
gfmFootnoteCallMarker: 'gfmFootnoteCallMarker'
|
|
6638
|
+
gfmFootnoteCallString: 'gfmFootnoteCallString'
|
|
6639
|
+
gfmFootnoteDefinition: 'gfmFootnoteDefinition'
|
|
6640
|
+
gfmFootnoteDefinitionIndent: 'gfmFootnoteDefinitionIndent'
|
|
6641
|
+
gfmFootnoteDefinitionLabel: 'gfmFootnoteDefinitionLabel'
|
|
6642
|
+
gfmFootnoteDefinitionLabelMarker: 'gfmFootnoteDefinitionLabelMarker'
|
|
6643
|
+
gfmFootnoteDefinitionLabelString: 'gfmFootnoteDefinitionLabelString'
|
|
6644
|
+
gfmFootnoteDefinitionMarker: 'gfmFootnoteDefinitionMarker'
|
|
6645
|
+
gfmFootnoteDefinitionWhitespace: 'gfmFootnoteDefinitionWhitespace'
|
|
6646
|
+
}
|
|
6615
6647
|
}
|
|
6616
6648
|
|
|
6617
6649
|
|
|
@@ -6678,70 +6710,6 @@ declare module 'mdast' {
|
|
|
6678
6710
|
|
|
6679
6711
|
|
|
6680
6712
|
|
|
6681
|
-
/**
|
|
6682
|
-
* Augment types.
|
|
6683
|
-
*/
|
|
6684
|
-
declare module 'micromark-util-types' {
|
|
6685
|
-
/**
|
|
6686
|
-
* Compile data.
|
|
6687
|
-
*/
|
|
6688
|
-
interface CompileData {
|
|
6689
|
-
gfmFootnoteDefinitions?: Record<string, string>
|
|
6690
|
-
gfmFootnoteDefinitionStack?: Array<string>
|
|
6691
|
-
gfmFootnoteCallCounts?: Record<string, number>
|
|
6692
|
-
gfmFootnoteCallOrder?: Array<string>
|
|
6693
|
-
}
|
|
6694
|
-
|
|
6695
|
-
/**
|
|
6696
|
-
* Parse context.
|
|
6697
|
-
*/
|
|
6698
|
-
interface ParseContext {
|
|
6699
|
-
gfmFootnotes?: Array<string>
|
|
6700
|
-
}
|
|
6701
|
-
|
|
6702
|
-
/**
|
|
6703
|
-
* Token types.
|
|
6704
|
-
*/
|
|
6705
|
-
interface TokenTypeMap {
|
|
6706
|
-
gfmFootnoteCall: 'gfmFootnoteCall'
|
|
6707
|
-
gfmFootnoteCallLabelMarker: 'gfmFootnoteCallLabelMarker'
|
|
6708
|
-
gfmFootnoteCallMarker: 'gfmFootnoteCallMarker'
|
|
6709
|
-
gfmFootnoteCallString: 'gfmFootnoteCallString'
|
|
6710
|
-
gfmFootnoteDefinition: 'gfmFootnoteDefinition'
|
|
6711
|
-
gfmFootnoteDefinitionIndent: 'gfmFootnoteDefinitionIndent'
|
|
6712
|
-
gfmFootnoteDefinitionLabel: 'gfmFootnoteDefinitionLabel'
|
|
6713
|
-
gfmFootnoteDefinitionLabelMarker: 'gfmFootnoteDefinitionLabelMarker'
|
|
6714
|
-
gfmFootnoteDefinitionLabelString: 'gfmFootnoteDefinitionLabelString'
|
|
6715
|
-
gfmFootnoteDefinitionMarker: 'gfmFootnoteDefinitionMarker'
|
|
6716
|
-
gfmFootnoteDefinitionWhitespace: 'gfmFootnoteDefinitionWhitespace'
|
|
6717
|
-
}
|
|
6718
|
-
}
|
|
6719
|
-
|
|
6720
|
-
|
|
6721
|
-
|
|
6722
|
-
declare module 'micromark-util-types' {
|
|
6723
|
-
interface TokenTypeMap {
|
|
6724
|
-
strikethroughSequence: 'strikethroughSequence'
|
|
6725
|
-
strikethroughSequenceTemporary: 'strikethroughSequenceTemporary'
|
|
6726
|
-
strikethrough: 'strikethrough'
|
|
6727
|
-
strikethroughText: 'strikethroughText'
|
|
6728
|
-
}
|
|
6729
|
-
}
|
|
6730
|
-
|
|
6731
|
-
|
|
6732
|
-
|
|
6733
|
-
declare module 'micromark-util-types' {
|
|
6734
|
-
interface TokenTypeMap {
|
|
6735
|
-
listItem: 'listItem'
|
|
6736
|
-
}
|
|
6737
|
-
|
|
6738
|
-
interface Token {
|
|
6739
|
-
_spread?: boolean
|
|
6740
|
-
}
|
|
6741
|
-
}
|
|
6742
|
-
|
|
6743
|
-
|
|
6744
|
-
|
|
6745
6713
|
declare module 'mdast-util-to-markdown' {
|
|
6746
6714
|
interface ConstructNameMap {
|
|
6747
6715
|
/**
|
|
@@ -6819,8 +6787,14 @@ declare module 'mdast-util-to-markdown' {
|
|
|
6819
6787
|
}
|
|
6820
6788
|
}
|
|
6821
6789
|
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6825
|
-
|
|
6790
|
+
|
|
6791
|
+
|
|
6792
|
+
declare module 'micromark-util-types' {
|
|
6793
|
+
interface TokenTypeMap {
|
|
6794
|
+
listItem: 'listItem'
|
|
6795
|
+
}
|
|
6796
|
+
|
|
6797
|
+
interface Token {
|
|
6798
|
+
_spread?: boolean
|
|
6799
|
+
}
|
|
6826
6800
|
}
|