@oslokommune/punkt-react 5.1.20 → 5.2.1
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/CHANGELOG.md +73 -0
- package/dist/index.d.ts +1 -0
- package/dist/punkt-react.es.js +703 -557
- package/dist/punkt-react.umd.js +11 -11
- package/dist/textinput/Textinput.d.ts +26 -0
- package/package.json +3 -3
- package/src/components/index.ts +3 -3
- package/src/components/textinput/Textinput.test.tsx +60 -0
- package/src/components/textinput/Textinput.tsx +217 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,79 @@ og skriver commits ca etter [Conventional Commits](https://conventionalcommits.o
|
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
## [5.2.0](https://github.com/oslokommune/punkt/compare/5.1.21...5.2.0) (2023-08-11)
|
|
9
|
+
|
|
10
|
+
### ⚠ BREAKING CHANGES
|
|
11
|
+
Ingen
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
* Feature textinput #758 (#1016). * feat(css): #968 Input (#987)
|
|
15
|
+
|
|
16
|
+
* feat(vue2, css): #969 Input
|
|
17
|
+
|
|
18
|
+
* feat(react): #970 Input (#993)
|
|
19
|
+
|
|
20
|
+
* feat(docs): #973 Textinput dokumentasjon for kode
|
|
21
|
+
|
|
22
|
+
* test input
|
|
23
|
+
|
|
24
|
+
* fix(css): input active
|
|
25
|
+
|
|
26
|
+
* Fiks states - css
|
|
27
|
+
|
|
28
|
+
* dokumentere mer
|
|
29
|
+
|
|
30
|
+
* docs:#972 dokumentasjon textinput (#1022)
|
|
31
|
+
|
|
32
|
+
* docs:#927 Lagt til dokumentasjon
|
|
33
|
+
|
|
34
|
+
* docs:#927 Bilder
|
|
35
|
+
|
|
36
|
+
* docs:#927 Oppdatert teksten
|
|
37
|
+
|
|
38
|
+
* docs:#927 Lagt til bildekode
|
|
39
|
+
|
|
40
|
+
* docs:#972 endret størrelse på bilder
|
|
41
|
+
|
|
42
|
+
* docs:#972 Endret rekkefølge anatomi
|
|
43
|
+
|
|
44
|
+
* docs:#972 Tekst universell utforming og mdx
|
|
45
|
+
|
|
46
|
+
* docs:#972 Fikset filnavn
|
|
47
|
+
|
|
48
|
+
* docs: Endret midlertidig tekst
|
|
49
|
+
|
|
50
|
+
* Endringer slik at både hjelpetekst og utvidet hjelpetekst kan vises samtidig
|
|
51
|
+
|
|
52
|
+
* Dokumentasjonendringer for TextInput og fiks av brukne lenker
|
|
53
|
+
|
|
54
|
+
* 758 dokumentasjon input (#1034)
|
|
55
|
+
|
|
56
|
+
* docs:#758 byttet ut til bilde
|
|
57
|
+
|
|
58
|
+
* docs:#758 Bilde av alle versjoner
|
|
59
|
+
|
|
60
|
+
* docs:#758 riktig filtype
|
|
61
|
+
|
|
62
|
+
* Textinput => Text input
|
|
63
|
+
|
|
64
|
+
* Oppdater status
|
|
65
|
+
|
|
66
|
+
---------
|
|
67
|
+
|
|
68
|
+
Co-authored-by: Victoria Nerem <118815886+vicnerem@users.noreply.github.com>
|
|
69
|
+
Co-authored-by: Jan Schjetne <jan.schjetne@origo.oslo.kommune.no>
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
### Bug Fixes
|
|
73
|
+
Ingen
|
|
74
|
+
|
|
75
|
+
### Chores
|
|
76
|
+
Ingen
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
|
|
8
81
|
## [5.1.20](https://github.com/oslokommune/punkt/compare/5.1.19...5.1.20) (2023-07-24)
|
|
9
82
|
|
|
10
83
|
### ⚠ BREAKING CHANGES
|
package/dist/index.d.ts
CHANGED