@arthurzakharov/ui-kit 1.2.3 → 1.2.5
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/assets/footer-Dt0rYt73.css +1 -0
- package/dist/assets/not-found-ColZD3Vb.css +1 -0
- package/dist/assets/signature-CLmBTe_C.css +1 -0
- package/dist/components/certifications/certifications.component.d.ts +2 -5
- package/dist/components/certifications/certifications.component.js +48 -17
- package/dist/components/certifications/certifications.types.d.ts +6 -0
- package/dist/components/certifications/index.d.ts +2 -0
- package/dist/components/certifications/index.js +4 -0
- package/dist/components/footer/footer.component.d.ts +2 -9
- package/dist/components/footer/footer.component.js +32 -29
- package/dist/components/footer/footer.types.d.ts +10 -0
- package/dist/components/footer/footer.types.js +1 -0
- package/dist/components/footer/index.d.ts +2 -0
- package/dist/components/footer/index.js +4 -0
- package/dist/components/message-block/message-block.component.js +1 -1
- package/dist/components/not-found/index.d.ts +2 -0
- package/dist/components/not-found/index.js +4 -0
- package/dist/components/not-found/not-found.component.d.ts +2 -10
- package/dist/components/not-found/not-found.component.js +26 -26
- package/dist/components/not-found/not-found.types.d.ts +12 -0
- package/dist/components/not-found/not-found.types.js +1 -0
- package/dist/components/sidebar/sidebar.component.d.ts +1 -1
- package/dist/components/signature/signature.component.js +122 -122
- package/dist/main.d.ts +3 -3
- package/dist/utils/types.d.ts +3 -0
- package/package.json +15 -5
- package/dist/assets/footer-Dwb-_jI0.css +0 -1
- package/dist/assets/signature-Cd87a2ey.css +0 -1
- package/dist/assets/tag-create-CXB1HuBg.css +0 -1
- package/dist/components/tag/block.component.d.ts +0 -32
- package/dist/components/tag/block.component.js +0 -5
- package/dist/components/tag/css-variables-map.util.d.ts +0 -32
- package/dist/components/tag/css-variables-map.util.js +0 -35
- package/dist/components/tag/flex.component.d.ts +0 -127
- package/dist/components/tag/flex.component.js +0 -10
- package/dist/components/tag/inline-block.component.d.ts +0 -32
- package/dist/components/tag/inline-block.component.js +0 -5
- package/dist/components/tag/inline-flex.component.d.ts +0 -127
- package/dist/components/tag/inline-flex.component.js +0 -10
- package/dist/components/tag/inline.component.d.ts +0 -32
- package/dist/components/tag/inline.component.js +0 -5
- package/dist/components/tag/table.component.d.ts +0 -189
- package/dist/components/tag/table.component.js +0 -12
- package/dist/components/tag/tag-create.d.ts +0 -32
- package/dist/components/tag/tag-create.js +0 -79
- package/dist/components/tag/tag.types.d.ts +0 -61
- package/dist/components/tag/use-mq.hook.d.ts +0 -6
- package/dist/components/tag/use-mq.hook.js +0 -9
- /package/dist/components/{tag/tag.types.js → certifications/certifications.types.js} +0 -0
package/dist/main.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
export { AccordionTable, type AccordionTableProps } from './components/accordion-table/accordion-table.component';
|
|
2
2
|
export { Animation, type FadeScaleProps, type FadeSlideProps } from './components/animation/animation.component';
|
|
3
3
|
export { BottomBar, type BottomBarProps } from './components/bottom-bar/bottom-bar.component';
|
|
4
|
-
export { Certifications, type CertificationsProps
|
|
4
|
+
export { Certifications, type CertificationsProps } from './components/certifications';
|
|
5
5
|
export { Control, type BoxProps, type ButtonProps, type ButtonCardProps, type ButtonRadioProps, type ButtonRadioInfo, type ButtonTextProps, type CardImageProps, type CardTextProps, type CheckboxProps, type ChoiceProps, type DropdownProps, type HiddenInputProps, type InputProps, type LabelProps, type RadioProps, type RadioLabelProps, type RadioLabelChild, type RadioTextProps, type StatusProps, type TextProps, type TextareaProps, type InputChangeSource, type Interactive, type RadioChoice, type ChoiceType, type ChoiceValue, type State, type QuestionPath, type QuestionChoice, type Size, } from './components/control/control.component';
|
|
6
6
|
export { DataProtectedLabel, type DataProtectedLabelProps, } from './components/data-protected-label/data-protected-label.component';
|
|
7
7
|
export { Dialog, type DialogProps, type DialogSize, type DialogPosition } from './components/dialog/dialog.component';
|
|
8
8
|
export { DialogArticle, type DialogArticleProps, type DialogActionButton, } from './components/dialog-article/dialog-article.component';
|
|
9
9
|
export { Expenses, type ExpensesProps } from './components/expenses/expenses.component';
|
|
10
10
|
export { Flex, type FlexProps } from './components/flex/flex.component';
|
|
11
|
-
export { Footer, type FooterProps
|
|
11
|
+
export { Footer, type FooterProps } from './components/footer';
|
|
12
12
|
export { FormRow, type FormRowProps } from './components/form-row/form-row.component';
|
|
13
13
|
export { Header, type HeaderProps, type HeaderDescription } from './components/header/header.component';
|
|
14
14
|
export { InfoPanel, type InfoPanelProps } from './components/info-panel/info-panel.component';
|
|
@@ -20,7 +20,7 @@ export { LoadingBlock } from './components/loading-block/loading-block.component
|
|
|
20
20
|
export { MainAttachment, type MainAttachmentProps } from './components/main-attachment/main-attachment.component';
|
|
21
21
|
export { Message, type MessageProps } from './components/message/message.component';
|
|
22
22
|
export { MessageBlock, type MessageBlockProps } from './components/message-block/message-block.component';
|
|
23
|
-
export { NotFound, type NotFoundProps } from './components/not-found
|
|
23
|
+
export { NotFound, type NotFoundProps } from './components/not-found';
|
|
24
24
|
export { Payment, type PaymentBlockProps, type PaymentGlassProps, type PaymentSidebarProps, type PaymentTextBlocksProps, type PaymentTextBlockItem, } from './components/payment/payment.component';
|
|
25
25
|
export { Sidebar, type SidebarProps } from './components/sidebar/sidebar.component';
|
|
26
26
|
export { Signature, type SignatureProps, type SignatureMode } from './components/signature/signature.component';
|
package/dist/utils/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arthurzakharov/ui-kit",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/main.js",
|
|
7
7
|
"types": "dist/main.d.ts",
|
|
@@ -23,9 +23,10 @@
|
|
|
23
23
|
"lint:fix": "eslint . --fix",
|
|
24
24
|
"prettier:check": "prettier --check --log-level=log .",
|
|
25
25
|
"prettier:fix": "prettier --write --log-level=log .",
|
|
26
|
-
"test:once": "vitest run",
|
|
27
|
-
"test:watch": "vitest --watch",
|
|
28
|
-
"
|
|
26
|
+
"test:unit:once": "vitest run --project unit",
|
|
27
|
+
"test:unit:watch": "vitest --project unit --watch",
|
|
28
|
+
"storybook": "storybook dev -p 6006",
|
|
29
|
+
"build-storybook": "storybook build"
|
|
29
30
|
},
|
|
30
31
|
"peerDependencies": {
|
|
31
32
|
"@types/react-signature-canvas": "^1.0.7",
|
|
@@ -39,7 +40,12 @@
|
|
|
39
40
|
"usehooks-ts": "^3.1.1"
|
|
40
41
|
},
|
|
41
42
|
"devDependencies": {
|
|
43
|
+
"@chromatic-com/storybook": "^5.0.1",
|
|
42
44
|
"@eslint/js": "^9.39.2",
|
|
45
|
+
"@storybook/addon-a11y": "^10.2.8",
|
|
46
|
+
"@storybook/addon-docs": "^10.2.8",
|
|
47
|
+
"@storybook/addon-vitest": "^10.2.8",
|
|
48
|
+
"@storybook/react-vite": "^10.2.8",
|
|
43
49
|
"@testing-library/react": "^15.0.7",
|
|
44
50
|
"@types/node": "^24.1.0",
|
|
45
51
|
"@types/react": "^18.3.27",
|
|
@@ -48,21 +54,25 @@
|
|
|
48
54
|
"@typescript-eslint/eslint-plugin": "^8.52.0",
|
|
49
55
|
"@typescript-eslint/parser": "^8.52.0",
|
|
50
56
|
"@vitejs/plugin-react": "^5.1.2",
|
|
57
|
+
"@vitest/browser-playwright": "^4.0.16",
|
|
58
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
51
59
|
"clsx": "^2.1.1",
|
|
52
|
-
"cypress": "^15.9.0",
|
|
53
60
|
"eslint": "^9.39.2",
|
|
54
61
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
55
62
|
"eslint-plugin-react-refresh": "^0.4.26",
|
|
63
|
+
"eslint-plugin-storybook": "^10.2.8",
|
|
56
64
|
"glob": "^13.0.0",
|
|
57
65
|
"globals": "^17.0.0",
|
|
58
66
|
"jsdom": "^27.4.0",
|
|
59
67
|
"lucide-react": "^0.562.0",
|
|
60
68
|
"motion": "^12.26.1",
|
|
69
|
+
"playwright": "^1.58.2",
|
|
61
70
|
"prettier": "^3.7.4",
|
|
62
71
|
"react": "^18.3.1",
|
|
63
72
|
"react-dom": "^18.3.1",
|
|
64
73
|
"react-input-mask": "^2.0.4",
|
|
65
74
|
"react-signature-canvas": "^1.0.7",
|
|
75
|
+
"storybook": "^10.2.8",
|
|
66
76
|
"typescript": "^5.9.3",
|
|
67
77
|
"typescript-eslint": "^8.52.0",
|
|
68
78
|
"usehooks-ts": "^3.1.1",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
._Footer_dkhhg_1{display:flex;flex-direction:column;flex-wrap:nowrap;align-items:center;justify-content:center;white-space:nowrap;gap:var(--rm-ui-padding-md)}._FooterCopyright_dkhhg_11{font-weight:var(--rm-ui-font-weight-light);font-size:var(--rm-ui-font-size-body-small);line-height:var(--rm-ui-line-height-body-small);color:var(--rm-ui-color-text-secondary)}._FooterLinks_dkhhg_18{display:flex;flex-wrap:wrap;justify-content:center;gap:var(--rm-ui-padding-md)}._FooterLink_dkhhg_18{display:flex;flex-wrap:nowrap;align-items:center;justify-content:center}._FooterButton_dkhhg_32{font-weight:var(--rm-ui-font-weight-light);font-size:var(--rm-ui-font-size-body-small);line-height:var(--rm-ui-line-height-body-small);color:var(--rm-ui-color-text-secondary)}._FooterButton_dkhhg_32:focus-visible{outline-offset:2px;outline-color:var(--rm-ui-color-focus)}._FooterSeparator_dkhhg_44{display:none}@media screen and (min-width:768px){._Footer_dkhhg_1{flex-direction:row-reverse;justify-content:space-between}._FooterLinks_dkhhg_18{gap:0}._FooterLink_dkhhg_18:last-of-type ._FooterSeparator_dkhhg_44{display:none}._FooterSeparator_dkhhg_44{display:flex;border-right:1px solid var(--rm-ui-color-text-secondary);margin-right:var(--rm-ui-padding-xs);margin-left:var(--rm-ui-padding-xs);height:16px}}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
._Signature_y46zz_1{background-color:transparent}._SignatureMain_y46zz_5{--title-height: 40px;overflow:hidden;position:relative;padding:calc(var(--rm-ui-padding-md) + var(--title-height)) var(--rm-ui-padding-md) calc(var(--rm-ui-padding-md) + var(--title-height));border:1px solid var(--rm-ui-grey-300);border-radius:var(--rm-ui-border-radius-sm)}._SignatureMainAuto_y46zz_14{padding:calc(var(--rm-ui-padding-md) + var(--title-height)) var(--rm-ui-padding-md) var(--rm-ui-padding-md)}._SignatureMainManual_y46zz_18{padding:calc(var(--rm-ui-padding-md) + var(--title-height)) var(--rm-ui-padding-md) calc(var(--rm-ui-padding-md) + var(--title-height))}._SignatureHeader_y46zz_24{position:absolute;z-index:1;top:var(--rm-ui-padding-md);left:var(--rm-ui-padding-md);right:var(--rm-ui-padding-md)}._SignatureHeaderReset_y46zz_32{position:relative;z-index:1}._SignatureManualPanel_y46zz_39>canvas,._SignatureManualPanel_y46zz_39>img{position:absolute;top:0;left:0}._SignatureManualPanelPlaceholder_y46zz_46{height:104px}._SignatureManualPanelButton_y46zz_50{position:absolute;z-index:1;bottom:var(--rm-ui-padding-md);left:var(--rm-ui-padding-md);right:var(--rm-ui-padding-md);display:flex;flex-direction:row;flex-wrap:nowrap;align-items:center;justify-content:center}._SignatureAutoPanelImage_y46zz_65{height:46px;max-width:100%}._SignatureAutoPanelLoader_y46zz_70{display:inline-flex;padding:var(--rm-ui-padding-xs)}._SignatureAutoPanelNoteIcon_y46zz_75{stroke:var(--rm-ui-color-success)}._SignatureAutoPanelButton_y46zz_79{margin-top:20px;margin-bottom:var(--rm-ui-padding-sm)}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
._Tag_dnl2k_3[d=flex]{display:flex}._Tag_dnl2k_3[d=inline-flex]{display:inline-flex}._Tag_dnl2k_3[d=block]{display:block}._Tag_dnl2k_3[d=inline-block]{display:inline-block}._Tag_dnl2k_3[d=inline]{display:inline}._Tag_dnl2k_3[d=table]{display:table;width:100%;border-spacing:0;border-collapse:collapse}._Tag_dnl2k_3[d=table-row-group]{display:table-row-group}._Tag_dnl2k_3[d=table-row]{display:table-row}._Tag_dnl2k_3[d=table-cell]{display:table-cell}._Tag_dnl2k_3[pos=relative]{position:relative}._Tag_dnl2k_3[pos=absolute]{position:absolute}._Tag_dnl2k_3[pos=fixed]{position:fixed}._Tag_dnl2k_3[pos=static]{position:static}._Tag_dnl2k_3[pos=sticky]{position:sticky}._Tag_dnl2k_3[fxd=row]{flex-direction:row}._Tag_dnl2k_3[fxd=column]{flex-direction:column}._Tag_dnl2k_3[fxd=row-reverse]{flex-direction:row-reverse}._Tag_dnl2k_3[fxd=column-reverse]{flex-direction:column-reverse}._Tag_dnl2k_3[ai=center]{align-items:center}._Tag_dnl2k_3[ai=start]{align-items:flex-start}._Tag_dnl2k_3[ai=end]{align-items:flex-end}._Tag_dnl2k_3[ai=stretch]{align-items:stretch}._Tag_dnl2k_3[jc=center]{justify-content:center}._Tag_dnl2k_3[jc=start]{justify-content:flex-start}._Tag_dnl2k_3[jc=end]{justify-content:flex-end}._Tag_dnl2k_3[jc=space-between]{justify-content:space-between}._Tag_dnl2k_3[g=xxs]{gap:var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[g=xs]{gap:var(--rm-ui-padding-xs)}._Tag_dnl2k_3[g=sm]{gap:var(--rm-ui-padding-sm)}._Tag_dnl2k_3[g=md]{gap:var(--rm-ui-padding-md)}._Tag_dnl2k_3[g=lg]{gap:var(--rm-ui-padding-lg)}._Tag_dnl2k_3[g=xl]{gap:var(--rm-ui-padding-xl)}._Tag_dnl2k_3[g=xxl]{gap:var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[g=xxxl]{gap:var(--rm-ui-padding-xxxl)}._Tag_dnl2k_3[fw=light]{font-weight:var(--rm-ui-font-weight-light)}._Tag_dnl2k_3[fw=regular]{font-weight:var(--rm-ui-font-weight-regular)}._Tag_dnl2k_3[fw=medium]{font-weight:var(--rm-ui-font-weight-medium)}._Tag_dnl2k_3[fw=bold]{font-weight:var(--rm-ui-font-weight-bold)}._Tag_dnl2k_3[fz=regular]{font-size:var(--rm-ui-font-size-body);line-height:var(--rm-ui-line-height-body)}._Tag_dnl2k_3[fz=small]{font-size:var(--rm-ui-font-size-body-small);line-height:var(--rm-ui-line-height-body-small)}._Tag_dnl2k_3[fz=extra-small]{font-size:var(--rm-ui-font-size-body-extra-small);line-height:var(--rm-ui-line-height-body-extra-small)}._Tag_dnl2k_3[fz=large]{font-size:var(--rm-ui-font-size-body-large);line-height:var(--rm-ui-line-height-body-large)}._Tag_dnl2k_3[fz=hl1]{font-size:var(--rm-ui-font-size-hl1);line-height:var(--rm-ui-line-height-hl1)}._Tag_dnl2k_3[fz=hl2]{font-size:var(--rm-ui-font-size-hl2);line-height:var(--rm-ui-line-height-hl2)}._Tag_dnl2k_3[fz=hl3]{font-size:var(--rm-ui-font-size-hl3);line-height:var(--rm-ui-line-height-hl3)}._Tag_dnl2k_3[fz=hl4]{font-size:var(--rm-ui-font-size-hl4);line-height:var(--rm-ui-line-height-hl4)}._Tag_dnl2k_3[fz=hl5]{font-size:var(--rm-ui-font-size-hl5);line-height:var(--rm-ui-line-height-hl5)}._Tag_dnl2k_3[c=primary]{color:var(--rm-ui-color-text-primary)}._Tag_dnl2k_3[c=secondary]{color:var(--rm-ui-color-text-secondary)}._Tag_dnl2k_3[c=accent-primary]{color:var(--rm-ui-color-accent-primary)}._Tag_dnl2k_3[c=accent-secondary]{color:var(--rm-ui-color-accent-secondary)}._Tag_dnl2k_3[ta=left]{text-align:left}._Tag_dnl2k_3[ta=center]{text-align:center}._Tag_dnl2k_3[ta=right]{text-align:right}._Tag_dnl2k_3[td=underline]{text-decoration:underline}._Tag_dnl2k_3[td=overline]{text-decoration:overline}._Tag_dnl2k_3[td=line-through]{text-decoration:line-through}._Tag_dnl2k_3[va=top]{vertical-align:top}._Tag_dnl2k_3[va=bottom]{vertical-align:bottom}._Tag_dnl2k_3[va=middle]{vertical-align:middle}._Tag_dnl2k_3[mt=xxs]{margin-top:var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[mt=xs]{margin-top:var(--rm-ui-padding-xs)}._Tag_dnl2k_3[mt=sm]{margin-top:var(--rm-ui-padding-sm)}._Tag_dnl2k_3[mt=md]{margin-top:var(--rm-ui-padding-md)}._Tag_dnl2k_3[mt=lg]{margin-top:var(--rm-ui-padding-lg)}._Tag_dnl2k_3[mt=xl]{margin-top:var(--rm-ui-padding-xl)}._Tag_dnl2k_3[mt=xxl]{margin-top:var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[mt=xxxl]{margin-top:var(--rm-ui-padding-xxxl)}._Tag_dnl2k_3[mb=xxs]{margin-bottom:var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[mb=xs]{margin-bottom:var(--rm-ui-padding-xs)}._Tag_dnl2k_3[mb=sm]{margin-bottom:var(--rm-ui-padding-sm)}._Tag_dnl2k_3[mb=md]{margin-bottom:var(--rm-ui-padding-md)}._Tag_dnl2k_3[mb=lg]{margin-bottom:var(--rm-ui-padding-lg)}._Tag_dnl2k_3[mb=xl]{margin-bottom:var(--rm-ui-padding-xl)}._Tag_dnl2k_3[mb=xxl]{margin-bottom:var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[mb=xxxl]{margin-bottom:var(--rm-ui-padding-xxxl)}._Tag_dnl2k_3[ml=xxs]{margin-left:var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[ml=xs]{margin-left:var(--rm-ui-padding-xs)}._Tag_dnl2k_3[ml=sm]{margin-left:var(--rm-ui-padding-sm)}._Tag_dnl2k_3[ml=md]{margin-left:var(--rm-ui-padding-md)}._Tag_dnl2k_3[ml=lg]{margin-left:var(--rm-ui-padding-lg)}._Tag_dnl2k_3[ml=xl]{margin-left:var(--rm-ui-padding-xl)}._Tag_dnl2k_3[ml=xxl]{margin-left:var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[ml=xxxl]{margin-left:var(--rm-ui-padding-xxxl)}._Tag_dnl2k_3[mr=xxs]{margin-right:var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[mr=xs]{margin-right:var(--rm-ui-padding-xs)}._Tag_dnl2k_3[mr=sm]{margin-right:var(--rm-ui-padding-sm)}._Tag_dnl2k_3[mr=md]{margin-right:var(--rm-ui-padding-md)}._Tag_dnl2k_3[mr=lg]{margin-right:var(--rm-ui-padding-lg)}._Tag_dnl2k_3[mr=xl]{margin-right:var(--rm-ui-padding-xl)}._Tag_dnl2k_3[mr=xxl]{margin-right:var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[mr=xxxl]{margin-right:var(--rm-ui-padding-xxxl)}._Tag_dnl2k_3[mx=xxs]{margin:0 var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[mx=xs]{margin:0 var(--rm-ui-padding-xs)}._Tag_dnl2k_3[mx=sm]{margin:0 var(--rm-ui-padding-sm)}._Tag_dnl2k_3[mx=md]{margin:0 var(--rm-ui-padding-md)}._Tag_dnl2k_3[mx=lg]{margin:0 var(--rm-ui-padding-lg)}._Tag_dnl2k_3[mx=xl]{margin:0 var(--rm-ui-padding-xl)}._Tag_dnl2k_3[mx=xxl]{margin:0 var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[mx=xxxl]{margin:0 var(--rm-ui-padding-xxxl)}._Tag_dnl2k_3[my=xxs]{margin:var(--rm-ui-padding-xxs) 0}._Tag_dnl2k_3[my=xs]{margin:var(--rm-ui-padding-xs) 0}._Tag_dnl2k_3[my=sm]{margin:var(--rm-ui-padding-sm) 0}._Tag_dnl2k_3[my=md]{margin:var(--rm-ui-padding-md) 0}._Tag_dnl2k_3[my=lg]{margin:var(--rm-ui-padding-lg) 0}._Tag_dnl2k_3[my=xl]{margin:var(--rm-ui-padding-xl) 0}._Tag_dnl2k_3[my=xxl]{margin:var(--rm-ui-padding-xxl) 0}._Tag_dnl2k_3[my=xxxl]{margin:var(--rm-ui-padding-xxxl) 0}._Tag_dnl2k_3[m=xxs]{margin:var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[m=xs]{margin:var(--rm-ui-padding-xs)}._Tag_dnl2k_3[m=sm]{margin:var(--rm-ui-padding-sm)}._Tag_dnl2k_3[m=md]{margin:var(--rm-ui-padding-md)}._Tag_dnl2k_3[m=lg]{margin:var(--rm-ui-padding-lg)}._Tag_dnl2k_3[m=xl]{margin:var(--rm-ui-padding-xl)}._Tag_dnl2k_3[m=xxl]{margin:var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[m=xxxl]{margin:var(--rm-ui-padding-xxxl)}._Tag_dnl2k_3[pt=xxs]{padding-top:var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[pt=xs]{padding-top:var(--rm-ui-padding-xs)}._Tag_dnl2k_3[pt=sm]{padding-top:var(--rm-ui-padding-sm)}._Tag_dnl2k_3[pt=md]{padding-top:var(--rm-ui-padding-md)}._Tag_dnl2k_3[pt=lg]{padding-top:var(--rm-ui-padding-lg)}._Tag_dnl2k_3[pt=xl]{padding-top:var(--rm-ui-padding-xl)}._Tag_dnl2k_3[pt=xxl]{padding-top:var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[pt=xxxl]{padding-top:var(--rm-ui-padding-xxxl)}._Tag_dnl2k_3[pb=xxs]{padding-bottom:var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[pb=xs]{padding-bottom:var(--rm-ui-padding-xs)}._Tag_dnl2k_3[pb=sm]{padding-bottom:var(--rm-ui-padding-sm)}._Tag_dnl2k_3[pb=md]{padding-bottom:var(--rm-ui-padding-md)}._Tag_dnl2k_3[pb=lg]{padding-bottom:var(--rm-ui-padding-lg)}._Tag_dnl2k_3[pb=xl]{padding-bottom:var(--rm-ui-padding-xl)}._Tag_dnl2k_3[pb=xxl]{padding-bottom:var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[pb=xxxl]{padding-bottom:var(--rm-ui-padding-xxxl)}._Tag_dnl2k_3[pl=xxs]{padding-left:var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[pl=xs]{padding-left:var(--rm-ui-padding-xs)}._Tag_dnl2k_3[pl=sm]{padding-left:var(--rm-ui-padding-sm)}._Tag_dnl2k_3[pl=md]{padding-left:var(--rm-ui-padding-md)}._Tag_dnl2k_3[pl=lg]{padding-left:var(--rm-ui-padding-lg)}._Tag_dnl2k_3[pl=xl]{padding-left:var(--rm-ui-padding-xl)}._Tag_dnl2k_3[pl=xxl]{padding-left:var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[pl=xxxl]{padding-left:var(--rm-ui-padding-xxxl)}._Tag_dnl2k_3[pr=xxs]{padding-right:var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[pr=xs]{padding-right:var(--rm-ui-padding-xs)}._Tag_dnl2k_3[pr=sm]{padding-right:var(--rm-ui-padding-sm)}._Tag_dnl2k_3[pr=md]{padding-right:var(--rm-ui-padding-md)}._Tag_dnl2k_3[pr=lg]{padding-right:var(--rm-ui-padding-lg)}._Tag_dnl2k_3[pr=xl]{padding-right:var(--rm-ui-padding-xl)}._Tag_dnl2k_3[pr=xxl]{padding-right:var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[pr=xxxl]{padding-right:var(--rm-ui-padding-xxxl)}._Tag_dnl2k_3[px=xxs]{padding-left:var(--rm-ui-padding-xxs);padding-right:var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[px=xs]{padding-left:var(--rm-ui-padding-xs);padding-right:var(--rm-ui-padding-xs)}._Tag_dnl2k_3[px=sm]{padding-left:var(--rm-ui-padding-sm);padding-right:var(--rm-ui-padding-sm)}._Tag_dnl2k_3[px=md]{padding-left:var(--rm-ui-padding-md);padding-right:var(--rm-ui-padding-md)}._Tag_dnl2k_3[px=lg]{padding-left:var(--rm-ui-padding-lg);padding-right:var(--rm-ui-padding-lg)}._Tag_dnl2k_3[px=xl]{padding-left:var(--rm-ui-padding-xl);padding-right:var(--rm-ui-padding-xl)}._Tag_dnl2k_3[px=xxl]{padding-left:var(--rm-ui-padding-xxl);padding-right:var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[px=xxxl]{padding-left:var(--rm-ui-padding-xxxl);padding-right:var(--rm-ui-padding-xxxl)}._Tag_dnl2k_3[py=xxs]{padding-top:var(--rm-ui-padding-xxs);padding-bottom:var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[py=xs]{padding-top:var(--rm-ui-padding-xs);padding-bottom:var(--rm-ui-padding-xs)}._Tag_dnl2k_3[py=sm]{padding-top:var(--rm-ui-padding-sm);padding-bottom:var(--rm-ui-padding-sm)}._Tag_dnl2k_3[py=md]{padding-top:var(--rm-ui-padding-md);padding-bottom:var(--rm-ui-padding-md)}._Tag_dnl2k_3[py=lg]{padding-top:var(--rm-ui-padding-lg);padding-bottom:var(--rm-ui-padding-lg)}._Tag_dnl2k_3[py=xl]{padding-top:var(--rm-ui-padding-xl);padding-bottom:var(--rm-ui-padding-xl)}._Tag_dnl2k_3[py=xxl]{padding-top:var(--rm-ui-padding-xxl);padding-bottom:var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[py=xxxl]{padding-top:var(--rm-ui-padding-xxxl);padding-bottom:var(--rm-ui-padding-xxxl)}._Tag_dnl2k_3[p=xxs]{padding:var(--rm-ui-padding-xxs)}._Tag_dnl2k_3[p=xs]{padding:var(--rm-ui-padding-xs)}._Tag_dnl2k_3[p=sm]{padding:var(--rm-ui-padding-sm)}._Tag_dnl2k_3[p=md]{padding:var(--rm-ui-padding-md)}._Tag_dnl2k_3[p=lg]{padding:var(--rm-ui-padding-lg)}._Tag_dnl2k_3[p=xl]{padding:var(--rm-ui-padding-xl)}._Tag_dnl2k_3[p=xxl]{padding:var(--rm-ui-padding-xxl)}._Tag_dnl2k_3[p=xxxl]{padding:var(--rm-ui-padding-xxxl)}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { RegularTagProps } from './tag.types';
|
|
2
|
-
export declare const Block: (props: RegularTagProps) => import('react').ReactElement<{
|
|
3
|
-
className: string;
|
|
4
|
-
d: ("flex" | "table" | "block" | "inline" | "table-cell" | "table-row" | "table-row-group" | "inline-block" | "inline-flex") | undefined;
|
|
5
|
-
pos: ("fixed" | "relative" | "absolute" | "static" | "sticky") | undefined;
|
|
6
|
-
mt: import('./tag.types').Space | undefined;
|
|
7
|
-
mb: import('./tag.types').Space | undefined;
|
|
8
|
-
ml: import('./tag.types').Space | undefined;
|
|
9
|
-
mr: import('./tag.types').Space | undefined;
|
|
10
|
-
p: import('./tag.types').Space | undefined;
|
|
11
|
-
px: import('./tag.types').Space | undefined;
|
|
12
|
-
py: import('./tag.types').Space | undefined;
|
|
13
|
-
pt: import('./tag.types').Space | undefined;
|
|
14
|
-
pb: import('./tag.types').Space | undefined;
|
|
15
|
-
pl: import('./tag.types').Space | undefined;
|
|
16
|
-
pr: import('./tag.types').Space | undefined;
|
|
17
|
-
fw: ("bold" | "light" | "regular" | "medium") | undefined;
|
|
18
|
-
fz: ("small" | "regular" | "large" | "extra-small" | "hl1" | "hl2" | "hl3" | "hl4" | "hl5") | undefined;
|
|
19
|
-
c: ("primary" | "secondary" | "accent-primary" | "accent-secondary") | undefined;
|
|
20
|
-
ta: ("center" | "left" | "right") | undefined;
|
|
21
|
-
td: ("line-through" | "overline" | "underline") | undefined;
|
|
22
|
-
fxd: ("row" | "column" | "column-reverse" | "row-reverse") | undefined;
|
|
23
|
-
ai: ("center" | "end" | "start" | "stretch") | undefined;
|
|
24
|
-
jc: ("center" | "end" | "start" | "space-between") | undefined;
|
|
25
|
-
g: import('./tag.types').Space | undefined;
|
|
26
|
-
va: ("bottom" | "top" | "middle") | undefined;
|
|
27
|
-
style: import('react').CSSProperties | undefined;
|
|
28
|
-
dangerouslySetInnerHTML: {
|
|
29
|
-
__html: string;
|
|
30
|
-
} | null;
|
|
31
|
-
children: number | boolean | import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> | Iterable<import('react').ReactNode> | null | undefined;
|
|
32
|
-
}, string | import('react').JSXElementConstructor<any>>;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
export declare const color: {
|
|
2
|
-
grey950: string;
|
|
3
|
-
grey900: string;
|
|
4
|
-
grey800: string;
|
|
5
|
-
grey700: string;
|
|
6
|
-
grey600: string;
|
|
7
|
-
grey500: string;
|
|
8
|
-
grey400: string;
|
|
9
|
-
grey300: string;
|
|
10
|
-
grey200: string;
|
|
11
|
-
grey100: string;
|
|
12
|
-
grey50: string;
|
|
13
|
-
text: {
|
|
14
|
-
primary: string;
|
|
15
|
-
secondary: string;
|
|
16
|
-
};
|
|
17
|
-
accent: {
|
|
18
|
-
primary: string;
|
|
19
|
-
secondary: string;
|
|
20
|
-
};
|
|
21
|
-
theme: {
|
|
22
|
-
primary: string;
|
|
23
|
-
secondary: string;
|
|
24
|
-
};
|
|
25
|
-
action: string;
|
|
26
|
-
inverted: string;
|
|
27
|
-
error: string;
|
|
28
|
-
success: string;
|
|
29
|
-
focus: string;
|
|
30
|
-
link: string;
|
|
31
|
-
body: string;
|
|
32
|
-
};
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
const r = {
|
|
2
|
-
grey950: "var(--rm-ui-grey-950)",
|
|
3
|
-
grey900: "var(--rm-ui-grey-900)",
|
|
4
|
-
grey800: "var(--rm-ui-grey-800)",
|
|
5
|
-
grey700: "var(--rm-ui-grey-700)",
|
|
6
|
-
grey600: "var(--rm-ui-grey-600)",
|
|
7
|
-
grey500: "var(--rm-ui-grey-500)",
|
|
8
|
-
grey400: "var(--rm-ui-grey-400)",
|
|
9
|
-
grey300: "var(--rm-ui-grey-300)",
|
|
10
|
-
grey200: "var(--rm-ui-grey-200)",
|
|
11
|
-
grey100: "var(--rm-ui-grey-100)",
|
|
12
|
-
grey50: "var(--rm-ui-grey-50)",
|
|
13
|
-
text: {
|
|
14
|
-
primary: "var(--rm-ui-color-text-primary)",
|
|
15
|
-
secondary: "var(--rm-ui-color-text-secondary)"
|
|
16
|
-
},
|
|
17
|
-
accent: {
|
|
18
|
-
primary: "var(--rm-ui-color-accent-primary)",
|
|
19
|
-
secondary: "var(--rm-ui-color-accent-secondary)"
|
|
20
|
-
},
|
|
21
|
-
theme: {
|
|
22
|
-
primary: "var(--rm-ui-color-theme-primary)",
|
|
23
|
-
secondary: "var(--rm-ui-color-theme-secondary)"
|
|
24
|
-
},
|
|
25
|
-
action: "var(--rm-ui-color-action)",
|
|
26
|
-
inverted: "var(--rm-ui-color-inverted)",
|
|
27
|
-
error: "var(--rm-ui-color-error)",
|
|
28
|
-
success: "var(--rm-ui-color-success)",
|
|
29
|
-
focus: "var(--rm-ui-color-focus)",
|
|
30
|
-
link: "var(--rm-ui-color-link)",
|
|
31
|
-
body: "var(--rm-ui-body-color)"
|
|
32
|
-
};
|
|
33
|
-
export {
|
|
34
|
-
r as color
|
|
35
|
-
};
|
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
import { FlexTagProps } from './tag.types';
|
|
2
|
-
export declare const Flex: {
|
|
3
|
-
Row: (props: FlexTagProps) => import('react').ReactElement<{
|
|
4
|
-
className: string;
|
|
5
|
-
d: ("flex" | "table" | "block" | "inline" | "table-cell" | "table-row" | "table-row-group" | "inline-block" | "inline-flex") | undefined;
|
|
6
|
-
pos: ("fixed" | "relative" | "absolute" | "static" | "sticky") | undefined;
|
|
7
|
-
mt: import('./tag.types').Space | undefined;
|
|
8
|
-
mb: import('./tag.types').Space | undefined;
|
|
9
|
-
ml: import('./tag.types').Space | undefined;
|
|
10
|
-
mr: import('./tag.types').Space | undefined;
|
|
11
|
-
p: import('./tag.types').Space | undefined;
|
|
12
|
-
px: import('./tag.types').Space | undefined;
|
|
13
|
-
py: import('./tag.types').Space | undefined;
|
|
14
|
-
pt: import('./tag.types').Space | undefined;
|
|
15
|
-
pb: import('./tag.types').Space | undefined;
|
|
16
|
-
pl: import('./tag.types').Space | undefined;
|
|
17
|
-
pr: import('./tag.types').Space | undefined;
|
|
18
|
-
fw: ("bold" | "light" | "regular" | "medium") | undefined;
|
|
19
|
-
fz: ("small" | "regular" | "large" | "extra-small" | "hl1" | "hl2" | "hl3" | "hl4" | "hl5") | undefined;
|
|
20
|
-
c: ("primary" | "secondary" | "accent-primary" | "accent-secondary") | undefined;
|
|
21
|
-
ta: ("center" | "left" | "right") | undefined;
|
|
22
|
-
td: ("line-through" | "overline" | "underline") | undefined;
|
|
23
|
-
fxd: ("row" | "column" | "column-reverse" | "row-reverse") | undefined;
|
|
24
|
-
ai: ("center" | "end" | "start" | "stretch") | undefined;
|
|
25
|
-
jc: ("center" | "end" | "start" | "space-between") | undefined;
|
|
26
|
-
g: import('./tag.types').Space | undefined;
|
|
27
|
-
va: ("bottom" | "top" | "middle") | undefined;
|
|
28
|
-
style: import('react').CSSProperties | undefined;
|
|
29
|
-
dangerouslySetInnerHTML: {
|
|
30
|
-
__html: string;
|
|
31
|
-
} | null;
|
|
32
|
-
children: number | boolean | import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> | Iterable<import('react').ReactNode> | null | undefined;
|
|
33
|
-
}, string | import('react').JSXElementConstructor<any>>;
|
|
34
|
-
RowReverse: (props: FlexTagProps) => import('react').ReactElement<{
|
|
35
|
-
className: string;
|
|
36
|
-
d: ("flex" | "table" | "block" | "inline" | "table-cell" | "table-row" | "table-row-group" | "inline-block" | "inline-flex") | undefined;
|
|
37
|
-
pos: ("fixed" | "relative" | "absolute" | "static" | "sticky") | undefined;
|
|
38
|
-
mt: import('./tag.types').Space | undefined;
|
|
39
|
-
mb: import('./tag.types').Space | undefined;
|
|
40
|
-
ml: import('./tag.types').Space | undefined;
|
|
41
|
-
mr: import('./tag.types').Space | undefined;
|
|
42
|
-
p: import('./tag.types').Space | undefined;
|
|
43
|
-
px: import('./tag.types').Space | undefined;
|
|
44
|
-
py: import('./tag.types').Space | undefined;
|
|
45
|
-
pt: import('./tag.types').Space | undefined;
|
|
46
|
-
pb: import('./tag.types').Space | undefined;
|
|
47
|
-
pl: import('./tag.types').Space | undefined;
|
|
48
|
-
pr: import('./tag.types').Space | undefined;
|
|
49
|
-
fw: ("bold" | "light" | "regular" | "medium") | undefined;
|
|
50
|
-
fz: ("small" | "regular" | "large" | "extra-small" | "hl1" | "hl2" | "hl3" | "hl4" | "hl5") | undefined;
|
|
51
|
-
c: ("primary" | "secondary" | "accent-primary" | "accent-secondary") | undefined;
|
|
52
|
-
ta: ("center" | "left" | "right") | undefined;
|
|
53
|
-
td: ("line-through" | "overline" | "underline") | undefined;
|
|
54
|
-
fxd: ("row" | "column" | "column-reverse" | "row-reverse") | undefined;
|
|
55
|
-
ai: ("center" | "end" | "start" | "stretch") | undefined;
|
|
56
|
-
jc: ("center" | "end" | "start" | "space-between") | undefined;
|
|
57
|
-
g: import('./tag.types').Space | undefined;
|
|
58
|
-
va: ("bottom" | "top" | "middle") | undefined;
|
|
59
|
-
style: import('react').CSSProperties | undefined;
|
|
60
|
-
dangerouslySetInnerHTML: {
|
|
61
|
-
__html: string;
|
|
62
|
-
} | null;
|
|
63
|
-
children: number | boolean | import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> | Iterable<import('react').ReactNode> | null | undefined;
|
|
64
|
-
}, string | import('react').JSXElementConstructor<any>>;
|
|
65
|
-
Column: (props: FlexTagProps) => import('react').ReactElement<{
|
|
66
|
-
className: string;
|
|
67
|
-
d: ("flex" | "table" | "block" | "inline" | "table-cell" | "table-row" | "table-row-group" | "inline-block" | "inline-flex") | undefined;
|
|
68
|
-
pos: ("fixed" | "relative" | "absolute" | "static" | "sticky") | undefined;
|
|
69
|
-
mt: import('./tag.types').Space | undefined;
|
|
70
|
-
mb: import('./tag.types').Space | undefined;
|
|
71
|
-
ml: import('./tag.types').Space | undefined;
|
|
72
|
-
mr: import('./tag.types').Space | undefined;
|
|
73
|
-
p: import('./tag.types').Space | undefined;
|
|
74
|
-
px: import('./tag.types').Space | undefined;
|
|
75
|
-
py: import('./tag.types').Space | undefined;
|
|
76
|
-
pt: import('./tag.types').Space | undefined;
|
|
77
|
-
pb: import('./tag.types').Space | undefined;
|
|
78
|
-
pl: import('./tag.types').Space | undefined;
|
|
79
|
-
pr: import('./tag.types').Space | undefined;
|
|
80
|
-
fw: ("bold" | "light" | "regular" | "medium") | undefined;
|
|
81
|
-
fz: ("small" | "regular" | "large" | "extra-small" | "hl1" | "hl2" | "hl3" | "hl4" | "hl5") | undefined;
|
|
82
|
-
c: ("primary" | "secondary" | "accent-primary" | "accent-secondary") | undefined;
|
|
83
|
-
ta: ("center" | "left" | "right") | undefined;
|
|
84
|
-
td: ("line-through" | "overline" | "underline") | undefined;
|
|
85
|
-
fxd: ("row" | "column" | "column-reverse" | "row-reverse") | undefined;
|
|
86
|
-
ai: ("center" | "end" | "start" | "stretch") | undefined;
|
|
87
|
-
jc: ("center" | "end" | "start" | "space-between") | undefined;
|
|
88
|
-
g: import('./tag.types').Space | undefined;
|
|
89
|
-
va: ("bottom" | "top" | "middle") | undefined;
|
|
90
|
-
style: import('react').CSSProperties | undefined;
|
|
91
|
-
dangerouslySetInnerHTML: {
|
|
92
|
-
__html: string;
|
|
93
|
-
} | null;
|
|
94
|
-
children: number | boolean | import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> | Iterable<import('react').ReactNode> | null | undefined;
|
|
95
|
-
}, string | import('react').JSXElementConstructor<any>>;
|
|
96
|
-
ColumnReverse: (props: FlexTagProps) => import('react').ReactElement<{
|
|
97
|
-
className: string;
|
|
98
|
-
d: ("flex" | "table" | "block" | "inline" | "table-cell" | "table-row" | "table-row-group" | "inline-block" | "inline-flex") | undefined;
|
|
99
|
-
pos: ("fixed" | "relative" | "absolute" | "static" | "sticky") | undefined;
|
|
100
|
-
mt: import('./tag.types').Space | undefined;
|
|
101
|
-
mb: import('./tag.types').Space | undefined;
|
|
102
|
-
ml: import('./tag.types').Space | undefined;
|
|
103
|
-
mr: import('./tag.types').Space | undefined;
|
|
104
|
-
p: import('./tag.types').Space | undefined;
|
|
105
|
-
px: import('./tag.types').Space | undefined;
|
|
106
|
-
py: import('./tag.types').Space | undefined;
|
|
107
|
-
pt: import('./tag.types').Space | undefined;
|
|
108
|
-
pb: import('./tag.types').Space | undefined;
|
|
109
|
-
pl: import('./tag.types').Space | undefined;
|
|
110
|
-
pr: import('./tag.types').Space | undefined;
|
|
111
|
-
fw: ("bold" | "light" | "regular" | "medium") | undefined;
|
|
112
|
-
fz: ("small" | "regular" | "large" | "extra-small" | "hl1" | "hl2" | "hl3" | "hl4" | "hl5") | undefined;
|
|
113
|
-
c: ("primary" | "secondary" | "accent-primary" | "accent-secondary") | undefined;
|
|
114
|
-
ta: ("center" | "left" | "right") | undefined;
|
|
115
|
-
td: ("line-through" | "overline" | "underline") | undefined;
|
|
116
|
-
fxd: ("row" | "column" | "column-reverse" | "row-reverse") | undefined;
|
|
117
|
-
ai: ("center" | "end" | "start" | "stretch") | undefined;
|
|
118
|
-
jc: ("center" | "end" | "start" | "space-between") | undefined;
|
|
119
|
-
g: import('./tag.types').Space | undefined;
|
|
120
|
-
va: ("bottom" | "top" | "middle") | undefined;
|
|
121
|
-
style: import('react').CSSProperties | undefined;
|
|
122
|
-
dangerouslySetInnerHTML: {
|
|
123
|
-
__html: string;
|
|
124
|
-
} | null;
|
|
125
|
-
children: number | boolean | import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> | Iterable<import('react').ReactNode> | null | undefined;
|
|
126
|
-
}, string | import('react').JSXElementConstructor<any>>;
|
|
127
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { tagCreate as o } from "./tag-create.js";
|
|
2
|
-
const x = {
|
|
3
|
-
Row: (e) => o({ ...e, d: "flex", fxd: "row" }),
|
|
4
|
-
RowReverse: (e) => o({ ...e, d: "flex", fxd: "row-reverse" }),
|
|
5
|
-
Column: (e) => o({ ...e, d: "flex", fxd: "column" }),
|
|
6
|
-
ColumnReverse: (e) => o({ ...e, d: "flex", fxd: "column-reverse" })
|
|
7
|
-
};
|
|
8
|
-
export {
|
|
9
|
-
x as Flex
|
|
10
|
-
};
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { RegularTagProps } from './tag.types';
|
|
2
|
-
export declare const InlineBlock: (props: RegularTagProps) => import('react').ReactElement<{
|
|
3
|
-
className: string;
|
|
4
|
-
d: ("flex" | "table" | "block" | "inline" | "table-cell" | "table-row" | "table-row-group" | "inline-block" | "inline-flex") | undefined;
|
|
5
|
-
pos: ("fixed" | "relative" | "absolute" | "static" | "sticky") | undefined;
|
|
6
|
-
mt: import('./tag.types').Space | undefined;
|
|
7
|
-
mb: import('./tag.types').Space | undefined;
|
|
8
|
-
ml: import('./tag.types').Space | undefined;
|
|
9
|
-
mr: import('./tag.types').Space | undefined;
|
|
10
|
-
p: import('./tag.types').Space | undefined;
|
|
11
|
-
px: import('./tag.types').Space | undefined;
|
|
12
|
-
py: import('./tag.types').Space | undefined;
|
|
13
|
-
pt: import('./tag.types').Space | undefined;
|
|
14
|
-
pb: import('./tag.types').Space | undefined;
|
|
15
|
-
pl: import('./tag.types').Space | undefined;
|
|
16
|
-
pr: import('./tag.types').Space | undefined;
|
|
17
|
-
fw: ("bold" | "light" | "regular" | "medium") | undefined;
|
|
18
|
-
fz: ("small" | "regular" | "large" | "extra-small" | "hl1" | "hl2" | "hl3" | "hl4" | "hl5") | undefined;
|
|
19
|
-
c: ("primary" | "secondary" | "accent-primary" | "accent-secondary") | undefined;
|
|
20
|
-
ta: ("center" | "left" | "right") | undefined;
|
|
21
|
-
td: ("line-through" | "overline" | "underline") | undefined;
|
|
22
|
-
fxd: ("row" | "column" | "column-reverse" | "row-reverse") | undefined;
|
|
23
|
-
ai: ("center" | "end" | "start" | "stretch") | undefined;
|
|
24
|
-
jc: ("center" | "end" | "start" | "space-between") | undefined;
|
|
25
|
-
g: import('./tag.types').Space | undefined;
|
|
26
|
-
va: ("bottom" | "top" | "middle") | undefined;
|
|
27
|
-
style: import('react').CSSProperties | undefined;
|
|
28
|
-
dangerouslySetInnerHTML: {
|
|
29
|
-
__html: string;
|
|
30
|
-
} | null;
|
|
31
|
-
children: number | boolean | import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> | Iterable<import('react').ReactNode> | null | undefined;
|
|
32
|
-
}, string | import('react').JSXElementConstructor<any>>;
|
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
import { FlexTagProps } from './tag.types';
|
|
2
|
-
export declare const InlineFlex: {
|
|
3
|
-
Row: (props: FlexTagProps) => import('react').ReactElement<{
|
|
4
|
-
className: string;
|
|
5
|
-
d: ("flex" | "table" | "block" | "inline" | "table-cell" | "table-row" | "table-row-group" | "inline-block" | "inline-flex") | undefined;
|
|
6
|
-
pos: ("fixed" | "relative" | "absolute" | "static" | "sticky") | undefined;
|
|
7
|
-
mt: import('./tag.types').Space | undefined;
|
|
8
|
-
mb: import('./tag.types').Space | undefined;
|
|
9
|
-
ml: import('./tag.types').Space | undefined;
|
|
10
|
-
mr: import('./tag.types').Space | undefined;
|
|
11
|
-
p: import('./tag.types').Space | undefined;
|
|
12
|
-
px: import('./tag.types').Space | undefined;
|
|
13
|
-
py: import('./tag.types').Space | undefined;
|
|
14
|
-
pt: import('./tag.types').Space | undefined;
|
|
15
|
-
pb: import('./tag.types').Space | undefined;
|
|
16
|
-
pl: import('./tag.types').Space | undefined;
|
|
17
|
-
pr: import('./tag.types').Space | undefined;
|
|
18
|
-
fw: ("bold" | "light" | "regular" | "medium") | undefined;
|
|
19
|
-
fz: ("small" | "regular" | "large" | "extra-small" | "hl1" | "hl2" | "hl3" | "hl4" | "hl5") | undefined;
|
|
20
|
-
c: ("primary" | "secondary" | "accent-primary" | "accent-secondary") | undefined;
|
|
21
|
-
ta: ("center" | "left" | "right") | undefined;
|
|
22
|
-
td: ("line-through" | "overline" | "underline") | undefined;
|
|
23
|
-
fxd: ("row" | "column" | "column-reverse" | "row-reverse") | undefined;
|
|
24
|
-
ai: ("center" | "end" | "start" | "stretch") | undefined;
|
|
25
|
-
jc: ("center" | "end" | "start" | "space-between") | undefined;
|
|
26
|
-
g: import('./tag.types').Space | undefined;
|
|
27
|
-
va: ("bottom" | "top" | "middle") | undefined;
|
|
28
|
-
style: import('react').CSSProperties | undefined;
|
|
29
|
-
dangerouslySetInnerHTML: {
|
|
30
|
-
__html: string;
|
|
31
|
-
} | null;
|
|
32
|
-
children: number | boolean | import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> | Iterable<import('react').ReactNode> | null | undefined;
|
|
33
|
-
}, string | import('react').JSXElementConstructor<any>>;
|
|
34
|
-
RowReverse: (props: FlexTagProps) => import('react').ReactElement<{
|
|
35
|
-
className: string;
|
|
36
|
-
d: ("flex" | "table" | "block" | "inline" | "table-cell" | "table-row" | "table-row-group" | "inline-block" | "inline-flex") | undefined;
|
|
37
|
-
pos: ("fixed" | "relative" | "absolute" | "static" | "sticky") | undefined;
|
|
38
|
-
mt: import('./tag.types').Space | undefined;
|
|
39
|
-
mb: import('./tag.types').Space | undefined;
|
|
40
|
-
ml: import('./tag.types').Space | undefined;
|
|
41
|
-
mr: import('./tag.types').Space | undefined;
|
|
42
|
-
p: import('./tag.types').Space | undefined;
|
|
43
|
-
px: import('./tag.types').Space | undefined;
|
|
44
|
-
py: import('./tag.types').Space | undefined;
|
|
45
|
-
pt: import('./tag.types').Space | undefined;
|
|
46
|
-
pb: import('./tag.types').Space | undefined;
|
|
47
|
-
pl: import('./tag.types').Space | undefined;
|
|
48
|
-
pr: import('./tag.types').Space | undefined;
|
|
49
|
-
fw: ("bold" | "light" | "regular" | "medium") | undefined;
|
|
50
|
-
fz: ("small" | "regular" | "large" | "extra-small" | "hl1" | "hl2" | "hl3" | "hl4" | "hl5") | undefined;
|
|
51
|
-
c: ("primary" | "secondary" | "accent-primary" | "accent-secondary") | undefined;
|
|
52
|
-
ta: ("center" | "left" | "right") | undefined;
|
|
53
|
-
td: ("line-through" | "overline" | "underline") | undefined;
|
|
54
|
-
fxd: ("row" | "column" | "column-reverse" | "row-reverse") | undefined;
|
|
55
|
-
ai: ("center" | "end" | "start" | "stretch") | undefined;
|
|
56
|
-
jc: ("center" | "end" | "start" | "space-between") | undefined;
|
|
57
|
-
g: import('./tag.types').Space | undefined;
|
|
58
|
-
va: ("bottom" | "top" | "middle") | undefined;
|
|
59
|
-
style: import('react').CSSProperties | undefined;
|
|
60
|
-
dangerouslySetInnerHTML: {
|
|
61
|
-
__html: string;
|
|
62
|
-
} | null;
|
|
63
|
-
children: number | boolean | import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> | Iterable<import('react').ReactNode> | null | undefined;
|
|
64
|
-
}, string | import('react').JSXElementConstructor<any>>;
|
|
65
|
-
Column: (props: FlexTagProps) => import('react').ReactElement<{
|
|
66
|
-
className: string;
|
|
67
|
-
d: ("flex" | "table" | "block" | "inline" | "table-cell" | "table-row" | "table-row-group" | "inline-block" | "inline-flex") | undefined;
|
|
68
|
-
pos: ("fixed" | "relative" | "absolute" | "static" | "sticky") | undefined;
|
|
69
|
-
mt: import('./tag.types').Space | undefined;
|
|
70
|
-
mb: import('./tag.types').Space | undefined;
|
|
71
|
-
ml: import('./tag.types').Space | undefined;
|
|
72
|
-
mr: import('./tag.types').Space | undefined;
|
|
73
|
-
p: import('./tag.types').Space | undefined;
|
|
74
|
-
px: import('./tag.types').Space | undefined;
|
|
75
|
-
py: import('./tag.types').Space | undefined;
|
|
76
|
-
pt: import('./tag.types').Space | undefined;
|
|
77
|
-
pb: import('./tag.types').Space | undefined;
|
|
78
|
-
pl: import('./tag.types').Space | undefined;
|
|
79
|
-
pr: import('./tag.types').Space | undefined;
|
|
80
|
-
fw: ("bold" | "light" | "regular" | "medium") | undefined;
|
|
81
|
-
fz: ("small" | "regular" | "large" | "extra-small" | "hl1" | "hl2" | "hl3" | "hl4" | "hl5") | undefined;
|
|
82
|
-
c: ("primary" | "secondary" | "accent-primary" | "accent-secondary") | undefined;
|
|
83
|
-
ta: ("center" | "left" | "right") | undefined;
|
|
84
|
-
td: ("line-through" | "overline" | "underline") | undefined;
|
|
85
|
-
fxd: ("row" | "column" | "column-reverse" | "row-reverse") | undefined;
|
|
86
|
-
ai: ("center" | "end" | "start" | "stretch") | undefined;
|
|
87
|
-
jc: ("center" | "end" | "start" | "space-between") | undefined;
|
|
88
|
-
g: import('./tag.types').Space | undefined;
|
|
89
|
-
va: ("bottom" | "top" | "middle") | undefined;
|
|
90
|
-
style: import('react').CSSProperties | undefined;
|
|
91
|
-
dangerouslySetInnerHTML: {
|
|
92
|
-
__html: string;
|
|
93
|
-
} | null;
|
|
94
|
-
children: number | boolean | import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> | Iterable<import('react').ReactNode> | null | undefined;
|
|
95
|
-
}, string | import('react').JSXElementConstructor<any>>;
|
|
96
|
-
ColumnReverse: (props: FlexTagProps) => import('react').ReactElement<{
|
|
97
|
-
className: string;
|
|
98
|
-
d: ("flex" | "table" | "block" | "inline" | "table-cell" | "table-row" | "table-row-group" | "inline-block" | "inline-flex") | undefined;
|
|
99
|
-
pos: ("fixed" | "relative" | "absolute" | "static" | "sticky") | undefined;
|
|
100
|
-
mt: import('./tag.types').Space | undefined;
|
|
101
|
-
mb: import('./tag.types').Space | undefined;
|
|
102
|
-
ml: import('./tag.types').Space | undefined;
|
|
103
|
-
mr: import('./tag.types').Space | undefined;
|
|
104
|
-
p: import('./tag.types').Space | undefined;
|
|
105
|
-
px: import('./tag.types').Space | undefined;
|
|
106
|
-
py: import('./tag.types').Space | undefined;
|
|
107
|
-
pt: import('./tag.types').Space | undefined;
|
|
108
|
-
pb: import('./tag.types').Space | undefined;
|
|
109
|
-
pl: import('./tag.types').Space | undefined;
|
|
110
|
-
pr: import('./tag.types').Space | undefined;
|
|
111
|
-
fw: ("bold" | "light" | "regular" | "medium") | undefined;
|
|
112
|
-
fz: ("small" | "regular" | "large" | "extra-small" | "hl1" | "hl2" | "hl3" | "hl4" | "hl5") | undefined;
|
|
113
|
-
c: ("primary" | "secondary" | "accent-primary" | "accent-secondary") | undefined;
|
|
114
|
-
ta: ("center" | "left" | "right") | undefined;
|
|
115
|
-
td: ("line-through" | "overline" | "underline") | undefined;
|
|
116
|
-
fxd: ("row" | "column" | "column-reverse" | "row-reverse") | undefined;
|
|
117
|
-
ai: ("center" | "end" | "start" | "stretch") | undefined;
|
|
118
|
-
jc: ("center" | "end" | "start" | "space-between") | undefined;
|
|
119
|
-
g: import('./tag.types').Space | undefined;
|
|
120
|
-
va: ("bottom" | "top" | "middle") | undefined;
|
|
121
|
-
style: import('react').CSSProperties | undefined;
|
|
122
|
-
dangerouslySetInnerHTML: {
|
|
123
|
-
__html: string;
|
|
124
|
-
} | null;
|
|
125
|
-
children: number | boolean | import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> | Iterable<import('react').ReactNode> | null | undefined;
|
|
126
|
-
}, string | import('react').JSXElementConstructor<any>>;
|
|
127
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { tagCreate as n } from "./tag-create.js";
|
|
2
|
-
const o = {
|
|
3
|
-
Row: (e) => n({ ...e, d: "inline-flex", fxd: "row" }),
|
|
4
|
-
RowReverse: (e) => n({ ...e, d: "inline-flex", fxd: "row-reverse" }),
|
|
5
|
-
Column: (e) => n({ ...e, d: "inline-flex", fxd: "column" }),
|
|
6
|
-
ColumnReverse: (e) => n({ ...e, d: "inline-flex", fxd: "column-reverse" })
|
|
7
|
-
};
|
|
8
|
-
export {
|
|
9
|
-
o as InlineFlex
|
|
10
|
-
};
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { RegularTagProps } from './tag.types';
|
|
2
|
-
export declare const Inline: (props: RegularTagProps) => import('react').ReactElement<{
|
|
3
|
-
className: string;
|
|
4
|
-
d: ("flex" | "table" | "block" | "inline" | "table-cell" | "table-row" | "table-row-group" | "inline-block" | "inline-flex") | undefined;
|
|
5
|
-
pos: ("fixed" | "relative" | "absolute" | "static" | "sticky") | undefined;
|
|
6
|
-
mt: import('./tag.types').Space | undefined;
|
|
7
|
-
mb: import('./tag.types').Space | undefined;
|
|
8
|
-
ml: import('./tag.types').Space | undefined;
|
|
9
|
-
mr: import('./tag.types').Space | undefined;
|
|
10
|
-
p: import('./tag.types').Space | undefined;
|
|
11
|
-
px: import('./tag.types').Space | undefined;
|
|
12
|
-
py: import('./tag.types').Space | undefined;
|
|
13
|
-
pt: import('./tag.types').Space | undefined;
|
|
14
|
-
pb: import('./tag.types').Space | undefined;
|
|
15
|
-
pl: import('./tag.types').Space | undefined;
|
|
16
|
-
pr: import('./tag.types').Space | undefined;
|
|
17
|
-
fw: ("bold" | "light" | "regular" | "medium") | undefined;
|
|
18
|
-
fz: ("small" | "regular" | "large" | "extra-small" | "hl1" | "hl2" | "hl3" | "hl4" | "hl5") | undefined;
|
|
19
|
-
c: ("primary" | "secondary" | "accent-primary" | "accent-secondary") | undefined;
|
|
20
|
-
ta: ("center" | "left" | "right") | undefined;
|
|
21
|
-
td: ("line-through" | "overline" | "underline") | undefined;
|
|
22
|
-
fxd: ("row" | "column" | "column-reverse" | "row-reverse") | undefined;
|
|
23
|
-
ai: ("center" | "end" | "start" | "stretch") | undefined;
|
|
24
|
-
jc: ("center" | "end" | "start" | "space-between") | undefined;
|
|
25
|
-
g: import('./tag.types').Space | undefined;
|
|
26
|
-
va: ("bottom" | "top" | "middle") | undefined;
|
|
27
|
-
style: import('react').CSSProperties | undefined;
|
|
28
|
-
dangerouslySetInnerHTML: {
|
|
29
|
-
__html: string;
|
|
30
|
-
} | null;
|
|
31
|
-
children: number | boolean | import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> | Iterable<import('react').ReactNode> | null | undefined;
|
|
32
|
-
}, string | import('react').JSXElementConstructor<any>>;
|