@fewangsit/wangsvue-gsts 2.0.0-alpha.27 → 2.0.0-alpha.29

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.
Files changed (65) hide show
  1. package/badge/Badge.fm.md +32 -0
  2. package/basetree/index.d.ts +31 -0
  3. package/breadcrumb/Breadcrumb.fm.md +23 -0
  4. package/button/Button.fm.md +53 -0
  5. package/buttonbulkaction/ButtonBulkAction-MenuItem.fm.md +18 -0
  6. package/buttonbulkaction/ButtonBulkAction.fm.md +25 -0
  7. package/buttondownload/ButtonDownload.fm.md +22 -0
  8. package/buttonfilter/ButtonFilter.fm.md +19 -0
  9. package/buttonscan/index.d.ts +6 -0
  10. package/buttonsearch/ButtonSearch.fm.md +19 -0
  11. package/buttonsearchbyscan/ButtonSearchByScan.fm.md +25 -0
  12. package/buttonselecttree/ButtonSelectTree.fm.md +40 -0
  13. package/buttonselecttree/index.d.ts +18 -0
  14. package/calendar/Calendar.fm.md +34 -0
  15. package/calendar/index.d.ts +41 -0
  16. package/changelogpage/index.d.ts +1 -1
  17. package/components.fm.md +56 -0
  18. package/customcolumn/index.d.ts +5 -5
  19. package/datatable/DataTable-MenuItem.fm.md +22 -0
  20. package/datatable/DataTable-TableColumn.fm.md +52 -0
  21. package/datatable/DataTable.fm.md +40 -0
  22. package/datatable/index.d.ts +8 -0
  23. package/dialog/index.d.ts +5 -0
  24. package/dialogconfirm/DialogConfirm.fm.md +29 -0
  25. package/dialogform/DialogForm.fm.md +57 -0
  26. package/dialogselecttree/DialogSelectTree.fm.md +42 -0
  27. package/dialogselecttree/index.d.ts +25 -1
  28. package/dropdown/Dropdown.fm.md +34 -0
  29. package/fieldwrapper/index.d.ts +5 -0
  30. package/fileupload/FileUpload.fm.md +31 -0
  31. package/fileupload/index.d.ts +7 -1
  32. package/icon/index.d.ts +75 -66
  33. package/imagecompressor/ImageCompressor.fm.md +44 -0
  34. package/imagecompressor/index.d.ts +1 -1
  35. package/inputbadge/InputBadge.fm.md +34 -0
  36. package/inputbadge/index.d.ts +4 -0
  37. package/inputcurrency/index.d.ts +14 -0
  38. package/inputnumber/InputNumber.fm.md +39 -0
  39. package/inputpassword/InputPassword.fm.md +28 -0
  40. package/inputpassword/index.d.ts +4 -0
  41. package/inputphonenumber/InputPhoneNumber.fm.md +34 -0
  42. package/inputrangenumber/InputRangeNumber.fm.md +31 -0
  43. package/inputtext/InputText.fm.md +34 -0
  44. package/mcp/components.json +2 -2
  45. package/mcp/components.summary.txt +1 -1
  46. package/mcp/main.js +1216 -1092
  47. package/mcp/package.json +6 -6
  48. package/mcp/skills/figma-to-code/SKILL.md +1 -0
  49. package/mcp/skills/wangsvue-code-review/SKILL.md +2 -0
  50. package/mcp/skills/wangsvue-workflow/SKILL.md +1 -0
  51. package/menu/index.d.ts +4 -0
  52. package/multiselect/MultiSelect.fm.md +34 -0
  53. package/overlaypanel/index.d.ts +4 -0
  54. package/package.json +1 -1
  55. package/plugins/WangsVue.d.ts +2 -1
  56. package/stats.html +1 -1
  57. package/style.css +2 -2
  58. package/tabmenu/TabMenu.fm.md +28 -0
  59. package/tagtype/index.d.ts +1 -1
  60. package/textarea/TextArea.fm.md +34 -0
  61. package/tree/index.d.ts +34 -0
  62. package/wangsvue-gsts.es.js +17242 -16702
  63. package/wangsvue-gsts.es.js.map +1 -1
  64. package/wangsvue-gsts.system.js +58 -58
  65. package/wangsvue-gsts.system.js.map +1 -1
