Skip to content

Commit

Permalink
feat: FbpLit
Browse files Browse the repository at this point in the history
  • Loading branch information
veith committed Apr 10, 2024
1 parent 7af6033 commit 539606e
Show file tree
Hide file tree
Showing 38 changed files with 1,731 additions and 935 deletions.
1 change: 0 additions & 1 deletion packages/furo-fbp/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

# build
/_site/
/dist/
/out-tsc/

storybook-static
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@ declare const DOMFBP_base: {
__wirebundle: {};
__wireQueue: any[];
firstUpdated(): void;
__fbpAppended: boolean;
__fbpAppended: boolean | undefined;
_FBPTriggerWire(wire: any, detailData: any): void;
__domPath: any;
__domPath: string | undefined;
_call(detailData: any, receiver: any): void;
_FBPAddWireHook(wire: any, cb: any, before?: any): number;
_FBPTraceWires(): void;
_FBPDebug(wire: any, openDebugger: any): void;
__toCamelCase(str: any): any;
_appendFBP(dom: any): void;
_FBPReady(): void;
__fbp_ready: boolean;
__fbp_ready: boolean | undefined;
__enqueueTrigger(wire: any, detailData: any): void;
__resolveWireAndPath(w: any): {
path: any;
receivingWire: any;
};
_pathGet(root: any, path: string | (string | number)[]): any;
_pathSet(root: any, path: string | (string | number)[], value: any): string | boolean;
_pathGet(root: Object, path: string | (string | number)[]): any;
_pathSet(root: Object, path: string | (string | number)[], value: any): string | boolean;
_split(path: string | (string | number)[]): string[];
};
[x: string]: any;
Expand Down
48 changes: 48 additions & 0 deletions packages/furo-fbp/dist/DOMFBP.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/furo-fbp/dist/DOMFBP.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ export class FbpBreakpoints {
* @return {string}
* @private
*/
static getDomPath(node :Node) :string;
private static getDomPath;
}
111 changes: 111 additions & 0 deletions packages/furo-fbp/dist/FbpBreakpoints.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/furo-fbp/dist/FbpBreakpoints.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/furo-fbp/dist/LitFBP.js.map

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
32 changes: 32 additions & 0 deletions packages/furo-fbp/dist/empty-fbp-node.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
declare const EmptyFBPNode_base: {
new (): {
[x: string]: any;
__FBPEventlistener: any[];
__wirebundle: {};
__wireQueue: any[];
firstUpdated(): void;
__fbpAppended: boolean | undefined;
_FBPTriggerWire(wire: any, detailData: any): void;
__domPath: string | undefined;
_call(detailData: any, receiver: any): void;
_FBPAddWireHook(wire: any, cb: any, before?: any): number;
_FBPTraceWires(): void;
_FBPDebug(wire: any, openDebugger: any): void;
__toCamelCase(str: any): any;
_appendFBP(dom: any): void;
_FBPReady(): void;
__fbp_ready: boolean | undefined;
__enqueueTrigger(wire: any, detailData: any): void;
__resolveWireAndPath(w: any): {
path: any;
receivingWire: any;
};
_pathGet(root: Object, path: string | (string | number)[]): any;
_pathSet(root: Object, path: string | (string | number)[], value: any): string | boolean;
_split(path: string | (string | number)[]): string[];
};
[x: string]: any;
};
export class EmptyFBPNode extends EmptyFBPNode_base {
}
export {};
6 changes: 6 additions & 0 deletions packages/furo-fbp/dist/empty-fbp-node.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/furo-fbp/dist/empty-fbp-node.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ export function FBP(superClass: any): {
* @private
*/
firstUpdated(): void;
__fbpAppended: boolean;
__fbpAppended: boolean | undefined;
/**
* Triggers a wire
* @param wire (String) Name of the wire like --buttonClicked
* @param detailData (*) data to pass
* @private
*/
_FBPTriggerWire(wire: any, detailData: any): void;
__domPath: any;
__domPath: string | undefined;
/**
*
* @param detailData
Expand Down Expand Up @@ -86,7 +86,7 @@ export function FBP(superClass: any): {
* @private
*/
_FBPReady(): void;
__fbp_ready: boolean;
__fbp_ready: boolean | undefined;
/**
*
* @param wire
Expand All @@ -113,7 +113,7 @@ export function FBP(superClass: any): {
* @return {*} Value at path, or `undefined` if the path could not be fully dereferenced.
* @private
*/
_pathGet(root: any, path: string | Array<string | number>): any;
_pathGet(root: Object, path: string | Array<string | number>): any;
/**
* Sets a value to a path. If any sub-property in the path is `undefined`,
* this method will no-op.
Expand All @@ -124,7 +124,7 @@ export function FBP(superClass: any): {
* @return {string | boolean} The normalized version of the input path, return false if no prop
* @private
*/
_pathSet(root: any, path: string | Array<string | number>, value: any): string | boolean;
_pathSet(root: Object, path: string | Array<string | number>, value: any): string | boolean;
/**
* Splits a path into an array of property names. Accepts either arrays
* of path parts or strings.
Expand Down
Loading

0 comments on commit 539606e

Please sign in to comment.