@useinsider/ab-components 0.0.116-beta.8 → 0.0.116-beta.9
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/ab-components.cjs.js +90 -91
- package/dist/ab-components.cjs.js.map +1 -1
- package/dist/ab-components.css +1 -1
- package/dist/ab-components.es.js +5134 -34
- package/dist/ab-components.es.js.map +1 -1
- package/dist/ab-components.iife.js +90 -91
- package/dist/ab-components.iife.js.map +1 -1
- package/dist/ab-components.umd.js +90 -91
- package/dist/ab-components.umd.js.map +1 -1
- package/dist/index.d.ts +1 -17
- package/dist/liquid-hNC9E8-o.js +3665 -0
- package/dist/liquid-hNC9E8-o.js.map +1 -0
- package/package.json +1 -1
- package/dist/index-fSNS57rB.js +0 -8666
- package/dist/index-fSNS57rB.js.map +0 -1
- package/dist/liquid-DHPHtfpJ.js +0 -152
- package/dist/liquid-DHPHtfpJ.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -229,6 +229,7 @@ declare type __VLS_Props = {
|
|
|
229
229
|
preventXss?: boolean;
|
|
230
230
|
iconName?: IconNames;
|
|
231
231
|
hideDelay?: number;
|
|
232
|
+
showDelay?: number;
|
|
232
233
|
};
|
|
233
234
|
|
|
234
235
|
declare function __VLS_template(): {
|
|
@@ -822,23 +823,6 @@ declare interface DropdownProps {
|
|
|
822
823
|
validateAddItem?: (item: string, items: MenuItem_2[]) => string | null;
|
|
823
824
|
}
|
|
824
825
|
|
|
825
|
-
/**
|
|
826
|
-
* External (global) variables referenced by `{{ }}` / `{% %}` in a Liquid
|
|
827
|
-
* snippet, as full dotted paths (e.g. `e_purchase.amount`), de-duplicated.
|
|
828
|
-
*
|
|
829
|
-
* Uses liquidjs static analysis: the returned set is the `globals` — references
|
|
830
|
-
* that are NOT in scope. This excludes, with no hand-rolled lists:
|
|
831
|
-
* - `{% assign %}` / `{% capture %}` targets
|
|
832
|
-
* - `{% for %}` / `{% tablerow %}` loop variables
|
|
833
|
-
* - the loop-provided `forloop` / `tablerowloop` objects
|
|
834
|
-
* - `{% increment %}` / `{% decrement %}` counters
|
|
835
|
-
* - string / number literals and filter names
|
|
836
|
-
*
|
|
837
|
-
* Returns `[]` for empty input or syntactically invalid Liquid (e.g. while the
|
|
838
|
-
* user is mid-typing), so callers never have to guard against a thrown parse.
|
|
839
|
-
*/
|
|
840
|
-
export declare function getLiquidVariables(code: string): string[];
|
|
841
|
-
|
|
842
826
|
export declare const Icon: DefineComponent<IconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IconProps> & Readonly<{}>, {
|
|
843
827
|
size: number | string;
|
|
844
828
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|