@uxf/cms 11.74.0 → 11.74.2
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/api/index.d.ts +165 -0
- package/api/index.js +100 -0
- package/api/swr.d.ts +76 -0
- package/api/swr.js +43 -0
- package/config/container.d.ts +29 -0
- package/config/container.js +24 -0
- package/config/index.d.ts +2 -0
- package/config/index.js +6 -0
- package/content-builder/content-builder-body.d.ts +6 -0
- package/content-builder/content-builder-body.js +10 -0
- package/content-builder/content-builder-header.d.ts +7 -0
- package/content-builder/content-builder-header.js +15 -0
- package/content-builder/content-builder-root.d.ts +11 -0
- package/content-builder/content-builder-root.js +13 -0
- package/content-builder/content-builder-sidebar.d.ts +7 -0
- package/content-builder/content-builder-sidebar.js +12 -0
- package/content-builder/content-builder.d.ts +14 -0
- package/content-builder/content-builder.js +57 -0
- package/content-builder/forms/content-builder-basic-form.d.ts +10 -0
- package/content-builder/forms/content-builder-basic-form.js +49 -0
- package/content-builder/forms/content-builder-seo-form.d.ts +10 -0
- package/content-builder/forms/content-builder-seo-form.js +22 -0
- package/content-builder/index.d.ts +4 -0
- package/content-builder/index.js +20 -0
- package/content-builder/map-content-response-to-form-data.d.ts +3 -0
- package/content-builder/map-content-response-to-form-data.js +44 -0
- package/content-builder/map-form-data-to-content-request.d.ts +2 -0
- package/content-builder/map-form-data-to-content-request.js +28 -0
- package/content-builder/translations.d.ts +127 -0
- package/content-builder/translations.js +128 -0
- package/content-builder/types.d.ts +186 -0
- package/content-builder/types.js +2 -0
- package/content-builder/use-content-builder-form-api.d.ts +3 -0
- package/content-builder/use-content-builder-form-api.js +7 -0
- package/context/cms-provider.d.ts +7 -0
- package/context/cms-provider.js +18 -0
- package/deprecated/api/api-client.d.ts +15 -0
- package/deprecated/api/api-client.js +86 -0
- package/deprecated/hoc/with-authenticate.d.ts +6 -0
- package/deprecated/hoc/with-authenticate.js +61 -0
- package/deprecated/redux/configure-store.d.ts +3 -0
- package/deprecated/redux/configure-store.js +16 -0
- package/deprecated/redux/entities/actions.d.ts +30 -0
- package/deprecated/redux/entities/actions.js +15 -0
- package/deprecated/redux/entities/index.d.ts +2 -0
- package/deprecated/redux/entities/index.js +18 -0
- package/deprecated/redux/entities/reducer.d.ts +3 -0
- package/deprecated/redux/entities/reducer.js +36 -0
- package/deprecated/redux/entities/selectors.d.ts +10 -0
- package/deprecated/redux/entities/selectors.js +16 -0
- package/deprecated/redux/index.d.ts +3 -0
- package/deprecated/redux/index.js +22 -0
- package/deprecated/redux/redux-helper.d.ts +15 -0
- package/deprecated/redux/redux-helper.js +6 -0
- package/deprecated/redux/types.d.ts +7 -0
- package/deprecated/redux/types.js +2 -0
- package/deprecated/redux/user/actions.d.ts +19 -0
- package/deprecated/redux/user/actions.js +14 -0
- package/deprecated/redux/user/index.d.ts +2 -0
- package/deprecated/redux/user/index.js +18 -0
- package/deprecated/redux/user/reducer.d.ts +3 -0
- package/deprecated/redux/user/reducer.js +21 -0
- package/deprecated/redux/user/selectors.d.ts +3 -0
- package/deprecated/redux/user/selectors.js +5 -0
- package/deprecated/redux/with-redux-store.d.ts +1 -0
- package/deprecated/redux/with-redux-store.js +70 -0
- package/deprecated/security/cms-authorizator.d.ts +3 -0
- package/deprecated/security/cms-authorizator.js +8 -0
- package/deprecated/types/app.d.ts +6 -0
- package/deprecated/types/app.js +2 -0
- package/deprecated/types/form.d.ts +25 -0
- package/deprecated/types/form.js +16 -0
- package/errors/BadRequestError.d.ts +18 -0
- package/errors/BadRequestError.js +14 -0
- package/errors/ForbiddenError.d.ts +4 -0
- package/errors/ForbiddenError.js +13 -0
- package/errors/NetworkError.d.ts +4 -0
- package/errors/NetworkError.js +13 -0
- package/errors/UnauthorizedError.d.ts +4 -0
- package/errors/UnauthorizedError.js +13 -0
- package/errors/ValidationError.d.ts +7 -0
- package/errors/ValidationError.js +17 -0
- package/form-renderer/field/content-dynamic.d.ts +8 -0
- package/form-renderer/field/content-dynamic.js +15 -0
- package/form-renderer/field/content.d.ts +5 -0
- package/form-renderer/field/content.js +38 -0
- package/forms/change-password-form/change-password-form.d.ts +3 -0
- package/forms/change-password-form/change-password-form.js +31 -0
- package/forms/change-password-form/index.d.ts +2 -0
- package/forms/change-password-form/index.js +18 -0
- package/forms/change-password-form/translations.d.ts +35 -0
- package/forms/change-password-form/translations.js +36 -0
- package/forms/change-password-form/types.d.ts +13 -0
- package/forms/change-password-form/types.js +2 -0
- package/forms/components/wysiwyg-input/index.d.ts +1 -0
- package/forms/components/wysiwyg-input/index.js +17 -0
- package/forms/components/wysiwyg-input/wysiwyg-input.d.ts +26 -0
- package/forms/components/wysiwyg-input/wysiwyg-input.js +83 -0
- package/forms/forgotten-password-form/forgotten-password-form.d.ts +3 -0
- package/forms/forgotten-password-form/forgotten-password-form.js +52 -0
- package/forms/forgotten-password-form/index.d.ts +2 -0
- package/forms/forgotten-password-form/index.js +18 -0
- package/forms/forgotten-password-form/translations.d.ts +17 -0
- package/forms/forgotten-password-form/translations.js +18 -0
- package/forms/forgotten-password-form/types.d.ts +10 -0
- package/forms/forgotten-password-form/types.js +2 -0
- package/forms/invite-user-form/index.d.ts +2 -0
- package/forms/invite-user-form/index.js +18 -0
- package/forms/invite-user-form/invite-user-form.d.ts +3 -0
- package/forms/invite-user-form/invite-user-form.js +33 -0
- package/forms/invite-user-form/translations.d.ts +35 -0
- package/forms/invite-user-form/translations.js +36 -0
- package/forms/invite-user-form/types.d.ts +15 -0
- package/forms/invite-user-form/types.js +2 -0
- package/forms/login-form/index.d.ts +2 -0
- package/forms/login-form/index.js +18 -0
- package/forms/login-form/login-form.d.ts +3 -0
- package/forms/login-form/login-form.js +51 -0
- package/forms/login-form/translations.d.ts +23 -0
- package/forms/login-form/translations.js +24 -0
- package/forms/login-form/types.d.ts +11 -0
- package/forms/login-form/types.js +2 -0
- package/forms/renew-password-form/index.d.ts +2 -0
- package/forms/renew-password-form/index.js +18 -0
- package/forms/renew-password-form/renew-password-form.d.ts +3 -0
- package/forms/renew-password-form/renew-password-form.js +53 -0
- package/forms/renew-password-form/translations.d.ts +29 -0
- package/forms/renew-password-form/translations.js +30 -0
- package/forms/renew-password-form/types.d.ts +11 -0
- package/forms/renew-password-form/types.js +2 -0
- package/lib/api/create-axios-instance.d.ts +6 -0
- package/lib/api/create-axios-instance.js +17 -0
- package/lib/api/create-axios-request.d.ts +3 -0
- package/lib/api/create-axios-request.js +39 -0
- package/lib/api/create-use-axios-request.d.ts +5 -0
- package/lib/api/create-use-axios-request.js +35 -0
- package/lib/api/index.d.ts +2 -0
- package/lib/api/index.js +19 -0
- package/lib/api/types.d.ts +18 -0
- package/lib/api/types.js +2 -0
- package/lib/layout/breadcrumbs.d.ts +9 -0
- package/lib/layout/breadcrumbs.js +21 -0
- package/lib/layout/index.d.ts +3 -0
- package/lib/layout/index.js +19 -0
- package/lib/layout/layout-container.d.ts +3 -0
- package/lib/layout/layout-container.js +22 -0
- package/lib/layout/layout.d.ts +3 -0
- package/lib/layout/layout.js +47 -0
- package/lib/layout/sidebar.d.ts +3 -0
- package/lib/layout/sidebar.js +77 -0
- package/lib/layout/styles.d.ts +1 -0
- package/lib/layout/styles.js +4 -0
- package/lib/layout/types.d.ts +36 -0
- package/lib/layout/types.js +2 -0
- package/lib/login-layout/index.d.ts +2 -0
- package/lib/login-layout/index.js +18 -0
- package/lib/login-layout/login-layout.d.ts +3 -0
- package/lib/login-layout/login-layout.js +19 -0
- package/lib/login-layout/types.d.ts +9 -0
- package/lib/login-layout/types.js +2 -0
- package/lib/menu/active-item-resolver.d.ts +7 -0
- package/lib/menu/active-item-resolver.js +42 -0
- package/lib/menu/factory.d.ts +10 -0
- package/lib/menu/factory.js +40 -0
- package/lib/menu/index.d.ts +5 -0
- package/lib/menu/index.js +21 -0
- package/lib/menu/mobile-bar.d.ts +8 -0
- package/lib/menu/mobile-bar.js +54 -0
- package/lib/menu/model.d.ts +56 -0
- package/lib/menu/model.js +112 -0
- package/lib/menu/types.d.ts +5 -0
- package/lib/menu/types.js +2 -0
- package/lib/menu/ui/list-item/index.d.ts +2 -0
- package/lib/menu/ui/list-item/index.js +18 -0
- package/lib/menu/ui/list-item/list-item.d.ts +3 -0
- package/lib/menu/ui/list-item/list-item.js +37 -0
- package/lib/menu/ui/list-item/types.d.ts +19 -0
- package/lib/menu/ui/list-item/types.js +2 -0
- package/lib/menu/ui/menu-custom-item.d.ts +6 -0
- package/lib/menu/ui/menu-custom-item.js +17 -0
- package/lib/menu/ui/menu-item.d.ts +6 -0
- package/lib/menu/ui/menu-item.js +55 -0
- package/lib/menu/ui/menu-super-section-item.d.ts +6 -0
- package/lib/menu/ui/menu-super-section-item.js +40 -0
- package/lib/menu/ui/menu.d.ts +6 -0
- package/lib/menu/ui/menu.js +37 -0
- package/lib/menu/ui/sub-menu/sub-menu-item.d.ts +7 -0
- package/lib/menu/ui/sub-menu/sub-menu-item.js +23 -0
- package/lib/menu/ui/sub-menu/sub-menu-mobile.d.ts +8 -0
- package/lib/menu/ui/sub-menu/sub-menu-mobile.js +48 -0
- package/lib/menu/ui/sub-menu/sub-menu.d.ts +7 -0
- package/lib/menu/ui/sub-menu/sub-menu.js +46 -0
- package/lib/menu/ui/sub-menu/use-sub-menu.d.ts +49 -0
- package/lib/menu/ui/sub-menu/use-sub-menu.js +45 -0
- package/lib/menu/ui/translations.d.ts +17 -0
- package/lib/menu/ui/translations.js +18 -0
- package/lib/menu/ui/user-menu.d.ts +6 -0
- package/lib/menu/ui/user-menu.js +55 -0
- package/package.json +6 -6
- package/pages/content-builder/components/form-content.d.ts +12 -0
- package/pages/content-builder/components/form-content.js +64 -0
- package/pages/content-builder/components/form-root-fields.d.ts +16 -0
- package/pages/content-builder/components/form-root-fields.js +62 -0
- package/pages/content-builder/components/form.d.ts +12 -0
- package/pages/content-builder/components/form.js +83 -0
- package/pages/content-builder/components/header.d.ts +6 -0
- package/pages/content-builder/components/header.js +18 -0
- package/pages/content-builder/constants.d.ts +6 -0
- package/pages/content-builder/constants.js +10 -0
- package/pages/content-builder/content/feature-section.d.ts +17 -0
- package/pages/content-builder/content/feature-section.js +62 -0
- package/pages/content-builder/content/gallery.d.ts +9 -0
- package/pages/content-builder/content/gallery.js +29 -0
- package/pages/content-builder/content/hero-section.d.ts +12 -0
- package/pages/content-builder/content/hero-section.js +35 -0
- package/pages/content-builder/content/people.d.ts +17 -0
- package/pages/content-builder/content/people.js +61 -0
- package/pages/content-builder/content/wysiwyg.d.ts +15 -0
- package/pages/content-builder/content/wysiwyg.js +32 -0
- package/pages/content-builder/content-builder-page.d.ts +3 -0
- package/pages/content-builder/content-builder-page.js +107 -0
- package/pages/content-builder/content-field.d.ts +10 -0
- package/pages/content-builder/content-field.js +62 -0
- package/pages/content-builder/content-header.d.ts +3 -0
- package/pages/content-builder/content-header.js +55 -0
- package/pages/content-builder/context/details-visibility-context.d.ts +4 -0
- package/pages/content-builder/context/details-visibility-context.js +58 -0
- package/pages/content-builder/hooks/use-sortable.d.ts +15 -0
- package/pages/content-builder/hooks/use-sortable.js +57 -0
- package/pages/content-builder/index.d.ts +5 -0
- package/pages/content-builder/index.js +21 -0
- package/pages/content-builder/mapper.d.ts +4 -0
- package/pages/content-builder/mapper.js +69 -0
- package/pages/content-builder/types.d.ts +94 -0
- package/pages/content-builder/types.js +2 -0
- package/pages/forgotten-password-page/forgotten-password-page.d.ts +5 -0
- package/pages/forgotten-password-page/forgotten-password-page.js +49 -0
- package/pages/forgotten-password-page/index.d.ts +2 -0
- package/pages/forgotten-password-page/index.js +18 -0
- package/pages/forgotten-password-page/types.d.ts +11 -0
- package/pages/forgotten-password-page/types.js +2 -0
- package/pages/grid-page/get-initial-props-helper.d.ts +4 -0
- package/pages/grid-page/get-initial-props-helper.js +20 -0
- package/pages/grid-page/grid-page.d.ts +6 -0
- package/pages/grid-page/grid-page.js +161 -0
- package/pages/grid-page/index.d.ts +1 -0
- package/pages/grid-page/index.js +5 -0
- package/pages/grid-page/types.d.ts +65 -0
- package/pages/grid-page/types.js +2 -0
- package/pages/grid-page/use-hidden-columns.d.ts +4 -0
- package/pages/grid-page/use-hidden-columns.js +17 -0
- package/pages/invite-user-page/index.d.ts +2 -0
- package/pages/invite-user-page/index.js +18 -0
- package/pages/invite-user-page/invite-user-page.d.ts +2 -0
- package/pages/invite-user-page/invite-user-page.js +57 -0
- package/pages/invite-user-page/types.d.ts +12 -0
- package/pages/invite-user-page/types.js +2 -0
- package/pages/login-page/index.d.ts +2 -0
- package/pages/login-page/index.js +18 -0
- package/pages/login-page/login-page.d.ts +5 -0
- package/pages/login-page/login-page.js +80 -0
- package/pages/login-page/types.d.ts +21 -0
- package/pages/login-page/types.js +2 -0
- package/pages/renew-password-page/index.d.ts +2 -0
- package/pages/renew-password-page/index.js +18 -0
- package/pages/renew-password-page/renew-password-page.d.ts +9 -0
- package/pages/renew-password-page/renew-password-page.js +53 -0
- package/pages/renew-password-page/types.d.ts +14 -0
- package/pages/renew-password-page/types.js +2 -0
- package/pages/translations.d.ts +93 -0
- package/pages/translations.js +94 -0
- package/security/restricted-page.d.ts +10 -0
- package/security/restricted-page.js +40 -0
- package/security/translations.d.ts +29 -0
- package/security/translations.js +30 -0
- package/security/use-logged-user.d.ts +5 -0
- package/security/use-logged-user.js +17 -0
- package/translations/cs.json +125 -0
- package/translations/de.json +83 -0
- package/translations/en.json +83 -0
- package/translations/sk.json +83 -0
- package/ui/avatar/avatar.d.ts +11 -0
- package/ui/avatar/avatar.js +47 -0
- package/ui/avatar/get-avatar-user-letters.d.ts +1 -0
- package/ui/avatar/get-avatar-user-letters.js +18 -0
- package/ui/avatar/index.d.ts +3 -0
- package/ui/avatar/index.js +5 -0
- package/ui/avatar/theme.d.ts +11 -0
- package/ui/avatar/theme.js +2 -0
- package/ui/copy-to-clipboard/copy-to-clipboard.d.ts +3 -0
- package/ui/copy-to-clipboard/copy-to-clipboard.js +47 -0
- package/ui/copy-to-clipboard/index.d.ts +2 -0
- package/ui/copy-to-clipboard/index.js +18 -0
- package/ui/copy-to-clipboard/translations.d.ts +17 -0
- package/ui/copy-to-clipboard/translations.js +18 -0
- package/ui/copy-to-clipboard/types.d.ts +7 -0
- package/ui/copy-to-clipboard/types.js +2 -0
- package/ui/copy-to-clipboard-button/copy-to-clipboard-button.d.ts +3 -0
- package/ui/copy-to-clipboard-button/copy-to-clipboard-button.js +48 -0
- package/ui/copy-to-clipboard-button/index.d.ts +2 -0
- package/ui/copy-to-clipboard-button/index.js +18 -0
- package/ui/copy-to-clipboard-button/translations.d.ts +17 -0
- package/ui/copy-to-clipboard-button/translations.js +18 -0
- package/ui/copy-to-clipboard-button/types.d.ts +6 -0
- package/ui/copy-to-clipboard-button/types.js +2 -0
- package/ui/index.d.ts +1 -0
- package/ui/index.js +6 -0
- package/ui/tw-tokens/tw-box-shadow.d.ts +12 -0
- package/ui/tw-tokens/tw-box-shadow.js +15 -0
- package/ui/tw-tokens/tw-colors.d.ts +475 -0
- package/ui/tw-tokens/tw-colors.js +474 -0
- package/ui/tw-tokens/tw-containers.d.ts +8 -0
- package/ui/tw-tokens/tw-containers.js +5 -0
- package/ui/tw-tokens/tw-font-size.d.ts +55 -0
- package/ui/tw-tokens/tw-font-size.js +32 -0
- package/ui/tw-tokens/tw-font-weight.d.ts +12 -0
- package/ui/tw-tokens/tw-font-weight.js +15 -0
- package/ui/tw-tokens/tw-line-height.d.ts +17 -0
- package/ui/tw-tokens/tw-line-height.js +20 -0
- package/ui/tw-tokens/tw-screens.d.ts +8 -0
- package/ui/tw-tokens/tw-screens.js +5 -0
- package/ui/tw-tokens/tw-spacing.d.ts +39 -0
- package/ui/tw-tokens/tw-spacing.js +42 -0
- package/ui/tw-tokens/tw-z-index.d.ts +21 -0
- package/ui/tw-tokens/tw-z-index.js +24 -0
- package/ui/widget/index.d.ts +2 -0
- package/ui/widget/index.js +18 -0
- package/ui/widget/types.d.ts +6 -0
- package/ui/widget/types.js +2 -0
- package/ui/widget/widget.d.ts +3 -0
- package/ui/widget/widget.js +15 -0
- package/utils/remove-confirm-handler.d.ts +1 -0
- package/utils/remove-confirm-handler.js +31 -0
- package/utils/translations.d.ts +23 -0
- package/utils/translations.js +24 -0
- package/utils/use-viewport-height.d.ts +3 -0
- package/utils/use-viewport-height.js +28 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
"use strict";
|
2
|
+
// this file is generated automatically, do not change anything manually in the contents of this file
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
4
|
+
exports.twBoxShadow = void 0;
|
5
|
+
exports.twBoxShadow = {
|
6
|
+
sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
|
7
|
+
DEFAULT: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
|
8
|
+
md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
|
9
|
+
lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
|
10
|
+
xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
|
11
|
+
"2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
|
12
|
+
inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
|
13
|
+
none: "none",
|
14
|
+
paper: "0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06)",
|
15
|
+
};
|
@@ -0,0 +1,475 @@
|
|
1
|
+
export declare const twColors: {
|
2
|
+
inherit: string;
|
3
|
+
current: string;
|
4
|
+
transparent: string;
|
5
|
+
black: string;
|
6
|
+
white: string;
|
7
|
+
slate: {
|
8
|
+
"50": string;
|
9
|
+
"100": string;
|
10
|
+
"200": string;
|
11
|
+
"300": string;
|
12
|
+
"400": string;
|
13
|
+
"500": string;
|
14
|
+
"600": string;
|
15
|
+
"700": string;
|
16
|
+
"800": string;
|
17
|
+
"900": string;
|
18
|
+
"950": string;
|
19
|
+
};
|
20
|
+
gray: {
|
21
|
+
"50": string;
|
22
|
+
"100": string;
|
23
|
+
"200": string;
|
24
|
+
"300": string;
|
25
|
+
"400": string;
|
26
|
+
"500": string;
|
27
|
+
"600": string;
|
28
|
+
"700": string;
|
29
|
+
"800": string;
|
30
|
+
"900": string;
|
31
|
+
"950": string;
|
32
|
+
};
|
33
|
+
zinc: {
|
34
|
+
"50": string;
|
35
|
+
"100": string;
|
36
|
+
"200": string;
|
37
|
+
"300": string;
|
38
|
+
"400": string;
|
39
|
+
"500": string;
|
40
|
+
"600": string;
|
41
|
+
"700": string;
|
42
|
+
"800": string;
|
43
|
+
"900": string;
|
44
|
+
"950": string;
|
45
|
+
};
|
46
|
+
neutral: {
|
47
|
+
"50": string;
|
48
|
+
"100": string;
|
49
|
+
"200": string;
|
50
|
+
"300": string;
|
51
|
+
"400": string;
|
52
|
+
"500": string;
|
53
|
+
"600": string;
|
54
|
+
"700": string;
|
55
|
+
"800": string;
|
56
|
+
"900": string;
|
57
|
+
"950": string;
|
58
|
+
};
|
59
|
+
stone: {
|
60
|
+
"50": string;
|
61
|
+
"100": string;
|
62
|
+
"200": string;
|
63
|
+
"300": string;
|
64
|
+
"400": string;
|
65
|
+
"500": string;
|
66
|
+
"600": string;
|
67
|
+
"700": string;
|
68
|
+
"800": string;
|
69
|
+
"900": string;
|
70
|
+
"950": string;
|
71
|
+
};
|
72
|
+
red: {
|
73
|
+
"50": string;
|
74
|
+
"100": string;
|
75
|
+
"200": string;
|
76
|
+
"300": string;
|
77
|
+
"400": string;
|
78
|
+
"500": string;
|
79
|
+
"600": string;
|
80
|
+
"700": string;
|
81
|
+
"800": string;
|
82
|
+
"900": string;
|
83
|
+
"950": string;
|
84
|
+
};
|
85
|
+
orange: {
|
86
|
+
"50": string;
|
87
|
+
"100": string;
|
88
|
+
"200": string;
|
89
|
+
"300": string;
|
90
|
+
"400": string;
|
91
|
+
"500": string;
|
92
|
+
"600": string;
|
93
|
+
"700": string;
|
94
|
+
"800": string;
|
95
|
+
"900": string;
|
96
|
+
"950": string;
|
97
|
+
};
|
98
|
+
amber: {
|
99
|
+
"50": string;
|
100
|
+
"100": string;
|
101
|
+
"200": string;
|
102
|
+
"300": string;
|
103
|
+
"400": string;
|
104
|
+
"500": string;
|
105
|
+
"600": string;
|
106
|
+
"700": string;
|
107
|
+
"800": string;
|
108
|
+
"900": string;
|
109
|
+
"950": string;
|
110
|
+
};
|
111
|
+
yellow: {
|
112
|
+
"50": string;
|
113
|
+
"100": string;
|
114
|
+
"200": string;
|
115
|
+
"300": string;
|
116
|
+
"400": string;
|
117
|
+
"500": string;
|
118
|
+
"600": string;
|
119
|
+
"700": string;
|
120
|
+
"800": string;
|
121
|
+
"900": string;
|
122
|
+
"950": string;
|
123
|
+
};
|
124
|
+
lime: {
|
125
|
+
"50": string;
|
126
|
+
"100": string;
|
127
|
+
"200": string;
|
128
|
+
"300": string;
|
129
|
+
"400": string;
|
130
|
+
"500": string;
|
131
|
+
"600": string;
|
132
|
+
"700": string;
|
133
|
+
"800": string;
|
134
|
+
"900": string;
|
135
|
+
"950": string;
|
136
|
+
};
|
137
|
+
green: {
|
138
|
+
"50": string;
|
139
|
+
"100": string;
|
140
|
+
"200": string;
|
141
|
+
"300": string;
|
142
|
+
"400": string;
|
143
|
+
"500": string;
|
144
|
+
"600": string;
|
145
|
+
"700": string;
|
146
|
+
"800": string;
|
147
|
+
"900": string;
|
148
|
+
"950": string;
|
149
|
+
};
|
150
|
+
emerald: {
|
151
|
+
"50": string;
|
152
|
+
"100": string;
|
153
|
+
"200": string;
|
154
|
+
"300": string;
|
155
|
+
"400": string;
|
156
|
+
"500": string;
|
157
|
+
"600": string;
|
158
|
+
"700": string;
|
159
|
+
"800": string;
|
160
|
+
"900": string;
|
161
|
+
"950": string;
|
162
|
+
};
|
163
|
+
teal: {
|
164
|
+
"50": string;
|
165
|
+
"100": string;
|
166
|
+
"200": string;
|
167
|
+
"300": string;
|
168
|
+
"400": string;
|
169
|
+
"500": string;
|
170
|
+
"600": string;
|
171
|
+
"700": string;
|
172
|
+
"800": string;
|
173
|
+
"900": string;
|
174
|
+
"950": string;
|
175
|
+
};
|
176
|
+
cyan: {
|
177
|
+
"50": string;
|
178
|
+
"100": string;
|
179
|
+
"200": string;
|
180
|
+
"300": string;
|
181
|
+
"400": string;
|
182
|
+
"500": string;
|
183
|
+
"600": string;
|
184
|
+
"700": string;
|
185
|
+
"800": string;
|
186
|
+
"900": string;
|
187
|
+
"950": string;
|
188
|
+
};
|
189
|
+
sky: {
|
190
|
+
"50": string;
|
191
|
+
"100": string;
|
192
|
+
"200": string;
|
193
|
+
"300": string;
|
194
|
+
"400": string;
|
195
|
+
"500": string;
|
196
|
+
"600": string;
|
197
|
+
"700": string;
|
198
|
+
"800": string;
|
199
|
+
"900": string;
|
200
|
+
"950": string;
|
201
|
+
};
|
202
|
+
blue: {
|
203
|
+
"50": string;
|
204
|
+
"100": string;
|
205
|
+
"200": string;
|
206
|
+
"300": string;
|
207
|
+
"400": string;
|
208
|
+
"500": string;
|
209
|
+
"600": string;
|
210
|
+
"700": string;
|
211
|
+
"800": string;
|
212
|
+
"900": string;
|
213
|
+
"950": string;
|
214
|
+
};
|
215
|
+
indigo: {
|
216
|
+
"50": string;
|
217
|
+
"100": string;
|
218
|
+
"200": string;
|
219
|
+
"300": string;
|
220
|
+
"400": string;
|
221
|
+
"500": string;
|
222
|
+
"600": string;
|
223
|
+
"700": string;
|
224
|
+
"800": string;
|
225
|
+
"900": string;
|
226
|
+
"950": string;
|
227
|
+
};
|
228
|
+
violet: {
|
229
|
+
"50": string;
|
230
|
+
"100": string;
|
231
|
+
"200": string;
|
232
|
+
"300": string;
|
233
|
+
"400": string;
|
234
|
+
"500": string;
|
235
|
+
"600": string;
|
236
|
+
"700": string;
|
237
|
+
"800": string;
|
238
|
+
"900": string;
|
239
|
+
"950": string;
|
240
|
+
};
|
241
|
+
purple: {
|
242
|
+
"50": string;
|
243
|
+
"100": string;
|
244
|
+
"200": string;
|
245
|
+
"300": string;
|
246
|
+
"400": string;
|
247
|
+
"500": string;
|
248
|
+
"600": string;
|
249
|
+
"700": string;
|
250
|
+
"800": string;
|
251
|
+
"900": string;
|
252
|
+
"950": string;
|
253
|
+
};
|
254
|
+
fuchsia: {
|
255
|
+
"50": string;
|
256
|
+
"100": string;
|
257
|
+
"200": string;
|
258
|
+
"300": string;
|
259
|
+
"400": string;
|
260
|
+
"500": string;
|
261
|
+
"600": string;
|
262
|
+
"700": string;
|
263
|
+
"800": string;
|
264
|
+
"900": string;
|
265
|
+
"950": string;
|
266
|
+
};
|
267
|
+
pink: {
|
268
|
+
"50": string;
|
269
|
+
"100": string;
|
270
|
+
"200": string;
|
271
|
+
"300": string;
|
272
|
+
"400": string;
|
273
|
+
"500": string;
|
274
|
+
"600": string;
|
275
|
+
"700": string;
|
276
|
+
"800": string;
|
277
|
+
"900": string;
|
278
|
+
"950": string;
|
279
|
+
};
|
280
|
+
rose: {
|
281
|
+
"50": string;
|
282
|
+
"100": string;
|
283
|
+
"200": string;
|
284
|
+
"300": string;
|
285
|
+
"400": string;
|
286
|
+
"500": string;
|
287
|
+
"600": string;
|
288
|
+
"700": string;
|
289
|
+
"800": string;
|
290
|
+
"900": string;
|
291
|
+
"950": string;
|
292
|
+
};
|
293
|
+
lightHigh: string;
|
294
|
+
lightMedium: string;
|
295
|
+
lightLow: string;
|
296
|
+
darkHigh: string;
|
297
|
+
darkMedium: string;
|
298
|
+
darkLow: string;
|
299
|
+
lightBorder: string;
|
300
|
+
darkBorder: string;
|
301
|
+
primary: {
|
302
|
+
"50": string;
|
303
|
+
"100": string;
|
304
|
+
"200": string;
|
305
|
+
"300": string;
|
306
|
+
"400": string;
|
307
|
+
"500": string;
|
308
|
+
"600": string;
|
309
|
+
"700": string;
|
310
|
+
"800": string;
|
311
|
+
"900": string;
|
312
|
+
DEFAULT: string;
|
313
|
+
};
|
314
|
+
success: {
|
315
|
+
"50": string;
|
316
|
+
"100": string;
|
317
|
+
"200": string;
|
318
|
+
"300": string;
|
319
|
+
"400": string;
|
320
|
+
"500": string;
|
321
|
+
"600": string;
|
322
|
+
"700": string;
|
323
|
+
"800": string;
|
324
|
+
"900": string;
|
325
|
+
DEFAULT: string;
|
326
|
+
};
|
327
|
+
warning: {
|
328
|
+
"50": string;
|
329
|
+
"100": string;
|
330
|
+
"200": string;
|
331
|
+
"300": string;
|
332
|
+
"400": string;
|
333
|
+
"500": string;
|
334
|
+
"600": string;
|
335
|
+
"700": string;
|
336
|
+
"800": string;
|
337
|
+
"900": string;
|
338
|
+
DEFAULT: string;
|
339
|
+
};
|
340
|
+
error: {
|
341
|
+
"50": string;
|
342
|
+
"100": string;
|
343
|
+
"200": string;
|
344
|
+
"300": string;
|
345
|
+
"400": string;
|
346
|
+
"500": string;
|
347
|
+
"600": string;
|
348
|
+
"700": string;
|
349
|
+
"800": string;
|
350
|
+
"900": string;
|
351
|
+
DEFAULT: string;
|
352
|
+
};
|
353
|
+
test: string;
|
354
|
+
base_border_border: string;
|
355
|
+
base_border_input: string;
|
356
|
+
base_border_inverted_border: string;
|
357
|
+
base_border_inverted_input: string;
|
358
|
+
base_icon_disabled: string;
|
359
|
+
base_icon_high_emphasis: string;
|
360
|
+
base_icon_low_emphasis: string;
|
361
|
+
base_icon_medium_emphasis: string;
|
362
|
+
base_icon_inverted_low_emphasis: string;
|
363
|
+
base_icon_inverted_disabled: string;
|
364
|
+
base_icon_inverted_high_emphasis: string;
|
365
|
+
base_shadow_shadow_md: string;
|
366
|
+
base_shadow_shadow_sm: string;
|
367
|
+
base_surface_background: string;
|
368
|
+
base_surface_disabled: string;
|
369
|
+
base_surface_input: string;
|
370
|
+
base_surface_input_disabled: string;
|
371
|
+
base_surface_input_hover: string;
|
372
|
+
base_surface_main: string;
|
373
|
+
base_surface_main_hover: string;
|
374
|
+
base_surface_popup: string;
|
375
|
+
base_surface_tooltip: string;
|
376
|
+
base_surface_inverted_default: string;
|
377
|
+
base_surface_inverted_default_hover: string;
|
378
|
+
base_surface_inverted_disabled: string;
|
379
|
+
base_surface_inverted_main: string;
|
380
|
+
base_surface_inverted_main_hover: string;
|
381
|
+
base_text_disabled: string;
|
382
|
+
base_text_high_emphasis: string;
|
383
|
+
base_text_link: string;
|
384
|
+
base_text_link_pressed: string;
|
385
|
+
base_text_low_emphasis: string;
|
386
|
+
base_text_inverted_disabled: string;
|
387
|
+
base_text_inverted_high_emphasis: string;
|
388
|
+
base_text_inverted_link: string;
|
389
|
+
base_text_inverted_low_emphasis: string;
|
390
|
+
brand_border: string;
|
391
|
+
brand_icon: string;
|
392
|
+
brand_icon_on_muted: string;
|
393
|
+
brand_text: string;
|
394
|
+
brand_text_on_muted: string;
|
395
|
+
brand_surface_bolder: string;
|
396
|
+
brand_surface_bolder_hover: string;
|
397
|
+
brand_surface_default: string;
|
398
|
+
brand_surface_default_hover: string;
|
399
|
+
brand_surface_muted: string;
|
400
|
+
brand_surface_muted_hover: string;
|
401
|
+
brand_surface_subtle: string;
|
402
|
+
brand_surface_subtle_hover: string;
|
403
|
+
info_border: string;
|
404
|
+
info_icon: string;
|
405
|
+
info_icon_on_muted: string;
|
406
|
+
info_text: string;
|
407
|
+
info_text_on_muted: string;
|
408
|
+
info_surface_default: string;
|
409
|
+
info_surface_default_hover: string;
|
410
|
+
info_surface_muted: string;
|
411
|
+
info_surface_muted_hover: string;
|
412
|
+
info_surface_subtle: string;
|
413
|
+
info_surface_subtle_hover: string;
|
414
|
+
inverted_border: string;
|
415
|
+
inverted_icon: string;
|
416
|
+
inverted_icon_on_muted: string;
|
417
|
+
inverted_text_default: string;
|
418
|
+
inverted_text_disabled: string;
|
419
|
+
inverted_text_muted: string;
|
420
|
+
inverted_text_on_muted: string;
|
421
|
+
negative_border: string;
|
422
|
+
negative_icon: string;
|
423
|
+
negative_icon_on_muted: string;
|
424
|
+
negative_text: string;
|
425
|
+
negative_text_on_muted: string;
|
426
|
+
negative_surface_default: string;
|
427
|
+
negative_surface_default_hover: string;
|
428
|
+
negative_surface_muted: string;
|
429
|
+
negative_surface_muted_hover: string;
|
430
|
+
negative_surface_subtle: string;
|
431
|
+
negative_surface_subtle_hover: string;
|
432
|
+
neutral_border: string;
|
433
|
+
neutral_icon: string;
|
434
|
+
neutral_icon_on_muted: string;
|
435
|
+
neutral_text: string;
|
436
|
+
neutral_text_on_muted: string;
|
437
|
+
neutral_surface_bolder: string;
|
438
|
+
neutral_surface_bolder_hover: string;
|
439
|
+
neutral_surface_default: string;
|
440
|
+
neutral_surface_default_hover: string;
|
441
|
+
neutral_surface_muted: string;
|
442
|
+
neutral_surface_muted_hover: string;
|
443
|
+
neutral_surface_subtle: string;
|
444
|
+
neutral_surface_subtle_hover: string;
|
445
|
+
positive_border: string;
|
446
|
+
positive_icon: string;
|
447
|
+
positive_icon_on_muted: string;
|
448
|
+
positive_text: string;
|
449
|
+
positive_text_on_muted: string;
|
450
|
+
positive_surface_default: string;
|
451
|
+
positive_surface_default_hover: string;
|
452
|
+
positive_surface_muted: string;
|
453
|
+
positive_surface_muted_hover: string;
|
454
|
+
positive_surface_subtle: string;
|
455
|
+
positive_surface_subtle_hover: string;
|
456
|
+
warning_border: string;
|
457
|
+
warning_icon: string;
|
458
|
+
warning_icon_on_muted: string;
|
459
|
+
warning_text: string;
|
460
|
+
warning_text_on_muted: string;
|
461
|
+
warning_surface_default: string;
|
462
|
+
warning_surface_default_hover: string;
|
463
|
+
warning_surface_muted: string;
|
464
|
+
warning_surface_muted_hover: string;
|
465
|
+
warning_surface_subtle: string;
|
466
|
+
warning_surface_subtle_hover: string;
|
467
|
+
dataGridPrimary: string;
|
468
|
+
dataGridSecondary: string;
|
469
|
+
sidebar: {
|
470
|
+
background: string;
|
471
|
+
highlight: string;
|
472
|
+
hover: string;
|
473
|
+
};
|
474
|
+
};
|
475
|
+
export type TwColors = typeof twColors;
|