Skip to content

Commit

Permalink
Release v2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Aug 25, 2023
1 parent b57911f commit 238f115
Show file tree
Hide file tree
Showing 16 changed files with 29 additions and 34 deletions.
2 changes: 1 addition & 1 deletion dist/blogger-tweaks.min.css

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

2 changes: 1 addition & 1 deletion dist/layouts/block-duo.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.0.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.0.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Block Duo layout -- Two big columns followed by a single footer
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/color-blocks.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.0.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.0.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Color Blocks layout -- Two columns of colorful blocks
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/color-slide.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.0.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.0.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Color Slide layout -- Top to botttom color transition
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/letterbox.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.0.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.0.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Letterbox layout -- Edge-to-edge semi-opaque bar over cover background image
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/modern.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.0.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.0.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Modern layout -- Clean blog post page
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/neon.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.0.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.0.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Neon layout -- For hackers and space junkies
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/neon.min.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
//! web-ignition v2.0.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License
//! web-ignition v2.0.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License
const numNeonImages=8;const randomImage=Date.now()%numNeonImages+1;globalThis.document.body.classList.add("neon-image-"+String(randomImage));
2 changes: 1 addition & 1 deletion dist/layouts/vertical-bars.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.0.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.0.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Vertical Bars layout -- traditional boring old-school webpage
Expand Down
2 changes: 1 addition & 1 deletion dist/layouts/zebra-sections.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! web-ignition v2.0.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License */
/*! web-ignition v2.0.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License */

