@tasteee/zest 0.1.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/README.md +113 -204
- package/custom-elements.json +405 -5
- package/dist/components/z-bento-grid.d.ts +3 -1
- package/dist/components/z-card.d.ts +3 -1
- package/dist/components/z-cluster.d.ts +5 -3
- package/dist/components/z-column.d.ts +31 -0
- package/dist/components/z-container.d.ts +3 -1
- package/dist/components/z-dock.d.ts +3 -1
- package/dist/components/z-dropzone.d.ts +4 -0
- package/dist/components/z-grid.d.ts +9 -3
- package/dist/components/z-marquee.d.ts +3 -1
- package/dist/components/z-row.d.ts +31 -0
- package/dist/components/z-section.d.ts +18 -4
- package/dist/components/z-stack.d.ts +3 -1
- package/dist/index.d.ts +2 -0
- package/dist/shared/layout-schema.d.ts +4 -0
- package/dist/zest.js +3248 -3092
- package/package.json +71 -85
|
@@ -11,7 +11,9 @@ export declare const ZStack: import("atomico/types/dom").Atomico<{
|
|
|
11
11
|
type: BooleanConstructor;
|
|
12
12
|
reflect: true;
|
|
13
13
|
};
|
|
14
|
-
gap:
|
|
14
|
+
gap: {
|
|
15
|
+
readonly type: StringConstructor;
|
|
16
|
+
};
|
|
15
17
|
alignsX: StringConstructor;
|
|
16
18
|
alignsY: StringConstructor;
|
|
17
19
|
wrap: {
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,8 @@ export * from './components/z-card';
|
|
|
7
7
|
export * from './components/z-line';
|
|
8
8
|
export * from './components/z-separator';
|
|
9
9
|
export * from './components/z-stack';
|
|
10
|
+
export * from './components/z-row';
|
|
11
|
+
export * from './components/z-column';
|
|
10
12
|
export * from './components/z-grid';
|
|
11
13
|
export * from './components/z-bento-grid';
|
|
12
14
|
export * from './components/z-bento-item';
|
|
@@ -4,6 +4,10 @@ export declare const resolveRadius: (value?: string) => string | undefined;
|
|
|
4
4
|
export declare const resolveJustify: (value?: string) => string | undefined;
|
|
5
5
|
export declare const resolveAlign: (value?: string) => string | undefined;
|
|
6
6
|
export declare const resolveGridAlign: (value?: string) => string | undefined;
|
|
7
|
+
export declare const coerceSize: (value?: string | number) => string | undefined;
|
|
8
|
+
export declare const sizeProp: {
|
|
9
|
+
readonly type: StringConstructor;
|
|
10
|
+
};
|
|
7
11
|
export declare const resolveEdge: (value?: string) => string | undefined;
|
|
8
12
|
type InsetPropsT = {
|
|
9
13
|
inset?: string;
|