@ldmjs/ui 2.0.1-beta.1 → 2.1.0

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 (3) hide show
  1. package/LICENSE.txt +21 -0
  2. package/README.md +90 -0
  3. package/package.json +3 -3
package/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+ Copyright (C) 2026 by ldmjs
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+
11
+ The above copyright notice and this permission notice shall be included in
12
+ all copies or substantial portions of the Software.
13
+
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,90 @@
1
+ # Documentation
2
+
3
+ http://172.19.93.149:8101
4
+
5
+ # Library contains
6
+
7
+ - ld-button
8
+ - ld-icon
9
+ - ld-chip
10
+ - ld-badge
11
+ - ld-avatar
12
+ - ld-splitter
13
+ - ld-loader
14
+ - ld-progress
15
+ - ld-toggle-buttons
16
+ - ld-breadcrumbs
17
+ - ld-edit-text
18
+ - ld-datepicker
19
+ - ld-daterange
20
+ - ld-calendar
21
+ - ld-tab
22
+ - ld-tabs
23
+ - ld-page-toolbar
24
+ - ld-select-list-box
25
+ - ld-checkbox
26
+ - ld-radiobutton
27
+ - ld-radiogroup
28
+ - ld-textarea
29
+ - ld-select
30
+ - ld-combobox
31
+ - ld-timepicker
32
+ - ld-text-viewer
33
+ - ld-edit-masked-text
34
+ - ld-text-markup
35
+ - ld-switch
36
+ - ld-dialog
37
+ - ld-data-iterator
38
+ - ld-pager
39
+ - ld-edit-list-box
40
+ - ld-uploader
41
+ - ld-step
42
+ - ld-slider
43
+ - ld-datatable
44
+ - ld-expansion-panels
45
+ - ld-expansion-panel
46
+
47
+ # Utilities
48
+
49
+ - awaiting
50
+ - base64
51
+ .encode
52
+ .decode
53
+ .isValid
54
+ - cookie
55
+ .get
56
+ .set
57
+ .delete
58
+ - delay
59
+ - deepValueGetter
60
+ - removeDuplicates
61
+ - isDefined
62
+ - isObjectEmpty
63
+ - pluralizeNoun
64
+ - strings
65
+ .camelCase
66
+ .capitalize
67
+ - datetime
68
+ .isDate
69
+ .isISO
70
+ .toDate
71
+ .localToISO
72
+ .dateToLocal
73
+ .compare
74
+ .strictCompare
75
+ .toServerString
76
+ .formatDate
77
+ - uidGen
78
+ - fileToArrayBuffer
79
+ - fileToBase64
80
+ - base64ToUint8Array
81
+ - base64ToBlob
82
+ - uint8ArrayToHex
83
+ - hexToArrayBuffer
84
+ - uint8ArrayToBase64
85
+ - arrayBufferToUint8Array
86
+
87
+ # Mixins
88
+
89
+ - ValidateMixin // class-component style
90
+ - ValidateMixinOptions // options style
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ldmjs/ui",
3
- "version": "2.0.1-beta.1",
3
+ "version": "2.1.0",
4
4
  "description": "ldm ui",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "scripts": {
11
11
  "demo": "cross-env NODE_ENV=production webpack serve --config webpack.config.js --progress --profile",
12
- "pub": "node publish.js && npm publish --access=public --tag=latest"
12
+ "pub": "node publish.js && npm publish --access=public --tag=latest && node updateVersion.js"
13
13
  },
14
14
  "keywords": [
15
15
  "ldm",
@@ -109,4 +109,4 @@
109
109
  "yarn": "4.5.3",
110
110
  "npm": "11.4.2"
111
111
  }
112
- }
112
+ }