amotify 0.2.21 → 0.2.23
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/public/index.css +1 -1
- package/demo/esbuild/public/index.js +89 -89
- package/dist/@declares/property.d.ts +26 -23
- package/dist/@styles/style.css +1 -1
- package/dist/@styles/var.css +1 -1
- package/dist/@utils/GenerateClassName.js +1 -1
- package/dist/atoms/FAI.js +1 -1
- package/dist/atoms/Flex.js +1 -1
- package/dist/atoms/Grid.js +1 -1
- package/dist/atoms/Logo.js +4 -4
- package/dist/atoms/Placeholder.js +1 -1
- package/dist/fn/Button.d.ts +1 -1
- package/dist/fn/Button.js +1 -1
- package/dist/fn/Cropper.js +1 -1
- package/dist/fn/Effect/Fade.js +1 -1
- package/dist/fn/Input/AutoHeightText.js +1 -1
- package/dist/fn/Input/Chips/Selector.js +1 -1
- package/dist/fn/Input/Chips/index.js +1 -1
- package/dist/fn/Input/Contenteditable.js +1 -1
- package/dist/fn/Input/DigitCharacters.d.ts +1 -1
- package/dist/fn/Input/DigitCharacters.js +1 -1
- package/dist/fn/Input/Filer.js +1 -1
- package/dist/fn/Input/List.d.ts +3 -3
- package/dist/fn/Input/List.js +1 -1
- package/dist/fn/Input/Parts.js +1 -1
- package/dist/fn/Input/RichSelect.d.ts +3 -3
- package/dist/fn/Input/RichSelect.js +1 -1
- package/dist/fn/Input/Search.js +1 -1
- package/dist/fn/Input/Segmented.js +1 -1
- package/dist/fn/Input/Select.d.ts +1 -1
- package/dist/fn/Input/Select.js +1 -1
- package/dist/fn/Input/Slider.js +1 -1
- package/dist/fn/Input/Switch.js +1 -1
- package/dist/fn/Input/Text.js +1 -1
- package/dist/fn/Input/TextArea.js +1 -1
- package/dist/fn/Input/Time/Picker.js +1 -1
- package/dist/fn/Input/Time/index.js +1 -1
- package/dist/fn/Input/core.d.ts +3 -3
- package/dist/fn/Input/core.js +1 -1
- package/dist/fn/Input/index.d.ts +1 -1
- package/dist/fn/Loader/corner.js +1 -1
- package/dist/fn/Loader/mini.js +1 -1
- package/dist/fn/PageNotFound.js +1 -1
- package/dist/fn/Plate.js +1 -1
- package/dist/fn/RootViewController.d.ts +2 -4
- package/dist/fn/RootViewController.js +1 -1
- package/dist/fn/Sheet.js +1 -1
- package/dist/fn/Snackbar.js +1 -1
- package/dist/fn/SwipeView.js +1 -1
- package/dist/fn/TabBar.js +1 -1
- package/dist/fn/Table/Data.d.ts +2 -2
- package/dist/fn/Table/Data.js +1 -1
- package/dist/fn/Table/Drag.js +1 -1
- package/dist/fn/Table/Normal.js +1 -1
- package/dist/fn/Table/Parts.js +1 -1
- package/dist/fn/Table/Wrapper.js +1 -1
- package/dist/fn/Table/cellStyling.d.ts +1 -6
- package/dist/fn/Table/cellStyling.js +1 -1
- package/dist/fn/Table/index.d.ts +2 -2
- package/dist/fn/Tooltips.js +1 -1
- package/dist/mols/Accordion.js +1 -1
- package/dist/mols/Column.js +1 -1
- package/dist/mols/List.d.ts +1 -1
- package/dist/mols/List.js +1 -1
- package/dist/mols/Row.js +1 -1
- package/dist/mols/Text.js +1 -1
- package/dist/temps/designBook.js +20 -20
- package/package.json +2 -2
|
@@ -6,12 +6,14 @@ export type BasicTag = {
|
|
|
6
6
|
id?: string;
|
|
7
7
|
componentID?: string;
|
|
8
8
|
};
|
|
9
|
-
export type
|
|
10
|
-
|
|
9
|
+
export type FreeCSS = React.CSSProperties;
|
|
10
|
+
export type PropsNFreeCSS = Properties & {
|
|
11
|
+
freeCSS?: FreeCSS;
|
|
12
|
+
};
|
|
13
|
+
export type States = {
|
|
14
|
+
freeCSS?: FreeCSS;
|
|
15
|
+
styles?: Properties;
|
|
11
16
|
UnderBreakPointStyles?: Properties;
|
|
12
|
-
ssEffectsOnActive?: Others.EffectsOnActive | Others.EffectsOnActive[] | false;
|
|
13
|
-
ssPushable?: boolean;
|
|
14
|
-
ssLastChildLossBorder?: 'bottom' | 'right' | false;
|
|
15
17
|
};
|
|
16
18
|
export declare namespace Pargins {
|
|
17
19
|
type States = {
|
|
@@ -84,7 +86,7 @@ export declare namespace Fonts {
|
|
|
84
86
|
textDecoration?: 'none' | 'underline' | 'line-through';
|
|
85
87
|
};
|
|
86
88
|
type Weight = '0.thin' | '1.light' | '2.normal' | '3.semiBold' | '4.bold' | '5.extraBold' | 'inherit' | 'lighter' | 'bolder';
|
|
87
|
-
type Color =
|
|
89
|
+
type Color = UniColors | '1.clear' | '2.normal' | '3.blur' | '4.thin' | '5.translucent' | '6.clear' | 'mono.potivite' | 'mono.negative' | 'logo' | 'trans';
|
|
88
90
|
type Size = '0.xs' | '1.mini' | '2.normal' | '3.paragraph' | '4.thirdTitle' | '5.subTitle' | '6.title' | '7.landing' | '8.xl' | 'inherit';
|
|
89
91
|
}
|
|
90
92
|
export declare namespace Sizes {
|
|
@@ -103,37 +105,38 @@ export declare namespace Sizes {
|
|
|
103
105
|
export declare namespace StyleSets {
|
|
104
106
|
type States = {
|
|
105
107
|
ssCardBox?: boolean | 'border' | 'layer' | 'cloud' | 'shadow';
|
|
108
|
+
ssPushable?: boolean;
|
|
106
109
|
ssSphere?: Sizes.Size;
|
|
107
110
|
ssSquare?: Sizes.Size;
|
|
108
111
|
ssAbsoluteCovered?: boolean;
|
|
109
112
|
ssTextEllipsis?: boolean;
|
|
113
|
+
ssEffectsOnActive?: EffectsOnActive | EffectsOnActive[] | false;
|
|
114
|
+
ssLastChildLossBorder?: 'bottom' | 'right' | false;
|
|
110
115
|
};
|
|
111
116
|
}
|
|
112
|
-
export
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
type EffectsOnActive = 'ripple.white' | 'ripple.cloud' | 'ripple.theme' | 'push' | 'expand' | 'shrink' | 'pudding' | 'fade' | 'none';
|
|
121
|
-
}
|
|
117
|
+
export type gapUnit = 0 | '1/12' | '1/6' | '1/4' | '1/3' | '1/2' | '2/3' | '3/4' | 1 | 1.5 | 2 | 2.5 | 3 | 4;
|
|
118
|
+
export type gap = gapUnit | [gapUnit, gapUnit];
|
|
119
|
+
export type overflowUnit = 'auto' | 'hidden' | 'scroll' | 'visible' | 'unset';
|
|
120
|
+
export type overflow = overflowUnit | [overflowUnit, overflowUnit];
|
|
121
|
+
export type UniColors = 'inherit' | 'theme' | 'posi' | 'nega' | 'warn' | 'white' | 'black' | ThemeColor;
|
|
122
|
+
export type BackgroundColor = UniColors | 'layer.1' | 'layer.2' | 'layer.3' | 'layer.4' | 'layer.5' | 'layer.6' | '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' | 'dark' | 'trans' | 'none';
|
|
123
|
+
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
|
+
export type EffectsOnActive = 'ripple.white' | 'ripple.cloud' | 'ripple.theme' | 'push' | 'expand' | 'shrink' | 'pudding' | 'fade' | 'none';
|
|
122
125
|
export type Properties = Pargins.States & Fonts.States & Borders.States & FlexGrids.States & Sizes.States & StyleSets.States & {
|
|
123
|
-
backgroundColor?:
|
|
126
|
+
backgroundColor?: BackgroundColor;
|
|
124
127
|
gradients?: {
|
|
125
128
|
deg: number;
|
|
126
129
|
colors: string[];
|
|
127
130
|
};
|
|
128
131
|
boxShadow?: '3.min.inset' | '3.normal.inset' | '3.remark.inset' | '3.max.inset' | '2.min.inset' | '2.normal.inset' | '2.remark.inset' | '2.max.inset' | '1.min.inset' | '1.normal.inset' | '1.remark.inset' | '1.max.inset' | '0.min.inset' | '0.normal.inset' | '0.remark.inset' | '0.max.inset' | '0.min' | '0.normal' | '0.remark' | '0.max' | '1.min' | '1.normal' | '1.remark' | '1.max' | '2.min' | '2.normal' | '2.remark' | '2.max' | '3.min' | '3.normal' | '3.remark' | '3.max' | '4.min' | '4.normal' | '4.remark' | '4.max' | '5.min' | '5.normal' | '5.remark' | '5.max' | 'none';
|
|
129
132
|
display?: 'block' | 'none' | 'flex' | 'grid' | 'inlineBlock' | 'inlineFlex';
|
|
130
|
-
gap?:
|
|
131
|
-
overflow?:
|
|
133
|
+
gap?: gap;
|
|
134
|
+
overflow?: overflow;
|
|
132
135
|
position?: 'relative' | 'absolute' | 'fixed' | 'sticky' | 'static';
|
|
133
|
-
top?:
|
|
134
|
-
right?:
|
|
135
|
-
bottom?:
|
|
136
|
-
left?:
|
|
136
|
+
top?: TRBL | 'topBase' | 'topNavigationHeight';
|
|
137
|
+
right?: TRBL;
|
|
138
|
+
bottom?: TRBL | 'footerNavigationHeight';
|
|
139
|
+
left?: TRBL;
|
|
137
140
|
opacity?: 'trans' | 'min' | 'low' | 'middle' | 'high' | 'max';
|
|
138
141
|
transition?: 'none' | 'short' | 'middle' | 'long';
|
|
139
142
|
};
|