/*
Zebra Sections layout -- Edge-to-edge blocks with alternating background colors
Expand Down
17 changes: 6 additions & 11 deletions dist/lib-x.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! web-ignition v2.0.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License
//! web-ignition v2.0.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License

export type GlobalKey = keyof typeof globalThis;
export type Json = string | number | boolean | null | undefined | JsonObject | Json[];
Expand All @@ -14,16 +14,13 @@ export type LibXUiPopupSettings = {
width: number;
height: number;
};
export type LibXUiPopupOptions = Partial<LibXUiPopupSettings>;
export type LibXUiKeepOnScreenSettings = {
padding: number;
};
export type LibXUiKeepOnScreenOptions = Partial<LibXUiKeepOnScreenSettings>;
export type LibXCryptoHashSettings = {
algorithm: string;
salt: string;
};
export type LibXCryptoHashOptions = Partial<LibXCryptoHashSettings>;
export type LibXCounterMap = {
[counter: string]: number;
};
Expand All @@ -35,7 +32,6 @@ export type LibXSocialButton = {
link: string;
};
export type LibXEventListener = (elem: Element, event: Event, selector: string | null) => void;
export type LibXOptionsEventsOn = Partial<LibXSettingsEventsOn>;
export type LibXSettingsEventsOn = {
keyFilter: KeyboardEvent["key"] | null;
selector: string | null;
Expand All @@ -45,7 +41,6 @@ export type LibXMontageLoopSettings = {
intervalMsec: number;
fadeMsec: number;
};
export type LibXMontageLoopOptions = Partial<LibXMontageLoopSettings>;
export type NavigatorUAData = {
readonly brands: {
brand: string;
Expand Down Expand Up @@ -111,7 +106,7 @@ declare const libX: {
isElem(elem: unknown): boolean;
getAttrs(elem: Element): Attr[];
toElem(elemOrEvent: Element | Event): HTMLElement;
on(type: string, listener: LibXEventListener, options?: LibXOptionsEventsOn): void;
on(type: string, listener: LibXEventListener, options?: Partial<LibXSettingsEventsOn>): void;
onClick(listener: LibXEventListener, selector?: string): void;
onChange(listener: LibXEventListener, selector?: string): void;
onInput(listener: LibXEventListener, selector?: string): void;
Expand Down Expand Up @@ -149,10 +144,10 @@ declare const libX: {
makeIcons(container?: Element): Element;
normalize(container?: Element): Element;
displayAddr(container?: Element): Element;
popup(url: string, options?: LibXUiPopupOptions): Window | null;
popup(url: string, options?: Partial<LibXUiPopupSettings>): Window | null;
popupClick(elem: Element): Window | null;
revealSection(elem: Element): Element;
keepOnScreen(elem: Element, options?: LibXUiKeepOnScreenOptions): Element;
keepOnScreen(elem: Element, options?: Partial<LibXUiKeepOnScreenSettings>): Element;
autoDisableButtons(): void;
loadImageFadeIn(elem: Element, url: string, duration?: number): Promise<Element>;
setupVideos(): void;
Expand All @@ -164,7 +159,7 @@ declare const libX: {
removeWhitespace(text: string): string;
};
crypto: {
hash(message: string, options?: LibXCryptoHashOptions): Promise<string>;
hash(message: string, options?: Partial<LibXCryptoHashSettings>): Promise<string>;
};
storage: {
dbSave(key: string, obj: LibXObject): LibXObject;
Expand Down Expand Up @@ -192,7 +187,7 @@ declare const libX: {
animate: {
jiggleIt(elemOrEvent: Element | Event): Promise<Element>;
rollIn(container: Element): Promise<Element>;
montageLoop(container: Element, options?: LibXMontageLoopOptions | Element): Element;
montageLoop(container: Element, options?: Partial<LibXMontageLoopSettings> | Element): Element;
};
bubbleHelp: {
setup(container?: Element): Element;
Expand Down
8 changes: 4 additions & 4 deletions dist/lib-x.dev.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! web-ignition v2.0.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License
//! web-ignition v2.0.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License

const libXDom = {
stateDepot: [],
Expand Down Expand Up @@ -814,7 +814,7 @@ const libXExtra = {
},
};
const libX = {
version: '2.0.6',
version: '2.0.7',
dom: libXDom,
ui: libXUi,
util: libXUtil,
Expand All @@ -832,14 +832,14 @@ const libX = {
globalThis.libX = libX;
const initializeDna = () => {
const dna = globalThis['dna'];
dna.registerInitializer(libX.ui.normalize, { onDomReady: false });
dna.registerInitializer(libX.ui.makeIcons, { onDomReady: false });
dna.registerInitializer(libX.ui.normalize, { onDomReady: false });
};
if ('dna' in globalThis)
initializeDna();
const onReadySetup = () => {
libX.ui.normalize();
libX.ui.makeIcons();
libX.ui.normalize();
libX.ui.setupForkMe();
libX.ui.displayAddr();
libX.ui.setupVideos();
Expand Down
8 changes: 4 additions & 4 deletions dist/lib-x.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! web-ignition v2.0.6 ~~ https://github.com/center-key/web-ignition ~~ MIT License
//! web-ignition v2.0.7 ~~ https://github.com/center-key/web-ignition ~~ MIT License

const libXDom = {
stateDepot: [],
Expand Down Expand Up @@ -814,7 +814,7 @@ const libXExtra = {
},
};
const libX = {
version: '2.0.6',
version: '2.0.7',
dom: libXDom,
ui: libXUi,
util: libXUtil,
Expand All @@ -832,14 +832,14 @@ const libX = {
globalThis.libX = libX;
const initializeDna = () => {
const dna = globalThis['dna'];
dna.registerInitializer(libX.ui.normalize, { onDomReady: false });
dna.registerInitializer(libX.ui.makeIcons, { onDomReady: false });
dna.registerInitializer(libX.ui.normalize, { onDomReady: false });
};
if ('dna' in globalThis)
initializeDna();
const onReadySetup = () => {
libX.ui.normalize();
libX.ui.makeIcons();
libX.ui.normalize();
libX.ui.setupForkMe();
libX.ui.displayAddr();
libX.ui.setupVideos();
Expand Down
4 changes: 2 additions & 2 deletions dist/lib-x.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 238f115

Please sign in to comment.