@@ -35,6 +35,14 @@ export interface InputCurrencyProps {
35
35
  */
36
36
  modelValue?: CurrencyValue;
37
37
 
38
+ /**
39
+ * Sets the initial value of the field.
40
+ * This will only available with option 'useValidator'.
41
+ *
42
+ * In usecase like edit form, you need to display the previous inputted value.
43
+ */
44
+ value?: number;
45
+
38
46
  /**
39
47
  * The input label. Tell the user what input is this.
40
48
  */
@@ -95,6 +103,12 @@ export interface InputCurrencyProps {
95
103
  */
96
104
  fieldInfo?: string;
97
105
  inputnNumberId?: string;
106
+
107
+ /**
108
+ * Whether the currency dropdown should be selectable or not.
109
+ * @defaultValue false
110
+ */
111
+ selectable?: boolean;
98
112
  }
99
113
 
100
114
  /**
@@ -0,0 +1,39 @@
1
+ # InputNumber
2
+ type reference: ./index.d.ts
3
+
4
+ Append a `InputNumber` component when the figma context contains:
5
+
6
+ - A figma component or instance named "Input Number" or similar, consisting of a numeric input field optionally paired with a label, required asterisk, info icon, increment/decrement buttons, and addon slots.
7
+
8
+ ## Metadata Shape (Component)
9
+
10
+ Append this component to the `components` array of the returned JSON.
11
+
12
+ ## Metadata Shape (Properties)
13
+
14
+ Append these properties to the `props` object of this component.
15
+
16
+ ### Properties definitions
17
+
18
+ - `label` (string)
19
+ The text of the label displayed above the input field.
20
+
21
+ - `placeholder` (string | undefined)
22
+ The placeholder text inside the input field (e.g. "Enter number" or "0"). Omit if no placeholder text is visible.
23
+
24
+ - `mandatory` (boolean | undefined)
25
+ Whether a red asterisk `*` is present next to the label. Omit if absent.
26
+
27
+ - `fieldInfo` (string | undefined)
28
+ Whether an info icon (`information-line`) is present next to the label. Omit if absent.
29
+
30
+ - `invalid` (boolean | undefined)
31
+ Whether the input field shows an error state (red border, red caption text). Omit if the field is not in error state.
32
+
33
+ - `disabled` (boolean | undefined)
34
+ Whether the input field shows a disabled state (gray background, gray text). Omit if the field is not disabled.
35
+
36
+ - `showButtons` (boolean | undefined)
37
+ Whether increment (`add-line`) and decrement (`subtract-line`) icons are present on the left and right sides of the input. Infer from the Figma type:
38
+ - Type `"Button Horizontal"` or `"Button Vertical"` → `true`
39
+ - Types without buttons (`"Default"`, `"Double Field"`, `"Addon Right"`, `"Addon Left"`, etc.) → omit this field
@@ -0,0 +1,28 @@
1
+ # InputPassword
2
+ type reference: ./index.d.ts
3
+
4
+ Append a `InputPassword` component when the figma context contains:
5
+
6
+ - A figma component or instance named "Input Password" or similar, consisting of a password input field showing masked dots (e.g. "**********") and an `eye-line` icon for toggling visibility, optionally paired with a label, required asterisk, and info icon.
7
+
8
+ ## Metadata Shape (Component)
9
+
10
+ Append this component to the `components` array of the returned JSON.
11
+
12
+ ## Metadata Shape (Properties)
13
+
14
+ Append these properties to the `props` object of this component.
15
+
16
+ ### Properties definitions
17
+
18
+ - `label` (string)
19
+ The text of the label displayed above the password input.
20
+
21
+ - `placeholder` (string | undefined)
22
+ The placeholder text inside the password input (e.g. "Enter password"). When a password is entered, the placeholder is replaced with masked dots. Omit if no placeholder text is visible.
23
+
24
+ - `mandatory` (boolean | undefined)
25
+ Whether a red asterisk `*` is present next to the label, indicating the field is required. Omit if absent.
26
+
27
+ - `invalid` (boolean | undefined)
28
+ Whether the password input shows an error state (red border, red caption text). Omit if the field is not in error state.
@@ -6,6 +6,10 @@ export interface InputPasswordProps {
6
6
  * Two way data binding of component.
7
7
  */
8
8
  modelValue?: string;
9
+ /**
10
+ * Unique id for the input element.
11
+ */
12
+ inputId?: string;
9
13
  /**
10
14
  * The label for input field.
11
15
  */
@@ -0,0 +1,34 @@
1
+ # InputPhoneNumber
2
+ type reference: ./index.d.ts
3
+
4
+ Append a `InputPhoneNumber` component when the figma context contains:
5
+
6
+ - A figma component or instance named "Input Phone Number" or similar, consisting of a two-part segmented input: a dial code dropdown (e.g. "+62" with a dropdown arrow) on the left and a phone number text field on the right, optionally paired with a label, required asterisk, and info icon.
7
+
8
+ ## Metadata Shape (Component)
9
+
10
+ Append this component to the `components` array of the returned JSON.
11
+
12
+ ## Metadata Shape (Properties)
13
+
14
+ Append these properties to the `props` object of this component.
15
+
16
+ ### Properties definitions
17
+
18
+ - `label` (string)
19
+ The text of the label displayed above the phone number input.
20
+
21
+ - `placeholder` (string | undefined)
22
+ The placeholder text inside the phone number field (e.g. "Enter phone number"). When a number is entered, the placeholder is replaced with the phone digits. Omit if no placeholder text is visible.
23
+
24
+ - `mandatory` (boolean | undefined)
25
+ Whether a red asterisk `*` is present next to the label, indicating the field is required. Omit if absent.
26
+
27
+ - `fieldInfo` (string | undefined)
28
+ Whether an info icon (`information-line`) is present next to the label. Omit if absent.
29
+
30
+ - `invalid` (boolean | undefined)
31
+ Whether the input shows an error state (red border, red caption text). Omit if the field is not in error state.
32
+
33
+ - `disabled` (boolean | undefined)
34
+ Whether the input shows a disabled state (gray background, gray text). Omit if the field is not disabled.
@@ -0,0 +1,31 @@
1
+ # InputRangeNumber
2
+ type reference: ./index.d.ts
3
+
4
+ Append a `InputRangeNumber` component when the figma context contains:
5
+
6
+ - A figma component or instance named "Input Range Number" or similar, consisting of two number input fields separated by a dash (`--`) separator, optionally paired with a label, required asterisk, and info icon.
7
+
8
+ ## Metadata Shape (Component)
9
+
10
+ Append this component to the `components` array of the returned JSON.
11
+
12
+ ## Metadata Shape (Properties)
13
+
14
+ Append these properties to the `props` object of this component.
15
+
16
+ ### Properties definitions
17
+
18
+ - `label` (string)
19
+ The text of the label displayed above the range inputs.
20
+
21
+ - `placeholder` (string | undefined)
22
+ The placeholder text inside both number inputs (e.g. "Enter"). When a value is entered, the placeholder is replaced with the number. Omit if no placeholder text is visible.
23
+
24
+ - `mandatory` (boolean | undefined)
25
+ Whether a red asterisk `*` is present next to the label, indicating the field is required. Omit if absent.
26
+
27
+ - `invalid` (boolean | undefined)
28
+ Whether the range inputs show an error state (red borders, red caption text). Omit if the field is not in error state.
29
+
30
+ - `disabled` (boolean | undefined)
31
+ Whether the range inputs show a disabled state (gray background, gray text). Omit if the field is not disabled.
@@ -0,0 +1,34 @@
1
+ # InputText
2
+ type reference: ./index.d.ts
3
+
4
+ Append a `InputText` component when the figma context contains:
5
+
6
+ - A figma component or instance named "Input Text" or similar, consisting of a text input field optionally paired with a label, required asterisk, and info icon.
7
+
8
+ ## Metadata Shape (Component)
9
+
10
+ Append this component to the `components` array of the returned JSON.
11
+
12
+ ## Metadata Shape (Properties)
13
+
14
+ Append these properties to the `props` object of this component.
15
+
16
+ ### Properties definitions
17
+
18
+ - `label` (string)
19
+ The text of the label displayed above the input field.
20
+
21
+ - `placeholder` (string | undefined)
22
+ The placeholder text inside the input field. In the default state, the field shows a placeholder like "Enter". When a value is present, the placeholder is replaced with the filled text. Omit if no placeholder text is visible.
23
+
24
+ - `mandatory` (boolean | undefined)
25
+ Whether a red asterisk `*` is present next to the label, indicating the field is required. Omit if absent.
26
+
27
+ - `fieldInfo` (string | undefined)
28
+ Whether an info icon (`information-line`) is present next to the label. Omit if absent.
29
+
30
+ - `invalid` (boolean | undefined)
31
+ Whether the input field shows an error state (red border, red caption text). Omit if the field is not in error state.
32
+
33
+ - `disabled` (boolean | undefined)
34
+ Whether the input field shows a disabled state (gray background, gray text). Omit if the field is not disabled.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "metadata": {
3
- "generatedAt": "2026-05-20T05:11:29.534Z",
3
+ "generatedAt": "2026-06-18T08:03:20.030Z",
4
4
  "version": "1.0.0",
5
5
  "totalComponents": 68,
6
6
  "packagePath": "../../packages/globalsettings-tagsamurai"
@@ -1930,7 +1930,7 @@
1930
1930
  "inheritanceChain": [],
1931
1931
  "inheritanceReport": "",
1932
1932
  "vueFilePath": "",
1933
- "definitionFilePath": "C:\\Users\\Dzulfian\\Works\\Wangs\\__check-new-wangsvue\\wangsvue\\packages\\globalsettings-tagsamurai\\dist\\inputotp\\index.d.ts",
1933
+ "definitionFilePath": "C:\\Users\\ASUS ROG STRIK\\Documents\\Frontend\\wangsvue\\packages\\globalsettings-tagsamurai\\dist\\inputotp\\index.d.ts",
1934
1934
  "importInfo": {
1935
1935
  "packageName": "@fewangsit/wangsvue-gsts",
1936
1936
  "importPath": "import { inputotp } from '@fewangsit/wangsvue-gsts'",
@@ -1,5 +1,5 @@
1
1
  Component Data Source Summary
2
- Generated: 2026-05-20T05:11:29.534Z
2
+ Generated: 2026-06-18T08:03:20.030Z
3
3
  Version: 1.0.0
4
4
  Total Components: 68
5
5
  Package: ../../packages/globalsettings-tagsamurai