@omnia/fx 8.0.158-dev → 8.0.159-dev
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/internal-do-not-import-from-here/ux/aurora/store/ColorSchemaStore.d.ts +155 -31
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +155 -31
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +155 -31
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +8 -6
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +155 -31
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +310 -62
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +310 -62
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +155 -31
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.css.d.ts +1 -3
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +105 -55
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/ActionMenu.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/ActionMenu.d.ts +60 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector.d.ts +60 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/editorHooks/ContentEditorHooks.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/editorHooks/ContentEditorHooks.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/models/EditorRenderingHooks.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +21 -11
- package/internal-do-not-import-from-here/wctypings.d.ts +1 -1
- package/package.json +3 -3
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/AlignmentEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/ColorEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/ColorSchemaEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/ContainerEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/IconEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/ImageEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/MarkdownEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/PropertyEditorCreator.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/ReferenceEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/SliderEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/SpacingEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/SwitchEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/TextEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/TypographyEditor.d.ts +0 -0
@@ -1121,7 +1121,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1121
1121
|
};
|
1122
1122
|
};
|
1123
1123
|
icon?: {
|
1124
|
-
color?: {
|
1124
|
+
color?: string | {
|
1125
1125
|
colors: (string | {
|
1126
1126
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
1127
1127
|
toned?: boolean;
|
@@ -1136,6 +1136,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1136
1136
|
})[];
|
1137
1137
|
acrylic?: boolean;
|
1138
1138
|
opacity?: number;
|
1139
|
+
} | {
|
1140
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
1141
|
+
toned?: boolean;
|
1142
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
1139
1143
|
};
|
1140
1144
|
size?: number;
|
1141
1145
|
};
|
@@ -1245,7 +1249,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1245
1249
|
};
|
1246
1250
|
};
|
1247
1251
|
icon?: {
|
1248
|
-
color?: {
|
1252
|
+
color?: string | {
|
1249
1253
|
colors: (string | {
|
1250
1254
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
1251
1255
|
toned?: boolean;
|
@@ -1260,6 +1264,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1260
1264
|
})[];
|
1261
1265
|
acrylic?: boolean;
|
1262
1266
|
opacity?: number;
|
1267
|
+
} | {
|
1268
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
1269
|
+
toned?: boolean;
|
1270
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
1263
1271
|
};
|
1264
1272
|
size?: number;
|
1265
1273
|
};
|
@@ -1369,7 +1377,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1369
1377
|
};
|
1370
1378
|
};
|
1371
1379
|
icon?: {
|
1372
|
-
color?: {
|
1380
|
+
color?: string | {
|
1373
1381
|
colors: (string | {
|
1374
1382
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
1375
1383
|
toned?: boolean;
|
@@ -1384,6 +1392,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1384
1392
|
})[];
|
1385
1393
|
acrylic?: boolean;
|
1386
1394
|
opacity?: number;
|
1395
|
+
} | {
|
1396
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
1397
|
+
toned?: boolean;
|
1398
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
1387
1399
|
};
|
1388
1400
|
size?: number;
|
1389
1401
|
};
|
@@ -1493,7 +1505,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1493
1505
|
};
|
1494
1506
|
};
|
1495
1507
|
icon?: {
|
1496
|
-
color?: {
|
1508
|
+
color?: string | {
|
1497
1509
|
colors: (string | {
|
1498
1510
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
1499
1511
|
toned?: boolean;
|
@@ -1508,6 +1520,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1508
1520
|
})[];
|
1509
1521
|
acrylic?: boolean;
|
1510
1522
|
opacity?: number;
|
1523
|
+
} | {
|
1524
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
1525
|
+
toned?: boolean;
|
1526
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
1511
1527
|
};
|
1512
1528
|
size?: number;
|
1513
1529
|
};
|
@@ -1617,7 +1633,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1617
1633
|
};
|
1618
1634
|
};
|
1619
1635
|
icon?: {
|
1620
|
-
color?: {
|
1636
|
+
color?: string | {
|
1621
1637
|
colors: (string | {
|
1622
1638
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
1623
1639
|
toned?: boolean;
|
@@ -1632,6 +1648,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1632
1648
|
})[];
|
1633
1649
|
acrylic?: boolean;
|
1634
1650
|
opacity?: number;
|
1651
|
+
} | {
|
1652
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
1653
|
+
toned?: boolean;
|
1654
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
1635
1655
|
};
|
1636
1656
|
size?: number;
|
1637
1657
|
};
|
@@ -1741,7 +1761,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1741
1761
|
};
|
1742
1762
|
};
|
1743
1763
|
icon?: {
|
1744
|
-
color?: {
|
1764
|
+
color?: string | {
|
1745
1765
|
colors: (string | {
|
1746
1766
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
1747
1767
|
toned?: boolean;
|
@@ -1756,6 +1776,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1756
1776
|
})[];
|
1757
1777
|
acrylic?: boolean;
|
1758
1778
|
opacity?: number;
|
1779
|
+
} | {
|
1780
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
1781
|
+
toned?: boolean;
|
1782
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
1759
1783
|
};
|
1760
1784
|
size?: number;
|
1761
1785
|
};
|
@@ -1865,7 +1889,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1865
1889
|
};
|
1866
1890
|
};
|
1867
1891
|
icon?: {
|
1868
|
-
color?: {
|
1892
|
+
color?: string | {
|
1869
1893
|
colors: (string | {
|
1870
1894
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
1871
1895
|
toned?: boolean;
|
@@ -1880,6 +1904,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1880
1904
|
})[];
|
1881
1905
|
acrylic?: boolean;
|
1882
1906
|
opacity?: number;
|
1907
|
+
} | {
|
1908
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
1909
|
+
toned?: boolean;
|
1910
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
1883
1911
|
};
|
1884
1912
|
size?: number;
|
1885
1913
|
};
|
@@ -1989,7 +2017,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
1989
2017
|
};
|
1990
2018
|
};
|
1991
2019
|
icon?: {
|
1992
|
-
color?: {
|
2020
|
+
color?: string | {
|
1993
2021
|
colors: (string | {
|
1994
2022
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
1995
2023
|
toned?: boolean;
|
@@ -2004,6 +2032,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2004
2032
|
})[];
|
2005
2033
|
acrylic?: boolean;
|
2006
2034
|
opacity?: number;
|
2035
|
+
} | {
|
2036
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
2037
|
+
toned?: boolean;
|
2038
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
2007
2039
|
};
|
2008
2040
|
size?: number;
|
2009
2041
|
};
|
@@ -2113,7 +2145,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2113
2145
|
};
|
2114
2146
|
};
|
2115
2147
|
icon?: {
|
2116
|
-
color?: {
|
2148
|
+
color?: string | {
|
2117
2149
|
colors: (string | {
|
2118
2150
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
2119
2151
|
toned?: boolean;
|
@@ -2128,6 +2160,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2128
2160
|
})[];
|
2129
2161
|
acrylic?: boolean;
|
2130
2162
|
opacity?: number;
|
2163
|
+
} | {
|
2164
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
2165
|
+
toned?: boolean;
|
2166
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
2131
2167
|
};
|
2132
2168
|
size?: number;
|
2133
2169
|
};
|
@@ -2239,7 +2275,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2239
2275
|
};
|
2240
2276
|
};
|
2241
2277
|
icon?: {
|
2242
|
-
color?: {
|
2278
|
+
color?: string | {
|
2243
2279
|
colors: (string | {
|
2244
2280
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
2245
2281
|
toned?: boolean;
|
@@ -2254,6 +2290,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2254
2290
|
})[];
|
2255
2291
|
acrylic?: boolean;
|
2256
2292
|
opacity?: number;
|
2293
|
+
} | {
|
2294
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
2295
|
+
toned?: boolean;
|
2296
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
2257
2297
|
};
|
2258
2298
|
size?: number;
|
2259
2299
|
};
|
@@ -2363,7 +2403,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2363
2403
|
};
|
2364
2404
|
};
|
2365
2405
|
icon?: {
|
2366
|
-
color?: {
|
2406
|
+
color?: string | {
|
2367
2407
|
colors: (string | {
|
2368
2408
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
2369
2409
|
toned?: boolean;
|
@@ -2378,6 +2418,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2378
2418
|
})[];
|
2379
2419
|
acrylic?: boolean;
|
2380
2420
|
opacity?: number;
|
2421
|
+
} | {
|
2422
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
2423
|
+
toned?: boolean;
|
2424
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
2381
2425
|
};
|
2382
2426
|
size?: number;
|
2383
2427
|
};
|
@@ -2487,7 +2531,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2487
2531
|
};
|
2488
2532
|
};
|
2489
2533
|
icon?: {
|
2490
|
-
color?: {
|
2534
|
+
color?: string | {
|
2491
2535
|
colors: (string | {
|
2492
2536
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
2493
2537
|
toned?: boolean;
|
@@ -2502,6 +2546,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2502
2546
|
})[];
|
2503
2547
|
acrylic?: boolean;
|
2504
2548
|
opacity?: number;
|
2549
|
+
} | {
|
2550
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
2551
|
+
toned?: boolean;
|
2552
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
2505
2553
|
};
|
2506
2554
|
size?: number;
|
2507
2555
|
};
|
@@ -2611,7 +2659,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2611
2659
|
};
|
2612
2660
|
};
|
2613
2661
|
icon?: {
|
2614
|
-
color?: {
|
2662
|
+
color?: string | {
|
2615
2663
|
colors: (string | {
|
2616
2664
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
2617
2665
|
toned?: boolean;
|
@@ -2626,6 +2674,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2626
2674
|
})[];
|
2627
2675
|
acrylic?: boolean;
|
2628
2676
|
opacity?: number;
|
2677
|
+
} | {
|
2678
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
2679
|
+
toned?: boolean;
|
2680
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
2629
2681
|
};
|
2630
2682
|
size?: number;
|
2631
2683
|
};
|
@@ -2735,7 +2787,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2735
2787
|
};
|
2736
2788
|
};
|
2737
2789
|
icon?: {
|
2738
|
-
color?: {
|
2790
|
+
color?: string | {
|
2739
2791
|
colors: (string | {
|
2740
2792
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
2741
2793
|
toned?: boolean;
|
@@ -2750,6 +2802,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2750
2802
|
})[];
|
2751
2803
|
acrylic?: boolean;
|
2752
2804
|
opacity?: number;
|
2805
|
+
} | {
|
2806
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
2807
|
+
toned?: boolean;
|
2808
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
2753
2809
|
};
|
2754
2810
|
size?: number;
|
2755
2811
|
};
|
@@ -2859,7 +2915,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2859
2915
|
};
|
2860
2916
|
};
|
2861
2917
|
icon?: {
|
2862
|
-
color?: {
|
2918
|
+
color?: string | {
|
2863
2919
|
colors: (string | {
|
2864
2920
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
2865
2921
|
toned?: boolean;
|
@@ -2874,6 +2930,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2874
2930
|
})[];
|
2875
2931
|
acrylic?: boolean;
|
2876
2932
|
opacity?: number;
|
2933
|
+
} | {
|
2934
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
2935
|
+
toned?: boolean;
|
2936
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
2877
2937
|
};
|
2878
2938
|
size?: number;
|
2879
2939
|
};
|
@@ -2983,7 +3043,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2983
3043
|
};
|
2984
3044
|
};
|
2985
3045
|
icon?: {
|
2986
|
-
color?: {
|
3046
|
+
color?: string | {
|
2987
3047
|
colors: (string | {
|
2988
3048
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
2989
3049
|
toned?: boolean;
|
@@ -2998,6 +3058,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
2998
3058
|
})[];
|
2999
3059
|
acrylic?: boolean;
|
3000
3060
|
opacity?: number;
|
3061
|
+
} | {
|
3062
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
3063
|
+
toned?: boolean;
|
3064
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
3001
3065
|
};
|
3002
3066
|
size?: number;
|
3003
3067
|
};
|
@@ -3107,7 +3171,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3107
3171
|
};
|
3108
3172
|
};
|
3109
3173
|
icon?: {
|
3110
|
-
color?: {
|
3174
|
+
color?: string | {
|
3111
3175
|
colors: (string | {
|
3112
3176
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
3113
3177
|
toned?: boolean;
|
@@ -3122,6 +3186,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3122
3186
|
})[];
|
3123
3187
|
acrylic?: boolean;
|
3124
3188
|
opacity?: number;
|
3189
|
+
} | {
|
3190
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
3191
|
+
toned?: boolean;
|
3192
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
3125
3193
|
};
|
3126
3194
|
size?: number;
|
3127
3195
|
};
|
@@ -3231,7 +3299,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3231
3299
|
};
|
3232
3300
|
};
|
3233
3301
|
icon?: {
|
3234
|
-
color?: {
|
3302
|
+
color?: string | {
|
3235
3303
|
colors: (string | {
|
3236
3304
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
3237
3305
|
toned?: boolean;
|
@@ -3246,6 +3314,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3246
3314
|
})[];
|
3247
3315
|
acrylic?: boolean;
|
3248
3316
|
opacity?: number;
|
3317
|
+
} | {
|
3318
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
3319
|
+
toned?: boolean;
|
3320
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
3249
3321
|
};
|
3250
3322
|
size?: number;
|
3251
3323
|
};
|
@@ -3380,7 +3452,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3380
3452
|
};
|
3381
3453
|
};
|
3382
3454
|
icon?: {
|
3383
|
-
color?: {
|
3455
|
+
color?: string | {
|
3384
3456
|
colors: (string | {
|
3385
3457
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
3386
3458
|
toned?: boolean;
|
@@ -3395,6 +3467,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3395
3467
|
})[];
|
3396
3468
|
acrylic?: boolean;
|
3397
3469
|
opacity?: number;
|
3470
|
+
} | {
|
3471
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
3472
|
+
toned?: boolean;
|
3473
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
3398
3474
|
};
|
3399
3475
|
size?: number;
|
3400
3476
|
};
|
@@ -3502,7 +3578,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3502
3578
|
};
|
3503
3579
|
};
|
3504
3580
|
icon?: {
|
3505
|
-
color?: {
|
3581
|
+
color?: string | {
|
3506
3582
|
colors: (string | {
|
3507
3583
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
3508
3584
|
toned?: boolean;
|
@@ -3517,6 +3593,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3517
3593
|
})[];
|
3518
3594
|
acrylic?: boolean;
|
3519
3595
|
opacity?: number;
|
3596
|
+
} | {
|
3597
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
3598
|
+
toned?: boolean;
|
3599
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
3520
3600
|
};
|
3521
3601
|
size?: number;
|
3522
3602
|
};
|
@@ -3703,7 +3783,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3703
3783
|
};
|
3704
3784
|
};
|
3705
3785
|
icon?: {
|
3706
|
-
color?: {
|
3786
|
+
color?: string | {
|
3707
3787
|
colors: (string | {
|
3708
3788
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
3709
3789
|
toned?: boolean;
|
@@ -3718,6 +3798,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3718
3798
|
})[];
|
3719
3799
|
acrylic?: boolean;
|
3720
3800
|
opacity?: number;
|
3801
|
+
} | {
|
3802
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
3803
|
+
toned?: boolean;
|
3804
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
3721
3805
|
};
|
3722
3806
|
size?: number;
|
3723
3807
|
};
|
@@ -3825,7 +3909,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3825
3909
|
};
|
3826
3910
|
};
|
3827
3911
|
icon?: {
|
3828
|
-
color?: {
|
3912
|
+
color?: string | {
|
3829
3913
|
colors: (string | {
|
3830
3914
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
3831
3915
|
toned?: boolean;
|
@@ -3840,6 +3924,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
3840
3924
|
})[];
|
3841
3925
|
acrylic?: boolean;
|
3842
3926
|
opacity?: number;
|
3927
|
+
} | {
|
3928
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
3929
|
+
toned?: boolean;
|
3930
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
3843
3931
|
};
|
3844
3932
|
size?: number;
|
3845
3933
|
};
|
@@ -4026,7 +4114,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4026
4114
|
};
|
4027
4115
|
};
|
4028
4116
|
icon?: {
|
4029
|
-
color?: {
|
4117
|
+
color?: string | {
|
4030
4118
|
colors: (string | {
|
4031
4119
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
4032
4120
|
toned?: boolean;
|
@@ -4041,6 +4129,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4041
4129
|
})[];
|
4042
4130
|
acrylic?: boolean;
|
4043
4131
|
opacity?: number;
|
4132
|
+
} | {
|
4133
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
4134
|
+
toned?: boolean;
|
4135
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
4044
4136
|
};
|
4045
4137
|
size?: number;
|
4046
4138
|
};
|
@@ -4148,7 +4240,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4148
4240
|
};
|
4149
4241
|
};
|
4150
4242
|
icon?: {
|
4151
|
-
color?: {
|
4243
|
+
color?: string | {
|
4152
4244
|
colors: (string | {
|
4153
4245
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
4154
4246
|
toned?: boolean;
|
@@ -4163,6 +4255,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4163
4255
|
})[];
|
4164
4256
|
acrylic?: boolean;
|
4165
4257
|
opacity?: number;
|
4258
|
+
} | {
|
4259
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
4260
|
+
toned?: boolean;
|
4261
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
4166
4262
|
};
|
4167
4263
|
size?: number;
|
4168
4264
|
};
|
@@ -4349,7 +4445,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4349
4445
|
};
|
4350
4446
|
};
|
4351
4447
|
icon?: {
|
4352
|
-
color?: {
|
4448
|
+
color?: string | {
|
4353
4449
|
colors: (string | {
|
4354
4450
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
4355
4451
|
toned?: boolean;
|
@@ -4364,6 +4460,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4364
4460
|
})[];
|
4365
4461
|
acrylic?: boolean;
|
4366
4462
|
opacity?: number;
|
4463
|
+
} | {
|
4464
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
4465
|
+
toned?: boolean;
|
4466
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
4367
4467
|
};
|
4368
4468
|
size?: number;
|
4369
4469
|
};
|
@@ -4471,7 +4571,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4471
4571
|
};
|
4472
4572
|
};
|
4473
4573
|
icon?: {
|
4474
|
-
color?: {
|
4574
|
+
color?: string | {
|
4475
4575
|
colors: (string | {
|
4476
4576
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
4477
4577
|
toned?: boolean;
|
@@ -4486,6 +4586,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
4486
4586
|
})[];
|
4487
4587
|
acrylic?: boolean;
|
4488
4588
|
opacity?: number;
|
4589
|
+
} | {
|
4590
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
4591
|
+
toned?: boolean;
|
4592
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
4489
4593
|
};
|
4490
4594
|
size?: number;
|
4491
4595
|
};
|
@@ -5423,7 +5527,7 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5423
5527
|
};
|
5424
5528
|
icons?: {
|
5425
5529
|
xs?: {
|
5426
|
-
color?: {
|
5530
|
+
color?: string | {
|
5427
5531
|
colors: (string | {
|
5428
5532
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
5429
5533
|
toned?: boolean;
|
@@ -5438,11 +5542,15 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5438
5542
|
})[];
|
5439
5543
|
acrylic?: boolean;
|
5440
5544
|
opacity?: number;
|
5545
|
+
} | {
|
5546
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
5547
|
+
toned?: boolean;
|
5548
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
5441
5549
|
};
|
5442
5550
|
size?: number;
|
5443
5551
|
};
|
5444
5552
|
s?: {
|
5445
|
-
color?: {
|
5553
|
+
color?: string | {
|
5446
5554
|
colors: (string | {
|
5447
5555
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
5448
5556
|
toned?: boolean;
|
@@ -5457,11 +5565,15 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5457
5565
|
})[];
|
5458
5566
|
acrylic?: boolean;
|
5459
5567
|
opacity?: number;
|
5568
|
+
} | {
|
5569
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
5570
|
+
toned?: boolean;
|
5571
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
5460
5572
|
};
|
5461
5573
|
size?: number;
|
5462
5574
|
};
|
5463
5575
|
m?: {
|
5464
|
-
color?: {
|
5576
|
+
color?: string | {
|
5465
5577
|
colors: (string | {
|
5466
5578
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
5467
5579
|
toned?: boolean;
|
@@ -5476,11 +5588,15 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5476
5588
|
})[];
|
5477
5589
|
acrylic?: boolean;
|
5478
5590
|
opacity?: number;
|
5591
|
+
} | {
|
5592
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
5593
|
+
toned?: boolean;
|
5594
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
5479
5595
|
};
|
5480
5596
|
size?: number;
|
5481
5597
|
};
|
5482
5598
|
l?: {
|
5483
|
-
color?: {
|
5599
|
+
color?: string | {
|
5484
5600
|
colors: (string | {
|
5485
5601
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
5486
5602
|
toned?: boolean;
|
@@ -5495,11 +5611,15 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5495
5611
|
})[];
|
5496
5612
|
acrylic?: boolean;
|
5497
5613
|
opacity?: number;
|
5614
|
+
} | {
|
5615
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
5616
|
+
toned?: boolean;
|
5617
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
5498
5618
|
};
|
5499
5619
|
size?: number;
|
5500
5620
|
};
|
5501
5621
|
xl?: {
|
5502
|
-
color?: {
|
5622
|
+
color?: string | {
|
5503
5623
|
colors: (string | {
|
5504
5624
|
colorType: "container" | "base" | "onBase" | "onContainer";
|
5505
5625
|
toned?: boolean;
|
@@ -5514,6 +5634,10 @@ export declare const useSpacingBlueprintStore: () => {
|
|
5514
5634
|
})[];
|
5515
5635
|
acrylic?: boolean;
|
5516
5636
|
opacity?: number;
|
5637
|
+
} | {
|
5638
|
+
colorType: "container" | "base" | "onBase" | "onContainer";
|
5639
|
+
toned?: boolean;
|
5640
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
5517
5641
|
};
|
5518
5642
|
size?: number;
|
5519
5643
|
};
|