@lit-pigeon/editor 0.2.0 → 0.3.0
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/index.d.ts +4 -0
- package/dist/index.js +495 -471
- package/dist/pigeon-stock-tab.js +258 -0
- package/dist/templates.js +13 -3
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -101,6 +101,7 @@ export declare class PigeonAssetManager extends LitElement {
|
|
|
101
101
|
* cycle out of an update→state→update loop on initial property arrival.
|
|
102
102
|
*/
|
|
103
103
|
private _tab;
|
|
104
|
+
private _stockTabLoaded;
|
|
104
105
|
private _dragOver;
|
|
105
106
|
private _uploading;
|
|
106
107
|
private _progress;
|
|
@@ -123,8 +124,11 @@ export declare class PigeonAssetManager extends LitElement {
|
|
|
123
124
|
static styles: CSSResult;
|
|
124
125
|
updated(changed: Map<string, unknown>): void;
|
|
125
126
|
private get _activeTab();
|
|
127
|
+
private get _hasStock();
|
|
126
128
|
render(): TemplateResult<1>;
|
|
127
129
|
private _renderTabs;
|
|
130
|
+
private _handleStockTabClick;
|
|
131
|
+
private _renderStock;
|
|
128
132
|
private _renderLibrary;
|
|
129
133
|
private _renderAssetCard;
|
|
130
134
|
private _renderUpload;
|