diff --git a/src/assets/style/auxiliary.scss b/src/assets/style/auxiliary.scss index 38a6b9d..629375c 100644 --- a/src/assets/style/auxiliary.scss +++ b/src/assets/style/auxiliary.scss @@ -68,8 +68,8 @@ web-view, // 历遍生成4个方向的底部安全区 @each $d in top, right, bottom, left { .safe-area-inset-#{$d} { - padding-#{$d}: 0; - padding-#{$d}: constant(safe-area-inset-#{$d}); - padding-#{$d}: env(safe-area-inset-#{$d}); + padding-#{$d}: 0 !important; + padding-#{$d}: constant(safe-area-inset-#{$d}) !important; + padding-#{$d}: env(safe-area-inset-#{$d}) !important; } } diff --git a/src/components/AppProvider/inedx.vue b/src/components/AppProvider/inedx.vue index 8b575c8..ad56ce2 100644 --- a/src/components/AppProvider/inedx.vue +++ b/src/components/AppProvider/inedx.vue @@ -1,7 +1,11 @@ - + diff --git a/src/components/FontAwesomeIcon/index.vue b/src/components/FontAwesomeIcon/index.vue index 2f96b48..eeca57a 100644 --- a/src/components/FontAwesomeIcon/index.vue +++ b/src/components/FontAwesomeIcon/index.vue @@ -1,29 +1,56 @@ diff --git a/src/components/FontAwesomeIcon/props.ts b/src/components/FontAwesomeIcon/props.ts index 5761f1e..8e98978 100644 --- a/src/components/FontAwesomeIcon/props.ts +++ b/src/components/FontAwesomeIcon/props.ts @@ -1,3 +1,123 @@ -const FontAwesomeIconProps = { - // is, +type StyleType = 'solid' | 'regular' | 'light' | 'thin' | 'duotone' | 'brands' | 'sharp'; + +export const FontAwesomeIconProps = { + /** icon name + * @link: https://fontawesome.com/icons + */ + name: { + type: String, + required: true, + }, + /** icon 风格 + * 不同风格对应不同的css, 使用时请加载相应的css + */ + mode: { + type: String, + default: 'solid', + validator(value: string) { + // The value must match one of these strings + return ['solid', 'regular', 'light', 'thin', 'duotone', 'brands'].includes(value); + }, + }, + /** icon sharp + * 对应sharp css + */ + sharp: { + type: Boolean, + default: false, + }, + /** + * icon sizing + * @description 2xs-xs-sm-lg-xl-2xl 1-10x + */ + frameSize: { + type: String, + }, + /** + * icon size + * @description 大小 单位 rpx + */ + size: { + type: Number, + }, + /** + * icon color + * @description 图标颜色 + */ + color: { + type: String, + }, + /** + * icon color + * @description 背景色 + */ + bgColor: { + type: String, + }, + /** icon border + * @description 边框 + */ + border: { + type: Boolean, + default: false, + }, + /** icon rotate + * @description 旋转角度 + */ + rotate: { + type: Number, + default: 0, + }, + /** icon flip + * @description 翻转 + */ + flip: { + type: String, + validator(value: string) { + // The value must match one of these strings + return ['horizontal', 'vertical', 'both'].includes(value); + }, + }, + /** + * icon beat + * @description 跳动动画 + * @param duration Number 时间 s + * @param scale Number 比例 + */ + beat: { + type: Boolean, + default: false, + }, + /** + * icon duration + * @description 动画持续时间(所有动画使用) s + */ + duration: { + type: Number, + default: 1, + }, + /** + * icon scale + * @description 动画比例(跳动动画使用) + */ + scale: { + type: Number, + default: 1.25, + }, + /** + * icon fade + * @description 淡入淡出动画 + */ + fade: { + type: Boolean, + default: false, + }, + /** + * icon opacity + * @description 透明度值 (淡入淡出动画使用) + */ + opacity: { + type: Number, + default: 0.6, + }, }; diff --git a/src/demo/example/fontAwesomeIcon/index.vue b/src/demo/example/fontAwesomeIcon/index.vue new file mode 100644 index 0000000..14ee1c7 --- /dev/null +++ b/src/demo/example/fontAwesomeIcon/index.vue @@ -0,0 +1,61 @@ + + + diff --git a/src/pages.json b/src/pages.json index b9907bd..8e483f1 100644 --- a/src/pages.json +++ b/src/pages.json @@ -82,6 +82,17 @@ "ignoreAuth": true } }] + },{ + "root": "demo/example", + "pages": [{ + "path": "fontAwesomeIcon/index", + "style": { + "navigationBarTitleText": "FontAwesomeIcon-Demo" + }, + "meta": { + "ignoreAuth": true + } + }] }], "globalStyle": { "navigationBarTextStyle": "black", diff --git a/src/pages/demo/index.vue b/src/pages/demo/index.vue index 8929b46..33a2121 100644 --- a/src/pages/demo/index.vue +++ b/src/pages/demo/index.vue @@ -1,13 +1,15 @@