@1money/component-ui 0.0.94-alpha.0 → 0.0.94-alpha.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/es/business/Dialog/BaseDialog/style/BaseDialog.css +0 -3
- package/es/business/Dialog/Descriptions/Descriptions.js +7 -3
- package/es/business/Dialog/Descriptions/interface.d.ts +7 -0
- package/es/business/Dialog/DetailsDialog/DetailsDialog.js +4 -2
- package/es/business/Dialog/DetailsDialog/interface.d.ts +5 -0
- package/es/business/Dialog/DetailsDialog/style/DetailsDialog.css +4 -0
- package/es/business/Dialog/FormDialog/FormDialog.js +2 -2
- package/es/business/Dialog/FormDialog/interface.d.ts +8 -1
- package/es/business/Dialog/VerificationDialog/style/VerificationDialog.css +0 -8
- package/es/business/Select/Currency/CurrencySelect.js +2 -2
- package/es/business/Select/Currency/style/CurrencySelect.css +2 -2
- package/es/components/Dialog/DialogContent.js +5 -2
- package/es/components/Input/interface.d.ts +6 -0
- package/es/components/ProForm/ProFormItem.js +14 -4
- package/es/components/ProForm/core/constants.d.ts +7 -0
- package/es/components/ProForm/core/constants.js +8 -1
- package/es/components/ProForm/fields/createProFormField.js +4 -2
- package/es/components/ProForm/interface.d.ts +20 -0
- package/es/components/ProForm/style/ProForm.css +4 -0
- package/es/components/Typography/interface.d.ts +1 -1
- package/es/components/Typography/interface.js +4 -2
- package/es/components/Typography/style/Typography.css +10 -0
- package/es/index.css +1 -1
- package/es/styles/index.css +6 -0
- package/lib/business/Dialog/BaseDialog/style/BaseDialog.css +0 -3
- package/lib/business/Dialog/Descriptions/Descriptions.js +7 -3
- package/lib/business/Dialog/Descriptions/interface.d.ts +7 -0
- package/lib/business/Dialog/DetailsDialog/DetailsDialog.js +4 -2
- package/lib/business/Dialog/DetailsDialog/interface.d.ts +5 -0
- package/lib/business/Dialog/DetailsDialog/style/DetailsDialog.css +4 -0
- package/lib/business/Dialog/FormDialog/FormDialog.js +2 -2
- package/lib/business/Dialog/FormDialog/interface.d.ts +8 -1
- package/lib/business/Dialog/VerificationDialog/style/VerificationDialog.css +0 -8
- package/lib/business/Select/Currency/CurrencySelect.js +2 -2
- package/lib/business/Select/Currency/style/CurrencySelect.css +2 -2
- package/lib/components/Dialog/DialogContent.js +5 -2
- package/lib/components/Input/interface.d.ts +6 -0
- package/lib/components/ProForm/ProFormItem.js +13 -3
- package/lib/components/ProForm/core/constants.d.ts +7 -0
- package/lib/components/ProForm/core/constants.js +9 -2
- package/lib/components/ProForm/fields/createProFormField.js +4 -2
- package/lib/components/ProForm/interface.d.ts +20 -0
- package/lib/components/ProForm/style/ProForm.css +4 -0
- package/lib/components/Typography/interface.d.ts +1 -1
- package/lib/components/Typography/interface.js +4 -2
- package/lib/components/Typography/style/Typography.css +10 -0
- package/lib/index.css +1 -1
- package/lib/styles/index.css +6 -0
- package/package.json +1 -1
- package/scripts/mcp-server/index.generated.json +17 -0
package/lib/styles/index.css
CHANGED
|
@@ -257,6 +257,12 @@
|
|
|
257
257
|
--om-title-sm-letter-spacing: 0;
|
|
258
258
|
--om-title-sm-font-weight: 500;
|
|
259
259
|
--om-title-sm-strong-font-weight: 700;
|
|
260
|
+
--om-title-xs-font-size: 12px;
|
|
261
|
+
--om-title-xs-font-family: var(--om-font-inter);
|
|
262
|
+
--om-title-xs-line-height: 16px;
|
|
263
|
+
--om-title-xs-letter-spacing: 0;
|
|
264
|
+
--om-title-xs-font-weight: 500;
|
|
265
|
+
--om-title-xs-strong-font-weight: 700;
|
|
260
266
|
--om-body-lg-font-size: 16px;
|
|
261
267
|
--om-body-lg-font-family: var(--om-font-inter);
|
|
262
268
|
--om-body-lg-line-height: 22px;
|
package/package.json
CHANGED
|
@@ -10397,6 +10397,14 @@
|
|
|
10397
10397
|
"description": "",
|
|
10398
10398
|
"inheritedFrom": null
|
|
10399
10399
|
},
|
|
10400
|
+
{
|
|
10401
|
+
"name": "required",
|
|
10402
|
+
"type": "boolean",
|
|
10403
|
+
"optional": true,
|
|
10404
|
+
"default": null,
|
|
10405
|
+
"description": "Defaults to `true`.",
|
|
10406
|
+
"inheritedFrom": null
|
|
10407
|
+
},
|
|
10400
10408
|
{
|
|
10401
10409
|
"name": "rules",
|
|
10402
10410
|
"type": "FormRule<Values>[]",
|
|
@@ -23650,6 +23658,15 @@
|
|
|
23650
23658
|
"resolved": "(\n font-family: $om-font-inter,\n font-weight: $om-font-weight-medium,\n font-size: 14px,\n line-height: 20px,\n letter-spacing: $om-tracking-none,\n strong: (font-weight: $om-font-weight-bold),\n )",
|
|
23651
23659
|
"kind": "typography",
|
|
23652
23660
|
"layer": "semantic"
|
|
23661
|
+
},
|
|
23662
|
+
{
|
|
23663
|
+
"name": "typography-title-xs",
|
|
23664
|
+
"scss": "$om-typography-title['xs']",
|
|
23665
|
+
"cssVar": "--om-typography-typography-title-xs",
|
|
23666
|
+
"value": "(\n font-family: $om-font-inter,\n font-weight: $om-font-weight-medium,\n font-size: 12px,\n line-height: 16px,\n letter-spacing: $om-tracking-none,\n strong: (font-weight: $om-font-weight-bold),\n )",
|
|
23667
|
+
"resolved": "(\n font-family: $om-font-inter,\n font-weight: $om-font-weight-medium,\n font-size: 12px,\n line-height: 16px,\n letter-spacing: $om-tracking-none,\n strong: (font-weight: $om-font-weight-bold),\n )",
|
|
23668
|
+
"kind": "typography",
|
|
23669
|
+
"layer": "semantic"
|
|
23653
23670
|
}
|
|
23654
23671
|
],
|
|
23655
23672
|
"icons": [
|