amotify 0.1.45 → 0.1.46
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/@declaration/property.d.ts +1 -0
- package/dist/@styles/componentClasses/_.css +2 -2
- package/dist/@styles/index.css +2 -2
- package/dist/@styles/init.css +2 -2
- package/dist/@styles/style.css +26 -8
- package/dist/@styles/var.css +2 -2
- package/dist/@utils/GenerateClassName.js +1 -1
- package/package.json +1 -1
|
@@ -81,6 +81,7 @@ export declare namespace Fonts {
|
|
|
81
81
|
isBoldFont?: boolean;
|
|
82
82
|
isRounded?: boolean;
|
|
83
83
|
textAlign?: 'left' | 'center' | 'right';
|
|
84
|
+
textDecoration?: 'none' | 'underline' | 'line-through';
|
|
84
85
|
};
|
|
85
86
|
type Weight = '0.thin' | '1.light' | '2.normal' | '3.semiBold' | '4.bold' | '5.extraBold' | 'inherit' | 'lighter' | 'bolder';
|
|
86
87
|
type Color = Others.UniColors | '1.clear' | '2.normal' | '3.blur' | '4.thin' | '5.translucent' | '6.clear' | 'mono.potivite' | 'mono.negative' | 'logo' | 'trans';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license amotify
|
|
3
|
-
* amotify 0.1.
|
|
3
|
+
* amotify 0.1.45
|
|
4
4
|
* https://mingoo.co.jp/
|
|
5
5
|
|
|
6
6
|
* Copyright (c) mingoo, LLC.
|
|
7
7
|
* Released under the MIT license
|
|
8
8
|
|
|
9
|
-
* Latest updated at: 2024/6/
|
|
9
|
+
* Latest updated at: 2024/6/29
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
/* esbuild-sass-plugin:css-chunk:src/@styles/componentClasses/a_img.module.scss */
|
package/dist/@styles/index.css
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license amotify
|
|
3
|
-
* amotify 0.1.
|
|
3
|
+
* amotify 0.1.45
|
|
4
4
|
* https://mingoo.co.jp/
|
|
5
5
|
|
|
6
6
|
* Copyright (c) mingoo, LLC.
|
|
7
7
|
* Released under the MIT license
|
|
8
8
|
|
|
9
|
-
* Latest updated at: 2024/6/
|
|
9
|
+
* Latest updated at: 2024/6/29
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
/* esbuild-sass-plugin:css-chunk:src/@styles/componentClasses/a_img.module.scss */
|
package/dist/@styles/init.css
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license amotify
|
|
3
|
-
* amotify 0.1.
|
|
3
|
+
* amotify 0.1.45
|
|
4
4
|
* https://mingoo.co.jp/
|
|
5
5
|
|
|
6
6
|
* Copyright (c) mingoo, LLC.
|
|
7
7
|
* Released under the MIT license
|
|
8
8
|
|
|
9
|
-
* Latest updated at: 2024/6/
|
|
9
|
+
* Latest updated at: 2024/6/29
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
/* src/@styles/init.scss */
|
package/dist/@styles/style.css
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license amotify
|
|
3
|
-
* amotify 0.1.
|
|
3
|
+
* amotify 0.1.45
|
|
4
4
|
* https://mingoo.co.jp/
|
|
5
5
|
|
|
6
6
|
* Copyright (c) mingoo, LLC.
|
|
7
7
|
* Released under the MIT license
|
|
8
8
|
|
|
9
|
-
* Latest updated at: 2024/6/
|
|
9
|
+
* Latest updated at: 2024/6/29
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
/* src/@styles/@app.scss */
|
|
@@ -2938,15 +2938,24 @@ amotify-app {
|
|
|
2938
2938
|
.amotf_psstatic {
|
|
2939
2939
|
position: static;
|
|
2940
2940
|
}
|
|
2941
|
-
.
|
|
2941
|
+
.amotf_txtalgcenter {
|
|
2942
2942
|
text-align: center;
|
|
2943
2943
|
}
|
|
2944
|
-
.
|
|
2944
|
+
.amotf_txtalgleft {
|
|
2945
2945
|
text-align: left;
|
|
2946
2946
|
}
|
|
2947
|
-
.
|
|
2947
|
+
.amotf_txtalgright {
|
|
2948
2948
|
text-align: right;
|
|
2949
2949
|
}
|
|
2950
|
+
.amotf_txtdeconone {
|
|
2951
|
+
text-decoration: none;
|
|
2952
|
+
}
|
|
2953
|
+
.amotf_txtdecounderline {
|
|
2954
|
+
text-decoration: underline;
|
|
2955
|
+
}
|
|
2956
|
+
.amotf_txtdecoline-through {
|
|
2957
|
+
text-decoration: line-through;
|
|
2958
|
+
}
|
|
2950
2959
|
.amotf_ftcl1_clear {
|
|
2951
2960
|
color: rgb(var(--font-color1-rgb));
|
|
2952
2961
|
}
|
|
@@ -5184,15 +5193,24 @@ amotify-app {
|
|
|
5184
5193
|
.amotf_bppsstatic {
|
|
5185
5194
|
position: static;
|
|
5186
5195
|
}
|
|
5187
|
-
.
|
|
5196
|
+
.amotf_bptxtalgcenter {
|
|
5188
5197
|
text-align: center;
|
|
5189
5198
|
}
|
|
5190
|
-
.
|
|
5199
|
+
.amotf_bptxtalgleft {
|
|
5191
5200
|
text-align: left;
|
|
5192
5201
|
}
|
|
5193
|
-
.
|
|
5202
|
+
.amotf_bptxtalgright {
|
|
5194
5203
|
text-align: right;
|
|
5195
5204
|
}
|
|
5205
|
+
.amotf_bptxtdeconone {
|
|
5206
|
+
text-decoration: none;
|
|
5207
|
+
}
|
|
5208
|
+
.amotf_bptxtdecounderline {
|
|
5209
|
+
text-decoration: underline;
|
|
5210
|
+
}
|
|
5211
|
+
.amotf_bptxtdecoline-through {
|
|
5212
|
+
text-decoration: line-through;
|
|
5213
|
+
}
|
|
5196
5214
|
.amotf_bpftcl1_clear {
|
|
5197
5215
|
color: rgb(var(--font-color1-rgb));
|
|
5198
5216
|
}
|
package/dist/@styles/var.css
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license amotify
|
|
3
|
-
* amotify 0.1.
|
|
3
|
+
* amotify 0.1.45
|
|
4
4
|
* https://mingoo.co.jp/
|
|
5
5
|
|
|
6
6
|
* Copyright (c) mingoo, LLC.
|
|
7
7
|
* Released under the MIT license
|
|
8
8
|
|
|
9
|
-
* Latest updated at: 2024/6/
|
|
9
|
+
* Latest updated at: 2024/6/29
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
/* src/@styles/var.scss */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{b as t,c as
|
|
1
|
+
import{b as t,c as u,d as J}from"../chunk-VY3566IV.js";import{$$ as o,Config as Le}from"./_";const r={toConcreteBorderRadius:l=>{let R=Le.get().roundness|0;return l=="1.tone.primary"?l=[0,2,3,4,5,5][R]:l=="2.tone.secondary"?l=[0,1,2,3,4,5][R]:l=="3.tone.tertiary"&&(l=[0,"1/3","2/3",1,2,3][R]),l},ev:l=>o.is.nullish(l),ClassNames:(l,R)=>{var Be,Te,Re,Pe,we,Ne,ke;let e=[],_e=R,{gap:n,display:C,position:g,overflow:f,fontColor:P,fontSize:x,fontWeight:i,backgroundColor:p,textAlign:_,textDecoration:m,boxShadow:U,margin:h,marginTop:s,marginRight:c,marginBottom:a,marginLeft:B,padding:T,paddingTop:N,paddingRight:k,paddingBottom:L,paddingLeft:z,top:V,right:Y,bottom:Z,left:ee,border:E,borderTop:v,borderRight:b,borderBottom:S,borderLeft:y,borderWidth:re,borderColor:se,borderStyle:te,borderRadius:F,borderTopLeftRadius:W,borderTopRightRadius:A,borderBottomLeftRadius:H,borderBottomRightRadius:j,flexSizing:ie,flexWrap:oe,flexType:ae,flexChilds:le,flexGrid:ne,horizontalAlign:pe,verticalAlign:de,transition:he,gridCenter:ue,gridCols:ge,maxHeight:fe,minHeight:me,maxWidth:ce,minWidth:ve,width:be,height:Se,unitHeight:ye,unitWidth:Ce,opacity:xe}=_e,ze=J(_e,["gap","display","position","overflow","fontColor","fontSize","fontWeight","backgroundColor","textAlign","textDecoration","boxShadow","margin","marginTop","marginRight","marginBottom","marginLeft","padding","paddingTop","paddingRight","paddingBottom","paddingLeft","top","right","bottom","left","border","borderTop","borderRight","borderBottom","borderLeft","borderWidth","borderColor","borderStyle","borderRadius","borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius","flexSizing","flexWrap","flexType","flexChilds","flexGrid","horizontalAlign","verticalAlign","transition","gridCenter","gridCols","maxHeight","minHeight","maxWidth","minWidth","width","height","unitHeight","unitWidth","opacity"]);{if(r.ev(C)||e.push("dsp"+C),f){let d=o.flatArray(f);e.push("ovfl-x-"+d[0]),e.push("ovfl-y-"+(d[1]||d[0]))}r.ev(g)||e.push("ps"+g),r.ev(_)||e.push("txtalg"+_),r.ev(_)||e.push("txtdeco"+m),r.ev(P)||e.push("ftcl"+((Be=String(P))==null?void 0:Be.replace(/\./g,"_"))),r.ev(x)||e.push("ftsz"+((Te=String(x))==null?void 0:Te.replace(/\..*/,""))),r.ev(i)||e.push("ftwt"+(i==null?void 0:i.replace(/\..*/,""))),r.ev(p)||e.push("bgc"+((Re=String(p))==null?void 0:Re.replace(/\./g,"_"))),r.ev(U)||e.push("bs"+U);let $,I,D,G;o.is.exist(h)&&(o.is.array(h)?h.length==2?[$,I,D,G]=[...h,...h]:h.length==4&&([$,I,D,G]=h):$=I=D=G=h,s=s!=null?s:$,c=c!=null?c:I,a=a!=null?a:D,B=B!=null?B:G),r.ev(s)||e.push("mrgt"+s),r.ev(c)||e.push("mrgr"+c),r.ev(a)||e.push("mrgb"+a),r.ev(B)||e.push("mrgl"+B);let O,q,M,X;o.is.exist(T)&&(o.is.array(T)?T.length==2?[O,q,M,X]=[...T,...T]:T.length==4&&([O,q,M,X]=T):O=q=M=X=T,N=N!=null?N:O,k=k!=null?k:q,L=L!=null?L:M,z=z!=null?z:X),r.ev(N)||e.push("pdt"+N),r.ev(k)||e.push("pdr"+k),r.ev(L)||e.push("pdb"+L),r.ev(z)||e.push("pdl"+z),r.ev(V)||e.push("pstt"+V),r.ev(Y)||e.push("pstr"+Y),r.ev(Z)||e.push("pstb"+Z),r.ev(ee)||e.push("pstl"+ee);{o.is.exist(E)&&(v=v!=null?v:E,b=b!=null?b:E,S=S!=null?S:E,y=y!=null?y:E),o.is.boolean(v)&&(v=["unset","2.normal"][Number(v)]),o.is.boolean(b)&&(b=["unset","2.normal"][Number(b)]),o.is.boolean(S)&&(S=["unset","2.normal"][Number(S)]),o.is.boolean(y)&&(y=["unset","2.normal"][Number(y)]),r.ev(v)||e.push("b_t_ss"+((Pe=String(v))==null?void 0:Pe.replace(/\..*/,""))),r.ev(b)||e.push("b_r_ss"+((we=String(b))==null?void 0:we.replace(/\..*/,""))),r.ev(S)||e.push("b_b_ss"+((Ne=String(S))==null?void 0:Ne.replace(/\..*/,""))),r.ev(y)||e.push("b_l_ss"+((ke=String(y))==null?void 0:ke.replace(/\..*/,""))),o.is.exist(re)&&e.push("b_wth"+String(re)),o.is.exist(se)&&e.push("b_cl"+String(se)),o.is.exist(te)&&e.push("b_st"+String(te));{let d,w,K,Q;o.is.exist(F)&&(o.is.array(F)?F.length==4&&([d,w,Q,K]=F):d=w=K=Q=F,W=W!=null?W:d,A=A!=null?A:w,H=H!=null?H:K,j=j!=null?j:Q)}r.ev(W)||e.push("br_tl"+r.toConcreteBorderRadius(W)),r.ev(A)||e.push("br_tr"+r.toConcreteBorderRadius(A)),r.ev(H)||e.push("br_bl"+r.toConcreteBorderRadius(H)),r.ev(j)||e.push("br_br"+r.toConcreteBorderRadius(j))}if(r.ev(xe)||e.push("op"+xe),o.is.exist(n)){let d,w;o.is.array(n)?(d=n[0],w=n[1]):d=w=n,e.push("gapRow"+d,"gapCol"+w)}r.ev(ie)||e.push("flsz"+ie),r.ev(oe)||e.push("flwrp"+oe),r.ev(ae)||e.push("fltyp"+ae),r.ev(le)||e.push("flchld"+le),r.ev(ne)||e.push("flgrid"+ne),r.ev(de)||e.push("flvrt"+de),r.ev(pe)||e.push("flhrz"+pe),r.ev(ue)||e.push("grcnt"+ue),r.ev(ge)||e.push("grcol"+ge),r.ev(Se)||e.push("hgt"+Se),r.ev(be)||e.push("wdt"+be),r.ev(ye)||e.push("unthgt"+ye),r.ev(Ce)||e.push("untwdt"+Ce),r.ev(he)||e.push("trnst"+he),r.ev(fe)||e.push("maxh"+fe),r.ev(me)||e.push("minh"+me),r.ev(ce)||e.push("maxw"+ce),r.ev(ve)||e.push("minw"+ve)}return{otherParams:ze,className:e.length?l+e.join(" "+l):""}}},We=l=>{let c=t({},l),{gradients:e,ssCardBox:n,ssSphere:C,ssSquare:g,ssPushable:f,ssAbsoluteCovered:P,ssTextEllipsis:x,flexCenter:i,flexNewLine:p,isLightFont:_,isBoldFont:m,isSemiBoldFont:U,isRounded:h}=c,s=J(c,["gradients","ssCardBox","ssSphere","ssSquare","ssPushable","ssAbsoluteCovered","ssTextEllipsis","flexCenter","flexNewLine","isLightFont","isBoldFont","isSemiBoldFont","isRounded"]);if(e){let{deg:a,colors:B}=e;s=u(t({},s),{freeCSS:u(t({},s.freeCSS),{background:`linear-gradient(${a}deg,${B.join(",")})`})})}if(n){n===!0&&(n="border");let a={backgroundColor:"layer.1",borderRadius:"1.tone.primary",boxShadow:"0.thin",freeCSS:{zIndex:1}};n=="border"?a.border=!0:n=="layer"?a.backgroundColor="layer.1":n=="cloud"?a.backgroundColor="cloud":n=="shadow"&&(a.boxShadow="0.normal"),["dim","dark"].includes(Le.get().darkMode)&&(a.boxShadow="1.remark"),s=u(t(t({},a),s),{freeCSS:t(t({},a.freeCSS),s.freeCSS),UnderBreakPointStyles:t(t({},a.UnderBreakPointStyles),s.UnderBreakPointStyles)})}return C&&(i=i!=null?i:!0,s=t({padding:0,unitWidth:C,unitHeight:C,borderRadius:"sphere",flexSizing:"none"},s)),g&&(i=i!=null?i:!0,s=t({padding:0,unitWidth:g,unitHeight:g,flexSizing:"none"},s)),!f||(s=u(t({transition:"middle"},s),{className:[s.className,"ssPushable"].join(" ")})),!P||(s=t({position:"absolute",top:0,left:0,right:0,bottom:0},s)),!x||(s=u(t({overflow:"hidden"},s),{freeCSS:t({whiteSpace:"nowrap",textOverflow:"ellipsis"},s.freeCSS)})),!p||(s=t({width:1,flexSizing:"none"},s)),!i||(s=t({display:"flex",horizontalAlign:"center",verticalAlign:"center"},s)),!_||(s=u(t({},s),{fontWeight:"1.light"})),!U||(s=u(t({},s),{fontWeight:"3.semiBold"})),!m||(s=u(t({},s),{fontWeight:"4.bold"})),!h||(s=u(t({},s),{borderRadius:"sphere"})),s},Ee=l=>{let _=We(l),{componentID:e,UnderBreakPointStyles:n={},className:C="",freeCSS:g={},ssEffectsOnActive:f,ssLastChildLossBorder:P}=_,x=J(_,["componentID","UnderBreakPointStyles","className","freeCSS","ssEffectsOnActive","ssLastChildLossBorder"]),i=[C];if(P&&i.push("ssLastChildLossBorder_"+P),f){f=o.flatArray(f);for(let m of f)i.push("eff_"+m,"eff_"+m.split(".")[0])}{let m=r.ClassNames("amotf_",x);i.push(m.className),x=m.otherParams}n&&i.push(r.ClassNames("amotf_bp",n).className);let p=t({},x);return g&&(p.style=t(t({},g),p.style)),(e||p["data-component-id"])&&(p["data-component-id"]=p["data-component-id"]||e),i.length&&(p.className=i.join(" ").trim().replace(/%/ig,"P").replace(/\d+px/ig,"PIX").replace(/\s+/ig," ").replace(/\//ig,"_").replace(/\./ig,"-")),p};export{Ee as GenerateClassName,We as ReadStyleSet};
|