@maggioli-design-system/mds-modal 5.5.2 → 5.5.3

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.
@@ -0,0 +1 @@
1
+ export {};
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2025-03-13T15:37:37",
2
+ "timestamp": "2025-03-17T18:14:03",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "4.27.2",
package/dist/stats.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2025-03-13T15:37:37",
2
+ "timestamp": "2025-03-17T18:14:04",
3
3
  "compiler": {
4
4
  "name": "node",
5
5
  "version": "22.11.0"
@@ -9,11 +9,11 @@
9
9
  "fsNamespace": "mds-modal",
10
10
  "components": 1,
11
11
  "entries": 1,
12
- "bundles": 104,
12
+ "bundles": 105,
13
13
  "outputs": [
14
14
  {
15
15
  "name": "dist-collection",
16
- "files": 56,
16
+ "files": 57,
17
17
  "generatedFiles": [
18
18
  "./dist/collection/common/aria.js",
19
19
  "./dist/collection/common/browser.js",
@@ -62,6 +62,7 @@
62
62
  "./dist/collection/type/floating-ui.js",
63
63
  "./dist/collection/type/form-rel.js",
64
64
  "./dist/collection/type/header-bar.js",
65
+ "./dist/collection/type/input-tip.js",
65
66
  "./dist/collection/type/input.js",
66
67
  "./dist/collection/type/keyboard.js",
67
68
  "./dist/collection/type/loading.js",
@@ -864,6 +865,7 @@
864
865
  "./src/type/floating-ui.ts": [],
865
866
  "./src/type/form-rel.ts": [],
866
867
  "./src/type/header-bar.ts": [],
868
+ "./src/type/input-tip.ts": [],
867
869
  "./src/type/input.ts": [],
868
870
  "./src/type/keyboard.ts": [],
869
871
  "./src/type/loading.ts": [],
@@ -0,0 +1 @@
1
+ export type InputTipItemVariantType = 'count-almost' | 'count-almost-full' | 'count-empty' | 'count-full' | 'count-incomplete' | 'disabled' | 'readonly' | 'required' | 'required-success' | 'text';
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2025-03-13T15:04:42",
2
+ "timestamp": "2025-03-17T17:10:07",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "4.27.2",
@@ -643,10 +643,10 @@
643
643
  "docstring": "",
644
644
  "path": "src/components/mds-input-tip/meta/types.ts"
645
645
  },
646
- "src/components/mds-input-tip-item/meta/types.ts::InputTipItemVariantType": {
647
- "declaration": "export type InputTipItemVariantType =\n | 'required'\n | 'required-success'\n | 'disabled'\n | 'readonly'\n | 'text'",
646
+ "src/type/input-tip.ts::InputTipItemVariantType": {
647
+ "declaration": "export type InputTipItemVariantType =\n | 'count-almost'\n | 'count-almost-full'\n | 'count-empty'\n | 'count-full'\n | 'count-incomplete'\n | 'disabled'\n | 'readonly'\n | 'required'\n | 'required-success'\n | 'text'",
648
648
  "docstring": "",
649
- "path": "src/components/mds-input-tip-item/meta/types.ts"
649
+ "path": "src/type/input-tip.ts"
650
650
  },
651
651
  "src/components/mds-input-upload/meta/types.ts::AttachmentSort": {
652
652
  "declaration": "type AttachmentSort =\n 'status' |\n 'date'",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maggioli-design-system/mds-modal",
3
- "version": "5.5.2",
3
+ "version": "5.5.3",
4
4
  "description": "mds-modal is a web-component from Magma Design System, built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScript framework you are using.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",
@@ -24,7 +24,7 @@
24
24
  "test": "stencil test --spec --e2e"
25
25
  },
26
26
  "dependencies": {
27
- "@maggioli-design-system/mds-button": "6.4.2",
27
+ "@maggioli-design-system/mds-button": "6.4.3",
28
28
  "@maggioli-design-system/styles": "15.9.0",
29
29
  "@stencil/core": "4.27.2",
30
30
  "clsx": "2.1.0"
@@ -0,0 +1,11 @@
1
+ export type InputTipItemVariantType =
2
+ | 'count-almost'
3
+ | 'count-almost-full'
4
+ | 'count-empty'
5
+ | 'count-full'
6
+ | 'count-incomplete'
7
+ | 'disabled'
8
+ | 'readonly'
9
+ | 'required'
10
+ | 'required-success'
11
+ | 'text'