@planningcenter/tapestry-migration-cli 3.0.0-rc.22 → 3.0.0-rc.23
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/tapestry-react-shim.cjs +43 -1
- package/package.json +2 -2
|
@@ -3169,7 +3169,49 @@ const tokens = {
|
|
|
3169
3169
|
"--t-form-font-color-error": "hsl(8, 60%, 45%)",
|
|
3170
3170
|
"--t-form-font-color-readonly": "hsl(0, 0%, 24%)",
|
|
3171
3171
|
"--t-form-picker-icon-color": "hsl(0, 0%, 24%)",
|
|
3172
|
-
"--t-form-placeholder-color": "hsl(0, 0%, 58%)"
|
|
3172
|
+
"--t-form-placeholder-color": "hsl(0, 0%, 58%)",
|
|
3173
|
+
"--t-border-color-default-base": "hsl(0, 0%, 88%)",
|
|
3174
|
+
"--t-border-color-default-dark": "hsl(0, 0%, 81%)",
|
|
3175
|
+
"--t-border-color-default-darker": "hsl(0, 0%, 68%)",
|
|
3176
|
+
"--t-border-color-default-darkest": "hsl(0, 0%, 58%)",
|
|
3177
|
+
"--t-border-color-default-dim": "hsl(0, 0%, 95%)",
|
|
3178
|
+
"--t-border-color-default-disabled": "hsl(0, 0%, 88%)",
|
|
3179
|
+
"--t-border-color-default-white": "hsl(0, 0%, 100%)",
|
|
3180
|
+
"--t-border-radius-default": "4px",
|
|
3181
|
+
"--t-border-width-default": "1px",
|
|
3182
|
+
"--t-fill-color-button-delete-ghost-default": "hsla(0, 0%, 100%, 0)",
|
|
3183
|
+
"--t-fill-color-button-delete-outline-default": "hsla(0, 0%, 100%, 0)",
|
|
3184
|
+
"--t-fill-color-button-delete-solid-default": "hsl(8, 60%, 47%)",
|
|
3185
|
+
"--t-fill-color-button-interaction-ghost-default": "hsla(0, 0%, 100%, 0)",
|
|
3186
|
+
"--t-fill-color-button-interaction-outline-default": "hsla(0, 0%, 100%, 0)",
|
|
3187
|
+
"--t-fill-color-button-interaction-solid-default": "hsl(204, 100%, 40%)",
|
|
3188
|
+
"--t-fill-color-button-neutral-ghost-default": "hsla(0, 0%, 100%, 0)",
|
|
3189
|
+
"--t-fill-color-button-neutral-outline-default": "hsla(0, 0%, 100%, 0)",
|
|
3190
|
+
"--t-fill-color-button-neutral-responsive-header-default": "hsla(0, 0%, 0%, 0.1)",
|
|
3191
|
+
"--t-fill-color-button-neutral-solid-default": "hsl(0, 0%, 93%)",
|
|
3192
|
+
"--t-fill-color-button-pill-default": "hsl(0, 0%, 93%)",
|
|
3193
|
+
"--t-fill-color-control-primary": "hsl(204, 100%, 40%)",
|
|
3194
|
+
"--t-fill-color-interaction-default": "hsl(204, 100%, 40%)",
|
|
3195
|
+
"--t-fill-color-product-staff-base": "hsl(328, 100%, 45%)",
|
|
3196
|
+
"--t-fill-color-status-error-primary": "hsl(8, 60%, 47%)",
|
|
3197
|
+
"--t-fill-color-tooltip-primary": "hsla(0, 0%, 12%, 0.9)",
|
|
3198
|
+
"--t-icon-color-default-dim": "hsl(0, 0%, 58%)",
|
|
3199
|
+
"--t-icon-color-default-disabled": "hsl(0, 0%, 81%)",
|
|
3200
|
+
"--t-icon-color-default-inverted": "hsl(0, 0%, 100%)",
|
|
3201
|
+
"--t-icon-color-default-primary": "hsl(0, 0%, 24%)",
|
|
3202
|
+
"--t-icon-color-default-secondary": "hsl(0, 0%, 42%)",
|
|
3203
|
+
"--t-icon-color-status-error-primary": "hsl(8, 60%, 47%)",
|
|
3204
|
+
"--t-icon-color-status-info-primary": "hsl(204, 100%, 40%)",
|
|
3205
|
+
"--t-icon-color-status-neutral-primary": "hsl(0, 0%, 42%)",
|
|
3206
|
+
"--t-icon-color-status-success-primary": "hsl(96, 57%, 33%)",
|
|
3207
|
+
"--t-icon-color-status-warning-primary": "hsl(42, 84%, 49%)",
|
|
3208
|
+
"--t-text-color-default-disabled": "hsl(0, 0%, 81%)",
|
|
3209
|
+
"--t-text-color-default-headline": "hsl(0, 0%, 12%)",
|
|
3210
|
+
"--t-text-color-default-inverted": "hsl(0, 0%, 100%)",
|
|
3211
|
+
"--t-text-color-default-placeholder": "hsl(0, 0%, 58%)",
|
|
3212
|
+
"--t-text-color-default-primary": "hsl(0, 0%, 24%)",
|
|
3213
|
+
"--t-text-color-default-secondary": "hsl(0, 0%, 42%)",
|
|
3214
|
+
"--t-text-color-interaction-primary": "hsl(204, 100%, 40%)"
|
|
3173
3215
|
};
|
|
3174
3216
|
function token(varName) {
|
|
3175
3217
|
return `var(${varName})`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@planningcenter/tapestry-migration-cli",
|
|
3
|
-
"version": "3.0.0-rc.
|
|
3
|
+
"version": "3.0.0-rc.23",
|
|
4
4
|
"description": "CLI tool for Tapestry migrations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "2b54f6f8cc75dfc9ee5333710e9be86797919b5d"
|
|
55
55
|
}
|