@homebound/beam 2.181.2 → 2.183.0
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/Css.d.ts +159 -11
- package/dist/Css.js +38 -11
- package/dist/components/Accordion.js +18 -12
- package/dist/components/AutoSaveIndicator.js +1 -1
- package/dist/components/Avatar.js +2 -2
- package/dist/components/BeamContext.d.ts +0 -4
- package/dist/components/BeamContext.js +0 -6
- package/dist/components/Filters/FilterModal.js +1 -1
- package/dist/components/Filters/Filters.js +1 -1
- package/dist/components/Label.js +1 -1
- package/dist/components/Modal/Modal.js +1 -1
- package/dist/components/NavLink.js +2 -2
- package/dist/components/SuperDrawer/ConfirmCloseModal.js +1 -1
- package/dist/components/SuperDrawer/SuperDrawer.js +2 -2
- package/dist/components/Table/styles.js +7 -7
- package/dist/components/Tabs.d.ts +2 -2
- package/dist/components/Tabs.js +4 -20
- package/dist/components/Tag.js +1 -1
- package/dist/components/index.d.ts +3 -3
- package/dist/components/index.js +3 -4
- package/dist/forms/FormHeading.js +1 -1
- package/dist/forms/StaticField.js +1 -1
- package/dist/inputs/CheckboxBase.js +1 -1
- package/dist/inputs/RadioGroupField.js +1 -1
- package/dist/inputs/Switch.js +1 -1
- package/dist/inputs/TextFieldBase.js +1 -1
- package/dist/inputs/ToggleButton.js +1 -1
- package/dist/inputs/internal/SelectFieldInput.js +1 -1
- package/package.json +1 -1
package/dist/Css.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { Properties as Properties1 } from "csstype";
|
|
|
2
2
|
/** Given a type X, and the user's proposed type T, only allow keys in X and nothing else. */
|
|
3
3
|
export declare type Only<X, T> = X & Record<Exclude<keyof T, keyof X>, never>;
|
|
4
4
|
export declare type Properties = Properties1;
|
|
5
|
-
export declare type Typography = "tiny" | "
|
|
5
|
+
export declare type Typography = "tiny" | "tinyMd" | "tinySb" | "tinyBd" | "xs" | "xsMd" | "xsSb" | "xsBd" | "sm" | "smMd" | "smSb" | "smBd" | "base" | "baseMd" | "baseSb" | "baseBd" | "lg" | "lgMd" | "lgSb" | "lgBd" | "xl" | "xlMd" | "xlSb" | "xlBd" | "xl2" | "xl2Md" | "xl2Sb" | "xl2Bd" | "xl3" | "xl3Md" | "xl3Sb" | "xl3Bd" | "xl4" | "xl4Md" | "xl4Sb" | "xl4Bd" | "xl5" | "xl5Md" | "xl5Sb" | "xl5Bd";
|
|
6
6
|
declare type Opts<T> = {
|
|
7
7
|
rules: T;
|
|
8
8
|
enabled: boolean;
|
|
@@ -2389,7 +2389,21 @@ declare class CssBuilder<T extends Properties1> {
|
|
|
2389
2389
|
} & {
|
|
2390
2390
|
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2391
2391
|
}>;
|
|
2392
|
-
get
|
|
2392
|
+
get tinyMd(): CssBuilder<T & {
|
|
2393
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2394
|
+
} & {
|
|
2395
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2396
|
+
} & {
|
|
2397
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2398
|
+
}>;
|
|
2399
|
+
get tinySb(): CssBuilder<T & {
|
|
2400
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2401
|
+
} & {
|
|
2402
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2403
|
+
} & {
|
|
2404
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2405
|
+
}>;
|
|
2406
|
+
get tinyBd(): CssBuilder<T & {
|
|
2393
2407
|
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2394
2408
|
} & {
|
|
2395
2409
|
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
@@ -2403,7 +2417,21 @@ declare class CssBuilder<T extends Properties1> {
|
|
|
2403
2417
|
} & {
|
|
2404
2418
|
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2405
2419
|
}>;
|
|
2406
|
-
get
|
|
2420
|
+
get xsMd(): CssBuilder<T & {
|
|
2421
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2422
|
+
} & {
|
|
2423
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2424
|
+
} & {
|
|
2425
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2426
|
+
}>;
|
|
2427
|
+
get xsSb(): CssBuilder<T & {
|
|
2428
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2429
|
+
} & {
|
|
2430
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2431
|
+
} & {
|
|
2432
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2433
|
+
}>;
|
|
2434
|
+
get xsBd(): CssBuilder<T & {
|
|
2407
2435
|
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2408
2436
|
} & {
|
|
2409
2437
|
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
@@ -2417,7 +2445,21 @@ declare class CssBuilder<T extends Properties1> {
|
|
|
2417
2445
|
} & {
|
|
2418
2446
|
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2419
2447
|
}>;
|
|
2420
|
-
get
|
|
2448
|
+
get smMd(): CssBuilder<T & {
|
|
2449
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2450
|
+
} & {
|
|
2451
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2452
|
+
} & {
|
|
2453
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2454
|
+
}>;
|
|
2455
|
+
get smSb(): CssBuilder<T & {
|
|
2456
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2457
|
+
} & {
|
|
2458
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2459
|
+
} & {
|
|
2460
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2461
|
+
}>;
|
|
2462
|
+
get smBd(): CssBuilder<T & {
|
|
2421
2463
|
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2422
2464
|
} & {
|
|
2423
2465
|
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
@@ -2431,7 +2473,21 @@ declare class CssBuilder<T extends Properties1> {
|
|
|
2431
2473
|
} & {
|
|
2432
2474
|
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2433
2475
|
}>;
|
|
2434
|
-
get
|
|
2476
|
+
get baseMd(): CssBuilder<T & {
|
|
2477
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2478
|
+
} & {
|
|
2479
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2480
|
+
} & {
|
|
2481
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2482
|
+
}>;
|
|
2483
|
+
get baseSb(): CssBuilder<T & {
|
|
2484
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2485
|
+
} & {
|
|
2486
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2487
|
+
} & {
|
|
2488
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2489
|
+
}>;
|
|
2490
|
+
get baseBd(): CssBuilder<T & {
|
|
2435
2491
|
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2436
2492
|
} & {
|
|
2437
2493
|
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
@@ -2445,7 +2501,21 @@ declare class CssBuilder<T extends Properties1> {
|
|
|
2445
2501
|
} & {
|
|
2446
2502
|
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2447
2503
|
}>;
|
|
2448
|
-
get
|
|
2504
|
+
get lgMd(): CssBuilder<T & {
|
|
2505
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2506
|
+
} & {
|
|
2507
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2508
|
+
} & {
|
|
2509
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2510
|
+
}>;
|
|
2511
|
+
get lgSb(): CssBuilder<T & {
|
|
2512
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2513
|
+
} & {
|
|
2514
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2515
|
+
} & {
|
|
2516
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2517
|
+
}>;
|
|
2518
|
+
get lgBd(): CssBuilder<T & {
|
|
2449
2519
|
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2450
2520
|
} & {
|
|
2451
2521
|
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
@@ -2459,7 +2529,21 @@ declare class CssBuilder<T extends Properties1> {
|
|
|
2459
2529
|
} & {
|
|
2460
2530
|
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2461
2531
|
}>;
|
|
2462
|
-
get
|
|
2532
|
+
get xlMd(): CssBuilder<T & {
|
|
2533
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2534
|
+
} & {
|
|
2535
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2536
|
+
} & {
|
|
2537
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2538
|
+
}>;
|
|
2539
|
+
get xlSb(): CssBuilder<T & {
|
|
2540
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2541
|
+
} & {
|
|
2542
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2543
|
+
} & {
|
|
2544
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2545
|
+
}>;
|
|
2546
|
+
get xlBd(): CssBuilder<T & {
|
|
2463
2547
|
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2464
2548
|
} & {
|
|
2465
2549
|
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
@@ -2473,7 +2557,21 @@ declare class CssBuilder<T extends Properties1> {
|
|
|
2473
2557
|
} & {
|
|
2474
2558
|
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2475
2559
|
}>;
|
|
2476
|
-
get
|
|
2560
|
+
get xl2Md(): CssBuilder<T & {
|
|
2561
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2562
|
+
} & {
|
|
2563
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2564
|
+
} & {
|
|
2565
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2566
|
+
}>;
|
|
2567
|
+
get xl2Sb(): CssBuilder<T & {
|
|
2568
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2569
|
+
} & {
|
|
2570
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2571
|
+
} & {
|
|
2572
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2573
|
+
}>;
|
|
2574
|
+
get xl2Bd(): CssBuilder<T & {
|
|
2477
2575
|
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2478
2576
|
} & {
|
|
2479
2577
|
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
@@ -2487,7 +2585,21 @@ declare class CssBuilder<T extends Properties1> {
|
|
|
2487
2585
|
} & {
|
|
2488
2586
|
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2489
2587
|
}>;
|
|
2490
|
-
get
|
|
2588
|
+
get xl3Md(): CssBuilder<T & {
|
|
2589
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2590
|
+
} & {
|
|
2591
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2592
|
+
} & {
|
|
2593
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2594
|
+
}>;
|
|
2595
|
+
get xl3Sb(): CssBuilder<T & {
|
|
2596
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2597
|
+
} & {
|
|
2598
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2599
|
+
} & {
|
|
2600
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2601
|
+
}>;
|
|
2602
|
+
get xl3Bd(): CssBuilder<T & {
|
|
2491
2603
|
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2492
2604
|
} & {
|
|
2493
2605
|
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
@@ -2501,7 +2613,21 @@ declare class CssBuilder<T extends Properties1> {
|
|
|
2501
2613
|
} & {
|
|
2502
2614
|
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2503
2615
|
}>;
|
|
2504
|
-
get
|
|
2616
|
+
get xl4Md(): CssBuilder<T & {
|
|
2617
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2618
|
+
} & {
|
|
2619
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2620
|
+
} & {
|
|
2621
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2622
|
+
}>;
|
|
2623
|
+
get xl4Sb(): CssBuilder<T & {
|
|
2624
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2625
|
+
} & {
|
|
2626
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2627
|
+
} & {
|
|
2628
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2629
|
+
}>;
|
|
2630
|
+
get xl4Bd(): CssBuilder<T & {
|
|
2505
2631
|
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2506
2632
|
} & {
|
|
2507
2633
|
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
@@ -2515,7 +2641,21 @@ declare class CssBuilder<T extends Properties1> {
|
|
|
2515
2641
|
} & {
|
|
2516
2642
|
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2517
2643
|
}>;
|
|
2518
|
-
get
|
|
2644
|
+
get xl5Md(): CssBuilder<T & {
|
|
2645
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2646
|
+
} & {
|
|
2647
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2648
|
+
} & {
|
|
2649
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2650
|
+
}>;
|
|
2651
|
+
get xl5Sb(): CssBuilder<T & {
|
|
2652
|
+
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2653
|
+
} & {
|
|
2654
|
+
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
2655
|
+
} & {
|
|
2656
|
+
lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
|
|
2657
|
+
}>;
|
|
2658
|
+
get xl5Bd(): CssBuilder<T & {
|
|
2519
2659
|
fontWeight: import("csstype").Property.FontWeight | undefined;
|
|
2520
2660
|
} & {
|
|
2521
2661
|
fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
|
|
@@ -2943,9 +3083,17 @@ export declare type Xss<P extends keyof Properties> = Pick<Properties, P>;
|
|
|
2943
3083
|
export declare const Css: CssBuilder<{}>;
|
|
2944
3084
|
export declare type Margin = "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft";
|
|
2945
3085
|
export declare type Padding = "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft";
|
|
3086
|
+
export declare type Font = "fontSize" | "fontWeight" | "lineHeight";
|
|
2946
3087
|
declare type Brand<K, T> = K & {
|
|
2947
3088
|
__brand: T;
|
|
2948
3089
|
};
|
|
2949
3090
|
declare type Breakpoint = Brand<string, "Breakpoint">;
|
|
2950
3091
|
export declare const print: Breakpoint;
|
|
3092
|
+
export declare const sm: Breakpoint;
|
|
3093
|
+
export declare const md: Breakpoint;
|
|
3094
|
+
export declare const smOrMd: Breakpoint;
|
|
3095
|
+
export declare const mdAndUp: Breakpoint;
|
|
3096
|
+
export declare const mdAndDown: Breakpoint;
|
|
3097
|
+
export declare const lg: Breakpoint;
|
|
3098
|
+
export declare const mdOrLg: Breakpoint;
|
|
2951
3099
|
export {};
|
package/dist/Css.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.print = exports.Css = exports.Palette = exports.px = exports.increment = exports.maybeInc = void 0;
|
|
3
|
+
exports.mdOrLg = exports.lg = exports.mdAndDown = exports.mdAndUp = exports.smOrMd = exports.md = exports.sm = exports.print = exports.Css = exports.Palette = exports.px = exports.increment = exports.maybeInc = void 0;
|
|
4
4
|
// prettier-ignore
|
|
5
5
|
class CssBuilder {
|
|
6
6
|
constructor(opts) {
|
|
@@ -735,25 +735,45 @@ class CssBuilder {
|
|
|
735
735
|
tt(value) { return this.add("textTransform", value); }
|
|
736
736
|
// typeScale
|
|
737
737
|
get tiny() { return this.add("fontWeight", 400).add("fontSize", "10px").add("lineHeight", "14px"); }
|
|
738
|
-
get
|
|
738
|
+
get tinyMd() { return this.add("fontWeight", 500).add("fontSize", "10px").add("lineHeight", "14px"); }
|
|
739
|
+
get tinySb() { return this.add("fontWeight", 600).add("fontSize", "10px").add("lineHeight", "14px"); }
|
|
740
|
+
get tinyBd() { return this.add("fontWeight", 700).add("fontSize", "10px").add("lineHeight", "14px"); }
|
|
739
741
|
get xs() { return this.add("fontWeight", 400).add("fontSize", "12px").add("lineHeight", "16px"); }
|
|
740
|
-
get
|
|
742
|
+
get xsMd() { return this.add("fontWeight", 500).add("fontSize", "12px").add("lineHeight", "16px"); }
|
|
743
|
+
get xsSb() { return this.add("fontWeight", 600).add("fontSize", "12px").add("lineHeight", "16px"); }
|
|
744
|
+
get xsBd() { return this.add("fontWeight", 700).add("fontSize", "12px").add("lineHeight", "16px"); }
|
|
741
745
|
get sm() { return this.add("fontWeight", 400).add("fontSize", "14px").add("lineHeight", "20px"); }
|
|
742
|
-
get
|
|
746
|
+
get smMd() { return this.add("fontWeight", 500).add("fontSize", "14px").add("lineHeight", "20px"); }
|
|
747
|
+
get smSb() { return this.add("fontWeight", 600).add("fontSize", "14px").add("lineHeight", "20px"); }
|
|
748
|
+
get smBd() { return this.add("fontWeight", 700).add("fontSize", "14px").add("lineHeight", "20px"); }
|
|
743
749
|
get base() { return this.add("fontWeight", 400).add("fontSize", "16px").add("lineHeight", "24px"); }
|
|
744
|
-
get
|
|
750
|
+
get baseMd() { return this.add("fontWeight", 500).add("fontSize", "16px").add("lineHeight", "24px"); }
|
|
751
|
+
get baseSb() { return this.add("fontWeight", 600).add("fontSize", "16px").add("lineHeight", "24px"); }
|
|
752
|
+
get baseBd() { return this.add("fontWeight", 700).add("fontSize", "16px").add("lineHeight", "24px"); }
|
|
745
753
|
get lg() { return this.add("fontWeight", 400).add("fontSize", "18px").add("lineHeight", "28px"); }
|
|
746
|
-
get
|
|
754
|
+
get lgMd() { return this.add("fontWeight", 500).add("fontSize", "18px").add("lineHeight", "28px"); }
|
|
755
|
+
get lgSb() { return this.add("fontWeight", 600).add("fontSize", "18px").add("lineHeight", "28px"); }
|
|
756
|
+
get lgBd() { return this.add("fontWeight", 700).add("fontSize", "18px").add("lineHeight", "28px"); }
|
|
747
757
|
get xl() { return this.add("fontWeight", 400).add("fontSize", "20px").add("lineHeight", "28px"); }
|
|
748
|
-
get
|
|
758
|
+
get xlMd() { return this.add("fontWeight", 500).add("fontSize", "20px").add("lineHeight", "28px"); }
|
|
759
|
+
get xlSb() { return this.add("fontWeight", 600).add("fontSize", "20px").add("lineHeight", "28px"); }
|
|
760
|
+
get xlBd() { return this.add("fontWeight", 700).add("fontSize", "20px").add("lineHeight", "28px"); }
|
|
749
761
|
get xl2() { return this.add("fontWeight", 400).add("fontSize", "24px").add("lineHeight", "32px"); }
|
|
750
|
-
get
|
|
762
|
+
get xl2Md() { return this.add("fontWeight", 500).add("fontSize", "24px").add("lineHeight", "32px"); }
|
|
763
|
+
get xl2Sb() { return this.add("fontWeight", 600).add("fontSize", "24px").add("lineHeight", "32px"); }
|
|
764
|
+
get xl2Bd() { return this.add("fontWeight", 700).add("fontSize", "24px").add("lineHeight", "32px"); }
|
|
751
765
|
get xl3() { return this.add("fontWeight", 400).add("fontSize", "30px").add("lineHeight", "36px"); }
|
|
752
|
-
get
|
|
766
|
+
get xl3Md() { return this.add("fontWeight", 500).add("fontSize", "30px").add("lineHeight", "36px"); }
|
|
767
|
+
get xl3Sb() { return this.add("fontWeight", 600).add("fontSize", "30px").add("lineHeight", "36px"); }
|
|
768
|
+
get xl3Bd() { return this.add("fontWeight", 700).add("fontSize", "30px").add("lineHeight", "36px"); }
|
|
753
769
|
get xl4() { return this.add("fontWeight", 400).add("fontSize", "36px").add("lineHeight", "40px"); }
|
|
754
|
-
get
|
|
770
|
+
get xl4Md() { return this.add("fontWeight", 500).add("fontSize", "36px").add("lineHeight", "40px"); }
|
|
771
|
+
get xl4Sb() { return this.add("fontWeight", 600).add("fontSize", "36px").add("lineHeight", "40px"); }
|
|
772
|
+
get xl4Bd() { return this.add("fontWeight", 700).add("fontSize", "36px").add("lineHeight", "40px"); }
|
|
755
773
|
get xl5() { return this.add("fontWeight", 400).add("fontSize", "48px").add("lineHeight", "48px"); }
|
|
756
|
-
get
|
|
774
|
+
get xl5Md() { return this.add("fontWeight", 500).add("fontSize", "48px").add("lineHeight", "48px"); }
|
|
775
|
+
get xl5Sb() { return this.add("fontWeight", 600).add("fontSize", "48px").add("lineHeight", "48px"); }
|
|
776
|
+
get xl5Bd() { return this.add("fontWeight", 700).add("fontSize", "48px").add("lineHeight", "48px"); }
|
|
757
777
|
// typography
|
|
758
778
|
get measure() { return this.add("maxWidth", "30em"); }
|
|
759
779
|
get measureWide() { return this.add("maxWidth", "34em"); }
|
|
@@ -995,3 +1015,10 @@ var Palette;
|
|
|
995
1015
|
/** An entry point for Css expressions. CssBuilder is immutable so this is safe to share. */
|
|
996
1016
|
exports.Css = new CssBuilder({ rules: {}, enabled: true, important: false, selector: undefined });
|
|
997
1017
|
exports.print = "@media print";
|
|
1018
|
+
exports.sm = "@media screen and (max-width:599px)";
|
|
1019
|
+
exports.md = "@media screen and (min-width:600px) and (max-width:959px)";
|
|
1020
|
+
exports.smOrMd = "@media screen and (max-width:959px)";
|
|
1021
|
+
exports.mdAndUp = "@media screen and (min-width:600px)";
|
|
1022
|
+
exports.mdAndDown = "@media screen and (max-width:959px)";
|
|
1023
|
+
exports.lg = "@media screen and (min-width:960px)";
|
|
1024
|
+
exports.mdOrLg = "@media screen and (min-width:600px)";
|
|
@@ -5,21 +5,25 @@ const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
|
5
5
|
const utils_1 = require("@react-aria/utils");
|
|
6
6
|
const react_1 = require("react");
|
|
7
7
|
const react_aria_1 = require("react-aria");
|
|
8
|
-
const
|
|
8
|
+
const Icon_1 = require("./Icon");
|
|
9
|
+
const Css_1 = require("../Css");
|
|
10
|
+
const utils_2 = require("../utils");
|
|
9
11
|
function Accordion(props) {
|
|
10
12
|
const { title, children, size, disabled = false, defaultExpanded = false, topBorder = true, bottomBorder = false, index, setExpandedIndex, } = props;
|
|
11
|
-
const testIds = (0,
|
|
13
|
+
const testIds = (0, utils_2.useTestIds)(props, "accordion");
|
|
12
14
|
const id = (0, utils_1.useId)();
|
|
13
15
|
const [expanded, setExpanded] = (0, react_1.useState)(defaultExpanded);
|
|
14
16
|
const { isFocusVisible, focusProps } = (0, react_aria_1.useFocusRing)();
|
|
15
|
-
(0, react_1.useEffect)(() => {
|
|
17
|
+
(0, react_1.useEffect)(() => {
|
|
18
|
+
setExpanded(defaultExpanded);
|
|
19
|
+
}, [defaultExpanded]);
|
|
16
20
|
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({}, testIds.container, { css: {
|
|
17
|
-
...
|
|
18
|
-
...(size ?
|
|
21
|
+
...Css_1.Css.bGray400.if(topBorder).bt.if(bottomBorder).bb.$,
|
|
22
|
+
...(size ? Css_1.Css.wPx(accordionSizes[size]).$ : {}),
|
|
19
23
|
} }, { children: [(0, jsx_runtime_1.jsxs)("button", Object.assign({}, testIds.title, focusProps, { "aria-controls": id, "aria-expanded": expanded, disabled: disabled, css: {
|
|
20
|
-
...
|
|
21
|
-
...(disabled &&
|
|
22
|
-
...(isFocusVisible &&
|
|
24
|
+
...Css_1.Css.df.jcsb.gap2.aic.w100.p2.baseMd.outline("none").addIn(":hover", Css_1.Css.bgGray100.$).$,
|
|
25
|
+
...(disabled && Css_1.Css.gray500.$),
|
|
26
|
+
...(isFocusVisible && Css_1.Css.boxShadow(`inset 0 0 0 2px ${Css_1.Palette.LightBlue700}`).$),
|
|
23
27
|
}, onClick: () => {
|
|
24
28
|
setExpanded(!expanded);
|
|
25
29
|
if (setExpandedIndex)
|
|
@@ -27,11 +31,13 @@ function Accordion(props) {
|
|
|
27
31
|
} }, { children: [(0, jsx_runtime_1.jsx)("span", { children: title }, void 0), (0, jsx_runtime_1.jsx)("span", Object.assign({ css: {
|
|
28
32
|
transition: "transform 250ms linear",
|
|
29
33
|
transform: expanded ? "rotate(180deg)" : "rotate(0deg)",
|
|
30
|
-
} }, { children: (0, jsx_runtime_1.jsx)(
|
|
34
|
+
} }, { children: (0, jsx_runtime_1.jsx)(Icon_1.Icon, { icon: "chevronDown" }, void 0) }), void 0)] }), void 0), (0, jsx_runtime_1.jsx)("div", Object.assign({}, testIds.details, { id: id, "aria-hidden": !expanded, css: {
|
|
31
35
|
// Use max-height for grow/shrink animation (remove close animation for AccordionList to avoid delays)
|
|
32
|
-
...
|
|
33
|
-
|
|
34
|
-
|
|
36
|
+
...Css_1.Css.overflowHidden
|
|
37
|
+
.maxhPx(1000)
|
|
38
|
+
.add("transition", `max-height ${expanded || !index ? "250ms" : "0"} ease-in-out`).$,
|
|
39
|
+
...(!expanded || disabled ? Css_1.Css.maxh0.$ : {}),
|
|
40
|
+
} }, { children: (0, jsx_runtime_1.jsx)("div", Object.assign({ css: Css_1.Css.px2.pb2.pt1.$ }, { children: children }), void 0) }), void 0)] }), void 0));
|
|
35
41
|
}
|
|
36
42
|
exports.Accordion = Accordion;
|
|
37
43
|
const accordionSizes = {
|
|
@@ -40,5 +40,5 @@ function AutoSaveIndicator({ hideOnIdle, doNotReset }) {
|
|
|
40
40
|
}
|
|
41
41
|
exports.AutoSaveIndicator = AutoSaveIndicator;
|
|
42
42
|
function Indicator({ text, icon, color }) {
|
|
43
|
-
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ "data-testid": "autoSave", css: Css_1.Css.df.gap1.aic.gray700.
|
|
43
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ "data-testid": "autoSave", css: Css_1.Css.df.gap1.aic.gray700.smMd.$ }, { children: [(0, jsx_runtime_1.jsx)(Icon_1.Icon, { icon: icon, color: color }, void 0), text] }), void 0));
|
|
44
44
|
}
|
|
@@ -19,10 +19,6 @@ export interface BeamContextState {
|
|
|
19
19
|
drawerCanCloseChecks: MutableRefObject<CanCloseCheck[]>;
|
|
20
20
|
/** Checks when closing SuperDrawer Details, a double array to keep per-detail lists. */
|
|
21
21
|
drawerCanCloseDetailsChecks: MutableRefObject<CanCloseCheck[][]>;
|
|
22
|
-
/** The ref for defining the portal element's location for Tab actions */
|
|
23
|
-
tabActionsRef: MutableRefObject<HTMLDivElement | null>;
|
|
24
|
-
/** The div for Tab actions to portal into */
|
|
25
|
-
tabActionsDiv: HTMLDivElement;
|
|
26
22
|
}
|
|
27
23
|
/** This is only exported internally, for useModal and useSuperDrawer, it's not a public API. */
|
|
28
24
|
export declare const BeamContext: import("react").Context<BeamContextState>;
|
|
@@ -20,8 +20,6 @@ exports.BeamContext = (0, react_1.createContext)({
|
|
|
20
20
|
drawerContentStack: new index_1.EmptyRef(),
|
|
21
21
|
drawerCanCloseChecks: new index_1.EmptyRef(),
|
|
22
22
|
drawerCanCloseDetailsChecks: new index_1.EmptyRef(),
|
|
23
|
-
tabActionsRef: new index_1.EmptyRef(),
|
|
24
|
-
tabActionsDiv: undefined,
|
|
25
23
|
});
|
|
26
24
|
function BeamProvider({ children, ...presentationProps }) {
|
|
27
25
|
// We want the identity of these to be stable, b/c they end up being used as dependencies
|
|
@@ -42,8 +40,6 @@ function BeamProvider({ children, ...presentationProps }) {
|
|
|
42
40
|
const drawerContentStackRef = (0, react_1.useRef)([]);
|
|
43
41
|
const drawerCanCloseChecks = (0, react_1.useRef)([]);
|
|
44
42
|
const drawerCanCloseDetailsChecks = (0, react_1.useRef)([]);
|
|
45
|
-
const tabActionsRef = (0, react_1.useRef)(null);
|
|
46
|
-
const tabActionsDiv = (0, react_1.useMemo)(() => document.createElement("div"), []);
|
|
47
43
|
// We essentially expose the refs, but with our own getters/setters so that we can
|
|
48
44
|
// have the setters call `tick` to re-render this Provider
|
|
49
45
|
const context = (0, react_1.useMemo)(() => {
|
|
@@ -58,8 +54,6 @@ function BeamProvider({ children, ...presentationProps }) {
|
|
|
58
54
|
modalFooterDiv,
|
|
59
55
|
drawerCanCloseChecks,
|
|
60
56
|
drawerCanCloseDetailsChecks,
|
|
61
|
-
tabActionsRef,
|
|
62
|
-
tabActionsDiv,
|
|
63
57
|
};
|
|
64
58
|
}, [modalBodyDiv, modalFooterDiv]);
|
|
65
59
|
return ((0, jsx_runtime_1.jsx)(exports.BeamContext.Provider, Object.assign({ value: { ...context } }, { children: (0, jsx_runtime_1.jsx)(PresentationContext_1.PresentationProvider, Object.assign({}, presentationProps, { children: (0, jsx_runtime_1.jsx)(form_state_1.AutoSaveStatusProvider, { children: (0, jsx_runtime_1.jsxs)(SnackbarContext_1.SnackbarProvider, { children: [(0, jsx_runtime_1.jsxs)(react_aria_1.OverlayProvider, { children: [children, modalRef.current && drawerContentStackRef.current.length === 0 && (0, jsx_runtime_1.jsx)(Modal_1.Modal, Object.assign({}, modalRef.current), void 0)] }, void 0), (0, jsx_runtime_1.jsx)(SuperDrawer_1.SuperDrawer, {}, void 0)] }, void 0) }, void 0) }), void 0) }), void 0));
|
|
@@ -24,6 +24,6 @@ function FilterModal(props) {
|
|
|
24
24
|
exports.FilterModal = FilterModal;
|
|
25
25
|
// Wraps a filter component to be displayed in the Filter Modal
|
|
26
26
|
function ModalFilterItem({ label, children }) {
|
|
27
|
-
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ css: Css_1.Css.mb4.if(!label).bt.bGray200.$ }, { children: [label && (0, jsx_runtime_1.jsx)("h2", Object.assign({ css: Css_1.Css.
|
|
27
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ css: Css_1.Css.mb4.if(!label).bt.bGray200.$ }, { children: [label && (0, jsx_runtime_1.jsx)("h2", Object.assign({ css: Css_1.Css.baseMd.mb2.$ }, { children: label }), void 0), (0, jsx_runtime_1.jsx)("div", Object.assign({ css: Css_1.Css.if(!label).pt3.$ }, { children: children }), void 0)] }), void 0));
|
|
28
28
|
}
|
|
29
29
|
exports.ModalFilterItem = ModalFilterItem;
|
|
@@ -33,7 +33,7 @@ function Filters(props) {
|
|
|
33
33
|
// Return list of filter components. `onSelect` should update the `filter`
|
|
34
34
|
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ css: {
|
|
35
35
|
...(vertical ? Css_1.Css.df.fdc.childGap2.$ : Css_1.Css.df.aic.childGap1.$),
|
|
36
|
-
} }, testId, { children: [maybeGroupByField, (0, utils_1.safeEntries)(pageFilters).map(([key, f]) => ((0, jsx_runtime_1.jsx)("div", { children: f.render(filter[key], (value) => onChange((0, Filters_1.updateFilter)(filter, key, value)), testId, false, vertical) }, key))), Object.keys(modalFilters).length > 0 && ((0, jsx_runtime_1.jsx)(Button_1.Button, Object.assign({ label: "More Filters", endAdornment: numModalFilters > 0 && ((0, jsx_runtime_1.jsx)("span", Object.assign({ css: Css_1.Css.wPx(16).hPx(16).fs0.br100.bgLightBlue700.white.
|
|
36
|
+
} }, testId, { children: [maybeGroupByField, (0, utils_1.safeEntries)(pageFilters).map(([key, f]) => ((0, jsx_runtime_1.jsx)("div", { children: f.render(filter[key], (value) => onChange((0, Filters_1.updateFilter)(filter, key, value)), testId, false, vertical) }, key))), Object.keys(modalFilters).length > 0 && ((0, jsx_runtime_1.jsx)(Button_1.Button, Object.assign({ label: "More Filters", endAdornment: numModalFilters > 0 && ((0, jsx_runtime_1.jsx)("span", Object.assign({ css: Css_1.Css.wPx(16).hPx(16).fs0.br100.bgLightBlue700.white.tinySb.df.aic.jcc.$ }, { children: numModalFilters }), void 0)), variant: "secondary", onClick: () => openModal({
|
|
37
37
|
// Spreading `props` to pass along `data-testid`
|
|
38
38
|
content: (0, jsx_runtime_1.jsx)(Filters_1.FilterModal, Object.assign({}, props, { filter: filter, onApply: onChange, filters: modalFilters }), void 0),
|
|
39
39
|
}) }, testId.moreFiltersBtn), void 0)), Object.keys(filter).length > 0 && ((0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)(Button_1.Button, Object.assign({ label: "Clear", variant: "tertiary", onClick: () => onChange({}) }, testId.clearBtn), void 0) }, void 0))] }), void 0));
|
package/dist/components/Label.js
CHANGED
|
@@ -16,6 +16,6 @@ exports.Label = react_1.default.memo((props) => {
|
|
|
16
16
|
});
|
|
17
17
|
/** Used for showing labels within text fields. */
|
|
18
18
|
function InlineLabel({ labelProps, label, contrast, ...others }) {
|
|
19
|
-
return ((0, jsx_runtime_1.jsxs)("label", Object.assign({}, labelProps, others, { css: Css_1.Css.
|
|
19
|
+
return ((0, jsx_runtime_1.jsxs)("label", Object.assign({}, labelProps, others, { css: Css_1.Css.smMd.nowrap.gray900.prPx(4).add("color", "currentColor").$ }, { children: [label, ":"] }), void 0));
|
|
20
20
|
}
|
|
21
21
|
exports.InlineLabel = InlineLabel;
|
|
@@ -69,7 +69,7 @@ function Modal(props) {
|
|
|
69
69
|
.df.fdc.wPx(width)
|
|
70
70
|
.mhPx(defaultMinHeight)
|
|
71
71
|
.if(isFixedHeight)
|
|
72
|
-
.hPx(height).$, ref: ref }, overlayProps, dialogProps, modalProps, testId, { children: [(0, jsx_runtime_1.jsxs)("header", Object.assign({ css: Css_1.Css.df.p3.fs0.if(drawHeaderBorder).bb.bGray200.$ }, { children: [(0, jsx_runtime_1.jsx)("h1", Object.assign({ css: Css_1.Css.fg1.
|
|
72
|
+
.hPx(height).$, ref: ref }, overlayProps, dialogProps, modalProps, testId, { children: [(0, jsx_runtime_1.jsxs)("header", Object.assign({ css: Css_1.Css.df.p3.fs0.if(drawHeaderBorder).bb.bGray200.$ }, { children: [(0, jsx_runtime_1.jsx)("h1", Object.assign({ css: Css_1.Css.fg1.xl2Sb.gray900.$, ref: modalHeaderRef }, titleProps, testId.title), void 0), (0, jsx_runtime_1.jsx)("span", Object.assign({ css: Css_1.Css.fs0.pl1.$ }, { children: (0, jsx_runtime_1.jsx)(IconButton_1.IconButton, Object.assign({ icon: "x", onClick: closeModal }, testId.titleClose), void 0) }), void 0)] }), void 0), (0, jsx_runtime_1.jsx)("main", Object.assign({ ref: modalBodyRef, css: Css_1.Css.fg1.overflowYAuto.if(hasScroll).bb.bGray200.if(!!forceScrolling).overflowYScroll.$ }, { children: content }), void 0), (0, jsx_runtime_1.jsx)("footer", Object.assign({ css: Css_1.Css.fs0.$ }, { children: (0, jsx_runtime_1.jsx)("div", { ref: modalFooterRef }, void 0) }), void 0)] }), void 0) }), void 0) }), void 0) }, void 0) }, void 0));
|
|
73
73
|
}
|
|
74
74
|
exports.Modal = Modal;
|
|
75
75
|
function ModalHeader({ children }) {
|
|
@@ -47,7 +47,7 @@ function getNavLinkStyles(variant, contrast) {
|
|
|
47
47
|
return navLinkVariantStyles(contrast)[variant];
|
|
48
48
|
}
|
|
49
49
|
exports.getNavLinkStyles = getNavLinkStyles;
|
|
50
|
-
const baseStyles = Css_1.Css.df.aic.hPx(32).pyPx(6).px1.br4.
|
|
50
|
+
const baseStyles = Css_1.Css.df.aic.hPx(32).pyPx(6).px1.br4.smMd.outline0.$;
|
|
51
51
|
const navLinkVariantStyles = (contrast) => ({
|
|
52
52
|
side: {
|
|
53
53
|
baseStyles: { ...baseStyles, ...Css_1.Css.gray700.if(contrast).gray600.$ },
|
|
@@ -64,5 +64,5 @@ const navLinkVariantStyles = (contrast) => ({
|
|
|
64
64
|
focusRingStyles: Css_1.Css.gray500.bgGray900.add("boxShadow", `0px 1px 2px rgba(0, 0, 0, 0.05), 0px 0px 0px 2px #242424, 0px 0px 0px 4px #0EA5E9`).$,
|
|
65
65
|
hoverStyles: Css_1.Css.gray500.bgGray900.$,
|
|
66
66
|
pressedStyles: Css_1.Css.gray500.bgGray700.$,
|
|
67
|
-
}
|
|
67
|
+
},
|
|
68
68
|
});
|
|
@@ -15,7 +15,7 @@ function ConfirmCloseModal(props) {
|
|
|
15
15
|
// after a close and could/will cause other close attempts to fail.
|
|
16
16
|
modalState.current = undefined;
|
|
17
17
|
}
|
|
18
|
-
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(components_1.ModalHeader, { children: "Confirm" }, void 0), (0, jsx_runtime_1.jsx)(components_1.ModalBody, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ css: Css_1.Css.tc.wPx(400).$ }, { children: [(0, jsx_runtime_1.jsx)("p", Object.assign({ css: Css_1.Css.
|
|
18
|
+
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(components_1.ModalHeader, { children: "Confirm" }, void 0), (0, jsx_runtime_1.jsx)(components_1.ModalBody, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ css: Css_1.Css.tc.wPx(400).$ }, { children: [(0, jsx_runtime_1.jsx)("p", Object.assign({ css: Css_1.Css.lgSb.gray900.mb2.$ }, { children: "Are you sure you want to cancel?" }), void 0), (0, jsx_runtime_1.jsx)("p", Object.assign({ css: Css_1.Css.base.gray700.$ }, { children: "Any data you've entered so far will be lost." }), void 0)] }), void 0) }, void 0), (0, jsx_runtime_1.jsx)(components_1.ModalFooter, Object.assign({ xss: Css_1.Css.jcc.$ }, { children: (0, jsx_runtime_1.jsxs)("div", Object.assign({ css: Css_1.Css.df.fdc.childGap1.aic.$ }, { children: [(0, jsx_runtime_1.jsx)(components_1.Button, { label: continueText, onClick: closeModal }, void 0), (0, jsx_runtime_1.jsx)(components_1.Button, { variant: "tertiary", label: discardText, onClick: () => {
|
|
19
19
|
// The order of these calls doesn't really matter; close this modal and tell the call to do their close
|
|
20
20
|
onClose();
|
|
21
21
|
closeModal();
|
|
@@ -59,7 +59,7 @@ function SuperDrawer() {
|
|
|
59
59
|
const firstContent = (_b = contentStack.current[0]) === null || _b === void 0 ? void 0 : _b.opts;
|
|
60
60
|
const { onPrevClick, onNextClick, titleRightContent, titleLeftContent, hideControls } = firstContent !== null && firstContent !== void 0 ? firstContent : {};
|
|
61
61
|
const isDetail = currentContent !== firstContent;
|
|
62
|
-
const title = content === undefined ?
|
|
62
|
+
const title = content === undefined ? "" : currentContent.title || firstContent.title;
|
|
63
63
|
const { width = utils_2.SuperDrawerWidth.Normal } = firstContent !== null && firstContent !== void 0 ? firstContent : {};
|
|
64
64
|
return (0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(framer_motion_1.AnimatePresence, { children: content && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(react_2.Global, { styles: { body: Css_1.Css.overflowHidden.$ } }, void 0), (0, react_1.createElement)(framer_motion_1.motion.div, { ...testId,
|
|
65
65
|
// Key is required for framer-motion animations
|
|
@@ -80,7 +80,7 @@ function SuperDrawer() {
|
|
|
80
80
|
// Custom transitions settings for the translateX animation
|
|
81
81
|
transition: { ease: "linear", duration: 0.2, delay: 0.2 }, exit: { transition: { ease: "linear", duration: 0.2 }, x: width },
|
|
82
82
|
// Preventing clicks from triggering parent onClick
|
|
83
|
-
onClick: (e) => e.stopPropagation() }, { children: (0, jsx_runtime_1.jsxs)(form_state_1.AutoSaveStatusProvider, { children: [(0, jsx_runtime_1.jsxs)("header", Object.assign({ css: Css_1.Css.df.p3.bb.bGray200.df.aic.jcsb.gap2.$ }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ css: Css_1.Css.df.aic.$ }, { children: [(0, jsx_runtime_1.jsx)("div", Object.assign({ css: Css_1.Css.
|
|
83
|
+
onClick: (e) => e.stopPropagation() }, { children: (0, jsx_runtime_1.jsxs)(form_state_1.AutoSaveStatusProvider, { children: [(0, jsx_runtime_1.jsxs)("header", Object.assign({ css: Css_1.Css.df.p3.bb.bGray200.df.aic.jcsb.gap2.$ }, { children: [(0, jsx_runtime_1.jsxs)("div", Object.assign({ css: Css_1.Css.df.aic.$ }, { children: [(0, jsx_runtime_1.jsx)("div", Object.assign({ css: Css_1.Css.xl2Sb.gray900.mr2.$ }, testId.title, { ref: drawerHeaderRef }, { children: !modalState.current && (title || null) }), void 0), !modalState.current && (titleLeftContent || null)] }), void 0), !modalState.current && (
|
|
84
84
|
// Forcing height to 32px to match title height
|
|
85
85
|
(0, jsx_runtime_1.jsxs)("div", Object.assign({ css: Css_1.Css.df.childGap3.aic.hPx(32).fs0.$ }, { children: [titleRightContent || null, !hideControls && ((0, jsx_runtime_1.jsx)(components_1.ButtonGroup, Object.assign({ buttons: [
|
|
86
86
|
{
|
|
@@ -19,7 +19,7 @@ exports.defaultStyle = {
|
|
|
19
19
|
/** Tightens up the padding of rows, great for rows that have form elements in them. */
|
|
20
20
|
exports.condensedStyle = {
|
|
21
21
|
...exports.defaultStyle,
|
|
22
|
-
headerCellCss: Css_1.Css.bgGray100.
|
|
22
|
+
headerCellCss: Css_1.Css.bgGray100.tinySb.$,
|
|
23
23
|
cellCss: Css_1.Css.aic.sm.py1.px2.$,
|
|
24
24
|
rootCss: Css_1.Css.dg.gray700.xs.$,
|
|
25
25
|
firstRowMessageCss: Css_1.Css.tc.py2.$,
|
|
@@ -38,7 +38,7 @@ exports.cardStyle = {
|
|
|
38
38
|
...Css_1.Css.add({
|
|
39
39
|
border: "none",
|
|
40
40
|
borderRadius: "unset",
|
|
41
|
-
}).p1.m0.
|
|
41
|
+
}).p1.m0.xsMd.gray700.$,
|
|
42
42
|
},
|
|
43
43
|
};
|
|
44
44
|
function memoizedTableStyles() {
|
|
@@ -49,8 +49,8 @@ function memoizedTableStyles() {
|
|
|
49
49
|
if (!cache[key]) {
|
|
50
50
|
const groupedLevels = {
|
|
51
51
|
0: {
|
|
52
|
-
cellCss: Css_1.Css.
|
|
53
|
-
firstContentColumn: Css_1.Css.
|
|
52
|
+
cellCss: Css_1.Css.xsMd.mhPx(56).gray700.bgGray100.boxShadow(`inset 0 -1px 0 ${Css_1.Palette.Gray200}`).$,
|
|
53
|
+
firstContentColumn: Css_1.Css.smMd.$,
|
|
54
54
|
},
|
|
55
55
|
2: { firstContentColumn: Css_1.Css.tiny.pl3.$ },
|
|
56
56
|
};
|
|
@@ -58,12 +58,12 @@ function memoizedTableStyles() {
|
|
|
58
58
|
cache[key] = {
|
|
59
59
|
emptyCell: "-",
|
|
60
60
|
firstRowMessageCss: Css_1.Css.tc.py3.$,
|
|
61
|
-
headerCellCss: Css_1.Css.gray700.
|
|
62
|
-
totalsCellCss: Css_1.Css.bgWhite.gray700.
|
|
61
|
+
headerCellCss: Css_1.Css.gray700.xsMd.bgGray200.aic.nowrap.pxPx(12).hPx(40).$,
|
|
62
|
+
totalsCellCss: Css_1.Css.bgWhite.gray700.smMd.hPx(52).pt0.pbPx(12).boxShadow("none").$,
|
|
63
63
|
cellCss: {
|
|
64
64
|
...Css_1.Css.gray900.xs.bgWhite.aic.pxPx(12).boxShadow(`inset 0 -1px 0 ${Css_1.Palette.Gray200}`).$,
|
|
65
65
|
...(rowHeight === "flexible" ? Css_1.Css.pyPx(12).$ : Css_1.Css.nowrap.hPx(inlineEditing ? 48 : 36).$),
|
|
66
|
-
...(cellHighlight ? { "&:hover": Css_1.Css.bgGray100.$ } : {})
|
|
66
|
+
...(cellHighlight ? { "&:hover": Css_1.Css.bgGray100.$ } : {}),
|
|
67
67
|
},
|
|
68
68
|
presentationSettings: { borderless: true, typeScale: "xs", wrap: rowHeight === "flexible" },
|
|
69
69
|
levels: grouped ? groupedLevels : defaultLevels,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
2
|
import type { IconKey } from "./";
|
|
3
3
|
import { Margin, Only, Xss } from "../Css";
|
|
4
4
|
export interface Tab<V extends string = string> {
|
|
@@ -17,6 +17,7 @@ export interface TabsProps<V extends string, X> {
|
|
|
17
17
|
contentXss?: X;
|
|
18
18
|
alwaysShowAllTabs?: boolean;
|
|
19
19
|
includeBottomBorder?: boolean;
|
|
20
|
+
right?: ReactNode;
|
|
20
21
|
}
|
|
21
22
|
export interface RouteTabsProps<V extends string, X> extends Omit<TabsProps<V, X>, "onChange" | "selected" | "tabs"> {
|
|
22
23
|
tabs: RouteTab<V>[];
|
|
@@ -129,5 +130,4 @@ export declare function getTabStyles(): {
|
|
|
129
130
|
};
|
|
130
131
|
};
|
|
131
132
|
export declare function getNextTabValue<V extends string>(selected: V, key: "ArrowLeft" | "ArrowRight", tabs: Tab<V>[] | RouteTab<V>[]): V;
|
|
132
|
-
export declare function TabActions({ children }: PropsWithChildren<{}>): ReactPortal;
|
|
133
133
|
export {};
|
package/dist/components/Tabs.js
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.getNextTabValue = exports.getTabStyles = exports.Tabs = exports.TabContent = exports.TabsWithContent = void 0;
|
|
4
4
|
const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
|
|
5
5
|
const change_case_1 = require("change-case");
|
|
6
6
|
const react_1 = require("react");
|
|
7
7
|
const react_aria_1 = require("react-aria");
|
|
8
|
-
const react_dom_1 = require("react-dom");
|
|
9
8
|
const react_router_1 = require("react-router");
|
|
10
9
|
const react_router_dom_1 = require("react-router-dom");
|
|
11
|
-
const BeamContext_1 = require("./BeamContext");
|
|
12
10
|
const Css_1 = require("../Css");
|
|
13
11
|
const utils_1 = require("../utils");
|
|
14
12
|
const defaultTestId_1 = require("../utils/defaultTestId");
|
|
@@ -44,8 +42,7 @@ function TabContent(props) {
|
|
|
44
42
|
exports.TabContent = TabContent;
|
|
45
43
|
/** The top list of tabs. */
|
|
46
44
|
function Tabs(props) {
|
|
47
|
-
const {
|
|
48
|
-
const { ariaLabel, tabs, includeBottomBorder, ...others } = props;
|
|
45
|
+
const { ariaLabel, tabs, includeBottomBorder, right, ...others } = props;
|
|
49
46
|
const location = (0, react_router_1.useLocation)();
|
|
50
47
|
const selected = isRouteTabs(props)
|
|
51
48
|
? uniqueTabValue(props.tabs.find((t) => !!(0, react_router_1.matchPath)(location.pathname, { path: t.path, exact: true })) || props.tabs[0])
|
|
@@ -56,11 +53,6 @@ function Tabs(props) {
|
|
|
56
53
|
const ref = (0, react_1.useRef)(null);
|
|
57
54
|
// Whenever selected changes, reset active
|
|
58
55
|
(0, react_1.useEffect)(() => setActive(selected), [selected]);
|
|
59
|
-
(0, react_1.useEffect)(() => {
|
|
60
|
-
if (tabActionsRef && tabActionsDiv) {
|
|
61
|
-
tabActionsRef.current.appendChild(tabActionsDiv);
|
|
62
|
-
}
|
|
63
|
-
}, [tabActionsRef, tabActionsDiv]);
|
|
64
56
|
// the active tab is highlighted, but not necessarily "selected"
|
|
65
57
|
// the selected tab dictates what is displayed in the content panel
|
|
66
58
|
function onKeyUp(e) {
|
|
@@ -87,7 +79,7 @@ function Tabs(props) {
|
|
|
87
79
|
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ css: Css_1.Css.df.aic.$ }, { children: [!hideTabs(props) && ((0, jsx_runtime_1.jsx)("div", Object.assign({ ref: ref, css: { ...Css_1.Css.dif.childGap1.$, ...(includeBottomBorder ? { ...Css_1.Css.bb.bGray200.$ } : {}) }, "aria-label": ariaLabel, role: "tablist" }, tid, { children: tabs.map((tab) => {
|
|
88
80
|
const uniqueValue = uniqueTabValue(tab);
|
|
89
81
|
return ((0, jsx_runtime_1.jsx)(TabImpl, Object.assign({ active: active === uniqueValue, focusProps: focusProps, isFocusVisible: isFocusVisible, onClick: onClick, onKeyUp: onKeyUp, onBlur: onBlur, tab: tab }, tid[(0, defaultTestId_1.defaultTestId)(uniqueValue)]), uniqueValue));
|
|
90
|
-
}) }), void 0)), (0, jsx_runtime_1.jsx)("div", { css: Css_1.Css.ml("auto").
|
|
82
|
+
}) }), void 0)), right && (0, jsx_runtime_1.jsx)("div", Object.assign({ css: Css_1.Css.ml("auto").df.aic.gap1.$ }, { children: right }), void 0)] }), void 0));
|
|
91
83
|
}
|
|
92
84
|
exports.Tabs = Tabs;
|
|
93
85
|
function TabImpl(props) {
|
|
@@ -131,7 +123,7 @@ function getTabStyles() {
|
|
|
131
123
|
return {
|
|
132
124
|
baseStyles: Css_1.Css.df.aic.hPx(32).pyPx(verticalPaddingPx).px1.outline0.gray700.add("width", "fit-content")
|
|
133
125
|
.cursorPointer.sm.$,
|
|
134
|
-
activeStyles: Css_1.Css.add(borderBottomStyles).bLightBlue700.
|
|
126
|
+
activeStyles: Css_1.Css.add(borderBottomStyles).bLightBlue700.smMd.gray900.$,
|
|
135
127
|
disabledStyles: Css_1.Css.gray400.cursorNotAllowed.$,
|
|
136
128
|
focusRingStyles: Css_1.Css.bgLightBlue50.bshFocus.$,
|
|
137
129
|
hoverStyles: Css_1.Css.add(borderBottomStyles).bGray400.$,
|
|
@@ -157,14 +149,6 @@ function isRouteTab(tab) {
|
|
|
157
149
|
function uniqueTabValue(tab) {
|
|
158
150
|
return isRouteTab(tab) ? (0, change_case_1.camelCase)(tab.name) : tab.value;
|
|
159
151
|
}
|
|
160
|
-
function TabActions({ children }) {
|
|
161
|
-
const { tabActionsDiv } = (0, BeamContext_1.useBeamContext)();
|
|
162
|
-
if (!tabActionsDiv) {
|
|
163
|
-
throw new Error("Tab Actions element is not defined");
|
|
164
|
-
}
|
|
165
|
-
return (0, react_dom_1.createPortal)(children, tabActionsDiv);
|
|
166
|
-
}
|
|
167
|
-
exports.TabActions = TabActions;
|
|
168
152
|
// Determines whether we should hide the Tab panel. Returns true if there is only one enabled tab and `alwaysShowAllTabs` is falsey.
|
|
169
153
|
function hideTabs(props) {
|
|
170
154
|
return props.alwaysShowAllTabs ? false : props.tabs.filter((t) => !t.disabled).length === 1;
|
package/dist/components/Tag.js
CHANGED
|
@@ -8,7 +8,7 @@ const utils_1 = require("../utils");
|
|
|
8
8
|
function Tag({ text, type, xss, ...otherProps }) {
|
|
9
9
|
const typeStyles = getStyles(type);
|
|
10
10
|
const tid = (0, utils_1.useTestIds)(otherProps);
|
|
11
|
-
return ((0, jsx_runtime_1.jsx)("span", Object.assign({}, tid, { css: { ...Css_1.Css.dib.
|
|
11
|
+
return ((0, jsx_runtime_1.jsx)("span", Object.assign({}, tid, { css: { ...Css_1.Css.dib.tinySb.ttu.px1.pyPx(4).gray900.br4.$, ...typeStyles, ...xss }, title: text }, { children: (0, jsx_runtime_1.jsx)("span", Object.assign({ css: Css_1.Css.lineClamp1.breakAll.$ }, { children: text }), void 0) }), void 0));
|
|
12
12
|
}
|
|
13
13
|
exports.Tag = Tag;
|
|
14
14
|
function getStyles(type) {
|
|
@@ -3,6 +3,8 @@ export * from "./Chips";
|
|
|
3
3
|
export * from "./Table/GridTable";
|
|
4
4
|
export * from "./ToggleChip";
|
|
5
5
|
export * from "./ToggleChips";
|
|
6
|
+
export * from "./Accordion";
|
|
7
|
+
export * from "./AccordionList";
|
|
6
8
|
export * from "./Alert";
|
|
7
9
|
export * from "./AutoSaveIndicator";
|
|
8
10
|
export { BeamProvider } from "./BeamContext";
|
|
@@ -27,9 +29,7 @@ export * from "./Stepper";
|
|
|
27
29
|
export type { Step, StepperProps } from "./Stepper";
|
|
28
30
|
export * from "./SuperDrawer";
|
|
29
31
|
export * from "./Table";
|
|
30
|
-
export {
|
|
32
|
+
export { TabContent, Tabs, TabsWithContent } from "./Tabs";
|
|
31
33
|
export type { RouteTab, RouteTabWithContent, Tab, TabWithContent } from "./Tabs";
|
|
32
34
|
export * from "./Tag";
|
|
33
35
|
export * from "./Tooltip";
|
|
34
|
-
export * from "./Accordion";
|
|
35
|
-
export * from "./AccordionList";
|
package/dist/components/index.js
CHANGED
|
@@ -10,12 +10,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
10
10
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
11
|
};
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
-
exports.TabsWithContent = exports.Tabs = exports.TabContent = exports.
|
|
13
|
+
exports.TabsWithContent = exports.Tabs = exports.TabContent = exports.PresentationProvider = exports.NavLink = exports.BeamProvider = void 0;
|
|
14
14
|
__exportStar(require("./Chip"), exports);
|
|
15
15
|
__exportStar(require("./Chips"), exports);
|
|
16
16
|
__exportStar(require("./Table/GridTable"), exports);
|
|
17
17
|
__exportStar(require("./ToggleChip"), exports);
|
|
18
18
|
__exportStar(require("./ToggleChips"), exports);
|
|
19
|
+
__exportStar(require("./Accordion"), exports);
|
|
20
|
+
__exportStar(require("./AccordionList"), exports);
|
|
19
21
|
__exportStar(require("./Alert"), exports);
|
|
20
22
|
__exportStar(require("./AutoSaveIndicator"), exports);
|
|
21
23
|
var BeamContext_1 = require("./BeamContext");
|
|
@@ -43,11 +45,8 @@ __exportStar(require("./Stepper"), exports);
|
|
|
43
45
|
__exportStar(require("./SuperDrawer"), exports);
|
|
44
46
|
__exportStar(require("./Table"), exports);
|
|
45
47
|
var Tabs_1 = require("./Tabs");
|
|
46
|
-
Object.defineProperty(exports, "TabActions", { enumerable: true, get: function () { return Tabs_1.TabActions; } });
|
|
47
48
|
Object.defineProperty(exports, "TabContent", { enumerable: true, get: function () { return Tabs_1.TabContent; } });
|
|
48
49
|
Object.defineProperty(exports, "Tabs", { enumerable: true, get: function () { return Tabs_1.Tabs; } });
|
|
49
50
|
Object.defineProperty(exports, "TabsWithContent", { enumerable: true, get: function () { return Tabs_1.TabsWithContent; } });
|
|
50
51
|
__exportStar(require("./Tag"), exports);
|
|
51
52
|
__exportStar(require("./Tooltip"), exports);
|
|
52
|
-
__exportStar(require("./Accordion"), exports);
|
|
53
|
-
__exportStar(require("./AccordionList"), exports);
|
|
@@ -6,7 +6,7 @@ const Css_1 = require("../Css");
|
|
|
6
6
|
function FormHeading(props) {
|
|
7
7
|
const { title, xss, isFirst = false, ...others } = props;
|
|
8
8
|
return ((0, jsx_runtime_1.jsx)("h3", Object.assign({ css: {
|
|
9
|
-
...Css_1.Css.
|
|
9
|
+
...Css_1.Css.baseMd.$,
|
|
10
10
|
// Add space before the heading, but only if it's not first.
|
|
11
11
|
...(!isFirst && Css_1.Css.mt4.$),
|
|
12
12
|
...xss,
|
|
@@ -10,6 +10,6 @@ function StaticField(props) {
|
|
|
10
10
|
const { label, value, children } = props;
|
|
11
11
|
const tid = (0, useTestIds_1.useTestIds)(props, (0, defaultTestId_1.defaultTestId)(label));
|
|
12
12
|
const id = (0, utils_1.useId)();
|
|
13
|
-
return ((0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)("label", Object.assign({ css: Css_1.Css.db.sm.gray700.mbPx(4).$, htmlFor: id }, tid.label, { children: label }), void 0), (0, jsx_runtime_1.jsx)("div", Object.assign({ id: id, css: Css_1.Css.
|
|
13
|
+
return ((0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)("label", Object.assign({ css: Css_1.Css.db.sm.gray700.mbPx(4).$, htmlFor: id }, tid.label, { children: label }), void 0), (0, jsx_runtime_1.jsx)("div", Object.assign({ id: id, css: Css_1.Css.smMd.gray900.df.aic.$ }, tid, { children: value || children }), void 0)] }, void 0));
|
|
14
14
|
}
|
|
15
15
|
exports.StaticField = StaticField;
|
|
@@ -47,7 +47,7 @@ const disabledColor = Css_1.Css.gray300.$;
|
|
|
47
47
|
const focusRingStyles = Css_1.Css.bshFocus.$;
|
|
48
48
|
const hoverBorderStyles = Css_1.Css.bLightBlue900.$;
|
|
49
49
|
const markStyles = { svg: Css_1.Css.absolute.topPx(-1).leftPx(-1).$ };
|
|
50
|
-
const labelStyles = Css_1.Css.
|
|
50
|
+
const labelStyles = Css_1.Css.smMd.$;
|
|
51
51
|
const descStyles = Css_1.Css.sm.gray700.$;
|
|
52
52
|
const checkmarkSmall = ((0, jsx_runtime_1.jsx)("svg", Object.assign({ width: "16", height: "16" }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M6.66669 10.3907L4.47135 8.19533L3.52869 9.138L6.66669 12.276L13.138 5.80467L12.1954 4.862L6.66669 10.3907Z", fill: Css_1.Palette.White }, void 0) }), void 0));
|
|
53
53
|
const dashSmall = ((0, jsx_runtime_1.jsx)("svg", Object.assign({ width: "16", height: "16" }, { children: (0, jsx_runtime_1.jsx)("rect", { x: "4", y: "7.5", width: "8", height: "1.35", fill: Css_1.Palette.White }, void 0) }), void 0));
|
|
@@ -60,7 +60,7 @@ function Radio(props) {
|
|
|
60
60
|
...(isFocusVisible ? exports.radioFocus : {}),
|
|
61
61
|
// Nudge down so the center of the circle lines up with the label text
|
|
62
62
|
...Css_1.Css.mtPx(2).mr1.$,
|
|
63
|
-
}, disabled: disabled, "aria-labelledby": labelId }, inputProps, focusProps, others), void 0), (0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)("div", Object.assign({ id: labelId, css: Css_1.Css.
|
|
63
|
+
}, disabled: disabled, "aria-labelledby": labelId }, inputProps, focusProps, others), void 0), (0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)("div", Object.assign({ id: labelId, css: Css_1.Css.smMd.gray800.if(disabled).gray400.$ }, (description ? { "aria-describedby": descriptionId } : {}), { children: label }), void 0), description && ((0, jsx_runtime_1.jsx)("div", Object.assign({ id: descriptionId, css: Css_1.Css.sm.gray700.if(disabled).gray400.$ }, { children: description }), void 0))] }, void 0)] }), void 0));
|
|
64
64
|
}
|
|
65
65
|
const whiteCircle = "data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='4'/%3e%3c/svg%3e";
|
|
66
66
|
// Didn't put these in radioReset yet, are they needed?
|
package/dist/inputs/Switch.js
CHANGED
|
@@ -23,7 +23,7 @@ function Switch(props) {
|
|
|
23
23
|
title: tooltip,
|
|
24
24
|
placement: "top",
|
|
25
25
|
children: ((0, jsx_runtime_1.jsxs)("label", Object.assign({}, hoverProps, { css: {
|
|
26
|
-
...Css_1.Css.relative.cursorPointer.df.w("max-content").
|
|
26
|
+
...Css_1.Css.relative.cursorPointer.df.w("max-content").smMd.selectNone.$,
|
|
27
27
|
...(labelStyle === "form" && Css_1.Css.fdc.$),
|
|
28
28
|
...(labelStyle === "inline" && Css_1.Css.gap2.aic.$),
|
|
29
29
|
...(labelStyle === "filter" && Css_1.Css.jcsb.gap1.aic.w("auto").sm.$),
|
|
@@ -18,7 +18,7 @@ function TextFieldBase(props) {
|
|
|
18
18
|
var _a, _b, _c, _d, _e, _f, _g;
|
|
19
19
|
const { fieldProps } = (0, PresentationContext_1.usePresentationContext)();
|
|
20
20
|
const { label, required, labelProps, hideLabel = (_a = fieldProps === null || fieldProps === void 0 ? void 0 : fieldProps.hideLabel) !== null && _a !== void 0 ? _a : false, inputProps, inputRef, inputWrapRef, groupProps, compact = (_b = fieldProps === null || fieldProps === void 0 ? void 0 : fieldProps.compact) !== null && _b !== void 0 ? _b : false, errorMsg, helperText, multiline = false, onChange, onBlur, onFocus, xss, endAdornment, startAdornment, inlineLabel, contrast = false, borderless = (_c = fieldProps === null || fieldProps === void 0 ? void 0 : fieldProps.borderless) !== null && _c !== void 0 ? _c : false, textAreaMinHeight = 96, clearable = false, tooltip, visuallyDisabled = (_d = fieldProps === null || fieldProps === void 0 ? void 0 : fieldProps.visuallyDisabled) !== null && _d !== void 0 ? _d : true, } = props;
|
|
21
|
-
const typeScale = (_e = fieldProps === null || fieldProps === void 0 ? void 0 : fieldProps.typeScale) !== null && _e !== void 0 ? _e : (inputProps.readOnly && !hideLabel ? "
|
|
21
|
+
const typeScale = (_e = fieldProps === null || fieldProps === void 0 ? void 0 : fieldProps.typeScale) !== null && _e !== void 0 ? _e : (inputProps.readOnly && !hideLabel ? "smMd" : "sm");
|
|
22
22
|
const errorInTooltip = (_f = fieldProps === null || fieldProps === void 0 ? void 0 : fieldProps.errorInTooltip) !== null && _f !== void 0 ? _f : false;
|
|
23
23
|
const internalProps = props.internalProps || {};
|
|
24
24
|
const { compound = false, forceFocus = false, forceHover = false } = internalProps;
|
|
@@ -37,7 +37,7 @@ function ToggleButton(props) {
|
|
|
37
37
|
...hoverProps,
|
|
38
38
|
...pressProps,
|
|
39
39
|
css: {
|
|
40
|
-
...Css_1.Css.br4.dif.aic.gap1.bgTransparent.gray500.hPx(32).plPx(4).pr1.relative.cursorPointer.w("max-content").
|
|
40
|
+
...Css_1.Css.br4.dif.aic.gap1.bgTransparent.gray500.hPx(32).plPx(4).pr1.relative.cursorPointer.w("max-content").smMd
|
|
41
41
|
.selectNone.$,
|
|
42
42
|
...(isHovered && exports.toggleHoverStyles),
|
|
43
43
|
...(isPressed && exports.togglePressStyles),
|
|
@@ -15,7 +15,7 @@ function SelectFieldInput(props) {
|
|
|
15
15
|
const showNumSelection = isMultiSelect && state.selectionManager.selectedKeys.size > 1;
|
|
16
16
|
// For MultiSelect only show the `fieldDecoration` when input is not in focus.
|
|
17
17
|
const showFieldDecoration = (!isMultiSelect || (isMultiSelect && !isFocused)) && fieldDecoration && selectedOptions.length === 1;
|
|
18
|
-
return ((0, jsx_runtime_1.jsx)(TextFieldBase_1.TextFieldBase, Object.assign({}, otherProps, { inlineLabel: inlineLabel, errorMsg: errorMsg, contrast: contrast, xss: !inlineLabel && !inputProps.readOnly ? Css_1.Css.fw5.$ : {}, startAdornment: (showNumSelection && ((0, jsx_runtime_1.jsx)("span", Object.assign({ css: Css_1.Css.wPx(16).hPx(16).fs0.br100.bgLightBlue700.white.
|
|
18
|
+
return ((0, jsx_runtime_1.jsx)(TextFieldBase_1.TextFieldBase, Object.assign({}, otherProps, { inlineLabel: inlineLabel, errorMsg: errorMsg, contrast: contrast, xss: !inlineLabel && !inputProps.readOnly ? Css_1.Css.fw5.$ : {}, startAdornment: (showNumSelection && ((0, jsx_runtime_1.jsx)("span", Object.assign({ css: Css_1.Css.wPx(16).hPx(16).fs0.br100.bgLightBlue700.white.tinySb.df.aic.jcc.$ }, { children: state.selectionManager.selectedKeys.size }), void 0))) ||
|
|
19
19
|
(showFieldDecoration && fieldDecoration(selectedOptions[0])), endAdornment: !inputProps.readOnly && ((0, jsx_runtime_1.jsx)("button", Object.assign({}, buttonProps, { disabled: inputProps.disabled, ref: buttonRef, css: {
|
|
20
20
|
...Css_1.Css.br4.outline0.gray700.if(contrast).gray400.$,
|
|
21
21
|
...(inputProps.disabled ? Css_1.Css.cursorNotAllowed.gray400.if(contrast).gray600.$ : {}),
|