@fox-js/foxui-pad 4.1.1-25 → 4.1.1-26

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/style.css CHANGED
@@ -4188,4 +4188,245 @@
4188
4188
  top: 0;
4189
4189
  left: 0;
4190
4190
  }
4191
+
4192
+ .fox-theme-dark .fox-number-keyboard {
4193
+ background-color: var(--fox-dark-background4, #323233);
4194
+ }
4195
+
4196
+ .fox-theme-dark .fox-number-keyboard .fox-key__wrapper .fox-key {
4197
+ color: var(--fox-dark-color, var(--fox-white, #fff));
4198
+ background-color: var(--fox-dark-background5, #646566);
4199
+ }
4200
+
4201
+ .fox-number-keyboard {
4202
+ width: var(--fox-numberkeyboard-width, 40%);
4203
+ padding: var(--fox-numberkeyboard-padding, 0 0 22px 0);
4204
+ background-color: var(--fox-numberkeyboard-background-color, #f2f3f5);
4205
+ -webkit-user-select: none;
4206
+ user-select: none;
4207
+ }
4208
+
4209
+ .fox-number-keyboard .fox-number-keyboard__header {
4210
+ box-sizing: content-box;
4211
+ height: var(--fox-numberkeyboard-header-height, 34px);
4212
+ padding: var(--fox-numberkeyboard-header-padding, 6px 0 0 0);
4213
+ color: var(--fox-numberkeyboard-header-color, #646566);
4214
+ font-size: var(--fox-numberkeyboard-header-font-size, var(--fox-font-size-medium, 16px));
4215
+ justify-content: center;
4216
+ align-items: center;
4217
+ display: flex;
4218
+ position: relative;
4219
+ }
4220
+
4221
+ .fox-number-keyboard .fox-number-keyboard__header .fox-number-keyboard__title {
4222
+ display: inline-block;
4223
+ }
4224
+
4225
+ .fox-number-keyboard .fox-number-keyboard__header .fox-number-keyboard__close {
4226
+ padding: var(--fox-numberkeyboard-header-close-padding, 0 16px);
4227
+ color: var(--fox-numberkeyboard-header-close-color, #576b95);
4228
+ font-size: var(--fox-numberkeyboard-header-close-font-size, var(--fox-font-size-base, 14px));
4229
+ background-color: var(--fox-numberkeyboard-header-close-background-color, transparent);
4230
+ cursor: pointer;
4231
+ border: none;
4232
+ display: block;
4233
+ position: absolute;
4234
+ right: 0;
4235
+ }
4236
+
4237
+ .fox-number-keyboard .fox-number-keyboard__body {
4238
+ padding: 6px 0 0 6px;
4239
+ display: flex;
4240
+ }
4241
+
4242
+ .fox-number-keyboard .fox-number-keyboard__body .fox-number-keyboard__keys {
4243
+ flex-wrap: wrap;
4244
+ flex: 3;
4245
+ display: flex;
4246
+ }
4247
+
4248
+ .fox-number-keyboard .fox-number-keyboard__body .fox-number-keyboard__sidebar {
4249
+ flex-direction: column;
4250
+ flex: 1;
4251
+ display: flex;
4252
+ }
4253
+
4254
+ .fox-number-keyboard .fox-number-keyboard__body .fox-number-keyboard__sidebar .fox-key__wrapper .fox-key {
4255
+ height: auto;
4256
+ position: absolute;
4257
+ inset: 0 6px 6px 0;
4258
+ }
4259
+
4260
+ .fox-number-keyboard .fox-number-keyboard__body .fox-number-keyboard__sidebar .fox-key__wrapper .fox-key--finish {
4261
+ font-size: var(--fox-numberkeyboard-key-finish-font-size, var(--fox-font-size-medium, 16px));
4262
+ color: var(--fox-numberkeyboard-key-finish-font-size-color, #fff);
4263
+ background-color: var(--fox-numberkeyboard-key-finish-background-color, #1989fa);
4264
+ }
4265
+
4266
+ .fox-number-keyboard .fox-number-keyboard__body .fox-number-keyboard__sidebar .fox-key__wrapper .activeFinsh {
4267
+ background-color: var(--fox-numberkeyboard-key-activeFinsh-background-color, #0570db);
4268
+ }
4269
+
4270
+ .fox-key__wrapper {
4271
+ box-sizing: border-box;
4272
+ flex: 33%;
4273
+ padding: 0 6px 6px 0;
4274
+ position: relative;
4275
+ }
4276
+
4277
+ .fox-key__wrapper.fox-key__wrapper--wider {
4278
+ flex-basis: 66%;
4279
+ }
4280
+
4281
+ .fox-key__wrapper .fox-key {
4282
+ height: var(--fox-numberkeyboard-key-height, 48px);
4283
+ font-size: var(--fox-numberkeyboard-key-font-size, 28px);
4284
+ line-height: var(--fox-numberkeyboard-key-line-height, 1.5);
4285
+ background-color: var(--fox-numberkeyboard-key-background-color, #fff);
4286
+ color: var(--fox-numberkeyboard-key-font-size-color, #333);
4287
+ border-radius: var(--fox-numberkeyboard-key-border-radius, 8px);
4288
+ cursor: pointer;
4289
+ justify-content: center;
4290
+ align-items: center;
4291
+ display: flex;
4292
+ }
4293
+
4294
+ .fox-key__wrapper .fox-key--active {
4295
+ background-color: var(--fox-numberkeyboard-key-active-background-color, #ebedf0);
4296
+ }
4297
+
4298
+ .fox-key__wrapper img {
4299
+ width: 30px;
4300
+ height: 24px;
4301
+ }
4302
+
4303
+ .fox-number-keyboard-overlay {
4304
+ background-color: #0000 !important;
4305
+ }
4306
+
4307
+ .fox-number-keyboard-popup {
4308
+ background: none;
4309
+ flex-flow: row;
4310
+ justify-content: center;
4311
+ display: flex;
4312
+ }
4313
+
4314
+ .fox-theme-dark .fox-short-password-title {
4315
+ color: var(--fox-dark-color, var(--fox-white, #fff));
4316
+ }
4317
+
4318
+ .fox-theme-dark .fox-short-password-wrapper .fox-short-password__list {
4319
+ background: var(--fox-dark-background3, #141414);
4320
+ border: none;
4321
+ }
4322
+
4323
+ .fox-theme-dark .fox-short-password-wrapper .fox-short-password__list .fox-short-password__item {
4324
+ position: relative;
4325
+ }
4326
+
4327
+ .fox-theme-dark .fox-short-password-wrapper .fox-short-password__list .fox-short-password__item .fox-short-password__item-icon {
4328
+ background: var(--fox-dark-color, var(--fox-white, #fff));
4329
+ }
4330
+
4331
+ .fox-theme-dark .fox-short-password-wrapper .fox-short-password__list .fox-short-password__item:after {
4332
+ box-sizing: border-box;
4333
+ content: " ";
4334
+ pointer-events: none;
4335
+ outline: 1px solid #3a3a3c;
4336
+ position: absolute;
4337
+ inset: -50%;
4338
+ transform: scale(.5);
4339
+ }
4340
+
4341
+ .fox-short-password-title {
4342
+ line-height: 1;
4343
+ font-size: var(--fox-font-size-medium, 16px);
4344
+ color: var(--fox-title-color, #1a1a1a);
4345
+ }
4346
+
4347
+ .fox-short-password-subtitle {
4348
+ line-height: 1;
4349
+ font-size: var(--fox-font-size-small, 12px);
4350
+ color: var(--fox-text-color, var(--el-text-color-regular));
4351
+ margin-top: 12px;
4352
+ display: block;
4353
+ }
4354
+
4355
+ .fox-short-password-wrapper {
4356
+ text-align: center;
4357
+ padding: 12px 0 10px;
4358
+ position: relative;
4359
+ }
4360
+
4361
+ .fox-short-password__list {
4362
+ background: var(--fox-shortpassword-background-color, #f5f5f5);
4363
+ border: 1px solid var(--fox-shortpassword-border-color, #ddd);
4364
+ z-index: 10;
4365
+ border-radius: 4px;
4366
+ width: 100%;
4367
+ height: 41px;
4368
+ margin: 0 auto;
4369
+ display: flex;
4370
+ }
4371
+
4372
+ .fox-short-password__item {
4373
+ flex: 1;
4374
+ justify-content: center;
4375
+ align-items: center;
4376
+ display: flex;
4377
+ }
4378
+
4379
+ .fox-short-password__item-icon {
4380
+ background: #000;
4381
+ border-radius: 50%;
4382
+ width: 6px;
4383
+ height: 6px;
4384
+ display: inline-block;
4385
+ }
4386
+
4387
+ .fox-short-password__message {
4388
+ justify-content: space-between;
4389
+ width: 247px;
4390
+ margin-top: 9px;
4391
+ display: flex;
4392
+ }
4393
+
4394
+ .fox-short-password__message .fox-short-password--error {
4395
+ line-height: 1;
4396
+ font-size: var(--fox-font-size-extra-small, 10px);
4397
+ color: var(--fox-shortpassword-error, var(--fox-primary-color, var(--el-color-primary)));
4398
+ }
4399
+
4400
+ .fox-short-password__message .fox-short-password--forget {
4401
+ line-height: 1;
4402
+ font-size: var(--fox-font-size-small, 12px);
4403
+ color: var(--fox-shortpassword-forget, gray);
4404
+ display: flex;
4405
+ }
4406
+
4407
+ .fox-signature__inner {
4408
+ border: 1px solid #dadada;
4409
+ justify-content: center;
4410
+ align-items: center;
4411
+ height: 8rem;
4412
+ margin-bottom: 1rem;
4413
+ display: flex;
4414
+ }
4415
+
4416
+ .fox-signature__toolbar {
4417
+ flex-flow: row;
4418
+ justify-content: center;
4419
+ align-items: center;
4420
+ gap: 15px;
4421
+ display: flex;
4422
+ }
4423
+
4424
+ .fox-signature .spcanvas_WEAPP {
4425
+ width: 100%;
4426
+ height: 100%;
4427
+ }
4428
+
4429
+ .fox-signature .spcanvas_WEAPP .spcanvas {
4430
+ width: 100%;
4431
+ }
4191
4432
  /*$vite$:1*/
package/dist/style.js CHANGED
@@ -1,3 +1,3 @@
1
1
  /*!
2
- * @fox-js/foxui-desktop v4.0.0 2026-05-09T11:52:16.646Z
2
+ * @fox-js/foxui-desktop v4.0.0 2026-05-11T11:26:48.279Z
3
3
  */
@@ -600,84 +600,92 @@ export { _default_43 as Foxpicker }
600
600
  export { _default_43 as picker }
601
601
 
602
602
  declare const _default_44: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
603
- export { _default_44 as Foxdatepicker }
604
- export { _default_44 as datepicker }
603
+ export { _default_44 as Foxcalendarpicker }
604
+ export { _default_44 as calendarpicker }
605
605
 
606
606
  declare const _default_45: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
607
- export { _default_45 as Foxcalendarpicker }
608
- export { _default_45 as calendarpicker }
607
+ export { _default_45 as Foxcascaderpicker }
608
+ export { _default_45 as cascaderpicker }
609
609
 
610
610
  declare const _default_46: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
611
- export { _default_46 as Foxcascaderpicker }
612
- export { _default_46 as cascaderpicker }
611
+ export { _default_46 as DialogItem }
612
+ export { _default_46 as FoxDialogItem }
613
613
 
614
614
  declare const _default_47: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
615
- export { _default_47 as DialogItem }
616
- export { _default_47 as FoxDialogItem }
615
+ export { _default_47 as FoxOverLay }
616
+ export { _default_47 as OverLay }
617
617
 
618
618
  declare const _default_48: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
619
- export { _default_48 as FoxOverLay }
620
- export { _default_48 as OverLay }
619
+ export { _default_48 as FoxPopup }
620
+ export { _default_48 as Popup }
621
621
 
622
622
  declare const _default_49: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
623
- export { _default_49 as FoxPopup }
624
- export { _default_49 as Popup }
623
+ export { _default_49 as FoxSearchBar }
624
+ export { _default_49 as SearchBar }
625
625
 
626
626
  declare const _default_5: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
627
627
  export { _default_5 as Content }
628
628
  export { _default_5 as FoxContent }
629
629
 
630
630
  declare const _default_50: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
631
- export { _default_50 as FoxSearchBar }
632
- export { _default_50 as SearchBar }
631
+ export { _default_50 as FoxInfiniteLoading }
632
+ export { _default_50 as InfiniteLoading }
633
633
 
634
634
  declare const _default_51: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
635
- export { _default_51 as FoxInfiniteLoading }
636
- export { _default_51 as InfiniteLoading }
635
+ export { _default_51 as FoxPullRefresh }
636
+ export { _default_51 as PullRefresh }
637
637
 
638
638
  declare const _default_52: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
639
- export { _default_52 as FoxPullRefresh }
640
- export { _default_52 as PullRefresh }
639
+ export { _default_52 as FoxMoreButton }
640
+ export { _default_52 as MoreButton }
641
641
 
642
642
  declare const _default_53: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
643
- export { _default_53 as FoxMoreButton }
644
- export { _default_53 as MoreButton }
643
+ export { _default_53 as FloatingButton }
644
+ export { _default_53 as FoxFloatingButton }
645
645
 
646
646
  declare const _default_54: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
647
- export { _default_54 as FloatingButton }
648
- export { _default_54 as FoxFloatingButton }
647
+ export { _default_54 as FoxMapping }
648
+ export { _default_54 as Mapping }
649
649
 
650
650
  declare const _default_55: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
651
- export { _default_55 as FoxMapping }
652
- export { _default_55 as Mapping }
651
+ export { _default_55 as FoxPrice }
652
+ export { _default_55 as Price }
653
653
 
654
654
  declare const _default_56: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
655
- export { _default_56 as FoxPrice }
656
- export { _default_56 as Price }
655
+ export { _default_56 as FoxIndicator }
656
+ export { _default_56 as Indicator }
657
657
 
658
658
  declare const _default_57: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
659
- export { _default_57 as FoxIndicator }
660
- export { _default_57 as Indicator }
659
+ export { _default_57 as FoxText }
660
+ export { _default_57 as Text }
661
661
 
662
662
  declare const _default_58: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
663
- export { _default_58 as FoxText }
664
- export { _default_58 as Text }
663
+ export { _default_58 as FoxTour }
664
+ export { _default_58 as Tour }
665
665
 
666
666
  declare const _default_59: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
667
- export { _default_59 as FoxTour }
668
- export { _default_59 as Tour }
667
+ export { _default_59 as FoxNumberKeyboard }
668
+ export { _default_59 as NumberKeyboard }
669
669
 
670
670
  declare const _default_6: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
671
671
  export { _default_6 as FoxGroup }
672
672
  export { _default_6 as Group }
673
673
 
674
674
  declare const _default_60: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
675
- export { _default_60 as DomainProvider }
676
- export { _default_60 as FoxDomainProvider }
675
+ export { _default_60 as FoxShortPassword }
676
+ export { _default_60 as ShortPassword }
677
677
 
678
678
  declare const _default_61: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
679
- export { _default_61 as FoxRollingProvider }
680
- export { _default_61 as RollingProvider }
679
+ export { _default_61 as FoxSignature }
680
+ export { _default_61 as Signature }
681
+
682
+ declare const _default_62: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
683
+ export { _default_62 as DomainProvider }
684
+ export { _default_62 as FoxDomainProvider }
685
+
686
+ declare const _default_63: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
687
+ export { _default_63 as FoxRollingProvider }
688
+ export { _default_63 as RollingProvider }
681
689
 
682
690
  declare const _default_7: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
683
691
  export { _default_7 as FoxItem }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fox-js/foxui-pad",
3
3
  "type": "module",
4
- "version": "4.1.1-25",
4
+ "version": "4.1.1-26",
5
5
  "description": "FoxUI PAD端组件库",
6
6
  "author": "jiangcheng",
7
7
  "main": "./dist/index.umd.js",