@limetech/lime-elements 37.49.2 → 37.49.3
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 +8 -0
- package/dist/cjs/limel-breadcrumbs_5.cjs.entry.js +6 -0
- package/dist/cjs/limel-breadcrumbs_5.cjs.entry.js.map +1 -1
- package/dist/collection/components/chip/chip.js +2 -2
- package/dist/collection/components/input-field/input-field.js +6 -0
- package/dist/collection/components/input-field/input-field.js.map +1 -1
- package/dist/esm/limel-breadcrumbs_5.entry.js +6 -0
- package/dist/esm/limel-breadcrumbs_5.entry.js.map +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/{p-bcfb5db5.entry.js → p-d2213a74.entry.js} +2 -2
- package/dist/lime-elements/p-d2213a74.entry.js.map +1 -0
- package/package.json +1 -1
- package/dist/collection/components/table/examples/birds.js +0 -253
- package/dist/collection/components/table/examples/birds.js.map +0 -1
- package/dist/lime-elements/p-bcfb5db5.entry.js.map +0 -1
- package/dist/types/components/file-viewer/file-viewer.d.ts +0 -126
- package/dist/types/components/progress-flow/progress-flow-item/progress-flow-item.d.ts +0 -36
- package/dist/types/components/progress-flow/progress-flow.d.ts +0 -49
- package/dist/types/components/table/examples/birds.d.ts +0 -15
- package/dist/types/components/text-editor/prosemirror-adapter/menu/types.d.ts +0 -50
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export interface Bird {
|
|
2
|
-
name: string;
|
|
3
|
-
binominalName: string;
|
|
4
|
-
wingspan: number;
|
|
5
|
-
habitat: Habitat | Habitat[];
|
|
6
|
-
food: Food | Food[];
|
|
7
|
-
nest: Nest;
|
|
8
|
-
eggs: number;
|
|
9
|
-
origin: string | string[];
|
|
10
|
-
}
|
|
11
|
-
export type Habitat = 'forest' | 'grassland' | 'wetland';
|
|
12
|
-
export type Food = 'invertebrate' | 'seed' | 'fruit' | 'fish' | 'rodent';
|
|
13
|
-
export type Nest = 'bowl' | 'cavity' | 'ground' | 'platform';
|
|
14
|
-
export declare const data: Bird[];
|
|
15
|
-
//# sourceMappingURL=birds.d.ts.map
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The `EditorMenuType` type is used to specify the type of menu items that can be added to the editor toolbar.
|
|
3
|
-
* Each one represents a different type to be used for creating the prosemirror commands relevant to the button.
|
|
4
|
-
* The values correspond to the types that can be used with the `prosemirror-commands` library.
|
|
5
|
-
* @beta
|
|
6
|
-
*/
|
|
7
|
-
export declare const EditorMenuTypes: {
|
|
8
|
-
Bold: string;
|
|
9
|
-
Italic: string;
|
|
10
|
-
Blockquote: string;
|
|
11
|
-
HeaderLevel1: string;
|
|
12
|
-
HeaderLevel2: string;
|
|
13
|
-
HeaderLevel3: string;
|
|
14
|
-
Link: string;
|
|
15
|
-
OrderedList: string;
|
|
16
|
-
BulletList: string;
|
|
17
|
-
Strikethrough: string;
|
|
18
|
-
Code: string;
|
|
19
|
-
CodeBlock: string;
|
|
20
|
-
};
|
|
21
|
-
export type EditorMenuTypes = (typeof EditorMenuTypes)[keyof typeof EditorMenuTypes];
|
|
22
|
-
export declare const editorMenuTypesArray: EditorMenuTypes[];
|
|
23
|
-
/**
|
|
24
|
-
* `LevelMapping` is used to map string identifiers to numerical header levels.
|
|
25
|
-
* It provides a way to represent different levels of headings in ProseMirror commands.
|
|
26
|
-
*
|
|
27
|
-
* The `Heading` identifier is not a valid level and is used to identify the node type.
|
|
28
|
-
* The numerical values are used for creating ProseMirror commands to set the level of a heading node in the editor.
|
|
29
|
-
* @beta
|
|
30
|
-
*/
|
|
31
|
-
export declare const LevelMapping: {
|
|
32
|
-
Heading: string;
|
|
33
|
-
one: number;
|
|
34
|
-
two: number;
|
|
35
|
-
three: number;
|
|
36
|
-
};
|
|
37
|
-
export type LevelMapping = (typeof LevelMapping)[keyof typeof LevelMapping];
|
|
38
|
-
export type ProseMirrorAdapterElementWithFocus = HTMLLimelProsemirrorAdapterElement & {
|
|
39
|
-
setFocus: () => void;
|
|
40
|
-
};
|
|
41
|
-
/**
|
|
42
|
-
* The `EditorTextLink` type is used to represent a link in the editor.
|
|
43
|
-
* @beta
|
|
44
|
-
* @private
|
|
45
|
-
*/
|
|
46
|
-
export type EditorTextLink = {
|
|
47
|
-
text?: string;
|
|
48
|
-
href: string;
|
|
49
|
-
};
|
|
50
|
-
//# sourceMappingURL=types.d.ts.map
|