react-minolith 0.0.21 → 0.0.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/assets/Accordion.css +1 -1
- package/dist/assets/Blockquote.css +1 -0
- package/dist/assets/Centering.css +1 -1
- package/dist/assets/Div.css +1 -0
- package/dist/assets/Minolith.css +1 -1
- package/dist/assets/MinolithCssVariableStylesProvider.css +1 -1
- package/dist/assets/Paragraph.css +1 -0
- package/dist/assets/Section.css +1 -0
- package/dist/assets/Span.css +1 -1
- package/dist/assets/Tabula.css +1 -1
- package/dist/base/Tabula/Tabula.js +1 -1
- package/dist/common/literalTypes/ColorAttributes.d.ts +2 -2
- package/dist/common/literalTypes/ColorAttributes.d.ts.map +1 -1
- package/dist/common/literalTypes/ColorProps.d.ts +17 -16
- package/dist/common/literalTypes/ColorProps.d.ts.map +1 -1
- package/dist/common/models/BaseComponentProps.d.ts +3 -3
- package/dist/common/models/BaseComponentProps.d.ts.map +1 -1
- package/dist/common/models/index.d.ts +7 -1
- package/dist/common/models/index.d.ts.map +1 -1
- package/dist/components/Accordion/Accordion.js +25 -25
- package/dist/components/Accordion/AccordionDetails.js +25 -25
- package/dist/components/Accordion/AccordionSummary.js +24 -24
- package/dist/components/Blockquote/Blockquote.d.ts +3 -0
- package/dist/components/Blockquote/Blockquote.d.ts.map +1 -0
- package/dist/components/Blockquote/Blockquote.js +30 -0
- package/dist/components/Blockquote/Blockquote.js.map +1 -0
- package/dist/components/Blockquote/Blockquote.stories.d.ts +16 -0
- package/dist/components/Blockquote/Blockquote.stories.d.ts.map +1 -0
- package/dist/components/Blockquote/BlockquoteProps.d.ts +12 -0
- package/dist/components/Blockquote/BlockquoteProps.d.ts.map +1 -0
- package/dist/components/Blockquote/BlockquoteProps.js +2 -0
- package/dist/components/Blockquote/BlockquoteProps.js.map +1 -0
- package/dist/components/Blockquote/index.d.ts +3 -0
- package/dist/components/Blockquote/index.d.ts.map +1 -0
- package/dist/components/Blockquote/index.js +5 -0
- package/dist/components/Blockquote/index.js.map +1 -0
- package/dist/components/Div/Div.js +5 -5
- package/dist/components/Div/Div.js.map +1 -1
- package/dist/components/Paragraph/Paragraph.d.ts +3 -0
- package/dist/components/Paragraph/Paragraph.d.ts.map +1 -0
- package/dist/components/Paragraph/Paragraph.js +15 -0
- package/dist/components/Paragraph/Paragraph.js.map +1 -0
- package/dist/components/Paragraph/Paragraph.stories.d.ts +12 -0
- package/dist/components/Paragraph/Paragraph.stories.d.ts.map +1 -0
- package/dist/components/Paragraph/ParagraphProps.d.ts +5 -0
- package/dist/components/Paragraph/ParagraphProps.d.ts.map +1 -0
- package/dist/components/Paragraph/ParagraphProps.js +2 -0
- package/dist/components/Paragraph/ParagraphProps.js.map +1 -0
- package/dist/components/Paragraph/index.d.ts +3 -0
- package/dist/components/Paragraph/index.d.ts.map +1 -0
- package/dist/components/Paragraph/index.js +5 -0
- package/dist/components/Paragraph/index.js.map +1 -0
- package/dist/components/Ruby/Ruby.js +1 -1
- package/dist/components/Section/Section.js +1 -1
- package/dist/components/Span/Span.js +8 -8
- package/dist/components/Span/Span.js.map +1 -1
- package/dist/layouts/Centering/Centering.js +2 -2
- package/dist/react-minolith.d.ts +2 -0
- package/dist/react-minolith.d.ts.map +1 -1
- package/dist/react-minolith.js +94 -90
- package/dist/react-minolith.js.map +1 -1
- package/dist/utilities/classNameUtility.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._paragraph_1dpzn_1{box-sizing:border-box;line-height:1.5;display:block;margin:0;margin-block:.5rem;margin-inline:0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._element_19mzt_1{box-sizing:border-box}
|
package/dist/assets/Span.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._span_m9a43_1{box-sizing:border-box}
|
package/dist/assets/Tabula.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._tabula_fxvj9_1{color:var(--minolith-color-default-fore);background-color:var(--minolith-color-default-back);font-family:var(--minolith-font-family-main);z-index:var(--minolith-z-index-tabula);text-size-adjust:100%}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as t } from "react/jsx-runtime";
|
|
2
2
|
import l from "../../utilities/classNameUtility.js";
|
|
3
|
-
import '../../assets/Tabula.css';const c = "
|
|
3
|
+
import '../../assets/Tabula.css';const c = "_tabula_fxvj9_1", i = {
|
|
4
4
|
tabula: c
|
|
5
5
|
};
|
|
6
6
|
function d(a) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { default as ColorLightness } from './ColorLightness';
|
|
2
2
|
import { default as ColorName } from './ColorName';
|
|
3
|
-
type ColorAttributes = {
|
|
4
|
-
name:
|
|
3
|
+
type ColorAttributes<ColorNameType = ColorName> = {
|
|
4
|
+
name: ColorNameType;
|
|
5
5
|
lightness: ColorLightness;
|
|
6
6
|
};
|
|
7
7
|
export default ColorAttributes;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ColorAttributes.d.ts","sourceRoot":"","sources":["../../../src/common/literalTypes/ColorAttributes.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,SAAS,MAAM,aAAa,CAAC;AAEpC,KAAK,eAAe,GAAG;
|
|
1
|
+
{"version":3,"file":"ColorAttributes.d.ts","sourceRoot":"","sources":["../../../src/common/literalTypes/ColorAttributes.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,SAAS,MAAM,aAAa,CAAC;AAEpC,KAAK,eAAe,CAAC,aAAa,GAAG,SAAS,IAAI;IAChD,IAAI,EAAE,aAAa,CAAC;IACpB,SAAS,EAAE,cAAc,CAAC;CAC3B,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -1,23 +1,24 @@
|
|
|
1
1
|
import { default as ColorAttributes } from './ColorAttributes';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
import { default as ColorName } from './ColorName';
|
|
3
|
+
type ColorProps<ColorNameType = ColorName> = {
|
|
4
|
+
default?: ColorAttributes<ColorNameType>;
|
|
5
|
+
hover?: ColorAttributes<ColorNameType>;
|
|
6
|
+
focus?: ColorAttributes<ColorNameType>;
|
|
7
|
+
active?: ColorAttributes<ColorNameType>;
|
|
8
|
+
disabled?: ColorAttributes<ColorNameType>;
|
|
8
9
|
light?: {
|
|
9
|
-
default?: ColorAttributes
|
|
10
|
-
hover?: ColorAttributes
|
|
11
|
-
focus?: ColorAttributes
|
|
12
|
-
active?: ColorAttributes
|
|
13
|
-
disabled?: ColorAttributes
|
|
10
|
+
default?: ColorAttributes<ColorNameType>;
|
|
11
|
+
hover?: ColorAttributes<ColorNameType>;
|
|
12
|
+
focus?: ColorAttributes<ColorNameType>;
|
|
13
|
+
active?: ColorAttributes<ColorNameType>;
|
|
14
|
+
disabled?: ColorAttributes<ColorNameType>;
|
|
14
15
|
};
|
|
15
16
|
dark?: {
|
|
16
|
-
default?: ColorAttributes
|
|
17
|
-
hover?: ColorAttributes
|
|
18
|
-
focus?: ColorAttributes
|
|
19
|
-
active?: ColorAttributes
|
|
20
|
-
disabled?: ColorAttributes
|
|
17
|
+
default?: ColorAttributes<ColorNameType>;
|
|
18
|
+
hover?: ColorAttributes<ColorNameType>;
|
|
19
|
+
focus?: ColorAttributes<ColorNameType>;
|
|
20
|
+
active?: ColorAttributes<ColorNameType>;
|
|
21
|
+
disabled?: ColorAttributes<ColorNameType>;
|
|
21
22
|
};
|
|
22
23
|
};
|
|
23
24
|
export default ColorProps;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ColorProps.d.ts","sourceRoot":"","sources":["../../../src/common/literalTypes/ColorProps.ts"],"names":[],"mappings":"AAAA,OAAO,eAAe,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"ColorProps.d.ts","sourceRoot":"","sources":["../../../src/common/literalTypes/ColorProps.ts"],"names":[],"mappings":"AAAA,OAAO,eAAe,MAAM,mBAAmB,CAAC;AAChD,OAAO,SAAS,MAAM,aAAa,CAAC;AAEpC,KAAK,UAAU,CAAC,aAAa,GAAG,SAAS,IAAI;IAC3C,OAAO,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;IACzC,KAAK,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;IACvC,KAAK,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;IACvC,MAAM,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;IACxC,QAAQ,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;IAC1C,KAAK,CAAC,EAAE;QACN,OAAO,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;QACzC,KAAK,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;QACvC,KAAK,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;QACvC,MAAM,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;QACxC,QAAQ,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;KAC3C,CAAC;IACF,IAAI,CAAC,EAAE;QACL,OAAO,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;QACzC,KAAK,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;QACvC,KAAK,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;QACvC,MAAM,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;QACxC,QAAQ,CAAC,EAAE,eAAe,CAAC,aAAa,CAAC,CAAC;KAC3C,CAAC;CACH,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { BorderCollapse, BorderDetailProps, BorderRadius, BorderStyle, BorderWidth, ColorProps, FontSize, FontWeight } from '../literalTypes';
|
|
1
|
+
import { BorderCollapse, BorderDetailProps, BorderRadius, BorderStyle, BorderWidth, ColorName, ColorProps, FontSize, FontWeight } from '../literalTypes';
|
|
2
2
|
export default interface BaseComponentProps {
|
|
3
3
|
fore?: {
|
|
4
|
-
color?: ColorProps
|
|
4
|
+
color?: ColorProps<ColorName | "rainbow">;
|
|
5
5
|
fontSize?: FontSize;
|
|
6
6
|
fontWeight?: FontWeight;
|
|
7
7
|
isItalic?: boolean;
|
|
8
8
|
};
|
|
9
9
|
back?: {
|
|
10
|
-
color?: ColorProps
|
|
10
|
+
color?: ColorProps<ColorName | "rainbow">;
|
|
11
11
|
};
|
|
12
12
|
highlighter?: {
|
|
13
13
|
color?: ColorProps;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BaseComponentProps.d.ts","sourceRoot":"","sources":["../../../src/common/models/BaseComponentProps.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,cAAc,EACd,iBAAiB,EACjB,YAAY,EACZ,WAAW,EACX,WAAW,EACX,UAAU,EACV,QAAQ,EACR,UAAU,EACX,MAAM,iBAAiB,CAAC;AAEzB,MAAM,CAAC,OAAO,WAAW,kBAAkB;IACzC,IAAI,CAAC,EAAE;QACL,KAAK,CAAC,EAAE,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"BaseComponentProps.d.ts","sourceRoot":"","sources":["../../../src/common/models/BaseComponentProps.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,10 +1,16 @@
|
|
|
1
|
+
export type { default as AnimationCssVariable } from './AnimationCssVariable';
|
|
1
2
|
export type { default as BaseComponentProps } from './BaseComponentProps';
|
|
3
|
+
export type { default as BorderCssVariable } from './BorderCssVariable';
|
|
2
4
|
export type { default as ColorCssVariable } from './ColorCssVariable';
|
|
3
5
|
export type { default as ComponentPart } from './ComponentPart';
|
|
6
|
+
export type { default as ComponentSchemeColor } from './ComponentSchemeColor';
|
|
7
|
+
export type { default as ComponentsCssVariable } from './ComponentsCssVariable';
|
|
4
8
|
export type { default as ComponentStatePseudoClass } from './ComponentStatePseudoClass';
|
|
5
9
|
export type { default as Gradation } from './Gradation';
|
|
10
|
+
export type { default as MinolithCssVariable } from './MinolithCssVariable';
|
|
11
|
+
export type { default as MiscellaneousCssVariable } from './MiscellaneousCssVariable';
|
|
6
12
|
export type { default as Oklch } from './Oklch';
|
|
7
13
|
export type { default as SchemeColor } from './SchemeColor';
|
|
8
|
-
export type { default as
|
|
14
|
+
export type { default as SchemeColorComponents } from './SchemeColorComponents';
|
|
9
15
|
export type { default as TypographyCssVariable } from './TypographyCssVariable';
|
|
10
16
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/common/models/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1E,YAAY,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtE,YAAY,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChE,YAAY,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACxF,YAAY,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AACxD,YAAY,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAChD,YAAY,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5D,YAAY,EAAE,OAAO,IAAI,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/common/models/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9E,YAAY,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1E,YAAY,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxE,YAAY,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtE,YAAY,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChE,YAAY,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9E,YAAY,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAChF,YAAY,EAAE,OAAO,IAAI,yBAAyB,EAAE,MAAM,6BAA6B,CAAC;AACxF,YAAY,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AACxD,YAAY,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5E,YAAY,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AACtF,YAAY,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAC;AAChD,YAAY,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5D,YAAY,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAChF,YAAY,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
import '../../assets/Accordion.css';const c = "
|
|
1
|
+
import { jsx as _ } from "react/jsx-runtime";
|
|
2
|
+
import r from "../../utilities/classNameUtility.js";
|
|
3
|
+
import '../../assets/Accordion.css';const c = "_check_5wpro_1", a = "_chevron_5wpro_41", n = "_accordion_5wpro_76", i = {
|
|
4
4
|
check: c,
|
|
5
|
-
"is-gray": "_is-
|
|
6
|
-
"is-red": "_is-
|
|
7
|
-
"is-orange": "_is-
|
|
8
|
-
"is-yellow": "_is-
|
|
9
|
-
"is-green": "_is-
|
|
10
|
-
"is-cyan": "_is-
|
|
11
|
-
"is-blue": "_is-
|
|
12
|
-
"is-violet": "_is-
|
|
13
|
-
"is-magenta": "_is-
|
|
14
|
-
chevron:
|
|
15
|
-
accordion:
|
|
16
|
-
"accordion-summary": "_accordion-
|
|
17
|
-
"is-focus": "_is-
|
|
18
|
-
"is-focused": "_is-
|
|
19
|
-
"is-hovered": "_is-
|
|
20
|
-
"is-active": "_is-
|
|
21
|
-
"is-disabled": "_is-
|
|
22
|
-
"accordion-details": "_accordion-
|
|
5
|
+
"is-gray": "_is-gray_5wpro_13",
|
|
6
|
+
"is-red": "_is-red_5wpro_16",
|
|
7
|
+
"is-orange": "_is-orange_5wpro_19",
|
|
8
|
+
"is-yellow": "_is-yellow_5wpro_22",
|
|
9
|
+
"is-green": "_is-green_5wpro_25",
|
|
10
|
+
"is-cyan": "_is-cyan_5wpro_28",
|
|
11
|
+
"is-blue": "_is-blue_5wpro_31",
|
|
12
|
+
"is-violet": "_is-violet_5wpro_34",
|
|
13
|
+
"is-magenta": "_is-magenta_5wpro_37",
|
|
14
|
+
chevron: a,
|
|
15
|
+
accordion: n,
|
|
16
|
+
"accordion-summary": "_accordion-summary_5wpro_86",
|
|
17
|
+
"is-focus": "_is-focus_5wpro_139",
|
|
18
|
+
"is-focused": "_is-focused_5wpro_139",
|
|
19
|
+
"is-hovered": "_is-hovered_5wpro_143",
|
|
20
|
+
"is-active": "_is-active_5wpro_147",
|
|
21
|
+
"is-disabled": "_is-disabled_5wpro_152",
|
|
22
|
+
"accordion-details": "_accordion-details_5wpro_156"
|
|
23
23
|
};
|
|
24
|
-
function
|
|
24
|
+
function d(o) {
|
|
25
25
|
const e = { ...o };
|
|
26
26
|
delete e.colorName, delete e.fore, delete e.back, delete e.highlighter, delete e.border, delete e.positioning, delete e.sizing, delete e.spacing;
|
|
27
|
-
const s = [
|
|
28
|
-
return o.colorName && s.push(
|
|
27
|
+
const s = [i.accordion];
|
|
28
|
+
return o.colorName && s.push(i[`is-${o.colorName}`]), s.push(...r.getUtilityClassNames(o)), o.className && s.push(o.className), /* @__PURE__ */ _("details", { ...e, className: s.join(" ") });
|
|
29
29
|
}
|
|
30
30
|
export {
|
|
31
|
-
|
|
31
|
+
d as default
|
|
32
32
|
};
|
|
33
33
|
//# sourceMappingURL=Accordion.js.map
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
import '../../assets/Accordion.css';const
|
|
4
|
-
check:
|
|
5
|
-
"is-gray": "_is-
|
|
6
|
-
"is-red": "_is-
|
|
7
|
-
"is-orange": "_is-
|
|
8
|
-
"is-yellow": "_is-
|
|
9
|
-
"is-green": "_is-
|
|
10
|
-
"is-cyan": "_is-
|
|
11
|
-
"is-blue": "_is-
|
|
12
|
-
"is-violet": "_is-
|
|
13
|
-
"is-magenta": "_is-
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import _ from "../../utilities/classNameUtility.js";
|
|
3
|
+
import '../../assets/Accordion.css';const a = "_check_5wpro_1", c = "_chevron_5wpro_41", r = "_accordion_5wpro_76", n = {
|
|
4
|
+
check: a,
|
|
5
|
+
"is-gray": "_is-gray_5wpro_13",
|
|
6
|
+
"is-red": "_is-red_5wpro_16",
|
|
7
|
+
"is-orange": "_is-orange_5wpro_19",
|
|
8
|
+
"is-yellow": "_is-yellow_5wpro_22",
|
|
9
|
+
"is-green": "_is-green_5wpro_25",
|
|
10
|
+
"is-cyan": "_is-cyan_5wpro_28",
|
|
11
|
+
"is-blue": "_is-blue_5wpro_31",
|
|
12
|
+
"is-violet": "_is-violet_5wpro_34",
|
|
13
|
+
"is-magenta": "_is-magenta_5wpro_37",
|
|
14
14
|
chevron: c,
|
|
15
|
-
accordion:
|
|
16
|
-
"accordion-summary": "_accordion-
|
|
17
|
-
"is-focus": "_is-
|
|
18
|
-
"is-focused": "_is-
|
|
19
|
-
"is-hovered": "_is-
|
|
20
|
-
"is-active": "_is-
|
|
21
|
-
"is-disabled": "_is-
|
|
22
|
-
"accordion-details": "_accordion-
|
|
15
|
+
accordion: r,
|
|
16
|
+
"accordion-summary": "_accordion-summary_5wpro_86",
|
|
17
|
+
"is-focus": "_is-focus_5wpro_139",
|
|
18
|
+
"is-focused": "_is-focused_5wpro_139",
|
|
19
|
+
"is-hovered": "_is-hovered_5wpro_143",
|
|
20
|
+
"is-active": "_is-active_5wpro_147",
|
|
21
|
+
"is-disabled": "_is-disabled_5wpro_152",
|
|
22
|
+
"accordion-details": "_accordion-details_5wpro_156"
|
|
23
23
|
};
|
|
24
|
-
function
|
|
24
|
+
function l(s) {
|
|
25
25
|
const e = { ...s };
|
|
26
26
|
delete e.as, delete e.fore, delete e.back, delete e.highlighter, delete e.border, delete e.positioning, delete e.sizing, delete e.spacing;
|
|
27
|
-
const
|
|
28
|
-
return
|
|
27
|
+
const i = [n["accordion-details"]];
|
|
28
|
+
return i.push(..._.getUtilityClassNames(s)), s.className && i.push(s.className), s.as ? /* @__PURE__ */ o(s.as, { ...e, className: i.join(" ") }) : /* @__PURE__ */ o("div", { ...e, className: i.join(" ") });
|
|
29
29
|
}
|
|
30
30
|
export {
|
|
31
|
-
|
|
31
|
+
l as default
|
|
32
32
|
};
|
|
33
33
|
//# sourceMappingURL=AccordionDetails.js.map
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
import '../../assets/Accordion.css';const
|
|
4
|
-
check:
|
|
5
|
-
"is-gray": "_is-
|
|
6
|
-
"is-red": "_is-
|
|
7
|
-
"is-orange": "_is-
|
|
8
|
-
"is-yellow": "_is-
|
|
9
|
-
"is-green": "_is-
|
|
10
|
-
"is-cyan": "_is-
|
|
11
|
-
"is-blue": "_is-
|
|
12
|
-
"is-violet": "_is-
|
|
13
|
-
"is-magenta": "_is-
|
|
14
|
-
chevron:
|
|
15
|
-
accordion:
|
|
16
|
-
"accordion-summary": "_accordion-
|
|
17
|
-
"is-focus": "_is-
|
|
18
|
-
"is-focused": "_is-
|
|
19
|
-
"is-hovered": "_is-
|
|
20
|
-
"is-active": "_is-
|
|
21
|
-
"is-disabled": "_is-
|
|
22
|
-
"accordion-details": "_accordion-
|
|
1
|
+
import { jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import _ from "../../utilities/classNameUtility.js";
|
|
3
|
+
import '../../assets/Accordion.css';const r = "_check_5wpro_1", a = "_chevron_5wpro_41", c = "_accordion_5wpro_76", n = {
|
|
4
|
+
check: r,
|
|
5
|
+
"is-gray": "_is-gray_5wpro_13",
|
|
6
|
+
"is-red": "_is-red_5wpro_16",
|
|
7
|
+
"is-orange": "_is-orange_5wpro_19",
|
|
8
|
+
"is-yellow": "_is-yellow_5wpro_22",
|
|
9
|
+
"is-green": "_is-green_5wpro_25",
|
|
10
|
+
"is-cyan": "_is-cyan_5wpro_28",
|
|
11
|
+
"is-blue": "_is-blue_5wpro_31",
|
|
12
|
+
"is-violet": "_is-violet_5wpro_34",
|
|
13
|
+
"is-magenta": "_is-magenta_5wpro_37",
|
|
14
|
+
chevron: a,
|
|
15
|
+
accordion: c,
|
|
16
|
+
"accordion-summary": "_accordion-summary_5wpro_86",
|
|
17
|
+
"is-focus": "_is-focus_5wpro_139",
|
|
18
|
+
"is-focused": "_is-focused_5wpro_139",
|
|
19
|
+
"is-hovered": "_is-hovered_5wpro_143",
|
|
20
|
+
"is-active": "_is-active_5wpro_147",
|
|
21
|
+
"is-disabled": "_is-disabled_5wpro_152",
|
|
22
|
+
"accordion-details": "_accordion-details_5wpro_156"
|
|
23
23
|
};
|
|
24
24
|
function l(e) {
|
|
25
25
|
const s = { ...e };
|
|
26
26
|
delete s.fore, delete s.back, delete s.highlighter, delete s.border, delete s.positioning, delete s.sizing, delete s.spacing;
|
|
27
|
-
const
|
|
28
|
-
return
|
|
27
|
+
const o = [n["accordion-summary"]];
|
|
28
|
+
return o.push(..._.getUtilityClassNames(e)), e.className && o.push(e.className), /* @__PURE__ */ i("summary", { ...s, className: o.join(" ") });
|
|
29
29
|
}
|
|
30
30
|
export {
|
|
31
31
|
l as default
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Blockquote.d.ts","sourceRoot":"","sources":["../../../src/components/Blockquote/Blockquote.tsx"],"names":[],"mappings":"AAEA,OAAO,eAAe,MAAM,mBAAmB,CAAC;AAEhD,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,KAAK,EAAE,eAAe,GAAG,KAAK,CAAC,YAAY,CAiC7E"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import i from "../../utilities/classNameUtility.js";
|
|
3
|
+
import '../../assets/Blockquote.css';const _ = "_check_1a250_1", l = "_chevron_1a250_41", c = "_blockquote_1a250_76", t = {
|
|
4
|
+
check: _,
|
|
5
|
+
"is-gray": "_is-gray_1a250_13",
|
|
6
|
+
"is-red": "_is-red_1a250_16",
|
|
7
|
+
"is-orange": "_is-orange_1a250_19",
|
|
8
|
+
"is-yellow": "_is-yellow_1a250_22",
|
|
9
|
+
"is-green": "_is-green_1a250_25",
|
|
10
|
+
"is-cyan": "_is-cyan_1a250_28",
|
|
11
|
+
"is-blue": "_is-blue_1a250_31",
|
|
12
|
+
"is-violet": "_is-violet_1a250_34",
|
|
13
|
+
"is-magenta": "_is-magenta_1a250_37",
|
|
14
|
+
chevron: l,
|
|
15
|
+
blockquote: c,
|
|
16
|
+
"is-italic": "_is-italic_1a250_95",
|
|
17
|
+
"has-quote": "_has-quote_1a250_98",
|
|
18
|
+
"has-quote-before": "_has-quote-before_1a250_98",
|
|
19
|
+
"has-quote-after": "_has-quote-after_1a250_115"
|
|
20
|
+
};
|
|
21
|
+
function n(e) {
|
|
22
|
+
const a = { ...e };
|
|
23
|
+
delete a.colorName, delete a.isItalic, delete a.hasQuote, delete a.fore, delete a.back, delete a.highlighter, delete a.border, delete a.positioning, delete a.sizing, delete a.spacing;
|
|
24
|
+
const s = [t.blockquote];
|
|
25
|
+
return e.colorName && s.push(t[`is-${e.colorName}`]), e.isItalic && s.push(t["is-italic"]), e.hasQuote && (typeof e.hasQuote == "boolean" ? e.hasQuote && s.push(t["has-quote"]) : (e.hasQuote.before && s.push(t["has-quote-before"]), e.hasQuote.after && s.push(t["has-quote-after"]))), s.push(...i.getUtilityClassNames(e)), e.className && s.push(e.className), /* @__PURE__ */ o("blockquote", { ...a, className: s.join(" ") });
|
|
26
|
+
}
|
|
27
|
+
export {
|
|
28
|
+
n as default
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=Blockquote.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Blockquote.js","sources":["../../../src/components/Blockquote/Blockquote.tsx"],"sourcesContent":["import { classNameUtility } from \"../../utilities\";\r\nimport classNames from \"./Blockquote.module.scss\";\r\nimport BlockquoteProps from \"./BlockquoteProps\";\r\n\r\nexport default function Blockquote(props: BlockquoteProps): React.ReactElement {\r\n const assignedProps = { ...props };\r\n delete assignedProps[\"colorName\"];\r\n delete assignedProps[\"isItalic\"];\r\n delete assignedProps[\"hasQuote\"];\r\n //#region BaseComponentProps\r\n delete assignedProps[\"fore\"];\r\n delete assignedProps[\"back\"];\r\n delete assignedProps[\"highlighter\"];\r\n delete assignedProps[\"border\"];\r\n delete assignedProps[\"positioning\"];\r\n delete assignedProps[\"sizing\"];\r\n delete assignedProps[\"spacing\"];\r\n //#endregion BaseComponentProps\r\n\r\n const assignedClassNames: string[] = [classNames[\"blockquote\"]];\r\n props.colorName &&\r\n assignedClassNames.push(classNames[`is-${props.colorName}`]);\r\n props.isItalic && assignedClassNames.push(classNames[`is-italic`]);\r\n if (props.hasQuote) {\r\n if (typeof props.hasQuote === \"boolean\") {\r\n props.hasQuote && assignedClassNames.push(classNames[`has-quote`]);\r\n } else {\r\n props.hasQuote.before && assignedClassNames.push(classNames[`has-quote-before`]);\r\n props.hasQuote.after && assignedClassNames.push(classNames[`has-quote-after`]);\r\n }\r\n }\r\n assignedClassNames.push(...classNameUtility.getUtilityClassNames(props));\r\n props.className && assignedClassNames.push(props.className);\r\n\r\n return (\r\n <blockquote {...assignedProps} className={assignedClassNames.join(\" \")} />\r\n );\r\n}\r\n"],"names":["Blockquote","props","assignedProps","assignedClassNames","classNames","classNameUtility","jsx"],"mappings":";;;;;;;;;;;;;;;;;;;;AAIA,SAAwBA,EAAWC,GAA4C;AACvE,QAAAC,IAAgB,EAAE,GAAGD,EAAM;AACjC,SAAOC,EAAc,WACrB,OAAOA,EAAc,UACrB,OAAOA,EAAc,UAErB,OAAOA,EAAc,MACrB,OAAOA,EAAc,MACrB,OAAOA,EAAc,aACrB,OAAOA,EAAc,QACrB,OAAOA,EAAc,aACrB,OAAOA,EAAc,QACrB,OAAOA,EAAc;AAGrB,QAAMC,IAA+B,CAACC,EAAW,UAAa;AACxD,SAAAH,EAAA,aACJE,EAAmB,KAAKC,EAAW,MAAMH,EAAM,SAAS,EAAE,CAAC,GAC7DA,EAAM,YAAYE,EAAmB,KAAKC,EAAW,WAAW,CAAC,GAC7DH,EAAM,aACJ,OAAOA,EAAM,YAAa,YAC5BA,EAAM,YAAYE,EAAmB,KAAKC,EAAW,WAAW,CAAC,KAEjEH,EAAM,SAAS,UAAUE,EAAmB,KAAKC,EAAW,kBAAkB,CAAC,GAC/EH,EAAM,SAAS,SAASE,EAAmB,KAAKC,EAAW,iBAAiB,CAAC,KAGjFD,EAAmB,KAAK,GAAGE,EAAiB,qBAAqBJ,CAAK,CAAC,GACvEA,EAAM,aAAaE,EAAmB,KAAKF,EAAM,SAAS,GAGxD,gBAAAK,EAAC,gBAAY,GAAGJ,GAAe,WAAWC,EAAmB,KAAK,GAAG,GAAG;AAE5E;"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as Blockquote } from './Blockquote';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: typeof Blockquote;
|
|
6
|
+
tags: string[];
|
|
7
|
+
argTypes: {};
|
|
8
|
+
};
|
|
9
|
+
export default meta;
|
|
10
|
+
type Story = StoryObj<typeof meta>;
|
|
11
|
+
export declare const Plain: Story;
|
|
12
|
+
export declare const IsItalic: Story;
|
|
13
|
+
export declare const HasQuote: Story;
|
|
14
|
+
export declare const HasQuoteBefore: Story;
|
|
15
|
+
export declare const HasQuoteAfter: Story;
|
|
16
|
+
//# sourceMappingURL=Blockquote.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Blockquote.stories.d.ts","sourceRoot":"","sources":["../../../src/components/Blockquote/Blockquote.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,UAAU,MAAM,cAAc,CAAC;AAKtC,QAAA,MAAM,IAAI;;;;;CAMyB,CAAC;AAEpC,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAGnC,eAAO,MAAM,KAAK,EAAE,KAUnB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAWtB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAWtB,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,KAa5B,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,KAa3B,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BaseComponentProps } from '../../common/models';
|
|
2
|
+
import { default as React } from 'react';
|
|
3
|
+
import { ColorName } from '../../react-minolith';
|
|
4
|
+
export default interface BlockquoteProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, BaseComponentProps {
|
|
5
|
+
colorName?: ColorName;
|
|
6
|
+
isItalic?: boolean;
|
|
7
|
+
hasQuote?: boolean | {
|
|
8
|
+
before?: boolean;
|
|
9
|
+
after?: boolean;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=BlockquoteProps.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BlockquoteProps.d.ts","sourceRoot":"","sources":["../../../src/components/Blockquote/BlockquoteProps.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEjD,MAAM,CAAC,OAAO,WAAW,eACvB,SAAQ,KAAK,CAAC,iBAAiB,CAC7B,KAAK,CAAC,cAAc,CAAC,gBAAgB,CAAC,EACtC,gBAAgB,CACjB,EAAE,kBAAkB;IACrB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,GAAG;QACnB,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,KAAK,CAAC,EAAE,OAAO,CAAC;KACjB,CAAC;CACH"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BlockquoteProps.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Blockquote/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACrD,YAAY,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as t } from "react/jsx-runtime";
|
|
2
2
|
import a from "../../utilities/classNameUtility.js";
|
|
3
|
-
import '../../assets/
|
|
4
|
-
|
|
3
|
+
import '../../assets/Div.css';const l = "_div_dlpvq_1", d = {
|
|
4
|
+
div: l
|
|
5
5
|
};
|
|
6
6
|
function c(s) {
|
|
7
7
|
const e = { ...s };
|
|
8
8
|
delete e.fore, delete e.back, delete e.highlighter, delete e.border, delete e.positioning, delete e.sizing, delete e.spacing;
|
|
9
|
-
const
|
|
10
|
-
return
|
|
9
|
+
const i = [d.div];
|
|
10
|
+
return i.push(...a.getUtilityClassNames(s)), s.className && i.push(s.className), /* @__PURE__ */ t("div", { ...e, className: i.join(" ") });
|
|
11
11
|
}
|
|
12
12
|
export {
|
|
13
13
|
c as default
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Div.js","sources":["../../../src/components/Div/Div.tsx"],"sourcesContent":["import { classNameUtility } from \"../../utilities\";\r\nimport classNames from \"./Div.module.scss\";\r\nimport DivProps from \"./DivProps\";\r\n\r\nexport default function Div(props: DivProps): React.ReactElement {\r\n const assignedProps = { ...props };\r\n //#region BaseComponentProps\r\n delete assignedProps[\"fore\"];\r\n delete assignedProps[\"back\"];\r\n delete assignedProps[\"highlighter\"];\r\n delete assignedProps[\"border\"];\r\n delete assignedProps[\"positioning\"];\r\n delete assignedProps[\"sizing\"];\r\n delete assignedProps[\"spacing\"];\r\n //#endregion BaseComponentProps\r\n\r\n const assignedClassNames: string[] = [classNames[\"
|
|
1
|
+
{"version":3,"file":"Div.js","sources":["../../../src/components/Div/Div.tsx"],"sourcesContent":["import { classNameUtility } from \"../../utilities\";\r\nimport classNames from \"./Div.module.scss\";\r\nimport DivProps from \"./DivProps\";\r\n\r\nexport default function Div(props: DivProps): React.ReactElement {\r\n const assignedProps = { ...props };\r\n //#region BaseComponentProps\r\n delete assignedProps[\"fore\"];\r\n delete assignedProps[\"back\"];\r\n delete assignedProps[\"highlighter\"];\r\n delete assignedProps[\"border\"];\r\n delete assignedProps[\"positioning\"];\r\n delete assignedProps[\"sizing\"];\r\n delete assignedProps[\"spacing\"];\r\n //#endregion BaseComponentProps\r\n\r\n const assignedClassNames: string[] = [classNames[\"div\"]];\r\n assignedClassNames.push(...classNameUtility.getUtilityClassNames(props));\r\n props.className && assignedClassNames.push(props.className);\r\n\r\n return <div {...assignedProps} className={assignedClassNames.join(\" \")} />;\r\n}\r\n"],"names":["Div","props","assignedProps","assignedClassNames","classNames","classNameUtility","jsx"],"mappings":";;;;;AAIA,SAAwBA,EAAIC,GAAqC;AACzD,QAAAC,IAAgB,EAAE,GAAGD,EAAM;AAEjC,SAAOC,EAAc,MACrB,OAAOA,EAAc,MACrB,OAAOA,EAAc,aACrB,OAAOA,EAAc,QACrB,OAAOA,EAAc,aACrB,OAAOA,EAAc,QACrB,OAAOA,EAAc;AAGrB,QAAMC,IAA+B,CAACC,EAAW,GAAM;AACvD,SAAAD,EAAmB,KAAK,GAAGE,EAAiB,qBAAqBJ,CAAK,CAAC,GACvEA,EAAM,aAAaE,EAAmB,KAAKF,EAAM,SAAS,GAEnD,gBAAAK,EAAC,SAAK,GAAGJ,GAAe,WAAWC,EAAmB,KAAK,GAAG,GAAG;AAC1E;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Paragraph.d.ts","sourceRoot":"","sources":["../../../src/components/Paragraph/Paragraph.tsx"],"names":[],"mappings":"AAEA,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAE9C,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,KAAK,EAAE,cAAc,GAAG,KAAK,CAAC,YAAY,CAiB3E"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import r from "../../utilities/classNameUtility.js";
|
|
3
|
+
import '../../assets/Paragraph.css';const i = "_paragraph_1dpzn_1", l = {
|
|
4
|
+
paragraph: i
|
|
5
|
+
};
|
|
6
|
+
function o(a) {
|
|
7
|
+
const e = { ...a };
|
|
8
|
+
delete e.fore, delete e.back, delete e.highlighter, delete e.border, delete e.positioning, delete e.sizing, delete e.spacing;
|
|
9
|
+
const s = [l.paragraph];
|
|
10
|
+
return s.push(...r.getUtilityClassNames(a)), a.className && s.push(a.className), /* @__PURE__ */ t("p", { ...e, className: s.join(" ") });
|
|
11
|
+
}
|
|
12
|
+
export {
|
|
13
|
+
o as default
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=Paragraph.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Paragraph.js","sources":["../../../src/components/Paragraph/Paragraph.tsx"],"sourcesContent":["import { classNameUtility } from \"../../utilities\";\r\nimport classNames from \"./Paragraph.module.scss\";\r\nimport ParagraphProps from \"./ParagraphProps\";\r\n\r\nexport default function Paragraph(props: ParagraphProps): React.ReactElement {\r\n const assignedProps = { ...props };\r\n //#region BaseComponentProps\r\n delete assignedProps[\"fore\"];\r\n delete assignedProps[\"back\"];\r\n delete assignedProps[\"highlighter\"];\r\n delete assignedProps[\"border\"];\r\n delete assignedProps[\"positioning\"];\r\n delete assignedProps[\"sizing\"];\r\n delete assignedProps[\"spacing\"];\r\n //#endregion BaseComponentProps\r\n\r\n const assignedClassNames: string[] = [classNames[\"paragraph\"]];\r\n assignedClassNames.push(...classNameUtility.getUtilityClassNames(props));\r\n props.className && assignedClassNames.push(props.className);\r\n\r\n return <p {...assignedProps} className={assignedClassNames.join(\" \")} />;\r\n}\r\n"],"names":["Paragraph","props","assignedProps","assignedClassNames","classNames","classNameUtility","jsx"],"mappings":";;;;;AAIA,SAAwBA,EAAUC,GAA2C;AACrE,QAAAC,IAAgB,EAAE,GAAGD,EAAM;AAEjC,SAAOC,EAAc,MACrB,OAAOA,EAAc,MACrB,OAAOA,EAAc,aACrB,OAAOA,EAAc,QACrB,OAAOA,EAAc,aACrB,OAAOA,EAAc,QACrB,OAAOA,EAAc;AAGrB,QAAMC,IAA+B,CAACC,EAAW,SAAY;AAC7D,SAAAD,EAAmB,KAAK,GAAGE,EAAiB,qBAAqBJ,CAAK,CAAC,GACvEA,EAAM,aAAaE,EAAmB,KAAKF,EAAM,SAAS,GAEnD,gBAAAK,EAAC,OAAG,GAAGJ,GAAe,WAAWC,EAAmB,KAAK,GAAG,GAAG;AACxE;"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { StoryObj } from '@storybook/react';
|
|
2
|
+
import { default as Paragraph } from './Paragraph';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: typeof Paragraph;
|
|
6
|
+
tags: string[];
|
|
7
|
+
argTypes: {};
|
|
8
|
+
};
|
|
9
|
+
export default meta;
|
|
10
|
+
type Story = StoryObj<typeof meta>;
|
|
11
|
+
export declare const Plain: Story;
|
|
12
|
+
//# sourceMappingURL=Paragraph.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Paragraph.stories.d.ts","sourceRoot":"","sources":["../../../src/components/Paragraph/Paragraph.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAQ,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,SAAS,MAAM,aAAa,CAAC;AAIpC,QAAA,MAAM,IAAI;;;;;CAKwB,CAAC;AAEnC,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,IAAI,CAAC,CAAC;AAGnC,eAAO,MAAM,KAAK,EAAE,KAOnB,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { BaseComponentProps } from '../../common/models';
|
|
2
|
+
import { default as React } from 'react';
|
|
3
|
+
export default interface ParagraphProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, BaseComponentProps {
|
|
4
|
+
}
|
|
5
|
+
//# sourceMappingURL=ParagraphProps.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ParagraphProps.d.ts","sourceRoot":"","sources":["../../../src/components/Paragraph/ParagraphProps.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,CAAC,OAAO,WAAW,cACvB,SAAQ,KAAK,CAAC,iBAAiB,CAC3B,KAAK,CAAC,cAAc,CAAC,oBAAoB,CAAC,EAC1C,oBAAoB,CACrB,EACD,kBAAkB;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ParagraphProps.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Paragraph/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,aAAa,CAAC;AACnD,YAAY,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs as i, jsx as l } from "react/jsx-runtime";
|
|
2
2
|
import n from "../../utilities/classNameUtility.js";
|
|
3
|
-
import '../../assets/
|
|
3
|
+
import '../../assets/Section.css';const a = "_element_19mzt_1", r = {
|
|
4
4
|
element: a
|
|
5
5
|
};
|
|
6
6
|
function m(t) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as l } from "react/jsx-runtime";
|
|
2
2
|
import a from "../../utilities/classNameUtility.js";
|
|
3
|
-
import '../../assets/
|
|
3
|
+
import '../../assets/Section.css';const i = "_element_19mzt_1", n = {
|
|
4
4
|
element: i
|
|
5
5
|
};
|
|
6
6
|
function c(s) {
|