@knowark/componarkjs 1.13.2 → 1.13.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/lib/base/component/component.js +1 -1
- package/lib/base/component/component.test.js +4 -2
- package/lib/base/utils/helpers.test.js +2 -2
- package/lib/components/audio/components/audio.js +3 -2
- package/lib/components/camera/components/camera.js +3 -3
- package/lib/components/capture/components/capture.js +3 -3
- package/lib/components/droparea/components/droparea-preview.js +9 -8
- package/lib/components/droparea/components/droparea-preview.test.js +4 -2
- package/lib/components/droparea/components/droparea.js +6 -4
- package/lib/components/droparea/components/droparea.test.js +2 -1
- package/lib/components/emit/components/emit.js +1 -1
- package/lib/components/index.js +1 -1
- package/lib/components/list/components/{list.item.js → item.js} +1 -1
- package/lib/components/list/components/item.test.js +1 -1
- package/lib/components/list/components/list.js +2 -2
- package/lib/components/list/index.js +1 -1
- package/lib/components/paginator/components/paginator.js +3 -2
- package/lib/components/spinner/components/spinner.js +1 -1
- package/lib/components/splitview/components/splitview.detail.js +1 -1
- package/lib/components/splitview/components/splitview.detail.test.js +3 -1
- package/lib/components/splitview/components/splitview.js +4 -2
- package/lib/components/splitview/components/splitview.master.js +2 -1
- package/lib/components/splitview/components/splitview.master.test.js +1 -1
- package/lib/components/splitview/components/splitview.test.js +1 -1
- package/lib/components/translate/components/translate.js +4 -2
- package/package.json +6 -2
- package/showcase/components/index.html +1 -1
- package/showcase/index.js +1 -0
- package/{jsconfig.json → tsconfig.json} +8 -10
- package/types/base/component/component.d.ts +48 -0
- package/types/base/component/component.d.ts.map +1 -0
- package/types/base/component/component.test.d.ts +2 -0
- package/types/base/component/component.test.d.ts.map +1 -0
- package/types/base/component/index.d.ts +8 -0
- package/types/base/component/index.d.ts.map +1 -0
- package/types/base/index.d.ts +2 -0
- package/types/base/index.d.ts.map +1 -0
- package/types/base/styles/index.d.ts +3 -0
- package/types/base/styles/index.d.ts.map +1 -0
- package/types/base/styles/styles.d.ts +3 -0
- package/types/base/styles/styles.d.ts.map +1 -0
- package/types/base/utils/define.d.ts +5 -0
- package/types/base/utils/define.d.ts.map +1 -0
- package/types/base/utils/define.test.d.ts +2 -0
- package/types/base/utils/define.test.d.ts.map +1 -0
- package/types/base/utils/format.d.ts +13 -0
- package/types/base/utils/format.d.ts.map +1 -0
- package/types/base/utils/format.test.d.ts +2 -0
- package/types/base/utils/format.test.d.ts.map +1 -0
- package/types/base/utils/helpers.d.ts +11 -0
- package/types/base/utils/helpers.d.ts.map +1 -0
- package/types/base/utils/helpers.test.d.ts +2 -0
- package/types/base/utils/helpers.test.d.ts.map +1 -0
- package/types/base/utils/index.d.ts +6 -0
- package/types/base/utils/index.d.ts.map +1 -0
- package/types/base/utils/slots.d.ts +15 -0
- package/types/base/utils/slots.d.ts.map +1 -0
- package/types/base/utils/slots.test.d.ts +2 -0
- package/types/base/utils/slots.test.d.ts.map +1 -0
- package/types/base/utils/uuid.d.ts +3 -0
- package/types/base/utils/uuid.d.ts.map +1 -0
- package/types/base/utils/uuid.test.d.ts +2 -0
- package/types/base/utils/uuid.test.d.ts.map +1 -0
- package/types/components/audio/components/audio.d.ts +18 -0
- package/types/components/audio/components/audio.d.ts.map +1 -0
- package/types/components/audio/components/audio.test.d.ts +2 -0
- package/types/components/audio/components/audio.test.d.ts.map +1 -0
- package/types/components/audio/index.d.ts +2 -0
- package/types/components/audio/index.d.ts.map +1 -0
- package/types/components/audio/styles/ark.css.d.ts +3 -0
- package/types/components/audio/styles/ark.css.d.ts.map +1 -0
- package/types/components/audio/styles/index.d.ts +3 -0
- package/types/components/audio/styles/index.d.ts.map +1 -0
- package/types/components/camera/components/camera.d.ts +18 -0
- package/types/components/camera/components/camera.d.ts.map +1 -0
- package/types/components/camera/components/camera.test.d.ts +2 -0
- package/types/components/camera/components/camera.test.d.ts.map +1 -0
- package/types/components/camera/index.d.ts +2 -0
- package/types/components/camera/index.d.ts.map +1 -0
- package/types/components/camera/styles/ark.css.d.ts +3 -0
- package/types/components/camera/styles/ark.css.d.ts.map +1 -0
- package/types/components/camera/styles/index.d.ts +3 -0
- package/types/components/camera/styles/index.d.ts.map +1 -0
- package/types/components/capture/components/capture.d.ts +10 -0
- package/types/components/capture/components/capture.d.ts.map +1 -0
- package/types/components/capture/components/capture.test.d.ts +2 -0
- package/types/components/capture/components/capture.test.d.ts.map +1 -0
- package/types/components/capture/index.d.ts +2 -0
- package/types/components/capture/index.d.ts.map +1 -0
- package/types/components/droparea/components/droparea-preview.d.ts +21 -0
- package/types/components/droparea/components/droparea-preview.d.ts.map +1 -0
- package/types/components/droparea/components/droparea-preview.test.d.ts +2 -0
- package/types/components/droparea/components/droparea-preview.test.d.ts.map +1 -0
- package/types/components/droparea/components/droparea.d.ts +32 -0
- package/types/components/droparea/components/droparea.d.ts.map +1 -0
- package/types/components/droparea/components/droparea.test.d.ts +2 -0
- package/types/components/droparea/components/droparea.test.d.ts.map +1 -0
- package/types/components/droparea/index.d.ts +2 -0
- package/types/components/droparea/index.d.ts.map +1 -0
- package/types/components/droparea/styles/ark.css.d.ts +3 -0
- package/types/components/droparea/styles/ark.css.d.ts.map +1 -0
- package/types/components/droparea/styles/index.d.ts +3 -0
- package/types/components/droparea/styles/index.d.ts.map +1 -0
- package/types/components/emit/components/emit.d.ts +10 -0
- package/types/components/emit/components/emit.d.ts.map +1 -0
- package/types/components/emit/components/emit.test.d.ts +2 -0
- package/types/components/emit/components/emit.test.d.ts.map +1 -0
- package/types/components/emit/index.d.ts +2 -0
- package/types/components/emit/index.d.ts.map +1 -0
- package/types/components/index.d.ts +10 -0
- package/types/components/index.d.ts.map +1 -0
- package/types/components/list/components/item.d.ts +8 -0
- package/types/components/list/components/item.d.ts.map +1 -0
- package/types/components/list/components/item.test.d.ts +2 -0
- package/types/components/list/components/item.test.d.ts.map +1 -0
- package/types/components/list/components/list.d.ts +13 -0
- package/types/components/list/components/list.d.ts.map +1 -0
- package/types/components/list/components/list.test.d.ts +2 -0
- package/types/components/list/components/list.test.d.ts.map +1 -0
- package/types/components/list/index.d.ts +3 -0
- package/types/components/list/index.d.ts.map +1 -0
- package/types/components/paginator/components/paginator.d.ts +32 -0
- package/types/components/paginator/components/paginator.d.ts.map +1 -0
- package/types/components/paginator/components/paginator.test.d.ts +2 -0
- package/types/components/paginator/components/paginator.test.d.ts.map +1 -0
- package/types/components/paginator/index.d.ts +2 -0
- package/types/components/paginator/index.d.ts.map +1 -0
- package/types/components/paginator/styles/ark.css.d.ts +3 -0
- package/types/components/paginator/styles/ark.css.d.ts.map +1 -0
- package/types/components/paginator/styles/index.d.ts +3 -0
- package/types/components/paginator/styles/index.d.ts.map +1 -0
- package/types/components/spinner/components/spinner.d.ts +11 -0
- package/types/components/spinner/components/spinner.d.ts.map +1 -0
- package/types/components/spinner/components/spinner.test.d.ts +2 -0
- package/types/components/spinner/components/spinner.test.d.ts.map +1 -0
- package/types/components/spinner/index.d.ts +2 -0
- package/types/components/spinner/index.d.ts.map +1 -0
- package/types/components/spinner/styles/ark.css.d.ts +3 -0
- package/types/components/spinner/styles/ark.css.d.ts.map +1 -0
- package/types/components/spinner/styles/index.d.ts +3 -0
- package/types/components/spinner/styles/index.d.ts.map +1 -0
- package/types/components/splitview/components/splitview.d.ts +12 -0
- package/types/components/splitview/components/splitview.d.ts.map +1 -0
- package/types/components/splitview/components/splitview.detail.d.ts +10 -0
- package/types/components/splitview/components/splitview.detail.d.ts.map +1 -0
- package/types/components/splitview/components/splitview.detail.test.d.ts +2 -0
- package/types/components/splitview/components/splitview.detail.test.d.ts.map +1 -0
- package/types/components/splitview/components/splitview.master.d.ts +8 -0
- package/types/components/splitview/components/splitview.master.d.ts.map +1 -0
- package/types/components/splitview/components/splitview.master.test.d.ts +2 -0
- package/types/components/splitview/components/splitview.master.test.d.ts.map +1 -0
- package/types/components/splitview/components/splitview.test.d.ts +2 -0
- package/types/components/splitview/components/splitview.test.d.ts.map +1 -0
- package/types/components/splitview/index.d.ts +4 -0
- package/types/components/splitview/index.d.ts.map +1 -0
- package/types/components/translate/components/translate.d.ts +18 -0
- package/types/components/translate/components/translate.d.ts.map +1 -0
- package/types/components/translate/components/translate.test.d.ts +2 -0
- package/types/components/translate/components/translate.test.d.ts.map +1 -0
- package/types/components/translate/index.d.ts +2 -0
- package/types/components/translate/index.d.ts.map +1 -0
- package/types/index.d.ts +3 -0
- package/types/index.d.ts.map +1 -0
- package/knowarkjs.code-workspace +0 -29
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"slots.test.d.ts","sourceRoot":"","sources":["../../../lib/base/utils/slots.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"uuid.d.ts","sourceRoot":"","sources":["../../../lib/base/utils/uuid.js"],"names":[],"mappings":"AAAA,wBAAwB;AACxB,wBADc,MAAM,CAQnB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"uuid.test.d.ts","sourceRoot":"","sources":["../../../lib/base/utils/uuid.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export class Audio extends Component {
|
|
2
|
+
init(context?: {}): Component;
|
|
3
|
+
status: string;
|
|
4
|
+
dataURL: any;
|
|
5
|
+
timerId: NodeJS.Timer;
|
|
6
|
+
recorder: any;
|
|
7
|
+
global: any;
|
|
8
|
+
/** @param {Event} event */
|
|
9
|
+
start(event: Event): Promise<void>;
|
|
10
|
+
/** @param {Event} event */
|
|
11
|
+
stop(event: Event): void;
|
|
12
|
+
reset(): void;
|
|
13
|
+
_time(): NodeJS.Timer;
|
|
14
|
+
/** @param {any} event */
|
|
15
|
+
_onData(event: any): void;
|
|
16
|
+
}
|
|
17
|
+
import { Component } from '#base/index.js';
|
|
18
|
+
//# sourceMappingURL=audio.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"audio.d.ts","sourceRoot":"","sources":["../../../../lib/components/audio/components/audio.js"],"names":[],"mappings":"AAIA;IACE,8BAQC;IAPC,eAAoB;IACpB,aAAmB;IACnB,sBAAmB;IACnB,cAAoB;IACpB,YAAsC;IAoCxC,2BAA2B;IAC3B,aADY,KAAK,iBAahB;IAED,2BAA2B;IAC3B,YADY,KAAK,QAQhB;IAED,cAMC;IAED,sBAYC;IAED,yBAAyB;IACzB,eADY,GAAG,QAQd;CACF;0BAtGyB,gBAAgB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"audio.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/audio/components/audio.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/components/audio/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ark.css.d.ts","sourceRoot":"","sources":["../../../../lib/components/audio/styles/ark.css.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../lib/components/audio/styles/index.js"],"names":[],"mappings":";mBAAmB,cAAc"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export class Camera extends Component {
|
|
2
|
+
init(context?: {}): Component;
|
|
3
|
+
width: any;
|
|
4
|
+
height: any;
|
|
5
|
+
facingMode: any;
|
|
6
|
+
global: any;
|
|
7
|
+
/** @returns {string} */
|
|
8
|
+
dataURL(width?: any, height?: any): string;
|
|
9
|
+
start(): Promise<void>;
|
|
10
|
+
stop(): void;
|
|
11
|
+
setCameraOrientation(facingMode: any): Promise<void>;
|
|
12
|
+
/** @returns {HTMLVideoElement} */
|
|
13
|
+
get video(): HTMLVideoElement;
|
|
14
|
+
/** @returns {HTMLCanvasElement} */
|
|
15
|
+
get canvas(): HTMLCanvasElement;
|
|
16
|
+
}
|
|
17
|
+
import { Component } from '#base/index.js';
|
|
18
|
+
//# sourceMappingURL=camera.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"camera.d.ts","sourceRoot":"","sources":["../../../../lib/components/camera/components/camera.js"],"names":[],"mappings":"AAIA;IACE,8BAOC;IANC,WAA+C;IAC/C,YAAkD;IAClD,gBAAiE;IACjE,YAAsC;IAyBxC,wBAAwB;IACxB,oCADc,MAAM,CAanB;IAED,uBAWC;IAED,aAIC;IAED,qDAIC;IAED,kCAAkC;IAClC,8BAEC;IAED,mCAAmC;IACnC,gCAEC;CACF;0BAnFyB,gBAAgB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"camera.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/camera/components/camera.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/components/camera/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ark.css.d.ts","sourceRoot":"","sources":["../../../../lib/components/camera/styles/ark.css.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../lib/components/camera/styles/index.js"],"names":[],"mappings":";mBAAmB,cAAc"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export class Capture extends Component {
|
|
2
|
+
receive: string;
|
|
3
|
+
source: any;
|
|
4
|
+
template: any;
|
|
5
|
+
handle(event: any): void;
|
|
6
|
+
_format(template: any): (data: any) => any;
|
|
7
|
+
_pop(selector: any): any;
|
|
8
|
+
}
|
|
9
|
+
import { Component } from "#base/index.js";
|
|
10
|
+
//# sourceMappingURL=capture.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"capture.d.ts","sourceRoot":"","sources":["../../../../lib/components/capture/components/capture.js"],"names":[],"mappings":"AAGA;IAGI,gBAAqC;IAWrC,YAC8C;IAC9C,cACsC;IAkBxC,yBAGC;IAED,2CAEC;IAED,yBAIC;CACF;0BApDyB,gBAAgB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"capture.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/capture/components/capture.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/components/capture/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export class DropareaPreview extends Component {
|
|
2
|
+
init(_context?: {}): Component;
|
|
3
|
+
previewFile(file: any): void;
|
|
4
|
+
toggleVisibility(): void;
|
|
5
|
+
enableDragSort(listClass: any): void;
|
|
6
|
+
enableDragList(list: any): void;
|
|
7
|
+
enableDragItem(item: any): void;
|
|
8
|
+
handleDrag(item: any, event: any): void;
|
|
9
|
+
handleDrop(item: any): void;
|
|
10
|
+
dispatchAlterEvent(): void;
|
|
11
|
+
createNewFileList(): void;
|
|
12
|
+
fileExists(file: any): boolean;
|
|
13
|
+
removeFile(file: any, event: any): void;
|
|
14
|
+
fileIndex(file: any): number;
|
|
15
|
+
get droparea(): Droparea;
|
|
16
|
+
get mediaList(): any[];
|
|
17
|
+
get files(): any[];
|
|
18
|
+
}
|
|
19
|
+
import { Component } from '#base/index.js';
|
|
20
|
+
import type { Droparea } from './droparea.js';
|
|
21
|
+
//# sourceMappingURL=droparea-preview.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"droparea-preview.d.ts","sourceRoot":"","sources":["../../../../lib/components/droparea/components/droparea-preview.js"],"names":[],"mappings":"AAOA;IACE,+BAEC;IASD,6BA0BC;IAED,yBAKC;IAID,qCAKC;IAED,gCAIC;IAED,gCAIC;IAGD,wCAkBC;IAED,4BAKC;IAGD,2BAEC;IAED,0BAQC;IAED,+BAEC;IAED,wCAUC;IAED,6BAEC;IAED,gBACoB,QAAQ,CAC3B;IAED,uBAWC;IAED,mBAEC;CACF;0BA9JyB,gBAAgB;8BAGd,eAAe"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"droparea-preview.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/droparea/components/droparea-preview.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export class Droparea extends Component {
|
|
2
|
+
init(context?: {}): Component;
|
|
3
|
+
fileList: any[];
|
|
4
|
+
contextFiles: any;
|
|
5
|
+
accept: any;
|
|
6
|
+
single: boolean;
|
|
7
|
+
maxSize: any;
|
|
8
|
+
dragDropEvents: string[];
|
|
9
|
+
dragEvents: string[];
|
|
10
|
+
dropEvents: string[];
|
|
11
|
+
_input: Component;
|
|
12
|
+
openButton: Component;
|
|
13
|
+
load(): Promise<void>;
|
|
14
|
+
openInput(event: any): void;
|
|
15
|
+
preventDefaults(event: any): void;
|
|
16
|
+
highlight(event: any): void;
|
|
17
|
+
unhighlight(event: any): void;
|
|
18
|
+
handleDrop(event: any): void;
|
|
19
|
+
onChange(event: any): void;
|
|
20
|
+
handleFiles(files: any): void;
|
|
21
|
+
validate(fileList: any): boolean;
|
|
22
|
+
maxSizeValidate(file: any): boolean;
|
|
23
|
+
_grabSlots(): void;
|
|
24
|
+
fileInput: any;
|
|
25
|
+
_buildFileInput(element: any): any;
|
|
26
|
+
get dropZone(): Component;
|
|
27
|
+
get preview(): DropareaPreview;
|
|
28
|
+
get mediaList(): any[];
|
|
29
|
+
}
|
|
30
|
+
import { Component } from '#base/index.js';
|
|
31
|
+
import type { DropareaPreview } from './droparea-preview.js';
|
|
32
|
+
//# sourceMappingURL=droparea.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"droparea.d.ts","sourceRoot":"","sources":["../../../../lib/components/droparea/components/droparea.js"],"names":[],"mappings":"AAQA;IACE,8BAOC;IANC,gBAAkB;IAClB,kBAAmE;IACnE,YAA2C;IAC3C,gBAAyC;IACzC,aAAoD;IAgBpD,yBAAoE;IACpE,qBAAiD;IACjD,qBAA8C;IAC9C,kBAAiD;IACjD,sBAAoD;IAStD,sBAqBC;IAED,4BAIC;IAED,kCAGC;IAED,4BAEC;IAED,8BAEC;IAED,6BAKC;IAED,2BAKC;IAED,8BA0BC;IAED,iCAqBC;IAED,oCAEC;IAED,mBAIC;IAFC,eAA4C;IAI9C,mCAMC;IAED,0BAEC;IAED,eACoB,eAAe,CAClC;IAED,uBAEC;CACF;0BAnLyB,gBAAgB;qCAIP,uBAAuB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"droparea.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/droparea/components/droparea.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/components/droparea/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ark.css.d.ts","sourceRoot":"","sources":["../../../../lib/components/droparea/styles/ark.css.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../lib/components/droparea/styles/index.js"],"names":[],"mappings":";mBACmB,cAAc"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"emit.d.ts","sourceRoot":"","sources":["../../../../lib/components/emit/components/emit.js"],"names":[],"mappings":"AAGA;IAGI,aAA6C;IAC7C,gBAAmD;IACnD,iBAAqD;IACrD,YAAqD;IAQvD,yBAkBC;IAED,yBAIC;CACF;0BA1CyB,gBAAgB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"emit.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/emit/components/emit.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/components/emit/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from "./audio/index.js";
|
|
2
|
+
export * from "./camera/index.js";
|
|
3
|
+
export * from "./capture/index.js";
|
|
4
|
+
export * from "./emit/index.js";
|
|
5
|
+
export * from "./list/index.js";
|
|
6
|
+
export * from "./paginator/index.js";
|
|
7
|
+
export * from "./spinner/index.js";
|
|
8
|
+
export * from "./splitview/index.js";
|
|
9
|
+
export * from "./translate/index.js";
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/components/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"item.d.ts","sourceRoot":"","sources":["../../../../lib/components/list/components/item.js"],"names":[],"mappings":"AAGA;IACE,8BAMC;IALC,WAA0B;IAC1B,UAAgC;IAChC,cAAuD;CAa1D;0BApByB,gBAAgB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"item.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/list/components/item.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export class List extends Component {
|
|
2
|
+
source: any;
|
|
3
|
+
template: any;
|
|
4
|
+
/** @param {number} start @param {number?} deleteCount */
|
|
5
|
+
delete(start: number, deleteCount?: number | null): void;
|
|
6
|
+
_format(template: any): (data: any) => any;
|
|
7
|
+
/** @param {MouseEvent} event */
|
|
8
|
+
_onSelected(event: MouseEvent): void;
|
|
9
|
+
/** @param {MouseEvent} event */
|
|
10
|
+
_onDeleted(event: MouseEvent): void;
|
|
11
|
+
}
|
|
12
|
+
import { Component } from '#base/index.js';
|
|
13
|
+
//# sourceMappingURL=list.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../../lib/components/list/components/list.js"],"names":[],"mappings":"AAKA;IASI,YAAwE;IACxE,cAA0E;IAkC5E,0DAA0D;IAC1D,cADY,MAAM,gBAAgB,MAAM,OAAC,QASxC;IAED,2CAEC;IAED,gCAAgC;IAChC,mBADY,UAAU,QAmBrB;IAED,gCAAgC;IAChC,kBADY,UAAU,QAQrB;CACF;0BA9FyB,gBAAgB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/list/components/list.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/components/list/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export class Paginator extends Component {
|
|
2
|
+
init(context?: {}): Component;
|
|
3
|
+
collectionSize: any;
|
|
4
|
+
pageSize: any;
|
|
5
|
+
currentPage: any;
|
|
6
|
+
displayedPages: any;
|
|
7
|
+
global: any;
|
|
8
|
+
get totalPages(): number;
|
|
9
|
+
get currentPages(): number[];
|
|
10
|
+
_notifyChange(): void;
|
|
11
|
+
/** @param {number} currentPage */
|
|
12
|
+
_setCurrentPage(currentPage: number): void;
|
|
13
|
+
/** @param {Event} event */
|
|
14
|
+
_first(event: Event): void;
|
|
15
|
+
/** @param {Event} event */
|
|
16
|
+
_prev(event: Event): void;
|
|
17
|
+
/** @param {Event} event */
|
|
18
|
+
_move(event: Event): void;
|
|
19
|
+
/** @param {Event} event */
|
|
20
|
+
_next(event: Event): void;
|
|
21
|
+
/** @param {Event} event */
|
|
22
|
+
_last(event: Event): void;
|
|
23
|
+
_grabSlots(): void;
|
|
24
|
+
pageButton: any;
|
|
25
|
+
firstButton: any;
|
|
26
|
+
previousButton: any;
|
|
27
|
+
nextButton: any;
|
|
28
|
+
lastButton: any;
|
|
29
|
+
_buildButton(element: any, handler: any, content: any, attributes?: any[]): any;
|
|
30
|
+
}
|
|
31
|
+
import { Component } from '#base/index.js';
|
|
32
|
+
//# sourceMappingURL=paginator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"paginator.d.ts","sourceRoot":"","sources":["../../../../lib/components/paginator/components/paginator.js"],"names":[],"mappings":"AAIA;IACE,8BAYC;IAVC,oBACyD;IACzD,cAAyD;IACzD,iBAAiE;IACjE,oBACwD;IAExD,YAAsC;IA8CxC,yBAEC;IAED,6BAQC;IAED,sBAKC;IAED,kCAAkC;IAClC,6BADY,MAAM,QAOjB;IAED,2BAA2B;IAC3B,cADY,KAAK,QAIhB;IAED,2BAA2B;IAC3B,aADY,KAAK,QAIhB;IAED,2BAA2B;IAC3B,aADY,KAAK,QAMhB;IAED,2BAA2B;IAC3B,aADY,KAAK,QAIhB;IAED,2BAA2B;IAC3B,aADY,KAAK,QAIhB;IAED,mBAWC;IATC,gBAA+C;IAE/C,iBAAkD;IAElD,oBAA2D;IAE3D,gBAA+C;IAE/C,gBAA+C;IAGjD,gFASC;CACF;0BAjJyB,gBAAgB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"paginator.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/paginator/components/paginator.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/components/paginator/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ark.css.d.ts","sourceRoot":"","sources":["../../../../lib/components/paginator/styles/ark.css.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../lib/components/paginator/styles/index.js"],"names":[],"mappings":";mBAAmB,cAAc"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export class Spinner extends Component {
|
|
2
|
+
init(context?: {}): Component;
|
|
3
|
+
scale: any;
|
|
4
|
+
type: any;
|
|
5
|
+
setScale(scale: any): void;
|
|
6
|
+
/** @returns {HTMLElement} */
|
|
7
|
+
get loader(): HTMLElement;
|
|
8
|
+
spinnerType(type: any): string;
|
|
9
|
+
}
|
|
10
|
+
import { Component } from '#base/index.js';
|
|
11
|
+
//# sourceMappingURL=spinner.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spinner.d.ts","sourceRoot":"","sources":["../../../../lib/components/spinner/components/spinner.js"],"names":[],"mappings":"AAIA;IACE,8BAKC;IAJC,WAA+C;IAC/C,UAAiD;IAiBnD,2BAEC;IAED,6BAA6B;IAC7B,0BAEC;IAED,+BAqEC;CACF;0BAvGyB,gBAAgB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spinner.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/spinner/components/spinner.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/components/spinner/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ark.css.d.ts","sourceRoot":"","sources":["../../../../lib/components/spinner/styles/ark.css.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../lib/components/spinner/styles/index.js"],"names":[],"mappings":";mBAAmB,cAAc"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export class SplitView extends Component {
|
|
2
|
+
setDimensions(): void;
|
|
3
|
+
get master(): Component;
|
|
4
|
+
get detail(): SplitViewDetail;
|
|
5
|
+
/** @param {Object} context */
|
|
6
|
+
renderDetail(context?: any): void;
|
|
7
|
+
/** @param {CustomEvent} event */
|
|
8
|
+
onMasterChange(event: CustomEvent): void;
|
|
9
|
+
}
|
|
10
|
+
import { Component } from "#base/index.js";
|
|
11
|
+
import type { SplitViewDetail } from './splitview.detail.js';
|
|
12
|
+
//# sourceMappingURL=splitview.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"splitview.d.ts","sourceRoot":"","sources":["../../../../lib/components/splitview/components/splitview.js"],"names":[],"mappings":"AAKA;IAQE,sBAGC;IAED,wBAEC;IAED,cACoB,eAAe,CAClC;IAWD,8BAA8B;IAC9B,kCAIC;IAED,iCAAiC;IACjC,sBADY,WAAW,QAStB;CACF;0BApD8B,gBAAgB;qCAEZ,uBAAuB"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export class SplitViewDetail extends Component {
|
|
2
|
+
init(context?: {}): Component;
|
|
3
|
+
main: any;
|
|
4
|
+
/** @param {Event} event */
|
|
5
|
+
onClose(event: Event): void;
|
|
6
|
+
show(): void;
|
|
7
|
+
hide(): void;
|
|
8
|
+
}
|
|
9
|
+
import { Component } from "#base/index.js";
|
|
10
|
+
//# sourceMappingURL=splitview.detail.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"splitview.detail.d.ts","sourceRoot":"","sources":["../../../../lib/components/splitview/components/splitview.detail.js"],"names":[],"mappings":"AAGA;IAOE,8BAYC;IAPC,UAA6B;IAgB/B,2BAA2B;IAC3B,eADY,KAAK,QAIhB;IAED,aAEC;IAED,aAEC;CACF;0BA5CyB,gBAAgB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"splitview.detail.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/splitview/components/splitview.detail.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export class SplitViewMaster extends Component {
|
|
2
|
+
masterEvent: any;
|
|
3
|
+
init(context?: {}): Component;
|
|
4
|
+
/** @param {CustomEvent} event */
|
|
5
|
+
onMasterEvent(event: CustomEvent): void;
|
|
6
|
+
}
|
|
7
|
+
import { Component } from "#base/index.js";
|
|
8
|
+
//# sourceMappingURL=splitview.master.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"splitview.master.d.ts","sourceRoot":"","sources":["../../../../lib/components/splitview/components/splitview.master.js"],"names":[],"mappings":"AAGA;IAGI,iBAAmC;IAKrC,8BAGC;IAMD,iCAAiC;IACjC,qBADY,WAAW,QAItB;CACF;0BAzByB,gBAAgB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"splitview.master.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/splitview/components/splitview.master.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"splitview.test.d.ts","sourceRoot":"","sources":["../../../../lib/components/splitview/components/splitview.test.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../lib/components/splitview/index.js"],"names":[],"mappings":""}
|