@accretion_ui/core 0.1.1
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/accretion/accretion.esm.js +1 -0
- package/dist/accretion/index.esm.js +0 -0
- package/dist/accretion/p-29hYl1Jo.js +2 -0
- package/dist/accretion/p-63e587ea.entry.js +1 -0
- package/dist/accretion/p-DQuL1Twl.js +1 -0
- package/dist/cjs/accretion-button.cjs.entry.js +19 -0
- package/dist/cjs/accretion.cjs.js +25 -0
- package/dist/cjs/app-globals-V2Kpy_OQ.js +5 -0
- package/dist/cjs/index-B4kbRNRe.js +1420 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +13 -0
- package/dist/collection/collection-manifest.json +13 -0
- package/dist/collection/components/accretion-button/accretion-button.css +46 -0
- package/dist/collection/components/accretion-button/accretion-button.js +64 -0
- package/dist/collection/index.js +1 -0
- package/dist/components/accretion-button.d.ts +11 -0
- package/dist/components/accretion-button.js +1 -0
- package/dist/components/index.d.ts +39 -0
- package/dist/components/index.js +1 -0
- package/dist/esm/accretion-button.entry.js +17 -0
- package/dist/esm/accretion.js +21 -0
- package/dist/esm/app-globals-DQuL1Twl.js +3 -0
- package/dist/esm/index-29hYl1Jo.js +1414 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +11 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/types/components/accretion-button/accretion-button.d.ts +5 -0
- package/dist/types/components.d.ts +59 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1860 -0
- package/loader/cdn.js +1 -0
- package/loader/index.cjs.js +1 -0
- package/loader/index.d.ts +24 -0
- package/loader/index.es2017.js +1 -0
- package/loader/index.js +2 -0
- package/package.json +34 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { b as bootstrapLazy } from './index-29hYl1Jo.js';
|
|
2
|
+
export { s as setNonce } from './index-29hYl1Jo.js';
|
|
3
|
+
import { g as globalScripts } from './app-globals-DQuL1Twl.js';
|
|
4
|
+
|
|
5
|
+
const defineCustomElements = async (win, options) => {
|
|
6
|
+
if (typeof window === 'undefined') return undefined;
|
|
7
|
+
await globalScripts();
|
|
8
|
+
return bootstrapLazy([["accretion-button",[[769,"accretion-button",{"variant":[1],"disabled":[4]}]]]], options);
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export { defineCustomElements };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('./cjs/index.cjs.js');
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './esm/index.js';
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/**
|
|
4
|
+
* This is an autogenerated file created by the Stencil compiler.
|
|
5
|
+
* It contains typing information for all components that exist in this project.
|
|
6
|
+
*/
|
|
7
|
+
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
|
+
export namespace Components {
|
|
9
|
+
interface AccretionButton {
|
|
10
|
+
/**
|
|
11
|
+
* @default false
|
|
12
|
+
*/
|
|
13
|
+
"disabled": boolean;
|
|
14
|
+
/**
|
|
15
|
+
* @default 'primary'
|
|
16
|
+
*/
|
|
17
|
+
"variant": 'primary' | 'secondary';
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
declare global {
|
|
21
|
+
interface HTMLAccretionButtonElement extends Components.AccretionButton, HTMLStencilElement {
|
|
22
|
+
}
|
|
23
|
+
var HTMLAccretionButtonElement: {
|
|
24
|
+
prototype: HTMLAccretionButtonElement;
|
|
25
|
+
new (): HTMLAccretionButtonElement;
|
|
26
|
+
};
|
|
27
|
+
interface HTMLElementTagNameMap {
|
|
28
|
+
"accretion-button": HTMLAccretionButtonElement;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
declare namespace LocalJSX {
|
|
32
|
+
interface AccretionButton {
|
|
33
|
+
/**
|
|
34
|
+
* @default false
|
|
35
|
+
*/
|
|
36
|
+
"disabled"?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* @default 'primary'
|
|
39
|
+
*/
|
|
40
|
+
"variant"?: 'primary' | 'secondary';
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
interface AccretionButtonAttributes {
|
|
44
|
+
"variant": 'primary' | 'secondary';
|
|
45
|
+
"disabled": boolean;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
interface IntrinsicElements {
|
|
49
|
+
"accretion-button": Omit<AccretionButton, keyof AccretionButtonAttributes> & { [K in keyof AccretionButton & keyof AccretionButtonAttributes]?: AccretionButton[K] } & { [K in keyof AccretionButton & keyof AccretionButtonAttributes as `attr:${K}`]?: AccretionButtonAttributes[K] } & { [K in keyof AccretionButton & keyof AccretionButtonAttributes as `prop:${K}`]?: AccretionButton[K] };
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
export { LocalJSX as JSX };
|
|
53
|
+
declare module "@stencil/core" {
|
|
54
|
+
export namespace JSX {
|
|
55
|
+
interface IntrinsicElements {
|
|
56
|
+
"accretion-button": LocalJSX.IntrinsicElements["accretion-button"] & JSXBase.HTMLAttributes<HTMLAccretionButtonElement>;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { Components, JSX } from './components';
|