@pairbo/ui-kit 0.4.6 → 0.4.8
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/page-manager.js +17004 -6287
- package/dist/src/components/card-selection/card-selection.component.d.ts +4 -0
- package/dist/src/components/category/category.component.d.ts +4 -0
- package/dist/src/components/editor/editor.component.d.ts +4 -1
- package/dist/src/components/editor-card-slider/editor-card-slider.component.d.ts +8 -1
- package/dist/ui-kit.js +1639 -1639
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CSSResultGroup } from 'lit';
|
|
2
2
|
import { default as PairboElement } from '../../internal/pairbo-element.js';
|
|
3
|
+
import { default as PboCategory } from '../category/category.component.js';
|
|
3
4
|
/**
|
|
4
5
|
* @summary Short summary of the component's intended use.
|
|
5
6
|
* @status experimental
|
|
@@ -19,6 +20,9 @@ import { default as PairboElement } from '../../internal/pairbo-element.js';
|
|
|
19
20
|
*/
|
|
20
21
|
export default class PboCardSelection extends PairboElement {
|
|
21
22
|
static styles: CSSResultGroup;
|
|
23
|
+
static dependencies: {
|
|
24
|
+
"pbo-category": typeof PboCategory;
|
|
25
|
+
};
|
|
22
26
|
categories: Category[];
|
|
23
27
|
loading: boolean;
|
|
24
28
|
render(): import('lit-html').TemplateResult<1>;
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { CSSResultGroup } from 'lit';
|
|
2
2
|
import { default as PairboElement } from '../../internal/pairbo-element.js';
|
|
3
3
|
import { EmblaCarouselType } from 'embla-carousel';
|
|
4
|
+
import { default as PboImage } from '../image/image.component.js';
|
|
4
5
|
export default class PboCategory extends PairboElement {
|
|
5
6
|
static styles: CSSResultGroup;
|
|
7
|
+
static dependencies: {
|
|
8
|
+
"pbo-image": typeof PboImage;
|
|
9
|
+
};
|
|
6
10
|
cards: Card[];
|
|
7
11
|
skeleton: boolean;
|
|
8
12
|
title: string;
|
|
@@ -3,11 +3,14 @@ import { default as PairboElement } from '../../internal/pairbo-element.js';
|
|
|
3
3
|
import { default as PboTypeForm } from '../type-form/type-form.component.js';
|
|
4
4
|
import { default as PboEditorCardSlider } from '../editor-card-slider/editor-card-slider.component.js';
|
|
5
5
|
import { default as PboHandwrittenForm } from '../handwritten-form/handwritten-form.js';
|
|
6
|
+
import { default as PboEditorSelector } from '../editor-selector/editor-selector.js';
|
|
6
7
|
export default class PboEditor extends PairboElement {
|
|
7
8
|
static styles: CSSResultGroup;
|
|
8
9
|
static dependencies: {
|
|
9
|
-
"editor-card-slider": typeof PboEditorCardSlider;
|
|
10
|
+
"pbo-editor-card-slider": typeof PboEditorCardSlider;
|
|
10
11
|
"pbo-type-form": typeof PboTypeForm;
|
|
12
|
+
"pbo-handwritten-form": typeof PboHandwrittenForm;
|
|
13
|
+
"pbo-editor-selector": typeof PboEditorSelector;
|
|
11
14
|
};
|
|
12
15
|
card: Card | null;
|
|
13
16
|
submitTypeForm: SubmitTypeForm | undefined;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { TemplateResult, CSSResultGroup } from 'lit';
|
|
2
2
|
import { default as PairboElement } from '../../internal/pairbo-element.js';
|
|
3
|
-
import { PboDrawer
|
|
3
|
+
import { default as PboDrawer } from '../drawer/drawer.component.js';
|
|
4
|
+
import { default as PboHandwrittenCanvas } from '../handwritten-canvas/handwritten-canvas.component.js';
|
|
5
|
+
import { default as PboTypeCanvas } from '../type-canvas/type-canvas.component.js';
|
|
6
|
+
import { default as PboZoomedPreview } from '../zoomed-preview/zoomed-preview.component.js';
|
|
4
7
|
import { default as PboImage } from '../image/image.component.js';
|
|
5
8
|
/**
|
|
6
9
|
* @summary Short summary of the component's intended use.
|
|
@@ -21,6 +24,10 @@ export default class PboEditorCardSlider extends PairboElement {
|
|
|
21
24
|
static styles: CSSResultGroup;
|
|
22
25
|
static dependencies: {
|
|
23
26
|
"pbo-image": typeof PboImage;
|
|
27
|
+
"pbo-type-canvas": typeof PboTypeCanvas;
|
|
28
|
+
"pbo-handwritten-canvas": typeof PboHandwrittenCanvas;
|
|
29
|
+
"pbo-drawer": typeof PboDrawer;
|
|
30
|
+
"pbo-zoomed-preview": typeof PboZoomedPreview;
|
|
24
31
|
};
|
|
25
32
|
card: Card | null;
|
|
26
33
|
focusIndex: number;
|