amotify 0.2.88 → 0.2.90
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/demo/esbuild/app.tsx +8 -3
- package/demo/esbuild/public/index.css +1 -1
- package/demo/esbuild/public/index.js +22 -120
- package/dist/@declares/property.d.ts +5 -4
- package/dist/@styles/style.css +1 -1
- package/dist/@styles/style.js +1 -1
- package/dist/@utils/GenerateClassName.js +1 -1
- package/dist/fn/Input/Checker.d.ts +4 -15
- package/dist/fn/Input/Checker.js +1 -1
- package/dist/fn/Input/List.d.ts +2 -0
- package/dist/fn/Input/List.js +1 -1
- package/package.json +1 -1
|
@@ -46,9 +46,9 @@ export declare namespace Borders {
|
|
|
46
46
|
borderBottomLeftRadius?: Radius;
|
|
47
47
|
borderBottomRightRadius?: Radius;
|
|
48
48
|
};
|
|
49
|
-
type Border = boolean | '0.trans' | '1.thin' | '2.normal' | '3.thick' | '
|
|
49
|
+
type Border = boolean | '0.trans' | '1.thin' | '2.normal' | '3.thick' | 'unset';
|
|
50
50
|
type Width = 0 | 1 | 2 | 3 | 4;
|
|
51
|
-
type Color = '0.trans' | '1.thin' | '2.normal' | '3.thick'
|
|
51
|
+
type Color = UniColors | LayerColors | '0.trans' | '1.thin' | '2.normal' | '3.thick';
|
|
52
52
|
type Style = 'solid' | 'dashed' | 'double' | 'dotted' | 'none';
|
|
53
53
|
type Radius = 0 | '1/3' | '2/3' | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 'sphere' | 'inherit' | '1.tone.primary' | '2.tone.secondary' | '3.tone.tertiary';
|
|
54
54
|
}
|
|
@@ -118,8 +118,9 @@ export type gapUnit = 0 | '1/12' | '1/6' | '1/4' | '1/3' | '1/2' | '2/3' | '3/4'
|
|
|
118
118
|
export type gap = gapUnit | [gapUnit, gapUnit];
|
|
119
119
|
export type overflowUnit = 'auto' | 'hidden' | 'scroll' | 'visible' | 'unset';
|
|
120
120
|
export type overflow = overflowUnit | [overflowUnit, overflowUnit];
|
|
121
|
-
export type UniColors = 'inherit' | 'theme' | 'posi' | 'nega' | 'warn' | 'white' | 'black' | ThemeColor;
|
|
122
|
-
export type
|
|
121
|
+
export type UniColors = 'inherit' | 'theme' | 'posi' | 'nega' | 'warn' | 'white' | 'black' | 'dark' | ThemeColor;
|
|
122
|
+
export type LayerColors = 'layer.1' | 'layer.2' | 'layer.3' | 'layer.4' | 'layer.5' | 'layer.6';
|
|
123
|
+
export type BackgroundColor = UniColors | LayerColors | 'layer.1.opa.few' | 'layer.1.opa.low' | 'layer.1.opa.middle' | 'layer.1.opa.high' | 'layer.4.opa.few' | 'layer.4.opa.low' | 'layer.4.opa.middle' | 'layer.4.opa.high' | 'theme.opa.few' | 'theme.opa.low' | 'theme.opa.middle' | 'theme.opa.high' | 'theme.lighten' | 'theme.lighter' | 'theme.lightest' | 'theme.darken' | 'theme.darker' | 'theme.darkest' | 'nega.opa.low' | 'nega.opa.middle' | 'posi.opa.low' | 'posi.opa.middle' | 'mono.positive' | 'mono.negative' | 'cloud' | 'trans' | 'none';
|
|
123
124
|
export type TRBL = 0 | '1/12' | '1/6' | '1/4' | '1/3' | '1/2' | '2/3' | '3/4' | 1 | 2 | 3 | 4 | '50%' | '100%';
|
|
124
125
|
export type EffectsOnActive = 'ripple.white' | 'ripple.cloud' | 'ripple.theme' | 'push' | 'expand' | 'shrink' | 'pudding' | 'fade' | 'none';
|
|
125
126
|
export type Properties = Pargins.States & Fonts.States & Borders.States & FlexGrids.States & Sizes.States & StyleSets.States & {
|