amotify 0.2.106 → 0.2.108
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 +4 -2
- package/demo/esbuild/designBook.tsx +2 -1
- package/demo/esbuild/public/index.css +1 -1
- package/demo/esbuild/public/index.js +26 -26
- package/dist/@declares/property.d.ts +1 -1
- package/dist/@styles/style.css +1 -1
- package/dist/@styles/var.css +1 -1
- package/dist/fn/Button.js +1 -1
- package/package.json +1 -1
|
@@ -120,7 +120,7 @@ export type overflowUnit = 'auto' | 'hidden' | 'scroll' | 'visible' | 'unset';
|
|
|
120
120
|
export type overflow = overflowUnit | [overflowUnit, overflowUnit];
|
|
121
121
|
export type UniColors = 'inherit' | 'theme' | 'posi' | 'nega' | 'warn' | 'white' | 'black' | 'dark' | ThemeColor;
|
|
122
122
|
export type LayerColors = 'layer.0' | 'layer.1' | 'layer.2' | 'layer.3' | 'layer.4' | 'layer.5' | 'layer.6';
|
|
123
|
-
export type BackgroundColor = UniColors | LayerColors | 'layer.0.opa.few' | 'layer.0.opa.low' | 'layer.0.opa.middle' | 'layer.0.opa.high' | '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
|
+
export type BackgroundColor = UniColors | LayerColors | 'layer.0.opa.few' | 'layer.0.opa.low' | 'layer.0.opa.middle' | 'layer.0.opa.high' | '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' | 'gray' | 'trans' | 'none';
|
|
124
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%';
|
|
125
125
|
export type EffectsOnActive = 'ripple.white' | 'ripple.cloud' | 'ripple.theme' | 'push' | 'expand' | 'shrink' | 'pudding' | 'fade' | 'none';
|
|
126
126
|
export type Properties = Pargins.States & Fonts.States & Borders.States & FlexGrids.States & Sizes.States & StyleSets.States & {
|