@livetiles/reach-plugin-types 0.5.0-preview.944 → 0.5.0-preview.947
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/lib/index.d.ts +78 -36
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -3123,6 +3123,15 @@ declare module "libs/reach/util/common/src/theme/theme2/colors" {
|
|
|
3123
3123
|
primary: "#FF9573";
|
|
3124
3124
|
};
|
|
3125
3125
|
}
|
|
3126
|
+
declare module "libs/reach/util/common/src/theme/theme2/radius" {
|
|
3127
|
+
const radius: {
|
|
3128
|
+
minimal: string;
|
|
3129
|
+
rounded: string;
|
|
3130
|
+
full: string;
|
|
3131
|
+
button: string;
|
|
3132
|
+
};
|
|
3133
|
+
export default radius;
|
|
3134
|
+
}
|
|
3126
3135
|
declare module "libs/reach/util/common/src/theme/theme2/shadows" {
|
|
3127
3136
|
const shadows: {
|
|
3128
3137
|
drag: {
|
|
@@ -3148,21 +3157,30 @@ declare module "libs/reach/util/common/src/theme/theme2/shadows" {
|
|
|
3148
3157
|
}
|
|
3149
3158
|
declare module "libs/reach/util/common/src/theme/theme2/spacing" {
|
|
3150
3159
|
const spacing: {
|
|
3151
|
-
readonly 4:
|
|
3152
|
-
readonly 8:
|
|
3153
|
-
readonly 12:
|
|
3154
|
-
readonly 16:
|
|
3155
|
-
readonly 20:
|
|
3156
|
-
readonly 24:
|
|
3157
|
-
readonly 32:
|
|
3158
|
-
readonly 40:
|
|
3159
|
-
readonly 48:
|
|
3160
|
-
readonly 56:
|
|
3161
|
-
readonly 68:
|
|
3162
|
-
readonly 80:
|
|
3160
|
+
readonly 4: "4px";
|
|
3161
|
+
readonly 8: "8px";
|
|
3162
|
+
readonly 12: "12px";
|
|
3163
|
+
readonly 16: "16px";
|
|
3164
|
+
readonly 20: "20px";
|
|
3165
|
+
readonly 24: "24px";
|
|
3166
|
+
readonly 32: "32px";
|
|
3167
|
+
readonly 40: "40px";
|
|
3168
|
+
readonly 48: "48px";
|
|
3169
|
+
readonly 56: "56px";
|
|
3170
|
+
readonly 68: "68px";
|
|
3171
|
+
readonly 80: "80px";
|
|
3163
3172
|
};
|
|
3164
3173
|
export default spacing;
|
|
3165
3174
|
}
|
|
3175
|
+
declare module "libs/reach/util/common/src/theme/theme2/strokeWidth" {
|
|
3176
|
+
const strokeWidth: {
|
|
3177
|
+
thin: string;
|
|
3178
|
+
thick: string;
|
|
3179
|
+
thicker: string;
|
|
3180
|
+
thickest: string;
|
|
3181
|
+
};
|
|
3182
|
+
export default strokeWidth;
|
|
3183
|
+
}
|
|
3166
3184
|
declare module "libs/reach/util/common/src/theme/theme2/typography" {
|
|
3167
3185
|
const typography: {
|
|
3168
3186
|
readonly body1: {
|
|
@@ -3313,6 +3331,12 @@ declare module "libs/reach/util/common/src/theme/theme2/index" {
|
|
|
3313
3331
|
primary: "#FF9573";
|
|
3314
3332
|
};
|
|
3315
3333
|
};
|
|
3334
|
+
radius: {
|
|
3335
|
+
minimal: string;
|
|
3336
|
+
rounded: string;
|
|
3337
|
+
full: string;
|
|
3338
|
+
button: string;
|
|
3339
|
+
};
|
|
3316
3340
|
shadows: {
|
|
3317
3341
|
drag: {
|
|
3318
3342
|
boxShadow: string;
|
|
@@ -3334,18 +3358,24 @@ declare module "libs/reach/util/common/src/theme/theme2/index" {
|
|
|
3334
3358
|
};
|
|
3335
3359
|
};
|
|
3336
3360
|
spacing: {
|
|
3337
|
-
readonly 4:
|
|
3338
|
-
readonly 8:
|
|
3339
|
-
readonly 12:
|
|
3340
|
-
readonly 16:
|
|
3341
|
-
readonly 20:
|
|
3342
|
-
readonly 24:
|
|
3343
|
-
readonly 32:
|
|
3344
|
-
readonly 40:
|
|
3345
|
-
readonly 48:
|
|
3346
|
-
readonly 56:
|
|
3347
|
-
readonly 68:
|
|
3348
|
-
readonly 80:
|
|
3361
|
+
readonly 4: "4px";
|
|
3362
|
+
readonly 8: "8px";
|
|
3363
|
+
readonly 12: "12px";
|
|
3364
|
+
readonly 16: "16px";
|
|
3365
|
+
readonly 20: "20px";
|
|
3366
|
+
readonly 24: "24px";
|
|
3367
|
+
readonly 32: "32px";
|
|
3368
|
+
readonly 40: "40px";
|
|
3369
|
+
readonly 48: "48px";
|
|
3370
|
+
readonly 56: "56px";
|
|
3371
|
+
readonly 68: "68px";
|
|
3372
|
+
readonly 80: "80px";
|
|
3373
|
+
};
|
|
3374
|
+
strokeWidth: {
|
|
3375
|
+
thin: string;
|
|
3376
|
+
thick: string;
|
|
3377
|
+
thicker: string;
|
|
3378
|
+
thickest: string;
|
|
3349
3379
|
};
|
|
3350
3380
|
typography: {
|
|
3351
3381
|
readonly body1: {
|
|
@@ -3514,6 +3544,12 @@ declare module "libs/reach/util/common/src/theme/ThemeService" {
|
|
|
3514
3544
|
primary: "#FF9573";
|
|
3515
3545
|
};
|
|
3516
3546
|
};
|
|
3547
|
+
radius: {
|
|
3548
|
+
minimal: string;
|
|
3549
|
+
rounded: string;
|
|
3550
|
+
full: string;
|
|
3551
|
+
button: string;
|
|
3552
|
+
};
|
|
3517
3553
|
shadows: {
|
|
3518
3554
|
drag: {
|
|
3519
3555
|
boxShadow: string;
|
|
@@ -3535,18 +3571,24 @@ declare module "libs/reach/util/common/src/theme/ThemeService" {
|
|
|
3535
3571
|
};
|
|
3536
3572
|
};
|
|
3537
3573
|
spacing: {
|
|
3538
|
-
readonly 4:
|
|
3539
|
-
readonly 8:
|
|
3540
|
-
readonly 12:
|
|
3541
|
-
readonly 16:
|
|
3542
|
-
readonly 20:
|
|
3543
|
-
readonly 24:
|
|
3544
|
-
readonly 32:
|
|
3545
|
-
readonly 40:
|
|
3546
|
-
readonly 48:
|
|
3547
|
-
readonly 56:
|
|
3548
|
-
readonly 68:
|
|
3549
|
-
readonly 80:
|
|
3574
|
+
readonly 4: "4px";
|
|
3575
|
+
readonly 8: "8px";
|
|
3576
|
+
readonly 12: "12px";
|
|
3577
|
+
readonly 16: "16px";
|
|
3578
|
+
readonly 20: "20px";
|
|
3579
|
+
readonly 24: "24px";
|
|
3580
|
+
readonly 32: "32px";
|
|
3581
|
+
readonly 40: "40px";
|
|
3582
|
+
readonly 48: "48px";
|
|
3583
|
+
readonly 56: "56px";
|
|
3584
|
+
readonly 68: "68px";
|
|
3585
|
+
readonly 80: "80px";
|
|
3586
|
+
};
|
|
3587
|
+
strokeWidth: {
|
|
3588
|
+
thin: string;
|
|
3589
|
+
thick: string;
|
|
3590
|
+
thicker: string;
|
|
3591
|
+
thickest: string;
|
|
3550
3592
|
};
|
|
3551
3593
|
typography: {
|
|
3552
3594
|
readonly body1: {
|